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 include "BasicEnum.php"; class mo_options_enum_sso_login extends BasicEnum { ..
Decoded Output download
<?php
include "BasicEnum.php";
class mo_options_enum_sso_login extends BasicEnum
{
const Relay_state = "mo_saml_relay_state";
const Absolute_relay_state = "mo_saml_send_absolute_relay_state";
const Logout_Relay_state = "mo_saml_logout_relay_state";
const Redirect_Idp = "mo_saml_registered_only_access";
const Force_authentication = "mo_saml_force_authentication";
const Enable_access_RSS = "mo_saml_enable_rss_access";
const Auto_redirect = "mo_saml_enable_login_redirect";
const Allow_wp_signin = "mo_saml_allow_wp_signin";
const Backdoor_URL = "mo_saml_backdoor_url";
const Custom_login_button = "mo_saml_custom_login_text";
const Custom_greeting_text = "mo_saml_custom_greeting_text";
const Custom_greeting_name = "mo_saml_greeting_name";
const Custom_logout_button = "mo_saml_custom_logout_text";
const Redirect_to_WP_login = "mo_saml_redirect_to_wp_login";
const Add_SSO_button = "mo_saml_add_sso_button_wp";
const Use_Button_as_shortcode = "mo_saml_use_button_as_shortcode";
const Use_Button_as_widget = "mo_saml_use_button_as_widget";
const SSO_Button_Size = "mo_saml_button_size";
const SSO_Button_Width = "mo_saml_button_width";
const SSO_Button_Height = "mo_saml_button_height";
const SSO_Button_Curve = "mo_saml_button_curve";
const SSO_Button_Color = "mo_saml_button_color";
const SSO_Button_Text = "mo_saml_button_text";
const SSO_Button_Theme = "mo_saml_button_theme";
const SSO_Button_font_color = "mo_saml_font_color";
const SSO_Button_font_size = "mo_saml_font_size";
const SSO_Button_position = "sso_button_login_form_position";
const Keep_Configuration_Intact = "mo_saml_keep_settings_on_deletion";
}
class mo_options_enum_identity_provider extends BasicEnum
{
const Broker_service = "mo_saml_enable_cloud_broker";
const SP_Base_Url = "mo_saml_sp_base_url";
const SP_Entity_ID = "mo_saml_sp_entity_id";
}
class mo_options_enum_service_provider extends BasicEnum
{
const Identity_name = "saml_identity_name";
const Identity_provider_identifer_name = "mo_saml_identity_provider_identifier_name";
const Assertion_signed = "saml_assertion_signed";
const Login_binding_type = "saml_login_binding_type";
const Login_URL = "saml_login_url";
const Logout_binding_type = "saml_logout_binding_type";
const Logout_URL = "saml_logout_url";
const Issuer = "saml_issuer";
const X509_certificate = "saml_x509_certificate";
const Request_signed = "saml_request_signed";
const NameID_Format = "saml_nameid_format";
const Guide_name = "saml_identity_provider_guide_name";
const Is_encoding_enabled = "mo_saml_encoding_enabled";
}
class mo_options_enum_test_configuration extends BasicEnum
{
const SAML_REQUEST = "mo_saml_request";
const SAML_RESPONSE = "mo_saml_response";
const TEST_CONFIG_ERROR_LOG = "mo_saml_test";
const TEST_CONFIG_ATTIBUTES = "mo_saml_test_config_attrs";
}
class mo_options_enum_attribute_mapping extends BasicEnum
{
const Attribute_Username = "saml_am_username";
const Attribute_Email = "saml_am_email";
const Attribute_First_name = "saml_am_first_name";
const Attribute_Last_name = "saml_am_last_name";
const Attribute_Group_name = "saml_am_group_name";
const Attribute_Custom_mapping = "mo_saml_custom_attrs_mapping";
const Attribute_Account_matcher = "saml_am_account_matcher";
const Attribute_Display_name = "saml_am_display_name";
const Attribute_Show_in_User_Menu = "saml_show_user_attribute";
}
class mo_options_enum_domain_restriction extends BasicEnum
{
const Email_Domains = "saml_am_email_domains";
const Enable_Domain_Restriction_Login = "mo_saml_enable_domain_restriction_login";
const Allow_deny_user_with_Domain = "mo_saml_allow_deny_user_with_domain";
}
class mo_options_enum_role_mapping extends BasicEnum
{
const Role_do_not_auto_create_users = "mo_saml_dont_create_user_if_role_not_mapped";
const Role_do_not_assign_role_unlisted = "saml_am_dont_allow_unlisted_user_role";
const Role_do_not_update_existing_user = "saml_am_dont_update_existing_user_role";
const Role_update_admin_user_role = "saml_am_update_admin_users_role";
const Role_default_role = "saml_am_default_user_role";
const Role_do_not_login_with_roles = "saml_am_dont_allow_user_tologin_create_with_given_groups";
const Role_restrict_users_with_groups = "mo_saml_restrict_users_with_groups";
const Role_mapping = "saml_am_role_mapping";
}
class mo_options_enum_custom_certificate extends BasicEnum
{
const Custom_Public_Certificate = "mo_saml_custom_cert";
const Custom_Private_Certificate = "mo_saml_custom_cert_private_key";
const Enable_Public_certificate = "mo_saml_enable_custom_certificate";
}
class mo_options_enum_custom_messages extends BasicEnum
{
const Custom_Account_Creation_Disabled_message = "mo_saml_account_creation_disabled_msg";
const Custom_Restricted_Domain_message = "mo_saml_restricted_domain_error_msg";
}
class mo_options_error_constants extends BasicEnum
{
const Error_no_certificate = "Unable to find a certificate .";
const Cause_no_certificate = "No signature found in SAML Response or Assertion. Please sign at least one of them.";
const Error_wrong_certificate = "Unable to find a certificate matching the configured fingerprint.";
const Cause_wrong_certificate = "X.509 Certificate field in plugin does not match the certificate found in SAML Response.";
const Error_invalid_audience = "Invalid Audience URI.";
const Cause_invalid_audience = "The value of 'Audience URI' field on Identity Provider's side is incorrect";
const Error_issuer_not_verfied = "Issuer cannot be verified.";
const Cause_issuer_not_verfied = "IdP Entity ID configured and the one found in SAML Response do not match";
}
class mo_options_enum_nameid_formats extends BasicEnum
{
const EMAIL = "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress";
const UNSPECIFIED = "urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified";
const TRANSIENT = "urn:oasis:names:tc:SAML:2.0:nameid-format:transient";
const PERSISTENT = "urn:oasis:names:tc:SAML:2.0:nameid-format:persistent";
}
class mo_options_plugin_constants extends BasicEnum
{
const CMS_Name = "WP";
const Application_Name = "WP miniOrange SAML 2.0 SSO Plugin";
const Application_type = "SAML";
const Version = "12.1.4";
const HOSTNAME = "https://login.xecurify.com";
const LICENSE_TYPE = "WP_SAML_SP_PLUGIN";
const LICENSE_PLAN_NAME = "wp_saml_sso_basic_plan";
const PLUGIN_CONFIG_FILENAME = "mo_saml_config.php";
}
class mo_options_plugin_idp extends BasicEnum
{
public static $IDP_GUIDES = array("ADFS" => "adfs", "Azure AD" => "azure-ad", "Azure B2C" => "azure-b2c", "Okta" => "okta", "SalesForce" => "salesforce", "Google Apps" => "google-apps", "OneLogin" => "onelogin", "Keycloak" => "jboss-keycloak", "MiniOrange" => "miniorange", "PingFederate" => "pingfederate", "PingOne" => "pingone", "Centrify" => "centrify", "Oracle" => "oracle-enterprise-manager", "Bitium" => "bitium", "Shibboleth 2" => "shibboleth2", "Shibboleth 3" => "shibboleth3", "SimpleSAMLphp" => "simplesaml", "OpenAM" => "openam", "Authanvil" => "authanvil", "Auth0" => "auth0", "CA Identity" => "ca-identity", "WSO2" => "wso2", "RSA SecureID" => "rsa-secureid", "Other" => "Other");
}
class mo_options_environments extends BasicEnum
{
const Environment_Objects = "mo_saml_environment_objects";
const Selected_Environments = "mo_saml_selected_environment";
const Environment_Objects_old = "environment_objects";
const Multiple_Licenses = "mo_enable_multiple_licenses";
}
class mo_options_plugin_admin extends BasicEnum
{
const HOST_NAME = "mo_saml_host_name";
const New_Registration = "mo_saml_new_registration";
const Admin_Phone = "mo_saml_admin_phone";
const Admin_Email = "mo_saml_admin_email";
const Admin_Pass = "mo_saml_admin_password";
const Verify_Customer = "mo_saml_verify_customer";
const Admin_Customer_Key = "mo_saml_admin_customer_key";
const Admin_Api_Key = "mo_saml_admin_api_key";
const Customer_Token = "mo_saml_customer_token";
const Admin_notices_Message = "mo_saml_message";
const Registration_Status = "mo_saml_registration_status";
const IDP_Config_ID = "saml_idp_config_id";
const IDP_Config_Complete = "mo_saml_idp_config_complete";
const Transaction_ID = "mo_saml_transactionId";
const SML_LK = "sml_lk";
const Site_Status = "t_site_status";
const Site_Check = "site_ck_l";
const Free_Version = "mo_saml_free_version";
const Admin_company = "mo_saml_admin_company";
const Admin_First_Name = "mo_saml_admin_first_name";
const Admin_Last_Name = "mo_saml_admin_last_name";
const License_Name = "mo_saml_license_name";
const User_Limit = "mo_saml_usr_lmt";
}
class mo_saml_cli_error extends BasicEnum
{
const Poor_Internet = "Unable to connect to the internet. Please try connecting again.";
const Code_Expired = "License key you have entered has already been used. Please enter a key which has not been used before on any other instance or if you have exhausted all your keys";
const Invalid_License = "You have entered an invalid license key. Please enter a valid license key.";
const Not_Upgraded = "You have not upgraded yet.Please upgrade to the premium version.";
const Curl_Error = "miniOrange SAML 2.0 SSO Plugin - ERROR: PHP cURL extension is not installed or disabled. Registration failed.";
const Customer_Not_Found = "There was an error processing your request. Registered customer not found in our system.";
const File_Empty = "Error while fetching the contents. Please check your license file once.";
const Invalid_JSON = "Error while retrieving the details. Invalid JSON found.";
const File_Not_Found = "Error while retrieving the details. Specified file not found in the plugin directory.";
const Incorrect_File_Format = "Error while retrieving the details. Please upload a valid configuration file in .json format.";
}
class mo_saml_options_addons extends BasicEnum
{
public static $ADDON_URL = array("scim" => "https://plugins.miniorange.com/wordpress-user-provisioning", "page_restriction" => "https://plugins.miniorange.com/wordpress-page-restriction", "file_prevention" => "https://plugins.miniorange.com/wordpress-media-restriction", "ssologin" => "https://plugins.miniorange.com/wordpress-sso-login-audit", "buddypress" => "https://plugins.miniorange.com/wordpress-buddypress-integrator", "learndash" => "https://plugins.miniorange.com/wordpress-learndash-integrator", "attribute_based_redirection" => "https://plugins.miniorange.com/wordpress-attribute-based-redirection-restriction", "ssosession" => "https://plugins.miniorange.com/sso-session-management", "fsso" => "https://plugins.miniorange.com/incommon-federation-single-sign-on-sso", "paid_mem_pro" => "https://plugins.miniorange.com/paid-membership-pro-integrator", "memberpress" => "https://plugins.miniorange.com/wordpress-memberpress-integrator", "wp_members" => "https://plugins.miniorange.com/wordpress-members-integrator", "woocommerce" => "https://plugins.miniorange.com/wordpress-woocommerce-integrator", "guest_login" => "https://plugins.miniorange.com/guest-user-login", "profile_picture_add_on" => "https://plugins.miniorange.com/wordpress-profile-picture-map");
public static $WP_ADDON_URL = array("page-restriction" => "https://wordpress.org/plugins/page-and-post-restriction/embed/", "scim-user-sync" => "https://wordpress.org/plugins/scim-user-provisioning/embed/");
public static $ADDON_TITLE = array("scim" => "SCIM User Provisioning", "page_restriction" => "Page and Post Restriction", "file_prevention" => "Prevent File Access", "ssologin" => "SSO Login Audit", "buddypress" => "BuddyPress Integrator", "learndash" => "Learndash Integrator", "attribute_based_redirection" => "Attribute Based Redirection", "ssosession" => "SSO Session Management", "fsso" => "Federation Single Sign-On", "memberpress" => "MemberPress Integrator", "wp_members" => "WP-Members Integrator", "woocommerce" => "WooCommerce Integrator", "guest_login" => "Guest Login", "profile_picture_add_on" => "Profile Picture Add-on", "paid_mem_pro" => "PaidMembership Pro Integrator");
public static $RECOMMENDED_ADDONS_PATH = array("learndash" => "sfwd-lms/sfwd_lms.php", "buddypress" => "buddypress/bp-loader.php", "paid_mem_pro" => "paid-memberships-pro/paid-memberships-pro.php", "memberpress" => "memberpress/memberpress.php", "wp_members" => "wp-members/wp-members.php", "woocommerce" => "woocommerce/woocommerce.php");
}
class mo_saml_options_plugin_idp extends BasicEnum
{
public static $IDP_GUIDES = array("ADFS" => array("adfs", "saml-single-sign-on-sso-wordpress-using-adfs"), "Azure AD" => array("azure-ad", "saml-single-sign-on-sso-wordpress-using-azure-ad"), "Azure B2C" => array("azure-b2c", "saml-single-sign-on-sso-wordpress-using-azure-b2c"), "Okta" => array("okta", "saml-single-sign-on-sso-wordpress-using-okta"), "Keycloak" => array("jboss-keycloak", "saml-single-sign-on-sso-wordpress-using-jboss-keycloak"), "Google Apps" => array("google-apps", "saml-single-sign-on-sso-wordpress-using-google-apps"), "Windows SSO" => array("windows", "saml-single-sign-on-sso-wordpress-using-adfs"), "SalesForce" => array("salesforce", "saml-single-sign-on-sso-wordpress-using-salesforce"), "WordPress" => array("wordpress", "saml-single-sign-on-sso-between-two-wordpress-sites"), "Office 365" => array("office365", "wordpress-office-365-single-sign-on-sso-login"), "Auth0" => array("auth0", "saml-single-sign-on-sso-wordpress-using-auth0"), "MiniOrange" => array("miniorange", "saml-single-sign-on-sso-wordpress-using-miniorange"), "Community" => array("salesforce", "saml-single-sign-on-sso-wordpress-using-salesforce community"), "Classlink" => array("classlink", "saml-single-sign-on-sso-login-wordpress-using-classlink"), "OneLogin" => array("onelogin", "saml-single-sign-on-sso-wordpress-using-onelogin"), "Centrify" => array("centrify", "saml-single-sign-on-sso-wordpress-using-centrify"), "PingFederate" => array("pingfederate", "saml-single-sign-on-sso-wordpress-using-pingfederate"), "Shibboleth 2" => array("shibboleth2", "saml-single-sign-on-sso-wordpress-using-shibboleth2"), "Shibboleth 3" => array("shibboleth3", "saml-single-sign-on-sso-wordpress-using-shibboleth3"), "AbsorbLMS" => array("absorb-lms", "saml-single-sign-on-sso-wordpress-using-absorb-lms"), "Gluu Server" => array("gluu-server", "saml-single-sign-on-sso-wordpress-using-gluu-server"), "JumpCloud" => array("jumpcloud", "saml-single-sign-on-sso-wordpress-using-jumpcloud"), "IdentityServer" => array("identityserver4", "saml-single-sign-on-sso-wordpress-using-identityserver4"), "Degreed" => array("degreed", "saml-single-sign-on-sso-wordpress-using-degreed"), "CyberArk" => array("cyberark", "saml-single-sign-on-sso-for-wordpress-using-cyberark"), "Duo" => array("duo", "saml-single-sign-on-sso-wordpress-using-duo"), "FusionAuth" => array("fusionauth", "saml-single-sign-on-sso-wordpress-using-fusionauth"), "SecureAuth" => array("secureauth", "saml-single-sign-on-sso-wordpress-using-secureauth"), "NetIQ" => array("netIQ", "saml-single-sign-on-sso-wordpress-using-netIQ"), "Fonteva" => array("fonteva", "saml-single-sign-on-sso-wordpress-using-fonteva"), "SURFconext" => array("surfconext", "surfconext-saml-single-sign-on-sso-in-wordpress"), "PhenixID" => array("phenixid", "phenixid-saml-single-sign-on-sso-login-wordpresss"), "Authanvil" => array("authanvil", "saml-single-sign-on-sso-wordpress-using-authanvil"), "Bitium" => array("bitium", "saml-single-sign-on-sso-wordpress-using-bitium"), "CA Identity" => array("ca-identity", "saml-single-sign-on-sso-wordpress-using-ca-identity"), "OpenAM" => array("openam", "saml-single-sign-on-sso-wordpress-using-openam"), "Oracle" => array("oracle-enterprise-manager", "saml-single-sign-on-sso-wordpress-using-oracle-enterprise-manager"), "PingOne" => array("pingone", "saml-single-sign-on-sso-wordpress-using-pingone"), "RSA SecureID" => array("rsa-secureid", "saml-single-sign-on-sso-wordpress-using-rsa-secureid"), "SimpleSAMLphp" => array("simplesaml", "saml-single-sign-on-sso-wordpress-using-simplesaml"), "WSO2" => array("wso2", "saml-single-sign-on-sso-wordpress-using-wso2"), "Custom IDP" => array("custom-idp", "saml-single-sign-on-sso-wordpress-using-custom-idp"));
}
class mo_saml_options_plugin_idp_videos extends BasicEnum
{
public static $IDP_VIDEOS = array("azure-ad" => "TfPJwgUq8z0", "azure-b2c" => "B8zCYjhV3UU", "adfs" => "rLBHbRbrY5E", "okta" => "YHE8iYojUqM", "salesforce" => "LRQrmgr255Q", "google-apps" => "5BwzEjgZiu4", "onelogin" => "_Hsot_RG9YY", "miniorange" => "eamf9s6JpbA", "jboss-keycloak" => "Io6x1fTNWHI", "auth0" => "54pz6m5h9mk", "custom-idp" => "gilfhNFYsgc");
}
?>
Did this file decode correctly?
Original Code
<?php
include "BasicEnum.php";
class mo_options_enum_sso_login extends BasicEnum
{
const Relay_state = "\x6d\157\x5f\x73\141\155\x6c\137\x72\145\154\x61\x79\137\x73\164\141\164\145";
const Absolute_relay_state = "\x6d\x6f\137\x73\141\x6d\154\137\163\145\x6e\x64\137\141\142\163\x6f\154\165\x74\145\137\162\x65\154\141\x79\x5f\x73\x74\x61\164\145";
const Logout_Relay_state = "\x6d\157\137\x73\141\x6d\154\x5f\154\157\x67\x6f\x75\164\137\x72\145\x6c\x61\171\x5f\x73\164\141\x74\x65";
const Redirect_Idp = "\155\157\137\x73\x61\155\154\137\162\145\x67\151\x73\164\145\162\145\144\x5f\157\x6e\x6c\171\137\141\143\143\x65\x73\x73";
const Force_authentication = "\x6d\x6f\137\163\x61\155\x6c\137\x66\157\x72\143\x65\x5f\141\x75\164\x68\x65\156\x74\x69\143\141\164\x69\x6f\156";
const Enable_access_RSS = "\x6d\157\x5f\x73\141\155\x6c\x5f\145\156\x61\142\x6c\145\x5f\x72\x73\x73\137\141\x63\x63\x65\x73\163";
const Auto_redirect = "\x6d\x6f\x5f\x73\x61\x6d\154\x5f\145\x6e\141\142\154\x65\137\x6c\157\147\151\156\x5f\x72\x65\x64\151\x72\145\x63\164";
const Allow_wp_signin = "\155\157\137\163\141\x6d\154\137\141\x6c\154\157\167\137\167\160\137\x73\x69\x67\x6e\x69\156";
const Backdoor_URL = "\155\157\x5f\163\x61\155\x6c\137\x62\x61\x63\x6b\144\x6f\157\162\137\x75\x72\154";
const Custom_login_button = "\x6d\157\x5f\163\x61\x6d\154\x5f\x63\x75\163\x74\x6f\x6d\x5f\154\x6f\x67\151\x6e\137\164\145\170\164";
const Custom_greeting_text = "\155\157\137\x73\x61\155\x6c\137\143\x75\x73\164\x6f\155\137\x67\x72\145\x65\x74\151\156\147\137\164\x65\x78\x74";
const Custom_greeting_name = "\155\157\137\x73\141\155\x6c\x5f\147\162\x65\145\x74\151\156\x67\137\156\x61\x6d\145";
const Custom_logout_button = "\x6d\x6f\x5f\163\x61\155\x6c\137\x63\x75\x73\x74\x6f\x6d\x5f\x6c\157\x67\x6f\165\164\x5f\x74\x65\x78\x74";
const Redirect_to_WP_login = "\155\157\x5f\163\141\x6d\154\137\x72\x65\x64\151\x72\145\x63\x74\137\x74\157\137\167\160\x5f\154\157\x67\x69\156";
const Add_SSO_button = "\x6d\x6f\137\163\141\155\154\x5f\x61\x64\x64\137\163\x73\157\137\x62\x75\x74\164\x6f\x6e\137\x77\160";
const Use_Button_as_shortcode = "\x6d\x6f\x5f\x73\x61\x6d\154\137\x75\163\145\x5f\x62\165\164\x74\157\156\x5f\141\163\137\x73\x68\157\162\164\143\x6f\144\x65";
const Use_Button_as_widget = "\155\157\x5f\x73\141\155\x6c\137\165\163\x65\x5f\x62\165\164\164\157\x6e\x5f\x61\x73\x5f\x77\151\144\x67\x65\x74";
const SSO_Button_Size = "\155\x6f\137\163\x61\155\x6c\x5f\142\x75\x74\164\x6f\156\x5f\163\x69\172\x65";
const SSO_Button_Width = "\155\157\137\x73\141\x6d\x6c\x5f\x62\x75\x74\164\157\x6e\137\x77\x69\144\164\150";
const SSO_Button_Height = "\x6d\x6f\x5f\163\141\x6d\154\x5f\x62\x75\164\164\157\156\137\x68\145\151\x67\150\x74";
const SSO_Button_Curve = "\155\157\x5f\163\x61\x6d\x6c\137\x62\x75\164\164\x6f\x6e\137\143\x75\x72\166\x65";
const SSO_Button_Color = "\x6d\x6f\x5f\163\141\x6d\154\137\142\x75\x74\164\157\156\137\x63\x6f\x6c\x6f\x72";
const SSO_Button_Text = "\155\157\137\x73\x61\155\x6c\137\142\165\164\x74\x6f\156\137\x74\145\x78\x74";
const SSO_Button_Theme = "\x6d\157\137\163\x61\155\154\x5f\142\165\164\x74\157\x6e\x5f\x74\150\145\x6d\145";
const SSO_Button_font_color = "\155\x6f\x5f\x73\x61\x6d\x6c\137\x66\x6f\x6e\x74\137\x63\157\154\157\162";
const SSO_Button_font_size = "\x6d\157\x5f\x73\x61\x6d\154\x5f\x66\157\156\164\137\163\151\172\x65";
const SSO_Button_position = "\x73\163\x6f\x5f\x62\x75\164\x74\157\x6e\137\154\157\x67\x69\x6e\x5f\146\157\162\x6d\x5f\x70\157\163\x69\x74\151\157\x6e";
const Keep_Configuration_Intact = "\155\157\137\x73\141\x6d\154\x5f\x6b\145\145\x70\x5f\163\x65\164\x74\151\x6e\x67\x73\x5f\157\156\x5f\x64\145\x6c\x65\x74\x69\157\x6e";
}
class mo_options_enum_identity_provider extends BasicEnum
{
const Broker_service = "\155\x6f\137\x73\x61\155\x6c\x5f\145\x6e\141\x62\x6c\145\137\143\x6c\157\165\x64\137\x62\x72\157\x6b\x65\162";
const SP_Base_Url = "\155\157\x5f\x73\x61\x6d\x6c\137\163\x70\x5f\x62\141\x73\145\137\165\162\x6c";
const SP_Entity_ID = "\155\x6f\x5f\x73\x61\155\x6c\137\x73\160\x5f\145\156\164\151\164\171\137\x69\x64";
}
class mo_options_enum_service_provider extends BasicEnum
{
const Identity_name = "\x73\x61\155\x6c\137\x69\x64\x65\x6e\164\x69\164\x79\x5f\156\141\x6d\145";
const Identity_provider_identifer_name = "\x6d\157\x5f\x73\141\155\x6c\x5f\151\144\x65\156\164\151\x74\x79\x5f\x70\x72\157\166\x69\144\145\x72\137\151\144\x65\x6e\164\x69\146\151\x65\162\x5f\x6e\x61\x6d\145";
const Assertion_signed = "\163\141\155\154\137\x61\163\163\145\x72\164\x69\x6f\156\x5f\x73\x69\x67\x6e\145\x64";
const Login_binding_type = "\163\141\x6d\154\x5f\154\157\147\151\156\137\142\x69\156\x64\x69\156\x67\137\x74\171\160\x65";
const Login_URL = "\163\141\x6d\154\x5f\x6c\157\x67\151\x6e\137\165\x72\154";
const Logout_binding_type = "\163\141\155\x6c\137\154\157\x67\x6f\165\164\137\x62\x69\156\144\151\156\x67\x5f\x74\x79\x70\145";
const Logout_URL = "\163\141\x6d\x6c\137\x6c\157\147\157\165\x74\x5f\165\162\x6c";
const Issuer = "\x73\141\x6d\x6c\x5f\151\163\x73\165\x65\x72";
const X509_certificate = "\x73\x61\155\154\137\x78\65\60\x39\137\143\145\x72\x74\x69\146\151\x63\x61\x74\145";
const Request_signed = "\163\141\x6d\x6c\137\162\x65\161\165\145\163\164\x5f\163\x69\147\156\x65\144";
const NameID_Format = "\163\141\155\x6c\137\x6e\x61\x6d\145\151\x64\137\146\157\x72\x6d\x61\164";
const Guide_name = "\x73\141\x6d\154\x5f\151\x64\145\156\x74\151\x74\x79\137\x70\162\x6f\x76\151\x64\145\x72\x5f\147\x75\x69\x64\x65\x5f\156\141\x6d\145";
const Is_encoding_enabled = "\155\x6f\137\163\x61\155\x6c\x5f\145\x6e\143\157\x64\x69\x6e\147\x5f\x65\x6e\x61\x62\154\x65\x64";
}
class mo_options_enum_test_configuration extends BasicEnum
{
const SAML_REQUEST = "\x6d\157\137\163\x61\x6d\x6c\137\x72\145\161\x75\x65\163\164";
const SAML_RESPONSE = "\155\157\137\x73\x61\155\154\137\x72\145\163\x70\x6f\156\163\145";
const TEST_CONFIG_ERROR_LOG = "\155\x6f\137\163\x61\x6d\x6c\x5f\164\145\163\x74";
const TEST_CONFIG_ATTIBUTES = "\x6d\x6f\x5f\x73\x61\155\x6c\x5f\164\x65\163\164\x5f\143\x6f\x6e\x66\151\x67\137\x61\164\164\162\x73";
}
class mo_options_enum_attribute_mapping extends BasicEnum
{
const Attribute_Username = "\163\x61\155\154\x5f\141\x6d\x5f\165\x73\x65\x72\156\x61\x6d\145";
const Attribute_Email = "\x73\141\x6d\x6c\x5f\141\x6d\x5f\145\x6d\x61\x69\x6c";
const Attribute_First_name = "\163\x61\x6d\154\x5f\x61\x6d\x5f\146\x69\x72\163\164\137\156\141\155\x65";
const Attribute_Last_name = "\163\x61\x6d\154\x5f\141\x6d\137\154\141\x73\x74\x5f\156\x61\x6d\145";
const Attribute_Group_name = "\x73\x61\155\x6c\x5f\141\155\x5f\147\162\157\x75\160\137\x6e\141\x6d\x65";
const Attribute_Custom_mapping = "\155\157\137\x73\141\x6d\154\137\143\165\163\164\x6f\155\x5f\141\164\164\162\x73\137\155\x61\160\160\x69\156\147";
const Attribute_Account_matcher = "\163\x61\155\x6c\x5f\141\155\x5f\141\x63\x63\x6f\165\x6e\x74\137\155\141\164\x63\x68\145\x72";
const Attribute_Display_name = "\x73\141\x6d\x6c\137\141\x6d\137\x64\x69\163\x70\x6c\x61\x79\x5f\x6e\141\155\145";
const Attribute_Show_in_User_Menu = "\x73\141\155\154\x5f\163\150\x6f\167\x5f\165\x73\x65\162\x5f\x61\x74\x74\x72\x69\x62\x75\x74\145";
}
class mo_options_enum_domain_restriction extends BasicEnum
{
const Email_Domains = "\163\141\155\x6c\137\141\x6d\x5f\145\155\141\x69\x6c\x5f\x64\157\155\x61\151\x6e\x73";
const Enable_Domain_Restriction_Login = "\x6d\x6f\137\163\x61\x6d\154\x5f\145\x6e\x61\x62\154\x65\x5f\144\157\155\x61\151\x6e\x5f\162\x65\163\x74\162\x69\x63\164\151\157\156\x5f\154\157\147\x69\x6e";
const Allow_deny_user_with_Domain = "\155\x6f\137\163\x61\x6d\154\x5f\x61\154\x6c\x6f\167\x5f\x64\x65\x6e\x79\x5f\x75\163\x65\x72\x5f\x77\x69\164\150\137\x64\157\x6d\141\x69\156";
}
class mo_options_enum_role_mapping extends BasicEnum
{
const Role_do_not_auto_create_users = "\155\157\x5f\x73\141\155\154\x5f\x64\x6f\156\x74\x5f\x63\162\x65\x61\x74\145\x5f\x75\x73\x65\x72\137\151\146\137\x72\x6f\x6c\x65\x5f\x6e\x6f\164\137\x6d\x61\x70\160\x65\144";
const Role_do_not_assign_role_unlisted = "\163\141\155\154\137\x61\x6d\x5f\144\x6f\156\164\137\141\x6c\154\x6f\167\x5f\165\x6e\x6c\x69\x73\164\145\x64\137\165\163\145\x72\x5f\x72\157\x6c\145";
const Role_do_not_update_existing_user = "\163\141\x6d\154\137\x61\x6d\x5f\144\x6f\x6e\x74\x5f\x75\160\144\141\x74\145\x5f\145\170\151\x73\164\151\156\x67\x5f\165\163\x65\162\137\x72\x6f\x6c\x65";
const Role_update_admin_user_role = "\163\141\x6d\x6c\x5f\141\155\137\165\160\144\141\x74\x65\137\141\x64\155\x69\156\137\165\163\145\162\163\x5f\162\x6f\154\x65";
const Role_default_role = "\163\x61\x6d\x6c\137\x61\x6d\x5f\144\x65\x66\141\165\154\164\x5f\x75\x73\x65\x72\x5f\162\157\x6c\145";
const Role_do_not_login_with_roles = "\163\x61\155\x6c\137\x61\155\137\144\157\x6e\x74\137\141\154\x6c\157\167\137\x75\x73\145\162\x5f\x74\157\x6c\157\x67\x69\156\x5f\143\162\145\141\164\x65\x5f\x77\x69\164\x68\137\x67\151\166\x65\156\x5f\147\x72\x6f\165\160\x73";
const Role_restrict_users_with_groups = "\155\x6f\x5f\163\x61\155\154\137\x72\145\163\x74\x72\151\x63\164\x5f\165\x73\145\x72\163\137\167\151\x74\150\x5f\x67\x72\x6f\165\160\163";
const Role_mapping = "\163\x61\x6d\154\x5f\141\x6d\137\x72\157\154\145\x5f\x6d\141\x70\x70\x69\x6e\x67";
}
class mo_options_enum_custom_certificate extends BasicEnum
{
const Custom_Public_Certificate = "\155\x6f\137\163\x61\x6d\x6c\x5f\143\165\163\164\157\155\x5f\x63\x65\x72\x74";
const Custom_Private_Certificate = "\155\x6f\x5f\x73\x61\x6d\x6c\x5f\x63\165\x73\164\157\155\x5f\x63\x65\162\x74\137\x70\x72\x69\166\x61\164\145\137\153\x65\171";
const Enable_Public_certificate = "\155\x6f\x5f\x73\141\x6d\x6c\137\x65\x6e\x61\x62\x6c\145\x5f\x63\x75\163\x74\x6f\x6d\x5f\143\145\162\x74\151\x66\151\143\141\164\145";
}
class mo_options_enum_custom_messages extends BasicEnum
{
const Custom_Account_Creation_Disabled_message = "\x6d\157\137\x73\x61\x6d\154\x5f\x61\143\143\x6f\x75\x6e\x74\137\x63\x72\x65\x61\164\151\x6f\156\x5f\144\151\x73\x61\x62\x6c\145\x64\x5f\x6d\x73\147";
const Custom_Restricted_Domain_message = "\x6d\157\x5f\x73\x61\x6d\x6c\137\x72\x65\x73\x74\x72\x69\x63\x74\x65\x64\137\144\x6f\155\x61\x69\156\x5f\145\x72\162\157\162\x5f\155\x73\147";
}
class mo_options_error_constants extends BasicEnum
{
const Error_no_certificate = "\125\156\x61\142\154\145\40\x74\157\x20\x66\151\x6e\144\x20\x61\40\143\145\162\164\151\x66\x69\x63\141\164\145\x20\x2e";
const Cause_no_certificate = "\116\157\40\163\x69\147\x6e\141\164\x75\162\x65\40\x66\x6f\165\x6e\x64\40\x69\156\40\x53\x41\x4d\114\x20\122\x65\163\160\157\x6e\x73\145\40\x6f\162\40\101\x73\x73\145\x72\164\x69\157\156\x2e\x20\120\x6c\145\x61\x73\x65\40\x73\x69\147\x6e\x20\x61\x74\40\x6c\145\x61\163\x74\x20\x6f\156\x65\40\x6f\x66\40\x74\150\x65\x6d\x2e";
const Error_wrong_certificate = "\125\156\x61\142\x6c\x65\40\x74\157\40\146\151\x6e\144\40\141\x20\143\145\x72\x74\x69\146\151\143\x61\x74\145\40\x6d\141\x74\143\150\x69\x6e\x67\x20\164\x68\x65\40\x63\157\156\146\x69\x67\165\162\x65\144\40\146\x69\x6e\147\x65\162\160\162\x69\156\x74\x2e";
const Cause_wrong_certificate = "\x58\56\x35\x30\x39\40\x43\x65\162\x74\x69\146\x69\x63\141\164\145\40\x66\x69\x65\x6c\x64\40\x69\x6e\x20\160\154\x75\x67\x69\x6e\x20\x64\157\145\x73\x20\156\157\x74\x20\155\141\x74\x63\150\40\164\x68\x65\40\x63\x65\x72\164\151\146\x69\143\x61\164\145\x20\146\x6f\165\x6e\x64\x20\x69\x6e\40\123\x41\115\114\40\x52\145\x73\x70\x6f\156\163\145\x2e";
const Error_invalid_audience = "\x49\156\166\x61\154\151\x64\x20\101\165\144\151\145\x6e\x63\x65\40\x55\122\x49\56";
const Cause_invalid_audience = "\124\150\145\40\x76\141\154\165\x65\x20\157\x66\x20\x27\101\x75\x64\151\145\x6e\143\145\x20\x55\x52\111\x27\40\146\x69\145\x6c\144\40\x6f\x6e\x20\111\x64\x65\x6e\x74\x69\164\x79\40\x50\162\157\166\x69\x64\x65\162\47\x73\40\x73\151\144\x65\40\x69\x73\x20\151\156\143\x6f\x72\162\x65\143\164";
const Error_issuer_not_verfied = "\111\x73\163\x75\x65\162\40\143\x61\156\156\x6f\164\x20\142\145\x20\x76\x65\162\x69\x66\x69\x65\144\x2e";
const Cause_issuer_not_verfied = "\x49\x64\x50\x20\x45\x6e\164\151\164\171\x20\111\x44\40\x63\x6f\156\x66\151\147\165\x72\x65\144\40\x61\x6e\144\x20\x74\150\x65\x20\x6f\x6e\x65\x20\x66\x6f\165\156\144\40\x69\156\x20\123\101\115\114\x20\122\x65\163\x70\157\156\163\145\x20\144\x6f\40\x6e\157\x74\40\155\141\164\x63\x68";
}
class mo_options_enum_nameid_formats extends BasicEnum
{
const EMAIL = "\165\x72\156\72\157\x61\163\151\x73\x3a\x6e\141\x6d\x65\x73\x3a\164\x63\x3a\x53\101\115\x4c\72\61\56\61\x3a\x6e\141\155\x65\151\144\55\x66\x6f\162\x6d\x61\164\x3a\145\155\x61\x69\x6c\x41\x64\x64\162\145\163\x73";
const UNSPECIFIED = "\165\162\156\x3a\157\x61\x73\151\163\x3a\156\x61\155\x65\163\72\x74\143\72\x53\101\115\x4c\72\61\x2e\61\72\156\141\x6d\145\151\x64\x2d\146\157\x72\x6d\x61\164\72\x75\x6e\163\160\x65\143\151\146\151\x65\x64";
const TRANSIENT = "\x75\162\156\72\x6f\141\163\151\x73\72\x6e\141\155\x65\163\72\x74\x63\72\123\x41\115\x4c\x3a\62\x2e\60\x3a\156\141\x6d\x65\151\x64\x2d\x66\157\162\155\x61\x74\72\164\162\141\x6e\163\151\145\156\x74";
const PERSISTENT = "\x75\162\156\72\157\141\x73\151\x73\x3a\x6e\141\155\145\163\72\x74\x63\72\x53\101\115\x4c\72\x32\x2e\x30\x3a\x6e\x61\x6d\x65\151\x64\x2d\x66\157\x72\155\141\164\x3a\160\145\162\x73\151\163\x74\145\156\164";
}
class mo_options_plugin_constants extends BasicEnum
{
const CMS_Name = "\x57\x50";
const Application_Name = "\127\120\40\x6d\x69\156\x69\x4f\162\141\x6e\x67\x65\40\123\x41\x4d\x4c\40\62\56\x30\40\123\x53\x4f\40\x50\154\x75\147\151\156";
const Application_type = "\x53\x41\115\114";
const Version = "\61\62\x2e\61\56\x34";
const HOSTNAME = "\150\164\164\160\163\72\x2f\x2f\154\x6f\x67\x69\x6e\x2e\170\145\143\165\162\x69\x66\171\x2e\143\157\155";
const LICENSE_TYPE = "\127\x50\137\123\101\115\114\x5f\x53\x50\x5f\x50\114\125\x47\111\116";
const LICENSE_PLAN_NAME = "\167\160\137\x73\141\155\154\137\x73\x73\157\x5f\142\x61\163\151\x63\137\160\154\x61\x6e";
const PLUGIN_CONFIG_FILENAME = "\x6d\x6f\x5f\x73\x61\155\x6c\137\x63\157\156\146\x69\x67\x2e\x70\150\x70";
}
class mo_options_plugin_idp extends BasicEnum
{
public static $IDP_GUIDES = array("\x41\104\x46\123" => "\x61\144\x66\163", "\x41\172\165\x72\x65\x20\101\x44" => "\141\172\165\x72\145\x2d\x61\144", "\x41\x7a\165\162\x65\x20\x42\62\103" => "\141\x7a\165\162\145\55\142\62\x63", "\117\153\x74\x61" => "\157\153\164\141", "\123\141\154\x65\163\x46\x6f\162\x63\145" => "\163\x61\154\x65\x73\x66\157\162\143\145", "\x47\x6f\157\147\154\x65\x20\x41\160\160\x73" => "\x67\x6f\x6f\147\154\x65\55\x61\160\x70\163", "\x4f\156\145\x4c\x6f\x67\x69\156" => "\157\x6e\x65\x6c\157\147\151\x6e", "\x4b\x65\171\x63\154\x6f\x61\x6b" => "\x6a\x62\x6f\x73\163\55\153\145\x79\x63\154\157\x61\x6b", "\x4d\x69\156\151\x4f\162\x61\156\x67\145" => "\155\151\156\151\x6f\x72\x61\156\147\145", "\120\x69\x6e\x67\106\x65\x64\x65\162\141\x74\145" => "\160\151\x6e\147\146\145\x64\x65\162\141\164\x65", "\x50\x69\156\147\117\x6e\x65" => "\x70\x69\x6e\147\x6f\x6e\145", "\103\x65\x6e\164\162\x69\146\171" => "\x63\x65\x6e\x74\162\151\x66\171", "\x4f\x72\141\x63\154\145" => "\x6f\162\141\143\x6c\145\55\x65\156\164\x65\162\160\162\151\x73\145\55\155\x61\156\141\x67\x65\162", "\x42\x69\x74\151\x75\x6d" => "\142\x69\x74\151\165\155", "\x53\150\151\142\x62\157\x6c\x65\164\150\x20\62" => "\x73\150\151\x62\x62\157\x6c\x65\x74\150\x32", "\x53\x68\151\x62\142\157\154\x65\x74\150\40\x33" => "\163\x68\x69\142\x62\x6f\154\145\x74\150\63", "\x53\x69\x6d\160\x6c\x65\123\x41\x4d\114\x70\150\160" => "\x73\x69\x6d\160\x6c\145\x73\x61\x6d\x6c", "\x4f\x70\x65\x6e\101\115" => "\x6f\160\x65\156\x61\x6d", "\x41\165\164\x68\x61\x6e\166\151\x6c" => "\x61\x75\x74\x68\141\x6e\166\x69\x6c", "\101\165\x74\x68\60" => "\141\165\x74\150\60", "\x43\x41\x20\x49\x64\145\x6e\x74\x69\x74\171" => "\143\141\x2d\151\x64\x65\156\164\x69\x74\171", "\127\123\x4f\x32" => "\x77\163\157\62", "\x52\123\101\40\123\x65\x63\x75\162\145\x49\104" => "\162\x73\x61\55\163\145\143\x75\162\x65\x69\x64", "\117\164\150\x65\x72" => "\117\164\x68\145\162");
}
class mo_options_environments extends BasicEnum
{
const Environment_Objects = "\x6d\x6f\137\x73\141\155\x6c\x5f\145\x6e\x76\151\162\157\156\155\x65\156\x74\137\157\142\152\145\143\x74\x73";
const Selected_Environments = "\155\157\x5f\163\x61\155\x6c\137\163\x65\154\x65\143\164\x65\144\x5f\145\156\x76\x69\x72\x6f\x6e\155\x65\x6e\x74";
const Environment_Objects_old = "\x65\x6e\166\151\162\157\x6e\x6d\x65\x6e\164\x5f\157\x62\152\x65\143\164\x73";
const Multiple_Licenses = "\155\157\x5f\x65\x6e\x61\x62\154\145\137\155\x75\x6c\164\151\x70\154\x65\137\x6c\x69\x63\x65\x6e\163\145\163";
}
class mo_options_plugin_admin extends BasicEnum
{
const HOST_NAME = "\155\157\x5f\x73\141\x6d\x6c\x5f\150\x6f\x73\164\137\156\141\155\145";
const New_Registration = "\x6d\x6f\x5f\163\x61\155\154\137\156\x65\x77\137\x72\x65\x67\151\x73\164\x72\141\x74\x69\157\x6e";
const Admin_Phone = "\155\157\x5f\163\141\x6d\x6c\x5f\141\x64\x6d\x69\156\x5f\160\x68\x6f\156\145";
const Admin_Email = "\155\x6f\137\x73\x61\x6d\154\137\141\144\x6d\x69\x6e\137\x65\155\x61\151\154";
const Admin_Pass = "\155\157\137\163\x61\155\154\137\141\144\x6d\x69\x6e\137\160\x61\163\163\167\x6f\x72\144";
const Verify_Customer = "\155\x6f\137\x73\x61\155\154\137\x76\145\162\x69\x66\171\x5f\143\165\163\164\157\x6d\x65\x72";
const Admin_Customer_Key = "\x6d\157\137\163\x61\x6d\x6c\137\141\x64\155\151\156\x5f\x63\x75\163\x74\157\x6d\145\162\137\153\x65\171";
const Admin_Api_Key = "\155\x6f\x5f\x73\141\x6d\154\137\x61\x64\x6d\x69\156\137\141\160\151\x5f\153\x65\x79";
const Customer_Token = "\155\157\x5f\x73\x61\x6d\154\x5f\143\165\x73\x74\157\155\x65\x72\x5f\x74\x6f\153\x65\156";
const Admin_notices_Message = "\155\x6f\137\163\x61\x6d\x6c\x5f\155\x65\163\x73\x61\147\x65";
const Registration_Status = "\x6d\157\137\x73\141\x6d\x6c\137\x72\x65\x67\151\x73\164\x72\141\x74\151\x6f\x6e\137\x73\164\141\164\165\163";
const IDP_Config_ID = "\163\141\155\154\x5f\x69\x64\160\x5f\x63\x6f\x6e\146\151\x67\137\x69\x64";
const IDP_Config_Complete = "\155\x6f\x5f\163\x61\155\x6c\137\x69\x64\x70\x5f\x63\157\x6e\146\x69\x67\137\143\x6f\155\160\154\145\164\x65";
const Transaction_ID = "\155\x6f\137\x73\x61\x6d\x6c\137\164\162\x61\x6e\x73\x61\x63\x74\x69\x6f\x6e\x49\144";
const SML_LK = "\163\155\154\137\154\x6b";
const Site_Status = "\x74\137\x73\151\x74\145\x5f\163\164\141\x74\165\163";
const Site_Check = "\163\x69\164\x65\137\x63\x6b\137\154";
const Free_Version = "\x6d\x6f\x5f\x73\x61\x6d\154\x5f\146\x72\x65\x65\137\x76\145\x72\163\151\x6f\156";
const Admin_company = "\155\157\137\x73\x61\155\154\137\141\x64\155\x69\156\x5f\143\x6f\x6d\160\x61\x6e\x79";
const Admin_First_Name = "\x6d\x6f\x5f\x73\141\x6d\x6c\137\141\144\x6d\151\x6e\x5f\146\151\x72\x73\164\137\156\141\x6d\145";
const Admin_Last_Name = "\x6d\157\x5f\x73\141\x6d\154\x5f\x61\x64\155\151\x6e\x5f\x6c\x61\163\x74\x5f\x6e\141\155\145";
const License_Name = "\155\x6f\137\x73\141\155\154\137\x6c\151\x63\x65\x6e\163\x65\x5f\x6e\x61\x6d\x65";
const User_Limit = "\x6d\157\x5f\163\x61\155\154\x5f\x75\x73\x72\137\154\155\164";
}
class mo_saml_cli_error extends BasicEnum
{
const Poor_Internet = "\125\156\x61\142\154\145\40\x74\157\40\x63\x6f\156\x6e\145\143\x74\x20\164\157\40\x74\x68\145\40\151\x6e\x74\145\162\x6e\x65\164\56\40\120\154\145\141\163\145\x20\164\x72\x79\x20\143\157\x6e\156\145\x63\164\x69\x6e\147\40\141\x67\x61\151\x6e\56";
const Code_Expired = "\x4c\x69\143\x65\156\x73\145\40\153\145\171\x20\171\x6f\x75\40\150\141\x76\145\x20\x65\156\164\145\x72\145\x64\40\150\x61\163\x20\141\x6c\162\x65\141\144\x79\x20\142\x65\145\x6e\40\x75\x73\x65\144\56\40\120\154\x65\x61\163\145\40\145\156\x74\x65\x72\x20\141\40\x6b\145\x79\x20\167\150\151\143\x68\x20\150\141\163\40\x6e\x6f\164\40\x62\x65\145\x6e\x20\165\x73\x65\x64\x20\142\x65\x66\157\162\x65\40\x6f\x6e\x20\141\x6e\171\40\x6f\x74\x68\x65\x72\40\x69\156\163\x74\141\156\x63\x65\x20\157\162\40\151\146\40\171\157\x75\x20\x68\x61\166\x65\40\145\x78\150\x61\165\163\164\x65\x64\x20\x61\x6c\154\40\x79\157\x75\x72\40\153\145\x79\163";
const Invalid_License = "\131\x6f\x75\40\150\x61\x76\145\x20\145\x6e\x74\x65\162\145\x64\x20\x61\x6e\x20\x69\156\166\x61\x6c\x69\144\x20\x6c\151\143\x65\156\x73\x65\x20\153\145\x79\56\40\120\x6c\x65\141\163\x65\x20\145\x6e\164\x65\x72\40\x61\x20\166\141\x6c\x69\144\40\154\151\x63\145\156\163\145\40\153\145\171\56";
const Not_Upgraded = "\x59\x6f\x75\x20\x68\x61\166\145\40\156\x6f\164\x20\165\160\x67\162\141\x64\145\x64\40\171\145\x74\56\x50\x6c\x65\141\163\145\x20\165\160\x67\x72\x61\x64\145\x20\x74\157\40\164\150\145\40\x70\162\145\155\151\165\155\x20\166\x65\162\x73\151\157\x6e\56";
const Curl_Error = "\x6d\151\156\151\117\x72\141\x6e\x67\145\x20\123\101\x4d\114\x20\x32\56\x30\x20\123\123\117\x20\120\x6c\165\x67\x69\x6e\40\x2d\x20\x45\x52\x52\117\122\x3a\40\120\x48\x50\40\143\125\122\114\x20\145\170\x74\145\156\x73\x69\x6f\156\x20\x69\x73\40\156\157\164\x20\x69\156\163\164\x61\x6c\154\x65\x64\40\x6f\162\x20\144\151\x73\x61\142\154\x65\144\56\x20\122\145\147\x69\163\x74\162\141\x74\151\x6f\x6e\40\x66\141\x69\154\x65\144\56";
const Customer_Not_Found = "\x54\x68\x65\162\x65\x20\167\141\x73\x20\x61\156\x20\x65\x72\x72\x6f\162\x20\160\x72\157\x63\x65\163\163\151\x6e\x67\40\171\157\165\x72\x20\x72\145\x71\x75\145\x73\164\56\40\x52\x65\x67\151\x73\164\145\x72\x65\x64\40\143\x75\x73\x74\157\x6d\x65\162\x20\156\x6f\x74\x20\x66\x6f\x75\x6e\144\40\151\156\40\157\x75\162\40\163\x79\x73\x74\145\155\56";
const File_Empty = "\x45\x72\x72\x6f\162\40\x77\150\x69\154\145\x20\146\145\164\x63\150\151\x6e\x67\x20\164\150\145\x20\143\x6f\x6e\x74\145\156\164\163\56\x20\x50\154\x65\x61\x73\145\x20\x63\x68\145\x63\x6b\40\x79\x6f\165\162\x20\x6c\151\x63\145\x6e\163\x65\x20\146\151\154\x65\40\x6f\x6e\143\145\56";
const Invalid_JSON = "\x45\x72\x72\x6f\x72\x20\167\x68\x69\154\x65\40\x72\x65\164\x72\151\x65\166\x69\x6e\x67\40\164\150\x65\40\144\x65\164\141\x69\154\x73\56\x20\111\x6e\x76\141\x6c\151\x64\x20\x4a\123\117\x4e\40\x66\157\x75\x6e\x64\56";
const File_Not_Found = "\105\x72\x72\x6f\x72\x20\x77\150\151\154\x65\x20\162\x65\164\162\x69\x65\166\151\156\147\x20\x74\150\x65\40\144\x65\x74\x61\x69\154\x73\x2e\x20\123\x70\145\143\151\x66\x69\x65\144\x20\146\151\154\145\x20\x6e\x6f\164\40\146\x6f\x75\156\x64\40\x69\x6e\40\164\x68\x65\40\x70\154\165\x67\x69\x6e\x20\x64\151\x72\145\x63\164\x6f\162\x79\x2e";
const Incorrect_File_Format = "\x45\x72\162\x6f\162\40\x77\150\x69\x6c\x65\x20\162\x65\164\x72\151\145\x76\x69\156\x67\x20\x74\150\145\x20\x64\145\164\x61\x69\154\x73\x2e\40\120\154\x65\141\163\145\x20\165\x70\154\x6f\x61\144\40\x61\40\x76\x61\x6c\151\144\x20\x63\x6f\156\x66\151\147\165\162\141\164\x69\x6f\x6e\40\x66\151\x6c\145\40\151\156\x20\x2e\152\163\157\x6e\x20\x66\157\162\x6d\141\x74\x2e";
}
class mo_saml_options_addons extends BasicEnum
{
public static $ADDON_URL = array("\x73\x63\151\155" => "\x68\164\164\160\x73\72\57\x2f\x70\154\x75\147\x69\156\163\56\155\x69\x6e\151\157\x72\141\156\147\145\56\143\x6f\155\57\167\157\162\x64\x70\x72\x65\163\163\55\x75\x73\x65\162\x2d\x70\x72\x6f\x76\151\163\x69\x6f\x6e\151\x6e\x67", "\x70\x61\x67\x65\x5f\x72\145\x73\164\x72\x69\143\164\x69\x6f\x6e" => "\150\164\x74\160\x73\72\x2f\x2f\160\x6c\x75\x67\151\x6e\163\56\x6d\x69\156\151\x6f\x72\x61\156\147\x65\56\x63\157\155\57\167\157\162\x64\160\x72\x65\x73\x73\x2d\x70\x61\x67\145\55\162\145\163\164\x72\x69\143\164\151\x6f\156", "\x66\151\x6c\x65\x5f\x70\x72\x65\x76\x65\156\164\151\x6f\156" => "\150\x74\164\160\163\x3a\57\x2f\160\x6c\x75\x67\151\x6e\x73\x2e\x6d\151\156\151\157\162\141\x6e\147\x65\x2e\143\x6f\x6d\x2f\167\157\x72\x64\x70\x72\145\163\x73\55\155\145\x64\x69\x61\x2d\162\145\x73\x74\162\151\143\164\x69\x6f\x6e", "\163\163\x6f\154\157\x67\151\x6e" => "\x68\x74\x74\160\x73\72\57\x2f\160\154\165\147\151\156\x73\x2e\155\x69\x6e\151\157\x72\141\x6e\x67\145\56\x63\x6f\155\57\x77\157\162\144\x70\162\145\163\163\55\163\163\x6f\55\x6c\157\147\151\156\55\x61\x75\x64\151\x74", "\142\x75\144\x64\x79\x70\162\x65\x73\163" => "\150\x74\164\x70\163\x3a\57\x2f\160\154\165\x67\x69\x6e\x73\56\x6d\151\156\151\x6f\162\x61\156\147\145\56\x63\x6f\x6d\57\x77\157\162\144\160\162\x65\163\x73\x2d\x62\165\x64\144\x79\x70\x72\145\x73\x73\x2d\x69\156\164\145\147\162\x61\x74\157\x72", "\154\x65\x61\162\156\144\x61\x73\x68" => "\x68\164\164\160\163\72\57\57\160\x6c\165\x67\151\x6e\163\x2e\x6d\x69\156\151\x6f\x72\x61\x6e\147\x65\x2e\x63\157\x6d\57\167\157\162\144\x70\x72\145\163\x73\x2d\154\145\x61\x72\x6e\x64\141\163\x68\x2d\x69\156\x74\145\147\162\141\164\x6f\x72", "\x61\x74\164\162\151\x62\x75\164\x65\x5f\142\x61\163\x65\144\137\162\145\144\x69\x72\145\143\x74\151\157\x6e" => "\x68\164\164\160\163\x3a\x2f\57\160\154\x75\x67\151\x6e\163\x2e\x6d\x69\156\151\157\x72\x61\156\147\x65\x2e\143\x6f\x6d\57\x77\x6f\162\144\160\162\145\x73\163\55\x61\164\164\x72\x69\142\165\164\x65\x2d\142\141\163\145\144\x2d\x72\x65\x64\x69\162\x65\x63\x74\151\157\156\55\x72\x65\163\x74\x72\x69\143\x74\x69\157\156", "\x73\163\x6f\x73\x65\163\163\151\x6f\156" => "\150\164\x74\160\163\72\57\x2f\x70\154\165\x67\x69\156\163\56\x6d\151\156\151\x6f\162\x61\x6e\x67\x65\x2e\143\x6f\155\57\x73\x73\x6f\55\163\x65\x73\x73\x69\157\x6e\55\x6d\x61\x6e\x61\x67\145\155\x65\156\164", "\x66\x73\163\157" => "\x68\x74\x74\160\163\72\57\x2f\160\x6c\x75\x67\x69\156\163\56\155\151\156\151\x6f\x72\141\156\147\145\x2e\143\x6f\155\57\151\156\x63\157\x6d\x6d\157\x6e\55\146\x65\144\145\x72\141\x74\151\x6f\156\x2d\163\151\156\147\154\145\55\163\x69\x67\x6e\x2d\157\x6e\55\163\x73\x6f", "\160\141\151\144\137\x6d\x65\x6d\x5f\x70\162\x6f" => "\150\164\164\x70\163\72\57\x2f\x70\154\x75\147\x69\156\163\x2e\x6d\x69\156\151\x6f\x72\141\x6e\147\145\56\143\x6f\155\x2f\x70\x61\151\x64\55\155\145\x6d\142\x65\x72\x73\x68\151\160\55\160\162\157\x2d\151\x6e\164\x65\x67\162\141\164\x6f\162", "\x6d\x65\x6d\x62\x65\x72\x70\162\145\x73\x73" => "\x68\164\x74\160\163\72\x2f\x2f\x70\154\165\147\x69\x6e\163\x2e\x6d\x69\x6e\x69\157\x72\141\156\147\145\56\x63\157\x6d\57\167\x6f\162\144\x70\162\145\x73\x73\55\x6d\x65\155\142\x65\162\160\162\145\163\163\55\151\156\164\x65\147\162\141\164\x6f\x72", "\167\x70\137\x6d\145\155\142\x65\x72\163" => "\150\x74\164\x70\163\x3a\x2f\x2f\x70\154\x75\147\151\156\x73\x2e\x6d\x69\156\x69\157\162\x61\x6e\x67\x65\x2e\143\157\155\x2f\x77\x6f\162\144\x70\x72\x65\x73\163\x2d\x6d\x65\x6d\142\x65\x72\163\55\x69\156\164\x65\147\x72\141\x74\x6f\162", "\x77\157\x6f\x63\157\x6d\155\145\x72\143\x65" => "\150\x74\x74\x70\x73\x3a\x2f\57\160\x6c\165\x67\x69\x6e\163\x2e\155\151\x6e\x69\x6f\x72\141\x6e\147\x65\x2e\x63\157\155\x2f\x77\157\162\144\160\x72\x65\163\163\x2d\167\157\157\143\x6f\x6d\x6d\x65\x72\x63\x65\55\151\x6e\x74\x65\x67\x72\141\x74\157\x72", "\147\165\145\x73\164\137\154\x6f\x67\x69\156" => "\x68\164\x74\x70\163\x3a\57\57\x70\154\165\147\x69\x6e\x73\56\155\151\156\151\x6f\162\x61\x6e\147\x65\x2e\143\157\155\57\147\x75\x65\163\x74\55\x75\163\x65\162\55\154\157\147\151\x6e", "\x70\162\x6f\x66\x69\x6c\145\x5f\x70\151\143\x74\x75\x72\145\137\x61\144\144\x5f\157\156" => "\150\x74\164\160\x73\x3a\57\x2f\x70\x6c\x75\147\x69\156\x73\56\x6d\x69\x6e\151\157\x72\141\x6e\x67\x65\x2e\x63\x6f\x6d\57\x77\x6f\162\x64\x70\162\145\x73\163\x2d\160\162\x6f\146\151\x6c\x65\x2d\160\151\143\164\165\x72\145\55\155\x61\x70");
public static $WP_ADDON_URL = array("\x70\x61\x67\x65\x2d\x72\145\x73\x74\162\x69\143\164\x69\157\x6e" => "\x68\x74\164\160\163\72\x2f\x2f\167\157\x72\x64\160\162\145\x73\x73\x2e\x6f\162\147\x2f\x70\154\165\x67\151\x6e\x73\x2f\x70\x61\147\x65\55\x61\x6e\x64\x2d\160\157\163\x74\x2d\x72\x65\x73\x74\x72\x69\143\x74\151\157\x6e\x2f\145\155\x62\145\144\x2f", "\x73\x63\151\155\x2d\165\x73\145\162\x2d\163\x79\x6e\143" => "\150\164\x74\160\x73\x3a\x2f\57\167\157\x72\144\x70\162\145\x73\163\x2e\157\162\147\57\x70\x6c\165\147\x69\x6e\163\57\163\143\x69\155\x2d\x75\x73\145\x72\x2d\x70\162\x6f\x76\151\x73\x69\x6f\156\x69\156\x67\57\145\155\x62\145\144\x2f");
public static $ADDON_TITLE = array("\163\x63\151\155" => "\x53\103\x49\115\x20\125\x73\145\x72\40\x50\162\x6f\x76\x69\x73\x69\x6f\156\x69\x6e\147", "\x70\141\147\x65\137\x72\x65\x73\164\x72\151\143\x74\151\157\x6e" => "\x50\x61\x67\x65\40\x61\156\144\40\120\x6f\x73\164\x20\122\145\x73\164\x72\151\x63\x74\151\157\156", "\146\151\x6c\x65\x5f\160\162\x65\x76\145\x6e\164\x69\x6f\x6e" => "\120\162\x65\166\x65\156\x74\40\x46\151\x6c\145\40\x41\143\x63\x65\163\163", "\x73\163\157\154\157\147\x69\156" => "\123\x53\117\40\x4c\x6f\x67\151\156\40\x41\x75\144\151\164", "\x62\165\x64\x64\x79\160\x72\x65\163\x73" => "\102\x75\144\144\171\x50\162\145\163\x73\40\x49\x6e\164\145\147\162\141\164\x6f\162", "\154\145\141\x72\x6e\144\x61\163\x68" => "\114\145\x61\162\156\144\141\x73\150\x20\x49\156\x74\145\147\x72\x61\164\157\x72", "\141\x74\x74\162\151\142\x75\164\145\137\x62\141\x73\x65\x64\x5f\x72\x65\x64\x69\x72\145\143\164\x69\157\x6e" => "\101\164\x74\162\x69\142\x75\x74\x65\40\102\141\163\145\x64\x20\122\145\144\x69\162\145\143\164\x69\x6f\x6e", "\163\163\x6f\x73\x65\x73\x73\x69\157\x6e" => "\x53\x53\x4f\40\x53\145\163\x73\151\x6f\156\40\115\x61\156\x61\x67\145\155\x65\156\x74", "\x66\x73\163\157" => "\x46\x65\x64\145\162\x61\x74\151\157\156\x20\x53\x69\156\147\154\x65\x20\123\x69\x67\156\55\x4f\156", "\x6d\x65\155\142\x65\x72\x70\x72\x65\163\163" => "\x4d\x65\x6d\x62\145\x72\120\162\145\x73\163\40\111\156\x74\145\x67\162\x61\x74\x6f\162", "\167\160\x5f\155\145\155\x62\145\x72\163" => "\x57\120\x2d\115\x65\x6d\x62\145\x72\x73\40\111\x6e\164\x65\147\162\x61\x74\157\x72", "\167\x6f\x6f\x63\157\x6d\x6d\145\x72\x63\x65" => "\127\157\x6f\103\x6f\155\x6d\x65\162\x63\145\40\x49\156\x74\x65\147\x72\x61\x74\x6f\x72", "\x67\165\145\163\x74\x5f\x6c\x6f\x67\x69\x6e" => "\107\165\145\163\x74\40\x4c\x6f\147\151\156", "\160\x72\157\146\x69\154\145\x5f\160\151\x63\x74\165\162\145\137\141\x64\x64\137\157\x6e" => "\x50\162\157\x66\x69\154\x65\40\x50\151\143\164\x75\162\x65\40\101\x64\144\55\157\156", "\160\x61\x69\144\137\x6d\145\x6d\x5f\160\x72\x6f" => "\120\141\x69\x64\x4d\x65\x6d\142\145\162\163\x68\x69\160\40\120\162\x6f\x20\111\x6e\x74\x65\147\x72\141\x74\157\162");
public static $RECOMMENDED_ADDONS_PATH = array("\x6c\x65\x61\x72\x6e\144\x61\x73\150" => "\x73\146\x77\144\x2d\154\x6d\163\x2f\x73\x66\167\144\137\x6c\x6d\163\x2e\x70\150\x70", "\142\165\x64\x64\x79\160\162\145\x73\x73" => "\x62\x75\x64\144\171\x70\x72\145\x73\163\57\x62\160\x2d\x6c\157\141\144\x65\162\x2e\x70\x68\160", "\x70\x61\151\144\x5f\155\x65\155\x5f\x70\x72\157" => "\x70\141\151\144\55\x6d\x65\x6d\x62\x65\x72\x73\150\151\160\x73\x2d\160\x72\157\57\160\141\151\x64\x2d\155\145\x6d\x62\145\x72\x73\150\x69\x70\x73\55\x70\162\x6f\x2e\x70\150\x70", "\155\x65\x6d\142\x65\162\x70\162\145\x73\163" => "\155\145\155\x62\145\162\160\162\145\x73\x73\57\x6d\145\155\x62\x65\x72\x70\162\145\163\163\x2e\x70\x68\160", "\x77\160\137\155\x65\x6d\x62\x65\162\163" => "\167\160\x2d\x6d\x65\x6d\x62\145\x72\163\57\167\x70\55\155\x65\x6d\x62\145\x72\x73\56\160\150\160", "\x77\x6f\157\143\x6f\x6d\155\145\x72\143\145" => "\167\x6f\x6f\x63\157\155\x6d\x65\x72\x63\145\x2f\x77\157\157\143\x6f\x6d\x6d\x65\x72\143\x65\56\x70\150\160");
}
class mo_saml_options_plugin_idp extends BasicEnum
{
public static $IDP_GUIDES = array("\x41\x44\x46\x53" => array("\x61\144\x66\x73", "\163\141\155\154\55\x73\x69\156\x67\x6c\x65\x2d\163\x69\x67\x6e\x2d\157\156\55\163\x73\x6f\55\x77\157\x72\144\x70\162\145\163\163\55\165\x73\151\x6e\147\x2d\141\x64\x66\163"), "\101\172\165\x72\x65\40\101\x44" => array("\x61\x7a\165\162\145\55\141\144", "\x73\x61\x6d\154\55\163\x69\156\x67\x6c\x65\x2d\x73\x69\x67\x6e\x2d\x6f\156\55\x73\x73\157\55\x77\x6f\162\144\160\162\x65\163\163\x2d\165\163\x69\x6e\147\55\141\172\x75\162\x65\55\x61\x64"), "\101\172\165\162\145\x20\102\62\103" => array("\141\x7a\x75\x72\145\x2d\142\62\143", "\x73\141\155\x6c\55\x73\x69\x6e\147\154\x65\x2d\163\x69\147\156\x2d\157\x6e\x2d\163\x73\157\x2d\x77\x6f\162\x64\160\x72\x65\x73\163\x2d\x75\x73\151\156\x67\x2d\x61\172\x75\162\x65\55\x62\x32\143"), "\117\x6b\164\x61" => array("\157\x6b\x74\141", "\x73\141\155\154\x2d\163\x69\x6e\147\154\x65\x2d\163\151\x67\x6e\x2d\x6f\x6e\55\x73\x73\157\x2d\167\157\x72\144\x70\x72\145\x73\163\x2d\x75\163\x69\x6e\147\55\157\153\164\141"), "\x4b\x65\x79\x63\x6c\157\141\153" => array("\x6a\142\x6f\x73\163\x2d\153\145\x79\143\x6c\x6f\x61\x6b", "\163\141\x6d\154\55\x73\x69\x6e\x67\x6c\145\55\x73\x69\x67\156\55\x6f\156\55\x73\163\157\55\x77\157\x72\x64\x70\162\x65\x73\x73\x2d\165\x73\x69\x6e\147\x2d\x6a\x62\157\x73\163\x2d\x6b\x65\x79\x63\154\157\141\x6b"), "\x47\157\157\x67\x6c\145\x20\101\160\160\163" => array("\147\157\157\147\x6c\145\55\141\160\160\163", "\x73\x61\x6d\x6c\55\163\x69\156\x67\154\145\x2d\x73\151\147\x6e\x2d\x6f\156\55\163\x73\x6f\55\167\x6f\x72\144\x70\162\x65\163\163\x2d\x75\163\151\x6e\x67\55\147\157\x6f\147\x6c\145\x2d\141\x70\x70\x73"), "\x57\151\x6e\x64\x6f\167\x73\40\123\123\117" => array("\167\151\156\144\157\x77\x73", "\x73\x61\x6d\154\x2d\163\151\x6e\x67\x6c\x65\x2d\x73\x69\147\x6e\55\157\x6e\x2d\x73\x73\157\x2d\x77\x6f\162\144\x70\x72\145\x73\163\55\x75\x73\x69\156\147\55\x61\144\x66\163"), "\x53\141\154\x65\163\x46\157\162\143\x65" => array("\x73\141\154\x65\x73\x66\x6f\x72\143\145", "\163\x61\155\x6c\55\x73\x69\x6e\x67\x6c\145\x2d\x73\x69\x67\156\x2d\157\156\55\x73\163\157\55\x77\157\162\144\160\162\x65\163\163\x2d\x75\163\x69\x6e\147\x2d\x73\141\x6c\x65\x73\146\157\x72\x63\x65"), "\x57\157\162\x64\x50\162\x65\x73\x73" => array("\167\157\162\144\x70\162\x65\x73\x73", "\163\x61\x6d\x6c\x2d\163\x69\x6e\147\154\x65\x2d\x73\x69\x67\x6e\x2d\x6f\156\x2d\x73\x73\157\55\x62\145\164\167\x65\145\156\x2d\x74\x77\x6f\x2d\x77\x6f\162\x64\x70\x72\x65\163\x73\55\x73\151\x74\x65\163"), "\x4f\146\x66\151\143\145\40\x33\x36\65" => array("\x6f\146\146\151\x63\145\63\x36\65", "\167\157\162\144\x70\162\145\x73\x73\55\157\146\146\x69\143\x65\x2d\63\x36\65\x2d\163\151\156\x67\154\145\55\163\x69\x67\156\55\157\x6e\55\163\x73\x6f\x2d\x6c\x6f\x67\x69\156"), "\x41\165\x74\150\60" => array("\x61\x75\164\x68\60", "\x73\141\x6d\154\55\163\x69\156\147\154\145\55\x73\151\147\156\x2d\157\x6e\55\163\x73\x6f\x2d\167\x6f\x72\144\160\162\145\163\163\55\165\163\x69\x6e\147\55\141\165\x74\x68\60"), "\115\x69\x6e\x69\117\x72\141\x6e\147\x65" => array("\155\151\156\x69\157\162\141\x6e\x67\x65", "\163\x61\155\154\x2d\x73\x69\156\147\x6c\x65\x2d\x73\x69\x67\156\55\x6f\156\55\x73\x73\157\55\167\157\x72\144\x70\x72\145\x73\163\55\x75\x73\151\156\147\55\155\x69\156\151\157\162\141\156\147\145"), "\103\157\x6d\x6d\x75\156\151\164\171" => array("\163\141\x6c\145\x73\x66\157\162\x63\x65", "\x73\141\x6d\154\x2d\163\151\x6e\147\154\x65\x2d\163\x69\x67\156\55\x6f\156\55\163\163\157\55\167\x6f\x72\x64\160\x72\x65\163\x73\55\x75\x73\151\x6e\147\x2d\163\141\154\x65\163\x66\x6f\x72\x63\145\40\143\157\155\x6d\165\156\151\x74\x79"), "\x43\x6c\x61\163\x73\154\151\x6e\153" => array("\x63\x6c\x61\163\x73\154\x69\x6e\153", "\x73\x61\155\154\55\x73\151\x6e\x67\x6c\145\55\x73\151\147\x6e\x2d\x6f\156\x2d\163\163\157\55\x6c\x6f\x67\151\156\x2d\167\157\x72\144\x70\x72\145\x73\163\x2d\165\163\x69\156\147\55\143\x6c\141\x73\x73\154\x69\156\153"), "\x4f\x6e\x65\114\x6f\147\151\x6e" => array("\157\x6e\145\x6c\x6f\x67\151\156", "\163\141\x6d\154\x2d\x73\x69\x6e\147\x6c\145\x2d\163\x69\147\156\55\157\x6e\x2d\163\x73\157\x2d\167\x6f\x72\x64\x70\x72\145\x73\x73\55\165\163\x69\x6e\147\55\x6f\x6e\x65\x6c\x6f\x67\x69\x6e"), "\x43\x65\x6e\x74\x72\x69\x66\x79" => array("\x63\145\156\x74\x72\151\146\x79", "\x73\x61\x6d\154\x2d\x73\151\x6e\147\154\145\x2d\x73\x69\x67\x6e\x2d\157\x6e\x2d\163\x73\157\x2d\x77\157\x72\144\x70\162\x65\x73\163\55\x75\x73\x69\156\147\55\143\145\x6e\x74\162\151\146\171"), "\120\x69\x6e\x67\106\x65\x64\x65\x72\141\164\x65" => array("\x70\x69\156\147\x66\145\x64\x65\x72\x61\x74\x65", "\x73\141\x6d\x6c\x2d\163\x69\156\x67\x6c\145\x2d\x73\151\x67\x6e\55\x6f\156\x2d\x73\163\x6f\55\x77\x6f\x72\x64\160\x72\145\x73\x73\55\x75\163\151\x6e\147\55\160\x69\156\147\146\145\144\x65\x72\x61\x74\x65"), "\123\150\151\x62\142\x6f\x6c\145\x74\150\40\x32" => array("\x73\150\x69\142\x62\157\154\x65\164\150\62", "\x73\141\x6d\x6c\x2d\163\151\156\x67\154\x65\x2d\x73\x69\147\x6e\55\157\x6e\55\x73\x73\157\x2d\167\157\x72\144\x70\x72\145\163\163\x2d\165\163\151\156\147\x2d\x73\150\x69\142\142\x6f\154\145\x74\x68\x32"), "\123\x68\x69\142\142\x6f\154\x65\x74\x68\40\x33" => array("\x73\x68\x69\x62\142\x6f\x6c\x65\164\150\x33", "\163\x61\x6d\154\55\x73\151\156\x67\154\145\55\x73\151\x67\156\x2d\157\x6e\x2d\x73\163\157\55\167\157\162\144\160\x72\145\x73\x73\55\165\x73\151\156\x67\55\163\150\151\142\142\157\154\x65\164\x68\63"), "\x41\142\163\157\x72\142\x4c\x4d\123" => array("\x61\x62\x73\157\162\142\55\x6c\x6d\163", "\163\141\155\154\x2d\163\x69\156\x67\x6c\x65\55\163\151\x67\156\x2d\157\x6e\x2d\x73\x73\x6f\x2d\x77\x6f\162\144\x70\162\x65\x73\x73\55\165\x73\x69\156\147\55\141\x62\163\157\x72\142\x2d\154\x6d\x73"), "\107\x6c\165\165\x20\x53\145\x72\166\145\162" => array("\x67\x6c\165\165\x2d\163\x65\x72\166\145\x72", "\163\x61\155\154\55\x73\x69\x6e\x67\154\x65\x2d\163\151\147\156\55\x6f\x6e\55\x73\x73\157\x2d\x77\x6f\x72\144\160\x72\x65\x73\163\x2d\x75\x73\151\x6e\x67\55\x67\x6c\x75\165\x2d\x73\x65\162\166\x65\x72"), "\112\x75\155\160\103\154\157\x75\144" => array("\x6a\165\155\x70\x63\x6c\157\165\144", "\x73\141\155\154\x2d\x73\151\156\x67\154\145\x2d\163\151\147\156\x2d\157\x6e\55\163\163\x6f\x2d\167\157\162\x64\x70\162\x65\x73\x73\55\x75\x73\x69\156\147\55\x6a\x75\x6d\160\143\x6c\x6f\x75\x64"), "\111\x64\x65\x6e\x74\151\x74\x79\123\x65\x72\x76\145\x72" => array("\x69\144\145\156\x74\x69\x74\x79\x73\x65\162\166\145\x72\64", "\x73\x61\155\154\x2d\163\x69\x6e\x67\x6c\x65\x2d\x73\151\x67\156\x2d\x6f\156\55\x73\x73\157\55\167\157\x72\144\x70\x72\145\x73\x73\55\165\x73\x69\156\147\55\x69\144\145\x6e\x74\151\x74\x79\163\145\x72\x76\145\x72\64"), "\x44\x65\147\x72\x65\145\144" => array("\x64\145\147\162\x65\145\144", "\x73\x61\155\154\x2d\x73\x69\156\147\x6c\x65\55\163\151\x67\156\x2d\x6f\x6e\55\163\x73\x6f\55\x77\x6f\x72\144\x70\x72\x65\163\x73\55\x75\163\x69\x6e\147\x2d\144\x65\147\162\145\145\144"), "\x43\171\142\145\x72\x41\x72\x6b" => array("\143\x79\142\x65\x72\x61\162\153", "\163\141\155\154\55\x73\151\x6e\147\154\x65\x2d\x73\151\147\x6e\55\157\x6e\55\x73\x73\x6f\x2d\x66\157\162\x2d\x77\x6f\x72\144\x70\162\145\x73\163\55\165\163\x69\156\147\55\x63\x79\x62\x65\x72\141\x72\153"), "\x44\165\x6f" => array("\144\165\x6f", "\x73\x61\155\x6c\x2d\163\151\x6e\x67\154\145\55\163\151\x67\156\x2d\x6f\156\55\163\163\157\55\167\157\x72\144\160\162\x65\163\163\x2d\x75\163\x69\x6e\147\55\x64\165\157"), "\106\x75\x73\x69\157\156\x41\165\x74\x68" => array("\x66\165\x73\151\157\156\x61\165\164\x68", "\x73\x61\x6d\154\x2d\163\x69\x6e\x67\x6c\x65\x2d\163\x69\147\156\55\157\156\x2d\163\x73\x6f\55\167\x6f\162\144\x70\162\x65\163\x73\x2d\165\x73\x69\x6e\147\x2d\x66\x75\163\x69\157\x6e\141\165\x74\x68"), "\123\x65\x63\x75\x72\x65\x41\165\x74\150" => array("\x73\145\143\x75\x72\x65\141\x75\x74\x68", "\x73\141\155\154\x2d\163\x69\x6e\x67\x6c\145\55\163\151\147\156\x2d\157\x6e\55\163\x73\157\55\x77\x6f\x72\x64\160\x72\145\x73\163\55\x75\x73\151\x6e\x67\55\x73\x65\x63\x75\x72\x65\x61\165\x74\150"), "\x4e\x65\164\111\x51" => array("\x6e\145\x74\x49\x51", "\x73\x61\155\x6c\55\163\x69\x6e\147\154\x65\55\x73\x69\147\x6e\55\x6f\x6e\55\163\163\x6f\55\x77\157\x72\144\160\162\145\x73\x73\x2d\165\x73\151\156\x67\55\156\x65\x74\111\121"), "\106\157\x6e\x74\145\166\x61" => array("\146\x6f\x6e\x74\145\166\141", "\163\x61\155\154\x2d\x73\151\x6e\147\154\145\x2d\x73\x69\x67\156\55\x6f\x6e\55\163\163\x6f\55\x77\x6f\162\x64\x70\x72\145\163\163\55\165\163\151\x6e\147\55\146\157\x6e\x74\145\x76\141"), "\123\125\x52\x46\x63\157\156\x65\170\164" => array("\163\x75\x72\x66\143\157\x6e\x65\170\x74", "\163\x75\162\146\x63\157\156\145\170\164\x2d\163\141\155\x6c\55\x73\x69\x6e\x67\154\x65\55\x73\x69\147\156\x2d\x6f\156\x2d\x73\163\157\x2d\151\x6e\x2d\167\157\162\144\x70\x72\x65\163\x73"), "\x50\x68\145\156\x69\170\111\x44" => array("\x70\150\145\156\x69\x78\151\144", "\160\150\x65\156\151\170\151\144\55\163\141\155\154\55\163\151\x6e\147\154\145\x2d\163\151\x67\156\x2d\x6f\156\55\163\x73\157\55\154\x6f\x67\x69\x6e\55\x77\x6f\x72\x64\160\162\x65\163\x73\x73"), "\x41\x75\x74\150\141\x6e\166\151\154" => array("\141\x75\x74\150\x61\156\166\151\154", "\x73\x61\x6d\x6c\55\163\151\x6e\x67\x6c\145\x2d\x73\151\x67\x6e\55\157\156\55\163\x73\157\x2d\167\x6f\x72\x64\x70\162\x65\163\x73\x2d\x75\x73\x69\156\x67\55\141\x75\x74\150\x61\x6e\x76\x69\154"), "\102\x69\164\151\165\x6d" => array("\142\151\x74\151\x75\155", "\163\141\x6d\154\55\x73\151\156\147\x6c\145\55\163\x69\147\x6e\x2d\157\156\55\163\163\x6f\55\x77\157\x72\144\160\162\x65\163\163\55\x75\x73\151\156\147\55\x62\151\164\151\165\x6d"), "\103\101\40\111\x64\x65\x6e\x74\x69\164\x79" => array("\143\141\55\x69\144\x65\156\x74\x69\164\x79", "\x73\141\x6d\154\x2d\163\151\x6e\x67\154\x65\x2d\x73\151\147\x6e\x2d\157\156\x2d\163\x73\x6f\55\167\x6f\162\x64\160\162\145\163\x73\55\165\x73\x69\x6e\147\x2d\x63\x61\55\151\144\145\x6e\164\x69\164\x79"), "\x4f\x70\x65\x6e\101\115" => array("\x6f\x70\145\x6e\x61\x6d", "\163\x61\155\x6c\55\163\x69\x6e\147\x6c\x65\55\163\x69\x67\156\x2d\x6f\156\x2d\x73\x73\157\55\x77\157\162\144\x70\x72\x65\163\x73\55\165\x73\x69\x6e\147\55\157\160\x65\x6e\141\155"), "\117\162\x61\x63\x6c\145" => array("\157\162\x61\143\154\145\x2d\145\x6e\164\x65\x72\160\162\x69\x73\145\55\x6d\141\156\141\147\145\x72", "\x73\x61\x6d\154\55\x73\x69\156\x67\154\145\55\163\151\147\x6e\55\157\156\55\163\x73\157\x2d\x77\x6f\x72\144\x70\x72\x65\163\163\55\165\x73\x69\156\147\55\x6f\x72\x61\143\x6c\145\x2d\145\156\x74\x65\162\160\x72\x69\163\x65\55\155\141\156\x61\x67\x65\162"), "\120\151\x6e\147\x4f\156\x65" => array("\x70\151\156\x67\x6f\x6e\145", "\163\x61\155\154\55\163\151\x6e\x67\154\x65\x2d\x73\x69\147\x6e\x2d\157\x6e\55\163\x73\157\x2d\167\x6f\x72\144\x70\162\x65\163\163\55\165\163\151\156\147\55\160\151\156\147\157\156\x65"), "\x52\123\101\x20\123\x65\x63\x75\x72\145\x49\104" => array("\162\163\141\55\163\145\x63\x75\x72\145\151\144", "\x73\x61\x6d\154\55\x73\x69\x6e\x67\x6c\x65\x2d\x73\x69\x67\x6e\55\x6f\x6e\55\163\163\x6f\55\167\x6f\x72\x64\160\162\145\x73\x73\55\x75\163\x69\x6e\147\x2d\162\163\141\55\163\145\143\x75\x72\x65\x69\144"), "\123\151\x6d\x70\x6c\145\x53\x41\x4d\114\160\150\160" => array("\x73\151\155\160\154\145\x73\x61\155\154", "\x73\x61\155\x6c\55\163\151\x6e\x67\x6c\x65\55\x73\151\147\156\x2d\x6f\x6e\x2d\x73\163\157\x2d\x77\157\162\x64\160\162\145\163\163\55\165\x73\x69\156\147\55\x73\x69\x6d\x70\154\x65\163\x61\x6d\x6c"), "\x57\x53\117\x32" => array("\167\163\x6f\x32", "\163\x61\155\x6c\55\163\151\x6e\147\154\145\55\x73\151\x67\x6e\55\157\x6e\x2d\163\x73\x6f\55\167\157\162\x64\160\x72\x65\x73\163\55\x75\163\151\156\147\55\x77\163\x6f\x32"), "\103\x75\x73\164\157\155\40\x49\x44\x50" => array("\x63\165\163\164\157\155\x2d\x69\x64\160", "\163\141\155\154\x2d\163\x69\156\147\x6c\145\x2d\163\x69\x67\156\x2d\157\x6e\x2d\163\163\157\x2d\167\157\x72\x64\160\x72\145\163\x73\x2d\x75\163\151\156\147\55\143\x75\x73\x74\x6f\x6d\55\151\x64\160"));
}
class mo_saml_options_plugin_idp_videos extends BasicEnum
{
public static $IDP_VIDEOS = array("\x61\172\165\x72\145\55\141\x64" => "\124\146\120\x4a\167\x67\125\161\x38\172\x30", "\141\172\x75\x72\145\55\142\x32\x63" => "\x42\x38\172\x43\x59\x6a\150\126\x33\x55\125", "\x61\144\146\x73" => "\162\x4c\x42\110\x62\122\x62\x72\131\65\105", "\157\153\x74\x61" => "\x59\x48\x45\70\x69\131\157\152\x55\x71\115", "\x73\x61\154\145\x73\x66\157\162\x63\145" => "\x4c\122\121\x72\x6d\147\x72\x32\x35\x35\121", "\x67\157\157\147\x6c\x65\x2d\x61\160\x70\163" => "\65\x42\167\172\x45\x6a\147\132\151\165\64", "\x6f\x6e\145\154\157\147\x69\x6e" => "\137\110\163\x6f\x74\x5f\x52\107\71\x59\x59", "\x6d\x69\156\x69\x6f\x72\141\156\x67\x65" => "\x65\141\155\146\71\163\x36\x4a\160\x62\101", "\152\x62\x6f\x73\163\x2d\153\x65\171\143\x6c\x6f\x61\x6b" => "\111\x6f\66\x78\61\146\x54\116\127\x48\111", "\x61\165\x74\150\x30" => "\65\x34\x70\172\66\155\65\x68\71\155\153", "\x63\x75\163\164\x6f\x6d\x2d\x69\x64\160" => "\147\151\x6c\146\150\x4e\106\x59\x73\x67\143");
}
Function Calls
None |
Stats
MD5 | 0765572401a385d7240abdcb7a33ca67 |
Eval Count | 0 |
Decode Time | 134 ms |