Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace MoOauthClient; use Exception; use MoOauthClient\LoginHandler; us..
Decoded Output download
<?php
namespace MoOauthClient;
use Exception;
use MoOauthClient\LoginHandler;
use MoOauthClient\MO_Oauth_Debug;
class MoOauthClientWidget extends \WP_Widget
{
private $login_handler;
public function __construct()
{
parent::__construct("mo_oauth_widget", "miniOrange OAuth", array("description" => __("Login to Apps with OAuth", "flw")));
global $Ls;
$Ls->mo_oauth_client_update_option("host_name", "https://login.xecurify.com");
$Tj = $Ls->get_plugin_config()->get_current_config();
if ($Ls->mo_oauth_aemoutcrahsaphtn() == "enabled") {
goto M7;
}
add_action("wp_enqueue_scripts", array($this, "register_plugin_styles"));
add_action("init", array($this, "mo_oauth_start_session"));
add_filter("loginout", [$this, "get_logout_link"], 10, 1);
add_action("login_form", array($this, "wplogin_form_button"));
$CW = $Ls->mo_oauth_client_get_option("mo_oauth_client_disable_wp_login");
if (!($CW == "on")) {
goto Vt;
}
add_action("login_init", array($this, "disable_lost_password"));
add_action("login_head", array($this, "mo_oauth_client_wp_login_disable"));
add_action("rest_api_init", array($this, "mo_oauth_restrict_api_flow"), 1);
Vt:
goto UZ;
M7:
return;
UZ:
}
public function mo_oauth_restrict_api_flow()
{
register_rest_route("wp/v2", "/users", array("methods" => "POST", "callback" => array($this, "mo_oauth_restrict_api_registration_and_login"), "permission_callback" => "__return_true"));
register_rest_route("wp/v2", "/login", array("methods" => "POST", "callback" => array($this, "mo_oauth_restrict_api_registration_and_login"), "permission_callback" => "__return_true"));
}
public function mo_oauth_restrict_api_registration_and_login($Oa)
{
return new \WP_Error("api_restricted", __("API access is restricted - Use single-sign-on (SSO) for logging into the website."), array("status" => 403));
}
public function disable_lost_password()
{
if (!isset($_GET["action"])) {
goto Nf;
}
if (!in_array($_GET["action"], array("lostpassword", "retrievepassword"))) {
goto bL;
}
wp_redirect(wp_login_url(), 301);
exit;
bL:
Nf:
}
public function mo_oauth_client_wp_login_disable()
{
$rp = false;
$rp = apply_filters("DISABLE_OAUTHLOGIN_BACKDOOR", $rp);
MO_Oauth_Debug::mo_oauth_log("WP login disable setting activated.");
if (!(isset($_GET["oauthlogin"]) && !empty($_GET["oauthlogin"]) && $_GET["oauthlogin"] == "false" && $rp == false)) {
goto yQ;
}
return;
yQ:
$bw = '';
$bw .= "<style type="text/css">.login form .input{ display: none }\xd
.login form .forgetmenot{ display: none }
\xa .user-pass-wrap { display: none }\xd\xa #login form p { display: none }
\xa .login #nav { display: none }
\xa </style>";
echo $bw;
}
public function wplogin_form_script()
{
wp_enqueue_style("mo-wp-font-awesome", MOC_URL . "resources/css/font-awesome.min.css", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
wp_enqueue_style("mo-wp-login-page", MOC_URL . "resources/css/style_wp_login_page.css", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
echo " <script type="text/javascript">\xd\xa
\xa\x9\x9\x9function HandlePopupResult(result) {
\x9 \x9\x9window.location.href = result;
\xa\x9\x9\x9}
\x9 \x9function moOAuthLogin(app_name) {\xd
\x9 window.location.href = '";
echo esc_url(site_url());
echo "' + '/?option=generateDynmicUrl&app_name=' + app_name;\xd
\x9 }
\x9 \x9\xd
\x9\x9 function moOAuthLoginNew(app_name) {\xd
\x9\x9\x9\x9var base_url = "";
echo esc_url(site_url());
echo "";
\x9 \x9 ";
global $Ls;
$KE = $Ls->get_current_url();
$Tj = $Ls->get_plugin_config();
if (boolval($Tj->get_config("popup_login"))) {
goto cw;
}
echo "\x9 var actual_url = "";
echo esc_url($KE);
echo "";\xd
\x9 \x9\x9var redirect_url = '';\xd
\x9 \x9if ( actual_url.includes('redirect_to=') ) {\xd\xa\x9\x9\x9 \x9\x9var url = actual_url.split("redirect_to=");
\xa \x9 \x9 var param = url[1].split("&");\xd
\x9 \x9 redirect_url = param[0];
\x9\x9}
\xa \x9\x9\x9window.location.href = base_url + "/?option=oauthredirect&app_name=" + app_name + '&redirect_url=' + redirect_url;\xd
\x9\x9\x9\x9 ";
goto Pj;
cw:
$F4 = !empty($Tj->get_config("custom_width")) ? $Tj->get_config("custom_width") : "500";
$dX = !empty($Tj->get_config("custom_height")) ? $Tj->get_config("custom_height") : "500";
echo apply_filters("mo_pop_up_login_handler", '');
echo " \x9 \x9\x9var left = (screen.width-";
echo esc_attr($F4);
echo ") / 2; // to make pop window appear on center of screen
\xa\x9\x9 \x9var top = (screen.height-";
echo esc_attr($dX);
echo ") / 4;
\x9\x9 \x9 var myWindow = window.open( base_url + '/?option=oauthredirect&app_name=' + app_name, '', 'width=";
echo esc_attr($F4);
echo ",height=";
echo esc_attr($dX);
echo ", '+ 'top=' + top + ', left=' + left);
\xa\x9\x9\x9\x9\x9";
Pj:
echo " \x9 }\xd\xa \x9 </script>\xd
\x9 ";
}
public function wplogin_form_button()
{
$this->wplogin_form_script();
global $Ls;
$MQ = 1;
$xx = $Ls->mo_oauth_client_get_option("mo_oauth_apps_list");
if (!empty($xx)) {
goto tR;
}
return;
tR:
if ($Ls->validate_appslist($xx)) {
goto AV;
}
return;
AV:
$Ab = $Ls->mo_oauth_client_get_option("mo_apply_customized_setting_on_wp_admin");
foreach ($xx as $M0 => $Ro) {
if (!is_multisite()) {
goto Lp;
}
global $cL;
$Fk = parse_url(home_url());
$ll = isset($Fk["path"]) ? $Fk["host"] . $Fk["path"] : $Fk["host"];
$blog_id = null;
$T2 = $Ls->mo_oauth_client_get_option("mo_oauth_c3Vic2l0ZXNzZWxlY3RlZA");
if (!isset($T2)) {
goto kK;
}
$aC = json_decode($Ls->mooauthdecrypt($T2), true);
kK:
$kJ = get_sites(["number" => 1000]);
foreach ($kJ as $R2) {
if (!($ll . "/" == $R2->domain . '' . $R2->path)) {
goto Gf;
}
$blog_id = $R2->blog_id;
goto Om;
Gf:
JV:
}
Om:
if (empty($aC)) {
goto GK;
}
if (in_array($blog_id, $aC)) {
goto CF;
}
goto PO;
CF:
GK:
Lp:
if (!(1 === $Ro->get_app_config("show_on_login_page") && "Password Grant" !== $Ro->get_app_config("grant_type"))) {
goto P8;
}
if (!($MQ === 1)) {
goto rh;
}
echo "<h4>";
echo null !== $Ls->mo_oauth_client_get_option("mo_oauth_widget_customize_text") ? '' === trim($Ls->mo_oauth_client_get_option("mo_oauth_widget_customize_text")) ? "Connect with :" : esc_attr($Ls->mo_oauth_client_get_option("mo_oauth_widget_customize_text")) : "Connect with :";
echo "</h4></br>";
echo "<div class="row">";
$pt = $Ls->mo_oauth_client_get_option("mo_oauth_icon_shape");
$iJ = false !== $pt && "longbutton" == $pt ? "center" : "initial";
$Zo = '';
if (!$Ab) {
goto j0;
}
$Zo = $this->mo_oauth_load_custom_css($Zo, $xx, $xC = false, $r_ = '', $x5 = '', $NY = '', $Y5 = "Password Grant", $Vh = 0);
echo "<div id="mo_justify_content">";
echo $Zo;
echo "</div>";
echo "<style>
\x9 \x9 .mo_adjust_customize_button {\xd\xa\x9\x9\x9\x9 display: flex;
\xa\x9 \x9\x9\x9 \x9justify-content:" . esc_attr($iJ) . " !important;\xd\xa\x9 \x9}</style>";
j0:
$MQ = 0;
rh:
if ($Ab) {
goto HR;
}
$f8 = $Ro->get_app_config("displayappname");
if ($f8) {
goto FZ;
}
$f8 = ucwords($M0);
FZ:
$YP = '' !== $Ro->get_app_config("unique_appid") ? $Ro->get_app_config("unique_appid") : $Ro->get_app_config("appId");
$YP = str_replace(" ", "_", $YP);
$rM = "mo_oauth_login_button_customize_display_text_" . $YP;
$PD = $Ls->mo_oauth_client_get_option("mo_oauth_login_button_customize_display_text");
if (!(isset($PD[$rM]) && '' !== trim($PD[$rM]))) {
goto xL;
}
$f8 = $PD[$rM];
xL:
$hE = "mofa fa-lock";
if ("fbapps" === $Ro->get_app_config("appId")) {
goto Lu;
}
if ("gapps" === $Ro->get_app_config("appId")) {
goto qW;
}
if ("slack" === $Ro->get_app_config("appId")) {
goto F7;
}
if ("paypal" === $Ro->get_app_config("appId")) {
goto ik;
}
if ("azure" === $Ro->get_app_config("appId")) {
goto Mj;
}
if ("amazon" === $Ro->get_app_config("appId")) {
goto jn;
}
if ("github" === $Ro->get_app_config("appId")) {
goto Wq;
}
if ("yahoo" === $Ro->get_app_config("appId")) {
goto Xo;
}
if ("openidconnect" === $Ro->get_app_config("appId")) {
goto Bi;
}
if ("bitrix24" === $Ro->get_app_config("appId")) {
goto AU;
}
if ("cognito" === $Ro->get_app_config("appId")) {
goto BZ;
}
if ("adfs" === $Ro->get_app_config("appId")) {
goto Lm;
}
goto hM;
Lu:
$hE = "mofa fa-facebook";
goto hM;
qW:
$hE = "mofa fa-google-plus";
goto hM;
F7:
$hE = "mofa fa-slack";
goto hM;
ik:
$hE = "mofa fa-paypal ";
goto hM;
Mj:
$hE = "mofa fa-windowslive ";
goto hM;
jn:
$hE = "mofa fa-amazon ";
goto hM;
Wq:
$hE = "mofa fa-github ";
goto hM;
Xo:
$hE = "mofa fa-yahoo ";
goto hM;
Bi:
$hE = "mofa fa-openid ";
goto hM;
AU:
$hE = "mofa fa-clock-o";
goto hM;
BZ:
$hE = "mofa fa-amazon";
goto hM;
Lm:
$hE = "mofa fa-windowslive";
hM:
echo "<a style="text-decoration:none" href="javascript:void(0)" onClick="moOAuthLoginNew('" . esc_attr($M0) . "');"><div class="mo_oauth_login_button"><i class="" . esc_attr($hE) . " mo_oauth_login_button_icon"></i><span class="mo_oauth_login_button_text"><b>" . esc_attr($f8) . "</b></span></div></a>";
HR:
P8:
mp:
}
PO:
if (!($MQ === 0)) {
goto Qa;
}
echo "</div>";
echo "<br>";
$MQ = 1;
Qa:
}
public function get_logout_link($z2)
{
if (!(strpos($z2, "action=logout") === false)) {
goto ez;
}
return $z2;
ez:
global $Ls;
$Tj = $Ls->get_plugin_config()->get_current_config();
$QW = isset($Tj["after_logout_url"]) && '' !== $Tj["after_logout_url"] ? $Tj["after_logout_url"] : $Ls->get_current_url();
$QW = wp_logout_url($QW);
$QW = $Ls->parse_url($QW);
if (!(isset($Tj["confirm_logout"]) && boolval($Tj["confirm_logout"]) && isset($QW["query"]["_wpnonce"]))) {
goto CR;
}
MO_Oauth_Debug::mo_oauth_log("unset the logout nonce.");
unset($QW["query"]["_wpnonce"]);
CR:
$ED = $Ls->mo_oauth_client_get_option("mo_oauth_custom_logout_text") ? $Ls->mo_oauth_client_get_option("mo_oauth_custom_logout_text") : "Howdy, ##user## | ";
if ($ED != "Howdy, ##user## | ") {
goto yl;
}
$QW = $Ls->generate_url($QW);
$z2 = "<a href="" . esc_url($QW) . "">" . __("Log Out") . "</a>";
goto lV;
yl:
if (!isset(explode("##", $ED)[3])) {
goto aY;
}
$fD = explode("##", $ED)[3];
aY:
if (isset($fD) && !empty($fD)) {
goto CI;
}
$QW = $Ls->generate_url($QW);
$z2 = " | <a href="" . esc_url($QW) . "">" . __("Log Out") . "</a>";
goto cS;
CI:
$QW = $Ls->generate_url($QW);
$z2 = "<a href="" . esc_url($QW) . "">" . __(esc_attr($fD)) . "</a>";
cS:
lV:
return $z2;
}
public function mo_oauth_start_session()
{
global $Ls;
$this->login_handler = new \MoOauthClient\LoginHandler();
$this->login_handler->mo_oauth_decide_flow();
}
public function mo_oauth_end_session()
{
session_start();
session_destroy();
}
public function widget($N6, $SH)
{
global $Ls;
if ($Ls->mo_oauth_aemoutcrahsaphtn() == "enabled") {
goto rJ;
}
extract($N6);
$CV = '';
$CV .= $N6["before_widget"];
if (empty($hs)) {
goto xs;
}
$CV .= $N6["before_title"] . $hs . $N6["after_title"];
xs:
if ($Ls->check_versi(4) && $Ls->mo_oauth_client_get_option("mo_oauth_activate_single_login_flow")) {
goto GU;
}
$Zo = $this->mo_oauth_login_form();
goto z6;
GU:
$Zo = $this->mo_activate_single_login_flow_form();
z6:
$CV .= $Zo;
$CV .= $N6["after_widget"];
echo $CV;
goto kz;
rJ:
return;
kz:
}
public function update($Yb, $SF)
{
$SH = array();
if (!isset($Yb["wid_title"])) {
goto Q2;
}
$SH["wid_title"] = wp_strip_all_tags($Yb["wid_title"]);
Q2:
return $SH;
}
public function mo_activate_single_login_flow_form()
{
global $Ls;
$Zo = '';
$WV = $Ls->mo_oauth_client_get_option("mo_oauth_google_enable") | $Ls->mo_oauth_client_get_option("mo_oauth_eveonline_enable") | $Ls->mo_oauth_client_get_option("mo_oauth_facebook_enable");
$xx = $Ls->mo_oauth_client_get_option("mo_oauth_apps_list");
$Tj = $Ls->get_plugin_config()->get_current_config();
$QW = isset($Tj["after_login_url"]) && '' !== $Tj["after_login_url"] ? $Tj["after_login_url"] : site_url();
if (!($xx && count($xx) > 0)) {
goto No;
}
$WV = true;
No:
$Vw = is_user_logged_in();
if (!has_filter("mo_oauth_break_sso_flow")) {
goto VA;
}
$Vw = apply_filters("mo_oauth_break_sso_flow", $Vw);
VA:
if (!$Vw && !mo_oauth_is_rest()) {
goto Q9;
}
$current_user = wp_get_current_user();
$ED = $Ls->mo_oauth_client_get_option("mo_oauth_custom_logout_text") ? $Ls->mo_oauth_client_get_option("mo_oauth_custom_logout_text") : "Howdy, ##user## | ";
$ED = apply_filters("mo_oauth_client_filter_logout_text", $ED);
$ED = str_replace("##user##", $current_user->display_name, $ED);
$ED = explode("##", $ED)[0];
$d9 = __($ED, "flw");
$Zo .= esc_attr($d9) . " " . wp_loginout($QW, false);
goto i_;
Q9:
if ($WV) {
goto Ci;
}
$Zo .= "No apps configured.";
Ci:
$this->mo_oauth_load_login_script();
if (empty($Ls->mo_oauth_client_get_option("mo_oauth_common_login_button_display_name"))) {
goto Iq;
}
$yK = $Ls->mo_oauth_client_get_option("mo_oauth_common_login_button_display_name");
goto Vo;
Iq:
$yK = "Login";
Vo:
$Ol = $Ls->mo_oauth_client_get_option("mo_oauth_login_icon_space");
$EU = $Ls->mo_oauth_client_get_option("mo_oauth_login_icon_custom_width");
$K2 = $Ls->mo_oauth_client_get_option("mo_oauth_login_icon_custom_height");
$JC = $Ls->mo_oauth_client_get_option("mo_oauth_login_icon_custom_boundary");
if (is_array($xx)) {
goto OT;
}
return $Zo;
OT:
$Zo .= "<a href="javascript:void(0)" onclick="moOAuthCommonLogin('" . $yK . "');" style="color:white; width:" . $EU . "px !important;padding-top:" . $K2 . "px !important;padding-bottom:" . $K2 . "px !important;margin-bottom:" . $Ol . "px !important;border-radius:" . $JC . "px !important;text-decoration:none !important" class="oauthloginbutton btn btn-social btn-primary"> <i style="padding-top:" . $K2 . "-6 px !important; width:15%" class="mofa fa-lock"></i> " . $yK . " </a>";
i_:
return $Zo;
}
public function mo_oauth_login_form($xC = false, $r_ = '', $x5 = '', $NY = '')
{
global $post;
global $Ls;
if (!(!$Ls->mo_oauth_hbca_xyake() && $xC && !$Ls->check_versi(1))) {
goto yx;
}
$Zo = "<div class="mo_oauth_premium_option_text" style="text-align: center;border: 1px solid;margin: 5px;padding-top: 25px;"><p>This feature is supported only in standard and higher versions.</p>
\x9\x9\x9<p><a href="" . get_site_url(null, "/wp-admin/") . "admin.php?page=mo_oauth_settings&tab=licensing">Click Here</a> to see our full list of Features.</p></div>";
return $Zo;
yx:
$Zo = '';
$this->error_message();
$WV = $Ls->mo_oauth_client_get_option("mo_oauth_google_enable") | $Ls->mo_oauth_client_get_option("mo_oauth_eveonline_enable") | $Ls->mo_oauth_client_get_option("mo_oauth_facebook_enable");
$xx = $Ls->mo_oauth_client_get_option("mo_oauth_apps_list");
if (!($xx && count($xx) > 0)) {
goto wl;
}
$WV = true;
wl:
$Tj = $Ls->get_plugin_config()->get_current_config();
$QW = isset($Tj["after_login_url"]) && '' !== $Tj["after_login_url"] ? $Tj["after_login_url"] : site_url();
$Vw = is_user_logged_in();
$N6 = array("user_status" => $Vw, "appslist" => $xx);
if (!has_filter("mo_oauth_update_login_validation")) {
goto G9;
}
$N6 = apply_filters("mo_oauth_update_login_validation", $N6);
$xx = $N6["appslist"];
$Vw = $N6["user_status"];
G9:
if (!has_filter("mo_oauth_break_sso_flow")) {
goto XQ;
}
$Vw = apply_filters("mo_oauth_break_sso_flow", $Vw);
XQ:
if (!$Vw && !mo_oauth_is_rest()) {
goto RS;
}
$Zo = '';
if (has_filter("mo_oauth_break_sso_flow")) {
goto Uw;
}
$current_user = wp_get_current_user();
$ED = $Ls->mo_oauth_client_get_option("mo_oauth_custom_logout_text") ? $Ls->mo_oauth_client_get_option("mo_oauth_custom_logout_text") : "Howdy, ##user## | ";
$ED = apply_filters("mo_oauth_client_filter_logout_text", $ED);
$ED = str_replace("##user##", $current_user->display_name, $ED);
$ED = explode("##", $ED)[0];
$d9 = __($ED, "flw");
$Zo .= $d9 . " ";
if (!($Ls->mo_oauth_client_get_option("mo_custom_html_with_logout_link") === "1")) {
goto vF;
}
$Zo .= wp_loginout($QW, false);
vF:
Uw:
goto V0;
RS:
if ($WV) {
goto JE;
}
$Zo .= "No apps configured.";
JE:
if (is_array($xx)) {
goto S_;
}
return $Zo;
S_:
if ($Ls->validate_appslist($xx)) {
goto yy;
}
return $Zo;
yy:
$Zo = $this->mo_oauth_load_custom_css($Zo, $xx, $xC, $r_, $NY, $x5, $Y5 = "Password Grant", $Vh = '');
V0:
return $Zo;
}
public function mo_oauth_load_custom_css($Zo, $xx, $xC, $r_, $NY, $x5, $Y5, $Vh)
{
global $Ls;
$this->mo_oauth_load_login_script();
$wK = $Ls->mo_oauth_client_get_option("mo_oauth_icon_width");
$y2 = $Ls->mo_oauth_client_get_option("mo_oauth_icon_height");
$TI = $Ls->mo_oauth_client_get_option("mo_oauth_icon_size");
$jv = $Ls->mo_oauth_client_get_option("mo_oauth_icon_margin");
$qx = $Ls->mo_oauth_client_get_option("mo_oauth_icon_curve");
$pa = $Ls->mo_oauth_client_get_option("mo_oauth_icon_theme");
$pt = $Ls->mo_oauth_client_get_option("mo_oauth_icon_shape");
$OF = $Ls->mo_oauth_client_get_option("mo_oauth_icon_effect_scale");
$xq = $Ls->mo_oauth_client_get_option("mo_oauth_icon_effect_shadow");
$vf = $Ls->mo_oauth_client_get_option("mo_oauth_icon_color");
$Xr = $Ls->mo_oauth_client_get_option("mo_oauth_icon_custom_color");
$H8 = $Ls->mo_oauth_client_get_option("mo_oauth_icon_smart_color_1");
$nt = $Ls->mo_oauth_client_get_option("mo_oauth_icon_smart_color_2");
$eR = $Ls->mo_oauth_client_get_option("mo_oauth_icon_configure_css");
$F4 = false !== $wK && '' !== $wK ? $wK : "270";
$dX = false !== $y2 && '' !== $y2 ? $y2 : "35";
$Di = false !== $TI && '' !== $TI ? $TI : "35";
$Ol = false !== $jv && '' !== $jv ? $jv : "4";
$Fs = false !== $qx && '' !== $qx ? $qx : "0";
$vj = false !== $OF && '' !== $OF ? $OF : '';
$j1 = false !== $xq && '' !== $xq ? $xq : '';
$sh = false !== $pt && "longbutton" == $pt ? '' : "flex";
$Zo .= "<div class="mo_adjust_customize_button" style="display:" . $sh . ";\xd
\x9\x9 flex-flow: row wrap;justify-content:initial">";
foreach ($xx as $M0 => $Ro) {
if (!($Vh === $Ro->get_app_config("show_on_login_page") || $Y5 === $Ro->get_app_config("grant_type"))) {
goto Nh;
}
goto Y9;
Nh:
$v1 = json_decode($Ro, true);
$v1 = $v1[$M0];
$v1 = $v1["appId"];
$fU = $v1;
if (!($v1 == "vkontakte")) {
goto Ih;
}
$fU = "vk";
Ih:
if (!($v1 == "oauth1" || $v1 == "openidconnect" || $v1 == "other" || $v1 == "miniorange")) {
goto pr;
}
$fU = "lock";
pr:
if (!($v1 == "gapps")) {
goto Vr;
}
$v1 = "google";
$fU = "google";
Vr:
if (!($v1 == "fbapps")) {
goto Wp;
}
$v1 = "facebook";
$fU = "facebook-square";
Wp:
if (!($v1 == "Freja eID")) {
goto iY;
}
$v1 = "frejaeid";
iY:
if (!($v1 == "swiss rx login")) {
goto Mv;
}
$v1 = "swissrx";
$fU = "lock";
Mv:
if (!($v1 == "azureb2c")) {
goto kk;
}
$v1 = "azure";
kk:
if (!($xC && '' !== $r_ && $M0 !== $r_)) {
goto NQ;
}
if (next($xx)) {
goto P9;
}
$Zo .= "No Configured Apps with this name.";
P9:
goto Y9;
NQ:
$Fg = false;
$ok = MOC_URL . "resources\app_components\images\" . strtolower($v1);
$xG = $ok . ".png";
$lL = $ok . "s.png";
$op = $Ls->mo_oauth_client_get_option("mo_oauth_custom_icon");
if (empty($op)) {
goto nT;
}
if (!(file_exists(MOC_DIR . "resources\app_components\images\custom_icon\mo_custom_icon_" . str_replace(" ", "_", $M0) . ".png") && in_array($v1, array("other", "openidconnect", "oauth1")) && in_array("mo_custom_icon_" . str_replace(" ", "_", $M0), $op))) {
goto bb;
}
$Fg = true;
$xG = MOC_URL . "resources\app_components\images\custom_icon\mo_custom_icon_" . str_replace(" ", "_", $M0) . ".png";
$lL = $xG;
bb:
nT:
$bj = $Ls->mo_oauth_client_get_option("mo_oauth_app_name_" . $M0);
$ig = array("imageurl" => '', "bcolor" => "btn-primary", "logo_class" => "mofa fa-lock");
$ig = apply_filters("mo_oauth_widget_internal", $ig);
$nv = $Ls->check_versi(1) ? $ig["imageurl"] : '';
$vd = $Ls->check_versi(1) ? $ig["bcolor"] : "#1b70b1";
$hE = $Ls->check_versi(1) ? $ig["logo_class"] : '';
$UQ = "oauth_app_" . str_replace(" ", "-", $M0);
if (!$NY) {
goto Rv;
}
$f8 = $NY;
goto b2;
Rv:
$f8 = $Ro->get_app_config("displayappname");
if ($f8) {
goto Vv;
}
$f8 = ucwords($M0);
Vv:
$YP = '' !== $Ro->get_app_config("unique_appid") ? $Ro->get_app_config("unique_appid") : $Ro->get_app_config("appId");
$YP = str_replace(" ", "_", $YP);
$rM = "mo_oauth_login_button_customize_display_text_" . $YP;
$PD = $Ls->mo_oauth_client_get_option("mo_oauth_login_button_customize_display_text");
if (!(isset($PD[$rM]) && '' !== trim($PD[$rM]))) {
goto MH;
}
$f8 = $PD[$rM];
MH:
b2:
$eO = $Ls->get_app_by_name($M0)->get_app_config();
$Cp = isset($eO["grant_type"]) && "Password Grant" === $eO["grant_type"] ? "moOAuthLoginPwd" : "moOAuthLoginNew";
if (empty($eR)) {
goto LK;
}
$rV = "class="oauthloginbutton btn";
$rV .= $Ls->check_versi(1) ? " btn-social " . $vd . """ : " btn-fdefault"";
$Zo .= "<a href="javascript:void(0)" onclick="" . $Cp . "('" . $M0 . "','" . $x5 . "');" " . $rV . " style="" . $eR . ""> ";
$Zo .= $hE ? "<i class="" . $hE . " custom_logo"></i> " : '';
$Zo .= $f8 . " </a>";
goto W2;
LK:
$rV = "class="mo_oauth_def_btn_" . strtolower($v1);
$Zo .= "<div style="margin-bottom:0px"><a href="javascript:void(0)" onclick="" . $Cp . "('" . $M0 . "','" . $x5 . "');" style="text-decoration:none;box-sizing: initial"> ";
if (($v1 == "slack" || $v1 == "google" || $v1 == "Drupal" || $v1 == "joomla" || $v1 == "facebook" || $v1 == "apple" || $v1 == "twitter" || $v1 == "github" || $v1 == "gitlab" || $v1 == "reddit" || $v1 == "paypal" || $v1 == "yahoo" || $v1 == "spotify" || $v1 == "vimeo" || $v1 == "vkontakte" || $v1 == "pinterest" || $v1 == "deviantart" || $v1 == "twitch" || $v1 == "linkedin" || $v1 == "wordpress" || $v1 == "swissrx" || $v1 == "oauth1" || $v1 == "openidconnect" || $v1 == "other" || $v1 == "miniorange") && $Fg !== true) {
goto ui;
}
if ($pa == "default") {
goto Es;
}
if ($pa == "custom") {
goto S1;
}
if ($pa == "white") {
goto gp;
}
if ($pa == "hover") {
goto WM;
}
if ($pa == "customhover") {
goto dv;
}
if ($pa == "smart") {
goto Ob;
}
if (!($pa == "previous")) {
goto tj;
}
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto I0;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;background:#337ab7;text-align: center;" class="mofa fa-lock" . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""></i></a></div>";
goto tz;
I0:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px; background:#337ab7;" class="mofa fa-lock" . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
tz:
tj:
goto zs;
Ob:
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto zm;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;background:linear-gradient(90deg," . $H8 . "," . $nt . ")!important;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""><img src=" " . $lL . "" style="vertical-align:middle;height:" . $Di . "px;width:" . $Di . "px;display:inline-block"></i></a></div>";
goto x5;
zm:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;color:#FFFFFF; background:linear-gradient(90deg," . $H8 . "," . $nt . ")!important;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><img src=" " . $lL . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 8) . "px;width:" . ($dX - 8) . "px;display:inline-block"><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
x5:
zs:
goto hT;
dv:
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto jY;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;color:" . $Xr . ""\xd\xa onMouseOver='this.style.color= "white";this.style.background= "" . $Xr . "";'\xd
onMouseOut='this.style.color= "" . $Xr . "";this.style.background= "white";'\xd\xa class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . " mo_oauth_custom_hover_icon_preview"><img src=" " . $lL . "" style="vertical-align:middle;height:" . ($Di - 2) . "px;width:" . ($Di - 2) . "px;display:inline-block;background:" . $Xr . ";border-radius: 999px"></i></a></div>";
goto eh;
jY:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;color:" . $Xr . "" \xd\xa onMouseOver='this.style.color= "white";this.style.background= "" . $Xr . "";'
onMouseOut='this.style.color= "" . $Xr . "";this.style.background= "white";'
\xa class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " mo_oauth_custom_hover_icon_preview"><img src=" " . $lL . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 10) . "px;width:" . ($dX - 10) . "px;background:" . $Xr . ";border-radius:999px" class="without_hover"><img src=" " . $lL . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 10) . "px;width:" . ($dX - 10) . "px;" class="with_hover"><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
eh:
hT:
goto VB;
WM:
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto Xn;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . " mo_oauth_hov_btn_" . strtolower($v1) . " mo_oauth_hover_icon_preview"><img src=" " . $xG . "" style="vertical-align:middle;height:" . $Di . "px;width:" . $Di . "px;display:inline-block" class="without_hover"><img src=" " . $lL . "" style="vertical-align:middle;height:" . $Di . "px;width:" . $Di . "px;" class="with_hover"></i></a></div>";
goto Yz;
Xn:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " mo_oauth_hov_btn_" . strtolower($v1) . " mo_oauth_hover_icon_preview"><img src=" " . $xG . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 8) . "px;width:" . ($dX - 8) . "px;" class="without_hover"><img src=" " . $lL . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 8) . "px;width:" . ($dX - 8) . "px;" class="with_hover"><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
Yz:
VB:
goto m3;
gp:
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto Im;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . " mo_oauth_white_btn_" . strtolower($v1) . ""><img src=" " . $xG . "" style="vertical-align:middle;height:" . $Di . "px;width:" . $Di . "px;display:inline-block"></i></a></div>";
goto aP;
Im:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " mo_oauth_white_btn_" . strtolower($v1) . ""><img src=" " . $xG . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 8) . "px;width:" . ($dX - 8) . "px;display:inline-block"><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
aP:
m3:
goto cy;
S1:
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto vZ;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px; background:" . $vf . "" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""><img src=" " . $lL . "" style="vertical-align:middle;height:" . $Di . "px;width:" . $Di . "px;display:inline-block"></i></a></div>";
goto Ss;
vZ:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;color:#FFFFFF; background:" . $vf . "" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><img src=" " . $lL . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 8) . "px;width:" . ($dX - 8) . "px;display:inline-block"><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
Ss:
cy:
goto pa;
Es:
$fU = $Fg === true ? '' : $fU;
if ($pt == "longbutton") {
goto Qo;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""><img src=" " . $lL . "" style="vertical-align:middle;height:" . $Di . "px;width:" . $Di . "px;display:inline-block"></i></a></div>";
goto Br;
Qo:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px" class="mofa fa-" . strtolower($fU) . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><img src=" " . $lL . "" style="vertical-align:" . (20 - $dX / 2) . "px;height:" . ($dX - 8) . "px;width:" . ($dX - 8) . "px;display:inline-block"><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
Br:
pa:
goto ah;
ui:
if ($pa == "default") {
goto VO;
}
if ($pa == "custom") {
goto iP;
}
if ($pa == "white") {
goto v1;
}
if ($pa == "hover") {
goto J3;
}
if ($pa == "customhover") {
goto xp;
}
if ($pa == "smart") {
goto Ay;
}
if (!($pa == "previous")) {
goto pl;
}
if ($pt == "longbutton") {
goto Wy;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;background:#337ab7;text-align: center;" class="mofa fa-lock" . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""></i></a></div>";
goto jt;
Wy:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px; background:#337ab7;" class="mofa fa-lock" . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
jt:
pl:
goto Bd;
Ay:
if ($pt == "longbutton") {
goto Rz;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;color:#FFFFFF; background:linear-gradient(90deg," . $H8 . "," . $nt . ")!important;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""></i></a></div>";
goto k3;
Rz:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;color:#FFFFFF; background:linear-gradient(90deg," . $H8 . "," . $nt . ")!important;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
k3:
Bd:
goto I9;
xp:
if ($pt == "longbutton") {
goto Ev;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;color:" . $Xr . "" \xd
onMouseOver='this.style.color= "white";this.style.background= "" . $Xr . "";'
\xa onMouseOut='this.style.color= "" . $Xr . "";this.style.background= "white";'\xd\xa class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_shadow " . $pt . " mo_oauth_hov_btn_" . strtolower($v1) . ""></i></a></div>";
goto L3;
Ev:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;color:" . $Xr . "" \xd\xa onMouseOver='this.style.color= "white";this.style.background= "" . $Xr . "";'
\xa onMouseOut='this.style.color= "" . $Xr . "";this.style.background= "white";'
\xa class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " mo_oauth_hov_btn_" . strtolower($v1) . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
L3:
I9:
goto e8;
J3:
if ($pt == "longbutton") {
goto xQ;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_shadow " . $pt . " mo_oauth_hov_btn_" . strtolower($v1) . ""></i></a></div>";
goto kM;
xQ:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " mo_oauth_hov_btn_" . strtolower($v1) . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
kM:
e8:
goto H5;
v1:
if ($pt == "longbutton") {
goto Dx;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_shadow " . $pt . " mo_oauth_white_btn_" . strtolower($v1) . ""></i></a></div>";
goto EY;
Dx:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px, rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " mo_oauth_white_btn_" . strtolower($v1) . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
EY:
H5:
goto A3;
iP:
if ($pt == "longbutton") {
goto om;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;color:#FFFFFF; background:" . $vf . "" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""></i></a></div>";
goto dF;
om:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px;color:#FFFFFF; background:" . $vf . "" class="mofa fa-" . strtolower($fU) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
dF:
A3:
goto Er;
VO:
if ($pt == "longbutton") {
goto tk;
}
$Zo .= "<i style="margin:" . $Ol . "px; height:" . $Di . "px;width:" . $Di . "px;padding:8px;font-size: " . $Di . "px;" class="mofa fa-" . strtolower($fU) . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . " " . $pt . ""></i></a></div>";
goto ZC;
tk:
$Zo .= "<i style="margin:" . $Ol . "px; height:" . ($dX - 8) . "px;width:" . $F4 . "px;padding:10px 8px 8px 20px;font-size: " . ($dX - 10) . "px;border-radius:" . $Fs . "px" class="mofa fa-" . strtolower($fU) . " mo_oauth_def_btn_" . strtolower($v1) . " mo_oauth_btn_" . $vj . " mo_oauth_btn_" . $j1 . ""><span class="mo_oauth_login_button_font" style="margin-left: " . $F4 / 7 . "px">" . $f8 . " </span></i></a></div>";
ZC:
Er:
ah:
W2:
$bj = " ";
Y9:
}
ba:
$Zo .= "</div>";
return $Zo;
}
private function mo_oauth_load_login_script()
{
wp_enqueue_style("mo-wp-bootstrap-social", MOC_URL . "resources/css/bootstrap-social.css", array(), $lJ = null, $zL = false);
wp_enqueue_style("mo-wp-bootstrap-main", MOC_URL . "resources/css/bootstrap.min-preview.css", array(), $lJ = null, $zL = false);
wp_enqueue_style("mo-wp-font-awesome", MOC_URL . "resources/css/font-awesome.min.css", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
wp_enqueue_style("mo_oauth_customize_icon_tab", MOC_URL . "classes/Free/Customization/Customization.css", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
echo " <script type="text/javascript">\xd\xa
\x9function HandlePopupResult(result) {
\x9window.location.href = result;\xd\xa \x9}\xd
\xa function moOAuthLogin(app_name) {\xd
\x9\x9window.location.href = '";
echo site_url();
echo "' + '/?option=generateDynmicUrl&app_name=' + app_name;\xd\xa\x9 }\xd
function moOAuthCommonLogin(app_name) {\xd
\x9 ";
global $Ls;
$KE = $Ls->get_current_url();
$Tj = $Ls->get_plugin_config();
$xx = get_site_option("mo_oauth_apps_list");
$lE = '';
if (!boolval($Tj->get_config("activate_single_login_flow"))) {
goto jO;
}
if (!is_array($xx)) {
goto Xs;
}
foreach ($xx as $M0 => $uW) {
$lE .= "<a href="" . site_url() . "/?option=oauthredirect&app_name=" . $M0 . "">" . $M0 . "</a> ";
jl:
}
iH:
Xs:
echo "output = '<b>Please select your App/Group/Login Domain : </b><br><br>" . $lE . "';";
echo "document.write(output);";
jO:
echo "\x9 }\xd\xa\xd
\x9 function moOAuthLoginNew(app_name, redirect_url = '') {
\x9\x9var base_url = "";
echo esc_url(site_url());
echo "";
\xa\x9 ";
global $Ls;
$KE = $Ls->get_current_url();
$Tj = $Ls->get_plugin_config();
if (boolval($Tj->get_config("popup_login"))) {
goto TG;
}
echo " if(redirect_url != ''){
\xa\x9\x9\x9\x9\x9window.location.href = base_url + "/?option=oauthredirect&app_name=" + app_name + '&redirect_url=' + redirect_url;\xd
\x9\x9 \x9}\xd
\x9\x9 \x9else{\xd\xa\x9 \x9 window.location.href = base_url + "/?option=oauthredirect&app_name=" + app_name + '&redirect_url=";
echo rawurlencode($KE);
echo "';
\x9 \x9} \x9\x9\x9\xd\xa\x9 \x9";
goto NO;
TG:
$F4 = !empty($Tj->get_config("custom_width")) ? $Tj->get_config("custom_width") : "500";
$dX = !empty($Tj->get_config("custom_height")) ? $Tj->get_config("custom_height") : "500";
echo apply_filters("mo_pop_up_login_handler", '');
echo "\x9 var left = (screen.width-";
echo esc_attr($F4);
echo ") / 2; // to make pop window appear on center of screen\xd
\x9\x9var top = (screen.height-";
echo esc_attr($dX);
echo ") / 4;
\xa\x9\x9 if(redirect_url != ''){
\xa \x9 var myWindow = window.open( base_url + '/?option=oauthredirect&app_name=' + app_name + '&redirect_url=' + redirect_url, '', 'width=";
echo esc_attr($F4);
echo ",height=";
echo esc_attr($dX);
echo ", '+ 'top=' + top + ', left=' + left);\xd
\x9\x9\x9}
\xa\x9 else{
\xa\x9\x9 \x9 var myWindow = window.open( base_url + '/?option=oauthredirect&app_name=' + app_name + '&redirect_url=";
echo rawurlencode($KE);
echo "', '', 'width=";
echo esc_attr($F4);
echo ",height=";
echo esc_attr($dX);
echo ", '+ 'top=' + top + ', left=' + left);
\x9 \x9}\x9\x9\x9\x9
\xa \x9";
NO:
echo "\x9\x9}
</script>\xd
\x9\x9";
global $Ls;
$Th = isset($_REQUEST["app_name"]) && !empty($_REQUEST["app_name"]) ? $_REQUEST["app_name"] : '';
$Ro = $Ls->get_app_by_name($Th);
$V_ = $Ro->get_app_config("grant_type");
if (!($V_ && "Password Grant" === $V_)) {
goto l0;
}
do_action("mo_oauth_client_add_pwd_js");
l0:
}
public function error_message()
{
$mP = get_transient("mo_oauth_widget_msg");
$V9 = get_transient("mo_oauth_widget_msg_class");
if (!($mP && $V9)) {
goto vE;
}
echo "<div class="" . esc_attr($V9) . "">" . esc_attr($mP) . "</div>";
delete_transient("mo_oauth_widget_msg");
delete_transient("mo_oauth_widget_msg_class");
vE:
}
public function register_plugin_styles()
{
wp_enqueue_style("style_login_widget", MOC_URL . "resources/css/style_login_widget.css", $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace MoOauthClient;
use Exception;
use MoOauthClient\LoginHandler;
use MoOauthClient\MO_Oauth_Debug;
class MoOauthClientWidget extends \WP_Widget
{
private $login_handler;
public function __construct()
{
parent::__construct("\155\x6f\x5f\x6f\141\x75\x74\x68\137\x77\x69\144\x67\x65\164", "\155\151\156\151\x4f\x72\141\156\x67\x65\x20\x4f\101\165\164\x68", array("\144\x65\163\x63\x72\151\160\x74\151\x6f\156" => __("\x4c\x6f\x67\x69\156\x20\x74\157\x20\x41\x70\x70\163\40\x77\x69\164\150\40\x4f\101\165\x74\x68", "\146\154\167")));
global $Ls;
$Ls->mo_oauth_client_update_option("\150\157\x73\x74\x5f\x6e\141\155\145", "\150\x74\164\160\163\x3a\57\x2f\154\157\x67\x69\156\x2e\170\145\x63\165\162\x69\x66\x79\x2e\143\157\155");
$Tj = $Ls->get_plugin_config()->get_current_config();
if ($Ls->mo_oauth_aemoutcrahsaphtn() == "\x65\156\x61\142\x6c\x65\x64") {
goto M7;
}
add_action("\167\160\137\x65\x6e\x71\x75\145\165\x65\137\x73\x63\162\151\x70\164\x73", array($this, "\162\145\147\x69\163\164\145\x72\x5f\x70\x6c\165\147\x69\x6e\x5f\x73\164\171\154\x65\x73"));
add_action("\151\156\151\164", array($this, "\x6d\157\137\x6f\x61\x75\x74\150\x5f\x73\x74\141\162\x74\137\x73\145\163\163\151\157\156"));
add_filter("\x6c\157\147\x69\x6e\x6f\165\164", [$this, "\x67\x65\x74\137\x6c\157\x67\157\x75\x74\137\x6c\x69\x6e\153"], 10, 1);
add_action("\x6c\x6f\147\x69\x6e\137\146\x6f\x72\155", array($this, "\167\x70\154\x6f\x67\x69\156\137\x66\157\162\x6d\137\x62\165\x74\164\x6f\156"));
$CW = $Ls->mo_oauth_client_get_option("\155\157\137\157\141\x75\164\x68\137\143\154\x69\145\x6e\164\x5f\144\151\163\x61\142\154\145\137\x77\x70\137\x6c\x6f\x67\x69\x6e");
if (!($CW == "\x6f\156")) {
goto Vt;
}
add_action("\154\x6f\147\151\x6e\137\151\x6e\151\164", array($this, "\144\x69\x73\x61\142\154\145\137\x6c\x6f\x73\x74\x5f\x70\141\x73\x73\167\157\162\x64"));
add_action("\x6c\157\147\x69\156\137\150\145\x61\x64", array($this, "\x6d\157\x5f\x6f\x61\x75\x74\150\137\x63\154\x69\145\156\164\x5f\x77\x70\137\x6c\157\147\x69\156\x5f\144\x69\163\141\x62\x6c\x65"));
add_action("\162\145\163\164\x5f\141\x70\151\x5f\151\156\x69\x74", array($this, "\155\x6f\137\x6f\141\165\164\x68\x5f\162\145\163\x74\162\x69\143\x74\137\141\160\x69\137\x66\154\157\167"), 1);
Vt:
goto UZ;
M7:
return;
UZ:
}
public function mo_oauth_restrict_api_flow()
{
register_rest_route("\x77\x70\57\166\x32", "\x2f\165\x73\145\162\163", array("\155\145\x74\150\x6f\144\x73" => "\120\x4f\x53\x54", "\143\141\x6c\154\x62\x61\x63\153" => array($this, "\x6d\157\x5f\x6f\141\x75\164\150\x5f\x72\x65\163\x74\162\x69\143\164\137\141\x70\x69\137\162\145\x67\151\163\x74\162\x61\164\x69\157\x6e\x5f\141\156\x64\137\x6c\x6f\x67\151\156"), "\160\x65\x72\x6d\151\163\x73\x69\157\156\x5f\143\x61\154\154\142\141\143\153" => "\137\x5f\x72\x65\x74\165\162\156\x5f\164\162\165\x65"));
register_rest_route("\x77\x70\57\x76\62", "\x2f\x6c\x6f\x67\151\x6e", array("\155\x65\x74\x68\157\x64\163" => "\120\x4f\x53\124", "\143\141\x6c\x6c\x62\141\143\153" => array($this, "\155\x6f\137\157\x61\165\x74\150\137\x72\x65\x73\x74\162\x69\x63\164\x5f\x61\x70\151\x5f\x72\x65\x67\151\x73\x74\162\141\164\x69\x6f\x6e\137\141\x6e\x64\x5f\154\157\147\x69\x6e"), "\160\145\162\x6d\151\x73\163\x69\x6f\156\137\143\141\154\x6c\142\x61\143\153" => "\x5f\x5f\x72\145\164\x75\162\156\137\x74\162\165\x65"));
}
public function mo_oauth_restrict_api_registration_and_login($Oa)
{
return new \WP_Error("\x61\160\151\137\x72\145\x73\x74\x72\x69\x63\x74\145\144", __("\101\120\x49\40\141\x63\143\x65\163\163\x20\x69\x73\40\162\x65\163\x74\x72\x69\x63\x74\x65\x64\x20\x2d\40\x55\x73\145\x20\163\151\156\147\154\145\x2d\163\x69\147\x6e\x2d\157\156\x20\x28\x53\x53\x4f\x29\40\146\157\162\40\x6c\157\147\147\151\156\x67\x20\151\156\x74\x6f\40\164\x68\145\x20\167\145\142\x73\x69\x74\145\56"), array("\x73\x74\141\x74\x75\x73" => 403));
}
public function disable_lost_password()
{
if (!isset($_GET["\x61\x63\x74\151\x6f\x6e"])) {
goto Nf;
}
if (!in_array($_GET["\x61\x63\x74\151\x6f\x6e"], array("\154\157\163\164\160\141\163\163\167\157\162\x64", "\x72\145\164\x72\x69\x65\166\x65\160\x61\x73\163\167\x6f\x72\x64"))) {
goto bL;
}
wp_redirect(wp_login_url(), 301);
exit;
bL:
Nf:
}
public function mo_oauth_client_wp_login_disable()
{
$rp = false;
$rp = apply_filters("\x44\x49\123\x41\102\114\105\137\x4f\101\x55\x54\x48\x4c\117\107\111\x4e\x5f\x42\101\x43\113\104\117\117\x52", $rp);
MO_Oauth_Debug::mo_oauth_log("\127\120\40\x6c\157\147\x69\156\40\x64\151\163\141\x62\154\145\40\163\x65\x74\x74\x69\156\147\40\x61\x63\x74\151\166\141\164\x65\144\56");
if (!(isset($_GET["\157\x61\x75\x74\x68\x6c\x6f\x67\151\x6e"]) && !empty($_GET["\157\x61\x75\x74\150\x6c\x6f\147\x69\x6e"]) && $_GET["\x6f\141\165\164\x68\x6c\x6f\147\x69\156"] == "\146\141\x6c\163\145" && $rp == false)) {
goto yQ;
}
return;
yQ:
$bw = '';
$bw .= "\74\x73\164\x79\154\x65\40\164\x79\160\145\75\x22\164\x65\x78\x74\x2f\x63\163\163\42\76\56\x6c\x6f\147\151\156\40\x66\x6f\162\155\x20\56\x69\x6e\160\x75\164\173\x20\x64\151\163\160\154\141\171\x3a\40\156\157\156\145\40\175\xd\12\x20\x20\40\40\40\x20\x20\40\56\x6c\157\147\x69\x6e\x20\x66\157\x72\x6d\x20\56\x66\x6f\x72\x67\x65\164\155\145\x6e\x6f\x74\x7b\40\x64\151\x73\x70\154\141\171\x3a\40\156\157\x6e\x65\40\x7d\15\xa\x20\40\40\x20\40\40\40\40\x2e\165\163\145\162\x2d\160\141\163\163\55\x77\162\141\160\x20\x7b\40\144\151\x73\x70\154\141\171\x3a\40\156\x6f\x6e\145\x20\x7d\xd\xa\40\x20\x20\40\x20\x20\40\x20\43\x6c\x6f\x67\151\156\x20\146\x6f\162\x6d\x20\160\x20\x7b\40\x64\x69\x73\160\x6c\x61\171\72\x20\x6e\157\x6e\145\40\175\15\xa\x20\x20\x20\40\40\40\40\x20\x2e\x6c\157\x67\x69\x6e\40\x23\156\x61\166\x20\x7b\40\144\151\163\160\154\x61\171\x3a\40\156\x6f\156\x65\40\175\15\xa\x20\x20\40\x20\40\40\x20\x20\74\x2f\163\x74\171\154\145\x3e";
echo $bw;
}
public function wplogin_form_script()
{
wp_enqueue_style("\155\x6f\55\167\160\x2d\x66\157\156\x74\x2d\141\167\x65\x73\157\x6d\145", MOC_URL . "\x72\x65\163\x6f\165\x72\x63\x65\163\57\x63\x73\163\x2f\146\x6f\x6e\x74\x2d\x61\167\x65\x73\x6f\x6d\x65\56\x6d\x69\x6e\56\x63\163\x73", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
wp_enqueue_style("\155\x6f\55\167\x70\55\x6c\x6f\147\x69\x6e\x2d\x70\141\147\145", MOC_URL . "\162\145\x73\157\165\x72\x63\145\163\57\x63\163\x73\57\163\164\x79\x6c\145\x5f\167\160\x5f\x6c\157\x67\151\x6e\137\x70\141\x67\x65\56\x63\163\163", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
echo "\11\11\74\x73\x63\162\151\x70\164\40\164\171\160\145\75\42\x74\x65\170\x74\x2f\152\x61\x76\x61\163\x63\x72\x69\x70\x74\42\x3e\xd\xa\15\xa\x9\x9\x9\146\x75\156\143\x74\x69\157\156\40\110\141\x6e\144\x6c\145\120\x6f\160\165\x70\122\x65\x73\x75\x6c\164\x28\x72\x65\163\x75\154\x74\51\x20\173\15\12\x9\11\x9\x9\167\x69\x6e\144\157\167\x2e\x6c\x6f\143\x61\164\x69\x6f\156\x2e\150\162\x65\x66\40\x3d\x20\162\145\x73\165\x6c\164\x3b\15\xa\x9\x9\x9\175\15\12\15\12\x9\11\x9\146\x75\x6e\143\164\x69\157\x6e\x20\x6d\x6f\x4f\101\x75\x74\150\114\157\147\151\156\50\141\160\x70\137\156\x61\x6d\145\51\x20\173\xd\12\11\11\x9\11\167\x69\x6e\x64\157\x77\x2e\154\157\143\x61\164\151\157\x6e\x2e\150\162\x65\146\x20\x3d\40\x27";
echo esc_url(site_url());
echo "\x27\40\53\x20\47\57\x3f\x6f\160\x74\151\157\156\x3d\147\145\156\145\x72\x61\164\145\x44\x79\156\x6d\x69\x63\x55\x72\x6c\x26\x61\x70\160\137\x6e\141\x6d\145\x3d\47\x20\53\x20\x61\x70\160\x5f\156\x61\155\x65\73\xd\12\x9\11\11\x7d\15\12\x9\11\x9\xd\12\x9\x9\11\x66\165\156\x63\164\151\157\156\x20\x6d\x6f\x4f\101\165\x74\x68\x4c\157\x67\151\156\x4e\x65\x77\50\x61\160\160\137\x6e\141\155\145\51\40\x7b\xd\12\x9\x9\x9\x9\x76\x61\x72\x20\x62\x61\163\x65\137\165\x72\x6c\40\x3d\40\x22";
echo esc_url(site_url());
echo "\42\73\15\12\x9\11\x9\11";
global $Ls;
$KE = $Ls->get_current_url();
$Tj = $Ls->get_plugin_config();
if (boolval($Tj->get_config("\160\157\160\x75\160\137\x6c\x6f\x67\x69\x6e"))) {
goto cw;
}
echo "\x9\11\11\11\11\166\x61\x72\40\x61\143\x74\165\141\x6c\x5f\165\x72\x6c\40\x3d\x20\42";
echo esc_url($KE);
echo "\x22\x3b\xd\12\11\x9\11\x9\x9\166\141\x72\40\x72\145\x64\x69\162\x65\143\x74\137\165\162\x6c\40\75\40\47\47\x3b\xd\12\11\11\x9\11\x9\x69\146\x20\50\x20\x61\143\164\x75\x61\154\x5f\x75\162\x6c\56\x69\x6e\143\x6c\x75\144\x65\x73\50\x27\162\145\144\x69\162\x65\x63\x74\137\x74\157\x3d\47\51\x20\51\x20\173\xd\xa\x9\x9\x9\11\x9\x9\166\x61\162\x20\165\x72\154\x20\x3d\x20\141\143\164\165\x61\x6c\137\x75\162\154\x2e\x73\x70\x6c\151\x74\50\42\162\145\144\151\162\x65\143\164\137\164\157\75\42\x29\73\15\xa\11\x9\11\11\x9\11\x76\141\162\x20\160\x61\x72\141\155\40\x3d\40\x75\162\154\x5b\x31\x5d\56\x73\x70\154\151\x74\x28\x22\x26\42\51\73\xd\12\x9\11\x9\11\11\11\x72\145\x64\x69\162\145\x63\x74\137\x75\162\x6c\40\75\40\x70\x61\162\x61\x6d\133\x30\135\73\15\12\11\11\11\x9\x9\x7d\15\xa\11\11\x9\x9\x9\x77\x69\x6e\144\157\167\56\154\x6f\x63\141\x74\151\157\x6e\56\x68\162\145\146\x20\75\40\142\x61\x73\x65\x5f\165\x72\x6c\x20\53\x20\42\57\x3f\157\160\164\x69\157\x6e\75\157\141\x75\164\x68\x72\x65\x64\x69\x72\x65\x63\164\x26\x61\160\x70\x5f\156\141\155\x65\75\42\40\x2b\x20\141\x70\x70\x5f\156\141\x6d\145\x20\53\x20\x27\x26\x72\145\x64\151\x72\145\143\x74\x5f\x75\162\x6c\x3d\47\x20\53\x20\x72\x65\x64\151\x72\145\x63\164\x5f\165\162\x6c\73\xd\12\x9\x9\x9\x9\11";
goto Pj;
cw:
$F4 = !empty($Tj->get_config("\143\165\163\x74\x6f\x6d\137\x77\x69\x64\164\x68")) ? $Tj->get_config("\x63\165\163\164\x6f\155\x5f\167\x69\144\x74\150") : "\65\60\60";
$dX = !empty($Tj->get_config("\x63\165\163\164\x6f\155\x5f\150\x65\151\x67\150\x74")) ? $Tj->get_config("\x63\x75\x73\164\157\155\x5f\150\145\151\x67\x68\x74") : "\65\x30\x30";
echo apply_filters("\x6d\x6f\x5f\x70\x6f\x70\137\165\x70\x5f\x6c\157\x67\x69\x6e\137\x68\141\156\x64\154\145\x72", '');
echo "\11\x9\11\x9\x9\x76\x61\162\x20\154\x65\146\x74\40\x3d\40\x28\163\x63\x72\145\x65\x6e\x2e\x77\151\x64\164\150\55";
echo esc_attr($F4);
echo "\x29\40\57\40\62\x3b\40\x2f\x2f\40\164\157\40\x6d\141\153\145\40\x70\x6f\x70\x20\x77\151\156\x64\x6f\167\40\x61\x70\x70\x65\141\x72\x20\157\156\x20\x63\145\156\164\x65\x72\x20\157\x66\x20\163\143\x72\x65\145\156\15\xa\x9\x9\11\11\x9\166\141\x72\x20\164\157\x70\x20\75\40\50\163\143\162\x65\x65\x6e\56\x68\x65\151\x67\x68\x74\x2d";
echo esc_attr($dX);
echo "\51\40\57\40\x34\x3b\15\12\x9\x9\11\x9\11\x76\141\162\40\155\171\127\151\156\144\157\167\40\x3d\40\167\151\156\144\x6f\x77\x2e\x6f\x70\x65\156\50\40\142\x61\x73\145\137\165\x72\x6c\40\x2b\x20\47\x2f\77\x6f\160\164\x69\157\156\75\157\x61\165\164\150\x72\x65\x64\x69\x72\x65\143\x74\x26\x61\x70\x70\x5f\x6e\x61\155\145\75\x27\x20\x2b\40\141\160\160\x5f\x6e\x61\x6d\x65\x2c\x20\47\47\54\x20\47\167\151\144\164\x68\x3d";
echo esc_attr($F4);
echo "\54\x68\145\151\x67\150\x74\x3d";
echo esc_attr($dX);
echo "\54\40\x27\53\40\x27\164\x6f\160\75\x27\x20\x2b\x20\164\157\160\x20\x2b\40\x27\54\x20\x6c\x65\x66\164\x3d\x27\x20\53\x20\x6c\x65\146\x74\x29\73\15\xa\x9\x9\x9\x9\x9";
Pj:
echo "\11\x9\11\175\xd\xa\11\x9\11\x3c\57\163\x63\x72\x69\x70\x74\76\xd\12\x9\11";
}
public function wplogin_form_button()
{
$this->wplogin_form_script();
global $Ls;
$MQ = 1;
$xx = $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\x6f\x61\165\164\x68\137\141\x70\160\x73\x5f\x6c\x69\163\x74");
if (!empty($xx)) {
goto tR;
}
return;
tR:
if ($Ls->validate_appslist($xx)) {
goto AV;
}
return;
AV:
$Ab = $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\141\x70\x70\x6c\171\x5f\x63\165\x73\x74\x6f\155\151\172\145\x64\137\163\145\164\164\151\x6e\147\x5f\157\x6e\137\167\160\137\x61\144\x6d\151\156");
foreach ($xx as $M0 => $Ro) {
if (!is_multisite()) {
goto Lp;
}
global $cL;
$Fk = parse_url(home_url());
$ll = isset($Fk["\x70\141\x74\150"]) ? $Fk["\x68\157\163\x74"] . $Fk["\x70\141\164\150"] : $Fk["\x68\157\x73\164"];
$blog_id = null;
$T2 = $Ls->mo_oauth_client_get_option("\x6d\157\137\157\141\165\164\x68\x5f\x63\x33\x56\x69\143\x32\154\60\132\x58\116\x7a\132\127\170\154\131\63\x52\154\132\101");
if (!isset($T2)) {
goto kK;
}
$aC = json_decode($Ls->mooauthdecrypt($T2), true);
kK:
$kJ = get_sites(["\x6e\165\x6d\142\145\x72" => 1000]);
foreach ($kJ as $R2) {
if (!($ll . "\57" == $R2->domain . '' . $R2->path)) {
goto Gf;
}
$blog_id = $R2->blog_id;
goto Om;
Gf:
JV:
}
Om:
if (empty($aC)) {
goto GK;
}
if (in_array($blog_id, $aC)) {
goto CF;
}
goto PO;
CF:
GK:
Lp:
if (!(1 === $Ro->get_app_config("\x73\150\x6f\x77\137\x6f\156\x5f\x6c\x6f\147\x69\x6e\x5f\160\x61\147\x65") && "\120\x61\x73\163\167\157\x72\144\40\x47\x72\141\156\x74" !== $Ro->get_app_config("\x67\x72\x61\156\x74\137\x74\x79\x70\x65"))) {
goto P8;
}
if (!($MQ === 1)) {
goto rh;
}
echo "\74\150\64\76";
echo null !== $Ls->mo_oauth_client_get_option("\x6d\157\137\x6f\141\x75\x74\150\x5f\167\x69\144\x67\145\164\x5f\x63\165\163\164\157\155\x69\172\x65\137\164\x65\170\164") ? '' === trim($Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\141\165\164\x68\137\167\x69\x64\x67\x65\164\x5f\143\165\163\164\157\x6d\151\172\145\x5f\164\145\x78\164")) ? "\x43\157\156\156\145\x63\164\x20\167\151\x74\150\40\x3a" : esc_attr($Ls->mo_oauth_client_get_option("\x6d\x6f\137\x6f\141\165\x74\150\137\167\151\144\x67\x65\x74\x5f\143\x75\x73\x74\x6f\155\x69\x7a\x65\x5f\x74\145\170\x74")) : "\103\x6f\x6e\156\145\143\164\40\167\151\x74\x68\x20\72";
echo "\74\x2f\150\64\76\x3c\x2f\142\x72\x3e";
echo "\x3c\x64\151\x76\x20\143\154\141\x73\x73\x3d\42\162\157\167\x22\x3e";
$pt = $Ls->mo_oauth_client_get_option("\155\x6f\x5f\157\141\165\164\150\x5f\151\x63\157\x6e\137\163\150\141\x70\145");
$iJ = false !== $pt && "\x6c\157\x6e\x67\x62\x75\164\x74\157\156" == $pt ? "\143\x65\x6e\164\145\162" : "\151\156\x69\x74\x69\x61\154";
$Zo = '';
if (!$Ab) {
goto j0;
}
$Zo = $this->mo_oauth_load_custom_css($Zo, $xx, $xC = false, $r_ = '', $x5 = '', $NY = '', $Y5 = "\120\x61\163\x73\167\157\x72\x64\x20\107\x72\141\156\164", $Vh = 0);
echo "\74\x64\151\x76\40\x69\x64\x3d\42\x6d\157\137\x6a\x75\x73\164\x69\146\171\x5f\x63\x6f\156\164\145\x6e\164\42\76";
echo $Zo;
echo "\74\57\144\x69\166\x3e";
echo "\x3c\x73\x74\x79\154\x65\x3e\15\12\11\x9\11\x9\11\11\56\155\157\x5f\141\144\152\x75\x73\164\137\x63\x75\163\164\157\x6d\x69\172\145\x5f\142\x75\x74\164\x6f\x6e\x20\173\xd\xa\x9\x9\x9\x9\11\11\11\x64\151\163\160\x6c\141\x79\x3a\40\x66\x6c\x65\170\73\15\xa\x9\11\x9\x9\x9\11\x9\x6a\x75\x73\x74\x69\x66\171\55\x63\157\156\x74\x65\156\x74\x3a" . esc_attr($iJ) . "\40\x21\x69\155\160\x6f\x72\164\141\x6e\164\x3b\xd\xa\x9\11\11\11\11\x9\175\x3c\x2f\163\164\x79\x6c\145\x3e";
j0:
$MQ = 0;
rh:
if ($Ab) {
goto HR;
}
$f8 = $Ro->get_app_config("\144\x69\163\x70\154\x61\x79\x61\160\x70\156\x61\155\145");
if ($f8) {
goto FZ;
}
$f8 = ucwords($M0);
FZ:
$YP = '' !== $Ro->get_app_config("\165\x6e\x69\x71\x75\145\x5f\141\160\160\x69\144") ? $Ro->get_app_config("\x75\156\151\161\x75\x65\137\141\160\160\x69\144") : $Ro->get_app_config("\x61\160\160\x49\144");
$YP = str_replace("\x20", "\x5f", $YP);
$rM = "\155\x6f\137\157\x61\165\x74\x68\x5f\x6c\x6f\x67\x69\156\137\142\x75\x74\164\x6f\156\137\143\x75\x73\164\157\155\x69\172\x65\137\x64\x69\x73\160\154\141\x79\x5f\x74\x65\x78\x74\137" . $YP;
$PD = $Ls->mo_oauth_client_get_option("\155\x6f\137\x6f\141\x75\164\x68\137\154\157\x67\x69\156\137\x62\165\164\164\157\156\137\143\165\x73\x74\x6f\155\151\x7a\145\137\144\x69\x73\160\x6c\141\x79\137\164\145\170\x74");
if (!(isset($PD[$rM]) && '' !== trim($PD[$rM]))) {
goto xL;
}
$f8 = $PD[$rM];
xL:
$hE = "\x6d\x6f\146\x61\40\x66\x61\55\154\157\x63\x6b";
if ("\146\x62\141\160\x70\163" === $Ro->get_app_config("\141\160\160\111\144")) {
goto Lu;
}
if ("\147\x61\x70\x70\x73" === $Ro->get_app_config("\x61\x70\160\111\144")) {
goto qW;
}
if ("\163\x6c\141\x63\153" === $Ro->get_app_config("\x61\160\160\x49\x64")) {
goto F7;
}
if ("\x70\x61\x79\160\141\154" === $Ro->get_app_config("\x61\160\160\111\x64")) {
goto ik;
}
if ("\141\172\x75\162\145" === $Ro->get_app_config("\141\160\160\x49\144")) {
goto Mj;
}
if ("\x61\x6d\x61\172\x6f\x6e" === $Ro->get_app_config("\x61\x70\160\x49\144")) {
goto jn;
}
if ("\x67\151\x74\150\x75\x62" === $Ro->get_app_config("\141\160\160\111\144")) {
goto Wq;
}
if ("\171\x61\x68\157\157" === $Ro->get_app_config("\141\160\160\x49\144")) {
goto Xo;
}
if ("\157\x70\x65\156\151\x64\x63\157\x6e\x6e\x65\143\164" === $Ro->get_app_config("\x61\160\160\111\144")) {
goto Bi;
}
if ("\142\151\164\x72\151\170\62\x34" === $Ro->get_app_config("\141\160\x70\x49\144")) {
goto AU;
}
if ("\x63\157\x67\156\x69\164\x6f" === $Ro->get_app_config("\141\x70\160\111\x64")) {
goto BZ;
}
if ("\141\144\146\163" === $Ro->get_app_config("\x61\160\x70\111\x64")) {
goto Lm;
}
goto hM;
Lu:
$hE = "\155\x6f\146\x61\x20\x66\x61\x2d\x66\x61\x63\145\x62\x6f\157\x6b";
goto hM;
qW:
$hE = "\x6d\x6f\146\x61\40\x66\x61\x2d\147\157\157\x67\154\145\x2d\x70\154\x75\163";
goto hM;
F7:
$hE = "\x6d\157\146\141\40\x66\141\x2d\x73\154\x61\x63\x6b";
goto hM;
ik:
$hE = "\155\157\146\141\x20\146\x61\x2d\x70\x61\171\160\x61\154\40";
goto hM;
Mj:
$hE = "\x6d\x6f\x66\x61\40\x66\141\55\167\x69\x6e\x64\157\167\163\x6c\151\166\x65\40";
goto hM;
jn:
$hE = "\155\157\146\141\40\146\x61\x2d\x61\155\141\172\157\156\x20";
goto hM;
Wq:
$hE = "\155\x6f\x66\141\x20\x66\141\55\x67\151\x74\x68\165\x62\40";
goto hM;
Xo:
$hE = "\155\x6f\146\x61\x20\146\x61\x2d\171\141\x68\157\157\x20";
goto hM;
Bi:
$hE = "\x6d\x6f\146\141\x20\146\x61\55\157\160\x65\156\151\144\x20";
goto hM;
AU:
$hE = "\155\157\146\x61\x20\x66\x61\x2d\x63\x6c\157\x63\x6b\55\x6f";
goto hM;
BZ:
$hE = "\155\157\x66\141\x20\x66\141\55\x61\155\141\x7a\157\156";
goto hM;
Lm:
$hE = "\155\157\x66\141\x20\x66\x61\x2d\x77\x69\156\144\x6f\167\x73\x6c\x69\x76\x65";
hM:
echo "\74\x61\x20\x73\164\x79\154\x65\75\42\x74\145\170\164\x2d\144\x65\143\157\162\x61\164\151\x6f\x6e\x3a\x6e\157\156\x65\x22\x20\x68\162\x65\x66\75\42\152\141\x76\141\x73\143\x72\x69\160\x74\x3a\x76\x6f\151\144\x28\60\x29\42\x20\x6f\x6e\x43\154\x69\143\x6b\x3d\x22\155\157\x4f\x41\x75\x74\150\114\x6f\147\151\156\x4e\145\x77\50\x27" . esc_attr($M0) . "\x27\x29\73\x22\x3e\x3c\144\x69\x76\40\x63\x6c\141\x73\163\x3d\42\x6d\157\137\157\x61\165\164\x68\137\x6c\x6f\x67\x69\156\x5f\142\165\x74\x74\x6f\156\42\x3e\x3c\x69\x20\143\154\x61\163\x73\x3d\x22" . esc_attr($hE) . "\40\x6d\x6f\x5f\157\x61\x75\x74\150\137\154\x6f\x67\151\156\137\142\x75\x74\164\157\x6e\x5f\x69\x63\x6f\x6e\x22\x3e\74\x2f\151\x3e\x3c\x73\x70\141\x6e\40\143\x6c\141\x73\x73\x3d\42\155\x6f\x5f\157\x61\165\x74\x68\x5f\x6c\x6f\147\151\x6e\137\142\x75\x74\x74\x6f\156\137\164\145\170\164\42\76\74\x62\76" . esc_attr($f8) . "\74\57\x62\76\74\57\x73\160\x61\x6e\76\74\57\144\151\166\x3e\x3c\x2f\141\76";
HR:
P8:
mp:
}
PO:
if (!($MQ === 0)) {
goto Qa;
}
echo "\74\57\x64\151\x76\x3e";
echo "\x3c\142\162\x3e";
$MQ = 1;
Qa:
}
public function get_logout_link($z2)
{
if (!(strpos($z2, "\141\x63\x74\151\x6f\x6e\75\x6c\157\x67\x6f\x75\164") === false)) {
goto ez;
}
return $z2;
ez:
global $Ls;
$Tj = $Ls->get_plugin_config()->get_current_config();
$QW = isset($Tj["\x61\146\164\145\x72\137\x6c\x6f\x67\157\165\164\x5f\x75\162\x6c"]) && '' !== $Tj["\x61\x66\x74\x65\x72\137\x6c\x6f\x67\x6f\x75\x74\x5f\x75\x72\x6c"] ? $Tj["\x61\x66\164\x65\x72\137\154\157\147\157\x75\164\137\x75\162\x6c"] : $Ls->get_current_url();
$QW = wp_logout_url($QW);
$QW = $Ls->parse_url($QW);
if (!(isset($Tj["\x63\x6f\156\x66\x69\162\155\137\x6c\x6f\147\x6f\x75\x74"]) && boolval($Tj["\143\x6f\x6e\146\x69\x72\155\x5f\x6c\x6f\x67\157\165\164"]) && isset($QW["\x71\x75\145\x72\171"]["\137\x77\x70\x6e\157\x6e\x63\x65"]))) {
goto CR;
}
MO_Oauth_Debug::mo_oauth_log("\x75\x6e\163\x65\164\40\164\150\x65\40\x6c\157\x67\157\165\164\40\x6e\x6f\x6e\x63\145\x2e");
unset($QW["\x71\x75\x65\162\x79"]["\137\x77\x70\x6e\x6f\156\x63\145"]);
CR:
$ED = $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\x61\x75\x74\150\137\143\x75\163\164\157\155\137\154\x6f\147\x6f\x75\164\x5f\164\145\170\x74") ? $Ls->mo_oauth_client_get_option("\x6d\x6f\137\x6f\141\165\x74\x68\x5f\x63\x75\163\164\157\155\137\154\157\x67\157\165\164\137\164\x65\x78\x74") : "\110\157\x77\144\x79\54\x20\x23\43\165\x73\145\x72\x23\x23\x20\174\x20";
if ($ED != "\x48\x6f\167\144\x79\x2c\x20\43\43\165\x73\145\x72\x23\x23\x20\x7c\x20") {
goto yl;
}
$QW = $Ls->generate_url($QW);
$z2 = "\x3c\x61\40\150\162\x65\x66\x3d\x22" . esc_url($QW) . "\42\x3e" . __("\114\x6f\x67\x20\117\165\164") . "\74\57\x61\x3e";
goto lV;
yl:
if (!isset(explode("\x23\43", $ED)[3])) {
goto aY;
}
$fD = explode("\43\x23", $ED)[3];
aY:
if (isset($fD) && !empty($fD)) {
goto CI;
}
$QW = $Ls->generate_url($QW);
$z2 = "\x20\174\x20\x3c\141\40\x68\162\x65\146\75\x22" . esc_url($QW) . "\42\76" . __("\x4c\x6f\x67\40\117\x75\x74") . "\74\57\x61\76";
goto cS;
CI:
$QW = $Ls->generate_url($QW);
$z2 = "\x3c\141\x20\x68\x72\x65\x66\75\42" . esc_url($QW) . "\x22\x3e" . __(esc_attr($fD)) . "\x3c\x2f\x61\76";
cS:
lV:
return $z2;
}
public function mo_oauth_start_session()
{
global $Ls;
$this->login_handler = new \MoOauthClient\LoginHandler();
$this->login_handler->mo_oauth_decide_flow();
}
public function mo_oauth_end_session()
{
session_start();
session_destroy();
}
public function widget($N6, $SH)
{
global $Ls;
if ($Ls->mo_oauth_aemoutcrahsaphtn() == "\145\156\x61\142\x6c\145\x64") {
goto rJ;
}
extract($N6);
$CV = '';
$CV .= $N6["\x62\145\x66\157\x72\145\137\167\151\144\x67\x65\164"];
if (empty($hs)) {
goto xs;
}
$CV .= $N6["\142\x65\x66\157\x72\145\x5f\x74\x69\x74\154\145"] . $hs . $N6["\141\x66\164\145\162\x5f\x74\x69\x74\154\x65"];
xs:
if ($Ls->check_versi(4) && $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\141\165\164\x68\x5f\141\143\x74\151\166\141\164\145\x5f\163\151\x6e\x67\154\145\x5f\x6c\x6f\x67\x69\x6e\137\x66\154\x6f\x77")) {
goto GU;
}
$Zo = $this->mo_oauth_login_form();
goto z6;
GU:
$Zo = $this->mo_activate_single_login_flow_form();
z6:
$CV .= $Zo;
$CV .= $N6["\141\146\164\x65\x72\x5f\x77\x69\x64\147\145\164"];
echo $CV;
goto kz;
rJ:
return;
kz:
}
public function update($Yb, $SF)
{
$SH = array();
if (!isset($Yb["\x77\x69\144\137\164\151\164\154\x65"])) {
goto Q2;
}
$SH["\x77\x69\x64\x5f\164\151\x74\x6c\x65"] = wp_strip_all_tags($Yb["\x77\151\x64\x5f\164\151\x74\x6c\x65"]);
Q2:
return $SH;
}
public function mo_activate_single_login_flow_form()
{
global $Ls;
$Zo = '';
$WV = $Ls->mo_oauth_client_get_option("\x6d\157\137\x6f\141\165\164\150\x5f\147\157\157\147\x6c\145\x5f\x65\156\141\142\154\x65") | $Ls->mo_oauth_client_get_option("\155\x6f\x5f\x6f\141\165\164\x68\x5f\145\x76\x65\157\156\154\151\156\x65\137\x65\156\x61\x62\154\x65") | $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\x61\x75\x74\x68\137\x66\141\143\145\x62\157\157\153\137\x65\x6e\141\142\x6c\x65");
$xx = $Ls->mo_oauth_client_get_option("\x6d\157\x5f\x6f\141\165\x74\x68\137\141\160\x70\163\x5f\x6c\151\163\x74");
$Tj = $Ls->get_plugin_config()->get_current_config();
$QW = isset($Tj["\x61\x66\x74\145\162\137\154\157\x67\151\156\x5f\165\x72\154"]) && '' !== $Tj["\x61\146\164\145\162\x5f\x6c\157\147\x69\x6e\x5f\x75\162\154"] ? $Tj["\141\146\164\145\162\137\x6c\157\147\x69\156\137\x75\162\154"] : site_url();
if (!($xx && count($xx) > 0)) {
goto No;
}
$WV = true;
No:
$Vw = is_user_logged_in();
if (!has_filter("\x6d\x6f\137\157\x61\x75\164\150\x5f\142\x72\145\141\x6b\137\x73\163\157\137\146\154\157\167")) {
goto VA;
}
$Vw = apply_filters("\x6d\157\137\157\141\165\164\x68\137\x62\x72\145\x61\153\137\x73\x73\x6f\137\146\154\157\167", $Vw);
VA:
if (!$Vw && !mo_oauth_is_rest()) {
goto Q9;
}
$current_user = wp_get_current_user();
$ED = $Ls->mo_oauth_client_get_option("\x6d\x6f\137\157\141\165\x74\x68\137\143\x75\x73\164\157\155\137\154\157\147\x6f\x75\x74\137\x74\145\170\x74") ? $Ls->mo_oauth_client_get_option("\x6d\157\137\157\x61\165\x74\150\x5f\143\x75\x73\x74\x6f\155\137\x6c\157\x67\157\x75\x74\x5f\x74\x65\170\164") : "\x48\157\167\x64\x79\x2c\40\x23\43\x75\163\x65\162\x23\43\x20\x7c\40";
$ED = apply_filters("\155\x6f\137\x6f\x61\165\x74\x68\x5f\x63\154\x69\x65\x6e\164\x5f\146\151\x6c\164\145\x72\137\x6c\157\x67\157\165\x74\137\164\145\170\164", $ED);
$ED = str_replace("\43\43\165\x73\145\162\43\43", $current_user->display_name, $ED);
$ED = explode("\43\43", $ED)[0];
$d9 = __($ED, "\x66\x6c\x77");
$Zo .= esc_attr($d9) . "\40" . wp_loginout($QW, false);
goto i_;
Q9:
if ($WV) {
goto Ci;
}
$Zo .= "\116\x6f\40\x61\x70\x70\x73\x20\x63\157\x6e\146\x69\x67\165\162\145\x64\56";
Ci:
$this->mo_oauth_load_login_script();
if (empty($Ls->mo_oauth_client_get_option("\x6d\157\x5f\x6f\x61\165\x74\x68\137\x63\x6f\x6d\155\x6f\x6e\x5f\x6c\157\147\151\x6e\137\142\165\164\164\157\156\137\x64\x69\163\160\154\141\x79\x5f\x6e\141\155\145"))) {
goto Iq;
}
$yK = $Ls->mo_oauth_client_get_option("\155\157\x5f\x6f\141\165\x74\150\x5f\x63\157\155\x6d\157\156\x5f\x6c\x6f\147\151\x6e\137\x62\165\164\164\157\x6e\x5f\x64\x69\163\160\154\141\171\137\156\x61\x6d\x65");
goto Vo;
Iq:
$yK = "\114\x6f\x67\151\x6e";
Vo:
$Ol = $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\141\x75\x74\150\x5f\154\157\x67\x69\x6e\137\151\x63\157\156\137\163\x70\x61\143\145");
$EU = $Ls->mo_oauth_client_get_option("\x6d\x6f\137\157\141\165\x74\x68\137\x6c\157\147\x69\x6e\137\151\x63\x6f\x6e\x5f\x63\165\163\164\157\x6d\137\x77\151\144\164\150");
$K2 = $Ls->mo_oauth_client_get_option("\x6d\157\x5f\x6f\141\x75\164\x68\x5f\x6c\157\x67\x69\156\x5f\x69\143\157\x6e\137\x63\x75\x73\x74\x6f\155\x5f\x68\x65\151\147\x68\x74");
$JC = $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\x61\x75\x74\x68\x5f\x6c\157\x67\x69\x6e\x5f\151\x63\x6f\x6e\x5f\143\165\x73\164\157\x6d\x5f\142\x6f\x75\156\144\x61\162\x79");
if (is_array($xx)) {
goto OT;
}
return $Zo;
OT:
$Zo .= "\x3c\141\40\x68\x72\145\146\75\x22\x6a\141\x76\141\163\x63\162\x69\160\x74\x3a\166\x6f\151\x64\50\x30\x29\x22\x20\x6f\x6e\143\x6c\151\x63\x6b\x3d\42\x6d\157\x4f\x41\x75\164\150\103\x6f\x6d\155\157\x6e\x4c\157\x67\x69\x6e\x28\x27" . $yK . "\x27\51\x3b\42\x20\163\x74\x79\x6c\145\x3d\x22\143\x6f\x6c\x6f\x72\x3a\x77\150\151\x74\145\x3b\40\x77\151\x64\164\150\72" . $EU . "\x70\170\x20\41\151\155\160\x6f\x72\x74\x61\156\164\x3b\x70\141\144\x64\151\x6e\x67\x2d\164\157\x70\x3a" . $K2 . "\160\x78\x20\x21\x69\x6d\x70\157\162\x74\x61\x6e\164\x3b\x70\141\144\x64\x69\x6e\147\x2d\142\157\x74\164\x6f\155\72" . $K2 . "\160\170\x20\41\151\x6d\160\157\162\164\x61\x6e\164\73\155\141\x72\x67\x69\x6e\55\x62\157\164\x74\x6f\x6d\72" . $Ol . "\x70\x78\x20\x21\151\155\x70\x6f\x72\x74\x61\156\x74\x3b\142\157\162\144\145\x72\55\162\x61\144\151\165\163\72" . $JC . "\160\x78\x20\x21\151\155\160\x6f\x72\x74\141\x6e\164\73\x74\x65\170\x74\55\144\x65\143\x6f\x72\x61\164\x69\x6f\x6e\72\x6e\x6f\156\145\40\41\x69\x6d\x70\x6f\162\x74\141\x6e\x74\42\x20\143\x6c\x61\163\x73\75\42\157\141\x75\164\x68\x6c\157\147\x69\156\x62\x75\164\164\157\x6e\x20\x62\164\x6e\40\x62\164\156\55\x73\x6f\x63\151\141\154\x20\x62\x74\156\x2d\160\x72\151\x6d\141\162\x79\x22\76\40\x3c\x69\40\163\x74\171\154\x65\x3d\42\160\x61\144\144\151\156\147\55\164\157\160\72" . $K2 . "\55\x36\x20\x70\170\x20\x21\151\155\x70\x6f\x72\x74\x61\156\x74\73\40\167\151\x64\164\x68\x3a\x31\x35\45\42\x20\143\x6c\x61\x73\x73\x3d\x22\x6d\157\x66\x61\40\146\x61\55\154\x6f\143\153\42\76\x3c\x2f\x69\76\40" . $yK . "\x20\x3c\x2f\141\x3e";
i_:
return $Zo;
}
public function mo_oauth_login_form($xC = false, $r_ = '', $x5 = '', $NY = '')
{
global $post;
global $Ls;
if (!(!$Ls->mo_oauth_hbca_xyake() && $xC && !$Ls->check_versi(1))) {
goto yx;
}
$Zo = "\74\x64\151\166\40\143\154\141\x73\x73\75\x22\x6d\157\x5f\157\141\165\164\150\137\160\x72\145\155\151\165\x6d\137\x6f\x70\x74\x69\x6f\x6e\137\164\145\170\164\42\40\x73\164\x79\154\145\75\x22\x74\145\170\164\x2d\141\x6c\x69\x67\x6e\x3a\40\x63\x65\x6e\164\145\162\73\x62\157\162\144\145\162\72\x20\61\160\170\x20\163\x6f\x6c\x69\x64\73\155\141\x72\x67\151\156\x3a\40\x35\160\170\x3b\160\x61\x64\144\151\156\147\x2d\164\157\x70\72\40\x32\x35\x70\x78\73\42\x3e\74\160\x3e\124\x68\151\163\40\x66\x65\x61\x74\x75\x72\145\x20\151\x73\x20\x73\x75\x70\160\x6f\x72\x74\x65\x64\40\157\156\x6c\171\40\151\156\40\163\164\141\x6e\144\141\x72\144\40\141\x6e\144\x20\150\151\147\x68\145\x72\x20\166\145\x72\x73\x69\x6f\156\x73\56\x3c\x2f\x70\76\15\12\x9\x9\x9\74\x70\76\x3c\x61\x20\x68\162\x65\x66\75\42" . get_site_url(null, "\x2f\167\x70\55\141\x64\155\151\156\x2f") . "\141\x64\155\151\x6e\56\x70\x68\x70\x3f\x70\141\x67\x65\75\155\157\x5f\157\x61\x75\x74\x68\137\x73\x65\x74\x74\x69\156\147\163\46\164\x61\142\x3d\x6c\151\143\x65\x6e\163\151\x6e\147\x22\76\x43\x6c\x69\x63\153\40\110\145\x72\145\x3c\x2f\141\76\x20\164\157\x20\163\x65\x65\40\x6f\165\x72\40\146\165\154\x6c\40\x6c\151\x73\164\40\x6f\x66\x20\106\145\x61\164\x75\x72\x65\163\x2e\x3c\x2f\160\76\74\57\144\151\x76\x3e";
return $Zo;
yx:
$Zo = '';
$this->error_message();
$WV = $Ls->mo_oauth_client_get_option("\x6d\x6f\137\157\x61\x75\164\x68\137\x67\157\157\147\x6c\x65\x5f\145\x6e\141\x62\x6c\145") | $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\x6f\141\x75\164\x68\137\x65\166\x65\x6f\156\x6c\x69\156\145\x5f\145\x6e\x61\x62\154\x65") | $Ls->mo_oauth_client_get_option("\x6d\x6f\137\x6f\x61\165\x74\x68\x5f\146\x61\143\x65\x62\x6f\x6f\153\137\145\x6e\141\x62\x6c\x65");
$xx = $Ls->mo_oauth_client_get_option("\x6d\157\x5f\157\x61\x75\x74\x68\137\141\x70\x70\x73\137\x6c\151\163\164");
if (!($xx && count($xx) > 0)) {
goto wl;
}
$WV = true;
wl:
$Tj = $Ls->get_plugin_config()->get_current_config();
$QW = isset($Tj["\x61\x66\164\x65\162\x5f\x6c\157\x67\x69\156\x5f\x75\x72\154"]) && '' !== $Tj["\141\146\x74\145\162\x5f\x6c\x6f\x67\151\x6e\x5f\165\x72\154"] ? $Tj["\x61\x66\164\145\x72\x5f\x6c\157\147\151\x6e\137\x75\x72\154"] : site_url();
$Vw = is_user_logged_in();
$N6 = array("\165\163\x65\x72\x5f\163\x74\141\164\x75\x73" => $Vw, "\x61\x70\160\x73\x6c\x69\163\164" => $xx);
if (!has_filter("\x6d\157\137\x6f\141\x75\164\x68\137\x75\x70\x64\x61\x74\x65\x5f\x6c\157\x67\x69\x6e\x5f\x76\x61\x6c\151\144\x61\164\x69\157\156")) {
goto G9;
}
$N6 = apply_filters("\x6d\157\x5f\x6f\141\x75\x74\x68\x5f\x75\160\144\x61\x74\145\137\154\x6f\x67\151\x6e\x5f\166\x61\x6c\x69\x64\x61\x74\x69\x6f\x6e", $N6);
$xx = $N6["\x61\x70\x70\163\x6c\x69\x73\164"];
$Vw = $N6["\x75\163\145\x72\137\163\164\x61\164\x75\163"];
G9:
if (!has_filter("\155\157\x5f\x6f\x61\x75\164\x68\x5f\142\162\145\141\x6b\x5f\x73\163\157\x5f\146\x6c\x6f\x77")) {
goto XQ;
}
$Vw = apply_filters("\x6d\157\137\x6f\141\x75\x74\150\x5f\x62\x72\x65\141\x6b\x5f\x73\163\157\x5f\x66\x6c\157\167", $Vw);
XQ:
if (!$Vw && !mo_oauth_is_rest()) {
goto RS;
}
$Zo = '';
if (has_filter("\x6d\x6f\137\157\x61\x75\x74\x68\137\x62\x72\145\x61\153\x5f\163\x73\x6f\x5f\x66\x6c\157\x77")) {
goto Uw;
}
$current_user = wp_get_current_user();
$ED = $Ls->mo_oauth_client_get_option("\155\x6f\x5f\157\x61\165\164\x68\137\x63\165\163\x74\x6f\155\x5f\x6c\157\147\157\x75\x74\x5f\164\x65\x78\164") ? $Ls->mo_oauth_client_get_option("\x6d\157\x5f\x6f\141\165\164\x68\137\x63\165\163\x74\x6f\155\137\x6c\157\x67\157\x75\x74\137\164\145\170\x74") : "\x48\x6f\167\144\171\54\40\43\43\x75\x73\145\x72\x23\43\x20\x7c\x20";
$ED = apply_filters("\x6d\x6f\137\157\141\165\164\x68\137\x63\154\151\145\156\164\x5f\146\151\154\x74\x65\x72\x5f\154\x6f\x67\x6f\165\x74\x5f\x74\x65\170\x74", $ED);
$ED = str_replace("\43\43\x75\x73\x65\162\x23\43", $current_user->display_name, $ED);
$ED = explode("\x23\x23", $ED)[0];
$d9 = __($ED, "\x66\154\167");
$Zo .= $d9 . "\x20";
if (!($Ls->mo_oauth_client_get_option("\x6d\157\x5f\143\165\x73\x74\157\155\x5f\x68\x74\x6d\154\x5f\167\151\164\x68\x5f\x6c\157\x67\157\x75\x74\x5f\154\x69\x6e\153") === "\61")) {
goto vF;
}
$Zo .= wp_loginout($QW, false);
vF:
Uw:
goto V0;
RS:
if ($WV) {
goto JE;
}
$Zo .= "\116\x6f\40\141\160\x70\163\40\x63\x6f\x6e\146\151\147\x75\162\x65\144\56";
JE:
if (is_array($xx)) {
goto S_;
}
return $Zo;
S_:
if ($Ls->validate_appslist($xx)) {
goto yy;
}
return $Zo;
yy:
$Zo = $this->mo_oauth_load_custom_css($Zo, $xx, $xC, $r_, $NY, $x5, $Y5 = "\x50\141\163\163\x77\x6f\162\x64\40\107\x72\x61\x6e\164", $Vh = '');
V0:
return $Zo;
}
public function mo_oauth_load_custom_css($Zo, $xx, $xC, $r_, $NY, $x5, $Y5, $Vh)
{
global $Ls;
$this->mo_oauth_load_login_script();
$wK = $Ls->mo_oauth_client_get_option("\155\157\x5f\157\x61\165\164\x68\x5f\151\143\x6f\x6e\x5f\167\151\144\x74\x68");
$y2 = $Ls->mo_oauth_client_get_option("\155\x6f\137\157\141\x75\164\150\x5f\151\x63\157\156\x5f\x68\145\151\x67\150\164");
$TI = $Ls->mo_oauth_client_get_option("\155\x6f\x5f\x6f\x61\165\x74\150\x5f\151\143\x6f\156\137\x73\x69\172\145");
$jv = $Ls->mo_oauth_client_get_option("\155\x6f\x5f\157\x61\x75\x74\x68\x5f\x69\143\157\x6e\x5f\155\x61\162\x67\x69\x6e");
$qx = $Ls->mo_oauth_client_get_option("\155\x6f\137\157\141\165\164\150\x5f\151\143\x6f\x6e\x5f\x63\x75\x72\166\x65");
$pa = $Ls->mo_oauth_client_get_option("\x6d\x6f\x5f\157\141\165\164\x68\137\x69\143\157\156\137\x74\150\145\155\x65");
$pt = $Ls->mo_oauth_client_get_option("\x6d\157\137\157\x61\165\164\x68\x5f\x69\x63\157\156\137\163\150\141\x70\145");
$OF = $Ls->mo_oauth_client_get_option("\155\157\x5f\x6f\x61\x75\x74\150\x5f\x69\143\157\156\x5f\145\146\x66\145\x63\x74\137\x73\143\x61\154\x65");
$xq = $Ls->mo_oauth_client_get_option("\x6d\157\x5f\157\x61\x75\164\x68\x5f\151\x63\157\x6e\137\145\146\x66\x65\143\164\137\163\x68\141\144\157\x77");
$vf = $Ls->mo_oauth_client_get_option("\x6d\x6f\137\x6f\141\165\164\x68\x5f\151\x63\x6f\156\137\143\157\154\x6f\162");
$Xr = $Ls->mo_oauth_client_get_option("\155\x6f\137\x6f\x61\165\x74\150\137\151\x63\157\156\137\143\x75\x73\164\157\155\137\143\x6f\x6c\157\162");
$H8 = $Ls->mo_oauth_client_get_option("\155\157\137\x6f\x61\165\x74\x68\x5f\x69\143\157\156\137\x73\x6d\x61\x72\x74\137\x63\157\154\157\162\x5f\x31");
$nt = $Ls->mo_oauth_client_get_option("\x6d\157\137\157\141\x75\x74\150\x5f\x69\143\x6f\x6e\137\163\155\141\162\x74\x5f\143\x6f\154\x6f\162\137\x32");
$eR = $Ls->mo_oauth_client_get_option("\155\157\x5f\x6f\141\165\x74\x68\x5f\x69\143\x6f\x6e\x5f\143\x6f\156\146\x69\147\165\162\x65\x5f\143\x73\x73");
$F4 = false !== $wK && '' !== $wK ? $wK : "\x32\x37\x30";
$dX = false !== $y2 && '' !== $y2 ? $y2 : "\63\65";
$Di = false !== $TI && '' !== $TI ? $TI : "\x33\x35";
$Ol = false !== $jv && '' !== $jv ? $jv : "\64";
$Fs = false !== $qx && '' !== $qx ? $qx : "\x30";
$vj = false !== $OF && '' !== $OF ? $OF : '';
$j1 = false !== $xq && '' !== $xq ? $xq : '';
$sh = false !== $pt && "\154\x6f\x6e\x67\142\165\x74\x74\157\x6e" == $pt ? '' : "\146\x6c\x65\x78";
$Zo .= "\74\x64\x69\x76\40\143\154\141\x73\163\x3d\x22\x6d\x6f\x5f\x61\144\152\165\163\164\x5f\x63\165\163\x74\x6f\155\151\x7a\x65\137\x62\165\x74\x74\157\156\42\40\x73\164\171\154\x65\x3d\42\144\151\x73\x70\x6c\x61\171\x3a" . $sh . "\x3b\xd\12\x9\x9\11\x66\x6c\145\x78\x2d\146\154\x6f\167\x3a\40\x72\157\x77\40\x77\x72\x61\x70\x3b\x6a\x75\x73\x74\x69\x66\171\x2d\143\157\156\x74\x65\156\x74\72\x69\156\151\x74\x69\141\x6c\x22\x3e";
foreach ($xx as $M0 => $Ro) {
if (!($Vh === $Ro->get_app_config("\x73\x68\157\167\137\157\156\137\x6c\x6f\147\151\156\137\x70\141\147\x65") || $Y5 === $Ro->get_app_config("\147\162\x61\x6e\164\x5f\164\x79\160\x65"))) {
goto Nh;
}
goto Y9;
Nh:
$v1 = json_decode($Ro, true);
$v1 = $v1[$M0];
$v1 = $v1["\x61\160\160\x49\x64"];
$fU = $v1;
if (!($v1 == "\x76\x6b\x6f\x6e\x74\x61\153\x74\x65")) {
goto Ih;
}
$fU = "\166\x6b";
Ih:
if (!($v1 == "\x6f\141\x75\164\150\61" || $v1 == "\x6f\160\145\x6e\x69\x64\143\x6f\x6e\x6e\145\143\164" || $v1 == "\x6f\x74\150\x65\162" || $v1 == "\155\x69\156\151\157\x72\141\x6e\147\x65")) {
goto pr;
}
$fU = "\154\157\x63\x6b";
pr:
if (!($v1 == "\147\x61\x70\160\x73")) {
goto Vr;
}
$v1 = "\147\x6f\157\147\154\145";
$fU = "\x67\157\x6f\x67\x6c\145";
Vr:
if (!($v1 == "\146\142\141\x70\x70\163")) {
goto Wp;
}
$v1 = "\x66\141\x63\145\x62\x6f\x6f\x6b";
$fU = "\146\x61\143\145\142\157\157\x6b\55\x73\161\x75\141\162\145";
Wp:
if (!($v1 == "\x46\x72\145\x6a\x61\40\x65\x49\104")) {
goto iY;
}
$v1 = "\x66\x72\145\152\141\145\151\144";
iY:
if (!($v1 == "\163\x77\151\x73\163\x20\x72\x78\40\x6c\157\x67\x69\156")) {
goto Mv;
}
$v1 = "\163\167\x69\163\163\162\x78";
$fU = "\154\x6f\143\x6b";
Mv:
if (!($v1 == "\x61\172\x75\x72\x65\x62\x32\143")) {
goto kk;
}
$v1 = "\141\x7a\165\162\145";
kk:
if (!($xC && '' !== $r_ && $M0 !== $r_)) {
goto NQ;
}
if (next($xx)) {
goto P9;
}
$Zo .= "\x4e\x6f\x20\x43\x6f\x6e\x66\x69\147\165\162\x65\x64\x20\x41\160\x70\163\40\167\x69\164\150\40\164\150\x69\x73\40\156\x61\155\145\56";
P9:
goto Y9;
NQ:
$Fg = false;
$ok = MOC_URL . "\x72\x65\x73\x6f\165\x72\143\145\x73\x5c\141\160\x70\x5f\x63\157\155\x70\157\156\145\x6e\x74\x73\134\x69\155\141\x67\145\163\134" . strtolower($v1);
$xG = $ok . "\56\x70\x6e\147";
$lL = $ok . "\x73\x2e\160\x6e\147";
$op = $Ls->mo_oauth_client_get_option("\x6d\x6f\137\157\x61\165\164\x68\137\143\165\163\x74\x6f\x6d\137\151\x63\x6f\156");
if (empty($op)) {
goto nT;
}
if (!(file_exists(MOC_DIR . "\x72\x65\163\x6f\x75\162\x63\145\x73\x5c\141\x70\x70\x5f\143\x6f\x6d\x70\x6f\x6e\x65\156\164\163\x5c\151\155\141\147\x65\x73\134\x63\165\x73\164\x6f\x6d\137\x69\x63\157\156\x5c\x6d\x6f\x5f\x63\x75\163\164\157\155\x5f\x69\x63\x6f\x6e\137" . str_replace("\x20", "\x5f", $M0) . "\x2e\x70\156\x67") && in_array($v1, array("\x6f\x74\150\145\162", "\157\x70\145\x6e\x69\x64\x63\x6f\156\x6e\x65\x63\x74", "\157\141\x75\164\x68\61")) && in_array("\155\157\137\x63\x75\163\x74\x6f\x6d\x5f\151\143\157\x6e\x5f" . str_replace("\x20", "\137", $M0), $op))) {
goto bb;
}
$Fg = true;
$xG = MOC_URL . "\162\x65\x73\x6f\x75\162\143\x65\x73\x5c\141\160\160\x5f\143\157\155\x70\x6f\156\x65\x6e\164\163\x5c\x69\155\x61\x67\x65\x73\134\x63\165\163\164\x6f\x6d\137\151\x63\x6f\x6e\134\155\x6f\x5f\143\x75\163\164\x6f\155\x5f\151\143\x6f\x6e\x5f" . str_replace("\x20", "\x5f", $M0) . "\56\x70\x6e\147";
$lL = $xG;
bb:
nT:
$bj = $Ls->mo_oauth_client_get_option("\155\157\x5f\x6f\x61\165\164\150\x5f\x61\160\x70\137\156\x61\x6d\145\137" . $M0);
$ig = array("\x69\x6d\x61\147\145\x75\x72\154" => '', "\142\143\x6f\x6c\157\162" => "\x62\x74\x6e\x2d\160\x72\151\x6d\141\x72\x79", "\154\157\x67\157\137\x63\x6c\x61\x73\163" => "\x6d\x6f\146\x61\x20\x66\141\x2d\x6c\x6f\143\x6b");
$ig = apply_filters("\155\x6f\137\157\x61\x75\x74\150\x5f\167\151\x64\x67\x65\x74\137\151\156\x74\145\162\x6e\141\x6c", $ig);
$nv = $Ls->check_versi(1) ? $ig["\x69\155\141\x67\x65\x75\162\x6c"] : '';
$vd = $Ls->check_versi(1) ? $ig["\x62\x63\157\154\157\x72"] : "\43\61\x62\67\x30\x62\61";
$hE = $Ls->check_versi(1) ? $ig["\x6c\x6f\147\x6f\x5f\x63\x6c\141\x73\163"] : '';
$UQ = "\157\x61\165\x74\x68\137\x61\x70\x70\137" . str_replace("\x20", "\55", $M0);
if (!$NY) {
goto Rv;
}
$f8 = $NY;
goto b2;
Rv:
$f8 = $Ro->get_app_config("\x64\x69\163\160\154\141\171\141\x70\x70\x6e\x61\x6d\145");
if ($f8) {
goto Vv;
}
$f8 = ucwords($M0);
Vv:
$YP = '' !== $Ro->get_app_config("\165\156\151\x71\x75\145\x5f\x61\160\160\151\x64") ? $Ro->get_app_config("\x75\156\151\161\165\x65\x5f\141\x70\x70\x69\144") : $Ro->get_app_config("\x61\160\160\111\x64");
$YP = str_replace("\40", "\137", $YP);
$rM = "\155\x6f\x5f\x6f\x61\x75\x74\150\x5f\154\x6f\x67\x69\x6e\137\x62\165\x74\164\157\x6e\x5f\143\x75\163\164\x6f\x6d\x69\172\x65\137\144\151\x73\160\154\x61\171\137\x74\x65\170\x74\137" . $YP;
$PD = $Ls->mo_oauth_client_get_option("\x6d\157\x5f\157\141\165\164\x68\x5f\154\157\147\151\156\x5f\x62\x75\164\x74\x6f\156\x5f\143\x75\x73\x74\157\x6d\151\172\145\137\144\151\163\160\x6c\141\x79\x5f\x74\145\170\164");
if (!(isset($PD[$rM]) && '' !== trim($PD[$rM]))) {
goto MH;
}
$f8 = $PD[$rM];
MH:
b2:
$eO = $Ls->get_app_by_name($M0)->get_app_config();
$Cp = isset($eO["\x67\162\141\156\x74\137\x74\171\160\x65"]) && "\x50\x61\x73\x73\167\157\x72\144\40\x47\162\141\156\x74" === $eO["\147\162\x61\156\164\x5f\x74\171\160\145"] ? "\x6d\x6f\117\x41\x75\x74\x68\114\157\x67\151\x6e\x50\x77\x64" : "\155\x6f\x4f\x41\165\x74\x68\114\x6f\147\151\156\x4e\x65\x77";
if (empty($eR)) {
goto LK;
}
$rV = "\143\154\141\x73\163\75\42\157\x61\165\x74\150\x6c\x6f\x67\x69\156\142\x75\164\x74\x6f\156\x20\142\x74\156";
$rV .= $Ls->check_versi(1) ? "\40\x62\x74\156\x2d\163\157\143\151\141\x6c\x20" . $vd . "\x22" : "\x20\x62\164\x6e\55\146\x64\x65\x66\141\x75\154\x74\42";
$Zo .= "\74\x61\40\150\x72\x65\x66\75\42\152\141\166\141\x73\143\162\151\160\x74\72\x76\157\x69\144\50\60\x29\x22\x20\x6f\156\x63\154\x69\143\153\75\42" . $Cp . "\x28\x27" . $M0 . "\47\54\x27" . $x5 . "\x27\x29\73\42\x20" . $rV . "\x20\x73\x74\x79\x6c\145\x3d\x22" . $eR . "\x22\x3e\x20";
$Zo .= $hE ? "\x3c\151\40\x63\154\141\x73\x73\x3d\42" . $hE . "\x20\143\165\x73\x74\x6f\x6d\137\x6c\157\x67\x6f\42\x3e\x3c\x2f\x69\76\40" : '';
$Zo .= $f8 . "\x20\x3c\57\141\x3e";
goto W2;
LK:
$rV = "\143\x6c\x61\163\x73\x3d\x22\x6d\x6f\x5f\x6f\141\x75\x74\x68\x5f\144\145\146\x5f\x62\x74\156\x5f" . strtolower($v1);
$Zo .= "\x3c\x64\151\166\x20\163\x74\171\x6c\x65\x3d\x22\x6d\141\x72\147\151\156\x2d\142\x6f\x74\164\157\155\x3a\x30\160\170\42\x3e\74\141\40\x68\162\x65\146\75\x22\x6a\141\166\x61\163\x63\x72\151\160\164\72\x76\157\x69\x64\x28\60\x29\42\x20\x6f\x6e\x63\154\x69\x63\x6b\x3d\x22" . $Cp . "\50\47" . $M0 . "\x27\x2c\x27" . $x5 . "\47\x29\x3b\42\x20\x73\164\x79\x6c\145\x3d\x22\x74\x65\170\x74\55\144\145\x63\157\162\141\x74\x69\157\156\x3a\156\157\156\x65\73\142\x6f\170\55\x73\151\172\x69\156\x67\72\40\x69\x6e\x69\x74\x69\141\154\42\76\x20";
if (($v1 == "\163\154\141\x63\x6b" || $v1 == "\147\x6f\157\147\154\145" || $v1 == "\x44\x72\x75\x70\x61\x6c" || $v1 == "\x6a\157\157\155\x6c\x61" || $v1 == "\x66\x61\x63\145\x62\x6f\x6f\153" || $v1 == "\141\160\x70\x6c\x65" || $v1 == "\164\x77\x69\x74\x74\145\x72" || $v1 == "\147\151\164\150\165\142" || $v1 == "\147\x69\164\x6c\x61\142" || $v1 == "\162\x65\144\x64\151\164" || $v1 == "\160\141\171\160\141\x6c" || $v1 == "\x79\x61\150\157\157" || $v1 == "\163\160\x6f\164\x69\146\171" || $v1 == "\x76\151\155\145\x6f" || $v1 == "\x76\x6b\x6f\156\164\x61\x6b\164\x65" || $v1 == "\160\151\156\x74\x65\162\x65\163\x74" || $v1 == "\x64\x65\x76\x69\x61\x6e\x74\x61\162\164" || $v1 == "\164\167\151\164\143\150" || $v1 == "\x6c\151\x6e\153\145\x64\151\156" || $v1 == "\167\157\162\x64\x70\x72\x65\163\x73" || $v1 == "\163\167\x69\163\x73\162\170" || $v1 == "\157\141\x75\164\x68\61" || $v1 == "\157\160\145\156\x69\x64\143\x6f\x6e\156\x65\x63\x74" || $v1 == "\157\x74\x68\145\162" || $v1 == "\x6d\x69\156\x69\x6f\x72\141\x6e\x67\x65") && $Fg !== true) {
goto ui;
}
if ($pa == "\x64\145\146\x61\x75\x6c\x74") {
goto Es;
}
if ($pa == "\x63\x75\x73\164\x6f\155") {
goto S1;
}
if ($pa == "\x77\x68\x69\164\145") {
goto gp;
}
if ($pa == "\150\157\x76\x65\162") {
goto WM;
}
if ($pa == "\x63\x75\163\164\x6f\155\150\157\x76\x65\162") {
goto dv;
}
if ($pa == "\163\155\x61\x72\x74") {
goto Ob;
}
if (!($pa == "\160\x72\145\166\151\x6f\x75\163")) {
goto tj;
}
$fU = $Fg === true ? '' : $fU;
if ($pt == "\x6c\x6f\x6e\x67\x62\165\x74\164\157\x6e") {
goto I0;
}
$Zo .= "\x3c\x69\40\x73\164\x79\154\145\x3d\x22\x6d\x61\x72\147\x69\156\72" . $Ol . "\x70\x78\x3b\40\150\145\x69\x67\150\164\x3a" . $Di . "\160\x78\73\167\151\x64\x74\x68\x3a" . $Di . "\160\170\73\x70\x61\x64\144\151\x6e\x67\72\70\160\170\73\x66\157\156\164\x2d\x73\x69\x7a\x65\72\40" . $Di . "\160\170\73\x62\x61\143\x6b\147\x72\157\x75\156\144\72\x23\63\x33\67\141\142\67\73\x74\145\x78\164\55\x61\x6c\x69\147\x6e\x3a\40\143\145\x6e\164\x65\162\73\x22\40\143\154\141\163\163\75\42\155\x6f\x66\141\x20\146\x61\x2d\154\x6f\x63\x6b" . "\40\x6d\157\137\157\x61\165\164\x68\x5f\x64\145\x66\x5f\x62\x74\x6e\x5f" . strtolower($v1) . "\40\x6d\157\137\157\x61\x75\164\150\137\x62\x74\x6e\x5f" . $vj . "\x20\x6d\157\x5f\157\141\x75\x74\150\x5f\142\164\156\137" . $j1 . "\x20" . $pt . "\42\x3e\x3c\x2f\x69\x3e\x3c\x2f\x61\76\x3c\x2f\x64\x69\166\x3e";
goto tz;
I0:
$Zo .= "\74\x69\x20\163\x74\x79\154\x65\75\x22\x6d\x61\x72\147\151\x6e\x3a" . $Ol . "\160\170\73\x20\x68\x65\151\147\150\x74\72" . ($dX - 8) . "\x70\170\x3b\x77\x69\x64\164\150\72" . $F4 . "\x70\170\73\160\x61\144\144\151\156\147\72\61\60\160\x78\40\x38\x70\x78\x20\x38\160\170\x20\x32\x30\x70\170\73\x66\157\156\x74\x2d\x73\x69\172\145\72\40" . ($dX - 10) . "\x70\x78\73\142\x6f\162\144\145\x72\x2d\x72\x61\144\x69\x75\163\x3a" . $Fs . "\160\170\x3b\x20\x62\x61\x63\x6b\147\x72\x6f\165\x6e\144\x3a\x23\x33\63\67\141\x62\x37\x3b\x22\x20\143\154\x61\x73\163\x3d\x22\x6d\157\146\141\x20\x66\x61\55\x6c\157\143\153" . "\40\155\157\137\x6f\x61\165\164\150\137\144\145\x66\x5f\x62\x74\156\137" . strtolower($v1) . "\x20\155\x6f\x5f\157\x61\165\x74\x68\x5f\x62\164\x6e\137" . $vj . "\x20\155\x6f\137\157\x61\x75\x74\x68\137\x62\164\x6e\x5f" . $j1 . "\x22\x3e\x3c\163\x70\141\156\x20\143\x6c\x61\x73\163\x3d\42\x6d\x6f\x5f\x6f\141\165\x74\150\137\154\157\147\151\x6e\137\142\165\x74\x74\x6f\x6e\137\x66\157\156\164\42\x20\163\x74\x79\154\x65\75\42\x6d\141\x72\x67\x69\156\55\154\145\146\x74\x3a\x20" . $F4 / 7 . "\160\x78\42\x3e" . $f8 . "\x20\x3c\x2f\163\x70\x61\156\76\74\57\151\x3e\74\57\x61\76\x3c\57\x64\151\x76\76";
tz:
tj:
goto zs;
Ob:
$fU = $Fg === true ? '' : $fU;
if ($pt == "\154\x6f\156\147\x62\165\x74\x74\x6f\156") {
goto zm;
}
$Zo .= "\x3c\x69\x20\x73\x74\171\x6c\145\75\42\x6d\141\x72\147\x69\x6e\72" . $Ol . "\x70\170\73\x20\x68\x65\x69\x67\150\164\x3a" . $Di . "\x70\170\73\167\151\144\164\x68\x3a" . $Di . "\x70\170\73\x70\141\x64\x64\x69\156\147\72\x38\x70\x78\73\146\x6f\156\x74\x2d\x73\151\x7a\145\x3a\40" . $Di . "\x70\x78\x3b\x62\141\143\153\x67\x72\x6f\x75\x6e\x64\x3a\x6c\151\x6e\145\141\x72\x2d\147\162\x61\x64\x69\x65\x6e\164\x28\71\x30\x64\145\x67\x2c" . $H8 . "\x2c" . $nt . "\x29\x21\151\x6d\x70\157\x72\x74\141\x6e\164\73\x22\40\x63\154\141\x73\x73\x3d\42\155\157\x66\x61\40\146\141\x2d" . strtolower($fU) . "\40\x20\155\x6f\x5f\x6f\141\165\x74\150\x5f\142\164\156\137" . $vj . "\40\x6d\157\137\x6f\x61\165\164\x68\x5f\x62\x74\156\137" . $j1 . "\40" . $pt . "\x22\76\74\151\x6d\147\x20\163\162\143\x3d\42\x20" . $lL . "\x22\x20\x73\x74\171\154\145\75\42\166\145\162\x74\x69\x63\x61\x6c\x2d\x61\x6c\151\x67\156\72\155\x69\x64\x64\154\145\x3b\150\145\x69\x67\x68\x74\72" . $Di . "\x70\x78\73\x77\151\x64\x74\150\72" . $Di . "\160\x78\73\x64\151\x73\160\154\141\x79\x3a\151\156\x6c\x69\156\145\x2d\142\x6c\157\x63\153\42\x3e\74\57\x69\x3e\74\57\141\x3e\x3c\x2f\144\x69\x76\76";
goto x5;
zm:
$Zo .= "\x3c\x69\40\x73\164\171\x6c\x65\x3d\42\x6d\x61\162\x67\x69\x6e\x3a" . $Ol . "\x70\170\x3b\40\x68\x65\x69\x67\x68\x74\x3a" . ($dX - 8) . "\x70\x78\73\167\151\x64\x74\x68\x3a" . $F4 . "\160\170\73\x70\141\x64\x64\151\x6e\147\x3a\x31\60\x70\170\40\70\x70\x78\x20\70\x70\x78\40\x32\60\x70\170\x3b\x66\157\x6e\164\x2d\x73\151\x7a\x65\x3a\40" . ($dX - 10) . "\x70\x78\73\142\157\x72\x64\145\x72\x2d\162\141\x64\x69\165\163\72" . $Fs . "\160\x78\x3b\x63\157\154\x6f\x72\72\x23\x46\106\106\x46\106\106\x3b\40\x62\141\x63\x6b\x67\162\157\x75\156\x64\72\154\x69\x6e\x65\141\162\55\x67\162\141\144\x69\145\156\x74\x28\x39\60\x64\145\x67\x2c" . $H8 . "\54" . $nt . "\x29\41\x69\155\x70\x6f\x72\164\141\156\164\73\x22\x20\x63\x6c\141\163\x73\x3d\42\x6d\157\x66\x61\40\x66\141\55" . strtolower($fU) . "\40\x6d\157\x5f\x6f\x61\x75\x74\150\137\x62\164\x6e\137" . $vj . "\40\155\x6f\137\x6f\141\165\x74\x68\137\x62\x74\x6e\137" . $j1 . "\x22\76\x3c\x69\x6d\x67\x20\163\x72\x63\75\42\40" . $lL . "\42\40\163\164\171\x6c\145\x3d\x22\x76\x65\x72\164\151\143\141\x6c\x2d\x61\x6c\x69\x67\x6e\x3a" . (20 - $dX / 2) . "\x70\x78\73\150\x65\x69\147\x68\x74\x3a" . ($dX - 8) . "\x70\x78\x3b\167\x69\144\164\150\72" . ($dX - 8) . "\x70\170\73\144\151\x73\160\x6c\x61\x79\x3a\151\x6e\154\151\x6e\x65\55\x62\x6c\x6f\x63\x6b\42\76\74\163\x70\x61\x6e\40\143\x6c\x61\163\x73\x3d\42\x6d\157\x5f\157\141\165\x74\x68\137\x6c\x6f\147\x69\156\x5f\x62\165\x74\164\x6f\x6e\137\146\x6f\156\164\42\40\163\164\x79\154\x65\x3d\x22\155\141\162\147\151\156\x2d\x6c\145\x66\x74\x3a\40" . $F4 / 7 . "\160\x78\42\x3e" . $f8 . "\40\x3c\x2f\163\x70\x61\x6e\x3e\x3c\57\x69\x3e\x3c\x2f\141\76\x3c\x2f\x64\151\x76\76";
x5:
zs:
goto hT;
dv:
$fU = $Fg === true ? '' : $fU;
if ($pt == "\x6c\x6f\x6e\147\x62\x75\164\x74\157\156") {
goto jY;
}
$Zo .= "\x3c\151\x20\x73\164\x79\x6c\x65\75\x22\x6d\141\162\147\151\x6e\72" . $Ol . "\x70\170\x3b\40\x68\145\151\x67\150\164\x3a" . $Di . "\x70\x78\73\x77\x69\x64\x74\150\72" . $Di . "\x70\170\x3b\x70\x61\144\x64\x69\156\147\72\70\x70\170\73\x66\x6f\x6e\x74\55\x73\x69\172\x65\72\40" . $Di . "\160\170\73\143\x6f\154\157\162\x3a" . $Xr . "\42\xd\xa\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x6f\x6e\x4d\157\165\x73\x65\117\166\x65\162\x3d\47\x74\x68\151\163\x2e\163\x74\171\x6c\x65\56\x63\157\x6c\x6f\162\75\40\42\x77\x68\151\164\x65\x22\73\x74\x68\151\163\56\x73\164\x79\x6c\x65\x2e\x62\141\x63\x6b\147\162\157\165\156\144\75\x20\42" . $Xr . "\42\x3b\47\xd\12\x20\40\x20\x20\x20\x20\x20\40\157\x6e\115\x6f\x75\x73\x65\x4f\x75\x74\x3d\47\x74\x68\151\x73\x2e\163\x74\x79\x6c\145\56\x63\157\x6c\x6f\162\x3d\x20\42" . $Xr . "\42\x3b\x74\x68\151\163\56\163\x74\171\154\x65\56\142\141\x63\153\147\x72\x6f\x75\156\144\x3d\x20\x22\x77\150\x69\x74\x65\42\x3b\x27\xd\xa\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\143\x6c\x61\163\163\75\x22\155\157\x66\141\x20\x66\141\55" . strtolower($fU) . "\x20\x20\155\157\x5f\157\141\x75\x74\150\137\142\164\x6e\x5f" . $vj . "\x20\x6d\157\x5f\157\x61\x75\x74\150\137\142\x74\x6e\137" . $j1 . "\40" . $pt . "\x20\x20\155\157\137\157\x61\x75\164\x68\x5f\x63\x75\x73\164\x6f\x6d\137\x68\x6f\x76\145\162\137\x69\x63\x6f\156\137\x70\162\x65\x76\151\145\167\x22\x3e\x3c\x69\x6d\147\x20\163\162\x63\75\42\x20" . $lL . "\42\x20\x73\x74\171\x6c\145\x3d\x22\x76\x65\162\x74\x69\143\141\154\55\x61\154\151\147\156\x3a\x6d\151\144\x64\154\x65\x3b\x68\145\x69\147\x68\x74\x3a" . ($Di - 2) . "\x70\170\x3b\x77\151\144\164\150\72" . ($Di - 2) . "\x70\170\x3b\x64\x69\x73\x70\x6c\x61\171\72\x69\156\x6c\x69\x6e\145\55\x62\154\157\x63\x6b\73\142\141\x63\153\147\162\157\165\156\x64\72" . $Xr . "\73\142\157\162\144\145\x72\x2d\162\x61\144\151\165\x73\x3a\40\71\x39\x39\160\x78\42\76\74\x2f\x69\76\x3c\x2f\141\76\x3c\x2f\x64\x69\166\x3e";
goto eh;
jY:
$Zo .= "\x3c\x69\x20\x73\x74\171\x6c\x65\x3d\42\x6d\x61\x72\147\x69\156\72" . $Ol . "\160\x78\73\x20\x68\x65\151\147\150\164\x3a" . ($dX - 8) . "\x70\x78\x3b\x77\151\144\x74\150\x3a" . $F4 . "\x70\170\73\x70\141\144\x64\x69\156\147\72\x31\x30\160\170\40\70\x70\170\x20\x38\x70\170\x20\x32\x30\160\x78\73\146\157\x6e\164\x2d\163\151\172\x65\x3a\x20" . ($dX - 10) . "\160\x78\73\x62\x6f\x72\144\145\x72\55\162\x61\144\151\165\163\72" . $Fs . "\x70\x78\x3b\x63\x6f\x6c\x6f\162\72" . $Xr . "\42\x20\xd\xa\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\x20\157\x6e\115\157\165\163\x65\117\x76\x65\162\75\x27\164\x68\151\163\x2e\163\164\171\x6c\145\x2e\x63\157\154\x6f\x72\75\40\x22\x77\150\x69\x74\145\x22\73\x74\x68\151\163\x2e\x73\x74\171\x6c\145\x2e\142\141\x63\153\x67\162\157\x75\156\144\75\x20\42" . $Xr . "\42\73\47\15\12\x20\x20\40\x20\x20\x20\40\x20\157\156\x4d\157\165\x73\x65\x4f\x75\x74\75\47\x74\150\151\163\56\x73\x74\171\x6c\145\x2e\143\x6f\154\x6f\x72\75\40\x22" . $Xr . "\x22\x3b\164\x68\151\x73\56\163\164\x79\154\x65\x2e\142\141\x63\153\147\x72\157\x75\156\144\75\x20\x22\167\150\x69\164\x65\x22\x3b\x27\15\xa\x20\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\143\154\141\163\163\75\42\155\157\x66\x61\x20\x66\141\55" . strtolower($fU) . "\x20\155\157\x5f\157\x61\165\164\x68\x5f\x62\x74\156\x5f" . $vj . "\40\x6d\157\137\157\141\165\x74\150\137\142\164\x6e\x5f" . $j1 . "\40\x20\x6d\157\137\157\141\165\164\x68\x5f\143\x75\x73\164\157\155\x5f\150\157\x76\x65\x72\x5f\x69\x63\x6f\156\x5f\160\x72\x65\x76\151\x65\167\42\76\74\151\x6d\147\40\163\162\x63\75\42\x20" . $lL . "\42\40\x73\164\171\x6c\145\75\42\x76\145\162\164\x69\x63\x61\154\55\141\x6c\151\x67\156\72" . (20 - $dX / 2) . "\x70\x78\73\x68\145\x69\x67\150\x74\x3a" . ($dX - 10) . "\x70\x78\x3b\x77\x69\x64\x74\150\72" . ($dX - 10) . "\160\170\73\142\x61\143\153\147\162\x6f\x75\x6e\144\x3a" . $Xr . "\73\142\157\x72\144\145\x72\55\162\x61\x64\x69\x75\163\72\71\71\x39\160\170\x22\40\143\154\141\x73\x73\75\42\x77\151\x74\150\157\x75\164\137\150\x6f\x76\x65\162\x22\x3e\x3c\x69\x6d\147\40\x73\x72\x63\x3d\42\x20" . $lL . "\42\x20\x73\x74\171\154\x65\x3d\42\166\x65\162\x74\151\143\141\x6c\x2d\141\154\x69\147\156\x3a" . (20 - $dX / 2) . "\160\x78\73\150\x65\x69\x67\x68\x74\72" . ($dX - 10) . "\160\x78\x3b\x77\151\x64\x74\x68\x3a" . ($dX - 10) . "\x70\170\73\42\40\143\x6c\141\x73\163\75\42\167\x69\x74\150\x5f\x68\x6f\166\x65\x72\42\76\74\x73\160\x61\x6e\x20\143\154\141\x73\x73\x3d\x22\x6d\x6f\137\157\x61\x75\164\x68\137\154\x6f\147\x69\156\x5f\142\x75\x74\x74\157\156\137\146\157\156\x74\42\40\x73\164\x79\154\x65\x3d\42\155\141\x72\147\x69\x6e\x2d\x6c\145\146\164\72\x20" . $F4 / 7 . "\x70\170\42\x3e" . $f8 . "\x20\74\57\x73\x70\141\156\x3e\x3c\x2f\151\x3e\x3c\57\141\x3e\74\x2f\144\151\x76\76";
eh:
hT:
goto VB;
WM:
$fU = $Fg === true ? '' : $fU;
if ($pt == "\154\x6f\156\x67\142\x75\x74\x74\157\156") {
goto Xn;
}
$Zo .= "\x3c\x69\x20\x73\164\171\154\x65\x3d\42\155\x61\x72\147\151\x6e\72" . $Ol . "\x70\x78\x3b\x20\x68\x65\151\147\x68\x74\72" . $Di . "\160\x78\x3b\167\151\x64\164\x68\72" . $Di . "\x70\170\73\160\141\x64\144\151\156\147\x3a\x38\x70\x78\73\146\157\x6e\164\x2d\163\x69\x7a\145\72\x20" . $Di . "\160\170\x3b\x62\157\x78\x2d\163\x68\x61\144\x6f\167\x3a\x20\x72\147\x62\x61\x28\x30\x2c\x20\60\54\x20\60\54\x20\60\56\x32\x29\x20\60\160\x78\x20\x34\160\x78\40\70\x70\170\40\x30\160\x78\54\40\x72\x67\142\x61\x28\60\54\x20\60\x2c\40\60\x2c\x20\60\56\x31\x39\x29\40\x30\160\170\40\66\160\170\x20\62\x30\x70\x78\40\x30\160\170\x3b\x22\40\143\154\141\163\163\75\42\155\157\x66\141\x20\146\141\x2d" . strtolower($fU) . "\40\x20\155\x6f\x5f\x6f\x61\x75\164\x68\x5f\x62\164\x6e\137" . $vj . "\x20\x6d\x6f\137\157\x61\165\x74\x68\137\x62\164\x6e\137" . $j1 . "\x20" . $pt . "\x20\x20\x6d\x6f\137\157\x61\x75\164\150\x5f\150\157\166\137\142\164\x6e\137" . strtolower($v1) . "\40\x6d\x6f\x5f\157\141\165\164\x68\137\x68\157\166\145\162\137\151\143\x6f\156\137\160\x72\145\166\151\x65\167\x22\76\74\151\x6d\147\40\x73\x72\143\x3d\42\x20" . $xG . "\42\x20\x73\x74\x79\154\145\x3d\42\166\x65\162\x74\151\143\141\x6c\x2d\141\x6c\151\x67\x6e\x3a\155\x69\144\144\154\x65\x3b\x68\145\x69\147\x68\x74\x3a" . $Di . "\160\x78\x3b\x77\151\144\x74\x68\72" . $Di . "\x70\x78\73\144\151\163\x70\x6c\141\171\x3a\x69\156\154\x69\156\x65\55\x62\x6c\x6f\x63\x6b\42\x20\143\154\141\x73\x73\x3d\42\x77\151\164\x68\157\165\164\x5f\x68\157\x76\145\162\x22\76\74\x69\155\147\40\163\x72\143\x3d\42\40" . $lL . "\42\x20\x73\164\171\x6c\x65\75\42\166\x65\x72\x74\x69\x63\141\x6c\x2d\x61\x6c\x69\147\x6e\72\155\151\144\144\154\145\x3b\150\x65\x69\x67\x68\x74\72" . $Di . "\x70\170\x3b\167\151\144\x74\x68\72" . $Di . "\x70\x78\x3b\x22\40\143\x6c\141\x73\x73\x3d\x22\x77\151\164\150\137\x68\157\166\x65\162\42\x3e\x3c\x2f\151\x3e\74\x2f\141\76\74\x2f\x64\151\x76\76";
goto Yz;
Xn:
$Zo .= "\x3c\x69\40\x73\164\171\x6c\145\75\x22\155\x61\162\x67\151\x6e\72" . $Ol . "\160\170\73\x20\150\x65\x69\147\x68\x74\72" . ($dX - 8) . "\x70\x78\73\x77\x69\144\164\150\x3a" . $F4 . "\x70\170\x3b\x70\141\x64\x64\151\156\147\x3a\x31\60\160\x78\40\x38\x70\170\x20\70\160\x78\x20\x32\x30\160\x78\73\x66\x6f\156\164\x2d\163\x69\x7a\x65\x3a\x20" . ($dX - 10) . "\x70\170\x3b\x62\x6f\x72\x64\x65\x72\x2d\x72\x61\x64\x69\165\163\x3a" . $Fs . "\x70\x78\73\x62\x6f\x78\x2d\163\x68\x61\144\157\x77\x3a\x20\162\147\x62\141\x28\x30\54\40\60\54\40\x30\x2c\x20\60\56\62\51\x20\60\160\170\x20\x34\x70\170\40\70\x70\170\x20\60\160\x78\x2c\40\162\x67\x62\x61\50\60\54\40\60\x2c\x20\x30\x2c\40\60\x2e\61\x39\51\x20\60\x70\x78\x20\x36\x70\170\40\x32\x30\160\170\40\x30\x70\x78\x3b\x22\40\x63\154\x61\163\163\x3d\42\x6d\x6f\146\x61\40\146\141\x2d" . strtolower($fU) . "\x20\x6d\157\137\157\141\165\164\x68\137\x62\x74\156\x5f" . $vj . "\40\x6d\157\137\x6f\141\165\x74\150\x5f\142\x74\156\x5f" . $j1 . "\x20\40\x6d\x6f\x5f\157\141\x75\164\150\x5f\150\x6f\166\137\142\164\x6e\x5f" . strtolower($v1) . "\x20\155\x6f\137\157\x61\x75\164\150\137\150\x6f\166\x65\162\137\151\143\x6f\x6e\137\x70\x72\x65\166\151\x65\167\x22\x3e\74\x69\x6d\147\40\x73\x72\143\x3d\42\40" . $xG . "\x22\40\163\x74\x79\154\x65\x3d\x22\166\145\x72\x74\x69\x63\x61\x6c\55\x61\x6c\x69\147\x6e\x3a" . (20 - $dX / 2) . "\x70\170\x3b\150\145\151\147\150\164\x3a" . ($dX - 8) . "\160\x78\x3b\167\151\144\x74\x68\72" . ($dX - 8) . "\160\170\x3b\x22\x20\143\x6c\x61\x73\163\x3d\42\x77\x69\x74\150\157\165\x74\x5f\150\157\166\x65\162\x22\76\x3c\x69\x6d\x67\x20\163\162\x63\x3d\x22\40" . $lL . "\x22\x20\x73\164\x79\x6c\x65\75\42\x76\145\162\164\x69\x63\141\154\x2d\141\154\x69\x67\156\72" . (20 - $dX / 2) . "\160\x78\73\x68\x65\151\x67\x68\x74\72" . ($dX - 8) . "\x70\x78\73\167\151\144\164\150\x3a" . ($dX - 8) . "\160\170\x3b\42\x20\143\154\141\163\163\75\42\x77\151\164\150\x5f\x68\157\x76\145\x72\42\76\74\163\160\141\x6e\x20\x63\x6c\x61\x73\x73\x3d\x22\x6d\157\137\157\141\165\164\150\x5f\x6c\157\x67\x69\156\137\x62\x75\164\164\157\156\137\x66\157\x6e\x74\x22\40\x73\164\x79\154\x65\x3d\42\155\141\x72\147\151\156\55\154\x65\146\164\72\40" . $F4 / 7 . "\160\x78\x22\x3e" . $f8 . "\x20\74\57\163\x70\x61\x6e\x3e\x3c\57\x69\x3e\x3c\57\x61\76\74\x2f\144\x69\x76\x3e";
Yz:
VB:
goto m3;
gp:
$fU = $Fg === true ? '' : $fU;
if ($pt == "\x6c\157\156\147\142\x75\x74\164\157\x6e") {
goto Im;
}
$Zo .= "\x3c\151\x20\163\164\171\x6c\x65\x3d\42\x6d\141\x72\147\x69\156\72" . $Ol . "\x70\x78\x3b\40\150\145\151\x67\x68\164\72" . $Di . "\x70\x78\x3b\x77\x69\144\164\150\x3a" . $Di . "\160\170\73\160\141\144\144\151\x6e\x67\x3a\70\160\170\73\146\x6f\x6e\164\x2d\x73\151\x7a\x65\72\x20" . $Di . "\160\170\x3b\142\157\x78\55\163\150\141\x64\157\167\x3a\x20\162\x67\x62\x61\x28\60\x2c\x20\60\54\40\60\54\x20\x30\x2e\62\x29\x20\x30\160\x78\40\64\160\x78\x20\70\x70\170\40\x30\160\170\54\x20\162\x67\142\141\50\x30\54\40\60\54\40\60\54\x20\60\x2e\61\71\51\x20\x30\160\170\x20\x36\x70\170\40\x32\x30\160\170\x20\60\x70\170\x3b\x22\x20\x63\154\x61\x73\x73\75\42\x6d\157\x66\x61\x20\x66\141\55" . strtolower($fU) . "\x20\40\155\157\x5f\157\141\165\164\150\137\x62\164\x6e\x5f" . $vj . "\x20\x6d\x6f\137\x6f\x61\165\164\x68\137\x62\164\156\x5f" . $j1 . "\x20" . $pt . "\x20\x20\x6d\157\x5f\157\x61\x75\164\x68\137\x77\x68\151\164\145\137\142\164\x6e\x5f" . strtolower($v1) . "\42\76\x3c\151\155\x67\x20\x73\162\x63\75\x22\40" . $xG . "\42\40\x73\164\171\154\x65\x3d\42\166\x65\x72\164\x69\143\x61\x6c\55\x61\x6c\x69\147\156\72\155\151\x64\x64\x6c\x65\73\150\145\x69\147\150\x74\72" . $Di . "\x70\170\73\167\151\x64\164\150\x3a" . $Di . "\160\x78\x3b\144\x69\x73\x70\154\141\x79\x3a\x69\x6e\154\x69\156\145\55\x62\x6c\x6f\x63\x6b\42\x3e\74\x2f\151\x3e\74\57\x61\76\x3c\57\x64\151\x76\76";
goto aP;
Im:
$Zo .= "\x3c\x69\x20\163\164\x79\154\x65\75\42\155\141\162\x67\151\156\x3a" . $Ol . "\160\x78\73\x20\150\145\151\x67\150\x74\72" . ($dX - 8) . "\x70\170\73\167\151\144\x74\150\72" . $F4 . "\160\170\x3b\160\141\x64\144\x69\156\147\x3a\61\x30\160\x78\x20\x38\x70\x78\x20\70\x70\x78\x20\62\60\x70\170\73\x66\157\x6e\164\x2d\163\151\172\145\72\x20" . ($dX - 10) . "\160\170\73\x62\157\x72\144\145\x72\x2d\x72\x61\144\x69\x75\163\72" . $Fs . "\x70\170\x3b\142\157\x78\x2d\163\150\141\x64\157\x77\72\40\162\x67\142\x61\50\x30\x2c\x20\x30\54\40\x30\54\x20\x30\56\x32\51\x20\60\160\x78\40\64\160\x78\40\70\160\170\40\x30\160\170\x2c\x20\x72\x67\x62\141\50\x30\x2c\40\x30\x2c\x20\x30\x2c\x20\60\x2e\x31\71\x29\40\x30\x70\170\x20\x36\x70\x78\40\62\x30\160\x78\x20\x30\160\x78\x3b\42\x20\x63\x6c\x61\x73\163\x3d\42\155\x6f\146\141\x20\146\141\55" . strtolower($fU) . "\x20\155\x6f\x5f\x6f\141\x75\x74\150\137\142\164\x6e\x5f" . $vj . "\40\155\x6f\137\x6f\141\165\164\x68\x5f\142\x74\156\137" . $j1 . "\40\x20\155\157\x5f\157\x61\x75\x74\150\137\167\150\x69\x74\145\137\x62\164\x6e\x5f" . strtolower($v1) . "\x22\76\x3c\x69\155\x67\x20\x73\x72\143\75\x22\x20" . $xG . "\x22\40\x73\x74\x79\x6c\145\x3d\x22\166\145\x72\x74\x69\x63\141\x6c\x2d\x61\x6c\151\147\x6e\72" . (20 - $dX / 2) . "\x70\170\73\150\145\x69\147\150\164\x3a" . ($dX - 8) . "\x70\x78\73\167\x69\x64\x74\x68\x3a" . ($dX - 8) . "\x70\x78\73\144\151\163\x70\x6c\x61\171\x3a\151\156\x6c\151\x6e\145\55\x62\154\x6f\x63\153\x22\x3e\x3c\163\x70\141\x6e\40\143\154\x61\163\163\75\x22\155\x6f\137\157\x61\165\164\x68\137\x6c\157\147\151\156\137\x62\x75\x74\164\x6f\x6e\137\146\x6f\156\164\x22\x20\163\164\x79\154\145\75\42\x6d\141\162\x67\151\156\55\154\x65\x66\164\72\40" . $F4 / 7 . "\x70\x78\42\x3e" . $f8 . "\40\74\57\x73\160\141\156\76\x3c\x2f\151\76\x3c\x2f\141\76\x3c\x2f\x64\x69\166\x3e";
aP:
m3:
goto cy;
S1:
$fU = $Fg === true ? '' : $fU;
if ($pt == "\154\x6f\156\147\x62\165\x74\x74\157\156") {
goto vZ;
}
$Zo .= "\x3c\x69\x20\163\164\171\x6c\x65\x3d\x22\155\x61\x72\x67\x69\x6e\72" . $Ol . "\160\170\73\40\150\x65\x69\x67\x68\x74\x3a" . $Di . "\160\170\73\167\x69\144\x74\150\72" . $Di . "\x70\170\x3b\160\141\x64\144\x69\x6e\x67\72\x38\160\x78\73\146\157\x6e\164\x2d\x73\151\x7a\145\x3a\40" . $Di . "\160\170\x3b\x20\142\141\143\153\x67\x72\x6f\x75\x6e\144\x3a" . $vf . "\x22\x20\143\x6c\141\163\163\x3d\42\x6d\x6f\x66\141\x20\x66\141\55" . strtolower($fU) . "\40\x20\155\x6f\137\x6f\x61\x75\164\x68\137\x62\164\x6e\137" . $vj . "\x20\x6d\157\137\x6f\x61\165\x74\150\137\142\164\156\x5f" . $j1 . "\40" . $pt . "\42\76\74\x69\155\147\40\x73\x72\143\x3d\x22\x20" . $lL . "\x22\x20\163\164\171\154\145\x3d\x22\166\x65\x72\x74\151\x63\141\154\55\x61\x6c\151\x67\x6e\72\155\151\x64\144\154\145\x3b\x68\x65\x69\147\x68\164\72" . $Di . "\x70\x78\x3b\x77\x69\x64\164\150\72" . $Di . "\160\x78\x3b\x64\x69\x73\x70\x6c\141\x79\x3a\x69\x6e\154\x69\x6e\145\55\142\x6c\157\x63\153\x22\76\x3c\57\151\x3e\74\x2f\x61\x3e\x3c\57\144\x69\166\76";
goto Ss;
vZ:
$Zo .= "\x3c\151\40\163\164\171\x6c\145\75\x22\155\x61\162\147\x69\156\x3a" . $Ol . "\160\170\x3b\40\x68\x65\151\x67\x68\164\x3a" . ($dX - 8) . "\x70\170\73\167\x69\x64\x74\x68\72" . $F4 . "\x70\x78\73\x70\x61\144\x64\x69\x6e\x67\72\61\x30\x70\x78\40\70\x70\170\40\70\x70\170\x20\62\60\160\170\x3b\x66\x6f\x6e\164\x2d\x73\x69\172\145\x3a\x20" . ($dX - 10) . "\160\x78\73\142\x6f\x72\144\x65\x72\x2d\162\141\144\x69\165\x73\72" . $Fs . "\x70\170\x3b\x63\x6f\x6c\x6f\x72\x3a\x23\x46\x46\106\106\106\x46\x3b\x20\x62\141\x63\153\147\x72\157\x75\156\x64\x3a" . $vf . "\42\x20\x63\x6c\x61\x73\x73\75\x22\155\x6f\x66\x61\40\x66\141\x2d" . strtolower($fU) . "\x20\155\157\137\x6f\x61\165\x74\x68\137\142\x74\156\137" . $vj . "\40\x6d\157\x5f\x6f\141\165\164\150\x5f\x62\x74\x6e\137" . $j1 . "\42\76\x3c\151\155\147\x20\x73\162\143\x3d\x22\x20" . $lL . "\42\40\163\164\x79\x6c\145\75\42\166\x65\x72\x74\151\x63\141\154\55\x61\x6c\151\x67\x6e\72" . (20 - $dX / 2) . "\x70\170\73\x68\145\x69\x67\150\x74\x3a" . ($dX - 8) . "\160\170\x3b\x77\x69\x64\164\150\72" . ($dX - 8) . "\160\x78\x3b\144\151\x73\x70\154\141\171\72\x69\156\x6c\151\156\x65\x2d\x62\x6c\157\143\153\42\76\x3c\163\x70\141\x6e\40\x63\x6c\x61\163\x73\x3d\42\x6d\x6f\x5f\157\141\x75\164\x68\x5f\x6c\157\x67\151\156\137\142\x75\x74\x74\x6f\x6e\x5f\146\x6f\156\164\42\x20\163\x74\171\154\x65\x3d\42\x6d\141\162\147\151\156\x2d\x6c\145\x66\x74\72\40" . $F4 / 7 . "\x70\170\x22\x3e" . $f8 . "\40\x3c\x2f\x73\x70\x61\x6e\x3e\x3c\x2f\151\x3e\x3c\57\x61\76\74\57\144\x69\166\x3e";
Ss:
cy:
goto pa;
Es:
$fU = $Fg === true ? '' : $fU;
if ($pt == "\154\157\156\x67\142\165\164\x74\157\x6e") {
goto Qo;
}
$Zo .= "\74\151\x20\163\164\x79\x6c\x65\x3d\42\x6d\141\162\147\151\x6e\72" . $Ol . "\160\x78\73\40\150\x65\151\147\x68\164\x3a" . $Di . "\x70\x78\73\x77\151\x64\x74\150\x3a" . $Di . "\x70\x78\73\160\141\144\144\151\156\147\72\70\x70\170\x3b\146\157\x6e\164\x2d\163\151\x7a\x65\72\x20" . $Di . "\160\x78\x3b\42\x20\x63\x6c\x61\163\163\75\42\x6d\157\x66\141\x20\x66\x61\x2d" . strtolower($fU) . "\40\155\x6f\137\x6f\x61\x75\x74\x68\137\144\x65\146\x5f\x62\x74\156\x5f" . strtolower($v1) . "\x20\x6d\x6f\137\157\141\x75\164\x68\x5f\x62\x74\156\137" . $vj . "\40\155\x6f\137\157\x61\165\x74\x68\137\x62\164\x6e\137" . $j1 . "\x20" . $pt . "\42\76\x3c\151\x6d\147\x20\163\x72\143\75\x22\x20" . $lL . "\x22\x20\163\x74\x79\x6c\145\x3d\x22\166\145\162\164\151\x63\141\154\x2d\141\154\151\147\156\72\x6d\x69\x64\144\154\x65\x3b\150\x65\x69\147\x68\164\x3a" . $Di . "\160\x78\x3b\167\151\144\164\x68\x3a" . $Di . "\x70\170\73\144\x69\x73\160\154\x61\171\72\x69\156\154\x69\156\145\55\x62\x6c\x6f\x63\153\42\x3e\x3c\57\151\x3e\x3c\x2f\x61\x3e\74\x2f\144\151\x76\76";
goto Br;
Qo:
$Zo .= "\74\x69\40\163\164\x79\154\x65\x3d\42\155\x61\x72\147\151\x6e\x3a" . $Ol . "\160\170\x3b\x20\x68\145\151\147\x68\x74\x3a" . ($dX - 8) . "\x70\170\x3b\167\151\x64\x74\150\x3a" . $F4 . "\x70\x78\x3b\160\141\144\x64\x69\156\x67\x3a\61\60\x70\170\40\x38\160\170\x20\x38\160\x78\40\x32\x30\x70\x78\73\x66\157\156\x74\55\163\151\172\x65\72\x20" . ($dX - 10) . "\160\x78\x3b\x62\x6f\x72\x64\x65\x72\x2d\x72\141\144\x69\165\x73\x3a" . $Fs . "\x70\x78\x22\40\x63\x6c\141\x73\163\x3d\x22\x6d\x6f\146\x61\x20\146\x61\55" . strtolower($fU) . "\40\x6d\157\x5f\157\141\165\x74\x68\137\x64\x65\x66\x5f\x62\164\x6e\137" . strtolower($v1) . "\40\x6d\157\137\x6f\x61\x75\164\x68\137\x62\164\x6e\x5f" . $vj . "\40\x6d\x6f\x5f\157\141\165\164\x68\137\142\x74\156\137" . $j1 . "\x22\76\x3c\151\x6d\147\40\163\162\x63\x3d\42\x20" . $lL . "\x22\40\163\x74\171\x6c\x65\75\x22\166\145\x72\164\x69\143\x61\x6c\x2d\x61\154\151\147\x6e\72" . (20 - $dX / 2) . "\160\170\73\150\145\151\147\x68\x74\72" . ($dX - 8) . "\160\170\x3b\x77\x69\144\164\150\x3a" . ($dX - 8) . "\x70\x78\73\144\x69\163\x70\x6c\x61\x79\x3a\x69\156\154\151\156\x65\55\142\x6c\157\x63\153\x22\x3e\74\x73\160\x61\156\40\143\x6c\141\163\163\75\x22\x6d\x6f\137\x6f\141\x75\x74\150\137\154\x6f\147\x69\156\137\x62\165\x74\164\157\x6e\137\x66\x6f\x6e\x74\42\40\163\x74\x79\154\145\75\x22\155\x61\x72\x67\151\156\55\154\x65\146\164\72\40" . $F4 / 7 . "\160\170\x22\76" . $f8 . "\40\74\x2f\x73\160\x61\156\76\74\57\151\76\x3c\x2f\x61\76\74\57\x64\x69\166\x3e";
Br:
pa:
goto ah;
ui:
if ($pa == "\x64\x65\x66\141\x75\154\x74") {
goto VO;
}
if ($pa == "\143\x75\x73\x74\157\x6d") {
goto iP;
}
if ($pa == "\x77\x68\x69\164\145") {
goto v1;
}
if ($pa == "\x68\x6f\x76\x65\162") {
goto J3;
}
if ($pa == "\143\165\x73\164\x6f\155\x68\157\x76\x65\x72") {
goto xp;
}
if ($pa == "\x73\x6d\x61\162\164") {
goto Ay;
}
if (!($pa == "\x70\x72\x65\166\151\x6f\165\163")) {
goto pl;
}
if ($pt == "\x6c\x6f\156\x67\142\165\164\164\x6f\x6e") {
goto Wy;
}
$Zo .= "\x3c\151\x20\x73\x74\171\154\x65\75\x22\x6d\x61\x72\147\151\156\x3a" . $Ol . "\160\170\x3b\x20\150\x65\x69\x67\150\164\x3a" . $Di . "\160\x78\73\167\x69\x64\164\150\72" . $Di . "\160\170\x3b\x70\x61\x64\144\x69\x6e\147\x3a\70\x70\170\73\146\157\156\164\x2d\163\151\172\145\72\x20" . $Di . "\160\x78\x3b\x62\141\143\x6b\x67\x72\157\165\156\144\72\x23\x33\63\67\x61\x62\67\73\164\145\170\164\55\x61\x6c\x69\147\156\72\40\x63\145\156\x74\145\162\73\42\40\x63\x6c\x61\x73\163\75\x22\155\x6f\146\141\x20\x66\141\55\x6c\x6f\143\153" . "\x20\155\157\x5f\157\141\x75\x74\x68\137\144\145\x66\x5f\142\x74\x6e\x5f" . strtolower($v1) . "\x20\155\x6f\x5f\157\141\165\x74\x68\137\142\x74\156\x5f" . $vj . "\x20\155\x6f\x5f\x6f\x61\x75\164\150\137\142\164\x6e\x5f" . $j1 . "\40" . $pt . "\x22\x3e\74\x2f\151\76\x3c\x2f\141\76\74\57\x64\x69\x76\x3e";
goto jt;
Wy:
$Zo .= "\x3c\151\x20\x73\164\171\154\x65\x3d\x22\x6d\x61\162\x67\x69\x6e\x3a" . $Ol . "\160\x78\x3b\x20\150\x65\151\x67\150\164\72" . ($dX - 8) . "\x70\x78\x3b\167\151\x64\164\x68\x3a" . $F4 . "\160\x78\73\160\141\144\144\151\x6e\147\x3a\61\x30\x70\x78\x20\x38\x70\170\x20\x38\160\170\x20\x32\x30\160\x78\73\146\x6f\156\164\x2d\x73\x69\172\x65\x3a\40" . ($dX - 10) . "\160\170\73\142\x6f\x72\144\145\162\55\x72\141\x64\151\x75\163\x3a" . $Fs . "\160\170\73\x20\x62\141\143\153\x67\162\157\x75\156\x64\72\x23\63\63\x37\x61\x62\x37\x3b\x22\x20\143\154\141\163\x73\75\x22\x6d\157\146\141\x20\x66\141\x2d\154\x6f\x63\x6b" . "\40\x6d\x6f\x5f\157\141\165\164\x68\137\x64\x65\146\x5f\142\x74\156\x5f" . strtolower($v1) . "\x20\155\x6f\137\x6f\x61\x75\164\150\x5f\x62\164\156\x5f" . $vj . "\x20\155\157\x5f\157\141\165\164\150\137\142\164\156\137" . $j1 . "\42\x3e\74\163\x70\x61\x6e\40\x63\x6c\141\x73\x73\x3d\42\155\x6f\137\x6f\141\165\164\150\137\154\x6f\147\x69\x6e\137\142\x75\x74\164\157\156\137\146\x6f\156\164\x22\40\x73\x74\171\x6c\x65\75\x22\x6d\x61\x72\147\x69\156\x2d\154\x65\x66\164\72\40" . $F4 / 7 . "\160\x78\x22\x3e" . $f8 . "\x20\x3c\x2f\x73\x70\x61\156\76\x3c\x2f\x69\76\74\x2f\x61\76\x3c\x2f\144\x69\x76\76";
jt:
pl:
goto Bd;
Ay:
if ($pt == "\x6c\157\156\x67\142\x75\x74\164\x6f\156") {
goto Rz;
}
$Zo .= "\x3c\x69\40\163\164\x79\x6c\x65\x3d\x22\155\x61\x72\147\x69\156\x3a" . $Ol . "\160\170\x3b\x20\x68\145\151\147\x68\164\72" . $Di . "\x70\170\x3b\167\151\144\164\x68\x3a" . $Di . "\160\170\73\x70\141\144\144\151\x6e\147\72\x38\160\x78\x3b\146\157\x6e\x74\x2d\x73\x69\172\x65\x3a\x20" . $Di . "\x70\x78\x3b\143\x6f\154\x6f\x72\72\43\106\106\106\106\106\x46\x3b\40\142\141\x63\x6b\147\x72\x6f\x75\x6e\144\x3a\x6c\x69\156\145\x61\x72\55\147\x72\x61\x64\151\x65\156\164\x28\71\x30\144\x65\147\x2c" . $H8 . "\54" . $nt . "\51\x21\x69\x6d\160\x6f\x72\164\141\156\x74\x3b\x22\40\143\x6c\141\x73\163\75\x22\155\x6f\146\x61\x20\x66\141\x2d" . strtolower($fU) . "\x20\155\x6f\137\x6f\x61\165\x74\150\x5f\x62\164\156\x5f" . $vj . "\40\155\x6f\x5f\157\141\165\x74\150\137\x62\164\156\137" . $j1 . "\x20" . $pt . "\42\76\x3c\x2f\151\x3e\74\x2f\141\x3e\74\x2f\x64\x69\x76\x3e";
goto k3;
Rz:
$Zo .= "\x3c\151\x20\x73\164\171\154\x65\75\42\155\141\162\x67\151\156\72" . $Ol . "\x70\x78\73\x20\150\145\x69\x67\x68\x74\x3a" . ($dX - 8) . "\160\170\x3b\167\x69\x64\164\150\x3a" . $F4 . "\160\x78\x3b\160\x61\x64\x64\x69\x6e\147\x3a\61\x30\x70\170\40\70\x70\x78\x20\70\x70\x78\40\62\60\160\x78\73\x66\x6f\156\x74\x2d\163\x69\172\145\x3a\40" . ($dX - 10) . "\x70\x78\x3b\x62\x6f\x72\x64\x65\162\55\162\x61\x64\151\x75\163\x3a" . $Fs . "\160\x78\x3b\x63\x6f\154\157\162\x3a\x23\106\106\x46\x46\106\x46\73\x20\142\x61\143\153\x67\162\x6f\x75\x6e\x64\x3a\154\x69\156\145\141\x72\55\147\162\x61\144\x69\145\156\x74\50\71\60\x64\145\x67\x2c" . $H8 . "\54" . $nt . "\51\x21\151\x6d\160\x6f\162\164\x61\156\164\x3b\x22\40\x63\x6c\x61\163\163\75\x22\x6d\x6f\x66\141\x20\146\x61\55" . strtolower($fU) . "\40\x6d\x6f\x5f\157\141\165\x74\x68\137\142\164\156\137" . $vj . "\40\155\x6f\x5f\157\x61\165\164\x68\x5f\x62\x74\x6e\137" . $j1 . "\42\x3e\x3c\x73\x70\x61\x6e\x20\143\154\x61\x73\163\x3d\x22\155\157\x5f\157\x61\x75\164\150\x5f\x6c\157\x67\151\156\x5f\x62\x75\x74\x74\157\x6e\137\146\x6f\x6e\164\x22\40\x73\164\x79\154\145\75\42\155\x61\162\x67\x69\x6e\55\154\x65\x66\164\72\x20" . $F4 / 7 . "\160\170\42\76" . $f8 . "\x20\74\x2f\163\160\141\x6e\76\74\x2f\151\x3e\74\57\x61\x3e\74\x2f\x64\151\166\x3e";
k3:
Bd:
goto I9;
xp:
if ($pt == "\x6c\157\156\x67\x62\x75\x74\164\x6f\156") {
goto Ev;
}
$Zo .= "\74\151\x20\163\x74\171\154\145\x3d\42\x6d\x61\162\147\151\156\x3a" . $Ol . "\160\x78\73\40\x68\x65\151\147\x68\x74\72" . $Di . "\160\x78\73\167\x69\x64\164\x68\72" . $Di . "\160\x78\73\x70\x61\144\144\151\156\147\x3a\x38\x70\170\x3b\146\157\156\x74\x2d\163\151\172\145\x3a\40" . $Di . "\x70\x78\73\143\157\x6c\x6f\x72\x3a" . $Xr . "\x22\40\xd\12\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x6f\x6e\x4d\157\165\163\145\x4f\x76\x65\x72\x3d\x27\164\x68\151\x73\x2e\x73\x74\x79\x6c\145\56\x63\x6f\x6c\157\x72\x3d\40\42\167\150\151\164\145\42\73\164\x68\151\x73\56\x73\164\171\154\145\x2e\x62\x61\x63\153\147\162\x6f\165\156\144\x3d\x20\42" . $Xr . "\x22\x3b\47\15\xa\40\40\x20\x20\x20\40\x20\40\157\156\115\x6f\165\163\145\117\x75\164\x3d\x27\x74\150\151\x73\56\163\x74\171\x6c\x65\x2e\143\x6f\x6c\157\x72\x3d\x20\42" . $Xr . "\x22\73\x74\150\151\163\56\x73\x74\x79\x6c\145\x2e\x62\x61\143\x6b\x67\162\157\165\x6e\144\75\x20\x22\x77\150\x69\x74\145\x22\73\47\xd\xa\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\143\x6c\x61\x73\163\x3d\x22\x6d\157\x66\141\40\x66\x61\x2d" . strtolower($fU) . "\x20\x6d\157\137\157\x61\165\164\150\x5f\142\x74\x6e\x5f" . $vj . "\40\155\x6f\137\157\x61\x75\164\x68\137\x62\x74\156\137\163\x68\x61\x64\157\x77\40" . $pt . "\40\155\x6f\x5f\x6f\x61\x75\x74\150\137\x68\x6f\x76\137\142\164\x6e\137" . strtolower($v1) . "\x22\76\x3c\57\151\76\74\57\x61\76\74\57\144\x69\x76\x3e";
goto L3;
Ev:
$Zo .= "\74\x69\x20\x73\x74\x79\x6c\145\75\x22\x6d\141\x72\147\151\156\72" . $Ol . "\x70\170\73\40\x68\x65\151\x67\x68\164\72" . ($dX - 8) . "\x70\170\x3b\167\151\144\x74\x68\x3a" . $F4 . "\160\170\x3b\160\141\144\144\x69\x6e\147\72\61\60\160\x78\x20\70\x70\170\40\x38\x70\170\40\x32\60\160\170\x3b\x66\157\x6e\164\55\163\151\172\145\x3a\40" . ($dX - 10) . "\x70\170\73\x62\157\162\x64\x65\x72\x2d\162\x61\144\x69\165\x73\x3a" . $Fs . "\160\x78\x3b\x63\x6f\x6c\157\162\x3a" . $Xr . "\42\40\xd\xa\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\40\157\156\x4d\157\x75\163\x65\117\166\x65\162\x3d\47\164\150\151\163\x2e\163\164\x79\x6c\145\x2e\143\x6f\154\157\x72\x3d\40\42\167\150\151\x74\145\x22\x3b\x74\x68\x69\163\56\x73\164\x79\154\145\x2e\142\x61\x63\x6b\x67\162\157\x75\156\144\75\x20\x22" . $Xr . "\x22\73\x27\15\xa\40\x20\x20\40\x20\x20\x20\x20\157\x6e\115\x6f\x75\163\x65\117\165\x74\x3d\47\x74\x68\151\x73\56\163\x74\171\154\145\x2e\143\x6f\154\157\162\x3d\40\x22" . $Xr . "\x22\73\164\x68\151\163\x2e\163\164\171\x6c\145\x2e\142\x61\x63\153\147\162\x6f\165\156\x64\75\40\42\167\150\x69\164\x65\x22\x3b\x27\15\xa\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x63\x6c\x61\163\x73\75\42\x6d\x6f\146\141\40\146\141\x2d" . strtolower($fU) . "\40\155\157\137\157\141\165\x74\x68\x5f\142\x74\156\137" . $vj . "\x20\155\x6f\137\157\141\165\x74\x68\x5f\142\x74\x6e\x5f" . $j1 . "\x20\x6d\157\137\157\x61\x75\164\150\137\150\x6f\x76\x5f\142\x74\156\137" . strtolower($v1) . "\x22\x3e\x3c\x73\160\141\x6e\40\x63\154\141\163\x73\75\42\155\157\x5f\x6f\x61\x75\164\150\x5f\154\x6f\x67\151\x6e\137\142\x75\164\164\x6f\x6e\137\146\157\156\x74\x22\40\163\164\171\154\x65\75\x22\155\141\x72\147\151\x6e\x2d\154\145\146\164\x3a\x20" . $F4 / 7 . "\x70\x78\42\76" . $f8 . "\40\x3c\57\163\x70\x61\x6e\76\x3c\x2f\x69\76\74\57\x61\76\x3c\x2f\144\x69\166\x3e";
L3:
I9:
goto e8;
J3:
if ($pt == "\x6c\x6f\156\x67\142\x75\x74\164\157\x6e") {
goto xQ;
}
$Zo .= "\x3c\151\x20\163\x74\x79\154\145\x3d\42\155\141\162\147\151\x6e\72" . $Ol . "\x70\170\x3b\40\150\145\x69\x67\150\x74\x3a" . $Di . "\x70\x78\73\167\151\x64\x74\150\72" . $Di . "\x70\x78\73\160\141\x64\144\151\x6e\147\72\70\160\x78\73\146\x6f\x6e\x74\55\163\151\172\x65\72\x20" . $Di . "\x70\170\x3b\142\x6f\x78\55\163\150\x61\x64\157\167\x3a\x20\162\147\x62\141\50\60\54\x20\x30\54\40\x30\54\40\60\x2e\62\51\40\60\160\x78\40\x34\160\170\40\x38\160\170\40\60\x70\x78\54\40\162\x67\x62\x61\50\x30\x2c\x20\60\54\40\60\x2c\40\60\x2e\x31\71\51\40\x30\x70\x78\x20\66\160\x78\x20\62\x30\160\170\x20\60\x70\170\73\42\40\143\154\141\x73\163\75\x22\155\157\146\x61\40\146\x61\55" . strtolower($fU) . "\40\x6d\157\x5f\x6f\141\x75\x74\x68\x5f\142\164\x6e\137" . $vj . "\x20\x6d\x6f\x5f\x6f\x61\165\x74\150\137\x62\x74\156\137\163\150\141\144\x6f\x77\40" . $pt . "\x20\x6d\157\x5f\x6f\x61\165\x74\x68\x5f\150\157\166\137\x62\x74\x6e\137" . strtolower($v1) . "\42\76\74\x2f\151\76\x3c\57\x61\76\x3c\57\144\x69\166\x3e";
goto kM;
xQ:
$Zo .= "\x3c\151\x20\163\x74\x79\x6c\145\75\x22\x6d\x61\x72\x67\x69\x6e\72" . $Ol . "\160\x78\73\x20\x68\145\151\147\x68\164\72" . ($dX - 8) . "\x70\170\x3b\167\151\144\x74\150\x3a" . $F4 . "\160\170\x3b\160\141\144\x64\x69\156\147\x3a\x31\x30\160\170\40\70\x70\170\40\70\160\x78\40\x32\x30\x70\170\73\146\157\156\164\x2d\163\x69\172\x65\x3a\x20" . ($dX - 10) . "\160\170\x3b\x62\157\162\x64\x65\x72\x2d\x72\141\x64\x69\x75\x73\x3a" . $Fs . "\x70\170\x3b\x62\157\x78\x2d\x73\150\x61\x64\x6f\x77\72\x20\x72\x67\x62\x61\50\60\54\x20\x30\54\40\x30\x2c\40\60\x2e\x32\51\x20\x30\160\170\40\x34\x70\x78\40\70\160\170\x20\60\x70\170\x2c\x20\x72\x67\x62\141\50\60\x2c\x20\60\54\x20\x30\54\x20\60\56\61\71\51\40\x30\x70\170\40\66\x70\170\40\x32\60\x70\x78\40\60\x70\170\73\42\40\143\x6c\x61\163\163\x3d\42\x6d\157\146\141\x20\x66\x61\55" . strtolower($fU) . "\x20\155\x6f\x5f\157\x61\x75\x74\150\137\x62\164\156\137" . $vj . "\40\155\157\x5f\x6f\141\x75\x74\x68\137\142\164\x6e\x5f" . $j1 . "\40\x6d\157\137\157\x61\x75\164\x68\x5f\150\157\x76\137\x62\x74\x6e\x5f" . strtolower($v1) . "\42\x3e\74\163\x70\x61\156\x20\x63\154\x61\163\163\x3d\x22\x6d\157\137\157\x61\165\164\150\137\154\x6f\x67\151\156\137\142\x75\x74\164\157\156\x5f\146\157\x6e\164\x22\40\163\164\171\154\x65\x3d\x22\x6d\141\162\147\x69\156\x2d\x6c\x65\x66\164\72\40" . $F4 / 7 . "\x70\x78\x22\x3e" . $f8 . "\x20\x3c\57\x73\160\141\x6e\76\74\x2f\151\76\x3c\57\141\x3e\x3c\57\144\x69\x76\x3e";
kM:
e8:
goto H5;
v1:
if ($pt == "\154\x6f\x6e\147\x62\165\164\x74\x6f\x6e") {
goto Dx;
}
$Zo .= "\x3c\151\x20\163\x74\x79\x6c\145\75\42\155\x61\x72\x67\x69\x6e\72" . $Ol . "\160\x78\73\x20\x68\x65\x69\x67\150\164\72" . $Di . "\160\x78\x3b\167\151\x64\x74\150\x3a" . $Di . "\160\170\73\160\141\144\x64\x69\156\147\x3a\70\160\x78\x3b\x66\x6f\x6e\164\x2d\x73\151\x7a\145\x3a\40" . $Di . "\160\170\x3b\142\x6f\x78\x2d\x73\x68\141\x64\157\167\72\40\x72\x67\x62\x61\x28\x30\54\x20\60\x2c\x20\x30\x2c\x20\x30\56\x32\51\40\x30\x70\170\40\x34\x70\x78\x20\x38\160\170\x20\x30\160\x78\54\x20\162\147\x62\x61\50\60\54\40\x30\x2c\x20\60\x2c\x20\60\x2e\61\71\x29\40\60\160\170\x20\x36\160\x78\40\62\x30\x70\170\40\x30\160\170\73\x22\x20\x63\x6c\x61\x73\163\75\x22\x6d\157\x66\141\x20\146\x61\55" . strtolower($fU) . "\x20\x6d\157\137\157\x61\x75\x74\x68\x5f\142\x74\156\137" . $vj . "\x20\x6d\x6f\x5f\157\x61\x75\164\x68\x5f\142\x74\156\137\x73\x68\x61\x64\x6f\x77\40" . $pt . "\x20\155\x6f\x5f\157\141\x75\x74\150\x5f\167\x68\151\x74\x65\x5f\x62\x74\156\x5f" . strtolower($v1) . "\x22\x3e\x3c\57\151\76\x3c\x2f\141\x3e\x3c\x2f\144\151\166\x3e";
goto EY;
Dx:
$Zo .= "\74\x69\x20\163\164\x79\x6c\x65\x3d\x22\x6d\141\x72\x67\x69\x6e\72" . $Ol . "\x70\x78\x3b\x20\150\x65\x69\147\150\164\x3a" . ($dX - 8) . "\x70\x78\x3b\167\x69\144\x74\x68\x3a" . $F4 . "\x70\170\x3b\x70\x61\x64\x64\x69\x6e\147\72\x31\x30\x70\170\x20\70\x70\170\40\70\x70\170\x20\62\x30\160\x78\73\146\x6f\x6e\164\55\163\151\x7a\145\72\40" . ($dX - 10) . "\160\x78\x3b\142\157\x72\144\145\162\55\162\141\144\151\x75\163\72" . $Fs . "\160\170\x3b\x62\x6f\170\55\163\150\141\x64\x6f\x77\x3a\x20\162\147\142\141\50\x30\54\40\x30\54\40\60\54\40\60\x2e\62\51\x20\60\160\x78\x20\64\x70\170\40\70\x70\x78\40\60\x70\170\x2c\x20\162\147\142\x61\50\x30\x2c\40\x30\x2c\x20\x30\54\x20\60\56\x31\x39\51\40\60\160\170\x20\66\x70\x78\40\x32\60\160\x78\40\x30\x70\x78\73\x22\40\x63\154\x61\x73\x73\75\x22\x6d\x6f\146\x61\x20\x66\x61\55" . strtolower($fU) . "\x20\155\157\x5f\x6f\141\165\164\x68\137\142\x74\156\137" . $vj . "\x20\x6d\157\137\157\x61\165\x74\x68\137\142\x74\x6e\137" . $j1 . "\x20\x6d\157\x5f\x6f\141\165\x74\150\137\167\150\x69\164\x65\137\x62\x74\x6e\x5f" . strtolower($v1) . "\x22\x3e\74\163\160\141\x6e\40\143\154\x61\163\x73\75\x22\155\157\137\157\141\165\x74\150\x5f\154\x6f\147\x69\156\137\142\165\164\x74\x6f\x6e\x5f\146\157\x6e\164\x22\40\163\x74\x79\x6c\x65\75\42\x6d\141\x72\x67\151\x6e\55\154\145\146\x74\x3a\x20" . $F4 / 7 . "\160\x78\42\x3e" . $f8 . "\x20\74\57\163\x70\141\x6e\76\74\57\x69\x3e\x3c\57\141\76\x3c\57\144\x69\x76\x3e";
EY:
H5:
goto A3;
iP:
if ($pt == "\154\x6f\156\x67\x62\165\164\x74\x6f\x6e") {
goto om;
}
$Zo .= "\74\x69\x20\x73\164\x79\x6c\145\x3d\x22\x6d\141\x72\x67\151\x6e\x3a" . $Ol . "\160\x78\x3b\40\x68\x65\151\x67\x68\164\72" . $Di . "\x70\170\73\x77\x69\x64\x74\x68\x3a" . $Di . "\x70\170\73\x70\141\x64\x64\151\x6e\x67\72\70\160\170\73\146\157\x6e\164\55\x73\151\x7a\x65\x3a\x20" . $Di . "\160\170\73\x63\x6f\154\x6f\162\72\x23\x46\x46\x46\106\106\106\73\40\142\141\143\153\x67\x72\x6f\x75\x6e\x64\72" . $vf . "\42\40\143\154\x61\x73\163\75\x22\x6d\x6f\x66\141\40\146\141\55" . strtolower($fU) . "\40\x6d\x6f\x5f\157\141\x75\164\x68\137\x62\x74\x6e\137" . $vj . "\40\155\157\x5f\157\141\165\164\150\137\x62\164\156\x5f" . $j1 . "\x20" . $pt . "\42\76\74\57\151\x3e\74\57\141\76\x3c\57\144\x69\166\x3e";
goto dF;
om:
$Zo .= "\74\151\40\x73\164\171\154\x65\75\x22\155\141\x72\147\151\156\x3a" . $Ol . "\160\170\73\x20\150\145\151\x67\150\x74\x3a" . ($dX - 8) . "\160\x78\73\x77\x69\144\164\150\x3a" . $F4 . "\x70\170\73\x70\x61\144\144\x69\x6e\x67\x3a\x31\60\160\170\40\70\x70\170\x20\70\160\170\40\x32\x30\x70\170\73\x66\157\x6e\x74\55\x73\151\172\145\72\40" . ($dX - 10) . "\160\170\x3b\x62\x6f\x72\x64\145\162\55\162\x61\144\x69\x75\163\x3a" . $Fs . "\x70\x78\x3b\x63\157\154\x6f\162\x3a\x23\106\x46\x46\106\106\x46\73\40\x62\x61\143\x6b\147\162\157\165\156\x64\72" . $vf . "\x22\40\x63\x6c\x61\x73\163\x3d\42\x6d\157\146\141\x20\x66\141\55" . strtolower($fU) . "\40\x6d\157\x5f\157\x61\x75\x74\x68\137\x62\x74\156\x5f" . $vj . "\x20\x6d\157\137\x6f\141\x75\x74\150\x5f\x62\164\x6e\x5f" . $j1 . "\x22\76\74\163\x70\141\x6e\40\x63\x6c\x61\x73\x73\75\42\x6d\157\137\x6f\141\165\x74\150\x5f\154\157\147\x69\156\x5f\x62\165\164\164\x6f\156\137\x66\x6f\x6e\x74\x22\x20\x73\x74\x79\x6c\145\x3d\x22\x6d\x61\x72\x67\151\156\x2d\x6c\x65\146\x74\x3a\x20" . $F4 / 7 . "\160\170\42\76" . $f8 . "\x20\74\57\x73\x70\x61\156\x3e\x3c\x2f\151\x3e\x3c\57\141\x3e\x3c\57\144\x69\x76\x3e";
dF:
A3:
goto Er;
VO:
if ($pt == "\x6c\x6f\x6e\147\x62\x75\x74\x74\x6f\x6e") {
goto tk;
}
$Zo .= "\74\x69\40\163\164\171\154\145\75\42\x6d\141\162\x67\151\x6e\72" . $Ol . "\x70\170\73\40\150\145\x69\x67\150\164\72" . $Di . "\160\170\x3b\x77\151\144\164\x68\72" . $Di . "\x70\x78\x3b\x70\141\144\144\x69\x6e\x67\x3a\x38\x70\170\x3b\x66\x6f\x6e\164\55\163\x69\172\x65\72\40" . $Di . "\160\170\73\42\40\x63\154\141\x73\x73\x3d\42\155\157\x66\x61\x20\x66\141\x2d" . strtolower($fU) . "\40\155\x6f\137\157\141\165\164\150\x5f\x64\145\146\137\x62\164\x6e\137" . strtolower($v1) . "\x20\155\157\x5f\x6f\141\165\164\150\137\x62\164\x6e\137" . $vj . "\x20\155\x6f\x5f\157\x61\x75\164\150\x5f\x62\x74\x6e\x5f" . $j1 . "\x20" . $pt . "\x22\76\74\57\151\76\x3c\x2f\x61\x3e\74\57\x64\x69\x76\x3e";
goto ZC;
tk:
$Zo .= "\x3c\151\40\x73\x74\171\x6c\x65\75\x22\155\x61\162\147\x69\x6e\x3a" . $Ol . "\160\x78\x3b\x20\150\145\151\x67\x68\164\x3a" . ($dX - 8) . "\x70\170\x3b\x77\151\144\x74\150\72" . $F4 . "\160\x78\x3b\160\141\x64\x64\151\x6e\x67\72\61\60\x70\x78\40\70\x70\170\x20\70\x70\x78\x20\x32\x30\x70\x78\x3b\146\x6f\156\164\x2d\x73\151\x7a\145\72\40" . ($dX - 10) . "\x70\170\x3b\142\157\x72\144\145\162\x2d\162\x61\144\x69\165\x73\x3a" . $Fs . "\160\x78\x22\x20\x63\154\x61\x73\163\x3d\42\x6d\157\146\141\40\x66\141\x2d" . strtolower($fU) . "\40\155\157\137\x6f\141\165\164\150\137\144\145\x66\137\142\x74\x6e\x5f" . strtolower($v1) . "\x20\155\x6f\x5f\x6f\x61\165\x74\150\x5f\142\164\x6e\x5f" . $vj . "\40\x6d\x6f\x5f\x6f\x61\x75\x74\150\137\142\164\x6e\x5f" . $j1 . "\x22\76\x3c\163\160\141\156\40\x63\154\x61\x73\x73\x3d\x22\155\157\137\157\x61\x75\164\x68\137\154\x6f\x67\151\156\137\x62\165\x74\164\x6f\156\x5f\x66\157\x6e\x74\x22\x20\163\164\x79\154\145\75\x22\155\141\x72\x67\151\156\55\x6c\145\x66\x74\72\x20" . $F4 / 7 . "\x70\x78\x22\76" . $f8 . "\x20\74\57\x73\x70\x61\x6e\76\x3c\57\x69\76\x3c\x2f\x61\x3e\x3c\x2f\x64\x69\x76\76";
ZC:
Er:
ah:
W2:
$bj = "\40";
Y9:
}
ba:
$Zo .= "\74\x2f\144\x69\166\76";
return $Zo;
}
private function mo_oauth_load_login_script()
{
wp_enqueue_style("\x6d\x6f\x2d\x77\x70\55\142\157\157\164\x73\x74\162\141\160\55\x73\157\x63\x69\141\154", MOC_URL . "\162\145\163\157\165\162\x63\145\x73\x2f\x63\x73\163\x2f\x62\157\x6f\164\163\164\x72\x61\160\55\x73\157\x63\151\x61\154\56\143\x73\x73", array(), $lJ = null, $zL = false);
wp_enqueue_style("\x6d\x6f\55\x77\x70\55\142\157\157\x74\163\x74\x72\x61\160\x2d\155\x61\151\x6e", MOC_URL . "\162\x65\163\x6f\x75\x72\x63\x65\x73\x2f\143\x73\163\57\x62\x6f\157\x74\163\164\162\x61\160\56\155\x69\156\55\x70\162\x65\x76\x69\145\x77\56\x63\163\x73", array(), $lJ = null, $zL = false);
wp_enqueue_style("\x6d\157\x2d\167\160\55\x66\x6f\156\x74\55\x61\x77\x65\x73\157\x6d\x65", MOC_URL . "\x72\x65\x73\x6f\165\x72\x63\145\163\x2f\143\x73\x73\57\x66\x6f\x6e\164\55\141\167\x65\163\157\x6d\x65\x2e\155\151\156\x2e\x63\x73\163", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
wp_enqueue_style("\155\157\x5f\x6f\141\x75\164\150\137\143\x75\x73\164\x6f\155\x69\172\145\137\x69\x63\157\x6e\137\164\x61\x62", MOC_URL . "\x63\154\141\163\163\145\163\57\x46\162\145\x65\57\103\x75\x73\x74\x6f\155\x69\172\x61\x74\151\157\x6e\x2f\103\165\x73\164\x6f\155\151\x7a\141\164\151\x6f\156\56\x63\x73\x73", array(), $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
echo "\11\x3c\x73\x63\162\151\x70\x74\40\x74\171\x70\x65\x3d\x22\164\x65\x78\x74\57\152\141\166\x61\x73\x63\x72\151\x70\x74\42\x3e\xd\xa\15\12\11\x9\146\x75\x6e\x63\164\151\157\156\40\110\x61\156\144\154\x65\120\x6f\x70\165\160\x52\145\x73\165\x6c\x74\x28\x72\x65\163\x75\x6c\x74\51\40\x7b\15\12\11\11\x9\167\x69\x6e\x64\x6f\x77\x2e\x6c\x6f\143\141\164\x69\157\156\56\x68\162\x65\146\40\x3d\x20\x72\145\x73\x75\154\164\73\xd\xa\11\x9\175\xd\12\15\xa\11\11\146\165\156\143\x74\151\x6f\156\x20\155\157\x4f\101\x75\x74\150\x4c\x6f\x67\151\x6e\50\141\x70\160\137\156\141\x6d\145\x29\40\x7b\xd\12\11\x9\x9\167\x69\x6e\x64\157\167\x2e\154\x6f\143\x61\x74\151\x6f\156\56\x68\x72\x65\146\x20\x3d\40\47";
echo site_url();
echo "\47\40\53\40\x27\x2f\x3f\x6f\x70\x74\x69\x6f\x6e\75\147\x65\156\145\x72\x61\x74\145\104\x79\x6e\155\151\x63\x55\x72\x6c\46\141\160\x70\137\156\x61\155\x65\75\x27\40\x2b\x20\141\160\x70\x5f\156\x61\155\x65\x3b\xd\xa\x9\11\x7d\xd\12\11\11\146\x75\156\143\164\151\x6f\x6e\40\x6d\x6f\x4f\101\165\x74\150\x43\157\x6d\x6d\157\156\x4c\157\147\151\x6e\x28\141\x70\x70\137\156\141\x6d\x65\x29\40\x7b\xd\12\x9\11\11";
global $Ls;
$KE = $Ls->get_current_url();
$Tj = $Ls->get_plugin_config();
$xx = get_site_option("\x6d\157\137\x6f\141\165\164\150\x5f\141\x70\x70\163\137\154\x69\163\164");
$lE = '';
if (!boolval($Tj->get_config("\141\x63\x74\x69\166\x61\164\x65\x5f\163\151\x6e\147\x6c\x65\137\154\157\x67\151\x6e\137\x66\x6c\x6f\167"))) {
goto jO;
}
if (!is_array($xx)) {
goto Xs;
}
foreach ($xx as $M0 => $uW) {
$lE .= "\74\x61\40\150\x72\145\x66\x3d\x22" . site_url() . "\x2f\x3f\157\x70\x74\151\157\156\75\157\141\x75\x74\150\x72\145\144\151\x72\145\143\164\x26\x61\x70\x70\137\x6e\x61\155\145\x3d" . $M0 . "\42\x3e" . $M0 . "\74\57\141\76\x26\x6e\142\x73\x70\73\46\156\142\163\x70\73";
jl:
}
iH:
Xs:
echo "\157\165\x74\x70\x75\x74\x20\x3d\40\47\74\x62\76\x50\x6c\x65\x61\x73\145\40\x73\145\x6c\145\143\x74\40\x79\x6f\165\x72\x20\x41\160\x70\57\107\162\x6f\165\160\57\114\157\x67\151\x6e\40\x44\x6f\155\141\151\x6e\x20\72\x20\x3c\x2f\x62\76\74\142\x72\x3e\74\x62\162\x3e" . $lE . "\x27\x3b";
echo "\144\157\143\x75\155\x65\156\x74\x2e\167\x72\151\164\x65\50\x6f\x75\x74\x70\165\164\51\x3b";
jO:
echo "\x9\11\x7d\xd\xa\xd\12\x9\11\146\165\x6e\x63\x74\151\x6f\x6e\40\x6d\157\x4f\101\165\x74\x68\114\x6f\147\151\156\x4e\x65\x77\50\141\160\x70\x5f\x6e\141\x6d\x65\x2c\x20\x72\145\x64\x69\162\x65\143\x74\x5f\x75\x72\154\40\x3d\40\47\47\51\40\x7b\15\12\11\x9\x9\x76\x61\x72\x20\x62\141\x73\145\x5f\x75\162\154\40\75\x20\42";
echo esc_url(site_url());
echo "\42\73\15\xa\x9\11\11";
global $Ls;
$KE = $Ls->get_current_url();
$Tj = $Ls->get_plugin_config();
if (boolval($Tj->get_config("\160\157\160\x75\160\x5f\154\157\147\x69\156"))) {
goto TG;
}
echo "\11\11\11\11\151\x66\50\x72\145\x64\151\162\145\143\164\x5f\x75\x72\x6c\x20\41\75\40\47\x27\51\173\15\xa\x9\x9\x9\x9\x9\167\x69\x6e\x64\157\167\56\154\157\143\141\164\x69\157\156\56\x68\162\145\x66\x20\x3d\40\x62\x61\163\x65\137\165\162\154\x20\53\x20\x22\57\x3f\157\160\x74\x69\x6f\x6e\x3d\x6f\141\x75\x74\150\x72\145\x64\x69\162\x65\143\x74\46\x61\160\160\137\x6e\141\155\145\75\42\40\53\x20\141\x70\x70\x5f\156\x61\x6d\145\40\x2b\40\47\x26\162\x65\x64\151\x72\x65\x63\164\x5f\x75\x72\154\75\x27\x20\x2b\x20\162\x65\x64\x69\x72\145\x63\164\137\165\x72\x6c\73\xd\12\x9\x9\11\x9\175\xd\12\x9\x9\11\x9\x65\x6c\x73\145\173\xd\xa\x9\11\x9\11\11\167\x69\x6e\144\157\x77\56\154\x6f\x63\141\x74\x69\157\156\x2e\x68\162\x65\146\x20\x3d\x20\142\141\163\145\x5f\x75\162\154\40\x2b\x20\42\x2f\77\157\160\164\151\157\156\x3d\x6f\x61\165\x74\150\x72\x65\144\151\162\x65\143\164\x26\x61\160\x70\137\x6e\141\x6d\x65\75\42\40\x2b\x20\x61\x70\x70\137\x6e\x61\155\145\40\x2b\40\47\x26\162\145\x64\151\162\145\x63\164\x5f\x75\x72\154\x3d";
echo rawurlencode($KE);
echo "\47\x3b\15\12\11\x9\11\x9\x7d\11\x9\x9\x9\xd\xa\x9\11\11\x9";
goto NO;
TG:
$F4 = !empty($Tj->get_config("\x63\165\x73\164\x6f\155\137\x77\x69\144\x74\x68")) ? $Tj->get_config("\143\x75\163\164\157\x6d\x5f\x77\x69\x64\x74\150") : "\x35\60\60";
$dX = !empty($Tj->get_config("\x63\x75\163\164\x6f\155\137\150\145\x69\x67\x68\x74")) ? $Tj->get_config("\143\x75\163\x74\x6f\155\x5f\150\145\151\x67\150\x74") : "\x35\60\60";
echo apply_filters("\155\x6f\137\160\x6f\x70\x5f\165\x70\137\154\x6f\x67\151\x6e\x5f\150\x61\x6e\144\x6c\145\x72", '');
echo "\x9\11\11\11\x76\141\x72\40\154\x65\146\x74\40\75\x20\x28\x73\x63\x72\x65\x65\156\56\x77\151\144\164\150\x2d";
echo esc_attr($F4);
echo "\x29\x20\x2f\40\62\x3b\x20\57\x2f\40\164\x6f\40\155\x61\x6b\x65\40\x70\157\160\40\x77\151\156\x64\x6f\167\x20\x61\160\x70\145\141\162\40\x6f\x6e\40\x63\x65\156\164\145\x72\40\157\x66\x20\x73\143\162\x65\x65\156\xd\12\11\11\x9\x9\166\x61\x72\40\164\x6f\160\40\x3d\x20\50\163\x63\162\145\x65\x6e\56\x68\x65\151\147\x68\x74\55";
echo esc_attr($dX);
echo "\51\40\x2f\x20\x34\x3b\15\xa\x9\x9\11\11\x69\x66\50\x72\x65\144\151\x72\145\143\x74\137\165\162\x6c\x20\41\75\40\x27\47\x29\173\11\15\xa\11\x9\11\11\11\166\x61\x72\x20\155\x79\x57\151\x6e\x64\157\167\x20\75\40\x77\151\x6e\144\157\x77\x2e\157\x70\145\156\50\x20\142\x61\x73\x65\137\165\162\x6c\x20\x2b\x20\x27\x2f\77\157\160\164\x69\157\x6e\75\157\x61\x75\x74\x68\162\145\x64\151\x72\x65\143\x74\x26\141\160\x70\137\x6e\141\x6d\145\75\x27\x20\53\40\141\160\x70\x5f\156\141\155\x65\x20\53\40\x27\46\162\x65\144\x69\x72\x65\x63\164\137\165\162\x6c\75\47\x20\53\x20\x72\145\x64\151\x72\145\x63\x74\137\165\162\x6c\54\x20\47\47\54\x20\x27\x77\x69\144\x74\x68\x3d";
echo esc_attr($F4);
echo "\54\150\x65\x69\x67\150\x74\75";
echo esc_attr($dX);
echo "\54\x20\47\x2b\x20\47\164\157\x70\x3d\x27\x20\53\40\164\x6f\x70\40\x2b\x20\x27\x2c\40\x6c\145\x66\164\x3d\x27\40\x2b\40\x6c\x65\146\x74\x29\x3b\xd\12\11\x9\x9\x9\x7d\15\xa\x9\11\11\11\145\x6c\163\x65\x7b\15\xa\x9\x9\11\x9\11\x76\x61\x72\x20\x6d\171\x57\x69\x6e\x64\157\167\x20\75\x20\x77\151\x6e\x64\x6f\167\56\157\160\145\156\50\40\x62\141\163\145\137\x75\162\154\40\53\40\47\x2f\77\x6f\160\164\151\157\156\x3d\157\141\165\x74\x68\x72\x65\144\x69\162\145\143\164\46\x61\x70\160\x5f\x6e\x61\x6d\145\75\x27\40\53\x20\x61\160\160\x5f\x6e\x61\155\145\x20\53\40\x27\x26\x72\145\144\x69\162\145\x63\164\x5f\165\162\154\75";
echo rawurlencode($KE);
echo "\x27\x2c\40\47\47\54\40\47\x77\x69\144\164\x68\x3d";
echo esc_attr($F4);
echo "\54\x68\x65\x69\147\x68\x74\x3d";
echo esc_attr($dX);
echo "\54\40\x27\53\x20\x27\164\157\160\75\47\40\53\x20\164\x6f\x70\40\53\x20\47\x2c\40\154\x65\x66\x74\75\x27\x20\53\40\x6c\x65\146\164\51\x3b\15\12\11\x9\11\x9\x7d\x9\x9\x9\x9\15\xa\11\11\11\x9";
NO:
echo "\x9\x9\x7d\15\12\11\x3c\57\163\143\162\151\160\x74\76\xd\12\x9\x9";
global $Ls;
$Th = isset($_REQUEST["\141\160\x70\x5f\x6e\141\155\x65"]) && !empty($_REQUEST["\141\x70\x70\137\x6e\x61\155\x65"]) ? $_REQUEST["\x61\160\160\x5f\156\x61\155\x65"] : '';
$Ro = $Ls->get_app_by_name($Th);
$V_ = $Ro->get_app_config("\147\162\141\156\164\137\164\x79\x70\145");
if (!($V_ && "\x50\x61\163\163\x77\157\x72\144\x20\x47\162\x61\156\164" === $V_)) {
goto l0;
}
do_action("\155\x6f\x5f\x6f\141\165\x74\150\137\143\x6c\x69\145\x6e\x74\137\141\144\x64\137\160\x77\144\137\152\163");
l0:
}
public function error_message()
{
$mP = get_transient("\x6d\x6f\x5f\x6f\141\165\164\x68\137\167\151\144\147\145\x74\x5f\x6d\x73\147");
$V9 = get_transient("\155\157\x5f\157\141\165\164\x68\137\x77\x69\144\147\x65\x74\x5f\155\x73\147\137\x63\154\x61\x73\163");
if (!($mP && $V9)) {
goto vE;
}
echo "\74\144\151\166\40\143\154\x61\x73\163\x3d\42" . esc_attr($V9) . "\x22\x3e" . esc_attr($mP) . "\x3c\x2f\x64\151\x76\76";
delete_transient("\155\x6f\137\x6f\x61\x75\164\x68\x5f\x77\151\x64\147\145\x74\x5f\155\x73\147");
delete_transient("\155\x6f\137\157\141\165\x74\x68\137\x77\x69\144\147\145\164\x5f\x6d\163\147\x5f\x63\154\x61\x73\x73");
vE:
}
public function register_plugin_styles()
{
wp_enqueue_style("\163\x74\171\x6c\x65\x5f\154\x6f\x67\151\x6e\137\x77\x69\144\147\x65\164", MOC_URL . "\x72\x65\163\x6f\165\162\x63\145\x73\57\x63\x73\x73\57\x73\x74\171\154\145\x5f\154\x6f\x67\151\x6e\137\x77\x69\144\x67\x65\x74\x2e\x63\163\163", $lJ = MO_OAUTH_PREMIUM_CSS_JS_VERSION, $zL = false);
}
}
Function Calls
None |
Stats
MD5 | 840f6545e031209a255ce4adc94d8a0f |
Eval Count | 0 |
Decode Time | 103 ms |