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 Drupal\rest_api_authentication\Form; use Drupal\Core\Database; us..

Decoded Output download

<?php 
 
 
namespace Drupal\rest_api_authentication\Form; 
 
use Drupal\Core\Database; 
use Drupal\Core\Form\FormStateInterface; 
use Drupal\Core\Form\FormBase; 
use Drupal\rest_api_authentication\DBQueries; 
use Drupal\rest_api_authentication\MiniorangeRestAPICustomer; 
use Drupal\rest_api_authentication\MiniorangeApiAuthConstants; 
use Drupal\rest_api_authentication\Utilities; 
use Symfony\Component\HttpFoundation\Response; 
use Symfony\Component\HttpFoundation\RedirectResponse; 
use Drupal\user\Entity\User; 
class miniorangeAPIAuth extends FormBase 
{ 
    public function getFormId() 
    { 
        return "rest_api_authentication_config_client"; 
    } 
    public function buildForm(array $form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $kx = \Drupal::config("rest_api_authentication.settings")->get("authentication_method"); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("rest_api_authentication_support_request_flag", "APIAuthTab")->save(); 
        if (!(empty($kx) || ($kx = null))) { 
            goto TD; 
        } 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 0)->save(); 
        TD: 
        $ZJ = $base_url; 
        $form["markup_library"] = array("#attached" => array("library" => array("rest_api_authentication/rest_api_authentication.main"))); 
        $q2 = Utilities::isCustomerRegistered($form, $form_state); 
        $Kk = "<div class="mo_rest_token_div"><table><tr><td style="vertical-align: middle;">"; 
        $fk = "</td>"; 
        $M0 = "<div class="mo_rest_token_div">"; 
        $ed = "</div>"; 
        $Wm = "PLUGIN_CONFIGURATION"; 
        $form["markup_top_head"] = array("#markup" => "<div class="mo_rest_api_table_layout_2"><div class="mo_rest_api_table_layout_3 mo_rest_api_container">"); 
        $W6 = isset($_GET["tab"]) ? $_GET["tab"] : "edit-customer-setup"; 
        $form["information"] = array("#type" => "vertical_tabs", "#default_tab" => $W6); 
        $form["api_auth"] = array("#type" => "details", "#title" => $this->t("<br>Configure API Authentication"), "#group" => "information"); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"] = array("#type" => "fieldset"); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["head_text"] = array("#markup" => "<div><b>SELECT AN AUTHENTICATION METHOD OF YOUR CHOICE:</b><a target="_blank" href="" . MiniorangeApiAuthConstants::setup_guide_link . ""><div class="setup_guide_link"><b>How To Setup?</b></div></a></div><hr><br><div class="mo_rest_api_highlight_background_note_1">Need any help? We can help you with configuring your API authentication method. Just send us a query and we will get back to you soon.<br/></div><br>"); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["enable_authentication"] = array("#type" => "checkbox", "#title" => t("Enable Authentication"), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("rest_api_authentication_enable_authentication"), "#description" => "Select this checkbox to enable API Authentication "); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["whitelist_get_apis"] = array("#type" => "checkbox", "#title" => t("Whitelist all GET APIs"), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("whitelist_get_apis"), "#description" => "Select this checkbox to whitelist all get APIs"); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["save_basic_settings"] = array("#type" => "submit", "#suffix" => "<br><hr><br>", "#disabled" => $q2, "#button_type" => "primary", "#value" => t("Save Above Settings"), "#submit" => array("::rest_api_authentication_save_basic_config")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["settings"]["active"] = array("#type" => "radios", "#disabled" => $q2, "#title" => '', "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("authentication_method"), "#options" => array(0 => $this->t("Basic Authentication"), 1 => $this->t("API Key"), 2 => $this->t("OAuth/Access Token"), 3 => $this->t("JWT"), 4 => $this->t("External Identity Provider")), "#attributes" => array("class" => array("container-inline"), "style" => "margin-right:5px; margin-left:2px;")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_ext_oauth"] = array("#type" => "textfield", "#disabled" => $q2, "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 4))), "#title" => $this->t("User Info Endpoint: "), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("user_info_endpoint"), "#attributes" => array("style" => "width:100%"), "#prefix" => $M0); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_ext_oauth_username"] = array("#type" => "textfield", "#disabled" => $q2, "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 4))), "#title" => $this->t("Username Attribute: "), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("username_attribute"), "#attributes" => array("style" => "width:100%"), "#suffix" => $ed); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["create_user"] = array("#type" => "checkbox", "#title" => t("Check this option if you want to enable auto creation of users if user does not exist."), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("ex_oauth_create_new_user"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 4)))); 
        $form["api_auth"]["rest_api_authentication_save_ext_oauth"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save Ext OAuth Details"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 4))), "#submit" => array("::rest_api_authentication_save_ext_oauth_provider")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_key"] = array("#title" => $this->t("Enter Username: "), "#type" => "entity_autocomplete", "#disabled" => $q2, "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 1))), "#attributes" => array("style" => "width:100%", "placeholder" => "Enter specific username to generate API Key"), "#prefix" => $Kk, "#suffix" => $fk, "#target_type" => "user", "#selection_settings" => ["include_anonymous" => FALSE]); 
        $form["api_auth"]["rest_api_authentication_generate_key"] = array("#type" => "submit", "#disabled" => $q2, "#value" => t("Generate"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 1))), "#submit" => array("::rest_api_authentication_generate_api_token"), "#prefix" => "<td><br>", "#suffix" => "</td></tr></table></div><br>"); 
        $form["api_auth"]["rest_api_authentication_key_save_settings"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save Configurations"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 1))), "#submit" => array("::rest_api_authentication_key_save_settings")); 
        $form["api_auth"]["rest_api_authentication_key_generate_all"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Generate Key for all users"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 1))), "#submit" => array("::rest_api_authentication_key_generate_all")); 
        $form["api_auth"]["rest_api_authentication_authentication_method_submit"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 0))), "#value" => t("Select Method"), "#submit" => array("::rest_api_authentication_save_basic_auth_conf")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_oauth_client_id"] = array("#type" => "textfield", "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 2))), "#title" => $this->t("Client ID: "), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("oauth_client_id"), "#attributes" => array("style" => "width:100%"), "#disabled" => "true"); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_oauth_client_secret"] = array("#type" => "textfield", "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 2))), "#title" => $this->t("Client Secret: "), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("oauth_client_secret"), "#attributes" => array("style" => "width:100%"), "#disabled" => "true"); 
        $form["api_auth"]["rest_api_authentication_generate_and_secret"] = array("#type" => "submit", "#disabled" => $q2, "#value" => t("Generate a new Client ID and Secret"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 2))), "#submit" => array("::rest_api_authentication_generate_oauth_keys")); 
        $form["api_auth"]["rest_api_authentication_save_oauth_config"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save Settings"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 2))), "#submit" => array("::rest_api_authentication_save_oauth_token")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["jwt_method_username_attribute"] = array("#type" => "textfield", "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 3))), "#title" => $this->t("Username Attribute: "), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("jwt_method_username_attribute"), "#attributes" => array("style" => "width:100%")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["jwt_method_jwks_uri"] = array("#type" => "url", "#id" => "rest_api_authentication_token_key", "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 3))), "#title" => $this->t("JWKS URI: <i>(Optional)</i>"), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("jwt_method_jwks_uri"), "#attributes" => array("style" => "width:100%")); 
        $form["api_auth"]["mo_rest_api_authentication_authenticator"]["create_user_jwt"] = array("#type" => "checkbox", "#title" => t("Check this option if you want to enable auto creation of users if user does not exist."), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("jwt_create_new_user"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 3)))); 
        $form["api_auth"]["rest_api_authentication_generate_id_token"] = array("#type" => "submit", "#button_type" => "primary", "#value" => t("Save JWT Configuration"), "#states" => array("visible" => array(":input[name = "active"]" => array("value" => 3))), "#submit" => array("::rest_api_authentication_save_id_token")); 
        $form["advanced_settings"] = array("#type" => "details", "#title" => $this->t("Advance Settings"), "#group" => "information"); 
        $form["advanced_settings"]["support_container_outline"] = array("#type" => "fieldset"); 
        $form["advanced_settings"]["support_container_outline"]["publisher"] = array("#markup" => "<h3><b>ADVANCED SETTINGS:</b></h3><hr><br><div class="mo_rest_api_highlight_background_note_1">Need any help? Just send us a query and we will get back to you soon.<br/></div><br>"); 
        $form["advanced_settings"]["support_container_outline"]["custom_headers"] = array("#type" => "details", "#title" => $this->t(" Custom Header "), "#description" => "This feature allows you to set custom headers for authentication. If you want to authenticate the Drupal REST APIs in a more secure way, you can set a custom Header."); 
        $form["advanced_settings"]["support_container_outline"]["custom_headers"]["div_key"] = array("#type" => "textfield", "#disabled" => $q2, "#id" => "rest_api_authentication_token_key", "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("custom_header"), "#title" => $this->t("Custom header for authentication: "), "#attributes" => array("style" => "width:50%")); 
        $form["advanced_settings"]["support_container_outline"]["custom_headers"]["div_key3"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save Configuration"), "#submit" => array("::custom_header_submit")); 
        $form["advanced_settings"]["support_container_outline"]["token_expiry"] = array("#type" => "details", "#title" => $this->t(" Token Expiry Configurations"), "#description" => "Eligible for OAuth 2.0 and JWT Authentication. JWT Token and the OAuth Access Token will be expired on the given time."); 
        $form["advanced_settings"]["support_container_outline"]["token_expiry"]["access_token_expiry_time"] = array("#type" => "textfield", "#disabled" => $q2, "#title" => $this->t("Token Expiry Time (In minutes): "), "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("token_expiry"), "#attributes" => array("style" => "width:50%")); 
        $form["advanced_settings"]["support_container_outline"]["token_expiry"]["support_container_outline"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save Token Configuration"), "#submit" => array("::token_expiry_submit")); 
        $form["advanced_settings"]["support_container_outline"]["list_ip"] = array("#type" => "details", "#title" => $this->t("Allow & Restrict Ip Addresses"), "#description" => ''); 
        $form["advanced_settings"]["support_container_outline"]["list_ip"]["settings"] = array("#type" => "radios", "#disabled" => $q2, "#prefix" => "<hr><br>", "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("ip_access_type"), "#title" => '', "#options" => array(0 => $this->t("Allowed IP Addresses"), 1 => $this->t("Blocked IP Addresses")), "#attributes" => array("class" => array("container-inline"))); 
        $form["advanced_settings"]["support_container_outline"]["list_ip"]["ip_textarea"] = array("#type" => "textarea", "#disabled" => $q2, "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("list_of_ips"), "#title" => $this->t("You can add the IP Addresses here: "), "#attributes" => array("style" => "width:100%", "placeholder" => "You can also add multiple APIs using a ; as a separator")); 
        $form["advanced_settings"]["support_container_outline"]["list_ip"]["token_submit_key3"] = array("#type" => "submit", "#disabled" => $q2, "#button_type" => "primary", "#name" => "submit", "#value" => t("Save IP Configuration"), "#submit" => array("::ip_restriction_submit")); 
        $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"] = array("#type" => "details", "#title" => $this->t("APIs to be Restricted")); 
        $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_JSON_apis"] = array("#type" => "checkbox", "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("rest_api_authentication_enable_json_api_authentication"), "#title" => "<b><a href="" . MiniorangeApiAuthConstants::DRUPAL_SITE . "/docs/core-modules-and-themes/core-modules/jsonapi-module" target="_blank">JSON:API module APIs</a></b> (Always specify the <b><u>/jsonapi/</u></b> in the API, e.g. http://example.com/jsonapi/node/article/{{article_uuid}})"); 
        $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_REST_apis"] = array("#type" => "checkbox", "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("rest_api_authentication_enable_rest_api_authentication"), "#title" => "<b><a target="_blank" href="" . MiniorangeApiAuthConstants::DRUPAL_SITE . "/docs/8/core/modules/rest">RESTful Web Services APIs</a></b> (Always specify the <b>?_format=</b> query argument, e.g. http://example.com/node/1?_format=json)"); 
        $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_custom_apis"] = array("#type" => "checkbox", "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("rest_api_authentication_enable_custom_api_authentication"), "#title" => "Other/ Drupal Views/ Custom APIs Authentication"); 
        $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_apis_button"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save API Configurations"), "#submit" => ["::saveAPIToBeRestrictedSettings"]); 
        $form["advanced_settings"]["support_container_outline"]["list_apis"] = array("#type" => "details", "#title" => $this->t(" Restrict custom APIs"), "#description" => "<b>Note: </b>To enable this feature, please check the <b>Any Other/Custom APIs</b> checkbox under the <b>APIs to be Restricted</b> details.<br>"); 
        $form["advanced_settings"]["support_container_outline"]["list_apis"]["custom_api_textarea"] = array("#type" => "textarea", "#disabled" => $q2, "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("list_of_apis"), "#title" => $this->t("You can add the APIs here: "), "#attributes" => array("style" => "width:100%", "placeholder" => "You can also add multiple APIs using a ; as a separator")); 
        $form["advanced_settings"]["support_container_outline"]["list_apis"]["token_submit_key3"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#name" => "submit", "#value" => t("Save Configuration")); 
        $form["advanced_settings"]["support_container_outline"]["restrict_roles"] = array("#type" => "details", "#title" => $this->t(" Role Based Restriction"), "#description" => "Restriction based on User Roles."); 
        $form["advanced_settings"]["support_container_outline"]["restrict_roles"]["api_textarea"] = array("#type" => "textarea", "#disabled" => $q2, "#default_value" => \Drupal::config("rest_api_authentication.settings")->get("list_of_role_restrictions"), "#title" => $this->t("You can add the APIs and roles here: "), "#attributes" => array("style" => "width:100%", "placeholder" => "You can also add multiple APIs->roles using a ; as a seperator")); 
        $form["advanced_settings"]["support_container_outline"]["restrict_roles"]["token_submit_key3"] = array("#type" => "submit", "#button_type" => "primary", "#disabled" => $q2, "#value" => t("Save Role Based Restrictions"), "#submit" => array("::role_restriction_submit")); 
        $form["upgrade_plans"] = array("#type" => "details", "#title" => $this->t("<br>Upgrade Plans"), "#group" => "information"); 
        $form["upgrade_plans"]["upgradecontainer_outline"] = array("#type" => "fieldset"); 
        $form["upgrade_plans"]["upgradecontainer_outline"]["licensing"] = array("#markup" => "<html lang="en">
        <head>\xa            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">\xa            <!-- Main Style -->
        </head>\xa        <body>\xa        <!-- Pricing Table Section -->\xa        <section id="pricing-table">\xa            <div>
                <div>
                    <div class="pricing">
                        <div>
\xa
                        <div class="pricing-table class_inline_1">\xa                        <div class="pricing-header">
                            <p class="pricing-title">Free<br><span><br>One Time Payment</span></p>\xa                            <p class="pricing-rate"><sup>$</sup> 0</p>
                             <a href="#" class="button button--danger button--small">Current Plan</a><br><br>
                        </div>

                        <div class="pricing-list">\xa                            <ul>
                              <li>Single App Support</li>
                              <li>API Key Authentication</li>\xa                              <li>Basic Authentication</li>\xa                              <li>-</li>\xa                              <li>-</li>
                              <li>-</li>\xa                              <li>-</li>
                              <li>-</li>\xa                              <li>-</li>
                              <li>-</li>\xa                              <li>Basic Email Support</li>\xa                            </ul>
                        </div>
                    </div>\xa\xa                            <div class="pricing-table class_inline_1">\xa                                <div class="pricing-header">\xa                                    <p class="pricing-title">Enterprise<br><span>(Domain & Page Restriction)<br>One Time Payment</span></p>\xa                            <p class="pricing-rate"><sup>$</sup> 399</p>\xa                            <a href="https://www.miniorange.com/contact" target="_blank" class="button button--danger button--small">Contact Us</a><br><br>\xa                                </div>
                                <div class="pricing-list">\xa                                    <ul>
                                        <li>Single App Support</li>\xa                                        <li>API Key Authentication</li>
                                        <li>Basic Authentication</li>\xa                                        <li>Access Token Authentication</li>
                                        <li>JWT Authentication</li>
                                        <li>OAuth 2 Authentication</li>
                                        <li>Custom Header</li>
                                        <li>Custom Token Expiry</li>
                                        <li>Restrict APIs</li>\xa                                        <li>Whitelist APIs</li>
                                        <li>Premium GoTo Meeting Support</li>\xa                                    </ul>
                                </div>
                            </div>\xa
                    </div>\xa                </div>\xa            </div>
        </div>
    </section>
    <!-- Pricing Table Section End -->
    </body>
    </html>"); 
        $form["header_bottom1_style_1"] = array("#markup" => "</div>"); 
        Utilities::AddSupportButton($form, $form_state); 
        return $form; 
    } 
    function rest_api_authentication_key_save_settings(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 1)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations Saved Successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_generate_api_token(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $Mb = $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_key"]["#value"]; 
        $fC = explode("(", $Mb); 
        $rW = str_replace(array(")"), '', end($fC)); 
        $user = user::load(trim($rW)); 
        if (!($user == null)) { 
            goto lU; 
        } 
        $user = user_load_by_name(trim($fC[0])); 
        lU: 
        if (!empty($user)) { 
            goto ss; 
        } 
        \Drupal::messenger()->addMessage(t("No User found with the " . $Mb . " username.")); 
        goto iS; 
        ss: 
        $Kg = Utilities::generateRandom(64); 
        $Kj = array(); 
        $nU = time(); 
        $km = \Drupal::database(); 
        if (DBQueries::isTableExists("rest_api_authentication_token")) { 
            goto XI; 
        } 
        DBQueries::createTable(); 
        XI: 
        if (DBQueries::isFieldExists("rest_api_authentication_token", "user_name")) { 
            goto bG; 
        } 
        DBQueries::insertColumn("user_name"); 
        bG: 
        if (DBQueries::isFieldExists("rest_api_authentication_token", "api_key_request_time")) { 
            goto Dq; 
        } 
        DBQueries::insertColumn("api_key_request_time"); 
        Dq: 
        $DC = $km->select("rest_api_authentication_token", "nfd")->fields("nfd", ["user_name"])->condition("nfd.user_name", $Mb)->execute()->fetchfield(); 
        if (!$DC) { 
            goto oH; 
        } 
        $km->update("rest_api_authentication_token")->fields(["api_key_request_time" => $nU])->condition("user_name", $Mb, "=")->execute(); 
        goto Ov; 
        oH: 
        $km->insert("rest_api_authentication_token")->fields(["user_name", "api_key_request_time"])->values(["user_name" => $Mb, "api_key_request_time" => $nU])->execute(); 
        Ov: 
        $user->{"field_api_key"} = $Kg; 
        $user->save(); 
        \Drupal::messenger()->addMessage(t("New API Key generated successfully.")); 
        iS: 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_key_generate_all(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $AO = \Drupal::entityQuery("user")->accessCheck(TRUE)->execute(); 
        $i4 = User::loadMultiple($AO); 
        if (DBQueries::isTableExists("rest_api_authentication_token")) { 
            goto Bg; 
        } 
        DBQueries::createTable(); 
        Bg: 
        if (DBQueries::isFieldExists("rest_api_authentication_token", "user_name")) { 
            goto bz; 
        } 
        DBQueries::insertColumn("user_name"); 
        bz: 
        if (DBQueries::isFieldExists("rest_api_authentication_token", "api_key_request_time")) { 
            goto me; 
        } 
        DBQueries::insertColumn("api_key_request_time"); 
        me: 
        $km = \Drupal::database(); 
        foreach ($i4 as $user) { 
            if (empty($user)) { 
                goto q0; 
            } 
            $Mb = $user->get("name")->getString(); 
            $nU = time(); 
            $Kg = Utilities::generateRandom(64); 
            $user->{"field_api_key"} = $Kg; 
            $user->save(); 
            $DC = $km->select("rest_api_authentication_token", "nfd")->fields("nfd", ["user_name"])->condition("nfd.user_name", $Mb)->execute()->fetchfield(); 
            if (!$DC) { 
                goto jl; 
            } 
            $km->update("rest_api_authentication_token")->fields(["api_key_request_time" => $nU])->condition("user_name", $Mb, "=")->execute(); 
            goto Gi; 
            jl: 
            $km->insert("rest_api_authentication_token")->fields(["user_name", "api_key_request_time"])->values(["user_name" => $Mb, "api_key_request_time" => $nU])->execute(); 
            Gi: 
            q0: 
            bk: 
        } 
        wR: 
        \Drupal::messenger()->addMessage(t("New API Keys set for all users successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_save_ext_oauth_provider(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $P6 = $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_ext_oauth"]["#value"]; 
        $f2 = $form["api_auth"]["mo_rest_api_authentication_authenticator"]["rest_api_authentication_ext_oauth_username"]["#value"]; 
        $nT = $form["api_auth"]["mo_rest_api_authentication_authenticator"]["create_user"]["#value"]; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("user_info_endpoint", $P6)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("username_attribute", $f2)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("ex_oauth_create_new_user", $nT)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 4)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations for 3rd party provider saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_generate_oauth_keys(array &$form, FormStateInterface $form_state) 
    { 
        $AH = Utilities::generateRandom(30); 
        $qv = Utilities::generateRandom(30); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("oauth_client_id", $AH)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("oauth_client_secret", $qv)->save(); 
        self::rest_api_authentication_save_oauth_token($form, $form_state); 
    } 
    function rest_api_authentication_save_oauth_token(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 2)->save(); 
        \Drupal::messenger()->addMessage(t("OAuth method configurations Saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_save_id_token(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        if (!isset($form["api_auth"]["mo_rest_api_authentication_authenticator"]["settings"]["active"])) { 
            goto Xx; 
        } 
        $rU = $form["api_auth"]["mo_rest_api_authentication_authenticator"]["settings"]["active"]["#value"]; 
        Xx: 
        if (!($rU == 0)) { 
            goto Sq; 
        } 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 0)->save(); 
        \Drupal::messenger()->addMessage(t("Basic Authentication Configurations Saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
        Sq: 
        $Md = $form_state->getValues(); 
        $jv = $Md["jwt_method_jwks_uri"]; 
        $V_ = $Md["jwt_method_username_attribute"]; 
        $nT = $Md["create_user_jwt"]; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("jwt_method_username_attribute", $V_)->set("jwt_method_jwks_uri", $jv)->set("jwt_create_new_user", $nT)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 3)->save(); 
        \Drupal::messenger()->addMessage(t("Selected method saved Successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function submitForm(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $uq = $form["advanced_settings"]["support_container_outline"]["list_apis"]["custom_api_textarea"]["#value"]; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("list_of_apis", $uq)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations for Custom API Restriction saved.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-advanced-settings"); 
        $Ek->send(); 
        return; 
    } 
    function ip_restriction_submit(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $vg = $form["advanced_settings"]["support_container_outline"]["list_ip"]["ip_textarea"]["#value"]; 
        $l0 = $form["advanced_settings"]["support_container_outline"]["list_ip"]["settings"]["#value"]; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("ip_access_type", $l0)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("list_of_ips", $vg)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations for IP Based Restriction saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-advanced-settings"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_save_basic_auth_conf(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("authentication_method", 0)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    function rest_api_authentication_save_basic_config(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $dP = $form_state->getValues(); 
        $E_ = $dP["enable_authentication"]; 
        $hG = $dP["whitelist_get_apis"]; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("rest_api_authentication_enable_authentication", $E_)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("whitelist_get_apis", $hG)->save(); 
        \Drupal::messenger()->addMessage(t("Settings Saved Successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-api-auth"); 
        $Ek->send(); 
        return; 
    } 
    public function custom_header_submit(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $Ls = trim($form["advanced_settings"]["support_container_outline"]["custom_headers"]["div_key"]["#value"]); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("custom_header", $Ls)->save(); 
        \Drupal::messenger()->addMessage(t("Custom Header Configurations saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-advanced-settings"); 
        $Ek->send(); 
        return; 
    } 
    public function role_restriction_submit(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $WW = trim($form["advanced_settings"]["support_container_outline"]["restrict_roles"]["api_textarea"]["#value"]); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("list_of_role_restrictions", $WW)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations for Role Based Restrictions saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-advanced-settings"); 
        $Ek->send(); 
        return; 
    } 
    public function token_expiry_submit(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $Ls = trim($form["advanced_settings"]["support_container_outline"]["custom_headers"]["div_key"]["#value"]); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("custom_header", $Ls)->save(); 
        $QB = trim($form["advanced_settings"]["support_container_outline"]["token_expiry"]["access_token_expiry_time"]["#value"]); 
        $QB = !empty($QB) ? $QB : null; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("token_expiry", $QB)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-advanced-settings"); 
        $Ek->send(); 
        return; 
    } 
    public function saveAPIToBeRestrictedSettings(array &$form, FormStateInterface $form_state) 
    { 
        global $base_url; 
        $X6 = $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_REST_apis"]["#value"]; 
        $Ap = $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_JSON_apis"]["#value"]; 
        $xo = $form["advanced_settings"]["support_container_outline"]["enable_api_checkboxes"]["enable_custom_apis"]["#value"]; 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("rest_api_authentication_enable_rest_api_authentication", $X6)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("rest_api_authentication_enable_json_api_authentication", $Ap)->save(); 
        \Drupal::configFactory()->getEditable("rest_api_authentication.settings")->set("rest_api_authentication_enable_custom_api_authentication", $xo)->save(); 
        \Drupal::messenger()->addMessage(t("Configurations saved successfully.")); 
        $Ek = new RedirectResponse($base_url . "/admin/config/people/rest_api_authentication/auth_settings?tab=edit-advanced-settings"); 
        $Ek->send(); 
    } 
} 
 ?>

Did this file decode correctly?

Original Code

<?php


namespace Drupal\rest_api_authentication\Form;

use Drupal\Core\Database;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Form\FormBase;
use Drupal\rest_api_authentication\DBQueries;
use Drupal\rest_api_authentication\MiniorangeRestAPICustomer;
use Drupal\rest_api_authentication\MiniorangeApiAuthConstants;
use Drupal\rest_api_authentication\Utilities;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Drupal\user\Entity\User;
class miniorangeAPIAuth extends FormBase
{
    public function getFormId()
    {
        return "\162\145\x73\x74\x5f\x61\160\151\137\x61\x75\164\x68\145\x6e\164\x69\x63\141\x74\151\157\x6e\x5f\x63\x6f\156\x66\151\x67\x5f\x63\154\151\x65\x6e\x74";
    }
    public function buildForm(array $form, FormStateInterface $form_state)
    {
        global $base_url;
        $kx = \Drupal::config("\162\x65\163\164\137\x61\160\151\x5f\141\x75\x74\x68\145\156\164\x69\143\x61\x74\151\x6f\156\56\163\x65\164\x74\151\156\x67\x73")->get("\x61\165\164\x68\x65\x6e\x74\151\x63\x61\x74\151\x6f\x6e\x5f\155\x65\x74\150\x6f\x64");
        \Drupal::configFactory()->getEditable("\162\x65\x73\x74\137\141\x70\x69\x5f\141\165\x74\x68\x65\156\x74\x69\143\x61\x74\151\157\x6e\x2e\x73\x65\x74\164\x69\x6e\x67\163")->set("\x72\145\163\x74\137\x61\160\151\x5f\x61\x75\x74\150\x65\x6e\x74\x69\143\x61\x74\151\x6f\x6e\x5f\x73\x75\x70\x70\x6f\162\164\x5f\x72\x65\x71\x75\145\163\164\x5f\x66\154\x61\x67", "\x41\x50\x49\x41\x75\164\x68\124\x61\x62")->save();
        if (!(empty($kx) || ($kx = null))) {
            goto TD;
        }
        \Drupal::configFactory()->getEditable("\x72\x65\163\x74\x5f\x61\x70\x69\137\141\x75\x74\150\x65\156\164\x69\143\x61\x74\x69\x6f\156\56\x73\145\x74\x74\x69\156\x67\163")->set("\141\x75\x74\150\145\x6e\164\151\x63\141\x74\x69\x6f\156\x5f\155\145\x74\150\x6f\144", 0)->save();
        TD:
        $ZJ = $base_url;
        $form["\155\141\162\x6b\165\160\137\154\151\x62\x72\x61\162\171"] = array("\x23\141\x74\164\x61\143\x68\x65\x64" => array("\x6c\151\x62\162\x61\162\x79" => array("\162\x65\x73\164\x5f\x61\160\151\x5f\x61\x75\164\x68\x65\x6e\164\151\x63\141\164\151\x6f\156\x2f\x72\x65\x73\x74\137\x61\x70\x69\x5f\x61\x75\x74\x68\x65\156\x74\151\x63\x61\x74\x69\157\x6e\x2e\x6d\x61\x69\156")));
        $q2 = Utilities::isCustomerRegistered($form, $form_state);
        $Kk = "\74\x64\151\166\40\143\154\x61\163\x73\x3d\x22\x6d\157\x5f\162\x65\x73\x74\137\x74\157\153\x65\156\137\x64\x69\166\42\76\74\164\141\142\154\145\76\74\x74\x72\x3e\x3c\x74\144\x20\163\x74\x79\x6c\145\x3d\42\166\145\162\x74\x69\143\x61\154\55\141\x6c\151\147\x6e\72\40\155\x69\x64\144\154\145\x3b\42\76";
        $fk = "\x3c\57\164\x64\76";
        $M0 = "\74\144\x69\166\x20\143\x6c\141\163\x73\x3d\42\155\157\x5f\x72\145\163\x74\x5f\x74\157\153\x65\x6e\137\x64\x69\166\x22\x3e";
        $ed = "\x3c\x2f\x64\151\x76\76";
        $Wm = "\x50\114\x55\x47\111\116\137\103\x4f\116\x46\111\107\x55\x52\x41\x54\x49\117\116";
        $form["\155\141\162\153\x75\x70\x5f\164\x6f\x70\137\x68\x65\x61\x64"] = array("\43\155\141\x72\153\x75\160" => "\x3c\144\151\166\x20\143\154\x61\x73\163\75\x22\x6d\157\x5f\162\145\x73\x74\x5f\141\x70\x69\137\x74\141\x62\154\145\x5f\154\x61\x79\157\165\164\137\x32\42\76\x3c\x64\x69\x76\40\x63\x6c\x61\x73\163\x3d\42\x6d\x6f\137\162\x65\x73\164\x5f\x61\x70\x69\137\164\x61\142\x6c\x65\137\x6c\141\171\157\x75\164\137\x33\40\155\157\x5f\x72\145\163\164\x5f\x61\x70\x69\x5f\143\x6f\156\164\141\151\x6e\145\162\x22\76");
        $W6 = isset($_GET["\x74\x61\142"]) ? $_GET["\164\x61\x62"] : "\145\144\x69\164\x2d\143\165\x73\164\157\155\x65\162\55\x73\x65\164\165\x70";
        $form["\x69\x6e\x66\157\162\x6d\x61\164\151\x6f\x6e"] = array("\43\x74\171\160\x65" => "\x76\x65\162\164\x69\143\x61\x6c\137\164\141\142\163", "\x23\144\x65\146\x61\x75\154\x74\x5f\x74\141\x62" => $W6);
        $form["\x61\160\x69\137\x61\165\164\150"] = array("\x23\164\171\160\145" => "\x64\145\x74\x61\x69\x6c\163", "\x23\164\x69\x74\154\x65" => $this->t("\x3c\x62\162\76\103\x6f\156\146\x69\x67\x75\162\x65\x20\101\120\x49\x20\101\165\x74\x68\x65\156\x74\x69\143\x61\164\151\x6f\x6e"), "\x23\147\x72\x6f\x75\160" => "\x69\156\x66\157\x72\155\x61\x74\151\x6f\x6e");
        $form["\141\x70\151\137\x61\165\164\150"]["\155\x6f\x5f\162\x65\x73\x74\137\141\160\x69\137\x61\165\x74\150\x65\x6e\164\151\143\x61\164\x69\x6f\156\137\x61\165\164\150\x65\x6e\x74\151\143\141\x74\157\x72"] = array("\x23\x74\171\160\145" => "\x66\x69\x65\154\x64\x73\x65\164");
        $form["\x61\x70\x69\137\141\x75\164\150"]["\x6d\x6f\x5f\162\x65\x73\x74\x5f\x61\160\x69\137\x61\165\x74\150\x65\x6e\x74\x69\x63\141\x74\151\157\x6e\x5f\x61\x75\x74\x68\x65\x6e\164\151\143\141\x74\157\162"]["\x68\145\141\x64\x5f\164\x65\x78\164"] = array("\43\155\141\162\x6b\165\x70" => "\x3c\x64\x69\x76\x3e\74\x62\76\x53\x45\114\105\x43\x54\x20\101\116\40\101\125\124\x48\x45\x4e\x54\x49\x43\x41\x54\111\x4f\x4e\40\115\x45\124\x48\117\x44\40\x4f\106\x20\131\x4f\x55\x52\x20\103\x48\x4f\111\x43\x45\72\74\57\142\x3e\74\141\x20\164\141\x72\147\145\x74\75\x22\x5f\x62\x6c\x61\156\x6b\x22\40\150\x72\145\x66\75\x22" . MiniorangeApiAuthConstants::setup_guide_link . "\42\76\74\x64\151\166\x20\143\154\141\163\163\x3d\42\163\x65\x74\x75\160\x5f\147\x75\x69\144\145\x5f\154\x69\x6e\153\42\x3e\x3c\142\x3e\110\x6f\167\x20\x54\157\40\x53\x65\x74\165\160\x3f\x3c\57\142\x3e\74\57\144\x69\x76\x3e\74\57\x61\x3e\x3c\x2f\x64\151\166\x3e\x3c\150\x72\x3e\74\142\x72\76\74\x64\x69\x76\x20\143\154\x61\x73\163\x3d\42\155\x6f\137\x72\145\x73\164\x5f\x61\160\151\137\150\x69\147\x68\154\151\147\x68\164\x5f\x62\x61\143\x6b\147\x72\157\165\156\144\137\156\157\x74\x65\x5f\x31\42\76\116\145\145\144\40\141\x6e\x79\x20\x68\x65\x6c\160\77\x20\127\145\x20\143\x61\x6e\40\x68\145\x6c\160\x20\x79\157\x75\x20\x77\x69\164\x68\40\x63\x6f\x6e\x66\151\147\165\162\151\156\x67\40\x79\157\165\x72\x20\x41\120\111\x20\x61\165\164\x68\x65\x6e\164\x69\143\141\164\x69\x6f\156\40\x6d\145\x74\150\157\144\56\40\112\165\163\164\40\163\145\156\144\x20\165\x73\x20\x61\x20\161\165\x65\x72\171\x20\141\156\144\x20\167\145\x20\x77\151\x6c\154\x20\x67\145\164\40\x62\x61\143\x6b\40\x74\157\40\x79\x6f\x75\x20\x73\157\157\x6e\56\74\142\162\x2f\76\x3c\x2f\144\151\x76\76\74\142\162\76");
        $form["\x61\160\x69\137\141\x75\164\x68"]["\x6d\157\137\162\145\x73\x74\137\x61\160\x69\137\141\165\164\150\x65\x6e\164\151\143\141\164\x69\157\156\137\141\x75\164\150\145\156\164\x69\143\141\164\x6f\162"]["\145\x6e\x61\x62\154\145\137\141\x75\164\x68\145\156\164\x69\143\x61\x74\151\157\x6e"] = array("\x23\x74\x79\160\145" => "\143\150\x65\x63\x6b\142\x6f\170", "\x23\x74\x69\x74\154\145" => t("\x45\x6e\141\142\x6c\x65\x20\101\x75\164\x68\x65\156\164\151\143\141\164\x69\157\x6e"), "\x23\x64\145\146\x61\165\x6c\x74\x5f\x76\x61\x6c\165\145" => \Drupal::config("\162\x65\163\x74\137\141\160\x69\137\x61\165\x74\x68\145\156\164\151\x63\x61\x74\x69\157\156\56\163\x65\x74\x74\x69\156\147\163")->get("\x72\145\163\164\137\141\160\x69\x5f\x61\165\x74\x68\145\156\x74\151\x63\141\164\151\157\x6e\x5f\145\156\141\x62\x6c\x65\x5f\x61\165\164\150\145\x6e\164\x69\x63\x61\164\x69\157\156"), "\43\144\145\163\143\x72\151\160\164\x69\157\156" => "\x53\145\x6c\x65\143\x74\40\x74\x68\151\163\40\x63\150\x65\x63\x6b\142\157\x78\40\164\157\x20\145\156\x61\142\154\x65\x20\x41\x50\x49\40\x41\x75\164\x68\x65\x6e\164\151\x63\141\164\x69\x6f\156\x20");
        $form["\x61\x70\x69\x5f\x61\165\x74\x68"]["\155\157\137\x72\145\x73\x74\137\x61\160\x69\x5f\x61\x75\164\150\145\x6e\x74\x69\143\141\x74\x69\157\x6e\x5f\141\x75\x74\x68\x65\156\x74\151\x63\x61\x74\x6f\x72"]["\x77\150\151\164\x65\x6c\x69\x73\x74\137\147\145\164\137\x61\x70\x69\x73"] = array("\43\164\x79\160\145" => "\143\x68\x65\x63\153\142\x6f\x78", "\x23\164\x69\164\x6c\145" => t("\127\x68\151\164\x65\154\151\x73\164\40\x61\x6c\154\x20\x47\x45\124\x20\101\x50\111\x73"), "\x23\144\x65\146\x61\165\154\x74\137\x76\141\x6c\x75\x65" => \Drupal::config("\x72\x65\x73\x74\137\x61\x70\x69\x5f\x61\165\x74\150\145\156\164\151\143\141\x74\151\x6f\156\x2e\x73\145\x74\164\151\x6e\147\x73")->get("\x77\150\x69\x74\145\154\151\x73\x74\x5f\147\145\x74\x5f\141\160\151\x73"), "\43\x64\145\x73\143\x72\151\160\164\x69\x6f\x6e" => "\x53\x65\154\x65\x63\x74\40\164\150\151\x73\x20\143\150\x65\x63\x6b\142\x6f\170\40\164\157\x20\167\150\x69\x74\145\154\x69\x73\x74\40\141\154\154\40\x67\145\164\40\101\120\111\163");
        $form["\x61\160\x69\x5f\141\x75\164\150"]["\155\157\137\162\x65\x73\164\x5f\141\160\151\x5f\141\x75\164\x68\x65\x6e\x74\x69\x63\x61\x74\151\x6f\x6e\137\141\165\x74\150\x65\x6e\x74\x69\143\141\x74\157\162"]["\x73\141\166\x65\x5f\x62\141\x73\151\143\137\163\145\164\x74\151\x6e\x67\x73"] = array("\x23\164\x79\x70\145" => "\163\x75\142\x6d\x69\x74", "\43\x73\x75\146\x66\151\170" => "\x3c\x62\162\76\74\x68\x72\76\x3c\142\162\76", "\x23\x64\151\163\x61\x62\x6c\145\144" => $q2, "\43\142\165\164\x74\157\x6e\137\x74\x79\x70\x65" => "\160\x72\151\x6d\x61\x72\171", "\x23\166\141\x6c\x75\145" => t("\x53\x61\x76\x65\40\101\x62\157\x76\x65\40\123\x65\x74\164\151\156\x67\163"), "\x23\x73\x75\x62\x6d\x69\164" => array("\x3a\72\162\x65\x73\x74\x5f\x61\x70\151\137\141\165\164\x68\x65\156\x74\151\143\x61\164\x69\x6f\156\x5f\x73\x61\x76\145\x5f\x62\141\x73\151\143\x5f\143\x6f\156\146\151\x67"));
        $form["\141\160\151\x5f\x61\x75\x74\x68"]["\x6d\x6f\x5f\162\x65\x73\x74\137\x61\160\x69\137\x61\165\x74\150\145\x6e\164\151\143\x61\x74\151\157\156\x5f\141\165\x74\x68\145\x6e\164\151\x63\141\164\x6f\162"]["\163\145\164\164\151\156\x67\x73"]["\x61\143\164\151\166\145"] = array("\x23\164\171\x70\x65" => "\162\x61\144\x69\x6f\163", "\x23\144\x69\x73\x61\142\154\145\x64" => $q2, "\43\164\151\164\154\145" => '', "\43\x64\x65\x66\141\165\154\x74\137\x76\x61\154\x75\x65" => \Drupal::config("\162\x65\163\164\x5f\x61\160\151\x5f\141\165\x74\150\x65\x6e\x74\151\x63\141\164\x69\157\156\56\x73\145\164\x74\x69\156\x67\x73")->get("\141\x75\164\x68\x65\156\164\151\x63\141\164\x69\x6f\156\137\155\x65\x74\x68\157\144"), "\x23\157\x70\164\151\x6f\x6e\x73" => array(0 => $this->t("\102\x61\x73\151\143\40\101\165\164\150\145\156\164\x69\143\141\164\151\157\x6e"), 1 => $this->t("\101\x50\111\x20\x4b\x65\x79"), 2 => $this->t("\117\x41\165\x74\x68\57\101\143\x63\x65\163\163\x20\x54\x6f\x6b\145\156"), 3 => $this->t("\x4a\x57\x54"), 4 => $this->t("\105\x78\x74\145\x72\x6e\141\x6c\x20\111\x64\145\156\x74\151\x74\171\40\x50\162\157\166\x69\x64\145\x72")), "\43\x61\x74\x74\162\151\x62\165\x74\x65\x73" => array("\143\154\x61\163\163" => array("\x63\157\x6e\x74\141\x69\x6e\145\162\x2d\151\x6e\x6c\151\156\x65"), "\x73\x74\171\154\145" => "\155\141\162\x67\x69\156\x2d\162\x69\147\x68\164\x3a\65\160\170\73\40\155\141\x72\147\151\156\x2d\154\x65\x66\164\x3a\x32\160\170\73"));
        $form["\x61\160\x69\x5f\141\x75\164\150"]["\x6d\x6f\x5f\x72\145\x73\x74\137\x61\160\151\x5f\141\x75\x74\x68\145\x6e\164\151\x63\x61\x74\151\157\x6e\137\141\x75\x74\150\145\x6e\x74\x69\143\x61\x74\x6f\x72"]["\162\x65\163\164\137\141\x70\x69\137\x61\165\x74\x68\145\156\x74\151\x63\141\164\151\157\x6e\x5f\145\x78\x74\137\x6f\141\165\164\x68"] = array("\43\x74\x79\160\x65" => "\164\145\x78\x74\146\151\x65\x6c\144", "\x23\144\151\x73\x61\142\154\x65\x64" => $q2, "\x23\151\144" => "\x72\145\x73\x74\x5f\x61\160\151\x5f\x61\165\164\150\x65\x6e\x74\151\x63\x61\x74\151\157\x6e\137\164\x6f\x6b\x65\x6e\x5f\153\145\171", "\x23\x73\x74\x61\x74\x65\x73" => array("\166\151\x73\x69\x62\154\145" => array("\x3a\x69\156\x70\x75\164\x5b\x6e\x61\x6d\x65\x20\x3d\x20\42\x61\143\164\151\166\x65\42\x5d" => array("\166\x61\x6c\165\145" => 4))), "\x23\x74\151\x74\154\145" => $this->t("\x55\x73\x65\162\40\x49\156\x66\x6f\x20\x45\156\144\160\157\x69\156\x74\x3a\40"), "\43\x64\x65\146\x61\x75\x6c\164\x5f\166\141\x6c\165\145" => \Drupal::config("\x72\x65\x73\164\137\141\x70\151\x5f\x61\165\164\x68\x65\156\x74\151\x63\141\164\151\157\156\x2e\x73\145\164\164\151\x6e\x67\163")->get("\165\163\x65\x72\x5f\151\156\x66\157\137\x65\x6e\144\x70\157\151\156\164"), "\x23\x61\164\x74\162\151\x62\165\x74\x65\x73" => array("\x73\164\x79\154\145" => "\x77\151\x64\x74\x68\72\x31\x30\60\x25"), "\x23\160\x72\x65\x66\151\x78" => $M0);
        $form["\141\x70\151\137\141\165\x74\150"]["\x6d\157\x5f\162\145\163\x74\x5f\141\x70\x69\137\141\165\x74\150\145\156\x74\151\143\141\164\151\157\x6e\x5f\141\x75\x74\150\145\156\164\151\x63\141\164\157\x72"]["\x72\145\x73\164\137\x61\x70\151\x5f\141\x75\164\x68\x65\156\x74\x69\x63\141\x74\x69\157\x6e\x5f\x65\170\164\137\x6f\141\x75\x74\150\x5f\165\x73\x65\162\156\x61\155\145"] = array("\43\x74\171\160\145" => "\x74\x65\170\x74\146\x69\x65\154\x64", "\x23\x64\x69\x73\141\142\154\145\x64" => $q2, "\x23\x69\x64" => "\162\x65\x73\164\137\141\160\151\137\x61\x75\164\x68\145\156\164\x69\x63\x61\164\151\157\156\x5f\164\157\x6b\145\x6e\137\x6b\x65\171", "\43\163\x74\141\x74\x65\163" => array("\x76\x69\x73\x69\x62\x6c\x65" => array("\x3a\151\x6e\x70\165\164\x5b\156\141\155\x65\x20\75\40\x22\141\x63\164\151\166\x65\x22\x5d" => array("\166\141\x6c\165\145" => 4))), "\43\164\151\x74\154\x65" => $this->t("\125\x73\x65\x72\156\x61\x6d\x65\x20\101\164\164\x72\151\x62\165\164\145\72\40"), "\x23\144\145\146\x61\x75\x6c\164\137\166\x61\x6c\165\x65" => \Drupal::config("\162\x65\x73\164\137\141\x70\x69\x5f\141\165\164\150\x65\x6e\x74\x69\143\141\x74\151\157\156\x2e\163\145\164\164\x69\x6e\147\x73")->get("\x75\163\x65\x72\156\x61\155\x65\x5f\141\x74\164\162\151\142\x75\x74\x65"), "\x23\x61\164\x74\162\x69\142\165\164\x65\163" => array("\163\164\x79\154\145" => "\167\151\x64\164\150\x3a\x31\x30\x30\45"), "\43\x73\165\146\146\151\170" => $ed);
        $form["\141\x70\151\x5f\x61\165\x74\150"]["\155\157\137\x72\145\x73\x74\x5f\141\160\151\137\141\165\164\x68\145\x6e\164\x69\x63\141\x74\151\157\x6e\x5f\x61\165\164\x68\x65\x6e\x74\x69\x63\x61\164\157\x72"]["\x63\x72\x65\x61\164\145\137\165\x73\145\x72"] = array("\43\164\x79\160\x65" => "\143\x68\145\143\153\142\157\170", "\43\x74\x69\164\154\145" => t("\x43\x68\145\143\x6b\x20\164\150\x69\x73\x20\x6f\160\x74\x69\157\x6e\x20\x69\146\40\171\157\x75\40\x77\x61\x6e\164\x20\x74\x6f\x20\x65\x6e\x61\142\154\x65\x20\x61\165\164\157\x20\143\162\145\141\164\x69\157\156\40\157\x66\40\165\163\x65\x72\x73\x20\x69\146\40\x75\x73\145\162\40\x64\157\x65\x73\x20\156\157\164\x20\x65\x78\x69\x73\164\x2e"), "\x23\144\x65\x66\x61\x75\154\164\x5f\x76\x61\154\x75\145" => \Drupal::config("\x72\x65\163\x74\x5f\x61\160\x69\137\141\x75\x74\x68\x65\156\x74\x69\x63\x61\164\x69\x6f\156\x2e\163\x65\x74\164\x69\156\147\x73")->get("\145\170\137\x6f\x61\165\x74\150\137\143\162\x65\141\164\x65\137\156\145\x77\x5f\165\x73\x65\162"), "\x23\163\x74\141\164\145\x73" => array("\166\x69\x73\x69\x62\x6c\145" => array("\72\151\156\160\x75\x74\x5b\x6e\141\x6d\145\40\x3d\x20\42\x61\x63\164\151\x76\145\x22\x5d" => array("\x76\x61\x6c\165\x65" => 4))));
        $form["\x61\x70\x69\137\141\x75\164\x68"]["\162\145\163\x74\x5f\x61\160\x69\x5f\x61\x75\x74\150\145\156\164\x69\143\141\x74\151\x6f\156\137\163\141\166\x65\137\x65\170\x74\137\157\141\x75\x74\x68"] = array("\x23\x74\x79\160\145" => "\163\x75\x62\155\151\164", "\x23\x62\165\x74\164\x6f\x6e\137\x74\171\160\x65" => "\160\x72\x69\155\141\x72\171", "\43\144\x69\163\141\x62\x6c\145\144" => $q2, "\x23\x76\x61\154\x75\145" => t("\123\x61\x76\x65\x20\x45\170\164\40\x4f\101\165\x74\150\x20\x44\145\x74\x61\x69\x6c\x73"), "\43\163\164\x61\164\x65\x73" => array("\x76\151\x73\x69\142\154\x65" => array("\x3a\x69\156\x70\x75\x74\x5b\x6e\141\155\145\x20\75\x20\42\x61\143\164\x69\x76\145\42\135" => array("\166\x61\154\x75\x65" => 4))), "\43\x73\165\x62\x6d\x69\164" => array("\72\x3a\162\x65\163\x74\x5f\141\160\x69\137\141\165\x74\x68\x65\x6e\164\x69\x63\141\x74\x69\x6f\156\137\x73\141\166\145\x5f\x65\x78\x74\137\157\x61\165\x74\x68\x5f\x70\x72\x6f\166\x69\144\145\x72"));
        $form["\x61\160\x69\x5f\x61\165\164\150"]["\155\x6f\137\x72\145\x73\x74\x5f\x61\x70\151\x5f\141\165\164\150\145\156\164\151\x63\141\x74\x69\x6f\x6e\137\141\165\x74\x68\x65\156\x74\x69\143\141\x74\x6f\162"]["\162\145\x73\164\137\141\160\151\137\141\165\x74\x68\145\156\x74\x69\143\x61\x74\151\x6f\156\137\x6b\x65\171"] = array("\x23\164\x69\x74\x6c\x65" => $this->t("\x45\156\x74\145\162\40\125\x73\x65\x72\156\141\x6d\145\x3a\x20"), "\x23\x74\x79\x70\145" => "\x65\156\164\x69\164\x79\x5f\141\x75\164\x6f\x63\157\x6d\x70\x6c\145\x74\x65", "\43\144\151\163\x61\x62\x6c\145\144" => $q2, "\x23\151\x64" => "\162\145\163\164\137\x61\x70\x69\137\x61\x75\x74\150\x65\x6e\164\x69\143\141\x74\151\x6f\x6e\x5f\x74\x6f\153\x65\156\137\153\x65\x79", "\x23\x73\x74\x61\x74\x65\x73" => array("\166\x69\x73\x69\142\x6c\145" => array("\72\x69\156\x70\x75\164\133\x6e\141\155\x65\x20\75\x20\42\141\143\164\x69\166\145\42\135" => array("\x76\141\x6c\165\145" => 1))), "\x23\x61\164\x74\x72\151\x62\165\164\145\163" => array("\163\x74\171\x6c\145" => "\167\151\144\164\150\x3a\61\60\60\45", "\160\x6c\x61\143\145\150\157\x6c\144\145\x72" => "\105\x6e\x74\145\162\x20\x73\160\x65\x63\151\146\151\x63\x20\x75\163\x65\162\156\x61\155\x65\40\164\x6f\40\147\x65\x6e\145\162\141\x74\x65\x20\x41\x50\x49\x20\x4b\145\x79"), "\x23\x70\162\x65\x66\x69\x78" => $Kk, "\x23\163\x75\x66\146\151\170" => $fk, "\43\x74\141\x72\x67\145\x74\x5f\x74\171\x70\x65" => "\x75\163\145\x72", "\43\163\145\154\x65\x63\164\151\x6f\156\x5f\163\x65\164\x74\x69\x6e\x67\163" => ["\151\156\x63\x6c\165\x64\145\x5f\141\x6e\157\x6e\x79\155\x6f\x75\x73" => FALSE]);
        $form["\x61\x70\x69\137\141\165\164\150"]["\162\145\x73\x74\x5f\x61\160\151\x5f\x61\165\164\150\145\x6e\x74\x69\x63\141\164\x69\157\x6e\x5f\147\x65\156\x65\162\141\x74\145\x5f\153\x65\171"] = array("\x23\164\x79\x70\x65" => "\x73\x75\x62\155\x69\164", "\x23\x64\151\163\x61\x62\x6c\145\x64" => $q2, "\x23\x76\x61\x6c\165\145" => t("\x47\145\x6e\145\162\141\x74\145"), "\x23\163\164\x61\x74\x65\163" => array("\x76\x69\163\151\142\154\x65" => array("\x3a\x69\156\x70\165\164\133\x6e\x61\x6d\x65\x20\75\40\x22\141\x63\164\x69\x76\145\x22\135" => array("\166\141\154\165\x65" => 1))), "\43\x73\x75\142\x6d\x69\164" => array("\72\x3a\x72\145\x73\164\x5f\x61\160\x69\137\141\165\x74\x68\x65\156\x74\x69\143\141\164\x69\x6f\x6e\x5f\x67\145\x6e\145\x72\x61\x74\145\137\141\160\x69\x5f\164\x6f\153\x65\156"), "\43\x70\162\x65\x66\151\x78" => "\74\x74\144\x3e\74\142\162\x3e", "\x23\163\x75\146\x66\151\170" => "\74\57\164\144\76\74\x2f\x74\x72\76\74\57\164\141\142\154\x65\76\74\x2f\x64\151\x76\76\74\142\x72\76");
        $form["\141\x70\151\137\141\165\x74\150"]["\x72\145\163\x74\137\x61\x70\151\x5f\141\165\164\150\145\x6e\x74\x69\143\x61\164\x69\157\x6e\x5f\x6b\x65\171\x5f\163\x61\166\x65\137\163\145\164\x74\x69\156\x67\x73"] = array("\x23\x74\x79\160\x65" => "\163\165\x62\155\151\x74", "\43\x62\165\x74\164\157\156\x5f\164\x79\x70\x65" => "\160\162\151\155\141\162\x79", "\x23\x64\x69\163\x61\x62\154\x65\x64" => $q2, "\x23\166\x61\x6c\x75\x65" => t("\x53\141\x76\x65\x20\x43\157\x6e\146\x69\x67\165\x72\141\x74\151\157\156\x73"), "\43\163\x74\x61\164\145\x73" => array("\166\x69\163\151\x62\154\145" => array("\x3a\x69\x6e\x70\165\164\133\156\x61\x6d\x65\40\75\x20\42\141\143\164\x69\x76\x65\x22\x5d" => array("\166\141\154\x75\x65" => 1))), "\x23\x73\x75\x62\x6d\x69\164" => array("\x3a\x3a\x72\145\x73\164\137\x61\160\x69\137\141\165\164\150\145\156\164\151\143\141\x74\x69\x6f\156\x5f\x6b\145\171\137\163\141\166\145\137\163\145\164\164\151\x6e\x67\x73"));
        $form["\x61\160\151\x5f\x61\165\164\150"]["\x72\x65\x73\164\x5f\x61\x70\x69\137\141\165\x74\x68\145\156\x74\151\143\141\x74\x69\x6f\x6e\x5f\153\145\x79\x5f\147\x65\x6e\x65\x72\x61\164\145\x5f\x61\x6c\x6c"] = array("\43\164\x79\x70\145" => "\163\x75\142\155\151\x74", "\x23\142\x75\x74\164\157\x6e\137\164\x79\160\145" => "\160\162\x69\x6d\x61\x72\x79", "\43\144\x69\163\x61\142\x6c\145\144" => $q2, "\43\x76\x61\154\x75\145" => t("\x47\x65\x6e\x65\162\141\164\x65\40\113\145\x79\40\x66\x6f\x72\40\141\x6c\x6c\x20\165\x73\x65\x72\163"), "\43\x73\x74\141\164\x65\163" => array("\166\151\163\151\142\x6c\145" => array("\x3a\151\x6e\160\x75\x74\133\156\141\x6d\145\40\x3d\40\42\x61\x63\x74\151\x76\x65\42\x5d" => array("\x76\141\154\x75\145" => 1))), "\43\163\x75\142\x6d\x69\x74" => array("\x3a\x3a\x72\x65\163\164\137\141\160\151\137\x61\165\x74\x68\145\x6e\164\151\143\x61\x74\151\x6f\156\x5f\x6b\145\x79\137\147\145\x6e\145\162\141\164\145\137\x61\x6c\154"));
        $form["\141\160\151\137\x61\x75\x74\x68"]["\162\145\x73\164\x5f\141\160\151\137\141\x75\x74\x68\145\x6e\164\151\x63\x61\x74\151\157\156\x5f\141\x75\x74\150\145\x6e\x74\x69\x63\x61\164\151\157\156\x5f\x6d\145\x74\150\x6f\144\137\x73\x75\x62\x6d\x69\164"] = array("\43\164\x79\x70\x65" => "\163\165\142\x6d\x69\x74", "\x23\142\165\164\x74\x6f\156\137\164\x79\x70\x65" => "\x70\162\151\x6d\x61\162\x79", "\x23\x64\x69\163\141\142\154\x65\x64" => $q2, "\x23\x73\x74\141\164\145\163" => array("\x76\x69\163\x69\142\154\145" => array("\x3a\x69\x6e\x70\165\x74\133\156\x61\155\145\x20\75\40\x22\141\x63\x74\151\166\x65\42\135" => array("\x76\x61\x6c\x75\x65" => 0))), "\x23\x76\141\154\x75\145" => t("\x53\145\x6c\x65\143\x74\x20\115\x65\x74\150\157\144"), "\x23\x73\165\142\155\x69\164" => array("\72\x3a\x72\x65\163\164\x5f\x61\160\151\137\x61\x75\164\150\x65\x6e\x74\151\x63\141\x74\x69\157\156\137\x73\x61\166\x65\137\x62\141\x73\x69\x63\137\141\x75\164\x68\137\x63\x6f\156\x66"));
        $form["\x61\x70\151\137\x61\165\x74\150"]["\155\x6f\137\162\145\x73\164\x5f\141\160\x69\x5f\x61\165\164\x68\x65\156\x74\x69\143\141\x74\151\157\x6e\137\x61\x75\164\x68\x65\156\x74\151\143\141\164\157\x72"]["\x72\x65\163\164\x5f\x61\x70\x69\137\x61\x75\x74\150\145\x6e\164\x69\143\141\164\x69\157\156\x5f\x6f\141\165\164\150\x5f\143\x6c\x69\145\156\x74\x5f\x69\x64"] = array("\x23\x74\x79\160\145" => "\x74\x65\170\x74\x66\151\x65\x6c\x64", "\43\151\x64" => "\x72\x65\x73\x74\x5f\141\160\x69\x5f\x61\165\164\150\145\x6e\164\151\143\141\x74\151\157\156\137\164\x6f\x6b\145\x6e\x5f\153\x65\x79", "\43\163\x74\141\x74\x65\163" => array("\x76\x69\x73\151\142\154\145" => array("\x3a\x69\x6e\160\x75\x74\133\156\x61\155\x65\40\75\x20\x22\141\143\x74\x69\x76\x65\x22\135" => array("\166\x61\x6c\165\145" => 2))), "\x23\164\151\x74\154\145" => $this->t("\x43\154\x69\145\x6e\164\40\x49\104\x3a\x20"), "\43\144\x65\146\x61\165\x6c\164\137\166\141\154\x75\x65" => \Drupal::config("\162\145\163\164\137\141\160\x69\x5f\141\x75\x74\150\x65\156\164\151\x63\x61\164\151\157\156\x2e\163\x65\164\164\151\156\147\163")->get("\x6f\141\165\x74\150\137\x63\x6c\151\145\156\x74\137\x69\144"), "\43\x61\164\164\162\151\142\x75\164\145\x73" => array("\163\x74\x79\x6c\145" => "\x77\x69\x64\x74\x68\x3a\61\x30\x30\45"), "\x23\144\x69\x73\141\142\x6c\x65\x64" => "\x74\162\165\x65");
        $form["\141\x70\151\x5f\141\165\164\x68"]["\155\x6f\137\162\145\163\164\x5f\141\160\x69\137\141\165\x74\x68\x65\156\164\x69\143\x61\x74\151\157\156\x5f\141\165\x74\150\x65\x6e\x74\x69\x63\x61\164\157\162"]["\162\145\x73\x74\x5f\141\160\151\x5f\x61\x75\x74\150\145\156\164\151\143\x61\164\151\x6f\156\x5f\157\141\165\164\150\137\x63\154\151\x65\156\164\x5f\x73\x65\143\162\145\164"] = array("\43\164\x79\x70\145" => "\164\145\x78\x74\x66\x69\145\154\x64", "\x23\151\144" => "\x72\x65\163\x74\137\141\160\151\137\x61\x75\164\x68\145\156\x74\151\x63\x61\x74\x69\157\x6e\x5f\x74\157\x6b\x65\x6e\137\x6b\x65\171", "\43\x73\x74\141\x74\x65\x73" => array("\166\x69\x73\x69\x62\x6c\x65" => array("\72\x69\x6e\160\x75\x74\x5b\x6e\141\155\x65\40\x3d\x20\x22\x61\x63\x74\151\x76\145\42\135" => array("\x76\x61\154\165\145" => 2))), "\x23\x74\151\164\154\145" => $this->t("\x43\154\151\x65\x6e\x74\x20\123\145\143\162\145\x74\72\40"), "\x23\x64\145\x66\x61\165\154\x74\137\x76\x61\154\x75\145" => \Drupal::config("\162\x65\x73\164\137\141\160\x69\137\x61\x75\x74\150\x65\x6e\x74\x69\143\141\164\151\x6f\156\56\163\x65\164\x74\151\156\x67\163")->get("\x6f\x61\165\x74\150\137\143\x6c\x69\x65\156\x74\137\x73\145\143\x72\145\x74"), "\43\141\164\164\x72\151\142\x75\164\145\x73" => array("\x73\x74\x79\154\x65" => "\167\x69\144\164\x68\x3a\x31\x30\60\45"), "\43\x64\x69\163\x61\x62\154\145\144" => "\x74\x72\165\145");
        $form["\x61\160\151\137\x61\165\164\150"]["\162\145\163\164\x5f\x61\x70\x69\137\141\x75\164\150\x65\156\x74\151\143\x61\x74\151\157\156\x5f\147\145\156\145\162\x61\x74\145\137\141\x6e\x64\137\x73\145\143\162\145\164"] = array("\43\x74\171\x70\x65" => "\163\x75\x62\x6d\x69\164", "\x23\144\x69\x73\141\x62\x6c\145\144" => $q2, "\x23\x76\141\154\165\145" => t("\107\145\156\x65\x72\x61\x74\145\x20\141\40\156\145\x77\x20\x43\x6c\151\145\x6e\164\40\x49\x44\40\x61\156\x64\x20\123\x65\x63\x72\145\x74"), "\43\x73\x74\x61\x74\145\163" => array("\x76\151\x73\151\142\x6c\145" => array("\x3a\x69\156\x70\x75\164\x5b\156\x61\x6d\x65\40\x3d\x20\x22\x61\143\x74\x69\166\145\x22\135" => array("\166\x61\x6c\165\x65" => 2))), "\43\x73\165\142\155\151\x74" => array("\72\x3a\162\x65\163\164\x5f\141\160\x69\137\141\x75\x74\x68\x65\156\x74\151\x63\x61\164\151\157\x6e\137\147\145\x6e\145\162\x61\x74\x65\137\x6f\141\x75\x74\x68\x5f\153\145\x79\163"));
        $form["\141\160\151\x5f\x61\165\x74\150"]["\x72\x65\163\164\137\141\160\151\x5f\141\165\x74\150\x65\x6e\164\x69\143\141\164\x69\x6f\x6e\137\163\x61\x76\145\137\157\141\165\x74\x68\x5f\143\x6f\156\146\x69\x67"] = array("\x23\x74\171\x70\x65" => "\163\x75\142\155\151\x74", "\43\x62\x75\x74\164\157\x6e\x5f\x74\x79\x70\145" => "\x70\x72\151\x6d\x61\x72\x79", "\43\144\151\163\x61\142\x6c\x65\144" => $q2, "\x23\166\141\154\165\145" => t("\x53\141\x76\145\x20\123\x65\x74\164\151\x6e\147\x73"), "\x23\163\164\141\164\145\163" => array("\x76\151\163\151\x62\154\x65" => array("\x3a\x69\x6e\160\165\x74\x5b\156\x61\155\x65\x20\x3d\x20\42\141\x63\164\151\x76\145\42\135" => array("\166\141\154\165\145" => 2))), "\x23\x73\x75\142\155\151\164" => array("\x3a\x3a\162\145\163\164\x5f\x61\x70\151\x5f\x61\165\x74\150\145\x6e\164\x69\x63\x61\164\151\x6f\x6e\137\x73\141\166\x65\x5f\157\141\165\164\150\137\x74\157\x6b\145\156"));
        $form["\x61\x70\x69\x5f\x61\165\x74\x68"]["\x6d\x6f\137\162\145\163\x74\137\x61\160\x69\137\x61\x75\x74\x68\x65\156\164\x69\143\141\164\x69\x6f\156\137\141\165\x74\150\x65\x6e\x74\x69\143\141\164\157\x72"]["\152\167\x74\x5f\155\x65\164\x68\x6f\x64\137\x75\x73\145\x72\156\141\x6d\x65\x5f\141\164\164\x72\x69\142\165\164\145"] = array("\43\x74\171\x70\145" => "\x74\x65\x78\164\x66\151\145\x6c\144", "\43\151\x64" => "\x72\x65\163\x74\x5f\141\160\x69\x5f\141\165\164\150\x65\x6e\x74\x69\x63\x61\164\x69\157\156\137\164\157\153\x65\156\137\x6b\145\171", "\43\163\x74\x61\164\x65\163" => array("\x76\x69\163\x69\142\x6c\145" => array("\x3a\x69\156\x70\x75\x74\x5b\x6e\141\155\x65\40\x3d\x20\x22\141\143\x74\151\166\x65\x22\135" => array("\x76\141\154\165\145" => 3))), "\x23\164\151\x74\154\x65" => $this->t("\x55\x73\x65\162\x6e\x61\x6d\145\40\101\164\164\162\x69\x62\165\x74\145\72\40"), "\43\x64\x65\x66\x61\x75\154\x74\137\x76\141\x6c\x75\x65" => \Drupal::config("\162\145\163\x74\137\x61\160\x69\137\x61\x75\x74\150\145\156\x74\x69\x63\141\164\151\157\156\x2e\x73\x65\x74\164\x69\156\x67\163")->get("\x6a\167\164\137\x6d\x65\x74\150\157\144\137\x75\x73\x65\162\156\x61\x6d\x65\x5f\141\x74\164\x72\x69\x62\165\164\x65"), "\x23\x61\164\164\162\151\x62\x75\164\145\163" => array("\x73\164\x79\x6c\145" => "\167\151\144\x74\x68\x3a\x31\x30\60\x25"));
        $form["\141\x70\151\137\x61\x75\x74\x68"]["\x6d\x6f\137\x72\x65\163\x74\x5f\x61\x70\x69\x5f\x61\x75\164\150\145\156\164\151\x63\x61\x74\x69\157\x6e\137\141\x75\x74\150\x65\156\x74\151\143\x61\x74\x6f\162"]["\152\x77\x74\x5f\x6d\145\164\x68\x6f\144\137\x6a\167\153\163\137\x75\162\151"] = array("\x23\164\x79\160\x65" => "\165\x72\x6c", "\43\x69\x64" => "\162\145\163\x74\137\141\160\151\x5f\141\x75\164\150\x65\x6e\x74\x69\x63\x61\x74\151\157\156\137\x74\157\153\x65\156\x5f\153\x65\171", "\43\x73\x74\141\x74\x65\163" => array("\166\151\163\151\142\154\x65" => array("\x3a\x69\156\160\x75\x74\133\x6e\x61\x6d\145\40\75\40\42\141\x63\164\151\166\145\x22\135" => array("\166\141\x6c\165\145" => 3))), "\43\x74\x69\164\x6c\145" => $this->t("\x4a\x57\113\x53\40\125\x52\x49\x3a\x20\x3c\x69\x3e\50\x4f\x70\x74\151\x6f\x6e\x61\x6c\51\x3c\57\151\76"), "\43\x64\145\x66\141\x75\154\x74\137\166\141\x6c\x75\x65" => \Drupal::config("\x72\x65\x73\x74\x5f\x61\x70\x69\137\141\165\164\x68\145\x6e\164\x69\x63\141\x74\151\x6f\156\x2e\163\145\164\x74\x69\156\x67\x73")->get("\x6a\x77\164\137\x6d\145\x74\150\x6f\144\137\x6a\x77\x6b\x73\137\x75\162\x69"), "\43\141\164\164\x72\151\x62\x75\x74\x65\163" => array("\163\164\171\x6c\x65" => "\167\151\x64\x74\150\x3a\61\x30\60\x25"));
        $form["\141\160\x69\137\x61\x75\164\x68"]["\x6d\157\137\x72\145\163\x74\x5f\x61\160\151\x5f\x61\165\164\x68\x65\156\x74\x69\x63\x61\164\x69\157\156\137\x61\x75\x74\150\x65\x6e\x74\x69\x63\141\x74\x6f\x72"]["\143\162\x65\141\164\x65\137\x75\163\x65\x72\x5f\x6a\167\164"] = array("\43\164\x79\160\x65" => "\143\150\x65\x63\153\x62\157\170", "\x23\x74\x69\164\x6c\x65" => t("\103\150\145\143\153\40\x74\150\151\x73\40\x6f\160\x74\x69\157\156\x20\151\146\40\171\x6f\165\40\x77\141\156\x74\x20\164\x6f\40\x65\x6e\x61\x62\154\145\x20\x61\165\x74\157\40\x63\x72\145\x61\164\x69\x6f\156\x20\x6f\146\x20\x75\x73\145\162\x73\x20\x69\x66\x20\165\163\x65\162\x20\144\x6f\x65\x73\x20\156\x6f\164\x20\x65\x78\151\x73\x74\x2e"), "\x23\144\145\146\x61\x75\x6c\x74\137\166\141\x6c\165\x65" => \Drupal::config("\162\x65\163\164\x5f\141\160\151\137\141\165\164\x68\x65\x6e\x74\x69\x63\x61\x74\x69\x6f\x6e\x2e\x73\x65\x74\x74\151\156\147\x73")->get("\x6a\167\x74\137\x63\x72\145\x61\164\x65\137\x6e\x65\x77\137\165\x73\145\162"), "\43\x73\x74\x61\x74\145\x73" => array("\x76\151\163\x69\142\x6c\145" => array("\72\x69\x6e\x70\165\164\x5b\156\141\x6d\145\40\x3d\x20\42\x61\143\x74\x69\x76\x65\42\x5d" => array("\166\141\154\x75\x65" => 3))));
        $form["\x61\160\x69\137\x61\165\164\x68"]["\162\145\x73\x74\x5f\x61\x70\151\x5f\141\x75\x74\x68\145\156\164\x69\143\x61\x74\x69\157\x6e\137\147\x65\156\145\x72\x61\x74\145\x5f\x69\x64\137\164\157\153\x65\156"] = array("\x23\x74\171\x70\145" => "\x73\165\x62\155\x69\x74", "\43\142\165\x74\x74\157\156\137\x74\171\x70\x65" => "\160\162\x69\155\141\x72\171", "\43\166\141\154\165\x65" => t("\123\x61\166\x65\40\x4a\127\124\40\103\157\x6e\146\151\x67\165\162\x61\164\x69\157\156"), "\x23\163\164\x61\164\x65\x73" => array("\x76\151\163\151\142\x6c\145" => array("\x3a\151\x6e\160\x75\x74\133\156\141\155\145\40\x3d\40\x22\141\143\x74\151\166\x65\42\x5d" => array("\x76\x61\154\x75\145" => 3))), "\43\163\x75\x62\x6d\151\x74" => array("\72\x3a\162\x65\x73\164\x5f\141\160\151\x5f\x61\x75\x74\x68\x65\x6e\164\x69\143\x61\164\x69\x6f\156\137\x73\x61\x76\145\x5f\151\144\137\x74\x6f\x6b\145\156"));
        $form["\141\144\166\x61\156\x63\145\x64\x5f\x73\x65\x74\164\151\x6e\147\x73"] = array("\43\x74\x79\x70\145" => "\144\x65\x74\141\x69\x6c\163", "\43\164\151\x74\154\145" => $this->t("\101\144\x76\x61\x6e\143\x65\x20\x53\145\164\x74\x69\156\147\163"), "\x23\147\x72\x6f\165\x70" => "\151\x6e\x66\157\162\x6d\x61\164\x69\x6f\156");
        $form["\x61\x64\x76\141\156\143\145\x64\137\163\x65\164\x74\x69\156\147\163"]["\163\165\160\160\157\162\x74\x5f\143\157\x6e\164\x61\x69\x6e\145\x72\x5f\157\165\x74\x6c\x69\x6e\145"] = array("\x23\x74\x79\160\x65" => "\146\x69\145\154\x64\163\x65\x74");
        $form["\x61\x64\166\141\x6e\x63\145\x64\x5f\x73\x65\x74\164\x69\156\147\x73"]["\x73\165\x70\x70\x6f\x72\164\137\143\157\x6e\164\x61\151\156\145\162\x5f\157\x75\164\154\151\x6e\145"]["\160\165\x62\x6c\151\x73\150\x65\162"] = array("\43\x6d\141\x72\x6b\165\x70" => "\x3c\x68\63\x3e\x3c\x62\x3e\101\104\126\101\x4e\103\x45\104\40\123\x45\x54\x54\111\116\107\123\72\74\x2f\142\76\x3c\x2f\x68\x33\76\74\150\x72\x3e\x3c\142\x72\x3e\x3c\144\x69\166\x20\x63\154\141\x73\163\75\42\155\157\x5f\162\145\x73\x74\137\x61\x70\151\137\x68\151\x67\x68\154\151\147\150\164\137\x62\141\143\x6b\147\162\157\x75\156\x64\x5f\156\x6f\164\x65\137\x31\x22\x3e\x4e\145\145\x64\40\x61\x6e\171\x20\150\x65\x6c\160\77\40\x4a\x75\163\x74\40\x73\x65\156\144\40\165\x73\x20\141\x20\x71\x75\145\x72\x79\40\x61\x6e\x64\40\x77\x65\x20\x77\x69\154\154\40\x67\145\164\40\x62\141\x63\153\40\164\157\x20\171\157\165\40\x73\x6f\157\156\56\x3c\142\162\x2f\76\74\x2f\144\151\x76\76\x3c\142\162\x3e");
        $form["\141\x64\x76\x61\156\143\x65\144\137\163\145\164\x74\x69\156\147\163"]["\x73\165\160\160\x6f\162\x74\137\143\x6f\156\x74\x61\151\156\145\162\137\157\165\164\154\x69\156\145"]["\x63\165\x73\164\157\155\x5f\x68\145\x61\144\145\x72\163"] = array("\43\164\x79\160\x65" => "\144\x65\x74\x61\x69\154\163", "\x23\164\151\x74\154\145" => $this->t("\x20\x43\x75\x73\x74\x6f\x6d\x20\x48\145\x61\144\145\162\40"), "\43\x64\x65\x73\x63\162\151\160\164\151\x6f\156" => "\x54\150\x69\x73\x20\146\145\141\164\x75\162\145\40\x61\154\x6c\x6f\167\163\40\171\157\165\x20\x74\157\40\163\x65\x74\40\x63\x75\x73\164\x6f\x6d\40\150\x65\141\x64\145\162\x73\40\x66\x6f\162\x20\x61\x75\164\x68\x65\x6e\164\x69\143\141\164\151\157\156\56\40\x49\146\x20\x79\157\x75\x20\167\x61\x6e\164\40\164\x6f\40\x61\x75\x74\x68\x65\156\164\151\143\141\x74\145\x20\164\150\145\x20\104\x72\x75\160\141\154\x20\x52\x45\x53\x54\40\101\x50\111\163\x20\151\156\40\x61\x20\x6d\x6f\162\x65\x20\163\x65\143\165\x72\x65\x20\167\x61\171\54\x20\x79\x6f\165\x20\x63\x61\x6e\x20\x73\x65\164\x20\141\x20\x63\x75\x73\x74\157\x6d\40\110\x65\x61\144\x65\162\56");
        $form["\141\144\x76\141\156\143\x65\x64\x5f\x73\145\x74\x74\x69\x6e\x67\163"]["\x73\165\x70\160\157\x72\x74\x5f\x63\x6f\156\164\x61\151\156\x65\x72\x5f\157\x75\x74\154\x69\156\145"]["\143\165\x73\x74\x6f\155\x5f\150\145\x61\x64\x65\162\163"]["\144\x69\166\x5f\153\x65\171"] = array("\43\164\x79\x70\145" => "\164\145\x78\x74\x66\151\x65\154\144", "\x23\144\151\163\141\142\154\x65\144" => $q2, "\x23\x69\144" => "\162\145\163\164\137\141\x70\x69\137\x61\165\164\x68\145\x6e\164\151\143\141\x74\151\157\156\137\164\157\x6b\x65\x6e\137\153\145\x79", "\x23\144\145\146\141\x75\x6c\x74\137\166\141\x6c\x75\x65" => \Drupal::config("\x72\145\x73\x74\x5f\x61\x70\151\137\141\165\164\x68\x65\156\164\151\x63\141\x74\151\x6f\156\56\x73\x65\x74\x74\151\156\147\163")->get("\143\x75\x73\x74\x6f\x6d\x5f\150\145\x61\x64\145\x72"), "\43\x74\x69\x74\154\x65" => $this->t("\103\165\x73\x74\157\x6d\40\x68\145\x61\144\x65\162\40\146\x6f\x72\x20\141\x75\164\150\145\156\x74\151\143\x61\164\x69\x6f\x6e\72\40"), "\x23\x61\164\x74\162\151\x62\165\164\145\163" => array("\163\164\x79\x6c\x65" => "\167\151\x64\164\150\x3a\65\x30\x25"));
        $form["\141\144\x76\141\x6e\x63\145\x64\x5f\x73\145\164\x74\151\x6e\147\163"]["\x73\165\x70\160\157\x72\164\137\x63\x6f\156\x74\141\x69\x6e\x65\162\x5f\157\x75\x74\x6c\x69\156\x65"]["\143\x75\163\x74\x6f\x6d\137\150\145\x61\x64\x65\x72\x73"]["\144\151\x76\x5f\x6b\145\x79\x33"] = array("\x23\164\171\x70\145" => "\163\165\x62\x6d\151\x74", "\43\142\165\x74\x74\x6f\x6e\x5f\164\171\x70\145" => "\160\162\x69\155\141\x72\171", "\43\x64\151\x73\141\142\x6c\145\144" => $q2, "\43\166\x61\x6c\x75\145" => t("\x53\141\x76\x65\40\103\x6f\x6e\146\x69\x67\x75\162\x61\x74\151\x6f\156"), "\x23\x73\x75\x62\155\x69\x74" => array("\x3a\x3a\143\x75\163\164\157\155\137\150\145\x61\144\145\162\137\x73\165\142\x6d\x69\164"));
        $form["\141\x64\166\x61\x6e\143\145\x64\137\x73\x65\164\x74\151\x6e\147\x73"]["\x73\x75\160\x70\x6f\162\x74\x5f\143\x6f\156\x74\x61\151\156\x65\162\x5f\x6f\x75\x74\x6c\151\156\145"]["\x74\157\153\145\156\x5f\x65\170\160\151\x72\171"] = array("\43\x74\171\160\x65" => "\144\x65\164\x61\x69\154\163", "\43\x74\x69\164\154\x65" => $this->t("\40\x54\157\x6b\145\x6e\40\x45\170\x70\151\162\171\x20\x43\157\156\146\x69\147\x75\162\x61\164\151\x6f\156\x73"), "\43\144\145\163\x63\x72\x69\160\x74\151\157\x6e" => "\105\154\151\x67\x69\142\x6c\145\x20\x66\x6f\x72\40\117\101\x75\164\x68\40\x32\x2e\x30\x20\141\x6e\x64\40\x4a\127\124\40\x41\x75\x74\x68\145\156\x74\x69\x63\x61\x74\151\157\x6e\x2e\x20\x4a\x57\x54\40\124\157\x6b\145\156\40\141\156\144\40\164\x68\x65\x20\117\x41\165\x74\x68\40\x41\143\143\145\163\x73\40\x54\157\x6b\145\x6e\x20\167\151\154\154\x20\142\145\x20\x65\x78\160\x69\x72\x65\x64\40\157\x6e\x20\x74\150\145\40\x67\151\166\x65\156\x20\164\151\x6d\x65\56");
        $form["\x61\x64\x76\141\156\x63\x65\144\137\x73\145\x74\x74\151\x6e\x67\163"]["\x73\165\160\160\x6f\x72\164\137\143\157\156\164\x61\x69\x6e\x65\162\x5f\157\x75\164\154\151\x6e\145"]["\164\x6f\153\x65\156\x5f\x65\x78\x70\151\162\x79"]["\x61\x63\143\145\x73\x73\137\164\157\153\x65\x6e\x5f\145\x78\160\151\x72\171\137\164\151\155\145"] = array("\x23\164\x79\x70\x65" => "\164\x65\x78\164\146\x69\x65\x6c\x64", "\43\144\151\x73\x61\142\154\x65\144" => $q2, "\43\164\x69\164\x6c\145" => $this->t("\x54\x6f\x6b\x65\x6e\x20\x45\170\x70\x69\162\x79\x20\124\151\x6d\x65\x20\x28\111\156\40\155\151\x6e\x75\164\145\163\51\72\x20"), "\x23\x64\x65\x66\x61\x75\154\x74\x5f\x76\x61\x6c\x75\x65" => \Drupal::config("\162\145\x73\164\x5f\x61\x70\x69\137\x61\165\164\150\x65\x6e\x74\151\143\x61\x74\151\x6f\156\x2e\x73\145\x74\164\x69\x6e\147\163")->get("\x74\x6f\153\145\156\137\145\170\160\x69\162\x79"), "\x23\x61\x74\x74\162\x69\x62\x75\x74\145\163" => array("\x73\x74\x79\154\x65" => "\167\x69\144\x74\x68\72\x35\60\45"));
        $form["\x61\144\166\x61\156\143\145\144\x5f\x73\x65\x74\x74\151\x6e\x67\163"]["\163\165\x70\x70\157\x72\164\x5f\x63\157\156\x74\x61\151\156\x65\x72\137\x6f\x75\x74\x6c\151\156\x65"]["\x74\x6f\153\x65\156\x5f\145\170\160\151\162\171"]["\x73\x75\160\x70\157\x72\x74\x5f\143\157\156\x74\x61\151\156\x65\162\137\x6f\x75\164\x6c\x69\x6e\145"] = array("\x23\x74\171\x70\x65" => "\x73\165\x62\x6d\x69\164", "\x23\142\165\164\x74\x6f\x6e\137\x74\171\160\145" => "\160\x72\x69\x6d\x61\x72\171", "\43\144\x69\x73\141\x62\x6c\145\x64" => $q2, "\x23\x76\x61\x6c\165\x65" => t("\x53\141\166\145\40\124\157\x6b\x65\x6e\x20\x43\157\156\x66\151\147\x75\162\141\x74\151\x6f\x6e"), "\43\x73\165\x62\155\x69\x74" => array("\72\72\164\x6f\153\x65\x6e\x5f\145\x78\x70\x69\x72\171\x5f\x73\x75\142\155\151\x74"));
        $form["\x61\x64\166\141\156\143\x65\144\137\163\145\x74\164\x69\x6e\x67\x73"]["\x73\165\160\x70\157\162\x74\x5f\x63\157\156\164\141\x69\x6e\x65\162\137\157\x75\164\154\x69\x6e\145"]["\154\151\163\x74\137\151\160"] = array("\43\164\x79\x70\145" => "\144\145\164\141\x69\x6c\x73", "\43\x74\x69\x74\x6c\x65" => $this->t("\101\154\154\157\167\40\46\x20\122\x65\163\x74\162\x69\143\x74\x20\111\x70\x20\101\x64\144\162\145\163\x73\145\163"), "\43\144\x65\163\x63\x72\151\160\164\151\157\156" => '');
        $form["\x61\x64\x76\x61\156\143\145\144\137\163\x65\x74\164\151\x6e\147\x73"]["\163\x75\160\160\157\162\164\x5f\143\x6f\156\x74\141\x69\x6e\145\x72\x5f\x6f\165\x74\154\151\156\145"]["\154\x69\x73\x74\137\x69\x70"]["\163\145\x74\164\x69\x6e\147\163"] = array("\x23\x74\x79\x70\145" => "\162\141\x64\x69\x6f\163", "\x23\144\151\x73\141\142\154\x65\x64" => $q2, "\x23\x70\162\145\x66\x69\170" => "\x3c\x68\x72\76\74\142\x72\76", "\x23\144\x65\146\141\165\x6c\164\137\x76\x61\x6c\165\x65" => \Drupal::config("\x72\145\x73\164\137\x61\160\x69\137\141\x75\164\x68\145\156\x74\x69\x63\x61\164\x69\157\156\56\163\x65\x74\164\151\156\147\x73")->get("\x69\160\137\x61\143\143\x65\x73\163\x5f\164\171\x70\x65"), "\x23\x74\151\164\154\145" => '', "\x23\x6f\160\164\151\x6f\x6e\x73" => array(0 => $this->t("\x41\154\x6c\157\x77\x65\x64\40\111\120\40\101\144\144\x72\145\x73\x73\145\x73"), 1 => $this->t("\x42\x6c\157\143\x6b\145\x64\x20\x49\120\40\x41\x64\144\x72\145\163\x73\145\163")), "\x23\x61\164\164\x72\151\x62\x75\x74\x65\163" => array("\x63\x6c\x61\163\x73" => array("\143\157\156\164\x61\151\156\145\x72\x2d\x69\156\x6c\x69\156\145")));
        $form["\141\x64\166\141\156\x63\x65\x64\x5f\x73\x65\x74\164\x69\x6e\x67\163"]["\x73\x75\160\x70\157\162\164\137\x63\157\156\x74\141\x69\156\145\162\137\x6f\x75\x74\x6c\x69\156\x65"]["\154\151\163\164\x5f\151\160"]["\151\160\x5f\164\145\x78\x74\141\162\x65\x61"] = array("\43\164\x79\x70\x65" => "\x74\x65\170\x74\141\x72\145\x61", "\43\x64\151\163\141\x62\x6c\145\x64" => $q2, "\x23\x64\145\x66\141\x75\154\x74\137\166\x61\x6c\165\x65" => \Drupal::config("\162\x65\163\x74\x5f\x61\x70\x69\x5f\141\165\164\x68\145\x6e\x74\151\143\141\164\151\x6f\x6e\x2e\x73\145\x74\x74\151\156\147\x73")->get("\x6c\151\163\x74\137\x6f\x66\137\x69\x70\163"), "\43\164\151\x74\154\x65" => $this->t("\131\157\165\40\143\x61\x6e\x20\x61\x64\144\x20\164\150\145\x20\111\x50\x20\x41\x64\x64\162\x65\x73\x73\x65\x73\x20\150\x65\x72\145\72\x20"), "\x23\x61\164\164\x72\151\142\x75\164\145\163" => array("\163\164\171\154\145" => "\167\151\x64\164\150\72\61\x30\60\x25", "\x70\154\x61\143\x65\x68\157\154\x64\145\162" => "\131\x6f\165\40\143\141\156\40\x61\x6c\163\157\x20\141\144\x64\40\x6d\165\154\164\x69\x70\x6c\x65\x20\101\120\111\163\x20\165\163\151\156\x67\40\141\x20\x3b\40\x61\163\x20\141\40\163\x65\160\141\162\141\164\157\162"));
        $form["\x61\x64\166\x61\156\x63\145\144\137\x73\145\x74\x74\x69\156\147\x73"]["\163\165\x70\160\x6f\x72\164\137\143\x6f\156\x74\x61\x69\156\x65\x72\137\x6f\x75\x74\x6c\x69\x6e\x65"]["\154\151\163\164\x5f\151\160"]["\x74\x6f\153\145\x6e\x5f\163\x75\x62\x6d\151\x74\x5f\x6b\145\171\x33"] = array("\43\x74\171\x70\145" => "\163\x75\x62\155\x69\164", "\43\x64\151\x73\x61\x62\154\x65\144" => $q2, "\43\142\165\x74\164\x6f\156\137\164\171\x70\x65" => "\160\x72\x69\155\x61\162\x79", "\43\156\x61\155\x65" => "\x73\x75\142\x6d\x69\x74", "\43\x76\x61\x6c\165\145" => t("\123\141\x76\145\40\111\x50\40\x43\157\156\146\x69\x67\165\162\x61\x74\151\x6f\156"), "\43\163\165\x62\155\151\x74" => array("\72\x3a\x69\160\137\162\145\x73\x74\x72\151\143\x74\151\x6f\x6e\137\163\165\142\x6d\151\164"));
        $form["\141\144\166\x61\156\x63\145\144\137\163\145\x74\x74\151\156\x67\163"]["\x73\165\160\160\x6f\162\164\x5f\x63\157\x6e\164\x61\151\156\145\162\137\x6f\x75\164\x6c\x69\x6e\145"]["\145\x6e\141\142\154\145\137\141\160\151\x5f\x63\x68\145\x63\x6b\x62\157\170\x65\163"] = array("\x23\x74\171\160\145" => "\x64\145\x74\x61\151\x6c\163", "\x23\164\x69\164\x6c\145" => $this->t("\x41\120\111\163\40\x74\157\x20\x62\x65\40\122\x65\x73\x74\162\151\143\164\145\x64"));
        $form["\141\x64\166\141\x6e\143\x65\144\137\163\145\x74\164\151\x6e\x67\x73"]["\163\x75\x70\x70\157\162\x74\137\143\x6f\x6e\164\141\x69\x6e\x65\162\x5f\157\165\164\154\151\x6e\x65"]["\145\x6e\x61\x62\154\x65\x5f\141\x70\151\x5f\143\x68\x65\x63\153\142\x6f\x78\x65\163"]["\145\156\x61\x62\154\x65\x5f\112\x53\x4f\116\x5f\141\x70\151\163"] = array("\43\164\171\160\145" => "\x63\x68\145\x63\153\142\157\x78", "\43\144\x65\146\x61\x75\x6c\x74\137\166\x61\x6c\165\145" => \Drupal::config("\x72\x65\x73\164\x5f\x61\160\151\x5f\x61\165\x74\x68\145\156\164\151\x63\x61\x74\x69\157\156\x2e\x73\145\164\x74\x69\x6e\147\163")->get("\162\x65\163\x74\137\x61\x70\x69\x5f\141\x75\164\x68\145\x6e\164\151\143\x61\x74\x69\x6f\156\137\145\x6e\141\142\x6c\x65\137\x6a\x73\157\156\137\141\x70\151\137\141\165\164\x68\145\x6e\164\x69\143\x61\x74\x69\x6f\156"), "\43\x74\x69\164\154\x65" => "\74\142\76\74\141\x20\150\x72\145\x66\75\42" . MiniorangeApiAuthConstants::DRUPAL_SITE . "\57\x64\x6f\x63\x73\x2f\x63\x6f\x72\x65\x2d\155\157\x64\x75\154\x65\163\x2d\141\x6e\x64\55\164\150\145\155\x65\163\x2f\x63\x6f\162\145\55\x6d\157\x64\165\x6c\145\163\x2f\x6a\163\157\156\x61\160\151\55\155\x6f\x64\x75\x6c\145\x22\x20\x74\x61\162\x67\x65\164\75\42\x5f\142\154\x61\x6e\153\42\x3e\112\x53\x4f\x4e\72\x41\120\x49\x20\155\x6f\x64\x75\x6c\145\x20\x41\120\x49\163\x3c\57\141\76\x3c\57\142\x3e\x20\x28\x41\154\167\x61\171\163\x20\163\160\145\143\151\x66\x79\x20\164\150\145\x20\74\142\76\74\x75\x3e\x2f\152\163\x6f\x6e\x61\160\x69\57\x3c\57\x75\x3e\74\x2f\x62\x3e\x20\151\x6e\x20\164\150\145\x20\101\x50\111\x2c\x20\145\x2e\147\56\x20\x68\164\x74\x70\x3a\57\57\145\x78\141\x6d\x70\154\145\x2e\143\x6f\155\x2f\152\x73\157\156\141\160\151\57\156\157\144\x65\x2f\x61\x72\x74\151\x63\154\x65\57\x7b\173\x61\162\x74\x69\143\x6c\x65\x5f\165\x75\151\144\x7d\175\51");
        $form["\141\x64\166\141\x6e\143\145\x64\x5f\x73\x65\164\164\151\x6e\x67\x73"]["\x73\x75\x70\x70\x6f\162\164\x5f\x63\x6f\156\x74\x61\x69\x6e\145\x72\137\157\x75\164\x6c\x69\x6e\145"]["\145\156\x61\142\154\x65\137\x61\160\x69\x5f\143\150\145\x63\153\x62\157\170\x65\163"]["\x65\x6e\x61\x62\154\145\137\122\105\x53\x54\137\x61\160\x69\x73"] = array("\x23\x74\x79\160\x65" => "\x63\x68\145\143\x6b\142\x6f\170", "\x23\x64\145\146\x61\x75\x6c\164\137\x76\141\x6c\x75\x65" => \Drupal::config("\x72\145\x73\x74\137\141\160\151\137\141\x75\x74\x68\x65\156\x74\151\x63\x61\164\x69\x6f\x6e\x2e\163\145\x74\164\151\x6e\x67\x73")->get("\x72\x65\163\x74\137\x61\160\x69\x5f\141\x75\164\x68\145\156\164\151\143\x61\x74\x69\x6f\156\137\x65\x6e\x61\142\154\x65\x5f\x72\x65\163\164\137\x61\x70\151\x5f\x61\x75\x74\x68\x65\x6e\164\151\x63\x61\164\x69\x6f\156"), "\x23\164\151\x74\154\x65" => "\x3c\142\76\74\x61\x20\x74\141\x72\x67\x65\x74\x3d\x22\137\x62\154\x61\x6e\153\x22\x20\x68\x72\145\x66\x3d\x22" . MiniorangeApiAuthConstants::DRUPAL_SITE . "\x2f\x64\x6f\x63\163\x2f\70\57\143\x6f\x72\145\57\x6d\157\x64\165\154\x65\x73\x2f\162\x65\163\x74\x22\x3e\x52\105\123\x54\x66\165\x6c\x20\127\x65\x62\40\123\145\162\x76\151\143\x65\x73\x20\101\x50\x49\x73\74\57\141\x3e\x3c\57\x62\76\40\x28\x41\x6c\x77\x61\171\163\x20\x73\160\145\x63\151\146\171\40\x74\x68\x65\x20\x3c\142\x3e\77\137\146\157\162\155\x61\164\75\74\57\x62\x3e\x20\x71\165\x65\x72\x79\40\x61\x72\x67\x75\155\x65\x6e\x74\x2c\x20\145\x2e\x67\56\x20\x68\164\x74\160\72\x2f\57\145\170\141\x6d\x70\154\145\x2e\143\x6f\155\x2f\156\x6f\x64\145\57\x31\77\137\146\x6f\x72\x6d\x61\164\75\x6a\x73\x6f\x6e\x29");
        $form["\x61\144\166\x61\156\143\x65\144\x5f\163\x65\164\164\x69\156\x67\163"]["\163\x75\x70\160\x6f\162\x74\x5f\x63\x6f\x6e\164\141\151\x6e\145\162\137\x6f\x75\164\154\151\156\145"]["\145\156\x61\142\x6c\145\x5f\141\160\151\x5f\143\150\x65\x63\153\142\x6f\x78\x65\x73"]["\145\156\x61\142\x6c\145\137\143\165\163\x74\157\155\137\141\160\151\x73"] = array("\43\164\171\160\145" => "\143\150\x65\143\153\x62\157\x78", "\43\144\145\146\x61\165\x6c\x74\x5f\x76\x61\x6c\165\x65" => \Drupal::config("\x72\x65\163\164\x5f\x61\160\151\137\x61\x75\x74\150\145\156\x74\151\x63\x61\164\151\x6f\x6e\x2e\163\145\164\164\x69\156\x67\163")->get("\x72\x65\x73\x74\x5f\x61\160\x69\x5f\x61\x75\x74\150\x65\x6e\164\151\143\x61\164\x69\x6f\156\x5f\145\156\141\142\154\x65\x5f\143\x75\163\164\157\155\137\x61\x70\x69\x5f\x61\165\x74\150\145\x6e\164\x69\143\x61\x74\x69\x6f\x6e"), "\43\164\x69\164\x6c\145" => "\117\x74\150\145\162\x2f\40\x44\162\x75\160\x61\154\x20\126\151\145\x77\x73\57\40\x43\165\x73\x74\x6f\x6d\40\101\x50\x49\x73\40\x41\x75\x74\150\145\156\164\x69\x63\x61\164\x69\x6f\x6e");
        $form["\141\144\x76\141\x6e\x63\x65\144\137\163\x65\164\x74\151\x6e\x67\163"]["\163\165\x70\x70\x6f\162\x74\x5f\x63\157\x6e\164\x61\x69\x6e\x65\162\137\x6f\165\x74\x6c\x69\156\x65"]["\145\x6e\141\x62\154\x65\x5f\x61\x70\x69\x5f\x63\150\x65\143\153\x62\x6f\x78\x65\163"]["\x65\x6e\141\142\154\145\137\x61\x70\151\163\137\x62\165\x74\164\157\156"] = array("\43\164\171\x70\x65" => "\163\x75\142\155\151\x74", "\43\142\165\x74\x74\x6f\156\137\x74\171\160\x65" => "\x70\x72\x69\x6d\x61\x72\x79", "\43\x64\151\163\141\142\154\145\144" => $q2, "\43\x76\x61\154\x75\145" => t("\123\x61\x76\145\x20\x41\x50\111\x20\x43\157\x6e\x66\151\x67\x75\x72\141\164\151\157\156\x73"), "\x23\x73\x75\142\x6d\x69\164" => ["\x3a\x3a\163\x61\x76\x65\101\120\111\x54\x6f\102\145\x52\145\163\164\x72\151\143\164\145\x64\123\145\164\164\151\x6e\x67\163"]);
        $form["\x61\144\x76\141\x6e\143\x65\x64\137\163\145\x74\x74\x69\x6e\147\x73"]["\x73\165\x70\x70\157\x72\164\137\x63\157\156\164\x61\151\x6e\145\x72\x5f\x6f\165\x74\154\x69\156\x65"]["\154\151\x73\164\137\141\x70\151\163"] = array("\43\164\x79\x70\x65" => "\144\145\164\141\x69\154\163", "\x23\164\151\x74\154\x65" => $this->t("\x20\x52\x65\x73\x74\x72\x69\143\x74\x20\143\165\x73\x74\157\155\40\x41\x50\x49\x73"), "\x23\144\145\163\x63\x72\x69\160\x74\x69\157\156" => "\x3c\x62\76\x4e\157\x74\x65\x3a\x20\74\x2f\142\x3e\124\157\x20\x65\156\141\x62\x6c\145\40\x74\150\151\163\40\146\145\141\164\x75\162\145\54\40\x70\154\x65\141\163\145\40\143\150\x65\143\153\x20\x74\x68\145\x20\74\x62\x3e\x41\156\171\x20\x4f\x74\150\x65\162\x2f\x43\x75\x73\x74\157\155\x20\101\120\111\163\x3c\x2f\x62\x3e\40\143\150\145\x63\x6b\142\x6f\x78\x20\x75\x6e\144\x65\162\x20\x74\150\145\40\74\142\76\x41\x50\x49\x73\40\x74\x6f\40\x62\145\x20\122\x65\163\x74\162\151\143\x74\x65\x64\x3c\57\142\x3e\x20\x64\145\164\x61\151\154\163\56\x3c\142\162\76");
        $form["\x61\x64\166\x61\x6e\x63\x65\144\137\163\x65\164\164\x69\x6e\147\x73"]["\163\165\160\x70\x6f\x72\x74\x5f\x63\x6f\156\x74\x61\x69\156\x65\162\x5f\157\165\164\x6c\151\156\145"]["\154\x69\163\x74\137\141\x70\x69\x73"]["\143\165\163\x74\x6f\155\x5f\x61\160\151\x5f\164\x65\170\164\141\x72\145\x61"] = array("\43\x74\171\160\145" => "\164\145\170\x74\141\x72\145\x61", "\x23\144\151\163\x61\142\x6c\145\144" => $q2, "\43\x64\145\x66\x61\165\x6c\164\137\166\141\154\165\145" => \Drupal::config("\162\145\163\x74\137\141\160\x69\137\x61\165\164\x68\x65\156\164\151\143\x61\164\151\157\x6e\56\x73\145\x74\164\151\x6e\x67\x73")->get("\x6c\x69\163\164\x5f\x6f\x66\x5f\x61\x70\151\163"), "\43\x74\151\x74\154\x65" => $this->t("\x59\157\x75\x20\143\141\156\40\x61\x64\144\x20\164\150\145\x20\x41\x50\111\163\40\x68\145\x72\x65\x3a\x20"), "\43\x61\164\164\x72\151\142\165\x74\145\x73" => array("\x73\x74\x79\154\145" => "\167\151\144\x74\x68\72\61\x30\60\x25", "\x70\154\x61\143\145\x68\157\154\144\x65\x72" => "\x59\x6f\165\40\143\x61\156\40\x61\x6c\x73\x6f\x20\141\144\144\40\155\x75\154\164\151\160\x6c\145\x20\101\x50\x49\x73\x20\x75\x73\x69\156\147\x20\141\x20\x3b\x20\x61\x73\x20\x61\40\163\145\160\x61\x72\x61\164\x6f\162"));
        $form["\141\x64\x76\141\x6e\143\145\144\x5f\163\145\x74\x74\x69\156\x67\x73"]["\x73\165\160\160\x6f\162\x74\137\x63\157\156\x74\x61\151\x6e\145\162\137\157\x75\x74\154\x69\156\145"]["\x6c\x69\x73\164\x5f\141\x70\151\163"]["\x74\x6f\153\x65\x6e\x5f\x73\165\142\x6d\x69\x74\x5f\x6b\x65\x79\x33"] = array("\x23\x74\171\x70\145" => "\163\x75\x62\x6d\151\x74", "\43\142\165\x74\164\x6f\x6e\x5f\164\x79\160\x65" => "\160\162\x69\x6d\141\x72\171", "\43\x64\151\163\x61\142\154\145\144" => $q2, "\43\156\141\x6d\x65" => "\x73\x75\x62\155\151\x74", "\x23\166\141\154\x75\x65" => t("\x53\141\x76\145\x20\x43\157\156\x66\x69\147\x75\x72\141\x74\x69\x6f\x6e"));
        $form["\x61\x64\166\x61\x6e\x63\145\x64\137\163\x65\164\x74\151\156\147\x73"]["\x73\x75\160\x70\157\x72\164\x5f\x63\x6f\x6e\164\x61\151\x6e\x65\x72\137\157\165\164\x6c\151\156\145"]["\162\145\163\164\x72\x69\x63\x74\137\x72\x6f\x6c\145\x73"] = array("\43\164\171\160\x65" => "\144\145\164\x61\151\154\163", "\43\x74\x69\x74\154\145" => $this->t("\40\x52\157\154\145\40\x42\x61\163\x65\144\40\x52\x65\x73\x74\162\151\143\x74\x69\157\156"), "\x23\x64\145\x73\x63\162\x69\x70\164\151\157\x6e" => "\122\x65\163\164\162\x69\x63\164\x69\x6f\156\40\142\141\x73\x65\x64\x20\157\156\40\x55\163\145\162\40\x52\157\154\x65\163\x2e");
        $form["\x61\x64\166\141\x6e\x63\145\144\137\163\145\x74\164\151\x6e\x67\x73"]["\x73\x75\160\160\157\162\164\x5f\143\x6f\x6e\164\x61\x69\156\145\162\x5f\157\165\164\x6c\151\156\145"]["\x72\145\163\164\x72\151\x63\164\137\162\x6f\x6c\145\163"]["\x61\160\151\x5f\164\x65\x78\164\x61\x72\145\x61"] = array("\43\164\x79\160\145" => "\x74\x65\170\164\141\x72\x65\141", "\x23\144\151\163\x61\142\x6c\x65\144" => $q2, "\43\x64\x65\x66\141\165\154\x74\x5f\166\141\x6c\x75\x65" => \Drupal::config("\162\145\163\x74\x5f\141\x70\151\137\141\x75\x74\x68\x65\156\164\151\143\141\164\151\157\x6e\56\x73\x65\164\x74\x69\x6e\147\x73")->get("\154\151\x73\x74\137\157\146\137\x72\157\x6c\x65\137\x72\x65\x73\164\162\x69\143\x74\x69\157\x6e\x73"), "\43\x74\151\164\154\145" => $this->t("\131\157\165\40\143\141\x6e\x20\x61\x64\144\x20\164\x68\145\40\101\x50\x49\x73\x20\x61\x6e\x64\40\162\x6f\x6c\145\163\x20\150\145\162\145\72\x20"), "\x23\141\164\164\162\151\x62\165\x74\x65\x73" => array("\x73\164\171\x6c\145" => "\x77\151\x64\x74\x68\72\61\x30\60\x25", "\x70\154\141\143\x65\150\x6f\x6c\x64\x65\x72" => "\x59\157\165\40\143\141\x6e\x20\x61\x6c\x73\157\40\x61\144\x64\40\x6d\165\154\164\151\160\154\x65\x20\101\120\111\163\55\x3e\162\x6f\x6c\x65\163\40\x75\x73\151\x6e\147\40\141\x20\73\40\x61\x73\40\141\x20\163\x65\x70\145\162\141\x74\157\162"));
        $form["\141\x64\x76\141\156\143\x65\144\x5f\163\x65\164\x74\151\156\147\x73"]["\x73\165\160\x70\157\162\x74\x5f\x63\x6f\x6e\164\141\x69\156\x65\162\137\157\x75\164\x6c\x69\x6e\x65"]["\162\145\x73\x74\x72\151\143\164\137\x72\157\x6c\x65\x73"]["\x74\157\153\x65\156\x5f\163\x75\x62\x6d\151\x74\x5f\153\145\171\x33"] = array("\43\164\171\160\x65" => "\163\x75\x62\x6d\x69\164", "\43\142\165\164\x74\x6f\156\137\x74\x79\160\x65" => "\x70\162\x69\155\141\x72\171", "\43\144\151\163\x61\142\x6c\145\144" => $q2, "\x23\166\141\154\165\145" => t("\x53\141\x76\x65\40\x52\x6f\154\x65\40\102\141\x73\x65\x64\40\x52\145\x73\x74\x72\151\143\x74\x69\x6f\x6e\163"), "\43\x73\x75\x62\155\151\164" => array("\x3a\x3a\x72\157\154\145\x5f\x72\x65\x73\x74\162\151\143\x74\151\x6f\156\x5f\x73\165\x62\x6d\x69\x74"));
        $form["\x75\x70\147\x72\x61\x64\145\137\160\x6c\141\x6e\163"] = array("\43\164\171\160\145" => "\x64\145\x74\141\x69\x6c\x73", "\43\x74\x69\x74\x6c\145" => $this->t("\74\x62\162\76\125\160\147\x72\141\x64\145\x20\x50\x6c\141\156\x73"), "\x23\147\162\x6f\x75\160" => "\151\x6e\146\157\162\x6d\x61\x74\151\x6f\x6e");
        $form["\165\160\147\162\141\x64\145\x5f\160\154\x61\x6e\163"]["\165\160\x67\162\x61\x64\145\143\157\x6e\x74\x61\x69\156\x65\x72\137\x6f\x75\164\154\151\156\x65"] = array("\x23\164\171\x70\x65" => "\146\151\145\154\144\163\145\x74");
        $form["\x75\x70\147\x72\141\x64\145\137\160\154\x61\x6e\163"]["\x75\x70\147\x72\x61\144\x65\x63\157\156\164\141\x69\156\145\162\137\x6f\165\x74\154\151\x6e\x65"]["\154\x69\x63\x65\156\163\x69\156\x67"] = array("\x23\x6d\141\162\x6b\165\160" => "\74\x68\164\155\154\40\154\141\x6e\x67\x3d\42\145\x6e\x22\76\12\40\40\x20\x20\x20\x20\x20\40\74\150\x65\141\x64\76\xa\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\74\x6d\145\164\x61\40\143\150\141\162\x73\145\x74\x3d\42\x75\164\146\55\x38\42\x3e\12\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\74\x6d\x65\x74\x61\x20\156\x61\x6d\x65\75\x22\166\x69\145\167\x70\157\x72\x74\42\40\143\x6f\156\x74\x65\156\x74\x3d\x22\x77\151\144\x74\x68\75\x64\x65\x76\151\143\x65\55\167\x69\x64\x74\150\54\40\x69\156\x69\164\151\141\154\55\x73\x63\141\x6c\x65\x3d\x31\x22\76\xa\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x3c\x21\x2d\55\40\115\x61\151\x6e\x20\x53\164\x79\x6c\x65\40\55\x2d\76\12\x20\40\x20\40\x20\x20\x20\40\x3c\57\x68\x65\141\x64\x3e\xa\x20\x20\40\x20\40\x20\x20\40\74\x62\157\144\x79\x3e\xa\x20\40\x20\40\40\x20\40\40\74\x21\x2d\x2d\x20\120\162\151\143\x69\x6e\x67\40\124\141\142\154\145\40\x53\x65\143\x74\151\157\x6e\x20\x2d\55\x3e\xa\40\x20\x20\x20\40\x20\40\x20\x3c\x73\145\143\164\x69\x6f\156\x20\x69\144\x3d\42\160\x72\151\143\151\x6e\147\x2d\164\141\x62\154\x65\42\76\xa\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\74\x64\x69\x76\x3e\12\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\74\x64\x69\x76\76\12\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\74\x64\151\x76\40\143\154\141\163\163\75\42\x70\x72\x69\143\x69\x6e\147\x22\76\12\x20\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\74\144\x69\166\x3e\12\xa\12\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x3c\x64\151\166\x20\x63\x6c\141\163\163\x3d\42\x70\162\x69\143\x69\156\x67\55\164\141\142\154\145\x20\143\x6c\x61\163\x73\x5f\x69\156\154\151\156\145\137\x31\42\76\xa\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x3c\144\x69\166\x20\x63\x6c\x61\x73\163\75\42\x70\x72\x69\x63\x69\x6e\x67\x2d\150\x65\x61\144\145\162\42\76\12\40\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x3c\160\40\143\154\x61\x73\x73\x3d\x22\160\x72\151\143\151\156\147\55\x74\151\x74\x6c\145\x22\x3e\106\162\145\145\74\x62\x72\76\x3c\x73\x70\141\156\76\x3c\x62\x72\x3e\117\x6e\x65\x20\124\x69\x6d\145\40\x50\141\171\x6d\x65\x6e\164\74\x2f\x73\x70\x61\156\x3e\x3c\x2f\160\76\xa\x20\40\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\74\x70\40\143\x6c\x61\163\x73\75\42\x70\x72\151\x63\x69\x6e\x67\x2d\x72\141\x74\x65\x22\76\74\x73\x75\x70\x3e\x24\x3c\x2f\163\165\160\x3e\x20\60\x3c\57\x70\x3e\12\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x3c\x61\40\150\162\145\x66\75\42\x23\x22\40\x63\154\141\x73\163\x3d\42\142\165\x74\164\157\156\40\x62\165\164\x74\x6f\x6e\55\x2d\x64\141\156\147\145\162\40\142\165\x74\164\x6f\x6e\55\55\x73\155\141\154\154\x22\76\x43\x75\x72\162\x65\156\x74\40\120\x6c\141\156\x3c\x2f\141\x3e\74\142\x72\76\x3c\142\162\76\12\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\74\x2f\x64\x69\166\76\12\12\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\x3c\x64\151\166\40\x63\x6c\x61\x73\163\75\42\x70\x72\151\143\151\x6e\147\x2d\x6c\x69\x73\x74\x22\76\xa\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x3c\165\154\x3e\12\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\x3c\x6c\151\76\x53\151\x6e\x67\154\145\40\101\x70\160\x20\123\x75\160\160\x6f\x72\x74\74\x2f\154\x69\76\12\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\40\x3c\154\151\x3e\101\x50\111\x20\x4b\x65\x79\40\x41\165\164\x68\145\x6e\x74\x69\143\141\x74\151\157\156\74\57\x6c\151\76\xa\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\74\x6c\x69\x3e\x42\141\x73\x69\x63\40\x41\165\x74\150\x65\x6e\164\x69\143\141\164\151\x6f\156\74\57\154\x69\x3e\xa\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x3c\154\x69\76\x2d\x3c\57\x6c\x69\76\xa\40\40\40\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\74\154\x69\x3e\55\74\x2f\x6c\151\x3e\12\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x3c\x6c\x69\x3e\x2d\x3c\57\x6c\x69\76\xa\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x3c\x6c\x69\x3e\x2d\x3c\57\x6c\x69\x3e\12\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x3c\x6c\x69\x3e\x2d\74\57\x6c\x69\x3e\xa\40\40\x20\40\40\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x3c\x6c\151\x3e\55\x3c\x2f\x6c\x69\x3e\12\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\74\154\151\76\55\x3c\x2f\154\x69\76\xa\x20\40\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x3c\154\151\76\x42\141\163\x69\143\40\x45\x6d\x61\x69\x6c\x20\x53\x75\x70\x70\x6f\162\x74\x3c\x2f\x6c\151\x3e\xa\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x3c\57\x75\x6c\76\12\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x3c\57\x64\x69\166\x3e\12\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\74\57\144\x69\x76\76\xa\xa\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\74\144\151\x76\x20\x63\x6c\141\x73\163\75\x22\160\162\151\x63\151\x6e\147\55\164\x61\x62\x6c\x65\40\x63\x6c\141\x73\163\x5f\151\x6e\x6c\x69\156\145\137\61\x22\76\xa\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x3c\144\151\x76\x20\143\154\x61\163\163\75\x22\160\x72\x69\x63\x69\156\x67\x2d\x68\145\x61\144\x65\162\x22\x3e\xa\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x3c\x70\40\143\154\x61\x73\163\75\x22\x70\x72\x69\x63\151\x6e\x67\x2d\x74\151\164\154\145\x22\76\x45\156\164\145\162\x70\x72\x69\x73\145\x3c\142\x72\76\x3c\163\160\141\x6e\x3e\x28\x44\x6f\x6d\x61\x69\x6e\x20\46\x20\120\x61\x67\145\x20\122\x65\163\x74\162\x69\143\164\151\157\x6e\x29\x3c\x62\x72\76\x4f\x6e\x65\40\x54\x69\x6d\x65\40\x50\x61\x79\x6d\x65\156\x74\x3c\57\x73\x70\x61\156\x3e\x3c\x2f\160\x3e\xa\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\74\160\40\x63\154\141\x73\163\x3d\x22\x70\x72\151\x63\x69\156\x67\x2d\x72\x61\x74\145\x22\x3e\x3c\x73\x75\160\76\44\74\x2f\163\165\160\76\40\x33\71\71\74\x2f\x70\76\xa\40\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\74\x61\x20\x68\162\x65\x66\75\x22\x68\x74\x74\x70\163\x3a\x2f\57\x77\167\x77\x2e\155\151\x6e\x69\x6f\x72\x61\x6e\147\145\56\x63\x6f\x6d\x2f\143\157\156\164\x61\x63\x74\42\x20\x74\141\162\x67\145\x74\75\42\x5f\142\x6c\x61\156\153\42\40\143\154\141\163\x73\x3d\x22\x62\x75\x74\x74\x6f\x6e\x20\142\x75\x74\164\x6f\x6e\55\x2d\144\x61\156\x67\145\162\x20\x62\x75\164\164\157\156\55\x2d\x73\155\141\x6c\154\x22\x3e\103\157\x6e\164\x61\143\x74\x20\x55\x73\x3c\x2f\x61\x3e\74\x62\x72\76\74\x62\x72\76\xa\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x3c\x2f\144\151\166\x3e\12\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x3c\x64\151\166\40\x63\154\x61\163\x73\75\42\160\162\x69\x63\151\x6e\x67\x2d\x6c\x69\x73\x74\x22\x3e\xa\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\74\x75\x6c\x3e\12\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\x3c\154\151\76\x53\151\156\x67\154\x65\x20\x41\x70\160\40\123\x75\x70\160\157\162\164\74\x2f\x6c\x69\76\xa\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\74\154\151\x3e\101\120\111\x20\x4b\145\171\40\101\x75\x74\150\145\x6e\x74\x69\x63\x61\164\151\x6f\x6e\74\57\x6c\x69\76\12\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\74\154\x69\x3e\102\141\x73\151\x63\40\101\x75\164\x68\x65\x6e\164\151\x63\141\164\151\157\156\x3c\57\x6c\151\x3e\xa\x20\40\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\40\74\x6c\151\76\101\x63\143\x65\163\x73\x20\124\157\153\145\x6e\x20\x41\x75\164\150\145\156\164\151\x63\141\164\151\157\x6e\74\57\154\151\76\12\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\74\154\151\x3e\x4a\x57\124\40\101\165\164\x68\x65\156\164\x69\143\x61\164\x69\x6f\x6e\74\57\154\151\x3e\12\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x3c\x6c\151\x3e\117\101\165\x74\x68\40\x32\x20\x41\x75\x74\150\x65\156\x74\151\x63\141\x74\x69\x6f\x6e\74\57\x6c\151\76\12\x20\40\40\40\x20\40\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x3c\154\151\x3e\103\165\x73\164\157\x6d\x20\x48\145\x61\x64\x65\x72\x3c\57\x6c\x69\76\12\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\74\x6c\151\76\103\165\x73\x74\157\155\40\x54\x6f\x6b\145\x6e\40\x45\x78\x70\151\162\x79\x3c\x2f\154\x69\76\12\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\74\x6c\x69\x3e\x52\145\x73\164\162\151\143\164\x20\x41\x50\111\163\x3c\57\x6c\151\76\xa\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x3c\154\151\x3e\x57\x68\151\x74\145\x6c\x69\x73\x74\x20\x41\120\111\x73\74\57\154\x69\x3e\12\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\74\154\x69\76\x50\162\x65\155\x69\x75\155\x20\107\157\124\x6f\40\115\x65\x65\x74\x69\x6e\147\40\123\165\x70\x70\157\x72\164\74\x2f\x6c\x69\x3e\xa\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\74\57\165\x6c\x3e\12\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\x3c\x2f\x64\151\166\x3e\12\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x3c\x2f\x64\151\166\76\xa\12\x20\40\x20\40\40\40\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\40\x3c\57\x64\151\166\76\xa\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\74\x2f\144\x69\x76\76\xa\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x3c\x2f\x64\x69\166\x3e\12\40\x20\40\40\x20\40\40\40\x3c\57\x64\151\x76\x3e\12\x20\40\40\40\x3c\57\x73\x65\x63\x74\151\x6f\x6e\x3e\12\x20\40\x20\40\x3c\41\x2d\x2d\40\x50\162\x69\x63\151\x6e\147\x20\124\x61\x62\x6c\x65\x20\123\145\143\164\x69\157\156\40\105\x6e\144\x20\55\55\76\12\40\40\x20\40\74\x2f\x62\157\144\x79\x3e\12\40\x20\x20\40\74\x2f\x68\x74\155\154\x3e");
        $form["\x68\x65\141\144\145\162\x5f\x62\x6f\x74\x74\x6f\155\61\137\163\164\x79\154\x65\x5f\x31"] = array("\x23\x6d\141\162\153\x75\x70" => "\74\57\x64\x69\x76\x3e");
        Utilities::AddSupportButton($form, $form_state);
        return $form;
    }
    function rest_api_authentication_key_save_settings(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        \Drupal::configFactory()->getEditable("\162\x65\163\x74\x5f\x61\160\x69\137\x61\x75\x74\150\145\x6e\164\x69\x63\141\164\x69\157\x6e\x2e\163\x65\164\164\151\x6e\x67\x73")->set("\141\165\164\x68\145\x6e\164\x69\x63\141\164\x69\x6f\x6e\137\x6d\x65\x74\x68\x6f\144", 1)->save();
        \Drupal::messenger()->addMessage(t("\x43\157\156\x66\151\x67\165\162\x61\164\151\x6f\x6e\163\40\123\x61\x76\x65\144\40\123\x75\143\143\x65\x73\x73\x66\x75\x6c\x6c\171\x2e"));
        $Ek = new RedirectResponse($base_url . "\57\141\144\x6d\x69\156\x2f\143\x6f\x6e\146\x69\x67\x2f\160\145\157\160\x6c\x65\x2f\x72\145\163\164\x5f\x61\160\x69\137\141\x75\x74\x68\x65\x6e\x74\151\x63\141\164\151\157\156\x2f\141\x75\x74\x68\x5f\163\x65\164\x74\151\156\147\x73\77\x74\x61\x62\75\145\x64\151\x74\x2d\x61\160\x69\55\x61\x75\x74\150");
        $Ek->send();
        return;
    }
    function rest_api_authentication_generate_api_token(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $Mb = $form["\141\160\151\x5f\x61\x75\x74\x68"]["\x6d\x6f\137\x72\x65\163\x74\137\141\x70\151\x5f\141\165\164\150\145\x6e\x74\x69\x63\141\x74\x69\x6f\x6e\x5f\x61\x75\164\x68\x65\x6e\x74\x69\x63\141\164\x6f\162"]["\x72\145\x73\164\x5f\141\x70\151\137\x61\165\164\x68\x65\x6e\x74\x69\x63\x61\164\151\157\x6e\x5f\x6b\x65\171"]["\x23\x76\141\154\165\x65"];
        $fC = explode("\50", $Mb);
        $rW = str_replace(array("\x29"), '', end($fC));
        $user = user::load(trim($rW));
        if (!($user == null)) {
            goto lU;
        }
        $user = user_load_by_name(trim($fC[0]));
        lU:
        if (!empty($user)) {
            goto ss;
        }
        \Drupal::messenger()->addMessage(t("\x4e\157\x20\125\x73\145\162\x20\x66\157\x75\156\x64\x20\167\151\x74\x68\x20\164\x68\x65\x20" . $Mb . "\x20\x75\163\x65\162\156\x61\155\x65\56"));
        goto iS;
        ss:
        $Kg = Utilities::generateRandom(64);
        $Kj = array();
        $nU = time();
        $km = \Drupal::database();
        if (DBQueries::isTableExists("\162\x65\x73\x74\137\x61\x70\x69\x5f\141\165\x74\150\145\x6e\164\x69\x63\x61\x74\151\157\x6e\x5f\x74\x6f\x6b\x65\156")) {
            goto XI;
        }
        DBQueries::createTable();
        XI:
        if (DBQueries::isFieldExists("\162\x65\163\164\137\141\x70\x69\x5f\x61\165\164\x68\145\x6e\x74\151\143\141\164\151\x6f\x6e\137\164\x6f\x6b\145\156", "\165\x73\x65\162\137\156\x61\155\145")) {
            goto bG;
        }
        DBQueries::insertColumn("\x75\163\145\162\137\156\141\x6d\x65");
        bG:
        if (DBQueries::isFieldExists("\162\x65\x73\x74\x5f\141\x70\151\137\141\x75\164\x68\145\156\164\151\143\141\164\151\x6f\156\x5f\164\x6f\153\145\156", "\141\x70\151\x5f\x6b\145\x79\x5f\162\145\161\x75\x65\163\x74\x5f\164\151\155\x65")) {
            goto Dq;
        }
        DBQueries::insertColumn("\141\160\151\x5f\x6b\145\171\x5f\x72\x65\161\165\x65\x73\x74\137\164\151\155\145");
        Dq:
        $DC = $km->select("\x72\145\163\x74\x5f\141\x70\151\137\x61\x75\x74\x68\x65\156\164\151\143\141\164\x69\x6f\156\137\164\x6f\x6b\145\x6e", "\156\x66\x64")->fields("\x6e\146\144", ["\165\x73\x65\x72\x5f\x6e\141\x6d\145"])->condition("\156\x66\144\56\x75\x73\145\162\x5f\x6e\x61\155\x65", $Mb)->execute()->fetchfield();
        if (!$DC) {
            goto oH;
        }
        $km->update("\x72\145\x73\x74\x5f\x61\x70\151\x5f\x61\x75\x74\x68\x65\156\x74\151\143\x61\x74\151\157\156\x5f\x74\x6f\x6b\x65\156")->fields(["\141\x70\151\137\x6b\x65\x79\137\162\x65\x71\165\x65\x73\164\x5f\164\x69\155\145" => $nU])->condition("\x75\163\x65\162\137\156\x61\155\145", $Mb, "\75")->execute();
        goto Ov;
        oH:
        $km->insert("\x72\x65\x73\x74\137\x61\x70\151\137\141\x75\x74\150\x65\156\x74\151\143\x61\x74\151\157\156\137\164\157\153\x65\156")->fields(["\165\x73\145\162\x5f\156\x61\x6d\x65", "\x61\x70\x69\x5f\x6b\x65\x79\x5f\162\145\161\x75\145\x73\x74\137\x74\x69\155\x65"])->values(["\165\163\x65\162\x5f\156\141\155\x65" => $Mb, "\141\160\151\137\153\145\171\x5f\162\x65\161\x75\x65\163\164\137\164\x69\155\145" => $nU])->execute();
        Ov:
        $user->{"\146\151\145\154\144\137\141\x70\151\x5f\153\x65\x79"} = $Kg;
        $user->save();
        \Drupal::messenger()->addMessage(t("\x4e\x65\x77\x20\x41\120\111\40\113\x65\171\40\x67\x65\x6e\145\162\141\164\145\x64\x20\163\165\x63\x63\x65\x73\163\x66\x75\154\x6c\171\56"));
        iS:
        $Ek = new RedirectResponse($base_url . "\x2f\141\144\x6d\x69\156\x2f\x63\157\x6e\x66\x69\147\x2f\x70\145\x6f\160\154\x65\57\162\x65\x73\x74\x5f\x61\x70\x69\x5f\141\x75\164\150\x65\x6e\164\151\143\x61\164\x69\157\156\57\x61\165\164\x68\x5f\x73\x65\164\x74\151\156\147\x73\x3f\164\141\x62\75\x65\x64\151\x74\55\141\x70\x69\55\x61\x75\x74\x68");
        $Ek->send();
        return;
    }
    function rest_api_authentication_key_generate_all(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $AO = \Drupal::entityQuery("\165\163\x65\162")->accessCheck(TRUE)->execute();
        $i4 = User::loadMultiple($AO);
        if (DBQueries::isTableExists("\162\145\163\x74\x5f\x61\160\x69\137\141\165\164\150\x65\x6e\164\151\x63\x61\x74\x69\157\156\x5f\x74\x6f\x6b\x65\x6e")) {
            goto Bg;
        }
        DBQueries::createTable();
        Bg:
        if (DBQueries::isFieldExists("\162\x65\x73\x74\x5f\141\x70\151\x5f\141\165\164\150\x65\156\164\x69\x63\141\x74\151\x6f\x6e\x5f\164\x6f\153\x65\x6e", "\165\163\145\x72\137\x6e\x61\155\145")) {
            goto bz;
        }
        DBQueries::insertColumn("\x75\x73\x65\162\x5f\156\x61\x6d\145");
        bz:
        if (DBQueries::isFieldExists("\x72\145\163\164\x5f\141\x70\151\x5f\x61\x75\164\x68\145\156\x74\151\143\141\x74\x69\157\156\137\x74\x6f\x6b\x65\x6e", "\141\160\151\137\153\x65\x79\137\x72\x65\x71\x75\x65\163\164\137\x74\151\x6d\x65")) {
            goto me;
        }
        DBQueries::insertColumn("\x61\160\151\x5f\153\x65\171\137\162\145\x71\165\145\163\164\x5f\164\151\x6d\x65");
        me:
        $km = \Drupal::database();
        foreach ($i4 as $user) {
            if (empty($user)) {
                goto q0;
            }
            $Mb = $user->get("\x6e\141\155\x65")->getString();
            $nU = time();
            $Kg = Utilities::generateRandom(64);
            $user->{"\146\x69\145\154\x64\x5f\141\160\x69\137\153\145\171"} = $Kg;
            $user->save();
            $DC = $km->select("\162\x65\x73\x74\137\x61\160\x69\x5f\x61\165\164\150\145\x6e\164\x69\x63\x61\x74\151\x6f\x6e\x5f\x74\157\x6b\145\x6e", "\156\146\144")->fields("\x6e\146\144", ["\165\163\145\x72\x5f\156\141\155\x65"])->condition("\156\146\x64\56\x75\163\x65\x72\137\x6e\x61\155\145", $Mb)->execute()->fetchfield();
            if (!$DC) {
                goto jl;
            }
            $km->update("\162\145\x73\164\x5f\141\x70\151\x5f\x61\x75\x74\150\x65\156\164\x69\143\x61\164\151\x6f\x6e\137\x74\157\153\x65\156")->fields(["\141\160\x69\x5f\x6b\x65\171\x5f\162\x65\x71\x75\145\163\x74\137\164\x69\x6d\x65" => $nU])->condition("\165\x73\145\162\137\x6e\x61\155\145", $Mb, "\75")->execute();
            goto Gi;
            jl:
            $km->insert("\x72\x65\x73\x74\x5f\x61\x70\151\137\141\x75\164\x68\x65\156\164\151\143\141\x74\x69\x6f\156\137\164\157\153\x65\156")->fields(["\165\163\145\x72\x5f\156\141\x6d\145", "\141\160\151\137\x6b\x65\171\137\x72\x65\x71\165\x65\163\x74\137\x74\151\x6d\145"])->values(["\165\163\x65\x72\137\156\x61\155\x65" => $Mb, "\141\x70\x69\x5f\153\x65\x79\137\x72\x65\x71\165\x65\163\x74\137\x74\x69\155\145" => $nU])->execute();
            Gi:
            q0:
            bk:
        }
        wR:
        \Drupal::messenger()->addMessage(t("\x4e\145\167\x20\101\x50\x49\40\113\x65\171\163\40\163\x65\x74\x20\146\157\x72\x20\141\x6c\154\40\x75\163\145\x72\163\40\x73\165\143\143\x65\x73\163\146\x75\x6c\x6c\171\x2e"));
        $Ek = new RedirectResponse($base_url . "\x2f\141\144\155\x69\156\x2f\x63\157\156\x66\151\147\57\x70\145\157\160\x6c\x65\57\x72\x65\163\x74\137\141\160\x69\137\x61\x75\164\150\145\x6e\164\x69\143\x61\164\x69\x6f\x6e\57\x61\165\164\x68\x5f\163\x65\x74\x74\x69\x6e\x67\x73\x3f\x74\141\142\75\x65\144\x69\x74\55\x61\x70\x69\55\141\x75\164\x68");
        $Ek->send();
        return;
    }
    function rest_api_authentication_save_ext_oauth_provider(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $P6 = $form["\141\x70\x69\137\x61\x75\x74\150"]["\x6d\x6f\x5f\162\x65\163\164\x5f\x61\160\151\137\x61\165\x74\x68\x65\156\x74\x69\143\x61\x74\151\x6f\x6e\137\x61\x75\164\x68\x65\156\x74\x69\143\x61\x74\x6f\162"]["\162\x65\x73\x74\137\141\160\151\137\141\165\164\x68\145\x6e\164\x69\x63\141\164\151\157\156\137\x65\170\164\x5f\157\141\165\164\x68"]["\43\x76\x61\154\x75\145"];
        $f2 = $form["\141\x70\151\x5f\x61\x75\164\x68"]["\x6d\157\137\x72\x65\163\164\137\x61\160\151\137\141\x75\x74\150\x65\x6e\x74\x69\143\x61\x74\x69\157\x6e\x5f\141\165\x74\150\145\x6e\x74\151\143\141\x74\x6f\162"]["\x72\x65\x73\x74\x5f\x61\160\x69\x5f\x61\165\164\x68\x65\x6e\164\x69\x63\141\164\x69\x6f\x6e\x5f\145\x78\164\x5f\x6f\x61\165\164\x68\137\165\x73\x65\162\156\141\155\145"]["\x23\166\141\154\165\x65"];
        $nT = $form["\141\x70\151\x5f\x61\165\164\x68"]["\155\x6f\x5f\x72\145\163\x74\x5f\x61\160\x69\x5f\141\165\164\150\x65\x6e\x74\x69\x63\x61\x74\x69\x6f\x6e\x5f\x61\x75\x74\150\145\156\x74\151\143\141\x74\x6f\162"]["\x63\x72\145\141\x74\x65\137\165\x73\145\x72"]["\x23\166\x61\x6c\x75\145"];
        \Drupal::configFactory()->getEditable("\162\145\x73\164\137\141\x70\151\x5f\x61\x75\x74\150\x65\x6e\x74\151\143\141\164\x69\157\156\56\163\x65\x74\x74\151\x6e\147\x73")->set("\165\x73\x65\x72\137\151\x6e\x66\157\x5f\x65\x6e\x64\160\157\151\x6e\164", $P6)->save();
        \Drupal::configFactory()->getEditable("\162\x65\x73\x74\137\x61\160\151\137\141\165\164\x68\x65\x6e\164\151\x63\x61\164\151\x6f\156\56\x73\145\164\164\151\156\147\x73")->set("\x75\x73\x65\162\x6e\141\155\x65\137\141\x74\164\x72\x69\x62\x75\164\x65", $f2)->save();
        \Drupal::configFactory()->getEditable("\162\x65\x73\164\137\x61\x70\151\137\141\x75\x74\x68\x65\156\x74\x69\x63\x61\x74\151\x6f\156\x2e\x73\x65\x74\x74\151\156\x67\x73")->set("\145\x78\137\157\141\165\x74\150\x5f\x63\x72\x65\x61\x74\145\137\x6e\145\x77\x5f\165\163\x65\x72", $nT)->save();
        \Drupal::configFactory()->getEditable("\x72\145\163\x74\137\141\160\151\137\141\165\164\150\145\x6e\164\x69\x63\x61\x74\x69\157\x6e\56\163\145\164\164\151\x6e\x67\163")->set("\141\165\164\150\x65\156\x74\x69\143\141\164\x69\x6f\156\x5f\155\x65\164\x68\157\144", 4)->save();
        \Drupal::messenger()->addMessage(t("\x43\x6f\x6e\x66\151\147\x75\162\141\x74\151\157\156\163\x20\x66\x6f\x72\x20\x33\162\144\x20\160\x61\x72\x74\x79\x20\160\x72\157\166\151\144\145\x72\40\x73\141\x76\x65\x64\x20\x73\x75\x63\x63\x65\163\x73\146\165\154\154\x79\x2e"));
        $Ek = new RedirectResponse($base_url . "\57\141\144\155\151\156\x2f\x63\x6f\x6e\x66\x69\147\57\160\145\x6f\160\x6c\x65\57\162\145\x73\164\137\x61\160\151\137\x61\165\164\x68\145\x6e\x74\151\143\141\x74\x69\x6f\x6e\x2f\x61\165\x74\x68\137\x73\x65\x74\164\x69\x6e\x67\x73\77\x74\x61\142\x3d\145\144\x69\x74\55\x61\x70\x69\x2d\x61\x75\164\150");
        $Ek->send();
        return;
    }
    function rest_api_authentication_generate_oauth_keys(array &$form, FormStateInterface $form_state)
    {
        $AH = Utilities::generateRandom(30);
        $qv = Utilities::generateRandom(30);
        \Drupal::configFactory()->getEditable("\162\145\163\164\x5f\141\x70\x69\x5f\x61\165\x74\x68\145\x6e\164\x69\143\x61\x74\x69\157\x6e\x2e\163\x65\x74\x74\x69\156\x67\163")->set("\x6f\x61\x75\x74\150\x5f\143\154\x69\145\156\x74\x5f\x69\x64", $AH)->save();
        \Drupal::configFactory()->getEditable("\x72\145\x73\x74\137\x61\160\151\x5f\x61\165\x74\x68\x65\x6e\x74\151\x63\x61\x74\x69\157\x6e\x2e\x73\145\164\x74\151\x6e\147\x73")->set("\x6f\141\x75\164\150\x5f\143\x6c\151\145\x6e\164\x5f\x73\x65\x63\162\x65\164", $qv)->save();
        self::rest_api_authentication_save_oauth_token($form, $form_state);
    }
    function rest_api_authentication_save_oauth_token(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        \Drupal::configFactory()->getEditable("\x72\x65\x73\164\x5f\x61\160\x69\137\141\165\164\x68\x65\x6e\x74\151\143\x61\x74\151\157\156\x2e\163\x65\164\x74\151\x6e\x67\x73")->set("\141\x75\x74\150\145\x6e\164\x69\x63\141\x74\x69\157\x6e\x5f\155\x65\164\150\157\x64", 2)->save();
        \Drupal::messenger()->addMessage(t("\x4f\x41\x75\164\150\x20\x6d\145\164\150\x6f\x64\x20\x63\157\156\146\x69\147\x75\162\x61\x74\x69\x6f\x6e\x73\40\123\141\x76\145\x64\40\x73\x75\x63\x63\x65\x73\x73\146\x75\154\x6c\171\x2e"));
        $Ek = new RedirectResponse($base_url . "\x2f\141\144\x6d\151\x6e\x2f\x63\157\x6e\146\x69\x67\x2f\160\x65\157\160\154\x65\57\x72\x65\x73\x74\x5f\141\x70\x69\137\141\x75\164\x68\145\156\x74\151\x63\x61\x74\151\157\x6e\57\x61\x75\x74\x68\x5f\x73\145\x74\x74\151\x6e\x67\163\77\x74\141\x62\x3d\145\x64\x69\x74\55\141\x70\x69\55\x61\x75\164\x68");
        $Ek->send();
        return;
    }
    function rest_api_authentication_save_id_token(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        if (!isset($form["\x61\160\151\x5f\x61\x75\164\150"]["\x6d\157\x5f\x72\145\x73\164\x5f\141\160\x69\x5f\141\x75\x74\150\145\x6e\x74\151\x63\x61\164\x69\x6f\156\137\141\x75\x74\150\x65\x6e\164\x69\143\141\x74\x6f\162"]["\163\145\x74\164\x69\156\147\x73"]["\x61\143\164\x69\x76\x65"])) {
            goto Xx;
        }
        $rU = $form["\x61\x70\x69\x5f\141\165\x74\x68"]["\x6d\157\x5f\x72\x65\163\164\x5f\141\x70\151\137\141\165\164\x68\145\x6e\164\x69\x63\x61\x74\151\x6f\156\137\141\165\x74\150\145\156\x74\151\143\x61\x74\x6f\x72"]["\163\x65\164\164\x69\156\147\x73"]["\141\143\x74\151\166\145"]["\43\x76\141\x6c\x75\x65"];
        Xx:
        if (!($rU == 0)) {
            goto Sq;
        }
        \Drupal::configFactory()->getEditable("\x72\x65\163\x74\x5f\x61\160\151\x5f\141\x75\x74\x68\x65\156\x74\x69\x63\141\x74\x69\x6f\x6e\56\x73\145\x74\x74\x69\156\147\x73")->set("\x61\x75\x74\150\145\156\164\151\143\141\x74\151\157\x6e\x5f\x6d\x65\164\150\157\x64", 0)->save();
        \Drupal::messenger()->addMessage(t("\102\141\x73\x69\x63\40\101\x75\x74\x68\x65\x6e\x74\151\x63\141\164\151\157\x6e\x20\x43\157\156\146\151\147\x75\162\141\164\x69\x6f\x6e\x73\x20\123\141\x76\x65\x64\40\163\165\x63\x63\145\163\163\x66\165\x6c\x6c\171\56"));
        $Ek = new RedirectResponse($base_url . "\57\x61\144\155\x69\x6e\x2f\x63\157\x6e\146\151\x67\57\160\145\x6f\x70\154\145\x2f\162\x65\163\164\x5f\x61\160\x69\x5f\x61\165\x74\150\x65\156\x74\151\143\141\x74\151\x6f\156\x2f\x61\165\x74\x68\x5f\x73\x65\164\164\x69\156\x67\x73\x3f\164\x61\x62\x3d\x65\x64\x69\164\x2d\x61\x70\151\x2d\x61\x75\164\x68");
        $Ek->send();
        return;
        Sq:
        $Md = $form_state->getValues();
        $jv = $Md["\x6a\x77\164\137\x6d\x65\x74\150\x6f\144\137\x6a\x77\153\163\137\165\x72\x69"];
        $V_ = $Md["\152\167\164\137\155\x65\x74\150\x6f\x64\137\165\163\x65\x72\x6e\x61\x6d\145\137\141\164\164\162\151\142\x75\x74\145"];
        $nT = $Md["\143\x72\145\x61\x74\x65\x5f\x75\x73\x65\162\x5f\152\x77\x74"];
        \Drupal::configFactory()->getEditable("\162\x65\163\x74\137\x61\x70\151\137\x61\x75\164\150\x65\x6e\164\x69\x63\141\164\x69\x6f\x6e\x2e\x73\145\164\x74\x69\156\147\x73")->set("\152\x77\164\137\155\x65\164\150\x6f\x64\137\x75\x73\145\162\156\x61\x6d\x65\137\x61\x74\164\x72\151\x62\165\x74\x65", $V_)->set("\x6a\x77\164\x5f\x6d\x65\164\150\157\144\x5f\152\x77\153\163\x5f\165\x72\x69", $jv)->set("\x6a\167\x74\x5f\x63\x72\x65\141\x74\145\x5f\x6e\145\167\x5f\165\163\x65\x72", $nT)->save();
        \Drupal::configFactory()->getEditable("\162\x65\163\x74\137\141\160\x69\137\141\165\x74\150\x65\x6e\164\151\x63\x61\x74\x69\x6f\x6e\x2e\163\x65\164\x74\151\156\x67\x73")->set("\x61\165\x74\x68\145\156\x74\151\x63\141\x74\x69\x6f\156\137\155\145\x74\150\157\x64", 3)->save();
        \Drupal::messenger()->addMessage(t("\123\145\x6c\145\x63\x74\x65\x64\40\x6d\145\164\150\x6f\144\x20\163\x61\166\145\x64\40\123\x75\143\143\x65\163\x73\x66\165\154\154\x79\x2e"));
        $Ek = new RedirectResponse($base_url . "\x2f\141\x64\x6d\151\x6e\x2f\x63\x6f\156\146\151\x67\x2f\160\145\157\x70\154\x65\x2f\x72\145\x73\164\x5f\x61\160\x69\x5f\x61\165\x74\x68\145\x6e\x74\151\143\x61\164\x69\x6f\156\57\141\165\x74\150\x5f\x73\x65\x74\164\151\156\x67\x73\77\x74\x61\142\x3d\145\x64\x69\x74\x2d\141\160\151\x2d\141\165\x74\150");
        $Ek->send();
        return;
    }
    function submitForm(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $uq = $form["\x61\x64\x76\x61\x6e\x63\145\x64\137\163\145\x74\164\151\156\147\163"]["\x73\165\x70\x70\x6f\x72\164\137\143\157\156\164\141\x69\156\145\162\x5f\x6f\165\x74\x6c\x69\156\145"]["\x6c\x69\x73\x74\x5f\x61\x70\x69\163"]["\x63\165\163\x74\157\x6d\x5f\141\160\x69\137\164\145\170\164\141\x72\x65\x61"]["\x23\x76\141\x6c\165\x65"];
        \Drupal::configFactory()->getEditable("\x72\x65\163\x74\137\x61\160\x69\137\x61\165\164\150\145\x6e\164\x69\x63\x61\x74\x69\x6f\x6e\x2e\163\x65\164\164\151\x6e\147\163")->set("\154\151\x73\x74\x5f\157\x66\137\141\160\x69\x73", $uq)->save();
        \Drupal::messenger()->addMessage(t("\103\x6f\156\146\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\163\40\x66\157\x72\x20\x43\165\x73\164\x6f\155\x20\x41\120\x49\x20\x52\145\163\x74\x72\x69\143\164\x69\x6f\x6e\40\163\x61\166\x65\x64\56"));
        $Ek = new RedirectResponse($base_url . "\57\x61\x64\155\151\x6e\x2f\143\157\x6e\146\x69\x67\57\x70\x65\x6f\x70\x6c\x65\57\162\145\163\x74\137\141\160\x69\x5f\141\x75\164\150\145\156\x74\x69\x63\141\x74\x69\157\156\57\141\165\164\x68\x5f\163\145\164\164\x69\x6e\147\163\x3f\164\x61\142\x3d\x65\x64\151\164\x2d\x61\x64\x76\141\156\x63\145\144\x2d\163\x65\x74\x74\151\156\x67\x73");
        $Ek->send();
        return;
    }
    function ip_restriction_submit(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $vg = $form["\141\x64\x76\x61\156\x63\x65\x64\x5f\163\x65\x74\164\x69\x6e\x67\163"]["\x73\x75\x70\160\157\x72\164\x5f\143\x6f\156\x74\141\x69\x6e\x65\162\137\x6f\165\x74\154\151\x6e\145"]["\154\151\x73\164\137\x69\x70"]["\151\x70\x5f\x74\145\x78\x74\141\x72\145\x61"]["\43\166\141\x6c\x75\x65"];
        $l0 = $form["\141\x64\x76\141\x6e\143\x65\144\137\163\145\164\164\x69\156\x67\163"]["\x73\165\160\x70\157\x72\x74\137\x63\x6f\156\x74\x61\x69\156\145\x72\x5f\157\165\164\x6c\x69\156\145"]["\x6c\x69\163\x74\x5f\x69\x70"]["\x73\x65\164\164\151\x6e\x67\163"]["\x23\x76\x61\154\165\x65"];
        \Drupal::configFactory()->getEditable("\x72\x65\163\x74\137\x61\x70\x69\x5f\141\x75\x74\x68\x65\156\164\x69\143\141\x74\x69\x6f\x6e\x2e\x73\145\x74\x74\x69\156\147\x73")->set("\x69\160\137\141\x63\x63\145\x73\163\137\x74\171\x70\x65", $l0)->save();
        \Drupal::configFactory()->getEditable("\x72\145\x73\164\137\141\160\151\137\141\x75\164\150\145\156\164\151\x63\141\x74\151\x6f\156\x2e\163\x65\x74\164\x69\156\147\x73")->set("\x6c\151\163\x74\x5f\157\146\x5f\x69\x70\163", $vg)->save();
        \Drupal::messenger()->addMessage(t("\x43\x6f\156\146\x69\147\165\162\141\164\x69\x6f\x6e\163\x20\146\x6f\162\40\x49\x50\x20\102\141\x73\145\x64\40\x52\x65\163\x74\x72\x69\143\164\151\x6f\156\x20\x73\141\x76\x65\144\x20\163\x75\143\x63\x65\x73\163\x66\165\x6c\154\171\56"));
        $Ek = new RedirectResponse($base_url . "\57\x61\144\x6d\x69\x6e\57\143\x6f\156\x66\151\147\x2f\x70\145\157\x70\154\145\x2f\162\145\x73\x74\137\141\x70\151\137\141\165\x74\150\145\156\x74\151\x63\141\x74\151\x6f\x6e\57\141\165\x74\150\137\x73\x65\164\164\151\x6e\147\163\x3f\164\141\x62\x3d\145\144\151\x74\x2d\x61\144\x76\x61\156\x63\x65\144\x2d\x73\x65\x74\x74\x69\x6e\x67\163");
        $Ek->send();
        return;
    }
    function rest_api_authentication_save_basic_auth_conf(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        \Drupal::configFactory()->getEditable("\162\145\x73\164\137\141\160\151\137\x61\x75\x74\x68\x65\156\164\151\143\141\164\151\x6f\x6e\x2e\163\145\x74\164\x69\x6e\147\x73")->set("\x61\x75\164\x68\145\156\164\151\x63\141\164\151\157\156\137\155\x65\x74\150\x6f\x64", 0)->save();
        \Drupal::messenger()->addMessage(t("\x43\157\x6e\146\151\x67\165\x72\141\164\x69\x6f\156\163\40\x73\141\x76\145\144\x20\x73\x75\143\143\x65\x73\x73\x66\165\x6c\154\x79\x2e"));
        $Ek = new RedirectResponse($base_url . "\57\x61\144\x6d\151\x6e\x2f\x63\x6f\x6e\146\x69\x67\57\160\145\x6f\x70\x6c\145\57\x72\x65\x73\x74\137\x61\x70\151\x5f\x61\x75\164\150\x65\x6e\164\151\143\x61\164\x69\x6f\156\x2f\x61\x75\164\x68\137\163\x65\x74\164\151\x6e\147\163\77\x74\141\x62\75\x65\144\151\164\x2d\x61\x70\151\x2d\141\165\164\x68");
        $Ek->send();
        return;
    }
    function rest_api_authentication_save_basic_config(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $dP = $form_state->getValues();
        $E_ = $dP["\x65\156\x61\142\154\145\137\x61\x75\164\x68\x65\x6e\164\x69\143\141\164\x69\x6f\x6e"];
        $hG = $dP["\x77\x68\151\x74\145\154\151\x73\164\137\147\145\164\137\x61\160\x69\163"];
        \Drupal::configFactory()->getEditable("\x72\145\163\164\137\x61\160\151\x5f\x61\x75\164\150\x65\156\x74\151\x63\x61\x74\x69\x6f\x6e\x2e\x73\x65\164\164\151\x6e\147\x73")->set("\x72\145\163\164\x5f\x61\x70\x69\x5f\141\x75\164\x68\145\156\164\151\143\141\x74\151\x6f\156\x5f\x65\x6e\141\x62\154\x65\137\x61\x75\164\150\x65\156\164\x69\143\141\x74\151\157\x6e", $E_)->save();
        \Drupal::configFactory()->getEditable("\162\x65\163\x74\137\141\160\151\x5f\x61\x75\x74\x68\145\x6e\164\151\143\141\x74\151\157\x6e\56\x73\x65\164\x74\x69\156\x67\163")->set("\x77\x68\151\x74\145\154\151\163\164\x5f\147\x65\164\137\141\160\x69\x73", $hG)->save();
        \Drupal::messenger()->addMessage(t("\x53\145\164\164\x69\156\147\163\40\x53\x61\166\x65\144\40\x53\x75\143\x63\145\163\163\x66\165\154\154\x79\x2e"));
        $Ek = new RedirectResponse($base_url . "\x2f\141\144\x6d\151\156\57\143\157\156\146\151\147\x2f\160\145\157\x70\x6c\x65\57\162\145\163\x74\x5f\141\x70\x69\x5f\141\165\x74\x68\x65\156\164\x69\143\141\164\x69\157\156\57\x61\165\x74\x68\x5f\163\x65\164\x74\x69\156\147\x73\77\x74\x61\x62\x3d\x65\144\x69\x74\x2d\x61\160\x69\55\x61\165\164\x68");
        $Ek->send();
        return;
    }
    public function custom_header_submit(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $Ls = trim($form["\x61\144\x76\141\x6e\143\x65\x64\137\x73\145\x74\x74\x69\156\147\x73"]["\x73\x75\160\x70\157\x72\x74\137\x63\x6f\156\164\x61\151\156\145\162\x5f\x6f\165\x74\x6c\x69\156\x65"]["\x63\x75\x73\164\157\155\x5f\150\x65\141\144\x65\x72\x73"]["\144\x69\166\137\x6b\x65\171"]["\43\x76\141\x6c\x75\145"]);
        \Drupal::configFactory()->getEditable("\x72\145\x73\164\137\141\160\x69\x5f\141\x75\164\x68\x65\x6e\x74\151\143\141\x74\151\157\x6e\x2e\x73\145\164\164\x69\x6e\147\x73")->set("\143\165\163\164\x6f\155\137\x68\x65\141\144\x65\x72", $Ls)->save();
        \Drupal::messenger()->addMessage(t("\103\x75\x73\x74\x6f\x6d\x20\x48\145\141\144\145\162\x20\x43\157\156\146\x69\147\165\x72\141\164\151\x6f\156\163\x20\x73\x61\x76\145\x64\40\163\x75\143\x63\145\x73\163\x66\x75\x6c\x6c\171\56"));
        $Ek = new RedirectResponse($base_url . "\57\141\x64\x6d\x69\156\57\x63\157\156\x66\x69\x67\x2f\x70\145\157\160\154\145\57\x72\145\x73\164\137\x61\160\x69\x5f\x61\x75\164\150\145\156\164\151\143\141\164\x69\x6f\x6e\x2f\x61\165\x74\150\x5f\x73\x65\x74\164\151\x6e\x67\x73\x3f\164\x61\x62\x3d\x65\x64\x69\x74\55\x61\x64\x76\141\x6e\143\145\144\55\x73\x65\x74\164\x69\156\x67\x73");
        $Ek->send();
        return;
    }
    public function role_restriction_submit(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $WW = trim($form["\x61\144\x76\x61\x6e\x63\145\144\x5f\x73\x65\x74\164\151\156\x67\x73"]["\163\x75\160\x70\x6f\162\164\137\143\157\156\164\141\151\x6e\145\x72\137\x6f\165\x74\x6c\151\x6e\145"]["\x72\x65\x73\x74\162\151\x63\x74\x5f\x72\x6f\154\x65\163"]["\141\x70\151\137\x74\x65\x78\x74\x61\162\x65\141"]["\x23\x76\x61\154\x75\x65"]);
        \Drupal::configFactory()->getEditable("\x72\x65\163\x74\137\141\160\x69\137\x61\165\164\x68\x65\x6e\164\151\x63\x61\164\x69\x6f\156\x2e\163\145\164\x74\151\156\x67\x73")->set("\154\151\x73\x74\137\157\146\x5f\162\x6f\154\x65\137\x72\145\x73\164\x72\x69\x63\164\151\157\x6e\163", $WW)->save();
        \Drupal::messenger()->addMessage(t("\x43\157\x6e\146\x69\147\165\162\x61\x74\151\x6f\x6e\163\x20\x66\x6f\162\40\x52\x6f\154\x65\40\102\x61\x73\145\144\40\122\145\x73\164\x72\151\143\164\x69\x6f\156\x73\40\163\x61\166\x65\x64\x20\163\165\x63\143\145\x73\x73\146\165\154\154\x79\56"));
        $Ek = new RedirectResponse($base_url . "\x2f\x61\x64\155\151\156\57\143\157\x6e\x66\x69\x67\x2f\160\145\x6f\x70\154\x65\x2f\162\x65\163\x74\137\141\x70\151\x5f\141\x75\164\x68\x65\156\164\151\143\141\x74\x69\157\156\57\141\165\x74\x68\137\163\x65\x74\x74\x69\156\x67\x73\x3f\x74\x61\142\x3d\x65\x64\x69\x74\x2d\141\144\166\x61\156\x63\145\x64\55\x73\145\x74\x74\151\156\x67\163");
        $Ek->send();
        return;
    }
    public function token_expiry_submit(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $Ls = trim($form["\141\x64\166\141\x6e\x63\x65\144\x5f\x73\x65\164\164\151\x6e\147\163"]["\x73\x75\x70\x70\x6f\x72\x74\x5f\x63\x6f\x6e\164\x61\151\156\145\x72\x5f\157\x75\x74\154\151\x6e\x65"]["\x63\x75\163\164\x6f\155\137\150\x65\x61\144\x65\162\x73"]["\144\151\x76\137\153\x65\171"]["\x23\x76\141\154\165\145"]);
        \Drupal::configFactory()->getEditable("\162\x65\x73\164\x5f\x61\160\x69\137\x61\165\164\x68\x65\x6e\164\x69\143\141\x74\151\x6f\x6e\56\x73\x65\x74\x74\x69\x6e\x67\x73")->set("\x63\165\163\x74\157\x6d\x5f\150\145\x61\x64\x65\162", $Ls)->save();
        $QB = trim($form["\x61\x64\x76\141\156\x63\145\x64\x5f\163\145\x74\164\x69\x6e\x67\x73"]["\163\165\160\160\157\x72\164\x5f\x63\x6f\156\164\x61\x69\156\145\162\x5f\x6f\x75\164\154\x69\156\x65"]["\x74\157\x6b\145\156\x5f\145\x78\x70\151\x72\x79"]["\141\143\143\145\x73\x73\x5f\x74\157\x6b\x65\156\x5f\x65\170\x70\151\x72\171\137\x74\x69\x6d\x65"]["\43\x76\141\x6c\x75\x65"]);
        $QB = !empty($QB) ? $QB : null;
        \Drupal::configFactory()->getEditable("\x72\145\x73\164\x5f\x61\160\x69\137\141\x75\x74\150\x65\156\x74\x69\143\141\x74\151\157\156\x2e\x73\x65\164\x74\151\x6e\x67\x73")->set("\164\x6f\153\145\x6e\x5f\x65\170\x70\151\162\x79", $QB)->save();
        \Drupal::messenger()->addMessage(t("\103\157\x6e\x66\151\x67\165\x72\141\x74\151\x6f\x6e\x73\40\x73\141\166\145\144\40\x73\165\143\x63\145\x73\x73\146\x75\154\154\171\56"));
        $Ek = new RedirectResponse($base_url . "\x2f\x61\x64\155\151\156\57\x63\x6f\156\x66\151\x67\57\x70\145\x6f\x70\154\145\57\x72\x65\x73\164\x5f\141\x70\151\x5f\x61\165\x74\x68\x65\156\164\151\143\141\x74\151\157\156\57\x61\x75\164\150\x5f\163\145\x74\164\x69\156\147\x73\77\x74\141\142\75\145\x64\151\164\x2d\x61\x64\166\x61\156\x63\145\x64\x2d\163\145\x74\164\151\x6e\147\163");
        $Ek->send();
        return;
    }
    public function saveAPIToBeRestrictedSettings(array &$form, FormStateInterface $form_state)
    {
        global $base_url;
        $X6 = $form["\141\x64\x76\141\156\x63\145\144\137\x73\x65\164\x74\x69\156\147\163"]["\163\x75\x70\160\157\x72\x74\x5f\143\157\x6e\164\x61\x69\156\145\162\137\157\x75\164\154\x69\x6e\145"]["\x65\156\x61\x62\x6c\x65\137\x61\160\x69\137\143\x68\145\143\153\142\157\x78\x65\x73"]["\x65\x6e\x61\142\x6c\145\x5f\x52\x45\123\124\x5f\x61\x70\151\x73"]["\43\x76\x61\154\x75\145"];
        $Ap = $form["\x61\x64\x76\141\x6e\143\145\x64\137\163\145\164\164\x69\156\x67\163"]["\163\x75\160\x70\157\x72\164\137\143\x6f\156\x74\x61\x69\x6e\145\162\137\157\165\164\x6c\x69\156\145"]["\x65\x6e\141\142\154\x65\x5f\141\x70\151\x5f\x63\150\145\x63\x6b\x62\157\170\x65\163"]["\x65\x6e\141\x62\x6c\x65\137\x4a\123\x4f\x4e\137\141\160\151\163"]["\43\166\x61\154\x75\x65"];
        $xo = $form["\141\144\166\141\156\x63\145\144\x5f\163\145\x74\x74\x69\156\147\163"]["\x73\x75\x70\160\x6f\x72\164\137\143\x6f\x6e\164\x61\x69\x6e\145\x72\x5f\157\x75\164\154\x69\x6e\x65"]["\145\x6e\x61\142\154\x65\137\x61\160\151\x5f\143\150\145\x63\153\142\x6f\170\145\x73"]["\145\156\x61\142\x6c\x65\137\x63\x75\163\164\x6f\155\137\141\x70\151\x73"]["\43\166\141\x6c\165\x65"];
        \Drupal::configFactory()->getEditable("\162\x65\x73\x74\137\141\x70\151\x5f\141\165\x74\150\x65\156\x74\x69\x63\x61\164\151\x6f\156\x2e\x73\145\x74\x74\x69\156\x67\x73")->set("\162\x65\163\x74\x5f\x61\x70\151\137\x61\x75\x74\150\x65\x6e\164\151\x63\x61\x74\x69\157\x6e\137\145\156\x61\142\x6c\x65\x5f\162\145\x73\x74\x5f\x61\160\151\x5f\x61\165\x74\150\x65\156\164\x69\x63\141\x74\151\157\156", $X6)->save();
        \Drupal::configFactory()->getEditable("\x72\x65\x73\164\x5f\x61\x70\151\137\141\165\164\150\x65\156\x74\151\143\x61\164\151\157\x6e\x2e\163\145\164\164\x69\156\x67\163")->set("\162\145\x73\x74\x5f\141\160\x69\x5f\141\x75\164\x68\145\x6e\164\x69\x63\141\x74\x69\x6f\x6e\x5f\x65\156\x61\x62\x6c\145\137\x6a\163\x6f\156\x5f\x61\x70\151\x5f\141\165\164\150\x65\156\164\151\x63\141\164\151\x6f\x6e", $Ap)->save();
        \Drupal::configFactory()->getEditable("\162\x65\x73\164\x5f\141\x70\x69\137\x61\165\x74\150\x65\156\x74\151\x63\x61\x74\x69\157\156\56\163\145\164\x74\x69\156\x67\x73")->set("\x72\x65\163\x74\137\141\x70\x69\x5f\141\165\164\150\145\x6e\164\151\143\141\x74\x69\157\x6e\137\145\156\x61\142\x6c\145\137\x63\165\163\164\157\x6d\137\x61\160\x69\x5f\141\x75\x74\x68\x65\156\164\x69\143\x61\164\151\x6f\x6e", $xo)->save();
        \Drupal::messenger()->addMessage(t("\x43\x6f\156\146\151\x67\165\x72\141\164\x69\157\x6e\x73\40\x73\141\x76\x65\x64\x20\163\x75\x63\143\x65\x73\163\146\165\x6c\154\x79\x2e"));
        $Ek = new RedirectResponse($base_url . "\57\x61\x64\155\151\156\x2f\143\x6f\156\x66\x69\147\57\160\145\157\x70\x6c\x65\x2f\162\145\163\x74\x5f\141\160\151\x5f\x61\x75\x74\150\x65\x6e\164\151\143\141\164\151\157\156\x2f\x61\x75\x74\x68\x5f\x73\145\x74\164\x69\x6e\147\x73\77\x74\x61\x62\x3d\x65\x64\x69\164\55\141\144\x76\x61\x6e\143\x65\144\55\x73\145\164\164\x69\x6e\x67\x73");
        $Ek->send();
    }
}

Function Calls

None

Variables

None

Stats

MD5 c8e2d8c83b442c46a2c9c19e64a0bfa3
Eval Count 0
Decode Time 186 ms