@danetix/sentinel 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/stl.cjs.min.js +1 -1
- package/dist/stl.esm.min.js +1 -1
- package/dist/stl.min.js +1 -1
- package/dist/stl.umd.min.js +1 -1
- package/package.json +8 -26
package/dist/stl.cjs.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const _0x274086={};_0x274086['value']=!![],Object['defineProperty'](exports,'__esModule',_0x274086);const STORAGE_KEY_DEFAULT='_dxc';function createMemoryCache(_0x3210d2){let _0x4216bc=null;return{'get'(){if(_0x4216bc===null)return null;if(Date['now']()-_0x4216bc['ts']>_0x3210d2*0x3e8)return _0x4216bc=null,null;return _0x4216bc['result'];},'set'(_0x3499ab){_0x4216bc={'result':_0x3499ab,'ts':Date['now']()};},'clear'(){_0x4216bc=null;}};}function createStorageCache(_0x3a4f2a,_0x197f17,_0x425a33){const _0x31cdcb=_0x425a33;return{'get'(){try{const _0x1bec8c=_0x197f17['getItem'](_0x31cdcb);if(_0x1bec8c===null)return null;const _0x17f809=JSON['parse'](_0x1bec8c);if(Date['now']()-_0x17f809['ts']>_0x3a4f2a*0x3e8)return _0x197f17['removeItem'](_0x31cdcb),null;return _0x17f809['result'];}catch{return null;}},'set'(_0x46cc33){try{_0x197f17['setItem'](_0x31cdcb,JSON['stringify']({'result':_0x46cc33,'ts':Date['now']()}));}catch{}},'clear'(){try{_0x197f17['removeItem'](_0x31cdcb);}catch{}}};}function createCache(_0x48c183){const {ttl:ttl=0x0,location:location='memory',prefix:prefix=STORAGE_KEY_DEFAULT}=_0x48c183;if(ttl<=0x0)return null;if(location==='memory')return createMemoryCache(ttl);try{const _0x3a4dea=location==='localStorage'?localStorage:sessionStorage;return createStorageCache(ttl,_0x3a4dea,prefix);}catch{return createMemoryCache(ttl);}}const SESSION_KEY='_dxe',SESSION_TIMEOUT_MS=0x1e*0x3c*0x3e8;let cachedSessionId=null,lastActivity=0x0;function getSessionId(){if(typeof sessionStorage==='undefined')return undefined;const _0x19e3a8=Date['now']();if(cachedSessionId!==null&&_0x19e3a8-lastActivity<SESSION_TIMEOUT_MS)return lastActivity=_0x19e3a8,cachedSessionId;const _0x488fed=sessionStorage['getItem'](SESSION_KEY);if(_0x488fed!==null)try{const _0x1e8648=JSON['parse'](_0x488fed);if(_0x19e3a8-_0x1e8648['ts']<SESSION_TIMEOUT_MS)return cachedSessionId=_0x1e8648['id'],lastActivity=_0x19e3a8,persistSession(_0x1e8648['id'],_0x19e3a8),_0x1e8648['id'];}catch{}const _0x327f8=generateSessionId();return cachedSessionId=_0x327f8,lastActivity=_0x19e3a8,persistSession(_0x327f8,_0x19e3a8),_0x327f8;}function persistSession(_0x52ed9e,_0x548d9d){try{const _0x5f1a03={};_0x5f1a03['id']=_0x52ed9e,_0x5f1a03['ts']=_0x548d9d,sessionStorage['setItem'](SESSION_KEY,JSON['stringify'](_0x5f1a03));}catch{}}function generateSessionId(){if(typeof crypto!=='undefined'&&typeof crypto['randomUUID']==='function')return crypto['randomUUID']();return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'['replace'](/[xy]/g,_0xffaaf0=>{const _0x36334b=Math['random']()*0x10|0x0,_0x19b24b=_0xffaaf0==='x'?_0x36334b:_0x36334b&0x3|0x8;return _0x19b24b['toString'](0x10);});}const KEY_CLIENT_COOKIE='_dx',KEY_LOCAL_STORAGE='_dxl',KEY_IDB_STORE='_dx',KEY_IDB_KEY='d',IDB_DB_NAME='_dx',IDB_VERSION=0x1;function getCookie(){try{const _0x548bae=document['cookie']['match'](new RegExp('(?:^|;\x5cs*)'+KEY_CLIENT_COOKIE+'=([^;]*)'));return _0x548bae?decodeURIComponent(_0x548bae[0x1]):null;}catch{return null;}}function setCookie(_0x3b55a5){try{const _0x5c7970=0x16d*0x18*0x3c*0x3c,_0x5dbbc5=typeof location!=='undefined'&&location['protocol']==='https:'?';\x20secure':'';document['cookie']=KEY_CLIENT_COOKIE+'='+encodeURIComponent(_0x3b55a5)+';\x20path=/;\x20max-age='+_0x5c7970+';\x20samesite=lax'+_0x5dbbc5;}catch{}}function getLocalStorage$1(){try{return localStorage['getItem'](KEY_LOCAL_STORAGE);}catch{return null;}}function setLocalStorage(_0x4478ff){try{localStorage['setItem'](KEY_LOCAL_STORAGE,_0x4478ff);}catch{}}function openIdb(){return new Promise(_0x4f9a03=>{try{const _0x407b9e=indexedDB['open'](IDB_DB_NAME,IDB_VERSION);_0x407b9e['onupgradeneeded']=()=>{const _0x3ec923=_0x407b9e['result'];!_0x3ec923['objectStoreNames']['contains'](KEY_IDB_STORE)&&_0x3ec923['createObjectStore'](KEY_IDB_STORE);},_0x407b9e['onsuccess']=()=>_0x4f9a03(_0x407b9e['result']),_0x407b9e['onerror']=()=>_0x4f9a03(null);}catch{_0x4f9a03(null);}});}function getIndexedDb(){return new Promise(_0x44999c=>{openIdb()['then'](_0x58d91a=>{if(_0x58d91a===null){_0x44999c(null);return;}try{const _0x8d4826=_0x58d91a['transaction'](KEY_IDB_STORE,'readonly'),_0x2588ef=_0x8d4826['objectStore'](KEY_IDB_STORE),_0x5c7458=_0x2588ef['get'](KEY_IDB_KEY);_0x5c7458['onsuccess']=()=>{_0x58d91a['close'](),_0x44999c(typeof _0x5c7458['result']==='string'?_0x5c7458['result']:null);},_0x5c7458['onerror']=()=>{_0x58d91a['close'](),_0x44999c(null);};}catch{_0x58d91a['close'](),_0x44999c(null);}})['catch'](()=>_0x44999c(null));});}function setIndexedDb(_0x510476){openIdb()['then'](_0x5e1569=>{if(_0x5e1569===null)return;try{const _0x166c66=_0x5e1569['transaction'](KEY_IDB_STORE,'readwrite'),_0x312885=_0x166c66['objectStore'](KEY_IDB_STORE);_0x312885['put'](_0x510476,KEY_IDB_KEY),_0x166c66['oncomplete']=()=>_0x5e1569['close'](),_0x166c66['onerror']=()=>_0x5e1569['close']();}catch{_0x5e1569['close']();}})['catch'](()=>{});}async function loadDeviceToken(){const _0xc99ba4=getCookie();if(_0xc99ba4!==null)return _0xc99ba4;const _0x551e8a=getLocalStorage$1();if(_0x551e8a!==null)return _0x551e8a;return getIndexedDb();}function saveDeviceToken(_0x44e1c0){setCookie(_0x44e1c0),setLocalStorage(_0x44e1c0),setIndexedDb(_0x44e1c0);}function wait(_0x1f1ede,_0xbbb9d3){return new Promise(_0x5a85d7=>setTimeout(_0x5a85d7,_0x1f1ede,_0xbbb9d3));}function releaseEventLoop(){return new Promise(_0x1e6c71=>{const _0x116ee4=new MessageChannel();_0x116ee4['port1']['onmessage']=()=>_0x1e6c71(),_0x116ee4['port2']['postMessage'](null);});}function requestIdleCallbackIfAvailable(_0x9e0b05,_0x1544a7=Infinity){const {requestIdleCallback:_0x167162}=window;if(typeof _0x167162==='function'){const _0x196311={};return _0x196311['timeout']=_0x1544a7,new Promise(_0x31b43f=>_0x167162['call'](window,()=>_0x31b43f(),_0x196311));}return wait(Math['min'](_0x9e0b05,_0x1544a7));}function isPromise(_0x39183f){return _0x39183f!==null&&_0x39183f!==undefined&&typeof _0x39183f['then']==='function';}function awaitIfAsync(_0x266c86,_0x3f5a94){try{const _0x130ee4=_0x266c86();isPromise(_0x130ee4)?_0x130ee4['then'](_0x3b9a1c=>_0x3f5a94(!![],_0x3b9a1c),_0x1a0e57=>_0x3f5a94(![],_0x1a0e57)):_0x3f5a94(!![],_0x130ee4);}catch(_0xefc0df){_0x3f5a94(![],_0xefc0df);}}async function mapWithBreaks(_0x6b2ced,_0x492177,_0x398447=0x10){const _0x10e883=Array(_0x6b2ced['length']);let _0x32284c=Date['now']();for(let _0x2d6079=0x0;_0x2d6079<_0x6b2ced['length'];++_0x2d6079){_0x10e883[_0x2d6079]=_0x492177(_0x6b2ced[_0x2d6079],_0x2d6079);const _0x484c5f=Date['now']();_0x484c5f>=_0x32284c+_0x398447&&(_0x32284c=_0x484c5f,await releaseEventLoop());}return _0x10e883;}function suppressUnhandledRejectionWarning(_0xf7094d){return _0xf7094d['then'](undefined,()=>undefined),_0xf7094d;}const DEFAULT_MAX_RETRIES=0x3,DEFAULT_BASE_DELAY=0xc8,DEFAULT_MAX_DELAY=0x2710;async function fetchWithRetry(_0x3451d3,_0xb49256,_0x1bfe7a){const _0xf57288=_0x1bfe7a?.['maxRetries']??DEFAULT_MAX_RETRIES,_0x152af8=_0x1bfe7a?.['baseDelayMs']??DEFAULT_BASE_DELAY,_0x5a690d=_0x1bfe7a?.['maxDelayMs']??DEFAULT_MAX_DELAY;for(let _0x164d70=0x0;_0x164d70<=_0xf57288;_0x164d70++){try{const _0x2b83a1=await fetch(_0x3451d3,_0xb49256);if(_0x2b83a1['ok']||_0x2b83a1['status']<0x1f4&&_0x2b83a1['status']!==0x1ad)return _0x2b83a1;if(_0x2b83a1['status']===0x1ad&&_0x164d70<_0xf57288){const _0x52dcef=parseRetryAfter(_0x2b83a1['headers']['get']('Retry-After'));await wait(_0x52dcef??computeBackoff(_0x164d70,_0x152af8,_0x5a690d));continue;}if(_0x2b83a1['status']>=0x1f4&&_0x164d70<_0xf57288){await wait(computeBackoff(_0x164d70,_0x152af8,_0x5a690d));continue;}return _0x2b83a1;}catch(_0x48928c){if(_0x164d70>=_0xf57288)throw _0x48928c;await wait(computeBackoff(_0x164d70,_0x152af8,_0x5a690d));}}throw new Error('fetchWithRetry:\x20exhausted\x20retries');}function computeBackoff(_0x23523f,_0x388179,_0xe21a46){const _0x4a6f9e=Math['min'](_0xe21a46,_0x388179*0x2**_0x23523f);return _0x4a6f9e*(0.5+Math['random']()*0.5);}function parseRetryAfter(_0x3173a4){if(_0x3173a4===null)return null;const _0x19269a=Number(_0x3173a4);if(!Number['isNaN'](_0x19269a)&&_0x19269a>0x0)return _0x19269a*0x3e8;const _0x24bbf7=Date['parse'](_0x3173a4);if(!Number['isNaN'](_0x24bbf7))return Math['max'](0x0,_0x24bbf7-Date['now']());return null;}const SENSITIVE_PARAMS=['token','key','secret','password','auth','session','jwt','api_key','apikey','credential','bearer','signature','sig','access_token','refresh_token','code','state','ssn','credit_card','card_number'];function sanitizeUrl(_0x3e6c2e){try{const _0x7a172f=new URL(_0x3e6c2e),_0x215788=[];for(const [_0x159909]of _0x7a172f['searchParams']){const _0xd0e0f6=_0x159909['toLowerCase']();SENSITIVE_PARAMS['some'](_0x3886d7=>_0xd0e0f6['includes'](_0x3886d7))&&_0x215788['push'](_0x159909);}for(const _0x447dbf of _0x215788){_0x7a172f['searchParams']['set'](_0x447dbf,'[REDACTED]');}return _0x7a172f['hash']='',_0x7a172f['toString']();}catch{return _0x3e6c2e;}}function toBase64Url(_0x3f57a3){let _0xcf288b='';for(let _0x2e9bd9=0x0;_0x2e9bd9<_0x3f57a3['length'];_0x2e9bd9++){_0xcf288b+=String['fromCharCode'](_0x3f57a3[_0x2e9bd9]);}return btoa(_0xcf288b)['replace'](/\+/g,'-')['replace'](/\//g,'_')['replace'](/=+$/,'');}function isCompressionSupported(){return typeof CompressionStream!=='undefined';}async function compressPayload(_0x442b01){if(!isCompressionSupported())return _0x442b01;const _0x111ce9=new Blob([_0x442b01])['stream']()['pipeThrough'](new CompressionStream('deflate-raw')),_0x5348c4=await new Response(_0x111ce9)['arrayBuffer']();return new Uint8Array(_0x5348c4);}const MARKER_1=0xca,MARKER_2=0xfe,KEY_LENGTH=0x9,MAX_PADDING=0x20;function getRandomBytes(_0x1212c8){const _0x49aab9=new Uint8Array(_0x1212c8);return crypto['getRandomValues'](_0x49aab9),_0x49aab9;}function createXorEnvelope(_0x3d04be){const _0x11988e=getRandomBytes(0x1)[0x0],_0x57a45b=Math['floor'](Math['random']()*MAX_PADDING),_0x427470=getRandomBytes(_0x57a45b),_0x422e00=getRandomBytes(KEY_LENGTH),_0x2409e9=0x1+0x2+0x1+_0x57a45b+KEY_LENGTH,_0x3d75cc=new Uint8Array(_0x2409e9+_0x3d04be['length']);let _0x136ff6=0x0;_0x3d75cc[_0x136ff6++]=_0x11988e,_0x3d75cc[_0x136ff6++]=MARKER_1+_0x11988e&0xff,_0x3d75cc[_0x136ff6++]=MARKER_2+_0x11988e&0xff,_0x3d75cc[_0x136ff6++]=_0x57a45b+_0x11988e&0xff,_0x3d75cc['set'](_0x427470,_0x136ff6),_0x136ff6+=_0x57a45b,_0x3d75cc['set'](_0x422e00,_0x136ff6),_0x136ff6+=KEY_LENGTH;for(let _0x31fdee=0x0;_0x31fdee<_0x3d04be['length'];_0x31fdee++){_0x3d75cc[_0x136ff6+_0x31fdee]=_0x3d04be[_0x31fdee]^_0x422e00[_0x31fdee%KEY_LENGTH];}return _0x3d75cc;}async function encodePayload(_0x5a6301){const _0x3b15ed=new TextEncoder()['encode'](_0x5a6301),_0x3806ee=isCompressionSupported(),_0x133ec7=_0x3806ee?await compressPayload(_0x3b15ed):_0x3b15ed,_0x33211b=createXorEnvelope(_0x133ec7),_0x1aa27f={};_0x1aa27f['v']=0x1,_0x1aa27f['c']=_0x3806ee;const _0x2e79c6=JSON['stringify'](_0x1aa27f),_0x3a5de1=new TextEncoder()['encode'](_0x2e79c6);return toBase64Url(_0x3a5de1)+':'+toBase64Url(_0x33211b);}let inflightPromise=null;async function capture(_0x2103dc,_0x28225b,_0x442c4a){if(inflightPromise!==null)try{await inflightPromise;}catch{}const _0x365a82=doCapture(_0x2103dc,_0x28225b,_0x442c4a);inflightPromise=_0x365a82;try{return await _0x365a82;}finally{inflightPromise===_0x365a82&&(inflightPromise=null);}}async function doCapture(_0x817ffa,_0x137797,_0x5a24ca){const {components:_0x3f404b,version:_0x2ec85e}=await _0x817ffa['get'](),_0x50ee34=await loadDeviceToken()??undefined,_0x2c9b5a={};for(const [_0x25cbeb,_0x49c2b4]of Object['entries'](_0x3f404b)){const {duration:_0x4d46e3,..._0x3dc9a6}=_0x49c2b4;_0x2c9b5a[_0x25cbeb]=_0x3dc9a6;}const _0xf90575={'components':_0x2c9b5a,'version':_0x2ec85e,'storedDeviceToken':_0x50ee34,'linkedId':_0x5a24ca?.['linkedId'],'tag':_0x5a24ca?.['tag'],'custom':_0x5a24ca?.['custom'],'url':typeof location!=='undefined'?sanitizeUrl(location['href']):undefined,'referrer':typeof document!=='undefined'&&document['referrer']?sanitizeUrl(document['referrer']):undefined,'pageTitle':typeof document!=='undefined'?document['title']||undefined:undefined,'sessionId':getSessionId()},_0x4511db=await encodePayload(JSON['stringify'](_0xf90575)),_0xbcaaad=await fetchWithRetry(_0x137797['endpoint'],{'method':'POST','headers':{'Content-Type':'text/plain','X-API-Key':_0x137797['apiKey']},'credentials':'include','body':_0x4511db},_0x137797['retry']);if(!_0xbcaaad['ok']){let _0x30da06;try{const _0x2047f3=await _0xbcaaad['json']();_0x30da06=_0x2047f3['error']??'HTTP\x20'+_0xbcaaad['status'];}catch{_0x30da06='HTTP\x20'+_0xbcaaad['status'];}throw new Error('Endpoint\x20error:\x20'+_0x30da06);}const _0x36ac41=await _0xbcaaad['json']();return _0x36ac41['signedDeviceToken']&&saveDeviceToken(_0x36ac41['signedDeviceToken']),_0x36ac41;}function includes(_0x2bd941,_0x1bd7c9){for(let _0x34bc05=0x0,_0x1d9922=_0x2bd941['length'];_0x34bc05<_0x1d9922;++_0x34bc05){if(_0x2bd941[_0x34bc05]===_0x1bd7c9)return!![];}return![];}function excludes(_0x49a5ef,_0x567c34){return!includes(_0x49a5ef,_0x567c34);}function toInt(_0x3b2ad8){return parseInt(_0x3b2ad8);}function toFloat(_0x56dd46){return parseFloat(_0x56dd46);}function replaceNaN(_0x312b1b,_0x159c42){return typeof _0x312b1b==='number'&&isNaN(_0x312b1b)?_0x159c42:_0x312b1b;}function countTruthy(_0x44639c){return _0x44639c['reduce']((_0x3be91a,_0x5809ff)=>_0x3be91a+(Boolean(_0x5809ff)?0x1:0x0),0x0);}function round$1(_0x2cd799,_0x41b78e=0x1){if(Math['abs'](_0x41b78e)>=0x1)return Math['round'](_0x2cd799/_0x41b78e)*_0x41b78e;const _0x109242=0x1/_0x41b78e;return Math['round'](_0x2cd799*_0x109242)/_0x109242;}function isFinalResultLoaded(_0x541836){return typeof _0x541836!=='function';}function loadSource(_0x4ca9d2,_0x1c3b35){const _0x570b7c=suppressUnhandledRejectionWarning(new Promise(_0xbfc639=>{const _0x1df9f9=Date['now']();awaitIfAsync(_0x4ca9d2['bind'](null,_0x1c3b35),(..._0x270f16)=>{const _0x51227f=Date['now']()-_0x1df9f9;if(!_0x270f16[0x0])return _0xbfc639(()=>({'error':_0x270f16[0x1],'duration':_0x51227f}));const _0x5585cc=_0x270f16[0x1];if(isFinalResultLoaded(_0x5585cc))return _0xbfc639(()=>({'value':_0x5585cc,'duration':_0x51227f}));_0xbfc639(()=>new Promise(_0xb4ce7c=>{const _0x5e4399=Date['now']();awaitIfAsync(_0x5585cc,(..._0x66b25)=>{const _0x32eadc=_0x51227f+Date['now']()-_0x5e4399;if(!_0x66b25[0x0]){const _0x613e6a={};return _0x613e6a['error']=_0x66b25[0x1],_0x613e6a['duration']=_0x32eadc,_0xb4ce7c(_0x613e6a);}const _0x3242f6={};_0x3242f6['value']=_0x66b25[0x1],_0x3242f6['duration']=_0x32eadc,_0xb4ce7c(_0x3242f6);});}));});}));return function _0x5c815e(){return _0x570b7c['then'](_0x181b90=>_0x181b90());};}function loadSources(_0x376819,_0x46f347,_0x2cbf6c,_0x334b7c){const _0x7a30f=Object['keys'](_0x376819)['filter'](_0x3deefa=>excludes(_0x2cbf6c,_0x3deefa)),_0x235f11=suppressUnhandledRejectionWarning(mapWithBreaks(_0x7a30f,_0x4748f7=>loadSource(_0x376819[_0x4748f7],_0x46f347),_0x334b7c));return async function _0x34c1c4(){const _0x43c448=await _0x235f11,_0x268765=await mapWithBreaks(_0x43c448,_0x31db10=>suppressUnhandledRejectionWarning(_0x31db10()),_0x334b7c),_0x58101f=await Promise['all'](_0x268765),_0x1f391c={};for(let _0x4fa23c=0x0;_0x4fa23c<_0x7a30f['length'];++_0x4fa23c){_0x1f391c[_0x7a30f[_0x4fa23c]]=_0x58101f[_0x4fa23c];}return _0x1f391c;};}function getArchitecture(){const _0x12a0b3=new Float32Array(0x1),_0x10a587=new Uint8Array(_0x12a0b3['buffer']);return _0x12a0b3[0x0]=Infinity,_0x12a0b3[0x0]=_0x12a0b3[0x0]-_0x12a0b3[0x0],_0x10a587[0x3];}function errorToObject(_0x29df5b){return{'name':_0x29df5b['name'],'message':_0x29df5b['message'],'stack':_0x29df5b['stack']?.['split']('\x0a'),..._0x29df5b};}function isFunctionNative(_0x2a8dbb){return/^function\s.*?\{\s*\[native code]\s*}$/['test'](String(_0x2a8dbb));}function isTrident(){const _0x233e85=window,_0x531539=navigator;return countTruthy(['MSCSSMatrix'in _0x233e85,'msSetImmediate'in _0x233e85,'msIndexedDB'in _0x233e85,'msMaxTouchPoints'in _0x531539,'msPointerEnabled'in _0x531539])>=0x4;}function isEdgeHTML(){const _0x1d43f0=window,_0x379f66=navigator;return countTruthy(['msWriteProfilerMark'in _0x1d43f0,'MSStream'in _0x1d43f0,'msLaunchUri'in _0x379f66,'msSaveBlob'in _0x379f66])>=0x3&&!isTrident();}function isChromium(){const _0x384dec=window,_0x5e9af8=navigator;return countTruthy(['webkitPersistentStorage'in _0x5e9af8,'webkitTemporaryStorage'in _0x5e9af8,(_0x5e9af8['vendor']||'')['indexOf']('Google')===0x0,'webkitResolveLocalFileSystemURL'in _0x384dec,'BatteryManager'in _0x384dec,'webkitMediaStream'in _0x384dec,'webkitSpeechGrammar'in _0x384dec])>=0x5;}function isWebKit(){const _0x1059e1=window,_0x156f38=navigator;return countTruthy(['ApplePayError'in _0x1059e1,'CSSPrimitiveValue'in _0x1059e1,'Counter'in _0x1059e1,_0x156f38['vendor']['indexOf']('Apple')===0x0,'RGBColor'in _0x1059e1,'WebKitMediaKeys'in _0x1059e1])>=0x4;}function isDesktopWebKit(){const _0x10ece7=window;return countTruthy(['safari'in _0x10ece7,!('ongestureend'in _0x10ece7),!('TouchEvent'in _0x10ece7),!('orientation'in _0x10ece7),!('autocapitalize'in _0x10ece7['HTMLElement']['prototype']),'pointerLockElement'in _0x10ece7['Document']['prototype']])>=0x4;}function isSafariWebKit(){const _0x199a78=window;return isFunctionNative(_0x199a78['print'])&&String(_0x199a78['browser'])==='[object\x20WebPageNamespace]';}function isGecko(){const _0x1b13c1=window;return countTruthy(['buildID'in navigator,'MozAppearance'in document['documentElement']['style'],'onmozfullscreenchange'in _0x1b13c1,'mozInnerScreenX'in _0x1b13c1,'CSSMozDocumentRule'in _0x1b13c1,'CanvasCaptureMediaStream'in _0x1b13c1])>=0x4;}function isGecko120OrNewer(){const _0x1c698d=window,_0x1519f5=navigator,{CSS:_0x116259}=_0x1c698d;return countTruthy(['userActivation'in _0x1519f5,_0x116259['supports']('color','light-dark(#000,\x20#fff)'),_0x116259['supports']('height','1lh'),'globalPrivacyControl'in _0x1519f5])>=0x3;}function isGecko143OrNewer(){const {CSS:_0x27e756}=window;return countTruthy([_0x27e756['supports']('selector(::details-content)'),_0x27e756['supports']('selector(::before::marker)'),_0x27e756['supports']('selector(::after::marker)'),!('locale'in CompositionEvent['prototype'])])>=0x3;}function isChromium86OrNewer(){const _0x36c077=window;return countTruthy([!('MediaSettingsRange'in _0x36c077),'RTCEncodedAudioFrame'in _0x36c077,''+_0x36c077['Intl']==='[object\x20Intl]',''+_0x36c077['Reflect']==='[object\x20Reflect]'])>=0x3;}function isChromium122OrNewer(){const _0xf0dd4b=window,{URLPattern:_0x55a9ef}=_0xf0dd4b;return countTruthy(['union'in Set['prototype'],'Iterator'in _0xf0dd4b,_0x55a9ef&&'hasRegExpGroups'in _0x55a9ef['prototype'],'RGB8'in WebGLRenderingContext['prototype']])>=0x3;}function isWebKit606OrNewer(){const _0x316666=window;return countTruthy(['DOMRectList'in _0x316666,'RTCPeerConnectionIceEvent'in _0x316666,'SVGGeometryElement'in _0x316666,'ontransitioncancel'in _0x316666])>=0x3;}function isWebKit616OrNewer(){const _0x58d97e=window,_0x5c96c7=navigator,{CSS:_0x557919,HTMLButtonElement:_0x535faa}=_0x58d97e;return countTruthy([!('getStorageUpdates'in _0x5c96c7),'popover'in _0x535faa['prototype'],'CSSCounterStyleRule'in _0x58d97e,_0x557919['supports']('font-size-adjust:\x20ex-height\x200.5'),_0x557919['supports']('text-transform:\x20full-width')])>=0x4;}function isIPad(){if(navigator['platform']==='iPad')return!![];const _0x228a7c=screen,_0x3ebae5=_0x228a7c['width']/_0x228a7c['height'];return countTruthy(['MediaSource'in window,!!Element['prototype']['webkitRequestFullscreen'],_0x3ebae5>0.65&&_0x3ebae5<1.53])>=0x2;}function isModernBrowser(){const _0x3dc732=window,_0x112ce9=navigator;return countTruthy(['maxTouchPoints'in _0x112ce9,'mediaCapabilities'in _0x112ce9,'PointerEvent'in _0x3dc732,'visualViewport'in _0x3dc732,'onafterprint'in _0x3dc732])>=0x4;}function getFullscreenElement(){const _0x467cd1=document;return _0x467cd1['fullscreenElement']??_0x467cd1['msFullscreenElement']??_0x467cd1['mozFullScreenElement']??_0x467cd1['webkitFullscreenElement']??null;}function exitFullscreen(){const _0x467bde=document;return _0x467bde['exitFullscreen']['call'](_0x467bde);}function isAndroid(){const _0x276dd2=isChromium(),_0x1eff34=isGecko(),_0x4dc541=window,_0x3f4a1b=navigator,_0x118029='connection';if(_0x276dd2)return countTruthy([!('SharedWorker'in _0x4dc541),_0x3f4a1b[_0x118029]&&'ontypechange'in _0x3f4a1b[_0x118029],!('sinkId'in new Audio())])>=0x2;else{if(_0x1eff34)return countTruthy(['onorientationchange'in _0x4dc541,'orientation'in _0x4dc541,/android/i['test'](_0x3f4a1b['appVersion'])])>=0x2;}return![];}function isSamsungInternet(){const _0x5e56b1=navigator,_0x351d7c=window,_0x3e4c2d=Audio['prototype'],{visualViewport:_0x106088}=_0x351d7c;return countTruthy(['srLatency'in _0x3e4c2d,'srChannelCount'in _0x3e4c2d,'devicePosture'in _0x5e56b1,_0x106088&&'segments'in _0x106088,'getTextInformation'in Image['prototype']])>=0x3;}function getAudioSignal(){if(doesBrowserPerformAntiSignalCollection())return getStabilizedAudioSignal();return getUnstableAudioSignal();}function getUnstableAudioSignal(){const _0x3f256a=window,_0x52718e=_0x3f256a['OfflineAudioContext']??_0x3f256a['webkitOfflineAudioContext'];if(_0x52718e===undefined)return-0x2;if(doesBrowserSuspendAudioContext())return-0x1;const _0x3a4dbb=0x1194,_0x34f638=0x1388,_0x5029ed=new _0x52718e(0x1,_0x34f638,0xac44),_0x3ec6b7=_0x5029ed['createOscillator']();_0x3ec6b7['type']='triangle',_0x3ec6b7['frequency']['value']=0x2710;const _0x4a2d48=_0x5029ed['createDynamicsCompressor']();_0x4a2d48['threshold']['value']=-0x32,_0x4a2d48['knee']['value']=0x28,_0x4a2d48['ratio']['value']=0xc,_0x4a2d48['attack']['value']=0x0,_0x4a2d48['release']['value']=0.25,_0x3ec6b7['connect'](_0x4a2d48),_0x4a2d48['connect'](_0x5029ed['destination']),_0x3ec6b7['start'](0x0);const [_0x2710a0,_0x2aa67e]=startRenderingAudio(_0x5029ed),_0x2a8cbe=suppressUnhandledRejectionWarning(_0x2710a0['then'](_0xb228cb=>getHash(_0xb228cb['getChannelData'](0x0)['subarray'](_0x3a4dbb)),_0x808e93=>{if(_0x808e93['name']==='timeout'||_0x808e93['name']==='suspended')return-0x3;throw _0x808e93;}));return()=>{return _0x2aa67e(),_0x2a8cbe;};}function doesBrowserSuspendAudioContext(){return isWebKit()&&!isDesktopWebKit()&&!isWebKit606OrNewer();}function doesBrowserPerformAntiSignalCollection(){return isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit()||isChromium()&&isSamsungInternet()&&isChromium122OrNewer();}function startRenderingAudio(_0x456773){const _0x5a8614=0x3,_0x20c663=0x1f4,_0x4cc283=0x1f4,_0x309f03=0x1388;let _0xe78257=()=>undefined;const _0x13edaa=new Promise((_0x545535,_0x2c32c1)=>{let _0x586f22=![],_0x1131db=0x0,_0x35e99b=0x0;_0x456773['oncomplete']=_0x47f2f6=>{_0x545535(_0x47f2f6['renderedBuffer']);};const _0x1966d5=()=>{setTimeout(()=>_0x2c32c1(makeInnerError('timeout')),Math['min'](_0x4cc283,_0x35e99b+_0x309f03-Date['now']()));},_0x33c382=()=>{try{const _0x1d2ead=_0x456773['startRendering']();isPromise(_0x1d2ead)&&void suppressUnhandledRejectionWarning(_0x1d2ead);switch(_0x456773['state']){case'running':_0x35e99b=Date['now']();_0x586f22&&_0x1966d5();break;case'suspended':!document['hidden']&&_0x1131db++;_0x586f22&&_0x1131db>=_0x5a8614?_0x2c32c1(makeInnerError('suspended')):setTimeout(_0x33c382,_0x20c663);break;case'closed':case'interrupted':break;}}catch(_0x57b74a){_0x2c32c1(_0x57b74a);}};_0x33c382(),_0xe78257=()=>{!_0x586f22&&(_0x586f22=!![],_0x35e99b>0x0&&_0x1966d5());};});return[_0x13edaa,_0xe78257];}function roundToSignificant(_0x1d711a,_0x5ac921){if(_0x1d711a===0x0)return 0x0;const _0xae2b8c=Math['pow'](0xa,_0x5ac921-Math['ceil'](Math['log10'](Math['abs'](_0x1d711a))));return Math['round'](_0x1d711a*_0xae2b8c/0x5)*0x5/_0xae2b8c;}function getHash(_0x4cf388){let _0x916a5b=0x0;for(let _0x4b4e9c=0x0;_0x4b4e9c<_0x4cf388['length'];++_0x4b4e9c){_0x916a5b+=Math['abs'](_0x4cf388[_0x4b4e9c]);}return _0x916a5b;}const _0x63782d={};_0x63782d['oscType']='triangle',_0x63782d['freq']=0x2710,_0x63782d['useCompressor']=!![],_0x63782d['useAllpass']=![];const _0xdca78={};_0xdca78['oscType']='sine',_0xdca78['freq']=0x1f40,_0xdca78['useCompressor']=![],_0xdca78['useAllpass']=![];const _0x1aae0c={};_0x1aae0c['oscType']='square',_0x1aae0c['freq']=0x2710,_0x1aae0c['useCompressor']=!![],_0x1aae0c['useAllpass']=!![];const SCENES=[_0x63782d,_0xdca78,_0x1aae0c],SIG_DIGITS=0x7,BUFFER_LENGTH=0x2af8,SAMPLE_RATE=0xac44,_0x593849={};_0x593849['from']=0x1194,_0x593849['to']=0x1388;const _0x275dcb={};_0x275dcb['from']=0x2710,_0x275dcb['to']=0x2904;const WINDOWS=[_0x593849,_0x275dcb];function extractMetrics(_0x57a44b){const _0x259ac0=_0x57a44b['length'];if(_0x259ac0===0x0)return[0x0,0x0,0x0,0x0];const _0x258c2c=[];for(let _0x249262=0x0;_0x249262<_0x259ac0;_0x249262++){_0x258c2c['push'](roundToSignificant(_0x57a44b[_0x249262],SIG_DIGITS));}const _0x4deea7=[..._0x258c2c]['map'](Math['abs'])['sort']((_0xffcb7,_0x5dd442)=>_0xffcb7-_0x5dd442),_0x65a85c=Math['floor'](_0x4deea7['length']*0.05);let _0x1b7088=0x0;for(let _0x2c47ef=_0x65a85c;_0x2c47ef<_0x4deea7['length']-_0x65a85c;_0x2c47ef++){_0x1b7088+=_0x4deea7[_0x2c47ef];}let _0x6d74bf=0x0;for(let _0x24d1dd=0x0;_0x24d1dd<_0x259ac0;_0x24d1dd++){_0x6d74bf+=_0x258c2c[_0x24d1dd]*_0x258c2c[_0x24d1dd];}_0x6d74bf/=_0x259ac0;let _0x34cc13=0x0;for(let _0x54897c=0x1;_0x54897c<_0x259ac0;_0x54897c++){Math['sign'](_0x258c2c[_0x54897c])!==Math['sign'](_0x258c2c[_0x54897c-0x1])&&_0x34cc13++;}let _0xcf2180=0x0;for(let _0x497a50=0x1;_0x497a50<_0x259ac0;_0x497a50++){_0xcf2180+=Math['abs'](_0x258c2c[_0x497a50]-_0x258c2c[_0x497a50-0x1]);}return[_0x1b7088,_0x6d74bf,_0x34cc13,_0xcf2180];}async function renderScene(_0x531be7){const _0x78e7b7=window,_0x5157d8=_0x78e7b7['OfflineAudioContext']??_0x78e7b7['webkitOfflineAudioContext'];if(_0x5157d8===undefined)return null;try{const _0x324c3f=new _0x5157d8(0x1,BUFFER_LENGTH,SAMPLE_RATE),_0x1881ec=_0x324c3f['createOscillator']();_0x1881ec['type']=_0x531be7['oscType'],_0x1881ec['frequency']['value']=_0x531be7['freq'];let _0x10cb07=_0x1881ec;if(_0x531be7['useCompressor']){const _0x5bf916=_0x324c3f['createDynamicsCompressor']();_0x5bf916['threshold']['value']=-0x32,_0x5bf916['knee']['value']=0x28,_0x5bf916['ratio']['value']=0xc,_0x5bf916['attack']['value']=0x0,_0x5bf916['release']['value']=0.25,_0x10cb07['connect'](_0x5bf916),_0x10cb07=_0x5bf916;}if(_0x531be7['useAllpass']){const _0x2a4829=_0x324c3f['createBiquadFilter']();_0x2a4829['type']='allpass',_0x2a4829['frequency']['value']=0x1388,_0x2a4829['Q']['value']=0x5,_0x10cb07['connect'](_0x2a4829),_0x10cb07=_0x2a4829;}_0x10cb07['connect'](_0x324c3f['destination']),_0x1881ec['start'](0x0);const [_0x1bc8c2,_0x4f6446]=startRenderingAudio(_0x324c3f);_0x4f6446();const _0x173258=await _0x1bc8c2;return _0x173258['getChannelData'](0x0);}catch{return null;}}function getStabilizedAudioSignal(){return async()=>{const _0x407a6a=[];for(const _0x478356 of SCENES){const _0x5cc48e=await renderScene(_0x478356);if(_0x5cc48e===null)return-0x2;for(const _0x3da009 of WINDOWS){const _0x406eb6=_0x5cc48e['subarray'](_0x3da009['from'],_0x3da009['to']);_0x407a6a['push'](...extractMetrics(_0x406eb6));}}const _0x2a7f34=await renderScene(SCENES[0x0]);if(_0x2a7f34!==null){const _0x79153f=_0x407a6a['slice'](0x0,0x4),_0x3b3d1c=extractMetrics(_0x2a7f34['subarray'](WINDOWS[0x0]['from'],WINDOWS[0x0]['to'])),_0x180985=_0x79153f[0x0],_0x55a967=_0x3b3d1c[0x0];if(_0x180985!==0x0){const _0xe5eeb1=Math['abs'](_0x180985-_0x55a967)/Math['abs'](_0x180985);if(_0xe5eeb1>0.001)return-0x4;}}let _0x52d5ed=0x0;for(const _0x31fce2 of _0x407a6a){const _0x384032=_0x31fce2['toFixed'](0x6);for(let _0x4600e6=0x0;_0x4600e6<_0x384032['length'];_0x4600e6++){_0x52d5ed=(_0x52d5ed<<0x5)-_0x52d5ed+_0x384032['charCodeAt'](_0x4600e6)|0x0;}}return _0x52d5ed>>>0x0;};}function makeInnerError(_0x438147){const _0x28ecc2=new Error(_0x438147);return _0x28ecc2['name']=_0x438147,_0x28ecc2;}function renderAudio(){return new Promise(_0x440b8f=>{try{const _0x33acb6=window,_0x3cc077=_0x33acb6['OfflineAudioContext']??_0x33acb6['webkitOfflineAudioContext'];if(!_0x3cc077){_0x440b8f(null);return;}const _0x26dfe5=new _0x3cc077(0x1,0x1194,0xac44),_0xd61e01=_0x26dfe5['createOscillator']();_0xd61e01['type']='triangle',_0xd61e01['frequency']['setValueAtTime'](0x2710,_0x26dfe5['currentTime']);const _0x5dda37=_0x26dfe5['createDynamicsCompressor']();_0x5dda37['threshold']['setValueAtTime'](-0x32,_0x26dfe5['currentTime']),_0x5dda37['knee']['setValueAtTime'](0x28,_0x26dfe5['currentTime']),_0x5dda37['ratio']['setValueAtTime'](0xc,_0x26dfe5['currentTime']),_0x5dda37['attack']['setValueAtTime'](0x0,_0x26dfe5['currentTime']),_0x5dda37['release']['setValueAtTime'](0.25,_0x26dfe5['currentTime']),_0xd61e01['connect'](_0x5dda37),_0x5dda37['connect'](_0x26dfe5['destination']),_0xd61e01['start'](0x0),_0x26dfe5['startRendering']()['then'](_0x2fcb06=>{_0x440b8f(_0x2fcb06['getChannelData'](0x0)['slice'](0xfa0,0x1194));})['catch'](()=>_0x440b8f(null)),setTimeout(()=>_0x440b8f(null),0x7d0);}catch{_0x440b8f(null);}});}async function getAudioConsistency(){try{const [_0x29ef8f,_0x5ae5f8]=await Promise['all']([renderAudio(),renderAudio()]);if(_0x29ef8f===null||_0x5ae5f8===null)return null;const _0x1398e8={};_0x1398e8['consistent']=![],_0x1398e8['delta']=0x1;if(_0x29ef8f['length']!==_0x5ae5f8['length'])return _0x1398e8;let _0x1a5935=0x0;for(let _0x1bbfc6=0x0;_0x1bbfc6<_0x29ef8f['length'];_0x1bbfc6++){_0x1a5935+=Math['abs'](_0x29ef8f[_0x1bbfc6]-_0x5ae5f8[_0x1bbfc6]);}return{'consistent':_0x1a5935===0x0,'delta':Math['round'](_0x1a5935*0xf4240)/0xf4240};}catch{return null;}}function getAudioContextInfo(){try{const _0x10d5a2=window['AudioContext']??window['webkitAudioContext'];if(_0x10d5a2===undefined)return null;const _0x44b145=new _0x10d5a2(),_0x598468=_0x44b145['destination'],_0x4d8cd3={};_0x4d8cd3['maxChannelCount']=_0x598468['maxChannelCount'],_0x4d8cd3['sampleRate']=_0x44b145['sampleRate'],_0x4d8cd3['channelCountMode']=_0x598468['channelCountMode'],_0x4d8cd3['channelInterpretation']=_0x598468['channelInterpretation'],_0x4d8cd3['numberOfOutputs']=_0x598468['numberOfOutputs'];const _0x3a9865=_0x4d8cd3;return _0x44b145['close']()['catch'](()=>undefined),_0x3a9865;}catch{return null;}}function getAudioContextBaseLatency(){const _0x37eaff=isAndroid()||isWebKit();if(!_0x37eaff)return-0x2;const _0x224d5f=window['AudioContext'];if(_0x224d5f===undefined)return-0x1;const _0x599508=new _0x224d5f()['baseLatency'];if(_0x599508===undefined)return-0x1;if(!isFinite(_0x599508))return-0x3;return _0x599508;}function getAudioTrap(){return new Promise(_0x49d455=>{try{const _0x5b7db2=window,_0x17dc29=_0x5b7db2['AudioContext']??_0x5b7db2['webkitAudioContext'];if(!_0x17dc29){_0x49d455(null);return;}const _0x103bad=new _0x17dc29(),_0x465efe=_0x103bad['sampleRate']||0xac44,_0x42343a=0x80,_0x4dd611=_0x103bad['createBuffer'](0x1,_0x42343a,_0x465efe),_0x135fba=new Float32Array(_0x42343a);for(let _0x3025d5=0x0;_0x3025d5<_0x42343a;_0x3025d5++){_0x135fba[_0x3025d5]=_0x3025d5%0x2===0x0?0.5:-0.5;}if(typeof _0x4dd611['copyToChannel']==='function')_0x4dd611['copyToChannel'](_0x135fba,0x0);else{const _0x55cc90=_0x4dd611['getChannelData'](0x0);for(let _0x19bfa0=0x0;_0x19bfa0<_0x42343a;_0x19bfa0++){_0x55cc90[_0x19bfa0]=_0x135fba[_0x19bfa0];}}const _0x5df40e=_0x4dd611['getChannelData'](0x0);let _0x545388=0x0;for(let _0x1e6f7a=0x0;_0x1e6f7a<_0x42343a;_0x1e6f7a++){_0x545388+=Math['abs'](_0x5df40e[_0x1e6f7a]-_0x135fba[_0x1e6f7a]);}try{void _0x103bad['close']();}catch{}_0x49d455({'clean':_0x545388===0x0,'delta':Math['round'](_0x545388*0x2540be400)/0x2540be400});}catch{_0x49d455(null);}});}async function getBarcodeDetection(){try{const _0x3985d0=window['BarcodeDetector'];if(!_0x3985d0){const _0x592000={};return _0x592000['supported']=![],_0x592000['formats']=[],_0x592000;}const _0xfde826=await _0x3985d0['getSupportedFormats']();return{'supported':!![],'formats':_0xfde826['sort']()};}catch{return null;}}const HASH_SIZE=0x8,WIDTH=HASH_SIZE+0x1,HEIGHT=HASH_SIZE;function computeDHash(_0xcebc3e){const _0x11f168=document['createElement']('canvas');_0x11f168['width']=WIDTH,_0x11f168['height']=HEIGHT;const _0x515d6b=_0x11f168['getContext']('2d');if(!_0x515d6b)return'';_0x515d6b['drawImage'](_0xcebc3e,0x0,0x0,WIDTH,HEIGHT);const _0x48e6a0=_0x515d6b['getImageData'](0x0,0x0,WIDTH,HEIGHT)['data'],_0x94d6f5=WIDTH*HEIGHT,_0x45df4f=new Uint8Array(_0x94d6f5);for(let _0x5de9c5=0x0;_0x5de9c5<_0x94d6f5;_0x5de9c5++){const _0xe6ad79=_0x5de9c5*0x4;_0x45df4f[_0x5de9c5]=_0x48e6a0[_0xe6ad79]*0x4d+_0x48e6a0[_0xe6ad79+0x1]*0x96+_0x48e6a0[_0xe6ad79+0x2]*0x1d>>0x8;}let _0xbc59b2='',_0x1cfabd=0x0,_0xae95aa=0x0;for(let _0x5eccdd=0x0;_0x5eccdd<HEIGHT;_0x5eccdd++){for(let _0x3303ba=0x0;_0x3303ba<HASH_SIZE;_0x3303ba++){const _0x10a270=_0x5eccdd*WIDTH+_0x3303ba;_0x45df4f[_0x10a270]>_0x45df4f[_0x10a270+0x1]&&(_0xae95aa|=0x1<<0x3-_0x1cfabd),_0x1cfabd++,_0x1cfabd===0x4&&(_0xbc59b2+=_0xae95aa['toString'](0x10),_0xae95aa=0x0,_0x1cfabd=0x0);}}return _0xbc59b2;}function getCanvasSignal(){return getUnstableCanvasSignal();}function getUnstableCanvasSignal(_0x1085cf){let _0x425ab4=![],_0xb4ff62,_0x44602d,_0x3fe306='',_0x514c01='';const [_0xc61581,_0x5cee51]=makeCanvasContext();if(!isSupported(_0xc61581,_0x5cee51))_0xb4ff62=_0x44602d='unsupported';else{_0x425ab4=doesSupportWinding(_0x5cee51);{[_0xb4ff62,_0x44602d,_0x3fe306,_0x514c01]=renderImages(_0xc61581,_0x5cee51);}}const _0x2948e7={};return _0x2948e7['winding']=_0x425ab4,_0x2948e7['geometry']=_0xb4ff62,_0x2948e7['text']=_0x44602d,_0x2948e7['geometryDHash']=_0x3fe306,_0x2948e7['textDHash']=_0x514c01,_0x2948e7;}function makeCanvasContext(){const _0x3cea89=document['createElement']('canvas');return _0x3cea89['width']=0x1,_0x3cea89['height']=0x1,[_0x3cea89,_0x3cea89['getContext']('2d')];}function isSupported(_0x2dd544,_0x5d4209){return _0x5d4209!==undefined&&_0x5d4209!==null&&typeof _0x2dd544['toDataURL']==='function';}function doesSupportWinding(_0x2858ba){return _0x2858ba['rect'](0x0,0x0,0xa,0xa),_0x2858ba['rect'](0x2,0x2,0x6,0x6),!_0x2858ba['isPointInPath'](0x5,0x5,'evenodd');}function renderImages(_0x2a0b97,_0x3453ed){renderTextImage(_0x2a0b97,_0x3453ed);const _0x4aee37=computeDHash(_0x2a0b97),_0xa861bd=canvasToString(_0x2a0b97),_0x36f416=canvasToString(_0x2a0b97);if(_0xa861bd!==_0x36f416)return['unstable','unstable','',''];renderGeometryImage(_0x2a0b97,_0x3453ed);const _0x1db814=computeDHash(_0x2a0b97),_0x4828ba=canvasToString(_0x2a0b97);return[_0x4828ba,_0xa861bd,_0x1db814,_0x4aee37];}function renderTextImage(_0x15c50d,_0x1098a3){_0x15c50d['width']=0xf0,_0x15c50d['height']=0x3c,_0x1098a3['textBaseline']='alphabetic',_0x1098a3['fillStyle']='#f60',_0x1098a3['fillRect'](0x64,0x1,0x3e,0x14),_0x1098a3['fillStyle']='#069',_0x1098a3['font']='11pt\x20\x22Times\x20New\x20Roman\x22';const _0x626b0a='Cwm\x20fjordbank\x20gly\x20'+String['fromCharCode'](0xd83d,0xde03);_0x1098a3['fillText'](_0x626b0a,0x2,0xf),_0x1098a3['fillStyle']='rgba(102,\x20204,\x200,\x200.2)',_0x1098a3['font']='18pt\x20Arial',_0x1098a3['fillText'](_0x626b0a,0x4,0x2d);}function renderGeometryImage(_0x18e50b,_0x425c1e){_0x18e50b['width']=0x7a,_0x18e50b['height']=0x6e,_0x425c1e['globalCompositeOperation']='multiply';for(const [_0x2ebce9,_0x2f007b,_0x508447]of[['#f2f',0x28,0x28],['#2ff',0x50,0x28],['#ff2',0x3c,0x50]]){_0x425c1e['fillStyle']=_0x2ebce9,_0x425c1e['beginPath'](),_0x425c1e['arc'](_0x2f007b,_0x508447,0x28,0x0,Math['PI']*0x2,!![]),_0x425c1e['closePath'](),_0x425c1e['fill']();}_0x425c1e['fillStyle']='#f9c',_0x425c1e['arc'](0x3c,0x3c,0x3c,0x0,Math['PI']*0x2,!![]),_0x425c1e['arc'](0x3c,0x3c,0x14,0x0,Math['PI']*0x2,!![]),_0x425c1e['fill']('evenodd');}function canvasToString(_0x3fe180){return _0x3fe180['toDataURL']();}function getCanvasAdvanced(){try{const _0x22e30f=document['createElement']('canvas'),_0x10e9ff=_0x22e30f['getContext']('2d');if(!_0x10e9ff)return null;const _0x1667aa=renderBlendModes(_0x22e30f,_0x10e9ff),_0x365e24=renderShadows(_0x22e30f,_0x10e9ff),_0x443f0d=renderGradientPath(_0x22e30f,_0x10e9ff),_0x58d64f=testOffscreenConsistency(_0x22e30f,_0x10e9ff),_0x1fdec2={};return _0x1fdec2['blendDHash']=_0x1667aa,_0x1fdec2['shadowDHash']=_0x365e24,_0x1fdec2['gradientDHash']=_0x443f0d,_0x1fdec2['offscreenConsistent']=_0x58d64f,_0x1fdec2;}catch{return null;}}function renderBlendModes(_0x5aa1bd,_0x3b5106){return _0x5aa1bd['width']=0x64,_0x5aa1bd['height']=0x64,_0x3b5106['clearRect'](0x0,0x0,0x64,0x64),_0x3b5106['fillStyle']='#e74c3c',_0x3b5106['fillRect'](0xa,0xa,0x3c,0x3c),_0x3b5106['globalCompositeOperation']='multiply',_0x3b5106['fillStyle']='#3498db',_0x3b5106['fillRect'](0x1e,0x1e,0x3c,0x3c),_0x3b5106['globalCompositeOperation']='screen',_0x3b5106['fillStyle']='#2ecc71',_0x3b5106['beginPath'](),_0x3b5106['arc'](0x32,0x32,0x1e,0x0,Math['PI']*0x2),_0x3b5106['fill'](),_0x3b5106['globalCompositeOperation']='overlay',_0x3b5106['fillStyle']='#f39c12',_0x3b5106['fillRect'](0x14,0x14,0x1e,0x3c),_0x3b5106['globalCompositeOperation']='source-over',computeDHash(_0x5aa1bd);}function renderShadows(_0x4f5420,_0xf99e27){return _0x4f5420['width']=0x78,_0x4f5420['height']=0x50,_0xf99e27['clearRect'](0x0,0x0,0x78,0x50),_0xf99e27['shadowColor']='rgba(0,\x200,\x200,\x200.5)',_0xf99e27['shadowBlur']=0xa,_0xf99e27['shadowOffsetX']=0x5,_0xf99e27['shadowOffsetY']=0x5,_0xf99e27['fillStyle']='#9b59b6',_0xf99e27['fillRect'](0x14,0xf,0x28,0x28),_0xf99e27['shadowColor']='rgba(52,\x20152,\x20219,\x200.7)',_0xf99e27['shadowBlur']=0xf,_0xf99e27['shadowOffsetX']=-0x3,_0xf99e27['shadowOffsetY']=0x3,_0xf99e27['fillStyle']='#1abc9c',_0xf99e27['beginPath'](),_0xf99e27['arc'](0x55,0x28,0x19,0x0,Math['PI']*0x2),_0xf99e27['fill'](),_0xf99e27['shadowColor']='transparent',_0xf99e27['shadowBlur']=0x0,_0xf99e27['shadowOffsetX']=0x0,_0xf99e27['shadowOffsetY']=0x0,computeDHash(_0x4f5420);}function renderGradientPath(_0x38d06e,_0x23e71){_0x38d06e['width']=0x64,_0x38d06e['height']=0x64,_0x23e71['clearRect'](0x0,0x0,0x64,0x64);const _0x42ff98=_0x23e71['createRadialGradient'](0x32,0x32,0x5,0x32,0x32,0x2d);_0x42ff98['addColorStop'](0x0,'#e74c3c'),_0x42ff98['addColorStop'](0.5,'#f39c12'),_0x42ff98['addColorStop'](0x1,'#2ecc71'),_0x23e71['fillStyle']=_0x42ff98,_0x23e71['beginPath'](),_0x23e71['moveTo'](0x32,0x5),_0x23e71['lineTo'](0x5f,0x23),_0x23e71['lineTo'](0x50,0x5a),_0x23e71['lineTo'](0x14,0x5a),_0x23e71['lineTo'](0x5,0x23),_0x23e71['closePath'](),_0x23e71['fill']();try{const _0x429862=_0x23e71['createConicGradient'](0x0,0x32,0x32);_0x429862['addColorStop'](0x0,'red'),_0x429862['addColorStop'](0.33,'green'),_0x429862['addColorStop'](0.66,'blue'),_0x429862['addColorStop'](0x1,'red'),_0x23e71['globalCompositeOperation']='difference',_0x23e71['fillStyle']=_0x429862,_0x23e71['fillRect'](0xa,0xa,0x50,0x50),_0x23e71['globalCompositeOperation']='source-over';}catch{}return computeDHash(_0x38d06e);}function testOffscreenConsistency(_0x3f04bc,_0x4ca2dc){if(typeof OffscreenCanvas==='undefined')return null;try{_0x3f04bc['width']=0x32,_0x3f04bc['height']=0x32,_0x4ca2dc['clearRect'](0x0,0x0,0x32,0x32),_0x4ca2dc['fillStyle']='#e74c3c',_0x4ca2dc['beginPath'](),_0x4ca2dc['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0x4ca2dc['fill']();const _0x3e448f=computeDHash(_0x3f04bc),_0x9d6027=new OffscreenCanvas(0x32,0x32),_0x3b73b8=_0x9d6027['getContext']('2d');if(!_0x3b73b8)return null;_0x3b73b8['fillStyle']='#e74c3c',_0x3b73b8['beginPath'](),_0x3b73b8['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0x3b73b8['fill']();const _0x42d0df=document['createElement']('canvas');_0x42d0df['width']=0x32,_0x42d0df['height']=0x32;const _0x5c0faf=_0x42d0df['getContext']('2d');if(!_0x5c0faf)return null;const _0x168f73=_0x9d6027['transferToImageBitmap']();_0x5c0faf['drawImage'](_0x168f73,0x0,0x0);const _0x47cfcd=computeDHash(_0x42d0df);return _0x3e448f===_0x47cfcd;}catch{return null;}}function fnv1aBytes(_0x5b2e63){let _0x3b4e99=0x811c9dc5;for(let _0x3fe140=0x0;_0x3fe140<_0x5b2e63['length'];_0x3fe140++){_0x3b4e99^=_0x5b2e63[_0x3fe140],_0x3b4e99=Math['imul'](_0x3b4e99,0x1000193);}return _0x3b4e99>>>0x0;}const CANVAS_DIM=0x20,SEED=[0x4d6f6f6e,0x57616b65,0x46696e67,0x65725072];function xoshiro128ss(_0x28a91d,_0x19bff8,_0x4d8628,_0x2b87f4){let _0x181e08=_0x28a91d,_0xd22444=_0x19bff8,_0x1ac579=_0x4d8628,_0x4c3407=_0x2b87f4;return function(){const _0x3b9aff=_0xd22444<<0x9;let _0x3235de=0x5*_0x181e08;return _0x3235de=0x9*(_0x3235de<<0x7|_0x3235de>>>0x19),_0x4c3407^=_0xd22444,_0xd22444^=_0x1ac579^=_0x181e08,_0x181e08^=_0x4c3407,_0x1ac579^=_0x3b9aff,_0x4c3407=_0x4c3407<<0xb|_0x4c3407>>>0x15,(_0x3235de>>>0x0)/0x100000000;};}const fnv1a$2=fnv1aBytes;function getCanvasRandom(){try{const _0x48464b=document['createElement']('canvas'),_0x30ebd9=_0x48464b['getContext']('2d');if(_0x30ebd9===null)return null;_0x48464b['width']=CANVAS_DIM,_0x48464b['height']=CANVAS_DIM;const _0x5801e0=xoshiro128ss(SEED[0x0],SEED[0x1],SEED[0x2],SEED[0x3]),_0x48fc11=_0x5801e0()*CANVAS_DIM,_0x3d68b1=_0x5801e0()*CANVAS_DIM,_0x1324b7=_0x30ebd9['createRadialGradient'](_0x48fc11,_0x3d68b1,0x2,_0x48fc11,_0x3d68b1,CANVAS_DIM*0.8);for(let _0x4006e2=0x0;_0x4006e2<0x5;_0x4006e2++){const _0x3ef6a6=Math['floor'](_0x5801e0()*0x100),_0x54ba9c=Math['floor'](_0x5801e0()*0x100),_0x186f87=Math['floor'](_0x5801e0()*0x100);_0x1324b7['addColorStop'](_0x4006e2/0x4,'rgb('+_0x3ef6a6+','+_0x54ba9c+','+_0x186f87+')');}_0x30ebd9['fillStyle']=_0x1324b7,_0x30ebd9['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);for(let _0x55d0ff=0x0;_0x55d0ff<0x3;_0x55d0ff++){_0x30ebd9['beginPath'](),_0x30ebd9['arc'](_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM*0.4+0x2,_0x5801e0()*Math['PI']*0x2,_0x5801e0()*Math['PI']*0x2),_0x30ebd9['strokeStyle']='rgba('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+(_0x5801e0()*0.5+0.5)['toFixed'](0x2)+')',_0x30ebd9['lineWidth']=_0x5801e0()*0x3+0.5,_0x30ebd9['stroke']();}for(let _0x25e0dd=0x0;_0x25e0dd<0x2;_0x25e0dd++){_0x30ebd9['beginPath'](),_0x30ebd9['moveTo'](_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM),_0x30ebd9['bezierCurveTo'](_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM,_0x5801e0()*CANVAS_DIM),_0x30ebd9['strokeStyle']='rgba('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+(_0x5801e0()*0.5+0.5)['toFixed'](0x2)+')',_0x30ebd9['lineWidth']=_0x5801e0()*0x2+0.5,_0x30ebd9['stroke']();}_0x30ebd9['shadowBlur']=_0x5801e0()*0x8+0x2,_0x30ebd9['shadowColor']='rgba('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+',0.7)',_0x30ebd9['shadowOffsetX']=_0x5801e0()*0x4-0x2,_0x30ebd9['shadowOffsetY']=_0x5801e0()*0x4-0x2,_0x30ebd9['fillStyle']='rgb('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+')',_0x30ebd9['fillRect'](_0x5801e0()*CANVAS_DIM*0.5,_0x5801e0()*CANVAS_DIM*0.5,CANVAS_DIM*0.4,CANVAS_DIM*0.4),_0x30ebd9['shadowBlur']=0x0,_0x30ebd9['shadowColor']='transparent',_0x30ebd9['shadowOffsetX']=0x0,_0x30ebd9['shadowOffsetY']=0x0;const _0x562fe4=['serif','sans-serif','monospace'];for(let _0x5540d8=0x0;_0x5540d8<0x3;_0x5540d8++){const _0x20f907=Math['floor'](_0x5801e0()*0xc)+0x8;_0x30ebd9['font']=_0x20f907+'px\x20'+_0x562fe4[_0x5540d8%0x3],_0x30ebd9['fillStyle']='rgb('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+')',_0x30ebd9['fillText'](String['fromCharCode'](Math['floor'](_0x5801e0()*0x1a)+0x41,Math['floor'](_0x5801e0()*0x1a)+0x61,Math['floor'](_0x5801e0()*0xa)+0x30),_0x5801e0()*CANVAS_DIM*0.7,_0x5801e0()*CANVAS_DIM*0.8+_0x20f907);}_0x30ebd9['globalAlpha']=0.3;const _0x108d71=_0x30ebd9['createLinearGradient'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);_0x108d71['addColorStop'](0x0,'rgba('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+',1)'),_0x108d71['addColorStop'](0x1,'rgba('+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+','+Math['floor'](_0x5801e0()*0x100)+',1)'),_0x30ebd9['fillStyle']=_0x108d71,_0x30ebd9['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM),_0x30ebd9['globalAlpha']=0x1;const _0x5a505e=_0x30ebd9['getImageData'](0x0,0x0,_0x48464b['width'],_0x48464b['height']),_0x3f879a=fnv1a$2(_0x5a505e['data']),_0x2f4ff0=computeDHash(_0x48464b),_0xa92a0d={};return _0xa92a0d['p']=_0x3f879a,_0xa92a0d['d']=CANVAS_DIM,_0xa92a0d['dHash']=_0x2f4ff0,_0xa92a0d;}catch{return null;}}function getColorGamut(){for(const _0x6e1077 of['rec2020','p3','srgb']){if(matchMedia('(color-gamut:\x20'+_0x6e1077+')')['matches'])return _0x6e1077;}return undefined;}const _0x52c8f0={};_0x52c8f0['prop']='width',_0x52c8f0['value']='calc(sin(1)\x20*\x201000px)',_0x52c8f0['label']='sin1';const _0x279eab={};_0x279eab['prop']='width',_0x279eab['value']='calc(cos(1)\x20*\x201000px)',_0x279eab['label']='cos1';const _0x5c43e5={};_0x5c43e5['prop']='width',_0x5c43e5['value']='calc(tan(0.5)\x20*\x201000px)',_0x5c43e5['label']='tan05';const _0x3b584d={};_0x3b584d['prop']='width',_0x3b584d['value']='calc(sin(1.5)\x20*\x20cos(2.3)\x20*\x2010000px)',_0x3b584d['label']='sincos';const _0x57f52f={};_0x57f52f['prop']='width',_0x57f52f['value']='calc(sin(0.001)\x20*\x201000000px)',_0x57f52f['label']='sin_small';const _0x4bee48={};_0x4bee48['prop']='width',_0x4bee48['value']='calc(cos(3.14159265)\x20*\x2010000px\x20+\x2010000px)',_0x4bee48['label']='cos_pi';const _0x16b2bf={};_0x16b2bf['prop']='width',_0x16b2bf['value']='calc(tan(1.5)\x20*\x20100px\x20+\x2010000px)',_0x16b2bf['label']='tan15';const _0x3fb086={};_0x3fb086['prop']='width',_0x3fb086['value']='calc(sin(12345.6789)\x20*\x201000px\x20+\x201000px)',_0x3fb086['label']='sin_large';const _0x35754b={};_0x35754b['prop']='height',_0x35754b['value']='calc(sqrt(2)\x20*\x201000px)',_0x35754b['label']='sqrt2';const _0x2e945a={};_0x2e945a['prop']='height',_0x2e945a['value']='calc(exp(1)\x20*\x20100px)',_0x2e945a['label']='exp1';const _0x502086={};_0x502086['prop']='height',_0x502086['value']='calc(log(10)\x20*\x201000px)',_0x502086['label']='log10';const _0x534043={};_0x534043['prop']='height',_0x534043['value']='calc(hypot(3,\x204)\x20*\x20100px)',_0x534043['label']='hypot34';const EXPRESSIONS=[_0x52c8f0,_0x279eab,_0x5c43e5,_0x3b584d,_0x57f52f,_0x4bee48,_0x16b2bf,_0x3fb086,_0x35754b,_0x2e945a,_0x502086,_0x534043];function getCssTrigPrecision(){try{if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;if(!CSS['supports']('width','calc(sin(1)\x20*\x201px)'))return null;const _0x36f0df=document['createElement']('div');_0x36f0df['style']['position']='absolute',_0x36f0df['style']['visibility']='hidden',_0x36f0df['style']['overflow']='hidden',_0x36f0df['style']['top']='-9999px',_0x36f0df['style']['left']='-9999px',document['body']['appendChild'](_0x36f0df);const _0x39549c={};for(const _0x17225a of EXPRESSIONS){const _0x264c45=document['createElement']('div');_0x264c45['style']['position']='absolute',_0x264c45['style'][_0x17225a['prop']]=_0x17225a['value'],_0x36f0df['appendChild'](_0x264c45);const _0x175071=getComputedStyle(_0x264c45),_0x1542c2=parseFloat(_0x175071[_0x17225a['prop']]);!isNaN(_0x1542c2)&&isFinite(_0x1542c2)&&(_0x39549c[_0x17225a['label']]=Math['round'](_0x1542c2*0xf4240)/0xf4240);}return document['body']['removeChild'](_0x36f0df),Object['keys'](_0x39549c)['length']>0x0?_0x39549c:null;}catch{return null;}}async function withIframe(_0x14827b,_0x44e5eb,_0x59edfb=0x32){const _0x272129=document;while(_0x272129['body']===null){await wait(_0x59edfb);}const _0x269376=_0x272129['createElement']('iframe');try{await new Promise((_0x1470e3,_0x2a0896)=>{let _0x42f89d=![];const _0x2af439=()=>{_0x42f89d=!![],_0x1470e3();},_0x1ab814=_0x31e08e=>{_0x42f89d=!![],_0x2a0896(_0x31e08e);};_0x269376['onload']=_0x2af439,_0x269376['onerror']=_0x1ab814;const {style:_0x1ac51a}=_0x269376;_0x1ac51a['setProperty']('display','block','important'),_0x1ac51a['position']='absolute',_0x1ac51a['top']='0',_0x1ac51a['left']='0',_0x1ac51a['visibility']='hidden';_0x44e5eb!==undefined&&_0x44e5eb!==''&&'srcdoc'in _0x269376?_0x269376['srcdoc']=_0x44e5eb:_0x269376['src']='about:blank';_0x272129['body']['appendChild'](_0x269376);const _0x294012=()=>{if(_0x42f89d)return;_0x269376['contentWindow']?.['document']['readyState']==='complete'?_0x2af439():setTimeout(_0x294012,0xa);};_0x294012();});while(!_0x269376['contentWindow']?.['document']['body']){await wait(_0x59edfb);}return await _0x14827b(_0x269376,_0x269376['contentWindow']);}finally{_0x269376['parentNode']?.['removeChild'](_0x269376);}}class IframePool{['iframe']=null;['iframeReady']=null;['queue']=[];['processing']=![];['idleTimer']=null;['idleTimeoutMs'];constructor(_0xc3605a=0x1388){this['idleTimeoutMs']=_0xc3605a;}['execute'](_0x1e5ac5){return new Promise((_0x4b0073,_0x8cab4e)=>{const _0x4869f3={};_0x4869f3['action']=_0x1e5ac5,_0x4869f3['resolve']=_0x4b0073,_0x4869f3['reject']=_0x8cab4e,this['queue']['push'](_0x4869f3),void this['processQueue']();});}async['processQueue'](){if(this['processing'])return;this['processing']=!![];try{while(this['queue']['length']>0x0){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null);await this['ensureIframe']();const _0x30d2d1=this['queue']['shift'](),_0x4c6f4d=this['iframe'];if(_0x30d2d1===undefined||_0x4c6f4d===null)continue;try{const _0x2cbac8=await _0x30d2d1['action'](_0x4c6f4d,_0x4c6f4d['contentWindow']);_0x30d2d1['resolve'](_0x2cbac8);}catch(_0x468651){_0x30d2d1['reject'](_0x468651);}}}finally{this['processing']=![],this['scheduleCleanup']();}}async['ensureIframe'](){if(this['iframe']?.['contentWindow']?.['document']['body'])return;const _0x2f329a=document;while(_0x2f329a['body']===null){await wait(0x32);}if(this['iframeReady']){await this['iframeReady'];if(this['iframe']?.['contentWindow']?.['document']['body'])return;}const _0x450387=_0x2f329a['createElement']('iframe');this['iframe']=_0x450387,this['iframeReady']=new Promise((_0x4ee133,_0x9dbb74)=>{let _0x196fa1=![];_0x450387['onload']=()=>{_0x196fa1=!![],_0x4ee133();},_0x450387['onerror']=_0x57f9a3=>{_0x196fa1=!![],_0x9dbb74(_0x57f9a3);};const {style:_0x4edd5f}=_0x450387;_0x4edd5f['setProperty']('display','block','important'),_0x4edd5f['position']='absolute',_0x4edd5f['top']='0',_0x4edd5f['left']='0',_0x4edd5f['visibility']='hidden',_0x450387['src']='about:blank',_0x2f329a['body']['appendChild'](_0x450387);const _0x43ad60=()=>{if(_0x196fa1)return;_0x450387['contentWindow']?.['document']['readyState']==='complete'?(_0x196fa1=!![],_0x4ee133()):setTimeout(_0x43ad60,0xa);};_0x43ad60();}),await this['iframeReady'];while(!_0x450387['contentWindow']?.['document']['body']){await wait(0x32);}}['scheduleCleanup'](){this['idleTimer']=setTimeout(()=>{this['destroy']();},this['idleTimeoutMs']);}['destroy'](){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null),this['iframe']&&(this['iframe']['parentNode']?.['removeChild'](this['iframe']),this['iframe']=null,this['iframeReady']=null);}}let sharedPool=null;function getIframePool(){return sharedPool??=new IframePool(),sharedPool;}function isAnyParentCrossOrigin(){let _0x549b91=window;for(;;){const _0x39b9d7=_0x549b91['parent'];if(_0x39b9d7===_0x549b91)return![];try{if(_0x39b9d7['location']['origin']!==_0x549b91['location']['origin'])return!![];}catch(_0x38ffd6){if(_0x38ffd6 instanceof Error&&_0x38ffd6['name']==='SecurityError')return!![];throw _0x38ffd6;}_0x549b91=_0x39b9d7;}}function getEmojiSignal(){let _0x573530='';for(let _0x5c7fb6=0x1f600;_0x5c7fb6<=0x1f64f;_0x5c7fb6++){_0x573530+=String['fromCodePoint'](_0x5c7fb6);}return getIframePool()['execute']((_0x3af319,_0xeb4b67)=>{const _0x54b473=_0xeb4b67['document'],_0x25319c=_0x54b473['createElement']('span');_0x25319c['style']['whiteSpace']='nowrap',_0x25319c['innerText']=_0x573530,_0x54b473['body']['append'](_0x25319c);const _0x5e651c={},_0x1af00e=['x','y','left','right','bottom','height','top','width'],_0x1c0a6d=_0x25319c['getBoundingClientRect']();for(const _0x67ae90 of _0x1af00e){_0x67ae90 in _0x1c0a6d&&(_0x5e651c[_0x67ae90]=Math['round'](_0x1c0a6d[_0x67ae90]*0x64)/0x64);}const _0x511acf=_0xeb4b67['getComputedStyle'](_0x25319c,null)['getPropertyValue']('font-family');return _0x5e651c['font']=_0x511acf,_0x54b473['body']['removeChild'](_0x25319c),_0x5e651c;});}const defaultText='mmMwWLliI0fiflO&1',_0x281976={};_0x281976['font']='-apple-system-body';const _0x2717f2={};_0x2717f2['fontFamily']='serif';const _0x44ec5b={};_0x44ec5b['fontFamily']='sans-serif';const _0x257538={};_0x257538['fontFamily']='monospace';const _0x9b0a16={};_0x9b0a16['fontSize']='1px';const _0x775f83={};_0x775f83['fontFamily']='system-ui';const _0x2153e4={};_0x2153e4['default']=[],_0x2153e4['apple']=[_0x281976],_0x2153e4['serif']=[_0x2717f2],_0x2153e4['sans']=[_0x44ec5b],_0x2153e4['mono']=[_0x257538],_0x2153e4['min']=[_0x9b0a16],_0x2153e4['system']=[_0x775f83];const presets=_0x2153e4;function getFontPreferences(){return withNaturalFonts((_0x469b53,_0x4ff773,_0x5ccfeb)=>{const _0x3c9ced={},_0x3278fa={};for(const _0x4e105b of Object['keys'](presets)){const [_0x2e2aae={},_0x3c17e8=defaultText]=presets[_0x4e105b],_0x1ea804=_0x469b53['createElement']('span');_0x1ea804['textContent']=_0x3c17e8,_0x1ea804['style']['whiteSpace']='nowrap';for(const _0x53dadb of Object['keys'](_0x2e2aae)){const _0x18f2dc=_0x2e2aae[_0x53dadb];_0x18f2dc!==undefined&&(_0x1ea804['style'][_0x53dadb]=_0x18f2dc);}_0x3c9ced[_0x4e105b]=_0x1ea804,_0x4ff773['append'](_0x469b53['createElement']('br'),_0x1ea804);}const _0x2f51d0=_0x5ccfeb['devicePixelRatio']>0x0?_0x5ccfeb['devicePixelRatio']:0x1;for(const _0x4c0649 of Object['keys'](presets)){_0x3278fa[_0x4c0649]=Math['round'](_0x3c9ced[_0x4c0649]['getBoundingClientRect']()['width']*_0x2f51d0*0x64)/0x64;}return _0x3278fa;});}function withNaturalFonts(_0x147e8b,_0x2de796=0xfa0){return withIframe((_0x1df333,_0x325946)=>{const _0x21f2b2=_0x325946['document'],_0x561bb2=_0x21f2b2['body'],_0x10f609=_0x561bb2['style'];_0x10f609['width']=_0x2de796+'px',_0x10f609['webkitTextSizeAdjust']=_0x10f609['textSizeAdjust']='none';if(isChromium())_0x561bb2['style']['zoom']=''+0x1/_0x325946['devicePixelRatio'];else isWebKit()&&(_0x561bb2['style']['zoom']='reset');const _0x51b3a5=_0x21f2b2['createElement']('div'),_0x1f3c69={};return _0x1f3c69['length']=_0x2de796/0x14<<0x0,_0x51b3a5['textContent']=Array['from'](_0x1f3c69)['map'](()=>'word')['join']('\x20'),_0x561bb2['appendChild'](_0x51b3a5),_0x147e8b(_0x21f2b2,_0x561bb2,_0x325946);},'<!doctype\x20html><html><head><meta\x20name=\x22viewport\x22\x20content=\x22width=device-width,\x20initial-scale=1\x22>');}const testString='mmMwWLliI0fiflO&1',textSize='48px',baseFonts=['monospace','sans-serif','serif'],fontList=['sans-serif-thin','ARNO\x20PRO','Agency\x20FB','Arabic\x20Typesetting','Arial','Arial\x20Black','Arial\x20Narrow','Arial\x20Rounded\x20MT','Arial\x20Unicode\x20MS','Arimo','Archivo','AvantGarde\x20Bk\x20BT','BankGothic\x20Md\x20BT','Barlow','Batang','Bebas\x20Neue','Bitter','Bitstream\x20Vera\x20Sans\x20Mono','Bookman','Cabin','Calibri','Candara','Century','Century\x20Gothic','Clarendon','Comic\x20Sans\x20MS','Constantia','Courier','Courier\x20New','Crimson\x20Text','DM\x20Mono','DM\x20Sans','DM\x20Serif\x20Display','DM\x20Serif\x20Text','Dosis','Droid\x20Sans','EUROSTILE','Exo','Fira\x20Code','Fira\x20Sans','Franklin\x20Gothic','Franklin\x20Gothic\x20Medium','Futura\x20Bk\x20BT','Futura\x20Md\x20BT','Garamond','Geneva','Georgia','GOTHAM','Gill\x20Sans','HELV','Haettenschweiler','Helvetica','Helvetica\x20Neue','Humanst521\x20BT','Impact','Inconsolata','Indie\x20Flower','Inter','Josefin\x20Sans','Karla','Lato','Leelawadee','Letter\x20Gothic','Levenim\x20MT','Lexend','Lucida\x20Bright','Lucida\x20Console','Lucida\x20Sans','Lucida\x20Sans\x20Unicode','Manrope','Marlett','Meiryo\x20UI','Menlo','Merriweather','Merriweather\x20Sans','Microsoft\x20Uighur','Minion\x20Pro','Monotype\x20Corsiva','Montserrat','MS\x20Mincho','MS\x20Outlook','MS\x20Reference\x20Specialty','MS\x20UI\x20Gothic','MT\x20Extra','Myriad','MYRIAD\x20PRO','Noto\x20Sans','Nunito','Nunito\x20Sans','Open\x20Sans','Optima','Orbitron','Oswald','Pacifico','Palatino','Perpetua','PMingLiU','Poppins','Pristina','Prompt','PT\x20Sans','PT\x20Serif','Public\x20Sans','Quicksand','Rajdhani','Recursive','Roboto','Roboto\x20Condensed','Rockwell','Rubik','SCRIPTINA','Segoe\x20Print','Segoe\x20Script','Segoe\x20UI','Segoe\x20UI\x20Light','Serifa','SimHei','Small\x20Fonts','Sora','Source\x20Sans\x20Pro','Space\x20Mono','Staccato222\x20BT','Tahoma','Taviraj','Times','Times\x20New\x20Roman','Titillium\x20Web','TRAJAN\x20PRO','Trebuchet\x20MS','Ubuntu','Univers\x20CE\x2055\x20Medium','Varela\x20Round','Verdana','Vrinda','Work\x20Sans','ZWAdobeF'];function getFonts(){return getIframePool()['execute']((_0x3d723b,{document:_0x4a37d1})=>{const _0x49ddf9=_0x4a37d1['body'];_0x49ddf9['style']['fontSize']=textSize;const _0x782e0a=_0x4a37d1['createElement']('div');_0x782e0a['style']['setProperty']('visibility','hidden','important');const _0xf6c484={},_0x515a87={},_0x872548=_0x1acbd0=>{const _0x356c5f=_0x4a37d1['createElement']('span'),{style:_0xca212d}=_0x356c5f;return _0xca212d['position']='absolute',_0xca212d['top']='0',_0xca212d['left']='0',_0xca212d['fontFamily']=_0x1acbd0,_0x356c5f['textContent']=testString,_0x782e0a['appendChild'](_0x356c5f),_0x356c5f;},_0x5c70f9=(_0x11028b,_0x5e04b3)=>{return _0x872548('\x27'+_0x11028b+'\x27,'+_0x5e04b3);},_0x2e31f7=()=>{return baseFonts['map'](_0x872548);},_0x2a1607=()=>{const _0x13ebc9={};for(const _0x489ce4 of fontList){_0x13ebc9[_0x489ce4]=baseFonts['map'](_0x4f0c8c=>_0x5c70f9(_0x489ce4,_0x4f0c8c));}return _0x13ebc9;},_0x1d1556=_0x1991ac=>{return baseFonts['some']((_0x6c93d6,_0xeef1bb)=>_0x1991ac[_0xeef1bb]['offsetWidth']!==_0xf6c484[_0x6c93d6]||_0x1991ac[_0xeef1bb]['offsetHeight']!==_0x515a87[_0x6c93d6]);},_0x465e2d=_0x2e31f7(),_0x46d945=_0x2a1607();_0x49ddf9['appendChild'](_0x782e0a);for(let _0x1e9ef1=0x0;_0x1e9ef1<baseFonts['length'];_0x1e9ef1++){_0xf6c484[baseFonts[_0x1e9ef1]]=_0x465e2d[_0x1e9ef1]['offsetWidth'],_0x515a87[baseFonts[_0x1e9ef1]]=_0x465e2d[_0x1e9ef1]['offsetHeight'];}return fontList['filter'](_0x5df996=>_0x1d1556(_0x46d945[_0x5df996]));});}const ROTATION_MATRICES=[[0x0,0x1,0x0,Math['PI']/0x7],[0x1,0x0,0x0,Math['PI']/0x8],[0x0,0x1,0x1,Math['PI']/0x4],[0x1,0x2,0x1,Math['PI']/0x8]],TEX_WIDTH=0x7,TEX_HEIGHT=0x9,BYTES_PER_PIXEL=0x4,RT_WIDTH=0x20,RT_HEIGHT=0x20,TIMING_BUCKET_US=0x64,TIMEOUT_MS=0x5dc,WGSL_SHADER='\x0astruct\x20Uniforms\x20{\x0a\x20\x20params:\x20vec4f,\x0a}\x0a\x0a@group(0)\x20@binding(0)\x20var\x20mySampler:\x20sampler;\x0a@group(0)\x20@binding(1)\x20var\x20myTexture:\x20texture_2d<f32>;\x0a@group(1)\x20@binding(0)\x20var<uniform>\x20uniforms:\x20Uniforms;\x0a\x0astruct\x20VertexOutput\x20{\x0a\x20\x20@builtin(position)\x20position:\x20vec4f,\x0a\x20\x20@location(0)\x20uv:\x20vec2f,\x0a}\x0a\x0a@vertex\x0afn\x20vs(@builtin(vertex_index)\x20idx:\x20u32)\x20->\x20VertexOutput\x20{\x0a\x20\x20var\x20pos\x20=\x20array<vec2f,\x206>(\x0a\x20\x20\x20\x20vec2f(-1,\x20-1),\x20vec2f(1,\x20-1),\x20vec2f(-1,\x201),\x0a\x20\x20\x20\x20vec2f(-1,\x201),\x20vec2f(1,\x20-1),\x20vec2f(1,\x201),\x0a\x20\x20);\x0a\x20\x20let\x20p\x20=\x20uniforms.params;\x0a\x20\x20let\x20angle\x20=\x20p.w;\x0a\x20\x20let\x20axis\x20=\x20normalize(p.xyz);\x0a\x20\x20let\x20c\x20=\x20cos(angle);\x0a\x20\x20let\x20s\x20=\x20sin(angle);\x0a\x20\x20let\x20t\x20=\x201.0\x20-\x20c;\x0a\x20\x20let\x20x\x20=\x20axis.x;\x20let\x20y\x20=\x20axis.y;\x20let\x20z\x20=\x20axis.z;\x0a\x20\x20let\x20m\x20=\x20mat3x3f(\x0a\x20\x20\x20\x20vec3f(t*x*x\x20+\x20c,\x20t*x*y\x20+\x20s*z,\x20t*x*z\x20-\x20s*y),\x0a\x20\x20\x20\x20vec3f(t*x*y\x20-\x20s*z,\x20t*y*y\x20+\x20c,\x20t*y*z\x20+\x20s*x),\x0a\x20\x20\x20\x20vec3f(t*x*z\x20+\x20s*y,\x20t*y*z\x20-\x20s*x,\x20t*z*z\x20+\x20c),\x0a\x20\x20);\x0a\x20\x20let\x20v\x20=\x20pos[idx];\x0a\x20\x20let\x20rotated\x20=\x20m\x20*\x20vec3f(v,\x200.0);\x0a\x20\x20var\x20out:\x20VertexOutput;\x0a\x20\x20out.position\x20=\x20vec4f(rotated.xy,\x200.0,\x201.0);\x0a\x20\x20out.uv\x20=\x20v\x20*\x200.5\x20+\x200.5;\x0a\x20\x20return\x20out;\x0a}\x0a\x0a@fragment\x0afn\x20fs(@location(0)\x20uv:\x20vec2f)\x20->\x20@location(0)\x20vec4f\x20{\x0a\x20\x20return\x20textureSample(myTexture,\x20mySampler,\x20uv);\x0a}\x0a';async function getAdapterInfo$1(_0x4e4c22){const _0x4caa94=_0x4e4c22['info'];if(_0x4caa94!==undefined&&_0x4caa94!==null){const _0x4aae8e={};return _0x4aae8e['vendor']=_0x4caa94['vendor'],_0x4aae8e['architecture']=_0x4caa94['architecture'],_0x4aae8e;}if(typeof _0x4e4c22['requestAdapterInfo']==='function'){const _0x3f4be2=await _0x4e4c22['requestAdapterInfo'](),_0x1fdb69={};return _0x1fdb69['vendor']=_0x3f4be2['vendor'],_0x1fdb69['architecture']=_0x3f4be2['architecture'],_0x1fdb69;}const _0x17f690={};return _0x17f690['vendor']='',_0x17f690['architecture']='',_0x17f690;}function createTextureData(){const _0x3b81e7=[],_0x30699f=[[0xff,0x0,0x0,0xff],[0x0,0xff,0x0,0xff],[0x0,0x0,0xff,0xff]];for(let _0x78b48b=0x0;_0x78b48b<TEX_WIDTH*TEX_HEIGHT;_0x78b48b++){_0x3b81e7['push'](..._0x30699f[_0x78b48b%0x3]);}return new Uint8Array(_0x3b81e7);}function quantizeTiming(_0x3096b2){const _0x307464=Number(_0x3096b2/0x3e8n);return Math['round'](_0x307464/TIMING_BUCKET_US)*TIMING_BUCKET_US;}const fnv1a$1=fnv1aBytes;async function renderAndReadback(_0x12a1c4,_0x186ef2){const _0x37408c=[];for(const _0x4fcd0a of _0x186ef2){_0x37408c['push'](_0x4fcd0a);}const _0x33da5f={};_0x33da5f['requiredFeatures']=_0x37408c;const _0x168a1b=await _0x12a1c4['requestDevice'](_0x33da5f),_0x326d26='rgba8unorm',_0x12dbab={};_0x12dbab['label']='fp-shader',_0x12dbab['code']=WGSL_SHADER;const _0x590085=_0x168a1b['createShaderModule'](_0x12dbab),_0x1ffa9a={};_0x1ffa9a['module']=_0x590085;const _0x123275={};_0x123275['format']=_0x326d26;const _0xc76f20={};_0xc76f20['module']=_0x590085,_0xc76f20['targets']=[_0x123275];const _0xcdd52e={};_0xcdd52e['topology']='triangle-list';const _0x26ed28={};_0x26ed28['label']='fp-pipeline',_0x26ed28['layout']='auto',_0x26ed28['vertex']=_0x1ffa9a,_0x26ed28['fragment']=_0xc76f20,_0x26ed28['primitive']=_0xcdd52e;const _0x1ffd93=_0x168a1b['createRenderPipeline'](_0x26ed28),_0x55d581=createTextureData(),_0xab5073={};_0xab5073['label']='fp-src-texture',_0xab5073['size']=[TEX_WIDTH,TEX_HEIGHT],_0xab5073['format']='rgba8unorm',_0xab5073['usage']=GPUTextureUsage['TEXTURE_BINDING']|GPUTextureUsage['COPY_DST'];const _0x291c9c=_0x168a1b['createTexture'](_0xab5073),_0x4f23cf={};_0x4f23cf['texture']=_0x291c9c;const _0x2e26f3={};_0x2e26f3['bytesPerRow']=TEX_WIDTH*BYTES_PER_PIXEL;const _0x172952={};_0x172952['width']=TEX_WIDTH,_0x172952['height']=TEX_HEIGHT,_0x168a1b['queue']['writeTexture'](_0x4f23cf,_0x55d581['buffer'],_0x2e26f3,_0x172952);const _0x59794c={};_0x59794c['label']='fp-sampler';const _0x266634=_0x168a1b['createSampler'](_0x59794c),_0x307efa={};_0x307efa['binding']=0x0,_0x307efa['resource']=_0x266634;const _0xcf8da1=_0x168a1b['createBindGroup']({'layout':_0x1ffd93['getBindGroupLayout'](0x0),'entries':[_0x307efa,{'binding':0x1,'resource':_0x291c9c['createView']()}]}),_0x4101bd=ROTATION_MATRICES['map'](_0x2ca02b=>{const _0x853d28={};_0x853d28['label']='fp-uniform',_0x853d28['size']=0x4*Float32Array['BYTES_PER_ELEMENT'],_0x853d28['usage']=GPUBufferUsage['UNIFORM'],_0x853d28['mappedAtCreation']=!![];const _0x51d751=_0x168a1b['createBuffer'](_0x853d28);new Float32Array(_0x51d751['getMappedRange']())['set'](_0x2ca02b),_0x51d751['unmap']();const _0x37ef07={};_0x37ef07['buffer']=_0x51d751;const _0x4e3da1={};return _0x4e3da1['binding']=0x0,_0x4e3da1['resource']=_0x37ef07,_0x168a1b['createBindGroup']({'layout':_0x1ffd93['getBindGroupLayout'](0x1),'entries':[_0x4e3da1]});}),_0x3b79ad=_0x168a1b['features']['has']('timestamp-query');let _0x129a28=null,_0x10b86a=null,_0x374bf9=null;if(_0x3b79ad){const _0x5e1c60={};_0x5e1c60['label']='fp-ts',_0x5e1c60['type']='timestamp',_0x5e1c60['count']=0x2,_0x129a28=_0x168a1b['createQuerySet'](_0x5e1c60);const _0x4225f3={};_0x4225f3['size']=0x2*0x8,_0x4225f3['usage']=GPUBufferUsage['QUERY_RESOLVE']|GPUBufferUsage['COPY_SRC'],_0x10b86a=_0x168a1b['createBuffer'](_0x4225f3);const _0x4cf0f7={};_0x4cf0f7['size']=0x2*0x8,_0x4cf0f7['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'],_0x374bf9=_0x168a1b['createBuffer'](_0x4cf0f7);}const _0x7a8752={};_0x7a8752['label']='fp-rt',_0x7a8752['size']=[RT_WIDTH,RT_HEIGHT],_0x7a8752['format']=_0x326d26,_0x7a8752['usage']=GPUTextureUsage['RENDER_ATTACHMENT']|GPUTextureUsage['COPY_SRC'];const _0x41d177=_0x168a1b['createTexture'](_0x7a8752),_0x218c85=Math['ceil'](RT_WIDTH*BYTES_PER_PIXEL/0x100)*0x100,_0x15a7bd={};_0x15a7bd['label']='fp-pixel-read',_0x15a7bd['size']=_0x218c85*RT_HEIGHT,_0x15a7bd['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x202b1b=_0x168a1b['createBuffer'](_0x15a7bd),_0xac0268=[],_0x44c289=[];for(let _0x2fefed=0x0;_0x2fefed<ROTATION_MATRICES['length'];_0x2fefed++){const _0x438fec=_0x41d177['createView'](),_0x2749fe={};_0x2749fe['label']='fp-enc-'+_0x2fefed;const _0x4b4f29=_0x168a1b['createCommandEncoder'](_0x2749fe),_0x5c1279={};_0x5c1279['r']=0x0,_0x5c1279['g']=0x0,_0x5c1279['b']=0x0,_0x5c1279['a']=0x1;const _0xc4dfb2={};_0xc4dfb2['view']=_0x438fec,_0xc4dfb2['clearValue']=_0x5c1279,_0xc4dfb2['loadOp']='clear',_0xc4dfb2['storeOp']='store';const _0x41dfc5={'label':'fp-pass-'+_0x2fefed,'colorAttachments':[_0xc4dfb2],..._0x3b79ad&&_0x129a28?{'timestampWrites':{'querySet':_0x129a28,'beginningOfPassWriteIndex':0x0,'endOfPassWriteIndex':0x1}}:{}},_0x1531a0=_0x41dfc5,_0x2b3dc0=_0x4b4f29['beginRenderPass'](_0x1531a0);_0x2b3dc0['setPipeline'](_0x1ffd93),_0x2b3dc0['setBindGroup'](0x0,_0xcf8da1),_0x2b3dc0['setBindGroup'](0x1,_0x4101bd[_0x2fefed]),_0x2b3dc0['draw'](0x6),_0x2b3dc0['end']();_0x3b79ad&&_0x129a28&&_0x10b86a&&_0x374bf9&&(_0x4b4f29['resolveQuerySet'](_0x129a28,0x0,0x2,_0x10b86a,0x0),_0x4b4f29['copyBufferToBuffer'](_0x10b86a,0x0,_0x374bf9,0x0,_0x10b86a['size']));const _0x4c6339={};_0x4c6339['x']=0x0,_0x4c6339['y']=0x0;const _0xe0b8ac={};_0xe0b8ac['texture']=_0x41d177,_0xe0b8ac['origin']=_0x4c6339;const _0x19164b={};_0x19164b['buffer']=_0x202b1b,_0x19164b['bytesPerRow']=_0x218c85,_0x19164b['rowsPerImage']=RT_HEIGHT;const _0x3f8786={};_0x3f8786['width']=RT_WIDTH,_0x3f8786['height']=RT_HEIGHT,_0x4b4f29['copyTextureToBuffer'](_0xe0b8ac,_0x19164b,_0x3f8786),_0x168a1b['queue']['submit']([_0x4b4f29['finish']()]),await _0x202b1b['mapAsync'](GPUMapMode['READ']);const _0x1ca0e5=new Uint8Array(_0x202b1b['getMappedRange']()),_0x2f7398=RT_WIDTH*BYTES_PER_PIXEL,_0x5b666e=new Uint8Array(_0x2f7398*RT_HEIGHT);for(let _0x540cd9=0x0;_0x540cd9<RT_HEIGHT;_0x540cd9++){_0x5b666e['set'](_0x1ca0e5['subarray'](_0x540cd9*_0x218c85,_0x540cd9*_0x218c85+_0x2f7398),_0x540cd9*_0x2f7398);}_0xac0268['push'](fnv1a$1(_0x5b666e)),_0x202b1b['unmap']();if(_0x3b79ad&&_0x374bf9)try{await _0x374bf9['mapAsync'](GPUMapMode['READ']);const _0x60d1a3=new BigUint64Array(_0x374bf9['getMappedRange']()),_0x332ef0=_0x60d1a3[0x0],_0x5d6bd4=_0x60d1a3[0x1];_0x5d6bd4>_0x332ef0&&_0x44c289['push'](quantizeTiming(_0x5d6bd4-_0x332ef0)),_0x374bf9['unmap']();}catch{}}const _0x486c2f=new Uint8Array(_0xac0268['length']*0x4),_0x32ad2a=new DataView(_0x486c2f['buffer']);for(let _0xf07478=0x0;_0xf07478<_0xac0268['length'];_0xf07478++){_0x32ad2a['setUint32'](_0xf07478*0x4,_0xac0268[_0xf07478],!![]);}let _0x4269c7='';for(let _0x4d5861=0x0;_0x4d5861<_0x486c2f['length'];_0x4d5861++){_0x4269c7+=String['fromCharCode'](_0x486c2f[_0x4d5861]);}return typeof _0x168a1b['destroy']==='function'&&_0x168a1b['destroy'](),{'pixelHash':btoa(_0x4269c7),'timingBuckets':_0x44c289};}async function getSubtleCryptoExport(){if(typeof navigator==='undefined'||navigator['gpu']===undefined){const _0x11fcb3={};return _0x11fcb3['s']=-0x1,_0x11fcb3['v']=null,_0x11fcb3;}const _0x1b7f37={};_0x1b7f37['s']=-0x2,_0x1b7f37['v']=null;const _0x10a375=await Promise['race']([collectWebGpuSignal(),new Promise(_0x4a9c77=>setTimeout(()=>_0x4a9c77(_0x1b7f37),TIMEOUT_MS))]);return _0x10a375;}async function collectWebGpuSignal(){let _0x211aae;try{const _0x11373b=await navigator['gpu']['requestAdapter']();if(!_0x11373b){const _0x391ff8={};return _0x391ff8['s']=-0x4,_0x391ff8['v']=null,_0x391ff8;}_0x211aae=_0x11373b;}catch(_0x29d193){if(_0x29d193 instanceof Error){const _0xfc543a={};return _0xfc543a['s']=-0x3,_0xfc543a['v']=null,_0xfc543a;}throw _0x29d193;}try{const _0x1ffd87=Array['from'](_0x211aae['features']['values']())['sort'](),[_0x1a3fe6,_0x3fb781]=await Promise['all']([renderAndReadback(_0x211aae,_0x1ffd87),getAdapterInfo$1(_0x211aae)]),_0x3941fd={};_0x3941fd['s']=_0x1ffd87,_0x3941fd['f']=_0x1a3fe6['pixelHash'],_0x3941fd['t']=_0x1a3fe6['timingBuckets'],_0x3941fd['v']=_0x3fb781['vendor'],_0x3941fd['a']=_0x3fb781['architecture'];const _0x5f2590={};return _0x5f2590['s']=0x0,_0x5f2590['v']=_0x3941fd,_0x5f2590;}catch(_0x5f2737){if(_0x5f2737 instanceof TypeError){const _0x560659={};return _0x560659['s']=-0x7,_0x560659['v']=null,_0x560659;}throw _0x5f2737;}}const _0x3aac1d={};_0x3aac1d['text']='今天天气真好我们出去玩吧',_0x3aac1d['locale']='zh',_0x3aac1d['gran']='word';const _0x42fe7b={};_0x42fe7b['text']='東京都は日本の首都です',_0x42fe7b['locale']='ja',_0x42fe7b['gran']='word';const _0x5710a9={};_0x5710a9['text']='สวัสดีครับวันนี้อากาศดี',_0x5710a9['locale']='th',_0x5710a9['gran']='word';const _0xc90099={};_0xc90099['text']='오늘날씨가좋아서산책했습니다',_0xc90099['locale']='ko',_0xc90099['gran']='word';const _0x49e54d={};_0x49e54d['text']='can\x27t\x20won\x27t\x20they\x27re\x20ice-cream',_0x49e54d['locale']='en',_0x49e54d['gran']='word';const _0x584e18={};_0x584e18['text']='👨👩👧👦🏳️🌈👩🏽💻',_0x584e18['locale']='en',_0x584e18['gran']='grapheme';const SEGMENTER_TESTS=[_0x3aac1d,_0x42fe7b,_0x5710a9,_0xc90099,_0x49e54d,_0x584e18],_0x336be0={};_0x336be0['code']='XK',_0x336be0['type']='region';const _0x467cee={};_0x467cee['code']='EH',_0x467cee['type']='region';const _0x4d50b={};_0x4d50b['code']='SX',_0x4d50b['type']='region';const _0x4aa2e9={};_0x4aa2e9['code']='BQ',_0x4aa2e9['type']='region';const _0x4e928e={};_0x4e928e['code']='SS',_0x4e928e['type']='region';const _0x33368d={};_0x33368d['code']='CW',_0x33368d['type']='region';const DISPLAY_NAMES_TESTS=[_0x336be0,_0x467cee,_0x4d50b,_0x4aa2e9,_0x4e928e,_0x33368d];function getIntlSegmenter(){const _0x54738f={};_0x54738f['segmenter']=null,_0x54738f['displayNames']=null;const _0x13fd9d=_0x54738f;try{const _0x389882=Intl['Segmenter'];if(_0x389882){const _0x4cee56={};for(const _0x335450 of SEGMENTER_TESTS){try{const _0x5013df=new _0x389882(_0x335450['locale'],{'granularity':_0x335450['gran']}),_0x370f2f=[..._0x5013df['segment'](_0x335450['text'])]['length'];_0x4cee56[_0x335450['locale']+'_'+_0x335450['gran']]=_0x370f2f;}catch{}}Object['keys'](_0x4cee56)['length']>0x0&&(_0x13fd9d['segmenter']=_0x4cee56);}}catch{}try{if(typeof Intl['DisplayNames']==='function'){const _0x6d1404={},_0x52f087={};_0x52f087['type']='region';const _0x5ddb7f=new Intl['DisplayNames'](['en'],_0x52f087);for(const _0x587cd5 of DISPLAY_NAMES_TESTS){try{const _0x127bcb=_0x5ddb7f['of'](_0x587cd5['code']);_0x127bcb!==undefined&&_0x127bcb!==''&&(_0x6d1404[_0x587cd5['code']]=_0x127bcb);}catch{}}Object['keys'](_0x6d1404)['length']>0x0&&(_0x13fd9d['displayNames']=_0x6d1404);}}catch{}return _0x13fd9d;}const fallbackFn=()=>0x0;function getMathFn(_0x57c969){const _0x104dd4=globalThis['Math'][_0x57c969];return typeof _0x104dd4==='function'?_0x104dd4:fallbackFn;}function getMathSignal(){const _0x1cb9d9=getMathFn('acos'),_0x26b469=getMathFn('acosh'),_0x42b937=getMathFn('asin'),_0x26f93f=getMathFn('asinh'),_0x18e012=getMathFn('atanh'),_0xa31079=getMathFn('atan'),_0x4378ad=getMathFn('sin'),_0x58d1ce=getMathFn('sinh'),_0x1d9dba=getMathFn('cos'),_0x57af11=getMathFn('cosh'),_0x4b8a8b=getMathFn('tan'),_0x218060=getMathFn('tanh'),_0x3b1414=getMathFn('exp'),_0x2927b1=getMathFn('expm1'),_0x2b43b1=getMathFn('log1p'),_0x2780ae=_0x20afaa=>Math['pow'](Math['PI'],_0x20afaa),_0x2a3df2=_0x52595e=>Math['log'](_0x52595e+Math['sqrt'](_0x52595e*_0x52595e-0x1)),_0x40c219=_0x3011c7=>Math['log'](_0x3011c7+Math['sqrt'](_0x3011c7*_0x3011c7+0x1)),_0x2feebd=_0x23baac=>Math['log']((0x1+_0x23baac)/(0x1-_0x23baac))/0x2,_0x4efb59=_0x409c2c=>Math['exp'](_0x409c2c)-0x1/Math['exp'](_0x409c2c)/0x2,_0x3c8d26=_0x19a41f=>(Math['exp'](_0x19a41f)+0x1/Math['exp'](_0x19a41f))/0x2,_0x87a742=_0x2fe2a7=>Math['exp'](_0x2fe2a7)-0x1,_0x160d55=_0x21d6b5=>(Math['exp'](0x2*_0x21d6b5)-0x1)/(Math['exp'](0x2*_0x21d6b5)+0x1),_0x3f8687=_0x36c275=>Math['log'](0x1+_0x36c275);return{'acos':_0x1cb9d9(0.12312423423423424),'acosh':_0x26b469(0x8e679c2f5e450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'acoshPf':_0x2a3df2(0xbeeefb584aff88000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'asin':_0x42b937(0.12312423423423424),'asinh':_0x26f93f(0x1),'asinhPf':_0x40c219(0x1),'atanh':_0x18e012(0.5),'atanhPf':_0x2feebd(0.5),'atan':_0xa31079(0.5),'sin':_0x4378ad(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'sinh':_0x58d1ce(0x1),'sinhPf':_0x4efb59(0x1),'cos':_0x1d9dba(10.000000000123),'cosh':_0x57af11(0x1),'coshPf':_0x3c8d26(0x1),'tan':_0x4b8a8b(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'tanh':_0x218060(0x1),'tanhPf':_0x160d55(0x1),'exp':_0x3b1414(0x1),'expm1':_0x2927b1(0x1),'expm1Pf':_0x87a742(0x1),'log1p':_0x2b43b1(0xa),'log1pPf':_0x3f8687(0xa),'powPI':_0x2780ae(-0x64)};}const QUINTUPLETS=[['𝔈','υ','τ','ρ','σ'],['𝔇','π','ο','ν','ξ'],['𝔄','δ','γ','α','β'],['𝔅','θ','η','ε','ζ'],['𝔉','ω','ψ','φ','χ'],['ℭ','μ','λ','ι','κ']];function getMathML(){const _0x3b6536=document['createDocumentFragment'](),_0x551ce4=createMathElement(_0x3b6536,'mrow'),_0x274fae=createMathElement(_0x551ce4,'munderover'),_0x3e0327=createMathElement(_0x274fae,'mmultiscripts');createMathElement(_0x3e0327,'mo','∏');for(const [_0x49ca3d,_0x20bee2,_0x4642bd,_0x19dd7c,_0x24f520]of QUINTUPLETS){const _0x4ff63b=document['createElement']('mmultiscripts');createMathElement(_0x4ff63b,'mi',_0x49ca3d),createMathElement(_0x4ff63b,'mi',_0x20bee2),createMathElement(_0x4ff63b,'mi',_0x4642bd),createMathElement(_0x4ff63b,'mprescripts'),createMathElement(_0x4ff63b,'mi',_0x19dd7c),createMathElement(_0x4ff63b,'mi',_0x24f520),_0x3e0327['append'](_0x4ff63b);}return getIframePool()['execute']((_0x58943a,_0x11145e)=>{const _0x53f353=_0x11145e['document'],_0x48103b=_0x53f353['createElement']('math');_0x48103b['style']['whiteSpace']='nowrap',_0x48103b['append'](_0x3b6536),_0x53f353['body']['append'](_0x48103b);const _0x34e3b9={},_0x509469=_0x48103b['getBoundingClientRect'](),_0x53ff53=['x','y','left','right','bottom','height','top','width'];for(const _0x36e9e6 of _0x53ff53){_0x36e9e6 in _0x509469&&(_0x34e3b9[_0x36e9e6]=_0x509469[_0x36e9e6]);}const _0x307bd5=_0x11145e['getComputedStyle'](_0x48103b,null)['getPropertyValue']('font-family');return _0x34e3b9['font']=_0x307bd5,_0x53f353['body']['removeChild'](_0x48103b),_0x34e3b9;});}function createMathElement(_0x33f264,_0x160de7,_0x37e41a=''){const _0x25835a=document['createElement'](_0x160de7);return _0x25835a['textContent']=_0x37e41a,_0x33f264['appendChild'](_0x25835a),_0x25835a;}const MSE_AUDIO_CODECS=['audio/mp4;\x20codecs=\x22mp4a.40.2\x22','audio/webm;\x20codecs=\x22vorbis\x22','audio/ogg;\x20codecs=\x22vorbis\x22','audio/wav;\x20codecs=\x221\x22','audio/ogg;\x20codecs=\x22speex\x22','audio/ogg;\x20codecs=\x22flac\x22','audio/mpeg','audio/3gpp'],MSE_VIDEO_CODECS=['video/mp4;\x20codecs=\x22avc1.42E01E\x22','video/mp4;\x20codecs=\x22avc1.58A01E\x22','video/mp4;\x20codecs=\x22avc1.4D401E\x22','video/mp4;\x20codecs=\x22avc1.64001E\x22','video/mp4;\x20codecs=\x22mp4v.20.8\x22','video/webm;\x20codecs=\x22vp8\x22','video/webm;\x20codecs=\x22vp9\x22','video/ogg;\x20codecs=\x22theora\x22','video/mp4;\x20codecs=\x22hvc1\x22','video/mp4;\x20codecs=\x22av01.0.01M.08\x22','video/webm;\x20codecs=\x22av1\x22'];function getMediaCodecsExtended(){return{'mseAudio':getMseBitmask(MSE_AUDIO_CODECS),'mseVideo':getMseBitmask(MSE_VIDEO_CODECS),'rtcAudioCodecs':getRtcCodecs('audio'),'rtcVideoCodecs':getRtcCodecs('video')};}function getMseBitmask(_0x4e0625){const _0x35d58d=window,_0x420185=_0x35d58d['MediaSource'];if(_0x420185===undefined||typeof _0x420185['isTypeSupported']!=='function')return-0x1;let _0x5551a6=0x0;for(let _0x350eb7=0x0;_0x350eb7<_0x4e0625['length'];_0x350eb7++){try{_0x420185['isTypeSupported'](_0x4e0625[_0x350eb7])&&(_0x5551a6|=0x1<<_0x350eb7);}catch{}}return _0x5551a6;}function getRtcCodecs(_0x3c3711){const _0x22f2d9=window,_0x3866aa=_0x22f2d9['RTCRtpReceiver'];if(_0x3866aa===undefined||typeof _0x3866aa['getCapabilities']!=='function')return null;try{const _0x4536cf=_0x3866aa['getCapabilities'](_0x3c3711);if(_0x4536cf===null)return null;const _0x3eb1af=_0x4536cf['codecs']['map'](_0x1c6f0f=>''+_0x1c6f0f['mimeType']+(_0x1c6f0f['sdpFmtpLine']!==undefined&&_0x1c6f0f['sdpFmtpLine']!==''?';'+_0x1c6f0f['sdpFmtpLine']:''));return _0x3eb1af['sort']();}catch{return null;}}async function getSubPixelRendering(){try{return await getIframePool()['execute']((_0x415416,_0x17d93a)=>{const _0x10a93a=_0x17d93a['document'],_0x34c73e=_0x10a93a['createElement']('div');_0x34c73e['style']['border']='.5px\x20dotted\x20transparent',_0x10a93a['body']['appendChild'](_0x34c73e);const _0x1623c2=_0x34c73e['offsetHeight'];return _0x10a93a['body']['removeChild'](_0x34c73e),_0x1623c2;});}catch{return null;}}function getSupportedConstraints(){try{const _0x1b0530=navigator['mediaDevices'];if(_0x1b0530===undefined||typeof _0x1b0530['getSupportedConstraints']!=='function')return undefined;return Object['keys'](_0x1b0530['getSupportedConstraints']());}catch{return undefined;}}function getSvgEmojiSignal(){let _0x4e4bfb='';for(let _0xe117fe=0x1f600;_0xe117fe<=0x1f64f;_0xe117fe++){_0x4e4bfb+=String['fromCodePoint'](_0xe117fe);}return getIframePool()['execute']((_0x37101a,_0x18a4ce)=>{const _0x2966c1=_0x18a4ce['document'],_0x5a8713='http://www.w3.org/2000/svg',_0x2ab28a=_0x2966c1['createElementNS'](_0x5a8713,'svg');_0x2ab28a['setAttribute']('width','0'),_0x2ab28a['setAttribute']('height','0'),_0x2ab28a['style']['position']='absolute',_0x2ab28a['style']['visibility']='hidden';const _0x186007=_0x2966c1['createElementNS'](_0x5a8713,'text');_0x186007['setAttribute']('x','0'),_0x186007['setAttribute']('y','50'),_0x186007['setAttribute']('font-size','16'),_0x186007['textContent']=_0x4e4bfb,_0x2ab28a['appendChild'](_0x186007),_0x2966c1['body']['appendChild'](_0x2ab28a);const _0x5e51e0=_0x18a4ce['getComputedStyle'](_0x186007)['getPropertyValue']('font-family');let _0x1ae768=null;try{const _0x1923cd=_0x186007['getBBox']();_0x1ae768={'x':round(_0x1923cd['x']),'y':round(_0x1923cd['y']),'width':round(_0x1923cd['width']),'height':round(_0x1923cd['height'])};}catch{}let _0x282d18=null;try{const _0x163f08=_0x186007,_0x9b684a=_0x163f08['getExtentOfChar'](0x0);_0x282d18={'x':round(_0x9b684a['x']),'y':round(_0x9b684a['y']),'width':round(_0x9b684a['width']),'height':round(_0x9b684a['height'])};}catch{}let _0x397065=null;try{const _0x5cfb8a=_0x186007;_0x397065=round(_0x5cfb8a['getSubStringLength'](0x0,0xa));}catch{}let _0x28bb6d=null;try{const _0x4bd234=_0x186007;_0x28bb6d=round(_0x4bd234['getComputedTextLength']());}catch{}_0x2966c1['body']['removeChild'](_0x2ab28a);const _0xa1662f={};return _0xa1662f['bbox']=_0x1ae768,_0xa1662f['charExtent']=_0x282d18,_0xa1662f['substringLength']=_0x397065,_0xa1662f['computedTextLength']=_0x28bb6d,_0xa1662f['font']=_0x5e51e0,_0xa1662f;});}function round(_0x9444d6){return Math['round'](_0x9444d6*0x64)/0x64;}const _0x19259f={};_0x19259f['contentType']='video/mp4;\x20codecs=\x22avc1.42E01E\x22',_0x19259f['width']=0x780,_0x19259f['height']=0x438,_0x19259f['bitrate']=0x4c4b40,_0x19259f['framerate']=0x1e;const _0x5e0d94={};_0x5e0d94['type']='file',_0x5e0d94['video']=_0x19259f;const _0x439999={};_0x439999['contentType']='video/webm;\x20codecs=\x22vp8\x22',_0x439999['width']=0x780,_0x439999['height']=0x438,_0x439999['bitrate']=0x4c4b40,_0x439999['framerate']=0x1e;const _0x265278={};_0x265278['type']='file',_0x265278['video']=_0x439999;const _0x5cb4e0={};_0x5cb4e0['contentType']='video/webm;\x20codecs=\x22vp09.00.10.08\x22',_0x5cb4e0['width']=0x780,_0x5cb4e0['height']=0x438,_0x5cb4e0['bitrate']=0x4c4b40,_0x5cb4e0['framerate']=0x1e;const _0x12c47d={};_0x12c47d['type']='file',_0x12c47d['video']=_0x5cb4e0;const _0x5b0ada={};_0x5b0ada['contentType']='video/mp4;\x20codecs=\x22av01.0.05M.08\x22',_0x5b0ada['width']=0x780,_0x5b0ada['height']=0x438,_0x5b0ada['bitrate']=0x4c4b40,_0x5b0ada['framerate']=0x1e;const _0x192d43={};_0x192d43['type']='file',_0x192d43['video']=_0x5b0ada;const _0x55db81={};_0x55db81['contentType']='video/mp4;\x20codecs=\x22hvc1.1.6.L93.B0\x22',_0x55db81['width']=0x780,_0x55db81['height']=0x438,_0x55db81['bitrate']=0x4c4b40,_0x55db81['framerate']=0x1e;const _0x2a4e5c={};_0x2a4e5c['type']='file',_0x2a4e5c['video']=_0x55db81;const _0x50b403={};_0x50b403['contentType']='video/mp4;\x20codecs=\x22avc1.640033\x22',_0x50b403['width']=0xf00,_0x50b403['height']=0x870,_0x50b403['bitrate']=0x1312d00,_0x50b403['framerate']=0x3c;const _0x16225b={};_0x16225b['type']='file',_0x16225b['video']=_0x50b403;const _0x1b4dfd={};_0x1b4dfd['contentType']='video/webm;\x20codecs=\x22vp09.02.10.10\x22',_0x1b4dfd['width']=0xf00,_0x1b4dfd['height']=0x870,_0x1b4dfd['bitrate']=0x1312d00,_0x1b4dfd['framerate']=0x3c;const _0x30352b={};_0x30352b['type']='file',_0x30352b['video']=_0x1b4dfd;const _0x53b499={};_0x53b499['contentType']='video/mp4;\x20codecs=\x22av01.0.12M.10\x22',_0x53b499['width']=0xf00,_0x53b499['height']=0x870,_0x53b499['bitrate']=0x1312d00,_0x53b499['framerate']=0x3c;const _0x269852={};_0x269852['type']='file',_0x269852['video']=_0x53b499;const CODEC_CONFIGS=[_0x5e0d94,_0x265278,_0x12c47d,_0x192d43,_0x2a4e5c,_0x16225b,_0x30352b,_0x269852];async function getVideoCodecs(){if(!('mediaCapabilities'in navigator))return null;return Promise['all'](CODEC_CONFIGS['map'](async _0x5806db=>{try{const _0x521fbb=await navigator['mediaCapabilities']['decodingInfo'](_0x5806db);let _0x12594a=0x0;if(_0x521fbb['supported'])_0x12594a|=0x1;if(_0x521fbb['smooth'])_0x12594a|=0x2;if(_0x521fbb['powerEfficient'])_0x12594a|=0x4;return _0x12594a;}catch(_0x48674b){return _0x48674b instanceof Error?_0x48674b['message']:String(_0x48674b);}}));}const WASM_PREFIX=[0x0,0x61,0x73,0x6d,0x1,0x0,0x0,0x0,0x1,0x4,0x1,0x60,0x0,0x0,0x3,0x2,0x1,0x0,0xa],FEATURE_MODULES=[[0x9,0x1,0x7,0x0,0x41,0x0,0xfd,0xf,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0xf0,0x43,0x0,0x0,0x0,0xc,0x1,0xa,0x0,0xfc,0x2,0x3,0x1,0x1,0x0,0x0,0x6e,0x1a,0xb,0xa1,0xa],[0x6,0x1,0x4,0x0,0x12,0x0,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x8,0x1,0x6,0x0,0x41,0x0,0xc0,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x7,0x1,0x5,0x0,0xd0,0x70,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0]];function getWasmFeatures(){try{if(typeof WebAssembly==='undefined'||typeof WebAssembly['validate']!=='function')return undefined;let _0x219c58=0x0;for(const _0x5e5d92 of FEATURE_MODULES){_0x219c58<<=0x1,WebAssembly['validate'](Uint8Array['of'](...WASM_PREFIX,..._0x5e5d92)['buffer'])&&(_0x219c58|=0x1);}return _0x219c58;}catch{return undefined;}}const _0x1b8493={};_0x1b8493['codec']='avc1.42001E',_0x1b8493['width']=0x780,_0x1b8493['height']=0x438,_0x1b8493['label']='h264-baseline-1080';const _0x35adac={};_0x35adac['codec']='avc1.4D0032',_0x35adac['width']=0xf00,_0x35adac['height']=0x870,_0x35adac['label']='h264-main-4k';const _0x33459e={};_0x33459e['codec']='avc1.640033',_0x33459e['width']=0xf00,_0x33459e['height']=0x870,_0x33459e['label']='h264-high-4k';const _0x876ba8={};_0x876ba8['codec']='hev1.1.6.L150.B0',_0x876ba8['width']=0x780,_0x876ba8['height']=0x438,_0x876ba8['label']='hevc-main-1080';const _0x4ae55a={};_0x4ae55a['codec']='hev1.2.4.L153.B0',_0x4ae55a['width']=0xf00,_0x4ae55a['height']=0x870,_0x4ae55a['label']='hevc-main10-4k';const _0x2028ee={};_0x2028ee['codec']='hev1.1.6.L180.B0',_0x2028ee['width']=0x1e00,_0x2028ee['height']=0x10e0,_0x2028ee['label']='hevc-main-8k';const _0x5e09b8={};_0x5e09b8['codec']='vp09.00.40.08',_0x5e09b8['width']=0x780,_0x5e09b8['height']=0x438,_0x5e09b8['label']='vp9-profile0-1080';const _0x4a747f={};_0x4a747f['codec']='vp09.02.40.10',_0x4a747f['width']=0xf00,_0x4a747f['height']=0x870,_0x4a747f['label']='vp9-profile2-4k-10bit';const _0x36486f={};_0x36486f['codec']='av01.0.08M.08',_0x36486f['width']=0x780,_0x36486f['height']=0x438,_0x36486f['label']='av1-main-1080';const _0x20c079={};_0x20c079['codec']='av01.0.12M.10',_0x20c079['width']=0xf00,_0x20c079['height']=0x870,_0x20c079['label']='av1-main-4k-10bit';const _0x39bb30={};_0x39bb30['codec']='av01.0.16M.10',_0x39bb30['width']=0x1e00,_0x39bb30['height']=0x10e0,_0x39bb30['label']='av1-main-8k-10bit';const _0x7bc79a={};_0x7bc79a['codec']='vp8',_0x7bc79a['width']=0x780,_0x7bc79a['height']=0x438,_0x7bc79a['label']='vp8-1080';const CODEC_TESTS=[_0x1b8493,_0x35adac,_0x33459e,_0x876ba8,_0x4ae55a,_0x2028ee,_0x5e09b8,_0x4a747f,_0x36486f,_0x20c079,_0x39bb30,_0x7bc79a];async function getWebCodecsHardware(){try{const _0x3c80cc=window['VideoDecoder'];if(!_0x3c80cc||typeof _0x3c80cc['isConfigSupported']!=='function')return null;const _0x21b8a8=_0x3c80cc['isConfigSupported']['bind'](_0x3c80cc),_0x5e3267=[],_0x288e47=CODEC_TESTS['map'](async _0x1b7858=>{try{const _0x10d5b1={};_0x10d5b1['codec']=_0x1b7858['codec'],_0x10d5b1['codedWidth']=_0x1b7858['width'],_0x10d5b1['codedHeight']=_0x1b7858['height'],_0x10d5b1['hardwareAcceleration']='prefer-hardware';const _0x19c556=_0x10d5b1,_0x54dab5=await Promise['race']([_0x21b8a8(_0x19c556),new Promise(_0x12527f=>setTimeout(()=>_0x12527f(null),0x1f4))]);if(_0x54dab5?.['supported']===!![]){const _0x6a0c1e=_0x54dab5['config'],_0xe6ae75=_0x6a0c1e?.['hardwareAcceleration'];(_0xe6ae75==='prefer-hardware'||_0xe6ae75===undefined)&&_0x5e3267['push'](_0x1b7858['label']);}}catch{}});return await Promise['all'](_0x288e47),_0x5e3267['sort']();}catch{return null;}}const STATUS_NO_GL_CONTEXT=-0x1,STATUS_GET_PARAMETER_NOT_A_FUNCTION=-0x2,validContextParameters=new Set([0x2a00,0xb21,0xb44,0xb45,0xb46,0xb70,0xb71,0xb72,0xb73,0xb74,0xb90,0xb91,0xb92,0xb93,0xb94,0xb95,0xb96,0xb97,0xb98,0xba2,0xbd0,0xbe2,0xc10,0xc11,0xc22,0xc23,0x8005,0x8009,0x8009,0x8037,0x8038,0x80a8,0x80a9,0x80aa,0x80ab,0x80c8,0x80c9,0x80ca,0x80cb,0xcf5,0x8192,0xd05,0xd33,0xd39,0xd3a,0xd4b,0xd66,0x846d,0x846e,0x84e0,0x84e8,0x851c,0xd50,0xd52,0xd53,0xd54,0xd55,0xd56,0xd57,0x86a3,0x8800,0x8801,0x8802,0x8803,0x883d,0x8869,0x8872,0x8b4c,0x8b4d,0x8b8c,0x8b9a,0x8b9b,0x8ca3,0x8ca4,0x8ca5,0x8dfb,0x8dfc,0x8dfd,0x9240,0x9241,0x9243,0x1f00,0x1f01,0x1f02]),validExtensionParams=new Set([0x84ff,0x8b8b,0x8cdf,0x8824,0x8825,0x8826,0x85b5,0x8e28,0x8fbb,0x9631]),shaderTypes=['FRAGMENT_SHADER','VERTEX_SHADER'],precisionTypes=['LOW_FLOAT','MEDIUM_FLOAT','HIGH_FLOAT','LOW_INT','MEDIUM_INT','HIGH_INT'],rendererInfoExtensionName='WEBGL_debug_renderer_info',polygonModeExtensionName='WEBGL_polygon_mode';function getWebGlBasics({cache:_0x205be6}){const _0x6860c7=getWebGLContext(_0x205be6);if(!_0x6860c7)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0x6860c7))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0x2b3c82=shouldAvoidDebugRendererInfo()?null:_0x6860c7['getExtension'](rendererInfoExtensionName);return{'version':getParamString(_0x6860c7,_0x6860c7['VERSION']),'vendor':getParamString(_0x6860c7,_0x6860c7['VENDOR']),'vendorUnmasked':_0x2b3c82!==null?getParamString(_0x6860c7,_0x2b3c82['UNMASKED_VENDOR_WEBGL']):'','renderer':getParamString(_0x6860c7,_0x6860c7['RENDERER']),'rendererUnmasked':_0x2b3c82!==null?getParamString(_0x6860c7,_0x2b3c82['UNMASKED_RENDERER_WEBGL']):'','shadingLanguageVersion':getParamString(_0x6860c7,_0x6860c7['SHADING_LANGUAGE_VERSION'])};}function getWebGlExtensions({cache:_0x5e2dcd}){const _0x5b1632=getWebGLContext(_0x5e2dcd);if(!_0x5b1632)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0x5b1632))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0x18d7d3=_0x5b1632['getSupportedExtensions'](),_0x3a614e=_0x5b1632['getContextAttributes'](),_0x10ad1c=[],_0x13e682=[],_0x23386e=[],_0x3b8f42=[],_0x5a9fbd=[];if(_0x3a614e)for(const _0x3256bd of Object['keys'](_0x3a614e)){_0x13e682['push'](_0x3256bd+'='+_0x3a614e[_0x3256bd]);}const _0x11c6ee=getConstantsFromPrototype(_0x5b1632);for(const _0x186218 of _0x11c6ee){const _0x1409a3=_0x5b1632[_0x186218],_0x1aa1a5=validContextParameters['has'](_0x1409a3)?'='+String(_0x5b1632['getParameter'](_0x1409a3)):'';_0x23386e['push'](_0x186218+'='+_0x1409a3+_0x1aa1a5);}if(_0x18d7d3!==null)for(const _0x3b0383 of _0x18d7d3){if(_0x3b0383===rendererInfoExtensionName&&shouldAvoidDebugRendererInfo()||_0x3b0383===polygonModeExtensionName&&shouldAvoidPolygonModeExtensions())continue;const _0x260c01=_0x5b1632['getExtension'](_0x3b0383);if(_0x260c01===null){_0x10ad1c['push'](_0x3b0383);continue;}for(const _0x3b6403 of getConstantsFromPrototype(_0x260c01)){const _0x39e19e=_0x260c01[_0x3b6403],_0x2bd359=validExtensionParams['has'](_0x39e19e)?'='+String(_0x5b1632['getParameter'](_0x39e19e)):'';_0x3b8f42['push'](_0x3b6403+'='+_0x39e19e+_0x2bd359);}}for(const _0x59a794 of shaderTypes){for(const _0x1e4c1d of precisionTypes){const _0x2b2e60=getShaderPrecision(_0x5b1632,_0x59a794,_0x1e4c1d);_0x5a9fbd['push'](_0x59a794+'.'+_0x1e4c1d+'='+_0x2b2e60['join'](','));}}_0x3b8f42['sort'](),_0x23386e['sort']();const _0x323dab={};return _0x323dab['contextAttributes']=_0x13e682,_0x323dab['parameters']=_0x23386e,_0x323dab['shaderPrecisions']=_0x5a9fbd,_0x323dab['extensions']=_0x18d7d3,_0x323dab['extensionParameters']=_0x3b8f42,_0x323dab['unsupportedExtensions']=_0x10ad1c,_0x323dab;}function getWebGLContext(_0x1a98bf){if(_0x1a98bf['webgl'])return _0x1a98bf['webgl']['context'];const _0x218d89=document['createElement']('canvas');let _0x137ac6;_0x218d89['addEventListener']('webglCreateContextError',()=>_0x137ac6=undefined);for(const _0x4b6a65 of['webgl','experimental-webgl']){try{_0x137ac6=_0x218d89['getContext'](_0x4b6a65);}catch{}if(_0x137ac6)break;}const _0x21a7db={};return _0x21a7db['context']=_0x137ac6,_0x1a98bf['webgl']=_0x21a7db,_0x137ac6;}function getShaderPrecision(_0x2d11e9,_0x5a4a3a,_0x15bb2d){const _0x258883=_0x2d11e9['getShaderPrecisionFormat'](_0x2d11e9[_0x5a4a3a],_0x2d11e9[_0x15bb2d]);return _0x258883?[_0x258883['rangeMin'],_0x258883['rangeMax'],_0x258883['precision']]:[];}function getConstantsFromPrototype(_0x15ecbb){const _0x3d7bc4=Object['getPrototypeOf'](_0x15ecbb);if(_0x3d7bc4===null)return[];const _0x3a55f5=Object['keys'](_0x3d7bc4);return _0x3a55f5['filter'](isConstantLike);}function isConstantLike(_0x4829e4){return typeof _0x4829e4==='string'&&!_0x4829e4['match'](/[^A-Z0-9_x]/);}function shouldAvoidDebugRendererInfo(){return isGecko();}function shouldAvoidPolygonModeExtensions(){return isChromium()||isWebKit();}function getParamString(_0x3242ca,_0x11ffc0){const _0x5dfb74=_0x3242ca['getParameter'](_0x11ffc0);if(_0x5dfb74===undefined||_0x5dfb74===null)return'';return String(_0x5dfb74);}function isValidParameterGetter(_0x29c0cd){return typeof _0x29c0cd['getParameter']==='function';}function getWebGlCanvas(){try{const _0x5cc38a=document['createElement']('canvas');_0x5cc38a['width']=0x100,_0x5cc38a['height']=0x100;const _0x34d25e=_0x5cc38a['getContext']('webgl')??_0x5cc38a['getContext']('experimental-webgl'),_0x700dc3={};_0x700dc3['image']='',_0x700dc3['dHash']='';if(!_0x34d25e||!(_0x34d25e instanceof WebGLRenderingContext))return _0x700dc3;renderTriangle(_0x34d25e);const _0x1b020a=computeDHash(_0x5cc38a),_0x44c8cb=_0x5cc38a['toDataURL'](),_0x1540f7=_0x5cc38a['toDataURL']();if(_0x44c8cb!==_0x1540f7){const _0x39445c={};return _0x39445c['image']='unstable',_0x39445c['dHash']=_0x1b020a,_0x39445c;}const _0x59412e={};return _0x59412e['image']=_0x44c8cb,_0x59412e['dHash']=_0x1b020a,_0x59412e;}catch{const _0x1fdb09={};return _0x1fdb09['image']='',_0x1fdb09['dHash']='',_0x1fdb09;}}function renderTriangle(_0x465fe1){_0x465fe1['clearColor'](0x0,0x0,0x1,0x1);const _0x5446e7=_0x465fe1['createProgram']();if(_0x5446e7===null)return;const _0x27a34e=_0x5446e7;function _0x5536d6(_0x53f03c,_0x1e3333){const _0x4e1686=_0x465fe1['createShader'](_0x53f03c);if(_0x4e1686===null)return;_0x465fe1['shaderSource'](_0x4e1686,_0x1e3333),_0x465fe1['compileShader'](_0x4e1686),_0x465fe1['attachShader'](_0x27a34e,_0x4e1686);}_0x5536d6(_0x465fe1['VERTEX_SHADER'],'attribute\x20vec2\x20p;uniform\x20float\x20t;void\x20main(){float\x20s=sin(t);float\x20c=cos(t);gl_Position=vec4(p*mat2(c,s,-s,c),1,1);}'),_0x5536d6(_0x465fe1['FRAGMENT_SHADER'],'void\x20main(){gl_FragColor=vec4(1,0,0,1);}'),_0x465fe1['linkProgram'](_0x5446e7),_0x465fe1['useProgram'](_0x5446e7),_0x465fe1['enableVertexAttribArray'](0x0);const _0x1cbfa5=_0x465fe1['getUniformLocation'](_0x5446e7,'t'),_0x5cc39c=_0x465fe1['createBuffer']();_0x465fe1['bindBuffer'](_0x465fe1['ARRAY_BUFFER'],_0x5cc39c),_0x465fe1['bufferData'](_0x465fe1['ARRAY_BUFFER'],new Float32Array([0x0,0x1,-0x1,-0x1,0x1,-0x1]),_0x465fe1['STATIC_DRAW']),_0x465fe1['vertexAttribPointer'](0x0,0x2,_0x465fe1['FLOAT'],![],0x0,0x0),_0x465fe1['clear'](_0x465fe1['COLOR_BUFFER_BIT']),_0x465fe1['uniform1f'](_0x1cbfa5,3.65),_0x465fe1['drawArrays'](_0x465fe1['TRIANGLES'],0x0,0x3);}const GPU_LIMIT_NAMES=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','minUniformBufferOffsetAlignment','minStorageBufferOffsetAlignment','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderComponents','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension','maxBindGroupsPlusVertexBuffers','maxStorageBuffersInFragmentStage','maxStorageBuffersInVertexStage','maxStorageTexturesInFragmentStage','maxStorageTexturesInVertexStage'];async function getAdapterInfo(_0x4771e6){const _0x455f5a=_0x4771e6['info'];if(_0x455f5a!==null&&_0x455f5a!==undefined)return _0x455f5a;const _0x32c615=_0x4771e6['requestAdapterInfo'];if(typeof _0x32c615==='function')try{return await _0x32c615['call'](_0x4771e6);}catch{return null;}return null;}async function getWebGlExtended(){try{const _0x25512a=navigator['gpu'];if(_0x25512a===undefined||_0x25512a===null||typeof _0x25512a!=='object')return null;const _0x28c7c7=_0x25512a['requestAdapter'];if(typeof _0x28c7c7!=='function')return null;let _0x2e20fb=null;try{_0x2e20fb=await _0x28c7c7['call'](_0x25512a);}catch{return null;}if(!_0x2e20fb)return null;const _0x1512ed=_0x2e20fb['limits'],_0x495759=[];for(const _0x2ae9cc of GPU_LIMIT_NAMES){if(_0x1512ed&&_0x2ae9cc in _0x1512ed){const _0x3b8a7f=_0x1512ed[_0x2ae9cc];_0x495759['push'](typeof _0x3b8a7f==='number'?_0x3b8a7f:null);}else _0x495759['push'](null);}const _0x55c25a=await getAdapterInfo(_0x2e20fb);let _0x148239=null,_0x345af8=null;_0x55c25a!==null&&(_0x148239=typeof _0x55c25a['description']==='string'?_0x55c25a['description']:null,_0x345af8=typeof _0x55c25a['device']==='string'?_0x55c25a['device']:null);const _0x8761a2='isFallbackAdapter'in _0x2e20fb?Boolean(_0x2e20fb['isFallbackAdapter']):null,_0x58844d={};return _0x58844d['ds']=_0x148239,_0x58844d['dv']=_0x345af8,_0x58844d['f']=_0x8761a2,_0x58844d['l']=_0x495759,_0x58844d;}catch{return null;}}const SIZE=0x43,LAT_BANDS=0x32,LON_BANDS=0x32,RADIUS=0x2,VERT_SHADER='\x0aattribute\x20vec3\x20aPosition;\x0aattribute\x20vec3\x20aNormal;\x0auniform\x20vec4\x20uLightPos;\x0auniform\x20vec3\x20uKd;\x0auniform\x20vec3\x20uLd;\x0auniform\x20mat4\x20uMVMatrix;\x0auniform\x20mat4\x20uMVPMatrix;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20vec3\x20n\x20=\x20normalize(aNormal);\x0a\x20\x20vec4\x20pos\x20=\x20uMVMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a\x20\x20vec3\x20s\x20=\x20normalize(vec3(uLightPos\x20-\x20pos));\x0a\x20\x20vLight\x20=\x20uLd\x20*\x20uKd\x20*\x20max(dot(s,\x20n),\x200.0);\x0a\x20\x20gl_Position\x20=\x20uMVPMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a}\x0a',FRAG_SHADER='\x0aprecision\x20mediump\x20float;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20gl_FragColor\x20=\x20vec4(vLight,\x201.0);\x0a}\x0a';function getWebGlSphere(){try{const _0x12b875=document['createElement']('canvas');_0x12b875['width']=SIZE,_0x12b875['height']=SIZE;const _0x10975b=_0x12b875['getContext']('webgl')??_0x12b875['getContext']('experimental-webgl');if(!_0x10975b)return null;const _0x4b1425=buildProgram(_0x10975b);if(!_0x4b1425)return null;const _0x46a884=buildSphere();renderSphere(_0x10975b,_0x4b1425,_0x46a884);const _0x1dea93=_0x12b875['toDataURL'](),_0x35abc5=_0x12b875['toDataURL']();if(_0x1dea93!==_0x35abc5)return null;return fnv1a(_0x1dea93);}catch{return null;}}function buildProgram(_0x4e8648){const _0xf5faa2=_0x4e8648['createProgram'](),_0x4c5092=_0x4e8648['createShader'](_0x4e8648['VERTEX_SHADER']),_0x25ef64=_0x4e8648['createShader'](_0x4e8648['FRAGMENT_SHADER']);if(_0x4c5092===null||_0x25ef64===null)return null;_0x4e8648['shaderSource'](_0x4c5092,VERT_SHADER),_0x4e8648['compileShader'](_0x4c5092),_0x4e8648['attachShader'](_0xf5faa2,_0x4c5092),_0x4e8648['shaderSource'](_0x25ef64,FRAG_SHADER),_0x4e8648['compileShader'](_0x25ef64),_0x4e8648['attachShader'](_0xf5faa2,_0x25ef64),_0x4e8648['linkProgram'](_0xf5faa2);if(_0x4e8648['getProgramParameter'](_0xf5faa2,_0x4e8648['LINK_STATUS'])!==!![])return null;return _0xf5faa2;}function buildSphere(){const _0x2c9420=[],_0x4cae6c=[],_0x24b647=[];for(let _0x1aa886=0x0;_0x1aa886<=LAT_BANDS;_0x1aa886++){const _0x3b25c6=_0x1aa886*Math['PI']/LAT_BANDS,_0x2d7ac8=Math['sin'](_0x3b25c6),_0x1871d1=Math['cos'](_0x3b25c6);for(let _0x314ef=0x0;_0x314ef<=LON_BANDS;_0x314ef++){const _0x49baaa=_0x314ef*0x2*Math['PI']/LON_BANDS,_0x36f667=_0x2d7ac8*Math['cos'](_0x49baaa),_0x74c603=_0x1871d1,_0x115349=_0x2d7ac8*Math['sin'](_0x49baaa);_0x4cae6c['push'](_0x36f667,_0x74c603,_0x115349),_0x2c9420['push'](_0x36f667*RADIUS,_0x74c603*RADIUS,_0x115349*RADIUS);}}for(let _0x84fa2e=0x0;_0x84fa2e<LAT_BANDS;_0x84fa2e++){for(let _0x4375da=0x0;_0x4375da<LON_BANDS;_0x4375da++){const _0x26bfb9=_0x84fa2e*(LON_BANDS+0x1)+_0x4375da,_0x28d052=_0x26bfb9+LON_BANDS+0x1;_0x24b647['push'](_0x26bfb9,_0x28d052,_0x26bfb9+0x1),_0x24b647['push'](_0x28d052,_0x28d052+0x1,_0x26bfb9+0x1);}}return{'vertices':new Float32Array(_0x2c9420),'normals':new Float32Array(_0x4cae6c),'indices':new Uint16Array(_0x24b647)};}function renderSphere(_0x555889,_0x580d98,_0x51f460){_0x555889['useProgram'](_0x580d98),_0x555889['viewport'](0x0,0x0,SIZE,SIZE),_0x555889['clearColor'](0x0,0x0,0x0,0x1),_0x555889['enable'](_0x555889['DEPTH_TEST']),_0x555889['clear'](_0x555889['COLOR_BUFFER_BIT']|_0x555889['DEPTH_BUFFER_BIT']);const _0x1954c9=_0x555889['createBuffer']();_0x555889['bindBuffer'](_0x555889['ARRAY_BUFFER'],_0x1954c9),_0x555889['bufferData'](_0x555889['ARRAY_BUFFER'],_0x51f460['vertices'],_0x555889['STATIC_DRAW']);const _0x1d2104=_0x555889['getAttribLocation'](_0x580d98,'aPosition');_0x555889['enableVertexAttribArray'](_0x1d2104),_0x555889['vertexAttribPointer'](_0x1d2104,0x3,_0x555889['FLOAT'],![],0x0,0x0);const _0x57fa3f=_0x555889['createBuffer']();_0x555889['bindBuffer'](_0x555889['ARRAY_BUFFER'],_0x57fa3f),_0x555889['bufferData'](_0x555889['ARRAY_BUFFER'],_0x51f460['normals'],_0x555889['STATIC_DRAW']);const _0x4736b3=_0x555889['getAttribLocation'](_0x580d98,'aNormal');_0x555889['enableVertexAttribArray'](_0x4736b3),_0x555889['vertexAttribPointer'](_0x4736b3,0x3,_0x555889['FLOAT'],![],0x0,0x0);const _0x1fc047=_0x555889['createBuffer']();_0x555889['bindBuffer'](_0x555889['ELEMENT_ARRAY_BUFFER'],_0x1fc047),_0x555889['bufferData'](_0x555889['ELEMENT_ARRAY_BUFFER'],_0x51f460['indices'],_0x555889['STATIC_DRAW']);const _0x58fefa=Math['PI']/0x6,_0x561477=0x1,_0x1aa549=0.1,_0x4b7ad1=0x64,_0x111621=0x1/Math['tan'](_0x58fefa/0x2),_0x5a499a=new Float32Array([_0x111621/_0x561477,0x0,0x0,0x0,0x0,_0x111621,0x0,0x0,0x0,0x0,(_0x4b7ad1+_0x1aa549)/(_0x1aa549-_0x4b7ad1),-0x1,0x0,0x0,0x2*_0x4b7ad1*_0x1aa549/(_0x1aa549-_0x4b7ad1),0x0]),_0x43b154=new Float32Array([0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,-0xa,0x1]),_0x36de97=multiplyMat4(_0x5a499a,_0x43b154);_0x555889['uniformMatrix4fv'](_0x555889['getUniformLocation'](_0x580d98,'uMVMatrix'),![],_0x43b154),_0x555889['uniformMatrix4fv'](_0x555889['getUniformLocation'](_0x580d98,'uMVPMatrix'),![],_0x36de97),_0x555889['uniform4f'](_0x555889['getUniformLocation'](_0x580d98,'uLightPos'),0xa,0xa,0xa,0x1),_0x555889['uniform3f'](_0x555889['getUniformLocation'](_0x580d98,'uKd'),0.9,0.5,0.3),_0x555889['uniform3f'](_0x555889['getUniformLocation'](_0x580d98,'uLd'),0x1,0x1,0x1),_0x555889['drawElements'](_0x555889['TRIANGLES'],_0x51f460['indices']['length'],_0x555889['UNSIGNED_SHORT'],0x0);}function multiplyMat4(_0x488e74,_0x414054){const _0x32c2ab=new Float32Array(0x10);for(let _0x222731=0x0;_0x222731<0x4;_0x222731++){for(let _0x35f346=0x0;_0x35f346<0x4;_0x35f346++){_0x32c2ab[_0x35f346*0x4+_0x222731]=0x0;for(let _0x5e1d6d=0x0;_0x5e1d6d<0x4;_0x5e1d6d++){_0x32c2ab[_0x35f346*0x4+_0x222731]+=_0x488e74[_0x5e1d6d*0x4+_0x222731]*_0x414054[_0x35f346*0x4+_0x5e1d6d];}}}return _0x32c2ab;}function fnv1a(_0x3360c7){let _0x180306=0x811c9dc5;for(let _0x3b1ba9=0x0;_0x3b1ba9<_0x3360c7['length'];_0x3b1ba9++){_0x180306^=_0x3360c7['charCodeAt'](_0x3b1ba9),_0x180306+=(_0x180306<<0x1)+(_0x180306<<0x4)+(_0x180306<<0x7)+(_0x180306<<0x8)+(_0x180306<<0x18);}return _0x180306>>>0x0;}const DISCRIMINATING_LIMITS=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindGroupsPlusVertexBuffers','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension'];async function getWebGpuSignal(){try{const _0x3e546a=navigator['gpu'];if(!_0x3e546a)return null;const _0xd4dc1b=await _0x3e546a['requestAdapter']();if(!_0xd4dc1b)return null;const _0x3eea10=_0xd4dc1b['info'],_0x364d8d=_0x3eea10?.['vendor']??'',_0x16a1fe=_0x3eea10?.['architecture']??'',_0xde75f8=_0x3eea10?.['device']??'',_0x2915f1=_0x3eea10?.['description']??'',_0x331e05=[];_0xd4dc1b['features']['forEach'](_0x24d862=>_0x331e05['push'](_0x24d862)),_0x331e05['sort']();const _0x107b5a={};for(const _0x5e42c5 of DISCRIMINATING_LIMITS){_0x5e42c5 in _0xd4dc1b['limits']&&(_0x107b5a[_0x5e42c5]=_0xd4dc1b['limits'][_0x5e42c5]);}const _0x407206={};return _0x407206['vendor']=_0x364d8d,_0x407206['architecture']=_0x16a1fe,_0x407206['device']=_0xde75f8,_0x407206['description']=_0x2915f1,_0x407206['features']=_0x331e05,_0x407206['limits']=_0x107b5a,_0x407206;}catch{return null;}}const SHADER='\x0astruct\x20Counter\x20{\x20n:\x20atomic<u32>\x20}\x0a@group(0)\x20@binding(0)\x20var<storage,\x20read_write>\x20g:\x20Counter;\x0a\x0astruct\x20OutBuf\x20{\x20vals:\x20array<atomic<u32>>\x20}\x0a@group(0)\x20@binding(1)\x20var<storage,\x20read_write>\x20out:\x20OutBuf;\x0a\x0astruct\x20Params\x20{\x20limit:\x20u32,\x20_p1:\x20u32,\x20_p2:\x20u32,\x20_p3:\x20u32\x20}\x0a@group(0)\x20@binding(2)\x20var<uniform>\x20params:\x20Params;\x0a\x0aoverride\x20WG_SIZE:\x20u32\x20=\x2064u;\x0a\x0a@compute\x20@workgroup_size(WG_SIZE)\x0afn\x20main(@builtin(workgroup_id)\x20wid:\x20vec3<u32>,\x20@builtin(local_invocation_id)\x20lid:\x20vec3<u32>)\x20{\x0a\x20\x20if\x20(lid.x\x20==\x200u)\x20{\x20atomicStore(&out.vals[wid.x],\x200u);\x20}\x0a\x20\x20workgroupBarrier();\x0a\x20\x20var\x20local:\x20u32\x20=\x200u;\x0a\x20\x20loop\x20{\x0a\x20\x20\x20\x20let\x20prev\x20=\x20atomicAdd(&g.n,\x201u);\x0a\x20\x20\x20\x20if\x20(prev\x20>=\x20params.limit)\x20{\x20break;\x20}\x0a\x20\x20\x20\x20local\x20=\x20local\x20+\x201u;\x0a\x20\x20}\x0a\x20\x20atomicAdd(&out.vals[wid.x],\x20local);\x0a}\x0a',_0x11ee1d={};_0x11ee1d['wgCount']=0x80,_0x11ee1d['wgSize']=0x40;const _0x5e01e1={};_0x5e01e1['wgCount']=0x100,_0x5e01e1['wgSize']=0x40;const _0x2bde4e={};_0x2bde4e['wgCount']=0x80,_0x2bde4e['wgSize']=0x80;const CONFIGS=[_0x11ee1d,_0x5e01e1,_0x2bde4e],LIMIT=0x3d0900,TRIALS=0x3,BINS=0x40;async function getWebGpuContention(){try{if(typeof navigator==='undefined')return null;const _0x5c6194=navigator['gpu'];if(!_0x5c6194)return null;const _0x316ac3=await _0x5c6194['requestAdapter']();if(!_0x316ac3)return null;const _0x122185=await _0x316ac3['requestDevice'](),_0x76b7ae=_0x122185['queue'],_0xd84461={};_0xd84461['code']=SHADER;const _0x5ec5c0=_0x122185['createShaderModule'](_0xd84461),_0x1b027a=await collectDistribution(_0x122185,_0x76b7ae,_0x5ec5c0),_0x43a7d5=await collectDistribution(_0x122185,_0x76b7ae,_0x5ec5c0);_0x122185['destroy']();const _0x462cab=cosine(_0x1b027a,_0x43a7d5);if(_0x462cab<0.8)return null;const _0x1caa58=_0x1b027a['map']((_0x5d7306,_0x10330a)=>(_0x5d7306+_0x43a7d5[_0x10330a])/0x2);return _0x1caa58['map'](_0x24eed4=>Math['round'](_0x24eed4*0x2710)/0x2710);}catch{return null;}}async function collectDistribution(_0x3a66b9,_0x504c05,_0x164024){const _0x41337f=[];for(const _0x5f4d31 of CONFIGS){const _0x29298d=[];for(let _0x2d89ba=0x0;_0x2d89ba<TRIALS;_0x2d89ba++){const _0x5e439f=await runTrial(_0x3a66b9,_0x504c05,_0x164024,_0x5f4d31['wgCount'],_0x5f4d31['wgSize'],LIMIT);_0x29298d['push'](_0x5e439f);}const _0x27fa6a=medianOfTrials(_0x29298d),_0x29f207=normalize(_0x27fa6a),_0x211423=downsample(_0x29f207,BINS);_0x41337f['push'](..._0x211423);}return _0x41337f;}function cosine(_0x1b88dd,_0x10e9a1){let _0x21f3ba=0x0,_0x2edd65=0x0,_0x52326c=0x0;for(let _0x52672d=0x0;_0x52672d<_0x1b88dd['length'];_0x52672d++){_0x21f3ba+=_0x1b88dd[_0x52672d]*_0x10e9a1[_0x52672d],_0x2edd65+=_0x1b88dd[_0x52672d]*_0x1b88dd[_0x52672d],_0x52326c+=_0x10e9a1[_0x52672d]*_0x10e9a1[_0x52672d];}const _0x3a2f5f=Math['sqrt'](_0x2edd65)*Math['sqrt'](_0x52326c);return _0x3a2f5f===0x0?0x0:_0x21f3ba/_0x3a2f5f;}async function runTrial(_0x5b92b9,_0x2da52b,_0x471d37,_0x4c9664,_0x2ce380,_0x29d737){const _0x367c77={};_0x367c77['WG_SIZE']=_0x2ce380;const _0x20bd53={};_0x20bd53['module']=_0x471d37,_0x20bd53['entryPoint']='main',_0x20bd53['constants']=_0x367c77;const _0x5f538a={};_0x5f538a['layout']='auto',_0x5f538a['compute']=_0x20bd53;const _0x52d020=_0x5b92b9['createComputePipeline'](_0x5f538a),_0x54d973=_0x4c9664*0x4,_0xf365af={};_0xf365af['size']=0x4,_0xf365af['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_DST'];const _0x193b94=_0x5b92b9['createBuffer'](_0xf365af),_0x30e303={};_0x30e303['size']=_0x54d973,_0x30e303['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_SRC']|GPUBufferUsage['COPY_DST'];const _0x41ee61=_0x5b92b9['createBuffer'](_0x30e303),_0x1b8c2d={};_0x1b8c2d['size']=0x10,_0x1b8c2d['usage']=GPUBufferUsage['UNIFORM']|GPUBufferUsage['COPY_DST'];const _0x2e18db=_0x5b92b9['createBuffer'](_0x1b8c2d);_0x2da52b['writeBuffer'](_0x193b94,0x0,new Uint32Array([0x0])),_0x2da52b['writeBuffer'](_0x41ee61,0x0,new Uint8Array(_0x54d973)),_0x2da52b['writeBuffer'](_0x2e18db,0x0,new Uint32Array([_0x29d737,0x0,0x0,0x0]));const _0x4fdc11={};_0x4fdc11['buffer']=_0x193b94;const _0x1ebb66={};_0x1ebb66['binding']=0x0,_0x1ebb66['resource']=_0x4fdc11;const _0x5bc2a0={};_0x5bc2a0['buffer']=_0x41ee61;const _0xf78388={};_0xf78388['binding']=0x1,_0xf78388['resource']=_0x5bc2a0;const _0x1bf59a={};_0x1bf59a['buffer']=_0x2e18db;const _0x4c621b={};_0x4c621b['binding']=0x2,_0x4c621b['resource']=_0x1bf59a;const _0x25830a=_0x5b92b9['createBindGroup']({'layout':_0x52d020['getBindGroupLayout'](0x0),'entries':[_0x1ebb66,_0xf78388,_0x4c621b]}),_0x69b222=_0x5b92b9['createCommandEncoder'](),_0x88ffdd=_0x69b222['beginComputePass']();_0x88ffdd['setPipeline'](_0x52d020),_0x88ffdd['setBindGroup'](0x0,_0x25830a),_0x88ffdd['dispatchWorkgroups'](_0x4c9664,0x1,0x1),_0x88ffdd['end']();const _0x2c5c94={};_0x2c5c94['size']=_0x54d973,_0x2c5c94['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x1ad719=_0x5b92b9['createBuffer'](_0x2c5c94);_0x69b222['copyBufferToBuffer'](_0x41ee61,0x0,_0x1ad719,0x0,_0x54d973),_0x2da52b['submit']([_0x69b222['finish']()]),await _0x2da52b['onSubmittedWorkDone'](),await _0x1ad719['mapAsync'](GPUMapMode['READ']);const _0x5eeddc=new Uint32Array(_0x1ad719['getMappedRange']()['slice'](0x0));return _0x1ad719['unmap'](),_0x193b94['destroy'](),_0x41ee61['destroy'](),_0x2e18db['destroy'](),_0x1ad719['destroy'](),Array['from'](_0x5eeddc);}function medianOfTrials(_0xcafe90){const _0x4613e4=_0xcafe90[0x0]['length'],_0x21b9be=new Array(_0x4613e4);for(let _0x354105=0x0;_0x354105<_0x4613e4;_0x354105++){const _0x3f8cd7=_0xcafe90['map'](_0x3d9051=>_0x3d9051[_0x354105])['sort']((_0xc70aea,_0x197969)=>_0xc70aea-_0x197969),_0x44c3ec=Math['floor'](_0x3f8cd7['length']/0x2);_0x21b9be[_0x354105]=_0x3f8cd7['length']%0x2?_0x3f8cd7[_0x44c3ec]:(_0x3f8cd7[_0x44c3ec-0x1]+_0x3f8cd7[_0x44c3ec])/0x2;}return _0x21b9be;}function normalize(_0x46f242){const _0x4b7d6c=_0x46f242['reduce']((_0x3c2dea,_0x51a97a)=>_0x3c2dea+_0x51a97a,0x0)||0x1;return _0x46f242['map'](_0x4241cc=>_0x4241cc/_0x4b7d6c);}function downsample(_0x22beae,_0x86155d){const _0x5596d1=_0x22beae['length'],_0x5759ea=new Array(_0x86155d)['fill'](0x0);for(let _0x32b0d1=0x0;_0x32b0d1<_0x5596d1;_0x32b0d1++){_0x5759ea[Math['floor'](_0x32b0d1*_0x86155d/_0x5596d1)]+=_0x22beae[_0x32b0d1];}const _0x3f090d=_0x5759ea['reduce']((_0x3f1a90,_0x2637e7)=>_0x3f1a90+_0x2637e7,0x0)||0x1;return _0x5759ea['map'](_0x5c2dc6=>_0x5c2dc6/_0x3f090d);}async function getWebRtcDevices(){const _0x55732f=navigator['mediaDevices'];if(typeof navigator==='undefined'||_0x55732f===undefined||typeof _0x55732f['enumerateDevices']!=='function')return undefined;try{const _0x4caf74=await _0x55732f['enumerateDevices']();let _0xec2eea=0x0,_0x504b0c=0x0,_0x2d1746=0x0;const _0x22f2bd=[];for(const _0x496941 of _0x4caf74){_0x22f2bd['push'](_0x496941['kind']);if(_0x496941['kind']==='audioinput')_0xec2eea++;else{if(_0x496941['kind']==='audiooutput')_0x504b0c++;else _0x2d1746++;}}const _0x1815e5=_0x22f2bd['join'](',');let _0x23211c=0x0;for(let _0x5cbffd=0x0;_0x5cbffd<_0x1815e5['length'];_0x5cbffd++){_0x23211c=(_0x23211c<<0x5)-_0x23211c+_0x1815e5['charCodeAt'](_0x5cbffd)|0x0;}return{'audioInputCount':_0xec2eea,'audioOutputCount':_0x504b0c,'videoInputCount':_0x2d1746,'totalCount':_0x4caf74['length'],'kindsHash':(_0x23211c>>>0x0)['toString'](0x10)};}catch{return undefined;}}function getAppVersion(){const _0x258a83=navigator['appVersion'];if(typeof _0x258a83!=='string')throw new Error('navigator.appVersion\x20is\x20undefined');return _0x258a83;}const willPrintConsoleError=isAnyParentCrossOrigin;function getApplePayState(){const {ApplePaySession:_0x54fb0d}=window;if(typeof _0x54fb0d?.['canMakePayments']!=='function')return-0x1;if(willPrintConsoleError())return-0x3;try{return _0x54fb0d['canMakePayments']()?0x1:0x0;}catch(_0x244911){return getStateFromError(_0x244911);}}function getStateFromError(_0xe51880){if(_0xe51880 instanceof Error&&_0xe51880['name']==='InvalidAccessError'&&/\bfrom\b.*\binsecure\b/i['test'](_0xe51880['message']))return-0x2;throw _0xe51880;}let table=null;function getTable(){if(table)return table;table=new Uint32Array(0x100);for(let _0x339989=0x0;_0x339989<0x100;_0x339989++){let _0x54371e=_0x339989;for(let _0x32ad05=0x0;_0x32ad05<0x8;_0x32ad05++)_0x54371e=_0x54371e&0x1?0xedb88320^_0x54371e>>>0x1:_0x54371e>>>0x1;table[_0x339989]=_0x54371e;}return table;}function crc32(_0x238ce8){const _0x54bfcb=getTable();let _0x21269d=0xffffffff;for(let _0x29207e=0x0;_0x29207e<_0x238ce8['length'];_0x29207e++){_0x21269d=_0x54bfcb[(_0x21269d^_0x238ce8['charCodeAt'](_0x29207e))&0xff]^_0x21269d>>>0x8;}return(_0x21269d^0xffffffff)>>>0x0;}function summarizePrototype(_0x4f5094){const _0x3b9dd1={};_0x3b9dd1['count']=0x0,_0x3b9dd1['hash']=0x0;if(!_0x4f5094)return _0x3b9dd1;try{const _0x42b90a=Object['getOwnPropertyNames'](_0x4f5094)['sort'](),_0x12a404=_0x42b90a['join'](',');return{'count':_0x42b90a['length'],'hash':crc32(_0x12a404)};}catch{const _0x510432={};return _0x510432['count']=0x0,_0x510432['hash']=0x0,_0x510432;}}function isNativeFunction(_0x3acf2f){try{return typeof _0x3acf2f==='function'&&/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x3acf2f));}catch{return![];}}function getBomEnumeration(){try{const _0x320a1b=summarizePrototype(Navigator['prototype']),_0x118835=summarizePrototype(Screen['prototype']),_0x550661=summarizePrototype(HTMLElement['prototype']),_0x12d7b9=summarizePrototype(Document['prototype']),_0x1eb5b6={};_0x1eb5b6['count']=0x0,_0x1eb5b6['hash']=0x0;let _0x4ed235=_0x1eb5b6;typeof Performance!=='undefined'&&(_0x4ed235=summarizePrototype(Performance['prototype']));const _0x1fef58=_0x320a1b['count']+_0x118835['count']+_0x550661['count']+_0x12d7b9['count']+_0x4ed235['count'],_0x5b0895=window,_0x8268a='chrome'in window&&typeof _0x5b0895['chrome']==='object',_0x2134ef=typeof navigator['brave']==='object',_0x4ae9d4='__playwright'in _0x5b0895||'__selenium_unwrapped'in _0x5b0895||'__webdriver_evaluate'in _0x5b0895||'__nightmare'in _0x5b0895||'_phantom'in _0x5b0895||'__lastWatirAlert'in _0x5b0895;let _0x4aa19d=!![];try{const _0x432c8b=navigator['plugins'];_0x4aa19d=_0x432c8b['length']===PluginArray['prototype']['length']||Object['getOwnPropertyNames'](PluginArray['prototype'])['includes']('length');}catch{_0x4aa19d=![];}let _0x24a9ca=!![];try{const _0x3d7688=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0x3d7688?.['get']&&(_0x24a9ca=isNativeFunction(_0x3d7688['get']));}catch{_0x24a9ca=![];}const _0x2712f1=typeof SharedWorker!=='undefined',_0xa77b6e=typeof Notification!=='undefined',_0x2c15fa={};_0x2c15fa['hasChrome']=_0x8268a,_0x2c15fa['hasBraveShield']=_0x2134ef,_0x2c15fa['hasAutomation']=_0x4ae9d4,_0x2c15fa['pluginConsistent']=_0x4aa19d,_0x2c15fa['webdriverNative']=_0x24a9ca,_0x2c15fa['hasSharedWorker']=_0x2712f1,_0x2c15fa['hasNotification']=_0xa77b6e;const _0xe161c={};return _0xe161c['nav']=_0x320a1b,_0xe161c['scr']=_0x118835,_0xe161c['html']=_0x550661,_0xe161c['doc']=_0x12d7b9,_0xe161c['perf']=_0x4ed235,_0xe161c['total']=_0x1fef58,_0xe161c['markers']=_0x2c15fa,_0xe161c;}catch{return null;}}function getColorDepth(){return window['screen']['colorDepth'];}function getColorScheme(){if(matchMedia('(prefers-color-scheme:\x20dark)')['matches'])return!![];if(matchMedia('(prefers-color-scheme:\x20light)')['matches'])return![];return null;}function getConnectionInfo(){try{const _0x60fa17=navigator['connection'];if(!_0x60fa17)return null;const _0x16a55f=Object['getOwnPropertyDescriptor'](_0x60fa17,Symbol['toStringTag']);if(_0x16a55f?.['configurable']===!![])return!![];for(let _0x3c94c2=0x0;_0x3c94c2<_0x60fa17['length'];_0x3c94c2++){const _0x5d3674=Object['getOwnPropertyDescriptor'](_0x60fa17,_0x3c94c2);if(_0x5d3674!==undefined&&(_0x5d3674['configurable']===!![]||_0x5d3674['enumerable']===!![]))return!![];}return![];}catch{return null;}}function getContrastPreference(){if(doesMatch$4('no-preference'))return 0x0;if(doesMatch$4('high')||doesMatch$4('more'))return 0x1;if(doesMatch$4('low')||doesMatch$4('less'))return-0x1;if(doesMatch$4('forced'))return 0xa;return undefined;}function doesMatch$4(_0x199f33){return matchMedia('(prefers-contrast:\x20'+_0x199f33+')')['matches'];}function areCookiesEnabled(){const _0xe7d14c=document;try{_0xe7d14c['cookie']='cookietest=1;\x20SameSite=Strict;';const _0xe910f3=_0xe7d14c['cookie']['indexOf']('cookietest=')!==-0x1;return _0xe7d14c['cookie']='cookietest=1;\x20SameSite=Strict;\x20expires=Thu,\x2001-Jan-1970\x2000:00:01\x20GMT',_0xe910f3;}catch{return![];}}function getDateTimeLocale(){const _0x15f1aa=window['Intl'];if(_0x15f1aa===undefined)return-0x1;const _0x2dee45=_0x15f1aa['DateTimeFormat'];if(_0x2dee45===undefined)return-0x2;const _0x1b15d7=_0x2dee45()['resolvedOptions']()['locale'];if(!_0x1b15d7&&_0x1b15d7!=='')return-0x3;return _0x1b15d7;}function getDeviceMemory(){return replaceNaN(toFloat(navigator['deviceMemory']),undefined);}function getDevicePixelRatio(){const _0x56f93f=window['devicePixelRatio'];return _0x56f93f??null;}function getDoNotTrack(){const _0x29bd2f=navigator['doNotTrack'];return _0x29bd2f??null;}function getDocumentAttributes(){try{return document['documentElement']['getAttributeNames']();}catch{return[];}}function getDocumentFocus(){try{return document['hasFocus']();}catch{return![];}}async function getFileSystemAccess(){try{const _0x53a01d=navigator['storage'];if(_0x53a01d===undefined||typeof _0x53a01d['getDirectory']!=='function')return undefined;return await _0x53a01d['getDirectory'](),!![];}catch{return![];}}async function getFilesystemApi(){if(isChromium()&&isChromium86OrNewer())return null;const _0x309b0f=window;if(typeof _0x309b0f['webkitRequestFileSystem']!=='function')return null;try{return await Promise['race']([new Promise(_0x582d70=>{const _0x361dce=_0x309b0f['webkitRequestFileSystem'];_0x361dce!==undefined&&_0x361dce(0x0,0x1,()=>_0x582d70(!![]),()=>_0x582d70(![]));}),new Promise(_0x443f45=>setTimeout(()=>_0x443f45(null),0x64))]);}catch{return null;}}function areColorsForced(){if(doesMatch$3('active'))return!![];if(doesMatch$3('none'))return![];return undefined;}function doesMatch$3(_0x2341cf){return matchMedia('(forced-colors:\x20'+_0x2341cf+')')['matches'];}async function getFormControlFont(){if(!isGecko())return undefined;return getIframePool()['execute']((_0x1fd26e,_0x54769b)=>{const _0x130652=_0x54769b['document'],_0x3e917=_0x130652['createElement']('input');_0x3e917['type']='radio',_0x130652['body']['appendChild'](_0x3e917);const _0x5f27e5=_0x54769b['getComputedStyle'](_0x3e917)['getPropertyValue']('font-family');return _0x130652['body']['removeChild'](_0x3e917),_0x5f27e5||undefined;});}function getHardwareConcurrency(){const _0x5c8198=getUnstableHardwareConcurrency();if(_0x5c8198!==undefined&&isGecko()&&isGecko143OrNewer())return _0x5c8198>=0x8?0x8:0x4;return _0x5c8198;}function getUnstableHardwareConcurrency(){return replaceNaN(toInt(navigator['hardwareConcurrency']),undefined);}function isHDR(){if(doesMatch$2('high'))return!![];if(doesMatch$2('standard'))return![];return undefined;}function doesMatch$2(_0x49d4dd){return matchMedia('(dynamic-range:\x20'+_0x49d4dd+')')['matches'];}function getIndexedDB(){try{return window['indexedDB']!==undefined;}catch{return!![];}}async function getIndexedDbBlob(){if(typeof indexedDB==='undefined')return null;try{const _0x21fda0=await Promise['race']([new Promise(_0x6c87c2=>{try{const _0x2c7cd2='mw_blob_test',_0x5624d5='store',_0x42d938=indexedDB['deleteDatabase'](_0x2c7cd2);_0x42d938['onsuccess']=_0x27633f,_0x42d938['onerror']=_0x27633f;function _0x27633f(){try{const _0x328735=indexedDB['open'](_0x2c7cd2,0x1);_0x328735['onupgradeneeded']=()=>{try{_0x328735['result']['createObjectStore'](_0x5624d5);}catch{_0x6c87c2(null);}},_0x328735['onsuccess']=()=>{try{const _0x4c4ea5=_0x328735['result'],_0x3e485e=_0x4c4ea5['transaction'](_0x5624d5,'readwrite'),_0x2263b4=_0x3e485e['objectStore'](_0x5624d5);try{const _0x5844ce=_0x2263b4['put'](new Blob(['test']),'blob_key');_0x5844ce['onsuccess']=()=>{_0x4c4ea5['close']();try{indexedDB['deleteDatabase'](_0x2c7cd2);}catch{}_0x6c87c2(![]);},_0x5844ce['onerror']=()=>{_0x4c4ea5['close']();try{indexedDB['deleteDatabase'](_0x2c7cd2);}catch{}const _0x2abb46=_0x5844ce['error']?.['message']??'';_0x6c87c2(_0x2abb46['includes']('not\x20yet\x20supported')||_0x2abb46['includes']('not\x20supported'));};}catch(_0xc0f5ab){_0x4c4ea5['close']();try{indexedDB['deleteDatabase'](_0x2c7cd2);}catch{}if(_0xc0f5ab instanceof DOMException){const _0x19a34e=_0xc0f5ab['message'];_0x6c87c2(_0x19a34e['includes']('not\x20yet\x20supported')||_0x19a34e['includes']('not\x20supported'));}else _0x6c87c2(null);}}catch{_0x6c87c2(null);}},_0x328735['onerror']=()=>{_0x6c87c2(null);};}catch{_0x6c87c2(null);}}}catch{_0x6c87c2(null);}}),new Promise(_0xcddb29=>setTimeout(()=>_0xcddb29(null),0x3e8))]);return _0x21fda0;}catch{return null;}}function areColorsInverted(){if(doesMatch$1('inverted'))return!![];if(doesMatch$1('none'))return![];return undefined;}function doesMatch$1(_0x2e4b64){return matchMedia('(inverted-colors:\x20'+_0x2e4b64+')')['matches'];}function getLanguages(){const _0x1322e8=navigator,_0x1da190=[],_0x122a54=_0x1322e8['language']??_0x1322e8['userLanguage']??_0x1322e8['browserLanguage']??_0x1322e8['systemLanguage'];_0x122a54!==undefined&&_0x1da190['push']([_0x122a54]);if(Array['isArray'](_0x1322e8['languages']))!(isChromium()&&isChromium86OrNewer())&&_0x1da190['push'](_0x1322e8['languages']);else{if(typeof _0x1322e8['languages']==='string'){const _0x169178=_0x1322e8['languages'];_0x169178!==''&&_0x1da190['push'](_0x169178['split'](','));}}return _0x1da190;}function getLocalStorage(){try{return window['localStorage']!==undefined;}catch{return!![];}}function getLocaleCurrency(){try{const _0x57ac54=navigator['language'];if(!_0x57ac54)return null;const _0x1b5539={};_0x1b5539['style']='currency',_0x1b5539['currency']='USD';const _0x2d98ad=0x1['toLocaleString'](_0x57ac54,_0x1b5539),_0x34d269={};_0x34d269['style']='currency',_0x34d269['currency']='USD';const _0x9f57da=0x1['toLocaleString'](undefined,_0x34d269),_0x111d23={};return _0x111d23['match']=_0x2d98ad===_0x9f57da,_0x111d23['explicit']=_0x2d98ad,_0x111d23['implicit']=_0x9f57da,_0x111d23;}catch{return null;}}const _0x10d660={};_0x10d660['any-hover']=['hover','none'],_0x10d660['any-pointer']=['none','coarse','fine'],_0x10d660['pointer']=['none','coarse','fine'],_0x10d660['hover']=['hover','none'],_0x10d660['update']=['fast','slow'],_0x10d660['scripting']=['none','initial-only','enabled'];const queries=_0x10d660;function getMediaQueries(){if(typeof matchMedia==='undefined')return{};const _0x15f693={};for(const [_0x597e77,_0x24d282]of Object['entries'](queries)){for(const _0x298e1d of _0x24d282){if(matchMedia('('+_0x597e77+':\x20'+_0x298e1d+')')['matches']){_0x15f693[_0x597e77]=_0x298e1d;break;}}}return _0x15f693;}function getMimeTypes(){try{const _0x5c76b4=navigator['mimeTypes'];if(_0x5c76b4===undefined)return undefined;let _0x37db9d=Object['getPrototypeOf'](_0x5c76b4)===MimeTypeArray['prototype'];for(let _0x361ca7=0x0;_0x361ca7<_0x5c76b4['length'];_0x361ca7++){_0x37db9d&&(_0x37db9d=Object['getPrototypeOf'](_0x5c76b4[_0x361ca7])===MimeType['prototype']);}return _0x37db9d;}catch{return undefined;}}function getNavigatorLanguages(){const _0x508511=navigator['languages'];return _0x508511??null;}function getNetworkRTT(){const _0x52db88=navigator;return _0x52db88['connection']?.['rtt']??undefined;}function getOsCpu(){return navigator['oscpu'];}function isPdfViewerEnabled(){return navigator['pdfViewerEnabled'];}function getPerformanceMemory(){if(typeof performance==='undefined')return undefined;const _0x1e4481=performance['memory'];if(_0x1e4481===undefined||typeof _0x1e4481['jsHeapSizeLimit']!=='number')return undefined;return _0x1e4481['jsHeapSizeLimit'];}function getPerformanceResolution(){const _0x1bf371=window['performance'];if(typeof _0x1bf371['now']!=='function')return null;let _0x3ca2cc=0x1,_0x21f28a=0x1,_0x3de885=_0x1bf371['now'](),_0x1e8b68=_0x3de885;for(let _0x304a9b=0x0;_0x304a9b<0xc350;_0x304a9b++){_0x3de885=_0x1e8b68,_0x1e8b68=_0x1bf371['now']();if(_0x3de885<_0x1e8b68){const _0x1a8c65=_0x1e8b68-_0x3de885;if(_0x1a8c65>_0x3ca2cc){if(_0x1a8c65<_0x21f28a)_0x21f28a=_0x1a8c65;}else _0x1a8c65<_0x3ca2cc&&(_0x21f28a=_0x3ca2cc,_0x3ca2cc=_0x1a8c65);}}return[_0x3ca2cc,_0x21f28a];}const permissionNames=['accelerometer','ambient-light-sensor','background-fetch','background-sync','bluetooth','camera','clipboard-read','clipboard-write','display-capture','geolocation','gyroscope','local-fonts','magnetometer','microphone','midi','nfc','notifications','payment-handler','persistent-storage','push','screen-wake-lock','speaker-selection','storage-access','window-management'];async function getPermissions(){if(!('permissions'in navigator)||typeof navigator['permissions']['query']!=='function')return{};const _0x2156eb=0x3,_0x43b232=[];for(let _0xeb6919=0x0;_0xeb6919<_0x2156eb;_0xeb6919++){const _0x56f122={},_0x42c623=permissionNames['map'](async _0x40de91=>{try{const _0xe61177={};_0xe61177['name']=_0x40de91;const _0x1b6bc1=await navigator['permissions']['query'](_0xe61177);_0x56f122[_0x40de91]=_0x1b6bc1['state'];}catch{}});await Promise['all'](_0x42c623),_0x43b232['push'](_0x56f122);}const _0x318cab={},_0x3a4b35=new Set(_0x43b232['flatMap'](_0x18fb07=>Object['keys'](_0x18fb07)));for(const _0xd9e011 of _0x3a4b35){const _0x2ad36e={};for(const _0x14e465 of _0x43b232){const _0x29aefe=_0x14e465[_0xd9e011];_0x29aefe&&(_0x2ad36e[_0x29aefe]=(_0x2ad36e[_0x29aefe]||0x0)+0x1);}let _0x229483='',_0x31cace=0x0;for(const [_0x28c9d6,_0x141896]of Object['entries'](_0x2ad36e)){_0x141896>_0x31cace&&(_0x229483=_0x28c9d6,_0x31cace=_0x141896);}_0x229483&&(_0x318cab[_0xd9e011]=_0x229483);}return _0x318cab;}function getPlatform(){const {platform:_0x34ea09}=navigator;if(_0x34ea09==='MacIntel'){if(isWebKit()&&!isDesktopWebKit())return isIPad()?'iPad':'iPhone';}return _0x34ea09;}function getPluginPropsEnum(){if(!('plugins'in navigator))return undefined;const _0x391bef=navigator['plugins'];let _0x1c2d8f=Object['getPrototypeOf'](_0x391bef)===PluginArray['prototype'];for(let _0x2b1671=0x0;_0x2b1671<_0x391bef['length'];_0x2b1671++){_0x1c2d8f&&(_0x1c2d8f=Object['getPrototypeOf'](_0x391bef[_0x2b1671])===Plugin['prototype']);}return _0x1c2d8f;}function getPlugins(){if(!('plugins'in navigator))return undefined;const _0x45df2d=navigator['plugins'],_0x325087=[];for(let _0x3bf2d1=0x0;_0x3bf2d1<_0x45df2d['length'];++_0x3bf2d1){const _0x33a5d3=_0x45df2d['item'](_0x3bf2d1);if(_0x33a5d3===null)continue;const _0x2e7d25=[];for(let _0x49a978=0x0;_0x49a978<_0x33a5d3['length'];++_0x49a978){const _0x144279=_0x33a5d3[_0x49a978],_0x1595c7={};_0x1595c7['type']=_0x144279['type'],_0x1595c7['suffixes']=_0x144279['suffixes'],_0x2e7d25['push'](_0x1595c7);}const _0x3adbea={};_0x3adbea['name']=_0x33a5d3['name'],_0x3adbea['description']=_0x33a5d3['description'],_0x3adbea['mimeTypes']=_0x2e7d25,_0x325087['push'](_0x3adbea);}return _0x325087;}function getPluginsArray(){try{if(!('plugins'in navigator))return null;if(typeof PluginArray==='undefined')return null;return navigator['plugins']instanceof PluginArray;}catch{return null;}}function getPluginsCount(){if(!('plugins'in navigator))throw new Error('navigator.plugins\x20is\x20undefined');const _0x3e2c36=navigator['plugins'];if(typeof _0x3e2c36['length']!=='number')throw new Error('navigator.plugins.length\x20is\x20undefined');return _0x3e2c36['length'];}function getProductSub(){if(!('productSub'in navigator))throw new Error('navigator.productSub\x20is\x20undefined');return navigator['productSub'];}function isMotionReduced(){if(doesMatch('reduce'))return!![];if(doesMatch('no-preference'))return![];return undefined;}function doesMatch(_0x35c2d0){return matchMedia('(prefers-reduced-motion:\x20'+_0x35c2d0+')')['matches'];}const screenFrameCheckInterval=0x9c4,roundingPrecision=0xa;let screenFrameBackup,screenFrameSizeTimeoutId;function watchScreenFrame(){if(screenFrameSizeTimeoutId!==undefined)return;const _0x5e7b2a=()=>{const _0x25bedb=getCurrentScreenFrame();isFrameSizeNull(_0x25bedb)?screenFrameSizeTimeoutId=setTimeout(_0x5e7b2a,screenFrameCheckInterval):(screenFrameBackup=_0x25bedb,screenFrameSizeTimeoutId=undefined);};_0x5e7b2a();}function getUnstableScreenFrame(){return watchScreenFrame(),async()=>{let _0x32c467=getCurrentScreenFrame();if(isFrameSizeNull(_0x32c467)){if(screenFrameBackup)return[...screenFrameBackup];getFullscreenElement()&&(await exitFullscreen(),_0x32c467=getCurrentScreenFrame());}return!isFrameSizeNull(_0x32c467)&&(screenFrameBackup=_0x32c467),_0x32c467;};}function getScreenFrame(){const _0x3b5f20=isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit(),_0x189d74=isGecko()&&isGecko143OrNewer();if(_0x3b5f20||_0x189d74)return()=>Promise['resolve'](undefined);const _0x568f27=getUnstableScreenFrame();return async()=>{const _0x4e1235=await _0x568f27(),_0x18efe3=_0x61143c=>_0x61143c===null?null:round$1(_0x61143c,roundingPrecision);return[_0x18efe3(_0x4e1235[0x0]),_0x18efe3(_0x4e1235[0x1]),_0x18efe3(_0x4e1235[0x2]),_0x18efe3(_0x4e1235[0x3])];};}function getCurrentScreenFrame(){const _0x4407ed=screen;return[replaceNaN(toFloat(_0x4407ed['availTop']),null),replaceNaN(toFloat(_0x4407ed['width'])-toFloat(_0x4407ed['availWidth'])-replaceNaN(toFloat(_0x4407ed['availLeft']),0x0),null),replaceNaN(toFloat(_0x4407ed['height'])-toFloat(_0x4407ed['availHeight'])-replaceNaN(toFloat(_0x4407ed['availTop']),0x0),null),replaceNaN(toFloat(_0x4407ed['availLeft']),null)];}function isFrameSizeNull(_0x362b64){for(let _0x52324b=0x0;_0x52324b<0x4;++_0x52324b){if(_0x362b64[_0x52324b]!==null&&_0x362b64[_0x52324b]!==0x0)return![];}return!![];}async function getScreenIframe(){try{return await getIframePool()['execute']((_0x54b19f,_0x5e3a9b)=>{const _0x3aaf99=_0x5e3a9b['screen'],_0xe2993d=_0x178139=>{const _0x5b4030=parseInt(_0x178139);return typeof _0x5b4030==='number'&&isNaN(_0x5b4030)?-0x1:_0x5b4030;};return{'w':_0xe2993d(_0x3aaf99['width']),'h':_0xe2993d(_0x3aaf99['height'])};});}catch{return null;}}function getScreenResolution(){if(isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit())return undefined;return getUnstableScreenResolution();}function getUnstableScreenResolution(){const _0x2fe24c=screen,_0x17741a=_0x34b815=>replaceNaN(toInt(_0x34b815),null),_0x55efc2=[_0x17741a(_0x2fe24c['width']),_0x17741a(_0x2fe24c['height'])];return _0x55efc2['sort']()['reverse'](),_0x55efc2;}const MIN_EVENTS=0x5,velocities=[];let lastY=0x0,lastTime=0x0,observing$1=![];function startObserving$1(){if(observing$1||typeof window==='undefined')return;observing$1=!![];const _0xbadba={};_0xbadba['passive']=!![],window['addEventListener']('scroll',()=>{const _0x349209=performance['now'](),_0xd64d68=window['scrollY'];if(lastTime>0x0){const _0x519089=_0x349209-lastTime;if(_0x519089>0x0&&_0x519089<0x1f4){const _0x48897c=Math['abs'](_0xd64d68-lastY)/(_0x519089/0x3e8);velocities['push'](Math['round'](_0x48897c));}}lastY=_0xd64d68,lastTime=_0x349209;},_0xbadba);}function getScrollBehavior(){startObserving$1();if(velocities['length']<MIN_EVENTS)return Promise['resolve'](null);const _0x5c99a7=[...velocities]['sort']((_0x2de760,_0x3467c1)=>_0x2de760-_0x3467c1),_0x48d7b2=_0x5c99a7[Math['floor'](_0x5c99a7['length']*0.5)]??0x0,_0x5b2d24=_0x5c99a7[Math['floor'](_0x5c99a7['length']*0.9)]??0x0,_0x2c8d03={};return _0x2c8d03['p50']=_0x48d7b2,_0x2c8d03['p90']=_0x5b2d24,_0x2c8d03['count']=_0x5c99a7['length'],Promise['resolve'](_0x2c8d03);}async function getScrollbarWidth(){return getIframePool()['execute']((_0x579afe,_0x56176e)=>{const _0x32ce1a=_0x56176e['document'],_0x31e3d7=_0x32ce1a['createElement']('div');_0x31e3d7['style']['width']='100px',_0x31e3d7['style']['height']='100px',_0x31e3d7['style']['overflow']='scroll',_0x31e3d7['style']['visibility']='hidden',_0x32ce1a['body']['appendChild'](_0x31e3d7);const _0x13aa9c=_0x31e3d7['offsetWidth']===_0x31e3d7['clientWidth'];return _0x32ce1a['body']['removeChild'](_0x31e3d7),_0x13aa9c;});}function getSessionStorage(){try{const _0x155348=window['sessionStorage'];return _0x155348!==null&&_0x155348!==undefined;}catch{return!![];}}async function getStorageEstimate(){const _0x543835=navigator['storage'];if(_0x543835===undefined||typeof _0x543835['estimate']!=='function')return null;try{const _0x5d4637=await Promise['race']([_0x543835['estimate'](),new Promise((_0x49ccdf,_0x5da96d)=>setTimeout(()=>_0x5da96d(new Error('timeout')),0x1f4))]);if(_0x5d4637['quota']!==undefined&&_0x5d4637['quota']>0x0)return Math['round'](_0x5d4637['quota']/(0x64*0x400*0x400))*(0x64*0x400*0x400);return null;}catch{return null;}}async function getStorageQuota(){const _0x1a3f16=navigator['storage'];if(_0x1a3f16===undefined)return null;const _0x35bef0=_0x1a3f16['getDirectory'];if(typeof _0x35bef0!=='function')return null;try{const _0x460605=await Promise['race']([_0x1a3f16['getDirectory']()['then'](()=>'',_0x417e88=>_0x417e88 instanceof Error?_0x417e88['message']:String(_0x417e88)),new Promise((_0x3ea260,_0x33e9da)=>setTimeout(()=>_0x33e9da(new Error('timeout')),0xfa))]);return _0x460605;}catch{return null;}}const _0x4d4288={};_0x4d4288['AccentColor']='ac',_0x4d4288['AccentColorText']='act',_0x4d4288['ActiveText']='at',_0x4d4288['ActiveBorder']='ab',_0x4d4288['ActiveCaption']='aca',_0x4d4288['AppWorkspace']='aw',_0x4d4288['Background']='b',_0x4d4288['ButtonHighlight']='bh',_0x4d4288['ButtonShadow']='bs',_0x4d4288['ButtonBorder']='bb',_0x4d4288['ButtonFace']='bf',_0x4d4288['ButtonText']='bt',_0x4d4288['FieldText']='ft',_0x4d4288['GrayText']='gt',_0x4d4288['Highlight']='h',_0x4d4288['HighlightText']='ht',_0x4d4288['InactiveBorder']='ib',_0x4d4288['InactiveCaption']='ic',_0x4d4288['InactiveCaptionText']='ict',_0x4d4288['InfoBackground']='ib',_0x4d4288['InfoText']='it',_0x4d4288['LinkText']='lt',_0x4d4288['Mark']='m',_0x4d4288['Menu']='me',_0x4d4288['Scrollbar']='s',_0x4d4288['ThreeDDarkShadow']='tdds',_0x4d4288['ThreeDFace']='tdf',_0x4d4288['ThreeDHighlight']='tdh',_0x4d4288['ThreeDLightShadow']='tdls',_0x4d4288['ThreeDShadow']='tds',_0x4d4288['VisitedText']='vt',_0x4d4288['Window']='w',_0x4d4288['WindowFrame']='wf',_0x4d4288['WindowText']='wt',_0x4d4288['Selecteditem']='si',_0x4d4288['Selecteditemtext']='sit';const systemColorMap=_0x4d4288;function getSystemColors(){return getIframePool()['execute']((_0x2f5bcd,_0xe398a)=>{const _0x17e827=_0xe398a['document'];_0x17e827['documentElement']['style']['colorScheme']='light';const _0x2e4e0f=_0x17e827['createElement']('div');_0x17e827['body']['appendChild'](_0x2e4e0f);const _0x5671ba={};for(const _0x1baeea of Object['keys'](systemColorMap)){_0x2e4e0f['style']['color']=_0x1baeea,_0x5671ba[systemColorMap[_0x1baeea]]=_0xe398a['getComputedStyle'](_0x2e4e0f)['color'];}return _0x17e827['body']['removeChild'](_0x2e4e0f),_0x5671ba;});}function getTimezone(){const _0x516ee6=window['Intl'],_0x99385=_0x516ee6?.['DateTimeFormat'];if(_0x99385!==undefined){const _0x3c5756=new _0x99385()['resolvedOptions']()['timeZone'];if(_0x3c5756!=='')return _0x3c5756;}const _0x25e119=-getTimezoneOffset();return'UTC'+(_0x25e119>=0x0?'+':'')+_0x25e119;}function getTimezoneOffset(){const _0x8885c5=new Date()['getFullYear']();return Math['max'](toFloat(new Date(_0x8885c5,0x0,0x1)['getTimezoneOffset']()),toFloat(new Date(_0x8885c5,0x6,0x1)['getTimezoneOffset']()));}function getMeasuredTimezone(){let _0x1016c8='';try{const _0x458dad=window['Intl'],_0x5c1c4c=_0x458dad?.['DateTimeFormat'];_0x5c1c4c!==undefined&&(_0x1016c8=new _0x5c1c4c()['resolvedOptions']()['timeZone']);}catch{}const _0x576ce7=new Date()['getTimezoneOffset'](),_0x46194d=new Date('July\x201,\x201113')['getTimezoneOffset'](),_0x308902={};return _0x308902['reported']=_0x1016c8,_0x308902['offset']=_0x576ce7,_0x308902['historicalOffset']=_0x46194d,_0x308902;}function getTouchSupport(){const _0x52445a=navigator;let _0x539a5d=0x0,_0x2b0ad9;if('maxTouchPoints'in _0x52445a)_0x539a5d=toInt(_0x52445a['maxTouchPoints']);else _0x52445a['msMaxTouchPoints']!==undefined&&(_0x539a5d=_0x52445a['msMaxTouchPoints']??0x0);try{document['createEvent']('TouchEvent'),_0x2b0ad9=!![];}catch{_0x2b0ad9=![];}const _0x3f8b0b='ontouchstart'in window,_0x5c3bc2={};return _0x5c3bc2['maxTouchPoints']=_0x539a5d,_0x5c3bc2['touchEvent']=_0x2b0ad9,_0x5c3bc2['touchStart']=_0x3f8b0b,_0x5c3bc2;}function getUserAgent(){return navigator['userAgent'];}function getVendor(){return navigator['vendor']||'';}function getWindowDimensions(){const _0x2c1b7e={};return _0x2c1b7e['outerWidth']=window['outerWidth'],_0x2c1b7e['outerHeight']=window['outerHeight'],_0x2c1b7e['innerWidth']=window['innerWidth'],_0x2c1b7e['innerHeight']=window['innerHeight'],_0x2c1b7e;}function getBindToString(){try{return Function['prototype']['bind']['toString']();}catch{return'';}}function getCanvasModified(){try{const _0x26f48a=document['createElement']('canvas');_0x26f48a['width']=0x1,_0x26f48a['height']=0x1;const _0x3f2cbf=_0x26f48a['getContext']('2d');if(!_0x3f2cbf)return null;_0x3f2cbf['clearRect'](0x0,0x0,0x1,0x1);const _0x2c4dd6=_0x3f2cbf['getImageData'](0x0,0x0,0x1,0x1)['data'];return _0x2c4dd6[0x0]!==0x0||_0x2c4dd6[0x1]!==0x0||_0x2c4dd6[0x2]!==0x0||_0x2c4dd6[0x3]!==0x0;}catch{return null;}}const CSS_PROPERTIES=['display','direction','unicode-bidi','writing-mode','color','font-family'];function getComputedStyleSignal(){const _0x110cf4=window['getComputedStyle'](document['documentElement']);let _0x1452ef=0x0;for(const _0x28a90a of CSS_PROPERTIES){_0x110cf4['getPropertyValue'](_0x28a90a)!==''&&_0x1452ef++;}return _0x1452ef>=0x4;}function getCreateElementDescriptor(){const _0x4456c7=Object['getOwnPropertyDescriptor'](document,'createElement');return _0x4456c7?!('writeable'in _0x4456c7):null;}async function getDrmPersistence(){try{if(typeof navigator['requestMediaKeySystemAccess']!=='function')return null;const _0x48082a=['com.widevine.alpha','com.microsoft.playready'],_0x2c49d2={},_0x111e3a=_0x48082a['map'](async _0x3fc2ee=>{const _0x3894e6={};_0x3894e6['persistent']=![],_0x3894e6['temporary']=![];const _0x4c3770=_0x3894e6;try{const _0x5da61f={};_0x5da61f['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x5e5e90={};_0x5e5e90['initDataTypes']=['cenc'],_0x5e5e90['audioCapabilities']=[_0x5da61f],_0x5e5e90['sessionTypes']=['persistent-license'],await navigator['requestMediaKeySystemAccess'](_0x3fc2ee,[_0x5e5e90]),_0x4c3770['persistent']=!![];}catch{}try{const _0x6c1e51={};_0x6c1e51['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x52f518={};_0x52f518['initDataTypes']=['cenc'],_0x52f518['audioCapabilities']=[_0x6c1e51],_0x52f518['sessionTypes']=['temporary'],await navigator['requestMediaKeySystemAccess'](_0x3fc2ee,[_0x52f518]),_0x4c3770['temporary']=!![];}catch{}_0x2c49d2[_0x3fc2ee]=_0x4c3770;});return await Promise['race']([Promise['all'](_0x111e3a),new Promise(_0x1c438e=>setTimeout(_0x1c438e,0x1f4))]),Object['keys'](_0x2c49d2)['length']>0x0?_0x2c49d2:null;}catch{return null;}}function getErrorStackFormat(){try{;null[0x0]();}catch(_0x594223){if(_0x594223 instanceof Error&&_0x594223['stack']!==undefined)return _0x594223['stack']['toString']();}return undefined;}function hasWindowProp(_0x4f8a1f){return _0x4f8a1f in window;}function getExtensionDetection(){const _0xef5ce3=[['grammarly',()=>{return document['body']['hasAttribute']('data-gr-ext-installed')||document['querySelector']('.grammarly-desktop-integration')!==null;}],['metamask',()=>hasWindowProp('ethereum')],['deepl',()=>document['querySelector']('deepl-input-controller')!==null],['lastpass',()=>document['querySelector']('[data-lastpass-icon-root]')!==null],['1password',()=>document['querySelector']('com-1password-notification')!==null],['honey',()=>hasWindowProp('honeyAutocomplete')],['reactDevtools',()=>hasWindowProp('__REACT_DEVTOOLS_GLOBAL_HOOK__')],['reduxDevtools',()=>hasWindowProp('__REDUX_DEVTOOLS_EXTENSION__')]],_0x59abfb=[];let _0x11d903='';for(const [_0x2f239f,_0x111c1e]of _0xef5ce3){let _0x228d67=![];try{_0x228d67=_0x111c1e();}catch{}_0x228d67&&_0x59abfb['push'](_0x2f239f),_0x11d903+=_0x228d67?'1':'0';}const _0xa40ee1={};return _0xa40ee1['detected']=_0x59abfb,_0xa40ee1['bitmask']=_0x11d903,_0xa40ee1;}const CHROMIUM_CSS=[['aspect-ratio','1',0x58],['color','oklch(0\x200\x200)',0x6f],['container-type','inline-size',0x69],['animation-composition','add',0x70],['color','color-mix(in\x20srgb,\x20red,\x20blue)',0x6f],['text-wrap','balance',0x72],['field-sizing','content',0x78],['view-transition-name','foo',0x6f],['interpolate-size','allow-keywords',0x81],['ruby-align','center',0x80]],GECKO_CSS=[['color','light-dark(#000,\x20#fff)',0x78],['height','1lh',0x78],['text-wrap','balance',0x79],['text-wrap','pretty',0x80],['field-sizing','content',0x88]],WEBKIT_CSS=[['selector(:has(a))','',0xf],['container-type','inline-size',0x10],['font-size-adjust','ex-height\x200.5',0x11],['view-transition-name','foo',0x12]],g$1=globalThis,CHROMIUM_JS=[[()=>typeof AbortSignal['abort']==='function',0x5d],[()=>'URLPattern'in g$1,0x5f],[()=>typeof g$1['structuredClone']==='function',0x62],[()=>typeof AbortSignal['timeout']==='function',0x67],[()=>'formatRange'in Intl['NumberFormat']['prototype'],0x6b],[()=>'groupBy'in(g$1['Map']??{}),0x75],[()=>'fromAsync'in Array,0x77],[()=>'union'in Set['prototype'],0x7a]],GECKO_JS=[[()=>'findLast'in Array['prototype'],0x68],[()=>'withResolvers'in(g$1['Promise']??{}),0x79],[()=>'union'in Set['prototype'],0x7f],[()=>'Iterator'in g$1,0x82]],WEBKIT_JS=[[()=>'RegExp'in g$1&&/(?<=a)b/['test']('ab'),0x10],[()=>'groupBy'in(g$1['Map']??{}),0x11],[()=>'ViewTransition'in g$1,0x12]];function detectVersion(_0x150619,_0x3dc4f3){let _0x2d5b33=null,_0x3f5db2=null;if(typeof CSS!=='undefined'&&typeof CSS['supports']==='function')for(const [_0x5cf88a,_0x314a05,_0x31d9ce]of _0x150619){try{const _0x1be362=_0x314a05===''?CSS['supports'](_0x5cf88a):CSS['supports'](_0x5cf88a,_0x314a05);_0x1be362&&(_0x2d5b33===null||_0x31d9ce>_0x2d5b33)&&(_0x2d5b33=_0x31d9ce);}catch{}}for(const [_0x4fbd01,_0x82e89b]of _0x3dc4f3){try{_0x4fbd01()&&(_0x3f5db2===null||_0x82e89b>_0x3f5db2)&&(_0x3f5db2=_0x82e89b);}catch{}}const _0x489583={};return _0x489583['cssVersion']=_0x2d5b33,_0x489583['jsVersion']=_0x3f5db2,_0x489583;}function parseUAVersion(_0x5e415b){const _0x27a2a7=navigator['userAgent'];if(_0x5e415b==='chromium'){const _0x15a656=/Chrom(?:e|ium)\/(\d+)/['exec'](_0x27a2a7);return _0x15a656?parseInt(_0x15a656[0x1],0xa):null;}if(_0x5e415b==='gecko'){const _0x503505=/Firefox\/(\d+)/['exec'](_0x27a2a7);return _0x503505?parseInt(_0x503505[0x1],0xa):null;}if(_0x5e415b==='webkit'){const _0x33c5eb=/Version\/(\d+)/['exec'](_0x27a2a7);return _0x33c5eb?parseInt(_0x33c5eb[0x1],0xa):null;}return null;}function getFeatureVersion(){let _0x5a3543='unknown';try{if(isChromium())_0x5a3543='chromium';else{if(isGecko())_0x5a3543='gecko';else isWebKit()&&(_0x5a3543='webkit');}}catch{return null;}if(_0x5a3543==='unknown'){const _0x3d2989={};return _0x3d2989['cssVersion']=null,_0x3d2989['jsVersion']=null,_0x3d2989['uaVersion']=null,_0x3d2989['mismatch']=![],_0x3d2989['engine']=_0x5a3543,_0x3d2989;}let _0x296a2b,_0x58b43f;if(_0x5a3543==='chromium')_0x296a2b=CHROMIUM_CSS,_0x58b43f=CHROMIUM_JS;else _0x5a3543==='gecko'?(_0x296a2b=GECKO_CSS,_0x58b43f=GECKO_JS):(_0x296a2b=WEBKIT_CSS,_0x58b43f=WEBKIT_JS);const {cssVersion:_0x18d7f6,jsVersion:_0x398016}=detectVersion(_0x296a2b,_0x58b43f),_0x4e6bca=parseUAVersion(_0x5a3543);let _0x28d500=![];if(_0x4e6bca!==null){const _0x489bec=Math['max'](_0x18d7f6??0x0,_0x398016??0x0);_0x489bec>0x0&&_0x4e6bca-_0x489bec>0x14&&(_0x28d500=!![]);}const _0x2332e6={};return _0x2332e6['cssVersion']=_0x18d7f6,_0x2332e6['jsVersion']=_0x398016,_0x2332e6['uaVersion']=_0x4e6bca,_0x2332e6['mismatch']=_0x28d500,_0x2332e6['engine']=_0x5a3543,_0x2332e6;}function getGetterProxyDetection(){const _0x326c2c=Object['getOwnPropertyDescriptor'](Object['getPrototypeOf'](navigator),'hardwareConcurrency');if(!_0x326c2c?.['get'])return null;const _0x21de3b=window['Function'],_0x4d84af=window['Object'];let _0x3a8f2e=![];try{const _0x35478f=window;_0x3a8f2e=delete _0x35478f['Function']&&delete _0x35478f['Object'];}catch{_0x3a8f2e=![];}if(!_0x3a8f2e)return _0x4776f4(),null;try{return _0x326c2c['get']['toString'](),![];}catch{return!![];}finally{_0x4776f4();}function _0x4776f4(){try{window['Function']=_0x21de3b,window['Object']=_0x4d84af;}catch{}}}const GETTER_TARGETS=[['navigator',['plugins','userAgent','platform','appName','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','connection','cookieEnabled','language','pdfViewerEnabled']],['screen',['width','availWidth','height','availHeight','colorDepth']]],TAMPER_CHECK_PROPS=['userAgent','platform','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','plugins','connection','cookieEnabled'];function getGetterToString(){try{const _0x5149b5={},_0x464318={};for(const [_0x55d62e,_0x438634]of GETTER_TARGETS){const _0x537d5a=window[_0x55d62e];if(_0x537d5a===null||_0x537d5a===undefined||typeof _0x537d5a!=='object')continue;for(const _0x57e9d1 of _0x438634){try{const _0x56b24b=Object['getOwnPropertyDescriptor'](_0x537d5a,_0x57e9d1)?.['get']?.['toString']();_0x56b24b!==undefined&&(_0x5149b5[_0x55d62e+'.'+_0x57e9d1]=_0x56b24b);}catch{}}}for(const _0x46643f of TAMPER_CHECK_PROPS){try{const _0x100986=Object['getOwnPropertyDescriptor'](navigator,_0x46643f);if(_0x100986!==undefined){const _0x40fcea={};if(_0x100986['writable']===!![])_0x40fcea['writable']=!![];if(_0x100986['configurable']===!![])_0x40fcea['configurable']=!![];(_0x40fcea['writable']===!![]||_0x40fcea['configurable']===!![])&&(_0x464318[_0x46643f]=_0x40fcea);}}catch{}}const _0x18df99={};return _0x18df99['overrides']=_0x5149b5,_0x18df99['tampered']=_0x464318,_0x18df99;}catch{return null;}}const IMPOSSIBLE_BIGRAMS=new Set(['bq','bx','cb','cf','cj','cp','cv','cx','dx','fq','fx','gq','gx','hx','jb','jc','jd','jf','jg','jh','jk','jl','jm','jn','jp','jq','jr','js','jt','jv','jw','jx','jy','jz','kq','kx','kz','lq','lx','mx','pq','px','qb','qc','qd','qe','qf','qg','qh','qj','qk','ql','qm','qn','qo','qp','qq','qr','qs','qt','qv','qw','qx','qy','qz','sx','vb','vc','vf','vg','vj','vk','vm','vn','vp','vq','vw','vx','vz','wq','wx','wz','xb','xd','xf','xg','xj','xk','xq','xr','xw','xz','yq','yx','yy','zb','zc','zd','zf','zg','zj','zk','zl','zm','zn','zp','zq','zr','zs','zt','zv','zw','zx']);function getGpuGibberish(){try{const _0x46afff=document['createElement']('canvas'),_0x29d167=_0x46afff['getContext']('webgl')??_0x46afff['getContext']('experimental-webgl');if(!_0x29d167)return null;const _0x537329=_0x29d167['getExtension']('WEBGL_debug_renderer_info');if(!_0x537329)return null;const _0x60ad1f=_0x29d167['getParameter'](_0x537329['UNMASKED_RENDERER_WEBGL']);if(!_0x60ad1f)return null;let _0x32dee3=_0x60ad1f;const _0x3c4649=_0x32dee3['match'](/^ANGLE \((.+)\)$/);if(_0x3c4649){_0x32dee3=_0x3c4649[0x1];const _0x94b6f9=_0x32dee3['lastIndexOf'](',');_0x94b6f9!==-0x1&&(_0x32dee3=_0x32dee3['substring'](0x0,_0x94b6f9));}const _0x3782f5=_0x32dee3['toLowerCase']()['replace'](/[^a-z]/g,'');let _0x9d152=0x0;for(let _0x16de91=0x0;_0x16de91<_0x3782f5['length']-0x1;_0x16de91++){const _0x362c38=_0x3782f5[_0x16de91]+_0x3782f5[_0x16de91+0x1];IMPOSSIBLE_BIGRAMS['has'](_0x362c38)&&_0x9d152++;}const _0xc0cea0={};return _0xc0cea0['score']=_0x9d152,_0xc0cea0['gibberish']=_0x9d152>0x2,_0xc0cea0['renderer']=_0x60ad1f,_0xc0cea0;}catch{return null;}}function getIframeProxy(){try{if(typeof document==='undefined')return null;const _0x10edb9=document['createElement']('iframe');_0x10edb9['style']['display']='none',document['body']['appendChild'](_0x10edb9);try{const _0x21206d=_0x10edb9['contentWindow'];if(!_0x21206d){const _0x118644={};return _0x118644['accessible']=![],_0x118644['proxyDetected']=![],_0x118644['selfConsistent']=![],_0x118644['frameElementNull']=![],_0x118644;}let _0x10242e=![];try{_0x10242e=_0x21206d['self']===_0x21206d;}catch{_0x10242e=![];}let _0x3b71d7=![];try{const _0x354d9d=Object['prototype']['toString']['call'](_0x21206d);_0x354d9d!=='[object\x20Window]'&&_0x354d9d!=='[object\x20global]'&&(_0x3b71d7=!![]);}catch{_0x3b71d7=!![];}try{const _0x319e3c=Object['getOwnPropertyDescriptor'](_0x21206d,'self');if(_0x319e3c===undefined&&!_0x3b71d7){}}catch{_0x3b71d7=!![];}let _0x2acd35=![];try{_0x2acd35=_0x21206d['frameElement']===null;}catch{_0x2acd35=!![];}const _0x2d77bf={};return _0x2d77bf['accessible']=!![],_0x2d77bf['proxyDetected']=_0x3b71d7,_0x2d77bf['selfConsistent']=_0x10242e,_0x2d77bf['frameElementNull']=_0x2acd35,_0x2d77bf;}finally{document['body']['removeChild'](_0x10edb9);}}catch{return null;}}function getIframeSignals(){return new Promise(_0x33cd44=>{try{const _0x45255c=document['createElement']('iframe');_0x45255c['style']['display']='none',_0x45255c['style']['width']='0',_0x45255c['style']['height']='0',_0x45255c['style']['position']='absolute',_0x45255c['style']['top']='-9999px';let _0x2d1cde=null;const _0xcaff96=()=>{if(_0x2d1cde!==null)clearTimeout(_0x2d1cde);try{_0x45255c['parentNode']&&_0x45255c['parentNode']['removeChild'](_0x45255c);}catch{}};_0x2d1cde=setTimeout(()=>{_0xcaff96(),_0x33cd44(null);},0x7d0),_0x45255c['onload']=()=>{try{const _0x199184=_0x45255c['contentWindow'];if(!_0x199184){_0xcaff96(),_0x33cd44(null);return;}const _0x42e65f=_0x199184['navigator'],_0x23f06d={};_0x23f06d['webdriver']=_0x42e65f['webdriver'],_0x23f06d['platform']=_0x42e65f['platform'],_0x23f06d['hardwareConcurrency']=_0x42e65f['hardwareConcurrency'],_0x23f06d['deviceMemory']=_0x42e65f['deviceMemory'],_0x23f06d['language']=_0x42e65f['language'];const _0x1cfb4b=_0x23f06d;_0xcaff96(),_0x33cd44(_0x1cfb4b);}catch{_0xcaff96(),_0x33cd44(null);}},_0x45255c['onerror']=()=>{_0xcaff96(),_0x33cd44(null);},document['body']['appendChild'](_0x45255c);}catch{_0x33cd44(null);}});}const CHECKED_PROPERTIES=['deviceMemory','hardwareConcurrency','language','languages','platform'];function getNavigatorDescriptors(){try{let _0xfce5b4='';for(const _0x34246d of CHECKED_PROPERTIES){try{const _0x59a536=Object['getOwnPropertyDescriptor'](navigator,_0x34246d);if(_0x59a536){_0xfce5b4+='1';continue;}const _0x4e9a6d=Object['getOwnPropertyDescriptor'](Navigator['prototype'],_0x34246d);if(!_0x4e9a6d){_0xfce5b4+='2';continue;}typeof _0x4e9a6d['get']==='function'?_0xfce5b4+='0':_0xfce5b4+='1';}catch{_0xfce5b4+='2';}}return _0xfce5b4;}catch{return'22222';}}function getObjectInspectGlobal(){try{const _0x4e768b=new Function('return\x20objectToInspect');return _0x4e768b(),!![];}catch{return![];}}const _0x10360a={};_0x10360a['Windows']=['Segoe\x20Fluent\x20Icons','HoloLens\x20MDL2\x20Assets','Leelawadee\x20UI','Nirmala\x20UI','Cambria\x20Math'],_0x10360a['macOS']=['Galvji','Noto\x20Serif\x20Yezidi\x20Regular','InaiMathi\x20Bold','Luminari','Helvetica\x20Neue'],_0x10360a['Linux']=['Ubuntu','Noto\x20Color\x20Emoji','Liberation\x20Mono'];const OS_FONT_MARKERS=_0x10360a,TEST_STRING='mmMwWLliI0O&1',TEST_SIZE='72px',BASE_FONT='monospace';function getOsFontValidation(){return new Promise(_0x465e7a=>{try{const _0x427695=document['createElement']('canvas'),_0x5e47f2=_0x427695['getContext']('2d');if(!_0x5e47f2){const _0x703bb3={};_0x703bb3['detectedOs']='unknown',_0x703bb3['markers']=[],_0x465e7a(_0x703bb3);return;}_0x5e47f2['font']=TEST_SIZE+'\x20'+BASE_FONT;const _0x57e361=_0x5e47f2['measureText'](TEST_STRING)['width'],_0x2ebb21=[];let _0x4584f0='unknown';for(const [_0x3e8cce,_0x43aa7b]of Object['entries'](OS_FONT_MARKERS)){for(const _0xc4390b of _0x43aa7b){_0x5e47f2['font']=TEST_SIZE+'\x20\x27'+_0xc4390b+'\x27,\x20'+BASE_FONT;const _0x81c09b=_0x5e47f2['measureText'](TEST_STRING)['width'];_0x81c09b!==_0x57e361&&(_0x2ebb21['push'](_0xc4390b),_0x4584f0==='unknown'&&(_0x4584f0=_0x3e8cce));}}const _0xf4cc3={};_0xf4cc3['detectedOs']=_0x4584f0,_0xf4cc3['markers']=_0x2ebb21,_0x465e7a(_0xf4cc3);}catch{const _0x5a5871={};_0x5a5871['detectedOs']='unknown',_0x5a5871['markers']=[],_0x465e7a(_0x5a5871);}});}const g=globalThis,_0x4d36d6={};_0x4d36d6['android']=0x2,_0x4d36d6['chromeos']=0x1;const _0x585730={};_0x585730['windows']=0x2,_0x585730['mac']=0x2,_0x585730['linux']=0x2;const _0x3b1a9b={};_0x3b1a9b['windows']=0x2,_0x3b1a9b['mac']=0x2,_0x3b1a9b['linux']=0x2;const _0x14b383={};_0x14b383['windows']=0x2,_0x14b383['mac']=0x2,_0x14b383['linux']=0x2;const _0xa1bad={};_0xa1bad['windows']=0x1,_0xa1bad['mac']=0x1,_0xa1bad['linux']=0x1;const _0x439026={};_0x439026['windows']=0x1,_0x439026['mac']=0x1,_0x439026['linux']=0x1;const _0x447be4={};_0x447be4['windows']=0x2,_0x447be4['mac']=0x2,_0x447be4['linux']=0x2,_0x447be4['chromeos']=0x2;const _0x2008e1={};_0x2008e1['android']=0x2,_0x2008e1['ios']=0x2;const _0x38bfe4={};_0x38bfe4['android']=0x1,_0x38bfe4['ios']=0x1;const _0x1032de={};_0x1032de['android']=0x2;const _0x3ccd49={};_0x3ccd49['android']=0x2;const _0x368243={};_0x368243['windows']=0x1,_0x368243['mac']=0x1,_0x368243['chromeos']=0x1;const _0x4935e2={};_0x4935e2['windows']=0x2,_0x4935e2['mac']=0x2,_0x4935e2['linux']=0x2;const _0x57dcc8={};_0x57dcc8['windows']=0x1,_0x57dcc8['mac']=0x1,_0x57dcc8['linux']=0x1;const _0x4f6597={};_0x4f6597['android']=0x1,_0x4f6597['windows']=0x1,_0x4f6597['mac']=0x1;const PROBES=[['BarcodeDetector',()=>'BarcodeDetector'in g,_0x4d36d6],['EyeDropper',()=>'EyeDropper'in g,_0x585730],['HID',()=>'hid'in navigator,_0x3b1a9b],['Serial',()=>'serial'in navigator,_0x14b383],['USB',()=>'usb'in navigator,_0xa1bad],['Bluetooth',()=>'bluetooth'in navigator,_0x439026],['SharedWorker',()=>'SharedWorker'in g,_0x447be4],['orientation',()=>'ondeviceorientation'in g,_0x2008e1],['DeviceMotionEvent',()=>'DeviceMotionEvent'in g,_0x38bfe4],['ContactsManager',()=>'ContactsManager'in g,_0x1032de],['ContentIndex',()=>'ContentIndex'in g,_0x3ccd49],['AppBadge',()=>typeof navigator['setAppBadge']==='function',_0x368243],['FileSystemAccess',()=>'showOpenFilePicker'in g,_0x4935e2],['PressureObserver',()=>'PressureObserver'in g,_0x57dcc8],['WakeLock',()=>'wakeLock'in navigator,_0x4f6597]];function getPlatformApiScoring(){try{const _0x4b4e93={},_0x4228db=[];for(const [_0x5cce32,_0x804874,_0x5351ee]of PROBES){try{if(_0x804874()){_0x4228db['push'](_0x5cce32);for(const [_0x3c83fb,_0x2a48b5]of Object['entries'](_0x5351ee)){_0x4b4e93[_0x3c83fb]=(_0x4b4e93[_0x3c83fb]??0x0)+_0x2a48b5;}}}catch{}}const _0x1a4525={};return _0x1a4525['score']=_0x4b4e93,_0x1a4525['apis']=_0x4228db,_0x1a4525;}catch{return null;}}function getPluginOverflow(){try{const _0x320c55=navigator['plugins'];if(_0x320c55['length']===0x0)return null;const _0x2d3406=_0x320c55['item'](0x0);if(!_0x2d3406)return null;let _0x12cc84=![];try{const _0x273f3a=_0x320c55['item'](0x100000000);_0x12cc84=_0x273f3a!==_0x2d3406;}catch{_0x12cc84=!![];}let _0x5c7964=!![];try{if(_0x2d3406['length']>0x0){const _0x84119f=_0x2d3406['item'](0x0);_0x84119f&&(_0x5c7964=_0x84119f['enabledPlugin']===_0x2d3406);}}catch{_0x5c7964=![];}const _0x3026a3={};return _0x3026a3['overflow']=_0x12cc84,_0x3026a3['backref']=_0x5c7964,_0x3026a3;}catch{return null;}}function getPrivateBrowsingChromium(){if(!isWebKit()||isModernBrowser())return null;try{const _0xcd8044=window;typeof _0xcd8044['webkitRequestFileSystem']==='function'&&_0xcd8044['webkitRequestFileSystem'](null,null,null,null);}catch{return!![];}try{const _0x252c2e=window['localStorage'];return _0x252c2e['setItem']('test','1'),_0x252c2e['removeItem']('test'),![];}catch{return!![];}}function getChainDepth(_0x55341c,_0x578642){let _0x49a483=_0x55341c,_0x2712ec=0x0;while(_0x49a483!==null&&_0x2712ec<_0x578642){_0x49a483=Object['getPrototypeOf'](_0x49a483),_0x2712ec++;}return _0x2712ec;}function checkChain(_0x2a9420,_0x10c399,_0x53ebd8,_0x3059b3){try{const _0x135fbd=Object['getPrototypeOf'](_0x2a9420),_0x28728b=_0x135fbd===_0x53ebd8,_0x31f614=getChainDepth(_0x2a9420,0xf);if(!_0x28728b){const _0x4a917c={};return _0x4a917c['target']=_0x10c399+'→'+_0x3059b3,_0x4a917c['intact']=![],_0x4a917c['depth']=_0x31f614,_0x4a917c;}const _0x4108c9={};return _0x4108c9['target']=_0x10c399+'→'+_0x3059b3,_0x4108c9['intact']=!![],_0x4108c9['depth']=_0x31f614,_0x4108c9;}catch{const _0xed94e5={};return _0xed94e5['target']=_0x10c399+'→'+_0x3059b3,_0xed94e5['intact']=![],_0xed94e5['depth']=0x0,_0xed94e5;}}function getPrototypeChain(){const _0x8716a5=[];try{typeof Navigator!=='undefined'&&_0x8716a5['push'](checkChain(navigator,'navigator',Navigator['prototype'],'Navigator.prototype'));typeof Screen!=='undefined'&&_0x8716a5['push'](checkChain(screen,'screen',Screen['prototype'],'Screen.prototype'));if(typeof HTMLDocument!=='undefined')_0x8716a5['push'](checkChain(document,'document',HTMLDocument['prototype'],'HTMLDocument.prototype'));else typeof Document!=='undefined'&&_0x8716a5['push'](checkChain(document,'document',Document['prototype'],'Document.prototype'));const _0x4cd260=navigator['constructor']===Navigator,_0x415889={};_0x415889['target']='navigator.constructor===Navigator',_0x415889['intact']=_0x4cd260,_0x415889['depth']=0x0,_0x8716a5['push'](_0x415889);const _0x203c04=Object['prototype']['toString']['call'](navigator),_0x21e30c={};_0x21e30c['target']='navigator.toStringTag',_0x21e30c['intact']=_0x203c04==='[object\x20Navigator]',_0x21e30c['depth']=0x0,_0x8716a5['push'](_0x21e30c);const _0x1a9223=Object['prototype']['toString']['call'](screen),_0x5a520e={};_0x5a520e['target']='screen.toStringTag',_0x5a520e['intact']=_0x1a9223==='[object\x20Screen]',_0x5a520e['depth']=0x0,_0x8716a5['push'](_0x5a520e);}catch{}const _0x5e9628=_0x8716a5['length']>0x0&&_0x8716a5['every'](_0xfa3669=>_0xfa3669['intact']),_0x36cccf={};return _0x36cccf['valid']=_0x5e9628,_0x36cccf['checks']=_0x8716a5,_0x36cccf;}const LIGHT_TARGETS=[[Navigator['prototype'],'hardwareConcurrency'],[Navigator['prototype'],'platform'],[Navigator['prototype'],'userAgent'],[Navigator['prototype'],'languages'],[Navigator['prototype'],'webdriver'],[Screen['prototype'],'width'],[Screen['prototype'],'height'],[Screen['prototype'],'colorDepth']];function getLightTargets(){const _0x27f51c=[...LIGHT_TARGETS];try{typeof CanvasRenderingContext2D!=='undefined'&&(_0x27f51c['push']([CanvasRenderingContext2D['prototype'],'getImageData']),_0x27f51c['push']([CanvasRenderingContext2D['prototype'],'fillText']));}catch{}try{typeof HTMLCanvasElement!=='undefined'&&_0x27f51c['push']([HTMLCanvasElement['prototype'],'toDataURL']);}catch{}try{typeof WebGLRenderingContext!=='undefined'&&_0x27f51c['push']([WebGLRenderingContext['prototype'],'getParameter']);}catch{}try{_0x27f51c['push']([Date['prototype'],'getTimezoneOffset']);}catch{}try{typeof Intl!=='undefined'&&typeof Intl['DateTimeFormat']!=='undefined'&&_0x27f51c['push']([Intl['DateTimeFormat']['prototype'],'resolvedOptions']);}catch{}return _0x27f51c;}function getHighTargets(){const _0x699cc3=getLightTargets(),_0x49e25f=['appVersion','vendor','appName','connection','cookieEnabled','deviceMemory','doNotTrack','geolocation','language','maxTouchPoints','mimeTypes','onLine','permissions','plugins','product','productSub','serviceWorker','storage','vendorSub'];for(const _0xbc03a3 of _0x49e25f){_0xbc03a3 in Navigator['prototype']&&_0x699cc3['push']([Navigator['prototype'],_0xbc03a3]);}const _0x308a73=['availHeight','availWidth','pixelDepth','availLeft','availTop','orientation'];for(const _0x27c9d9 of _0x308a73){_0x27c9d9 in Screen['prototype']&&_0x699cc3['push']([Screen['prototype'],_0x27c9d9]);}const _0xa51d8e=['cookie','domain','referrer','title','URL','hidden','visibilityState','fullscreenElement'];for(const _0x1dd979 of _0xa51d8e){_0x1dd979 in Document['prototype']&&_0x699cc3['push']([Document['prototype'],_0x1dd979]);}try{const _0x41153e=['getBoundingClientRect','getClientRects','innerHTML','outerHTML','getAttribute','setAttribute'];for(const _0x56a816 of _0x41153e){_0x56a816 in Element['prototype']&&_0x699cc3['push']([Element['prototype'],_0x56a816]);}}catch{}try{const _0x16fbf3=['offsetWidth','offsetHeight','style'];for(const _0x23175c of _0x16fbf3){_0x23175c in HTMLElement['prototype']&&_0x699cc3['push']([HTMLElement['prototype'],_0x23175c]);}}catch{}try{if(typeof CanvasRenderingContext2D!=='undefined'){const _0x463e8c=['fillRect','strokeRect','measureText','font','globalCompositeOperation','drawImage'];for(const _0x592f1f of _0x463e8c){_0x592f1f in CanvasRenderingContext2D['prototype']&&_0x699cc3['push']([CanvasRenderingContext2D['prototype'],_0x592f1f]);}}}catch{}try{if(typeof WebGLRenderingContext!=='undefined'){const _0x1f34f2=['getExtension','getSupportedExtensions','readPixels','createShader','shaderSource','compileShader'];for(const _0x4bfe52 of _0x1f34f2){_0x4bfe52 in WebGLRenderingContext['prototype']&&_0x699cc3['push']([WebGLRenderingContext['prototype'],_0x4bfe52]);}}}catch{}try{typeof AudioContext!=='undefined'&&(_0x699cc3['push']([AudioContext['prototype'],'createOscillator']),_0x699cc3['push']([AudioContext['prototype'],'createAnalyser']),_0x699cc3['push']([AudioContext['prototype'],'createGain']));}catch{}try{typeof OfflineAudioContext!=='undefined'&&_0x699cc3['push']([OfflineAudioContext['prototype'],'startRendering']);}catch{}try{_0x699cc3['push']([Performance['prototype'],'now']),_0x699cc3['push']([Performance['prototype'],'getEntries']);}catch{}try{_0x699cc3['push']([Storage['prototype'],'getItem']),_0x699cc3['push']([Storage['prototype'],'setItem']);}catch{}try{const _0x5f0332=['random','floor','ceil','round','sin','cos'];for(const _0x35d811 of _0x5f0332){_0x35d811 in Math&&_0x699cc3['push']([Math,_0x35d811]);}}catch{}try{typeof MediaDevices!=='undefined'&&'enumerateDevices'in MediaDevices['prototype']&&_0x699cc3['push']([MediaDevices['prototype'],'enumerateDevices']);}catch{}try{typeof Permissions!=='undefined'&&'query'in Permissions['prototype']&&_0x699cc3['push']([Permissions['prototype'],'query']);}catch{}return _0x699cc3;}function checkToString(_0x41410e,_0x53687f){try{const _0xf45643=Object['getOwnPropertyDescriptor'](_0x41410e,_0x53687f),_0x451cf4=_0xf45643?.['get']??_0xf45643?.['value']??_0x41410e[_0x53687f];if(typeof _0x451cf4!=='function')return![];const _0xd444d1=Function['prototype']['toString']['call'](_0x451cf4);return!_0xd444d1['includes']('[native\x20code]');}catch{return![];}}function checkOwnDescriptor(_0x48ce3d){try{const _0x2b4ba7=Object['getOwnPropertyDescriptor'](navigator,_0x48ce3d);return _0x2b4ba7?.['value']!==undefined;}catch{return![];}}function checkHasPrototype(_0x3dcf16,_0x318ada){try{const _0x45f4a7=Object['getOwnPropertyDescriptor'](_0x3dcf16,_0x318ada);if(!_0x45f4a7?.['get'])return![];return'prototype'in _0x45f4a7['get'];}catch{return![];}}function checkOwnPropertyNames(_0x276dd5,_0x3ee0f1){try{const _0x270630=Object['getOwnPropertyDescriptor'](_0x276dd5,_0x3ee0f1),_0xdc3cfc=_0x270630?.['get'];if(typeof _0xdc3cfc!=='function')return![];const _0x149b0d=Object['getOwnPropertyNames'](_0xdc3cfc)['sort']();if(_0x149b0d['length']>0x2)return!![];if(_0x149b0d['length']===0x2&&(_0x149b0d[0x0]!=='length'||_0x149b0d[0x1]!=='name'))return!![];return![];}catch{return![];}}function checkClassExtends(_0x21856b,_0x534324){try{const _0x572e22=Object['getOwnPropertyDescriptor'](_0x21856b,_0x534324),_0x5ca664=_0x572e22?.['get'];if(typeof _0x5ca664!=='function')return![];return new Function('fn','class\x20X\x20extends\x20fn\x20{}')(_0x5ca664),!![];}catch{return![];}}function checkNullProto(_0x480608,_0x5d2de6){try{const _0x24b5ac=Object['getOwnPropertyDescriptor'](_0x480608,_0x5d2de6),_0x2fe8d1=_0x24b5ac?.['get']??_0x24b5ac?.['value'];if(typeof _0x2fe8d1!=='function')return![];const _0x5e5854=Object['create'](_0x2fe8d1);return Object['setPrototypeOf'](_0x5e5854,null),_0x5e5854['toString']?.(),!![];}catch{return![];}}function checkIllegalInvocation(_0x3b234f,_0x174d0e){try{const _0x1d2413=Object['getOwnPropertyDescriptor'](_0x3b234f,_0x174d0e),_0x102793=_0x1d2413?.['get'];if(typeof _0x102793!=='function')return![];return _0x102793['call'](undefined),!![];}catch(_0x170e12){if(_0x170e12 instanceof TypeError)return![];return!![];}}function checkBindToString(_0x3bce62,_0x16800b){try{const _0x60d084=Object['getOwnPropertyDescriptor'](_0x3bce62,_0x16800b),_0x494ac5=_0x60d084?.['get']??_0x60d084?.['value'];if(typeof _0x494ac5!=='function')return![];const _0x186f82=_0x494ac5['bind'](null),_0x37e39c=Function['prototype']['toString']['call'](_0x186f82);return!_0x37e39c['includes']('[native\x20code]')&&!_0x37e39c['includes']('native\x20code');}catch{return![];}}function checkReflectKeys(_0x4ea82d,_0x4c6414){try{const _0x346073=Object['getOwnPropertyDescriptor'](_0x4ea82d,_0x4c6414),_0x3c2f88=_0x346073?.['get']??_0x346073?.['value'];if(typeof _0x3c2f88!=='function')return![];const _0x2ef82b=Reflect['ownKeys'](_0x3c2f88)['sort'](),_0x37cf31=Object['getOwnPropertyNames'](_0x3c2f88)['sort']();if(_0x2ef82b['length']!==_0x37cf31['length'])return!![];for(let _0x56cbf4=0x0;_0x56cbf4<_0x2ef82b['length'];_0x56cbf4++){if(_0x2ef82b[_0x56cbf4]!==_0x37cf31[_0x56cbf4])return!![];}return![];}catch{return![];}}function checkDescriptorKeys(_0x1fad76,_0x47efaf){try{const _0x2890b4=Object['getOwnPropertyDescriptor'](_0x1fad76,_0x47efaf);if(!_0x2890b4)return![];const _0x21f0bf=_0x2890b4['get']??_0x2890b4['set']??_0x2890b4['value'];if(typeof _0x21f0bf!=='function')return![];const _0x10077e=Object['getOwnPropertyDescriptors'](_0x21f0bf),_0x17d7cd=Object['keys'](_0x10077e)['filter'](_0x58dc14=>_0x58dc14!=='length'&&_0x58dc14!=='name');return _0x17d7cd['length']>0x0;}catch{return![];}}function checkProtoManipulation(_0x518a00,_0x2c6204){try{const _0x42febe=Object['getOwnPropertyDescriptor'](_0x518a00,_0x2c6204),_0x121ded=_0x42febe?.['get']??_0x42febe?.['value'];if(typeof _0x121ded!=='function')return![];const _0x3ab03e=_0x121ded,_0x53e44a=Object['getPrototypeOf'](_0x3ab03e);try{return Object['setPrototypeOf'](_0x3ab03e,null),_0x3ab03e['valueOf'],Object['setPrototypeOf'](_0x3ab03e,_0x53e44a),![];}catch{return Object['setPrototypeOf'](_0x3ab03e,_0x53e44a),![];}}catch{return![];}}function checkInstanceOf(_0x33a7ae,_0x93af0a){try{const _0xef4cb6=Object['getOwnPropertyDescriptor'](_0x33a7ae,_0x93af0a),_0x58d5d4=_0xef4cb6?.['get']??_0xef4cb6?.['value'];if(typeof _0x58d5d4!=='function')return![];const _0x526104=_0x58d5d4 instanceof _0x58d5d4;return _0x526104===!![];}catch{return![];}}let proxyDetectionMode='high';function setProxyDetectionMode(_0x52df2b){proxyDetectionMode=_0x52df2b;}function getProxyDetection(){const _0x220dec=proxyDetectionMode,_0x573ed2=_0x220dec==='high'?getHighTargets():getLightTargets(),_0x5e7201=_0x220dec==='high'?[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends,checkNullProto,checkIllegalInvocation,checkBindToString,checkReflectKeys,checkDescriptorKeys,checkProtoManipulation,checkInstanceOf]:[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends],_0x3ce222=[];for(const [_0x5994e7,_0x41e169]of _0x573ed2){let _0x3be119=![];try{_0x5994e7===Navigator['prototype']&&checkOwnDescriptor(_0x41e169)&&(_0x3be119=!![]);}catch{}if(!_0x3be119)for(const _0x28fe4e of _0x5e7201){try{if(_0x28fe4e(_0x5994e7,_0x41e169)){_0x3be119=!![];break;}}catch{}}if(_0x3be119){const _0xac918d=_0x5994e7['constructor']['name'];_0x3ce222['push'](_0xac918d+'.'+_0x41e169);}}const _0x180645={};return _0x180645['tested']=_0x573ed2['length'],_0x180645['lied']=_0x3ce222['length'],_0x180645['lies']=_0x3ce222,_0x180645['mode']=_0x220dec,_0x180645;}function measureCssDimension(_0x50201d,_0x2f782f,_0x39030b){try{if(typeof matchMedia!=='function')return 0x0;let _0x5e913b=_0x2f782f,_0x1417de=_0x39030b;while(_0x1417de-_0x5e913b>0x1){const _0x1bebfc=Math['floor']((_0x5e913b+_0x1417de)/0x2),_0x45619a=_0x50201d==='width'?'(min-device-width:\x20'+_0x1bebfc+'px)':'(min-device-height:\x20'+_0x1bebfc+'px)';matchMedia(_0x45619a)['matches']?_0x5e913b=_0x1bebfc:_0x1417de=_0x1bebfc;}return _0x5e913b;}catch{return 0x0;}}function getScreenVerify(){try{const _0x385ce8=screen['width'],_0x5bf612=screen['height'],_0x3f700f=measureCssDimension('width',0x64,0x1f40),_0x60461d=measureCssDimension('height',0x64,0x1f40),_0x493d34=_0x3f700f===0x0||Math['abs'](_0x385ce8-_0x3f700f)<=0x1,_0xe3449b=_0x60461d===0x0||Math['abs'](_0x5bf612-_0x60461d)<=0x1,_0x5bc8c8={};return _0x5bc8c8['match']=_0x493d34&&_0xe3449b,_0x5bc8c8['screenWidth']=_0x385ce8,_0x5bc8c8['cssWidth']=_0x3f700f,_0x5bc8c8['screenHeight']=_0x5bf612,_0x5bc8c8['cssHeight']=_0x60461d,_0x5bc8c8;}catch{const _0x1477a5={};return _0x1477a5['match']=!![],_0x1477a5['screenWidth']=0x0,_0x1477a5['cssWidth']=0x0,_0x1477a5['screenHeight']=0x0,_0x1477a5['cssHeight']=0x0,_0x1477a5;}}function getStackBytes(){try{const _0x1a8414=[];for(let _0x17d9f9=0x0;_0x17d9f9<0x5;_0x17d9f9++){let _0x51218b=0x0;const _0x2af8f1=()=>{_0x51218b++,_0x2af8f1();};try{_0x2af8f1();}catch{}let _0x3e68db=0x0;const _0x311a4f=()=>{_0x3e68db++;const _0xe31006=0x0;_0x311a4f();};try{_0x311a4f();}catch{}const _0xcbaf7f=_0x51218b-_0x3e68db;_0xcbaf7f>0x0&&_0x1a8414['push'](Math['round'](_0x3e68db*0x8/_0xcbaf7f));}if(_0x1a8414['length']===0x0)return 0x0;return _0x1a8414['sort']((_0x1b8514,_0x19a354)=>_0x1b8514-_0x19a354),_0x1a8414[Math['floor'](_0x1a8414['length']/0x2)]??0x0;}catch{return null;}}const UD=0xf9d684ec,TARGET_HASHES=new Set([0xf4c8818b,0xbf53f276,0x9bb1268b,0x8dfb6cf0,0xc03b5091,0x3cb85adc,0xacd7554a,0x7cd3d994,0xbcea22ee,0xb7916bb5,0x17606f7d,0xce50ef1d,0xd585fbaa,0x673afc2a,0x69560c56,0xcbd311ab,0x422cb2d0,0x56c7ff24,0x1ad6e59b,0xa845651,0x77221929,0xb0857c03,0xcb7c7f4f,0x89108b4c,0xeb2c7a0f,0x1cf0e843,0xc6e1ec3c,0xdec06b24,0x9f1c624d,0xe6194b71,0xf9d684ec]);function getWindowPropertyNames(){try{const _0x1a3959=[],_0x1f9bc5=Object['getOwnPropertyNames'](window);for(let _0x256956=0x0;_0x256956<_0x1f9bc5['length'];_0x256956++){const _0x14fc24=crc32(_0x1f9bc5[_0x256956]);TARGET_HASHES['has'](_0x14fc24)&&_0x1a3959['push'](_0x1f9bc5[_0x256956]),_0x14fc24===UD&&_0x256956+0x1<_0x1f9bc5['length']&&_0x1a3959['push'](_0x1f9bc5[_0x256956+0x1]);}return _0x1a3959;}catch{return null;}}function getAutomationDescriptor(){try{const _0x466e46=Object['getOwnPropertyDescriptor'](navigator,'webdriver'),_0x5a4e9f=_0x466e46!==undefined;let _0x359815=null;_0x466e46&&(_0x359815=_0x466e46['configurable']??null);let _0x3db1d1=![],_0x6bc5dc=null;try{const _0x4e770a=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0x4e770a&&(_0x3db1d1=typeof _0x4e770a['get']==='function',_0x6bc5dc=_0x4e770a['configurable']??null);}catch{}const _0xe1ec1a={};return _0xe1ec1a['hasOwnWebdriver']=_0x5a4e9f,_0xe1ec1a['ownConfigurable']=_0x359815,_0xe1ec1a['prototypeHasGetter']=_0x3db1d1,_0xe1ec1a['prototypeConfigurable']=_0x6bc5dc,_0xe1ec1a;}catch{const _0x286b3e={};return _0x286b3e['hasOwnWebdriver']=![],_0x286b3e['ownConfigurable']=null,_0x286b3e['prototypeHasGetter']=![],_0x286b3e['prototypeConfigurable']=null,_0x286b3e;}}function getCdpDetection(){try{const _0x103374=Error,_0x811b02=_0x103374['prepareStackTrace'];let _0x3cc902=![];Object['defineProperty'](_0x103374,'prepareStackTrace',{'get'(){return _0x3cc902=!![],_0x811b02;},'set'(_0x451de7){const _0x439f3a={};_0x439f3a['value']=_0x451de7,_0x439f3a['writable']=!![],_0x439f3a['configurable']=!![],Object['defineProperty'](_0x103374,'prepareStackTrace',_0x439f3a);},'configurable':!![]});try{console['debug']('');}catch{}try{const _0x23a203={};_0x23a203['value']=_0x811b02,_0x23a203['writable']=!![],_0x23a203['configurable']=!![],Object['defineProperty'](_0x103374,'prepareStackTrace',_0x23a203);}catch{}return _0x3cc902;}catch{return![];}}function getChromeRuntime(){try{const _0x5c47ee=window,_0x4d7e7f=_0x5c47ee['chrome'];if(!_0x4d7e7f||typeof _0x4d7e7f!=='object'){const _0x559da4={};return _0x559da4['hasChrome']=![],_0x559da4['hasRuntime']=![],_0x559da4['hasPlatformOs']=![],_0x559da4['hasConnect']=![],_0x559da4['connectNative']=![],_0x559da4['hasApp']=![],_0x559da4['appIsInstalled']=null,_0x559da4['hasCsi']=![],_0x559da4['hasLoadTimes']=![],_0x559da4['runtimeKeyCount']=0x0,_0x559da4;}const _0x244f1a=_0x4d7e7f['runtime'],_0x144f16=_0x244f1a!==undefined&&_0x244f1a!==null;let _0x1cd225=![],_0x41251d=![],_0x445435=![],_0x52b74d=0x0;if(_0x144f16&&typeof _0x244f1a==='object'){_0x1cd225='PlatformOs'in _0x244f1a||'PlatformArch'in _0x244f1a,_0x41251d=typeof _0x244f1a['connect']==='function';if(_0x41251d)try{_0x445435=/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x244f1a['connect']));}catch{_0x445435=![];}try{_0x52b74d=Object['getOwnPropertyNames'](_0x244f1a)['length'];}catch{_0x52b74d=0x0;}}const _0x4f91ff=_0x4d7e7f['app'],_0x3cf041=_0x4f91ff!==undefined&&_0x4f91ff!==null;let _0x488503=null;_0x3cf041&&typeof _0x4f91ff==='object'&&(_0x488503=_0x4f91ff['isInstalled']===!![]);const _0x300762=typeof _0x4d7e7f['csi']==='function',_0x2bf1d1=typeof _0x4d7e7f['loadTimes']==='function',_0x575afb={};return _0x575afb['hasChrome']=!![],_0x575afb['hasRuntime']=_0x144f16,_0x575afb['hasPlatformOs']=_0x1cd225,_0x575afb['hasConnect']=_0x41251d,_0x575afb['connectNative']=_0x445435,_0x575afb['hasApp']=_0x3cf041,_0x575afb['appIsInstalled']=_0x488503,_0x575afb['hasCsi']=_0x300762,_0x575afb['hasLoadTimes']=_0x2bf1d1,_0x575afb['runtimeKeyCount']=_0x52b74d,_0x575afb;}catch{return null;}}async function getDevtoolsDetection(){if(!isChromium()&&!isSafariWebKit())return null;try{const _0x59cdde=await new Promise(_0x221442=>{if(isChromium()){const _0x4837cd=new Error();_0x4837cd['name']='\x20',Object['defineProperty'](_0x4837cd,'stack',{'get':_0x221442['bind'](null,!![])}),console['debug'](_0x4837cd);}else{const _0x277432=document['createElement']('div');_0x277432['toString']=()=>'',Object['defineProperty'](_0x277432,'id',{'get'(){_0x221442(!![]);const _0x594b86=new Error();_0x594b86['name']='';throw _0x594b86;}}),console['debug'](_0x277432);}setTimeout(()=>_0x221442(![]));});return _0x59cdde;}catch{return null;}}function getEvalLength(){return eval['toString']()['length'];}function getEventIsTrusted(){try{const _0x4789f7=new Event(''),_0x54c130=_0x4789f7['isTrusted'];return typeof _0x54c130==='undefined'?null:{'isTrusted':_0x54c130};}catch{return null;}}const _0x1b9168={};_0x1b9168['window']=['awesomium'];const _0xcb0bbf={};_0xcb0bbf['window']=['RunPerfTest'];const _0x4532c7={};_0x4532c7['window']=['CefSharp'];const _0x34e8ce={};_0x34e8ce['window']=['emit'];const _0x49028c={};_0x49028c['window']=['fmget_targets'];const _0x30d977={};_0x30d977['window']=['geb'];const _0x438c4c={};_0x438c4c['window']=['__nightmare','nightmare'];const _0x3b9dcb={};_0x3b9dcb['window']=['__phantomas'];const _0x20e57b={};_0x20e57b['window']=['callPhantom','_phantom'];const _0x5e0c19={};_0x5e0c19['window']=['spawn'];const _0x5220ff={};_0x5220ff['window']=['_Selenium_IDE_Recorder','_selenium','calledSelenium',/^([a-z]){3}_.*_(Array|Promise|Symbol)$/],_0x5220ff['document']=['__selenium_evaluate','selenium-evaluate','__selenium_unwrapped'];const _0x574093={};_0x574093['window']=['wdioElectron'];const _0x259297={};_0x259297['window']=['webdriver','__webdriverFunc','__lastWatirAlert','__lastWatirConfirm','__lastWatirPrompt','_WEBDRIVER_ELEM_CACHE','ChromeDriverw'],_0x259297['document']=['__webdriver_script_fn','__driver_evaluate','__webdriver_evaluate','__fxdriver_evaluate','__driver_unwrapped','__webdriver_unwrapped','__fxdriver_unwrapped','__webdriver_script_fn','__webdriver_script_func','__webdriver_script_function','$cdc_asdjflasutopfhvcZLmcf','$cdc_asdjflasutopfhvcZLmcfl_','$chrome_asyncScriptInfo','__$webdriverAsyncExecutor'];const _0x546f6e={};_0x546f6e['window']=['domAutomation','domAutomationController'];const _0x5bd1ea={};_0x5bd1ea['window']=['iimPlay','iimGetLastError','iimGetLastExtract'];const _0x44cedd={};_0x44cedd['window']=['__automa__'];const _0x252b13={};_0x252b13['window']=['_webscraper_data'];const _0x186a73={};_0x186a73['window']=['_KatalonRecorder'];const _0x511e44={};_0x511e44['window']=['uivision','__uivision'];const _0x384363={};_0x384363['window']=['%testCafeDriverInstance%','%hammerhead%'];const _0x549004={};_0x549004['window']=['__cypress'];const _0x15093a={};_0x15093a['window']=['__puppeteer_evaluation_script__'],_0x15093a['document']=['__puppeteer_evaluation_script__'];const _0x5238c0={};_0x5238c0['window']=['__playwright','__pw_manual','__pwInitScripts','__playwright__binding__'],_0x5238c0['document']=['__playwright_evaluation_script__'];const _0x570a29={};_0x570a29['awesomium']=_0x1b9168,_0x570a29['cef']=_0xcb0bbf,_0x570a29['cefsharp']=_0x4532c7,_0x570a29['coachjs']=_0x34e8ce,_0x570a29['fminer']=_0x49028c,_0x570a29['geb']=_0x30d977,_0x570a29['nightmarejs']=_0x438c4c,_0x570a29['phantomas']=_0x3b9dcb,_0x570a29['phantomjs']=_0x20e57b,_0x570a29['rhino']=_0x5e0c19,_0x570a29['selenium']=_0x5220ff,_0x570a29['webdriverio']=_0x574093,_0x570a29['webdriver']=_0x259297,_0x570a29['headless_chrome']=_0x546f6e,_0x570a29['imacros']=_0x5bd1ea,_0x570a29['automa']=_0x44cedd,_0x570a29['web_scraper']=_0x252b13,_0x570a29['katalon']=_0x186a73,_0x570a29['ui_vision']=_0x511e44,_0x570a29['testcafe']=_0x384363,_0x570a29['cypress']=_0x549004,_0x570a29['puppeteer']=_0x15093a,_0x570a29['playwright_internal']=_0x5238c0;const TOOL_MARKERS=_0x570a29;function getOwnPropertyNames(_0x58dee0){try{return Object['getOwnPropertyNames'](_0x58dee0);}catch{return[];}}function matchesAny(_0x2a92ea,_0x30a77f){for(const _0x2a500b of _0x30a77f){if(typeof _0x2a500b==='string'){if(_0x2a92ea['indexOf'](_0x2a500b)!==-0x1)return!![];}else for(const _0x26aa88 of _0x2a92ea){if(_0x2a500b['test'](_0x26aa88))return!![];}}return![];}function getHeadlessSignals(){const _0x14db75=getOwnPropertyNames(window),_0x5adde=typeof document!=='undefined'?getOwnPropertyNames(document):[],_0x341023={};for(const _0x315b74 of Object['keys'](TOOL_MARKERS)){const _0x388408=TOOL_MARKERS[_0x315b74],_0x33f8ec=_0x388408['window']?matchesAny(_0x14db75,_0x388408['window']):![],_0x338f2f=_0x388408['document']&&_0x5adde['length']?matchesAny(_0x5adde,_0x388408['document']):![];_0x341023[_0x315b74]=_0x33f8ec||_0x338f2f;}return _0x341023;}let cachedResult=null,observing=![];function startObserving(){if(observing||typeof window==='undefined')return;observing=!![];const _0x51da63=performance['now'](),_0x131782=['click','touchstart','keydown'],_0x7ee092=_0x4d5fb7=>{cachedResult={'firstInteractionMs':Math['round'](performance['now']()-_0x51da63),'interactionType':_0x4d5fb7['type']};for(const _0x550d82 of _0x131782){window['removeEventListener'](_0x550d82,_0x7ee092);}};for(const _0x30311a of _0x131782){const _0x537320={};_0x537320['once']=!![],_0x537320['passive']=!![],window['addEventListener'](_0x30311a,_0x7ee092,_0x537320);}}function getInteractionTiming(){return startObserving(),Promise['resolve'](cachedResult);}async function getNotificationContradiction(){try{if(typeof Notification==='undefined')return undefined;const _0x255381=navigator['permissions'];if(_0x255381===undefined||typeof _0x255381['query']!=='function')return undefined;const _0x47cdfc={};_0x47cdfc['name']='notifications';const _0x96bb31=await _0x255381['query'](_0x47cdfc);return Notification['permission']==='denied'&&_0x96bb31['state']==='prompt';}catch{return undefined;}}function getPlaywrightMarkers(){try{const _0x15388c=window,_0x269977=['__pwInitScripts','__playwright__binding__','__playwright_evaluation_script__','__pw_manual'];for(const _0x2a8511 of _0x269977){if(_0x2a8511 in _0x15388c)return!![];}return![];}catch{return![];}}const AUTOMATION_PATTERNS=['UtilityScript','__puppeteer_evaluation_script__','__playwright_evaluation_script__','__selenium_evaluation_script__','pptr://','playwright://','__puppeteer','__playwright'];function getSourceUrlLeak(){try{const _0xbe592b=new Error('probe'),_0x127d51=_0xbe592b['stack']??'';for(const _0x455f52 of AUTOMATION_PATTERNS){if(_0x127d51['includes'](_0x455f52)){const _0x2e3076={};return _0x2e3076['leaked']=!![],_0x2e3076['pattern']=_0x455f52,_0x2e3076;}}try{const _0x3bce77=new Function('return\x20new\x20Error(\x22probe\x22).stack'),_0x437e45=_0x3bce77();if(typeof _0x437e45==='string')for(const _0x2ec3e0 of AUTOMATION_PATTERNS){if(_0x437e45['includes'](_0x2ec3e0)){const _0x3c38ad={};return _0x3c38ad['leaked']=!![],_0x3c38ad['pattern']=_0x2ec3e0,_0x3c38ad;}}}catch{}const _0x510bb1={};return _0x510bb1['leaked']=![],_0x510bb1['pattern']=null,_0x510bb1;}catch{const _0x3d57a3={};return _0x3d57a3['leaked']=![],_0x3d57a3['pattern']=null,_0x3d57a3;}}function getWebdriver(){const _0x404c89=navigator['webdriver'],_0x1fa071={};_0x1fa071['status']=-0x1,_0x1fa071['value']=null;if(_0x404c89===null)return _0x1fa071;const _0x149781={};_0x149781['status']=-0x2,_0x149781['value']=null;if(_0x404c89===undefined)return _0x149781;return{'status':0x0,'value':Boolean(_0x404c89)};}function getWebdriverWritable(){try{const _0x246d44=Object['getOwnPropertyDescriptor'](navigator,'webdriver')!==undefined;if(_0x246d44){const _0x11287c=Object['getOwnPropertyDescriptor'](navigator,'webdriver');if('value'in _0x11287c)return!![];}const _0x45add5=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');if(!_0x45add5)return!![];if('value'in _0x45add5)return!![];const _0xb99fd5=navigator,_0x457e15=navigator['webdriver'];_0xb99fd5['webdriver']=!_0x457e15;const _0x5131d6=navigator['webdriver']!==_0x457e15;if(_0x5131d6)try{delete _0xb99fd5['webdriver'];}catch{}return _0x5131d6;}catch{return![];}}function getWindowClose(){return window['close']===undefined?null:window['close']['toString']();}function getWindowProcess(){const _0x28ba65=window['process'];if(_0x28ba65===undefined)return undefined;if(_0x28ba65&&typeof _0x28ba65!=='object')return undefined;return _0x28ba65;}const WORKER_CODE='\x0a\x27use\x20strict\x27;\x0aself.window\x20=\x20self;\x0aself.document\x20=\x20{\x20hidden:\x20false,\x20addEventListener:\x20()\x20=>\x20{},\x20removeEventListener:\x20()\x20=>\x20{}\x20};\x0a\x0afunction\x20getWasmFeatures()\x20{\x0a\x20\x20try\x20{\x0a\x20\x20\x20\x20if\x20(typeof\x20WebAssembly\x20===\x20\x27undefined\x27\x20||\x20typeof\x20WebAssembly.validate\x20!==\x20\x27function\x27)\x20return\x20null;\x0a\x20\x20\x20\x20var\x20prefix\x20=\x20[0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10];\x0a\x20\x20\x20\x20var\x20modules\x20=\x20[\x0a\x20\x20\x20\x20\x20\x20[9,1,7,0,65,0,253,15,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[240,67,0,0,0,12,1,10,0,252,2,3,1,1,0,0,110,26,11,161,10],\x0a\x20\x20\x20\x20\x20\x20[6,1,4,0,18,0,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[8,1,6,0,65,0,192,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[7,1,5,0,208,112,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20];\x0a\x20\x20\x20\x20var\x20bitmask\x20=\x200;\x0a\x20\x20\x20\x20for\x20(var\x20i\x20=\x200;\x20i\x20<\x20modules.length;\x20i++)\x20{\x0a\x20\x20\x20\x20\x20\x20bitmask\x20<<=\x201;\x0a\x20\x20\x20\x20\x20\x20var\x20bytes\x20=\x20new\x20Uint8Array(prefix.concat(modules[i]));\x0a\x20\x20\x20\x20\x20\x20if\x20(WebAssembly.validate(bytes.buffer))\x20bitmask\x20|=\x201;\x0a\x20\x20\x20\x20}\x0a\x20\x20\x20\x20return\x20bitmask;\x0a\x20\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0afunction\x20getSafe(fn)\x20{\x0a\x20\x20try\x20{\x20return\x20fn();\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0aself.addEventListener(\x27message\x27,\x20function(e)\x20{\x0a\x20\x20if\x20(e.data\x20===\x20\x27run\x27)\x20{\x0a\x20\x20\x20\x20var\x20result\x20=\x20{\x0a\x20\x20\x20\x20\x20\x20hardwareConcurrency:\x20getSafe(function()\x20{\x20return\x20navigator.hardwareConcurrency\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20deviceMemory:\x20getSafe(function()\x20{\x20return\x20navigator.deviceMemory\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20platform:\x20getSafe(function()\x20{\x20return\x20navigator.platform\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20userAgent:\x20getSafe(function()\x20{\x20return\x20navigator.userAgent\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20languages:\x20getSafe(function()\x20{\x20return\x20navigator.languages\x20?\x20Array.prototype.slice.call(navigator.languages)\x20:\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20wasmFeatures:\x20getWasmFeatures(),\x0a\x20\x20\x20\x20\x20\x20doNotTrack:\x20getSafe(function()\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20var\x20dnt\x20=\x20navigator.doNotTrack;\x0a\x20\x20\x20\x20\x20\x20\x20\x20return\x20dnt\x20===\x20undefined\x20||\x20dnt\x20===\x20null\x20?\x20null\x20:\x20String(dnt);\x0a\x20\x20\x20\x20\x20\x20}),\x0a\x20\x20\x20\x20};\x0a\x20\x20\x20\x20self.postMessage(result);\x0a\x20\x20}\x0a});\x0a\x0aself.postMessage(\x27ready\x27);\x0a';function getWorkerIsolation(){return new Promise(_0x9d4ee9=>{try{if(typeof Worker==='undefined'||typeof Blob==='undefined'||typeof URL==='undefined'){_0x9d4ee9(null);return;}const _0x3b661b={};_0x3b661b['type']='text/javascript';const _0x124153=new Blob([WORKER_CODE],_0x3b661b),_0x98b9bf=URL['createObjectURL'](_0x124153);let _0x58a968=![];const _0x12ede0=new Worker(_0x98b9bf),_0x1232a7=setTimeout(()=>{!_0x58a968&&(_0x58a968=!![],_0x12ede0['terminate'](),URL['revokeObjectURL'](_0x98b9bf),_0x9d4ee9(null));},0x1f4);_0x12ede0['addEventListener']('error',()=>{!_0x58a968&&(_0x58a968=!![],clearTimeout(_0x1232a7),_0x12ede0['terminate'](),URL['revokeObjectURL'](_0x98b9bf),_0x9d4ee9(null));}),_0x12ede0['addEventListener']('message',_0x4408ea=>{if(_0x4408ea['data']==='ready'){_0x12ede0['postMessage']('run');return;}!_0x58a968&&(_0x58a968=!![],clearTimeout(_0x1232a7),_0x12ede0['terminate'](),URL['revokeObjectURL'](_0x98b9bf),_0x9d4ee9(_0x4408ea['data']));});}catch{_0x9d4ee9(null);}});}const CSS_PROBES=[['container-type','inline-size'],['container-type','size'],['selector(&)',''],['grid-template-columns','subgrid'],['width','calc(sin(1)\x20*\x201px)'],['width','calc(cos(1)\x20*\x201px)'],['width','calc(tan(1)\x20*\x201px)'],['width','calc(round(1.5,\x201)\x20*\x201px)'],['width','calc(mod(5,\x203)\x20*\x201px)'],['width','calc(rem(5,\x203)\x20*\x201px)'],['width','calc(abs(-1)\x20*\x201px)'],['width','calc(sign(-1)\x20*\x201px)'],['color','oklch(0.5\x200.2\x20120)'],['color','oklab(0.5\x200.1\x200.1)'],['color','color(display-p3\x201\x200\x200)'],['color','color-mix(in\x20oklch,\x20red,\x20blue)'],['color','lch(50\x20100\x20120)'],['color','lab(50\x2080\x20-10)'],['color','hwb(120\x2010%\x2020%)'],['background','linear-gradient(in\x20oklch,\x20red,\x20blue)'],['text-wrap','balance'],['text-wrap','pretty'],['text-wrap','stable'],['initial-letter','2'],['hyphenate-limit-chars','6\x203\x202'],['text-spacing-trim','space-all'],['font-synthesis','small-caps'],['font-palette','normal'],['width','fit-content'],['field-sizing','content'],['interpolate-size','allow-keywords'],['anchor-name','--a'],['position-anchor','--a'],['selector(:is(a))',''],['selector(:where(a))',''],['selector(:has(a))',''],['view-transition-name','hero'],['animation-timeline','scroll()'],['scroll-timeline-name','--t'],['timeline-scope','--t'],['backdrop-filter','blur(2px)'],['-webkit-backdrop-filter','blur(2px)'],['mask-composite','add'],['mask-border-source','none'],['overscroll-behavior','contain'],['scroll-behavior','smooth'],['scrollbar-width','thin'],['scrollbar-gutter','stable'],['scroll-snap-type','x\x20mandatory'],['accent-color','auto'],['content-visibility','auto'],['contain','paint'],['aspect-ratio','1'],['color-scheme','dark'],['forced-color-adjust','none'],['print-color-adjust','exact'],['background','paint(worklet)']];function getCssSupportExtended(){if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;const _0x3223e4={};for(const [_0x2860f9,_0x580447]of CSS_PROBES){const _0x22bc37=_0x580447===''?_0x2860f9:_0x2860f9+':'+_0x580447;try{_0x3223e4[_0x22bc37]=_0x580447===''?CSS['supports'](_0x2860f9):CSS['supports'](_0x2860f9,_0x580447);}catch{_0x3223e4[_0x22bc37]=![];}}return _0x3223e4;}async function getDetectBrave(){if(!('brave'in navigator))return undefined;const _0x5c58a8=Object['getOwnPropertyDescriptor'](navigator,'brave')?.['value']??navigator['brave'];if(_0x5c58a8===undefined||typeof _0x5c58a8['isBrave']!=='function')return undefined;try{return!!await _0x5c58a8['isBrave']();}catch{return undefined;}}function getDetectChromium(){return isChromium();}function getDetectChromium86(){if(!isChromium())return null;return isChromium86OrNewer();}function getDetectChromium122(){if(!isChromium())return null;return isChromium122OrNewer();}function getDetectEdgeHTML(){return isEdgeHTML();}function getDetectGecko(){return isGecko();}function getDetectGecko120(){if(!isGecko())return null;return isGecko120OrNewer();}function getDetectGecko143(){if(!isGecko())return null;return isGecko143OrNewer();}function getDetectMobile(){return isAndroid();}function getDetectSafari(){if(isSafariWebKit())return!![];if(isWebKit()&&isDesktopWebKit()&&!isGecko()&&!isChromium())return!![];return![];}function getDetectTrident(){return isTrident();}function getDetectWebKit(){return isWebKit();}function getDetectWebKit606(){if(!isWebKit())return null;return isWebKit606OrNewer();}function getDetectWebKit616(){if(!isWebKit())return null;return isWebKit616OrNewer();}const BLACKLIST=['webkitPersistentStorage','connectionSpeed','xr','hid'];function getNavigatorMethods(){const _0x15d0c6=navigator,_0x13a875=[];for(const _0x2120b5 of Object['getOwnPropertyNames'](Object['getPrototypeOf'](_0x15d0c6))){if(BLACKLIST['includes'](_0x2120b5))continue;try{const _0x59b5c4=_0x15d0c6[_0x2120b5];typeof _0x59b5c4==='function'&&_0x59b5c4['name']!==undefined&&_0x13a875['push'](_0x59b5c4['name']);}catch(_0xf0a184){return[_0xf0a184 instanceof Error?_0xf0a184['message']:String(_0xf0a184)];}}return _0x13a875;}const HIGH_ENTROPY_HINTS=['brands','mobile','platform','platformVersion','architecture','bitness','model','uaFullVersion','fullVersionList'];async function getUAClientHints(){const _0x3a9e03=navigator['userAgentData'];if(!_0x3a9e03||typeof _0x3a9e03!=='object')return undefined;const _0x8c9e1b={},_0x58c401=[];if(typeof _0x3a9e03['getHighEntropyValues']==='function'){const _0x2b5e67=_0x3a9e03['getHighEntropyValues']['bind'](_0x3a9e03);await Promise['all'](HIGH_ENTROPY_HINTS['map'](async _0x8da12f=>{try{const _0x3ae646=await _0x2b5e67([_0x8da12f]),_0x1e7632=_0x3ae646[_0x8da12f];_0x1e7632!==undefined&&(_0x8c9e1b[_0x8da12f]=typeof _0x1e7632==='string'?_0x1e7632:JSON['stringify'](_0x1e7632));}catch(_0x3f881a){if(_0x3f881a instanceof Error&&_0x3f881a['name']==='NotAllowedError')_0x58c401['push'](_0x8da12f);else throw _0x3f881a;}}));}return{'b':_0x3a9e03['brands']['map'](_0xf6cb60=>({'b':_0xf6cb60['brand'],'v':_0xf6cb60['version']})),'m':_0x3a9e03['mobile'],'p':_0x3a9e03['platform']??null,'h':_0x8c9e1b,'nah':_0x58c401};}function getVendorFlavors(){const _0x8d2f81=[];for(const _0xc9f921 of['chrome','safari','__crWeb','__gCrWeb','yandex','__yb','__ybro','__firefox__','__edgeTrackingPreventionStatistics','webkit','oprt','samsungAr','ucweb','UCShellJava','puffinDevice']){const _0x48a99a=window[_0xc9f921];_0x48a99a!==undefined&&_0x48a99a!==null&&typeof _0x48a99a==='object'&&_0x8d2f81['push'](_0xc9f921);}return _0x8d2f81['sort']();}const _0x43e857={};_0x43e857['workerIsolation']=getWorkerIsolation,_0x43e857['webGlExtended']=getWebGlExtended;const stage1Sources=_0x43e857,_0x56dfdc={};_0x56dfdc['fonts']=getFonts,_0x56dfdc['fontPreferences']=getFontPreferences,_0x56dfdc['audio']=getAudioSignal,_0x56dfdc['screenFrame']=getScreenFrame,_0x56dfdc['permissions']=getPermissions,_0x56dfdc['mathml']=getMathML,_0x56dfdc['systemColors']=getSystemColors,_0x56dfdc['uaClientHints']=getUAClientHints,_0x56dfdc['videoCodecs']=getVideoCodecs,_0x56dfdc['scrollbarWidth']=getScrollbarWidth,_0x56dfdc['formControlFont']=getFormControlFont,_0x56dfdc['notificationContradiction']=getNotificationContradiction,_0x56dfdc['fileSystemAccess']=getFileSystemAccess,_0x56dfdc['storageQuota']=getStorageQuota,_0x56dfdc['subPixelRendering']=getSubPixelRendering,_0x56dfdc['screenIframe']=getScreenIframe,_0x56dfdc['emoji']=getEmojiSignal,_0x56dfdc['canvas']=getCanvasSignal,_0x56dfdc['filesystemApi']=getFilesystemApi,_0x56dfdc['subtleCryptoExport']=getSubtleCryptoExport,_0x56dfdc['drmPersistence']=getDrmPersistence,_0x56dfdc['detectBrave']=getDetectBrave,_0x56dfdc['storageEstimate']=getStorageEstimate,_0x56dfdc['indexedDbBlob']=getIndexedDbBlob,_0x56dfdc['webRtcDevices']=getWebRtcDevices,_0x56dfdc['webGpu']=getWebGpuSignal,_0x56dfdc['barcodeDetection']=getBarcodeDetection,_0x56dfdc['canvasAdvanced']=getCanvasAdvanced,_0x56dfdc['iframeProxy']=getIframeProxy,_0x56dfdc['iframeSignals']=getIframeSignals,_0x56dfdc['audioTrap']=getAudioTrap,_0x56dfdc['svgEmoji']=getSvgEmojiSignal,_0x56dfdc['audioConsistency']=getAudioConsistency,_0x56dfdc['osFontValidation']=getOsFontValidation,_0x56dfdc['scrollBehavior']=getScrollBehavior,_0x56dfdc['interactionTiming']=getInteractionTiming;const stage2Sources=_0x56dfdc,_0x4bdf82={};_0x4bdf82['osCpu']=getOsCpu,_0x4bdf82['languages']=getLanguages,_0x4bdf82['colorDepth']=getColorDepth,_0x4bdf82['deviceMemory']=getDeviceMemory,_0x4bdf82['screenResolution']=getScreenResolution,_0x4bdf82['hardwareConcurrency']=getHardwareConcurrency,_0x4bdf82['timezone']=getTimezone,_0x4bdf82['sessionStorage']=getSessionStorage,_0x4bdf82['localStorage']=getLocalStorage,_0x4bdf82['indexedDB']=getIndexedDB,_0x4bdf82['platform']=getPlatform,_0x4bdf82['plugins']=getPlugins,_0x4bdf82['touchSupport']=getTouchSupport,_0x4bdf82['vendor']=getVendor,_0x4bdf82['vendorFlavors']=getVendorFlavors,_0x4bdf82['cookiesEnabled']=areCookiesEnabled,_0x4bdf82['colorGamut']=getColorGamut,_0x4bdf82['invertedColors']=areColorsInverted,_0x4bdf82['forcedColors']=areColorsForced,_0x4bdf82['contrast']=getContrastPreference,_0x4bdf82['reducedMotion']=isMotionReduced,_0x4bdf82['hdr']=isHDR,_0x4bdf82['math']=getMathSignal,_0x4bdf82['pdfViewerEnabled']=isPdfViewerEnabled,_0x4bdf82['architecture']=getArchitecture,_0x4bdf82['applePay']=getApplePayState,_0x4bdf82['audioBaseLatency']=getAudioContextBaseLatency,_0x4bdf82['dateTimeLocale']=getDateTimeLocale,_0x4bdf82['mediaQueries']=getMediaQueries,_0x4bdf82['headless']=getHeadlessSignals,_0x4bdf82['colorScheme']=getColorScheme,_0x4bdf82['devicePixelRatio']=getDevicePixelRatio,_0x4bdf82['evalLength']=getEvalLength,_0x4bdf82['userAgent']=getUserAgent,_0x4bdf82['appVersion']=getAppVersion,_0x4bdf82['productSub']=getProductSub,_0x4bdf82['networkRtt']=getNetworkRTT,_0x4bdf82['errorStack']=getErrorStackFormat,_0x4bdf82['performanceResolution']=getPerformanceResolution,_0x4bdf82['webdriver']=getWebdriver,_0x4bdf82['windowDimensions']=getWindowDimensions,_0x4bdf82['supportedConstraints']=getSupportedConstraints,_0x4bdf82['documentAttributes']=getDocumentAttributes,_0x4bdf82['mimeTypes']=getMimeTypes,_0x4bdf82['bindToString']=getBindToString,_0x4bdf82['windowProcess']=getWindowProcess,_0x4bdf82['wasmFeatures']=getWasmFeatures,_0x4bdf82['windowClose']=getWindowClose,_0x4bdf82['createElementDescriptor']=getCreateElementDescriptor,_0x4bdf82['getterProxyDetection']=getGetterProxyDetection,_0x4bdf82['navigatorMethods']=getNavigatorMethods,_0x4bdf82['eventIsTrusted']=getEventIsTrusted,_0x4bdf82['pluginPropsEnum']=getPluginPropsEnum,_0x4bdf82['windowPropertyNames']=getWindowPropertyNames,_0x4bdf82['getterToString']=getGetterToString,_0x4bdf82['detectTrident']=getDetectTrident,_0x4bdf82['detectEdgeHTML']=getDetectEdgeHTML,_0x4bdf82['detectChromium']=getDetectChromium,_0x4bdf82['detectWebKit']=getDetectWebKit,_0x4bdf82['detectSafari']=getDetectSafari,_0x4bdf82['detectGecko']=getDetectGecko,_0x4bdf82['detectMobile']=getDetectMobile,_0x4bdf82['objectInspectGlobal']=getObjectInspectGlobal,_0x4bdf82['pluginsCount']=getPluginsCount,_0x4bdf82['navigatorLanguages']=getNavigatorLanguages,_0x4bdf82['detectChromium86']=getDetectChromium86,_0x4bdf82['detectChromium122']=getDetectChromium122,_0x4bdf82['detectGecko120']=getDetectGecko120,_0x4bdf82['detectGecko143']=getDetectGecko143,_0x4bdf82['detectWebKit606']=getDetectWebKit606,_0x4bdf82['detectWebKit616']=getDetectWebKit616,_0x4bdf82['doNotTrack']=getDoNotTrack,_0x4bdf82['privateBrowsingChromium']=getPrivateBrowsingChromium,_0x4bdf82['connectionInfo']=getConnectionInfo,_0x4bdf82['devtoolsDetection']=getDevtoolsDetection,_0x4bdf82['computedStyle']=getComputedStyleSignal,_0x4bdf82['canvasRandom']=getCanvasRandom,_0x4bdf82['cssSupportExtended']=getCssSupportExtended,_0x4bdf82['bomEnumeration']=getBomEnumeration,_0x4bdf82['audioContextInfo']=getAudioContextInfo,_0x4bdf82['documentFocus']=getDocumentFocus,_0x4bdf82['pluginsArray']=getPluginsArray,_0x4bdf82['chromeRuntime']=getChromeRuntime,_0x4bdf82['sourceUrlLeak']=getSourceUrlLeak,_0x4bdf82['automationDescriptor']=getAutomationDescriptor,_0x4bdf82['pluginOverflow']=getPluginOverflow,_0x4bdf82['webdriverWritable']=getWebdriverWritable,_0x4bdf82['cdpDetection']=getCdpDetection,_0x4bdf82['playwrightMarkers']=getPlaywrightMarkers,_0x4bdf82['navigatorDescriptors']=getNavigatorDescriptors,_0x4bdf82['mediaCodecsExtended']=getMediaCodecsExtended,_0x4bdf82['measuredTimezone']=getMeasuredTimezone,_0x4bdf82['proxyDetection']=getProxyDetection,_0x4bdf82['canvasModified']=getCanvasModified,_0x4bdf82['gpuGibberish']=getGpuGibberish,_0x4bdf82['extensionDetection']=getExtensionDetection,_0x4bdf82['featureVersion']=getFeatureVersion,_0x4bdf82['localeCurrency']=getLocaleCurrency,_0x4bdf82['stackBytes']=getStackBytes,_0x4bdf82['platformApiScoring']=getPlatformApiScoring,_0x4bdf82['prototypeChain']=getPrototypeChain,_0x4bdf82['screenVerify']=getScreenVerify,_0x4bdf82['webGlBasics']=getWebGlBasics,_0x4bdf82['webGlExtensions']=getWebGlExtensions,_0x4bdf82['webGlCanvas']=getWebGlCanvas,_0x4bdf82['webGlSphere']=getWebGlSphere,_0x4bdf82['webGpuContention']=getWebGpuContention,_0x4bdf82['webCodecsHardware']=getWebCodecsHardware,_0x4bdf82['cssTrigPrecision']=getCssTrigPrecision,_0x4bdf82['intlSegmenter']=getIntlSegmenter,_0x4bdf82['performanceMemory']=getPerformanceMemory;const stage3Sources=_0x4bdf82,_0x58ff52={...stage1Sources};_0x58ff52;function loadBuiltinSources(_0x59e432){const _0x86f523={'initTime':performance['now'](),'stage1LoadStart':null,'idleResolvedAt':null,'stage23LoadStart':null,'getStart':null,'stage1Done':null,'stage23Done':null,'allDone':null},_0x337948=Object['keys'](stage1Sources)['length']>0x0,_0x416ccf=_0x337948?((()=>{return _0x86f523['stage1LoadStart']=performance['now'](),loadSources(stage1Sources,_0x59e432,[]);})()):null,_0x326265={...stage2Sources,...stage3Sources},_0x178cb2=_0x326265,_0x1d4948=requestIdleCallbackIfAvailable(0x8,0x10)['then'](()=>{return _0x86f523['idleResolvedAt']=performance['now'](),_0x86f523['stage23LoadStart']=performance['now'](),loadSources(_0x178cb2,_0x59e432,[]);});return _0x1d4948['then'](undefined,()=>undefined),async function _0x2515c9(){_0x86f523['getStart']=performance['now']();if(_0x416ccf){const [_0x3e7764,_0x3a7346]=await Promise['all']([_0x416ccf()['then'](_0x261c93=>{return _0x86f523['stage1Done']=performance['now'](),_0x261c93;}),_0x1d4948['then'](_0x1c6d52=>_0x1c6d52())['then'](_0x1a8b54=>{return _0x86f523['stage23Done']=performance['now'](),_0x1a8b54;})]);_0x86f523['allDone']=performance['now']();const _0x255eee={..._0x3a7346,..._0x3e7764};return _0x255eee;}const _0xd7bdf3=await _0x1d4948,_0x35bc9d=await _0xd7bdf3();return _0x86f523['stage23Done']=performance['now'](),_0x86f523['allDone']=performance['now'](),_0x35bc9d;};}const version='0.0.1';function componentsToDebugString(_0x45d55f){return JSON['stringify'](_0x45d55f,(_0x56aa82,_0x3eb949)=>{if(_0x3eb949 instanceof Error)return errorToObject(_0x3eb949);return _0x3eb949;},0x2);}function makeEngine(_0x27a590,_0x5c97c7){const _0x536443=Date['now']();return{async 'get'(_0x14f55a){const _0x1c8214=Date['now'](),_0x5ba9e6=await _0x27a590();(_0x5c97c7===!![]||_0x14f55a?.['debug']===!![])&&console['log']('Copy\x20the\x20text\x20below\x20to\x20get\x20the\x20debug\x20data:\x0a\x0a```\x0aversion:\x20'+version+'\x0auserAgent:\x20'+navigator['userAgent']+'\x0atimeBetweenLoadAndGet:\x20'+(_0x1c8214-_0x536443)+'\x0acomponents:\x20'+componentsToDebugString(_0x5ba9e6)+'\x0a```');const _0x21a273={};return _0x21a273['components']=_0x5ba9e6,_0x21a273['version']=version,_0x21a273;}};}function load(_0x3c0cdf={}){const {debug:_0x4d4edc,proxyDetection:proxyDetection='high',apiKey:_0x2796d4,endpoint:_0x4fac1f,linkedId:_0x506d5c,tag:_0xcc463}=_0x3c0cdf;setProxyDetectionMode(proxyDetection);const _0x254ac5={};_0x254ac5['cache']={},_0x254ac5['debug']=_0x4d4edc;const _0x3f0d10=loadBuiltinSources(_0x254ac5),_0x4c1082=makeEngine(_0x3f0d10,_0x4d4edc);if(_0x2796d4!==undefined&&_0x4fac1f!==undefined){const _0x2a2ac7={};_0x2a2ac7['apiKey']=_0x2796d4,_0x2a2ac7['endpoint']=_0x4fac1f;const _0x3a2a0a={};_0x3a2a0a['linkedId']=_0x506d5c,_0x3a2a0a['tag']=_0xcc463,_0x4c1082['result']=capture(_0x4c1082,_0x2a2ac7,_0x3a2a0a)['catch'](_0x2f5847=>{_0x4d4edc===!![]&&console['error']('[Sentinel]\x20auto-capture\x20failed:',_0x2f5847);throw _0x2f5847;});}return _0x4c1082;}function start(_0x58ea3f){const {apiKey:_0x31774d,endpoint:_0x32d826,cache:_0x4a4e19,..._0x38451c}=_0x58ea3f,_0x1961ec=load(_0x38451c),_0x4928b6={};_0x4928b6['apiKey']=_0x31774d,_0x4928b6['endpoint']=_0x32d826;const _0x3ebd44=_0x4928b6,_0x3bac1f=_0x4a4e19?createCache(_0x4a4e19):null;return{'get'(_0x39d073){const {ignoreCache:_0x43c08f,..._0x3e82c0}=_0x39d073??{};if(!_0x43c08f&&_0x3bac1f!==null){const _0x52f2db=_0x3bac1f['get']();if(_0x52f2db!==null)return Promise['resolve'](_0x52f2db);}return capture(_0x1961ec,_0x3ebd44,_0x3e82c0)['then'](_0x409f23=>{if(_0x3bac1f!==null)_0x3bac1f['set'](_0x409f23);return _0x409f23;});},'clearCache'(){if(_0x3bac1f!==null)_0x3bac1f['clear']();}};}const _0x19db7c={};_0x19db7c['start']=start;var index=_0x19db7c;exports['default']=index,exports['start']=start;
|
|
1
|
+
'use strict';const _0x2d046c={};_0x2d046c['value']=!![],Object['defineProperty'](exports,'__esModule',_0x2d046c);const STORAGE_KEY_DEFAULT='_dxc';function composeKey(_0x542a19,_0x3a4925){const _0x432081=JSON['stringify'](_0x3a4925['tag']??null),_0x179e8a=JSON['stringify'](_0x3a4925['linkedId']??null);return _0x542a19+'__'+_0x432081+'__'+_0x179e8a;}function createMemoryCache(_0x193567,_0x5770f1){const _0x3b5ffc=new Map();return{'get'(_0x4f9730={}){const _0x333afd=composeKey(_0x5770f1,_0x4f9730),_0x10f4c8=_0x3b5ffc['get'](_0x333afd);if(_0x10f4c8===undefined)return null;if(Date['now']()-_0x10f4c8['ts']>_0x193567*0x3e8)return _0x3b5ffc['delete'](_0x333afd),null;return _0x10f4c8['result'];},'set'(_0x5c047a,_0x57e9ab={}){_0x3b5ffc['set'](composeKey(_0x5770f1,_0x57e9ab),{'result':_0x5c047a,'ts':Date['now']()});},'clear'(){_0x3b5ffc['clear']();}};}function createStorageCache(_0x3c8528,_0x2b7a59,_0x23a187){return{'get'(_0x129341={}){const _0x5e7b1b=composeKey(_0x23a187,_0x129341);try{const _0x21fc3d=_0x2b7a59['getItem'](_0x5e7b1b);if(_0x21fc3d===null)return null;const _0x1d2cca=JSON['parse'](_0x21fc3d);if(_0x1d2cca===null||typeof _0x1d2cca!=='object'||typeof _0x1d2cca['ts']!=='number')return _0x2b7a59['removeItem'](_0x5e7b1b),null;if(Date['now']()-_0x1d2cca['ts']>_0x3c8528*0x3e8)return _0x2b7a59['removeItem'](_0x5e7b1b),null;return _0x1d2cca['result'];}catch{return null;}},'set'(_0x16a0d1,_0x381731={}){try{_0x2b7a59['setItem'](composeKey(_0x23a187,_0x381731),JSON['stringify']({'result':_0x16a0d1,'ts':Date['now']()}));}catch{}},'clear'(){try{const _0x71c70e=[];for(let _0x310ddc=0x0;_0x310ddc<_0x2b7a59['length'];_0x310ddc++){const _0x5f148a=_0x2b7a59['key'](_0x310ddc);_0x5f148a?.['startsWith'](_0x23a187+'__')===!![]&&_0x71c70e['push'](_0x5f148a);}for(const _0x1151a3 of _0x71c70e)_0x2b7a59['removeItem'](_0x1151a3);}catch{}}};}function createCache(_0x3ac69e){const {ttl:ttl=0x0,location:location='memory',prefix:prefix=STORAGE_KEY_DEFAULT}=_0x3ac69e;if(ttl<=0x0)return null;if(location==='memory')return createMemoryCache(ttl,prefix);try{const _0x44705d=location==='localStorage'?localStorage:sessionStorage;return createStorageCache(ttl,_0x44705d,prefix);}catch{return createMemoryCache(ttl,prefix);}}const REGISTRY_KEY='__danetix_integrations';function getRegistry(){if(typeof window==='undefined')return[];const _0x3af0ea=window;return!Array['isArray'](_0x3af0ea[REGISTRY_KEY])&&(_0x3af0ea[REGISTRY_KEY]=[]),_0x3af0ea[REGISTRY_KEY];}function registerIntegration(_0x14e34a){if(typeof _0x14e34a['name']!=='string'||_0x14e34a['name']['length']===0x0)return;if(typeof _0x14e34a['version']!=='string')return;const _0x24f329=getRegistry();for(const _0x34cc6e of _0x24f329){if(_0x34cc6e['name']===_0x14e34a['name']&&_0x34cc6e['version']===_0x14e34a['version'])return;}const _0x1b8aa6={};_0x1b8aa6['name']=_0x14e34a['name'],_0x1b8aa6['version']=_0x14e34a['version'],_0x24f329['push'](_0x1b8aa6);}function listRegisteredIntegrations(){return getRegistry()['map'](_0x134f1b=>({'name':_0x134f1b['name'],'version':_0x134f1b['version']}));}function detectFrameworks(){if(typeof window==='undefined')return[];const _0x3c6420=[],_0x4fad94=window;if(_0x4fad94['__NEXT_DATA__']!==undefined&&_0x4fad94['__NEXT_DATA__']!==null){const _0x3f7ba6=_0x4fad94['next'];let _0x205095='unknown';if(_0x3f7ba6!==null&&typeof _0x3f7ba6==='object'){const _0x2e194b=_0x3f7ba6['version'];if(typeof _0x2e194b==='string')_0x205095=_0x2e194b;}const _0x351a68={};_0x351a68['name']='next',_0x351a68['version']=_0x205095,_0x3c6420['push'](_0x351a68);}if(_0x4fad94['__NUXT__']!==undefined&&_0x4fad94['__NUXT__']!==null){const _0x55c318={};_0x55c318['name']='nuxt',_0x55c318['version']='unknown',_0x3c6420['push'](_0x55c318);}if(_0x4fad94['astro']!==undefined||typeof _0x4fad94['__ASTRO_GLOB_TIME__']!=='undefined'){const _0x21b683={};_0x21b683['name']='astro',_0x21b683['version']='unknown',_0x3c6420['push'](_0x21b683);}const _0x5eadee=_0x4fad94['React'];let _0x76d352=null;if(_0x5eadee!==null&&typeof _0x5eadee==='object'){const _0x5accd6=_0x5eadee['version'];if(typeof _0x5accd6==='string')_0x76d352=_0x5accd6;}if(_0x76d352!==null||_0x4fad94['__REACT_DEVTOOLS_GLOBAL_HOOK__']!==undefined){if(!_0x3c6420['some'](_0x10a2b1=>_0x10a2b1['name']==='next'||_0x10a2b1['name']==='react')){const _0x358d57={};_0x358d57['name']='react',_0x358d57['version']=_0x76d352??'unknown',_0x3c6420['push'](_0x358d57);}}let _0x2e6ab9=null;const _0x11aab2=_0x4fad94['Vue'];if(_0x11aab2!==null&&typeof _0x11aab2==='object'){const _0x5be481=_0x11aab2['version'];if(typeof _0x5be481==='string')_0x2e6ab9=_0x5be481;}if(_0x2e6ab9!==null||_0x4fad94['__VUE__']!==undefined||_0x4fad94['__VUE_DEVTOOLS_GLOBAL_HOOK__']!==undefined){if(!_0x3c6420['some'](_0x4f7e86=>_0x4f7e86['name']==='nuxt'||_0x4f7e86['name']==='vue')){const _0x2acc82={};_0x2acc82['name']='vue',_0x2acc82['version']=_0x2e6ab9??'unknown',_0x3c6420['push'](_0x2acc82);}}if(_0x4fad94['ng']!==undefined||_0x4fad94['getAllAngularRootElements']!==undefined){const _0x1ddaac={};_0x1ddaac['name']='angular',_0x1ddaac['version']='unknown',_0x3c6420['push'](_0x1ddaac);}if(_0x4fad94['__svelte']!==undefined||_0x4fad94['__SVELTEKIT_PAYLOAD__']!==undefined){const _0x8a42c4={};_0x8a42c4['name']='svelte',_0x8a42c4['version']='unknown',_0x3c6420['push'](_0x8a42c4);}if(_0x4fad94['__PREACT_DEVTOOLS__']!==undefined){const _0x3a6f6c={};_0x3a6f6c['name']='preact',_0x3a6f6c['version']='unknown',_0x3c6420['push'](_0x3a6f6c);}return _0x3c6420;}function collectIntegrations(_0x198495){const _0x2171d8=new Set(),_0x1d0c1c=[],_0x93b726=_0x156fc3=>{if(typeof _0x156fc3['name']!=='string'||_0x156fc3['name']['length']===0x0)return;if(typeof _0x156fc3['version']!=='string')return;if(_0x2171d8['has'](_0x156fc3['name']))return;_0x2171d8['add'](_0x156fc3['name']);const _0x2eb7e7={};_0x2eb7e7['name']=_0x156fc3['name'],_0x2eb7e7['version']=_0x156fc3['version'],_0x1d0c1c['push'](_0x2eb7e7);};if(_0x198495!==undefined){for(const _0x2cd037 of _0x198495)_0x93b726(_0x2cd037);}for(const _0x4c0f09 of getRegistry())_0x93b726(_0x4c0f09);for(const _0x53e5c0 of detectFrameworks())_0x93b726(_0x53e5c0);return _0x1d0c1c;}const PVID_KEY='__dx_pvid',PVID_LENGTH=0xa,PVID_ALPHABET='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';function generatePageVisitId(){let _0x22f541='';if(typeof crypto!=='undefined'&&typeof crypto['getRandomValues']==='function'){const _0x428f65=new Uint8Array(PVID_LENGTH);crypto['getRandomValues'](_0x428f65);for(let _0x271859=0x0;_0x271859<PVID_LENGTH;_0x271859+=0x1){_0x22f541+=PVID_ALPHABET[_0x428f65[_0x271859]%PVID_ALPHABET['length']];}return _0x22f541;}for(let _0x234bc5=0x0;_0x234bc5<PVID_LENGTH;_0x234bc5+=0x1){_0x22f541+=PVID_ALPHABET[Math['floor'](Math['random']()*PVID_ALPHABET['length'])];}return _0x22f541;}function getPageVisitId(){if(typeof window==='undefined')return generatePageVisitId();const _0x3731f3=window,_0x27ffe7=_0x3731f3[PVID_KEY];if(typeof _0x27ffe7==='string'&&_0x27ffe7['length']>0x0)return _0x27ffe7;const _0x266e15=generatePageVisitId();return _0x3731f3[PVID_KEY]=_0x266e15,_0x266e15;}const SESSION_KEY='_dxe',SESSION_TIMEOUT_MS=0x1e*0x3c*0x3e8;let cachedSessionId=null,lastActivity=0x0;function getSessionId(){if(typeof sessionStorage==='undefined')return undefined;const _0x431af7=Date['now']();if(cachedSessionId!==null&&_0x431af7-lastActivity<SESSION_TIMEOUT_MS)return lastActivity=_0x431af7,persistSession(cachedSessionId,_0x431af7),cachedSessionId;const _0x3b5f32=sessionStorage['getItem'](SESSION_KEY);if(_0x3b5f32!==null)try{const _0x30739b=JSON['parse'](_0x3b5f32);if(_0x431af7-_0x30739b['ts']<SESSION_TIMEOUT_MS)return cachedSessionId=_0x30739b['id'],lastActivity=_0x431af7,persistSession(_0x30739b['id'],_0x431af7),_0x30739b['id'];}catch{}const _0x5611f9=generateSessionId();return cachedSessionId=_0x5611f9,lastActivity=_0x431af7,persistSession(_0x5611f9,_0x431af7),_0x5611f9;}function persistSession(_0x2b1fed,_0x5b68a7){try{const _0x2abb41={};_0x2abb41['id']=_0x2b1fed,_0x2abb41['ts']=_0x5b68a7,sessionStorage['setItem'](SESSION_KEY,JSON['stringify'](_0x2abb41));}catch{}}function generateSessionId(){if(typeof crypto!=='undefined'&&typeof crypto['randomUUID']==='function')return crypto['randomUUID']();return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'['replace'](/[xy]/g,_0x222cb8=>{const _0x1950e8=Math['random']()*0x10|0x0,_0x2a3584=_0x222cb8==='x'?_0x1950e8:_0x1950e8&0x3|0x8;return _0x2a3584['toString'](0x10);});}const KEY_CLIENT_COOKIE='_dx',KEY_LOCAL_STORAGE='_dxl',KEY_IDB_STORE='_dx',KEY_IDB_KEY='d',IDB_DB_NAME='_dx',IDB_VERSION=0x1,COOKIE_MAX_AGE_SECONDS=0x16d*0x18*0x3c*0x3c;function*walkDomains(_0x463e0c){if(_0x463e0c['length']===0x0)return;if(/^[\d.]+$/['test'](_0x463e0c)||_0x463e0c['includes'](':'))return;if(!_0x463e0c['includes']('.'))return;const _0x59eca3=_0x463e0c['split']('.');for(let _0x509c57=_0x59eca3['length']-0x2;_0x509c57>=0x0;_0x509c57--){const _0x369970=_0x59eca3['slice'](_0x509c57)['join']('.');if(_0x369970===_0x463e0c)continue;yield _0x369970;}}function buildCookieAttributes(_0x4a82fa,_0xa65c9f){const _0x37d95a=typeof location!=='undefined'&&location['protocol']==='https:'?';\x20secure':'',_0x16793b=_0x4a82fa!==null?';\x20domain='+_0x4a82fa:'';return';\x20path=/'+_0x16793b+';\x20'+_0xa65c9f+';\x20samesite=lax'+_0x37d95a;}function getCookie(){try{const _0x8aa625=document['cookie']['match'](new RegExp('(?:^|;\x5cs*)'+KEY_CLIENT_COOKIE+'=([^;]*)'));return _0x8aa625?decodeURIComponent(_0x8aa625[0x1]):null;}catch{return null;}}function writeCookieAtDomain(_0x4c806b,_0x50c344){try{const _0x116b49='max-age='+COOKIE_MAX_AGE_SECONDS;document['cookie']=KEY_CLIENT_COOKIE+'='+encodeURIComponent(_0x4c806b)+buildCookieAttributes(_0x50c344,_0x116b49);}catch{}}function setCookie(_0x2d44e6){if(typeof document==='undefined'||typeof location==='undefined')return;for(const _0x38af0b of walkDomains(location['hostname'])){writeCookieAtDomain(_0x2d44e6,_0x38af0b);if(getCookie()===_0x2d44e6)return;}writeCookieAtDomain(_0x2d44e6,null);}function getLocalStorage$1(){try{return localStorage['getItem'](KEY_LOCAL_STORAGE);}catch{return null;}}function setLocalStorage(_0x383560){try{localStorage['setItem'](KEY_LOCAL_STORAGE,_0x383560);}catch{}}function openIdb(){return new Promise(_0x59f4d7=>{try{const _0x46776a=indexedDB['open'](IDB_DB_NAME,IDB_VERSION);_0x46776a['onupgradeneeded']=()=>{const _0x41059e=_0x46776a['result'];!_0x41059e['objectStoreNames']['contains'](KEY_IDB_STORE)&&_0x41059e['createObjectStore'](KEY_IDB_STORE);},_0x46776a['onsuccess']=()=>{const _0x8ba9ed=_0x46776a['result'];_0x8ba9ed['onversionchange']=()=>_0x8ba9ed['close'](),_0x59f4d7(_0x8ba9ed);},_0x46776a['onerror']=()=>_0x59f4d7(null),_0x46776a['onblocked']=()=>_0x59f4d7(null);}catch{_0x59f4d7(null);}});}function getIndexedDb(){return new Promise(_0x3a0766=>{openIdb()['then'](_0x5c339d=>{if(_0x5c339d===null){_0x3a0766(null);return;}let _0x5da2cb=![];const _0x1c8b64=_0x3e1b6d=>{if(_0x5da2cb)return;_0x5da2cb=!![],_0x5c339d['close'](),_0x3a0766(_0x3e1b6d);};try{const _0x33fef9=_0x5c339d['transaction'](KEY_IDB_STORE,'readonly'),_0x4bd6e0=_0x33fef9['objectStore'](KEY_IDB_STORE),_0x4b124c=_0x4bd6e0['get'](KEY_IDB_KEY);_0x4b124c['onsuccess']=()=>_0x1c8b64(typeof _0x4b124c['result']==='string'?_0x4b124c['result']:null),_0x4b124c['onerror']=()=>_0x1c8b64(null),_0x33fef9['onabort']=()=>_0x1c8b64(null);}catch{_0x1c8b64(null);}})['catch'](()=>_0x3a0766(null));});}function setIndexedDb(_0x31d38c){openIdb()['then'](_0x31f768=>{if(_0x31f768===null)return;try{const _0x1e2066=_0x31f768['transaction'](KEY_IDB_STORE,'readwrite'),_0x10b54f=_0x1e2066['objectStore'](KEY_IDB_STORE);_0x10b54f['put'](_0x31d38c,KEY_IDB_KEY),_0x1e2066['oncomplete']=()=>_0x31f768['close'](),_0x1e2066['onerror']=()=>_0x31f768['close']();}catch{_0x31f768['close']();}})['catch'](()=>{});}async function loadDeviceToken(){const _0x41982e=getCookie();if(_0x41982e!==null)return _0x41982e;const _0x1e8441=getLocalStorage$1();if(_0x1e8441!==null)return _0x1e8441;return getIndexedDb();}function saveDeviceToken(_0x2b11fc){setCookie(_0x2b11fc),setLocalStorage(_0x2b11fc),setIndexedDb(_0x2b11fc);}class SentinelError extends Error{['code'];constructor(_0x1dde72,_0x196423){super(_0x1dde72),this['name']='SentinelError',this['code']=_0x196423,Object['setPrototypeOf'](this,new.target.prototype);}}function isSentinelError(_0x4a9893){if(_0x4a9893===null||typeof _0x4a9893!=='object')return![];const _0x5eeeb2=_0x4a9893;return(_0x5eeeb2['name']==='SentinelError'||_0x5eeeb2['name']==='CspBlockError'||_0x5eeeb2['name']==='FetchTimeoutError')&&typeof _0x5eeeb2['code']==='string';}class CspBlockError extends SentinelError{['violation'];constructor(_0x15ded0,_0x4c0842){super(_0x15ded0,'csp_block'),this['name']='CspBlockError',this['violation']=_0x4c0842,Object['setPrototypeOf'](this,new.target.prototype);}}async function withCspDetection(_0x4d42de,_0x5883d9){if(typeof document==='undefined')return _0x5883d9();let _0xe879f9;try{_0xe879f9=new URL(_0x4d42de,typeof location!=='undefined'?location['href']:'http://localhost/');}catch{return _0x5883d9();}const _0x4f801e={};_0x4f801e['event']=null;const _0x36be18=_0x4f801e,_0x476d0a=_0xe879f9['protocol']['slice'](0x0,-0x1),_0x53f38c=_0x2162e0=>{const _0xb07c60=_0x2162e0,_0x350d62=_0xb07c60['blockedURI'];(_0x350d62===_0xe879f9['href']||_0x350d62===_0xe879f9['origin']||_0x350d62===_0x476d0a)&&(_0x36be18['event']=_0xb07c60);};document['addEventListener']('securitypolicyviolation',_0x53f38c);try{return await _0x5883d9();}catch(_0x2adfea){if(_0x36be18['event']!==null)throw new CspBlockError('Request\x20to\x20'+_0xe879f9['href']+'\x20blocked\x20by\x20Content-Security-Policy',_0x36be18['event']);throw _0x2adfea;}finally{document['removeEventListener']('securitypolicyviolation',_0x53f38c);}}function visibilityAwareWait(_0x5184e3,_0x193b16){if(_0x193b16?.['aborted']===!![])return Promise['resolve']();if(typeof document==='undefined')return new Promise(_0x1f0cb1=>{const _0xe0434e=setTimeout(_0x1f0cb1,_0x5184e3),_0x515210={};_0x515210['once']=!![],_0x193b16?.['addEventListener']('abort',()=>{clearTimeout(_0xe0434e),_0x1f0cb1();},_0x515210);});return new Promise(_0x44604b=>{let _0x4ad9a1=_0x5184e3,_0x12e8c3=0x0,_0x8a9b12=null,_0x1daa56=![];function _0x44106e(){if(_0x8a9b12===null)return;clearTimeout(_0x8a9b12),_0x8a9b12=null,_0x4ad9a1-=Date['now']()-_0x12e8c3;if(_0x4ad9a1<0x0)_0x4ad9a1=0x0;}function _0x2e73e4(){if(_0x1daa56)return;_0x1daa56=!![],document['removeEventListener']('visibilitychange',_0x5a28ee);if(_0x193b16!==undefined)_0x193b16['removeEventListener']('abort',_0x16e6bb);_0x8a9b12!==null&&(clearTimeout(_0x8a9b12),_0x8a9b12=null),_0x44604b();}function _0xbaabe1(){if(_0x1daa56||_0x8a9b12!==null)return;if(_0x4ad9a1<=0x0){_0x2e73e4();return;}_0x12e8c3=Date['now'](),_0x8a9b12=setTimeout(_0x2e73e4,_0x4ad9a1);}function _0x5a28ee(){document['hidden']?_0x44106e():_0xbaabe1();}function _0x16e6bb(){_0x2e73e4();}document['addEventListener']('visibilitychange',_0x5a28ee);const _0x37b8fe={};_0x37b8fe['once']=!![];if(_0x193b16!==undefined)_0x193b16['addEventListener']('abort',_0x16e6bb,_0x37b8fe);!document['hidden']&&_0xbaabe1();});}const DEFAULT_MAX_RETRIES=0x3,DEFAULT_BASE_DELAY=0xc8,DEFAULT_MAX_DELAY=0x2710,DEFAULT_TIMEOUT=0x7530;class FetchTimeoutError extends SentinelError{['timeoutMs'];constructor(_0x529188){super('fetch\x20did\x20not\x20complete\x20within\x20'+_0x529188+'ms','client_timeout'),this['name']='FetchTimeoutError',this['timeoutMs']=_0x529188,Object['setPrototypeOf'](this,new.target.prototype);}}async function fetchWithRetry(_0x1a8e4d,_0x36988e,_0x1060a9){const _0x14bcb7=_0x1060a9?.['maxRetries']??DEFAULT_MAX_RETRIES,_0x21aff9=_0x1060a9?.['baseDelayMs']??DEFAULT_BASE_DELAY,_0x26b85f=_0x1060a9?.['maxDelayMs']??DEFAULT_MAX_DELAY,_0x4c326f=_0x1060a9?.['timeoutMs']??DEFAULT_TIMEOUT;for(let _0x5c6105=0x0;_0x5c6105<=_0x14bcb7;_0x5c6105++){let _0x3a4621,_0x24d3fb,_0xd135e8,_0x4a6253;const _0x50500f=_0x36988e?.['signal'];try{_0xd135e8=new AbortController();if(_0x50500f!==undefined&&_0x50500f!==null){if(_0x50500f['aborted'])_0xd135e8['abort'](_0x50500f['reason']);else{const _0xa81be3=_0xd135e8;_0x4a6253=()=>_0xa81be3['abort'](_0x50500f['reason']);const _0x1631d1={};_0x1631d1['once']=!![],_0x50500f['addEventListener']('abort',_0x4a6253,_0x1631d1);}}_0x24d3fb=setTimeout(()=>{_0x3a4621=Date['now'](),_0xd135e8?.['abort']();},_0x4c326f);const _0x20e383={..._0x36988e};_0x20e383['signal']=_0xd135e8['signal'];const _0x40e2d7=await fetch(_0x1a8e4d,_0x20e383);clearTimeout(_0x24d3fb);_0x4a6253!==undefined&&_0x50500f!==undefined&&_0x50500f!==null&&_0x50500f['removeEventListener']('abort',_0x4a6253);if(_0x40e2d7['ok']||_0x40e2d7['status']<0x1f4&&_0x40e2d7['status']!==0x1ad)return _0x40e2d7;if((_0x40e2d7['status']===0x1ad||_0x40e2d7['status']>=0x1f4)&&_0x5c6105<_0x14bcb7){const _0xaaae70=parseRetryAfter(_0x40e2d7['headers']['get']('Retry-After'));await visibilityAwareWait(_0xaaae70??computeBackoff(_0x5c6105,_0x21aff9,_0x26b85f),_0x50500f??undefined);continue;}return _0x40e2d7;}catch(_0x3c3416){clearTimeout(_0x24d3fb);_0x4a6253!==undefined&&_0x50500f!==undefined&&_0x50500f!==null&&_0x50500f['removeEventListener']('abort',_0x4a6253);const _0xe4bbaf=_0x50500f?.['aborted']===!![];if(_0xe4bbaf)throw _0x3c3416;if(_0x5c6105>=_0x14bcb7){if(_0x3a4621!==undefined)throw new FetchTimeoutError(_0x4c326f);throw _0x3c3416;}await visibilityAwareWait(computeBackoff(_0x5c6105,_0x21aff9,_0x26b85f),_0x50500f??undefined);}}throw new Error('fetchWithRetry:\x20exhausted\x20retries');}function computeBackoff(_0x4c8283,_0x4e6a01,_0x5a848f){const _0x14983b=Math['min'](_0x5a848f,_0x4e6a01*0x2**_0x4c8283);return _0x14983b*(0.5+Math['random']()*0.5);}function parseRetryAfter(_0x354929){if(_0x354929===null)return null;const _0x5b4a43=Number(_0x354929);if(!Number['isNaN'](_0x5b4a43)&&_0x5b4a43>0x0)return _0x5b4a43*0x3e8;const _0x5333e2=Date['parse'](_0x354929);if(!Number['isNaN'](_0x5333e2))return Math['max'](0x0,_0x5333e2-Date['now']());return null;}const SENSITIVE_PARAMS=['token','key','secret','password','auth','session','jwt','api_key','apikey','credential','bearer','signature','sig','access_token','refresh_token','code','state','ssn','credit_card','card_number'];function sanitizeUrl(_0x5797d3){try{const _0x1dade5=new URL(_0x5797d3),_0xe9d255=[];for(const [_0x408a2e]of _0x1dade5['searchParams']){const _0x46bbde=_0x408a2e['toLowerCase']();SENSITIVE_PARAMS['some'](_0x2ccb61=>_0x46bbde['includes'](_0x2ccb61))&&_0xe9d255['push'](_0x408a2e);}for(const _0x46ea54 of _0xe9d255){_0x1dade5['searchParams']['set'](_0x46ea54,'[REDACTED]');}return _0x1dade5['hash']='',_0x1dade5['toString']();}catch{return _0x5797d3;}}function fnv1aBytes(_0x2291f0){let _0x46ccd9=0x811c9dc5;for(let _0x3c0b54=0x0;_0x3c0b54<_0x2291f0['length'];_0x3c0b54++){_0x46ccd9^=_0x2291f0[_0x3c0b54],_0x46ccd9=Math['imul'](_0x46ccd9,0x1000193);}return _0x46ccd9>>>0x0;}const SUFFIX_MIN_LEN=0x8,SUFFIX_MAX_LEN=0x16,CHUNK_MIN_LEN=0x3,CHUNK_MAX_LEN=0x6;function hash16(_0x3e5a36){const _0x3df923=new TextEncoder()['encode'](_0x3e5a36),_0x418ba5=new Uint8Array(0x10);for(let _0x3656f8=0x0;_0x3656f8<0x4;_0x3656f8+=0x1){const _0x21586e=new Uint8Array(_0x3df923['length']+0x1);_0x21586e[0x0]=0x55+_0x3656f8*0x37,_0x21586e['set'](_0x3df923,0x1);const _0x540d35=fnv1aBytes(_0x21586e);_0x418ba5[_0x3656f8*0x4]=_0x540d35>>>0x18&0xff,_0x418ba5[_0x3656f8*0x4+0x1]=_0x540d35>>>0x10&0xff,_0x418ba5[_0x3656f8*0x4+0x2]=_0x540d35>>>0x8&0xff,_0x418ba5[_0x3656f8*0x4+0x3]=_0x540d35&0xff;}return _0x418ba5;}function toBase64Url$1(_0x40f6fb){let _0x1a32b8='';for(let _0x57481c=0x0;_0x57481c<_0x40f6fb['length'];_0x57481c+=0x1){_0x1a32b8+=String['fromCharCode'](_0x40f6fb[_0x57481c]);}return btoa(_0x1a32b8)['replace'](/\+/g,'-')['replace'](/\//g,'_')['replace'](/=+$/,'');}function mapByteToRange(_0x363de6,_0xbf05f,_0x1f5e21){return _0xbf05f+Math['floor']((_0x363de6&0xff)*(_0x1f5e21-_0xbf05f+0x1)/0x100);}function chunkBySlash(_0x1900de,_0xbb3f74){let _0x3707b2=0x0,_0x210f6a='';while(_0x3707b2<_0x1900de['length']){const _0x4a2c2a=mapByteToRange(_0xbb3f74[_0x3707b2&0xf],CHUNK_MIN_LEN,CHUNK_MAX_LEN),_0xd87519=Math['min'](_0x1900de['length'],_0x3707b2+_0x4a2c2a);if(_0x210f6a['length']>0x0)_0x210f6a+='/';_0x210f6a+=_0x1900de['slice'](_0x3707b2,_0xd87519),_0x3707b2=_0xd87519;}return _0x210f6a;}function buildEndpointSuffix(_0x5ae20c,_0x2b0ea9){const _0x427aa5=_0x2b0ea9!==undefined&&_0x2b0ea9['length']>0x0?_0x5ae20c+'\x00'+_0x2b0ea9:_0x5ae20c,_0x51ea4b=hash16(_0x427aa5),_0x468d70=mapByteToRange(_0x51ea4b[0xf],SUFFIX_MIN_LEN,SUFFIX_MAX_LEN),_0x760f8c=toBase64Url$1(_0x51ea4b)['slice'](0x0,_0x468d70),_0x132c34=fnv1aBytes(new TextEncoder()['encode'](_0x760f8c)),_0x3ec9ce=toBase64Url$1(new Uint8Array([_0x132c34>>>0x18&0xff,_0x132c34>>>0x10&0xff]))['slice'](0x0,0x2);return chunkBySlash(_0x760f8c+_0x3ec9ce,_0x51ea4b);}function randomizeEndpoint(_0x42e6ea,_0x16a005={}){const _0x79cd38=_0x16a005['replacePath']??!![];let _0x183c53;try{_0x183c53=new URL(_0x42e6ea);}catch{return _0x42e6ea;}const _0x424393=buildEndpointSuffix(_0x42e6ea,_0x16a005['nonce']);if(_0x79cd38)_0x183c53['pathname']='/'+_0x424393;else{let _0x351825=_0x183c53['pathname'];if(!_0x351825['endsWith']('/'))_0x351825+='/';_0x351825+=_0x424393,_0x183c53['pathname']=_0x351825;}return _0x183c53['toString']();}function toBase64Url(_0x3af0f5){let _0x1fad55='';for(let _0x56defd=0x0;_0x56defd<_0x3af0f5['length'];_0x56defd++){_0x1fad55+=String['fromCharCode'](_0x3af0f5[_0x56defd]);}return btoa(_0x1fad55)['replace'](/\+/g,'-')['replace'](/\//g,'_')['replace'](/=+$/,'');}function fromBase64Url(_0x4478e0){const _0x45d332=_0x4478e0['replace'](/-/g,'+')['replace'](/_/g,'/'),_0x24ca36=_0x45d332+'='['repeat']((0x4-_0x45d332['length']%0x4)%0x4),_0x1d28cc=atob(_0x24ca36),_0x86e3c0=new Uint8Array(_0x1d28cc['length']);for(let _0x409ff9=0x0;_0x409ff9<_0x1d28cc['length'];_0x409ff9++){_0x86e3c0[_0x409ff9]=_0x1d28cc['charCodeAt'](_0x409ff9);}return _0x86e3c0;}function isCompressionSupported(){return typeof CompressionStream!=='undefined';}async function compressPayload(_0x470187){if(!isCompressionSupported())return _0x470187;const _0x541fc8=new Blob([_0x470187])['stream']()['pipeThrough'](new CompressionStream('deflate-raw')),_0x499209=await new Response(_0x541fc8)['arrayBuffer']();return new Uint8Array(_0x499209);}function isDecompressionSupported(){return typeof DecompressionStream!=='undefined';}async function decompressPayload(_0x37060b){if(!isDecompressionSupported())return _0x37060b;const _0x29d15e=new Blob([_0x37060b])['stream']()['pipeThrough'](new DecompressionStream('deflate-raw')),_0x435fa3=await new Response(_0x29d15e)['arrayBuffer']();return new Uint8Array(_0x435fa3);}const MARKER_1=0xca,MARKER_2=0xfe,KEY_LENGTH=0x9,MAX_PADDING=0x20;function getRandomBytes(_0x4d1cdd){const _0x4f8e64=new Uint8Array(_0x4d1cdd);try{if(typeof crypto!=='undefined'&&typeof crypto['getRandomValues']==='function')return crypto['getRandomValues'](_0x4f8e64),_0x4f8e64;}catch{}for(let _0x56bd03=0x0;_0x56bd03<_0x4d1cdd;_0x56bd03++){_0x4f8e64[_0x56bd03]=Math['random']()*0x100&0xff;}return _0x4f8e64;}function createXorEnvelope(_0xcabc9a){const _0x5064fb=getRandomBytes(0x1)[0x0],_0x221eda=Math['floor'](Math['random']()*MAX_PADDING),_0x57a0bd=getRandomBytes(_0x221eda),_0x498c3b=getRandomBytes(KEY_LENGTH),_0x265600=0x1+0x2+0x1+_0x221eda+KEY_LENGTH,_0x5ba970=new Uint8Array(_0x265600+_0xcabc9a['length']);let _0x2bd55d=0x0;_0x5ba970[_0x2bd55d++]=_0x5064fb,_0x5ba970[_0x2bd55d++]=MARKER_1+_0x5064fb&0xff,_0x5ba970[_0x2bd55d++]=MARKER_2+_0x5064fb&0xff,_0x5ba970[_0x2bd55d++]=_0x221eda+_0x5064fb&0xff,_0x5ba970['set'](_0x57a0bd,_0x2bd55d),_0x2bd55d+=_0x221eda,_0x5ba970['set'](_0x498c3b,_0x2bd55d),_0x2bd55d+=KEY_LENGTH;for(let _0x5b57ea=0x0;_0x5b57ea<_0xcabc9a['length'];_0x5b57ea++){_0x5ba970[_0x2bd55d+_0x5b57ea]=_0xcabc9a[_0x5b57ea]^_0x498c3b[_0x5b57ea%KEY_LENGTH];}return _0x5ba970;}async function encodePayload(_0x1b238b){const _0x3e6752=new TextEncoder()['encode'](_0x1b238b),_0x2c8d77=isCompressionSupported(),_0x4ea445=_0x2c8d77?await compressPayload(_0x3e6752):_0x3e6752,_0x37eb33=createXorEnvelope(_0x4ea445),_0x2c0adb={};_0x2c0adb['v']=0x1,_0x2c0adb['c']=_0x2c8d77;const _0x5cc496=JSON['stringify'](_0x2c0adb),_0xb71806=new TextEncoder()['encode'](_0x5cc496);return toBase64Url(_0xb71806)+':'+toBase64Url(_0x37eb33);}function decodeXorEnvelope(_0x322185){if(_0x322185['length']<0x1+0x2+0x1+KEY_LENGTH)throw new Error('xor-envelope:\x20buffer\x20too\x20short\x20to\x20contain\x20a\x20valid\x20envelope');const _0x2eaec0=_0x322185[0x0],_0x466261=_0x322185[0x1]-_0x2eaec0&0xff,_0x607105=_0x322185[0x2]-_0x2eaec0&0xff;if(_0x466261!==MARKER_1||_0x607105!==MARKER_2)throw new Error('xor-envelope:\x20marker\x20mismatch\x20—\x20not\x20a\x20valid\x20envelope');const _0x59a7e1=_0x322185[0x3]-_0x2eaec0&0xff,_0x40cc33=0x1+0x2+0x1+_0x59a7e1+KEY_LENGTH;if(_0x322185['length']<_0x40cc33)throw new Error('xor-envelope:\x20declared\x20padding/key\x20extends\x20past\x20buffer');const _0x427496=_0x322185['subarray'](0x4+_0x59a7e1,0x4+_0x59a7e1+KEY_LENGTH),_0x1c7d29=_0x40cc33,_0xcd32fc=_0x322185['subarray'](_0x1c7d29),_0x4d456d=new Uint8Array(_0xcd32fc['length']);for(let _0x390700=0x0;_0x390700<_0xcd32fc['length'];_0x390700+=0x1){_0x4d456d[_0x390700]=_0xcd32fc[_0x390700]^_0x427496[_0x390700%KEY_LENGTH];}return _0x4d456d;}async function decodePayload(_0x3b2653){const _0x2513ae=_0x3b2653['indexOf'](':');if(_0x2513ae===-0x1)throw new Error('decodePayload:\x20missing\x20\x22:\x22\x20separator\x20between\x20metadata\x20and\x20envelope');const _0x454870=_0x3b2653['slice'](0x0,_0x2513ae),_0x5ac1eb=_0x3b2653['slice'](_0x2513ae+0x1);let _0x7ee9a6;try{const _0x4316ca=fromBase64Url(_0x454870),_0x216f5a=new TextDecoder()['decode'](_0x4316ca);_0x7ee9a6=JSON['parse'](_0x216f5a);}catch(_0x230edd){throw new Error('decodePayload:\x20failed\x20to\x20parse\x20metadata\x20segment\x20('+String(_0x230edd)+')');}if(_0x7ee9a6['v']!==0x1)throw new Error('decodePayload:\x20unsupported\x20envelope\x20version\x20'+String(_0x7ee9a6['v']));const _0x421ef3=fromBase64Url(_0x5ac1eb),_0x86b956=decodeXorEnvelope(_0x421ef3),_0xbcfaf2=_0x7ee9a6['c']===!![]?await decompressPayload(_0x86b956):_0x86b956;return new TextDecoder()['decode'](_0xbcfaf2);}let chainTail=Promise['resolve']();async function capture(_0x2f40e9,_0x29effe,_0x2514f0){const _0x19594f=chainTail;let _0x226b9e=()=>undefined;const _0xb58067=new Promise(_0x344e98=>{_0x226b9e=_0x344e98;});chainTail=_0x19594f['then'](()=>_0xb58067);try{await _0x19594f;}catch{}try{return await doCapture(_0x2f40e9,_0x29effe,_0x2514f0);}finally{_0x226b9e();}}async function doCapture(_0x11f5c7,_0x20db54,_0x2f0603){const {components:_0x1963a1,version:_0x407ae6}=await _0x11f5c7['get'](),_0x3a2b67=await loadDeviceToken()??undefined,_0x58b72a=_0x20db54['replay']!==undefined?_0x20db54['replay']['list']():undefined,_0x47baa5=_0x20db54['urlPrivacy']==='minimal',_0x521b14=_0x45f855=>{if(!_0x47baa5)return sanitizeUrl(_0x45f855);try{return new URL(_0x45f855)['origin'];}catch{return'';}},_0x3c78fa=typeof document!=='undefined'&&document['referrer']?document['referrer']:'',_0x983c29=typeof document!=='undefined'?document['title']:'',_0x21a487={'components':_0x1963a1,'version':_0x407ae6,'storedVisitorId':_0x3a2b67,'linkedId':_0x2f0603?.['linkedId'],'tag':_0x2f0603?.['tag'],'custom':_0x2f0603?.['custom'],'url':typeof location!=='undefined'?_0x521b14(location['href']):undefined,'referrer':_0x3c78fa!==''?_0x521b14(_0x3c78fa):undefined,'pageTitle':_0x47baa5?undefined:_0x983c29||undefined,'sessionId':getSessionId(),'pageVisitId':getPageVisitId(),'previousRequestIds':_0x58b72a,'clientTimestamp':Date['now'](),'integrationInfo':((()=>{const _0x43737f=collectIntegrations(_0x20db54['integrationInfo']);return _0x43737f['length']>0x0?_0x43737f:undefined;})())},_0x32bfc1=await encodePayload(JSON['stringify'](_0x21a487)),_0x129198=_0x20db54['randomizeStrategy']!==undefined&&_0x20db54['randomizeStrategy']!=='off'?randomizeEndpoint(_0x20db54['endpoint'],{'replacePath':_0x20db54['randomizeStrategy']==='replace','nonce':typeof crypto!=='undefined'&&typeof crypto['randomUUID']==='function'?crypto['randomUUID']():Date['now']()+'-'+Math['random']()}):_0x20db54['endpoint'],_0x56182f={};_0x56182f['Content-Type']='text/plain',_0x56182f['X-API-Key']=_0x20db54['apiKey'];const _0x1ffc77={};_0x1ffc77['method']='POST',_0x1ffc77['headers']=_0x56182f,_0x1ffc77['credentials']='include',_0x1ffc77['body']=_0x32bfc1,_0x1ffc77['signal']=_0x2f0603?.['signal'];const _0x4caa62=await withCspDetection(_0x129198,()=>fetchWithRetry(_0x129198,_0x1ffc77,_0x20db54['retry']));if(!_0x4caa62['ok']){let _0x2f3e19;try{const _0x240705=await _0x4caa62['json']();_0x2f3e19=_0x240705['error']??'HTTP\x20'+_0x4caa62['status'];}catch{_0x2f3e19='HTTP\x20'+_0x4caa62['status'];}throw new Error('Endpoint\x20error:\x20'+_0x2f3e19);}const _0x491758=await _0x4caa62['json']();return _0x491758['visitorId']&&saveDeviceToken(_0x491758['visitorId']),_0x20db54['replay']!==undefined&&typeof _0x491758['requestId']==='string'&&_0x491758['requestId']['length']>0x0&&_0x20db54['replay']['record'](_0x491758['requestId']),_0x491758;}function wait(_0x23aaf8,_0x4b80b7){return new Promise(_0x1d194c=>setTimeout(_0x1d194c,_0x23aaf8,_0x4b80b7));}function releaseEventLoop(){return new Promise(_0x283dc7=>{const _0x3497f2=new MessageChannel();_0x3497f2['port1']['onmessage']=()=>_0x283dc7(),_0x3497f2['port2']['postMessage'](null);});}function requestIdleCallbackIfAvailable(_0x26fa11,_0x4e6e71=Infinity){const {requestIdleCallback:_0x1b23a6}=window;if(typeof _0x1b23a6==='function'){const _0x243803={};return _0x243803['timeout']=_0x4e6e71,new Promise(_0x1b515f=>_0x1b23a6['call'](window,()=>_0x1b515f(),_0x243803));}return wait(Math['min'](_0x26fa11,_0x4e6e71));}function isPromise(_0x115498){return _0x115498!==null&&_0x115498!==undefined&&typeof _0x115498['then']==='function';}function awaitIfAsync(_0x2af7b7,_0xd254e5){try{const _0x3ab2ea=_0x2af7b7();isPromise(_0x3ab2ea)?_0x3ab2ea['then'](_0x48f7a6=>_0xd254e5(!![],_0x48f7a6),_0x3a80a6=>_0xd254e5(![],_0x3a80a6)):_0xd254e5(!![],_0x3ab2ea);}catch(_0x3e7300){_0xd254e5(![],_0x3e7300);}}async function mapWithBreaks(_0x2b7c2c,_0x4834f8,_0x5e6ea8=0x10){const _0x478866=Array(_0x2b7c2c['length']);let _0x15de93=Date['now']();for(let _0x302123=0x0;_0x302123<_0x2b7c2c['length'];++_0x302123){_0x478866[_0x302123]=_0x4834f8(_0x2b7c2c[_0x302123],_0x302123);const _0x3ae0f7=Date['now']();_0x3ae0f7>=_0x15de93+_0x5e6ea8&&(_0x15de93=_0x3ae0f7,await releaseEventLoop());}return _0x478866;}function withTimeoutReject(_0x54d54d,_0x488662,_0x401589){return new Promise((_0x486d04,_0x5e759d)=>{let _0x3c7822=![];const _0x5c6339=setTimeout(()=>{!_0x3c7822&&(_0x3c7822=!![],_0x5e759d(_0x401589()));},_0x488662);_0x54d54d['then'](_0x2323c6=>{!_0x3c7822&&(_0x3c7822=!![],clearTimeout(_0x5c6339),_0x486d04(_0x2323c6));},_0xb50b19=>{!_0x3c7822&&(_0x3c7822=!![],clearTimeout(_0x5c6339),_0x5e759d(_0xb50b19 instanceof Error?_0xb50b19:new Error(String(_0xb50b19))));});});}function suppressUnhandledRejectionWarning(_0x52eb14){return _0x52eb14['then'](undefined,()=>undefined),_0x52eb14;}function includes(_0x21592c,_0x4e7d7e){for(let _0x18119e=0x0,_0x28eedb=_0x21592c['length'];_0x18119e<_0x28eedb;++_0x18119e){if(_0x21592c[_0x18119e]===_0x4e7d7e)return!![];}return![];}function excludes(_0xc285cb,_0x26def0){return!includes(_0xc285cb,_0x26def0);}function toInt(_0x30704a){return parseInt(_0x30704a,0xa);}function toFloat(_0x2d2c31){return parseFloat(_0x2d2c31);}function replaceNaN(_0x196da6,_0x449da2){return typeof _0x196da6==='number'&&isNaN(_0x196da6)?_0x449da2:_0x196da6;}function countTruthy(_0x3087b4){return _0x3087b4['reduce']((_0x1fb14d,_0x59ae02)=>_0x1fb14d+(Boolean(_0x59ae02)?0x1:0x0),0x0);}function round$1(_0x1fbbe4,_0x5ca271=0x1){if(Math['abs'](_0x5ca271)>=0x1)return Math['round'](_0x1fbbe4/_0x5ca271)*_0x5ca271;const _0x58e21d=0x1/_0x5ca271;return Math['round'](_0x1fbbe4*_0x58e21d)/_0x58e21d;}function parseSimpleCssSelector(_0x35c344){const _0x49500f='Unexpected\x20syntax\x20\x27'+_0x35c344+'\x27',_0x373317=/^\s*([a-z-]*)(.*)$/i['exec'](_0x35c344),_0xee78d4=_0x373317[0x1]||undefined,_0x215787={},_0x360ed2=/([.:#][\w-]+|\[.+?\])/gi,_0x2f5632=(_0x4a448d,_0x6781cb)=>{!(_0x4a448d in _0x215787)&&(_0x215787[_0x4a448d]=[]),_0x215787[_0x4a448d]['push'](_0x6781cb);};for(;;){const _0x5d4e47=_0x360ed2['exec'](_0x373317[0x2]);if(!_0x5d4e47)break;const _0x4497e6=_0x5d4e47[0x0];switch(_0x4497e6[0x0]){case'.':_0x2f5632('class',_0x4497e6['slice'](0x1));break;case'#':_0x2f5632('id',_0x4497e6['slice'](0x1));break;case'[':{const _0x245d8c=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/['exec'](_0x4497e6);if(_0x245d8c)_0x2f5632(_0x245d8c[0x1],_0x245d8c[0x4]??_0x245d8c[0x5]??'');else throw new Error(_0x49500f);break;}default:throw new Error(_0x49500f);}}return[_0xee78d4,_0x215787];}function getUTF8Bytes(_0x18d35c){const _0x15c416=new Uint8Array(_0x18d35c['length']);for(let _0x54f064=0x0;_0x54f064<_0x18d35c['length'];_0x54f064++){const _0xb005fc=_0x18d35c['charCodeAt'](_0x54f064);if(_0xb005fc>0x7f)return new TextEncoder()['encode'](_0x18d35c);_0x15c416[_0x54f064]=_0xb005fc;}return _0x15c416;}function isFinalResultLoaded(_0x29979c){return typeof _0x29979c!=='function';}function loadSource(_0x2c9850,_0x5d6575){const _0x349e40=suppressUnhandledRejectionWarning(new Promise(_0x4609f2=>{awaitIfAsync(_0x2c9850['bind'](null,_0x5d6575),(..._0x9b4743)=>{if(!_0x9b4743[0x0])return _0x4609f2(()=>({'error':_0x9b4743[0x1]}));const _0x5d8a63=_0x9b4743[0x1];if(isFinalResultLoaded(_0x5d8a63))return _0x4609f2(()=>({'value':_0x5d8a63}));_0x4609f2(()=>new Promise(_0x261805=>{awaitIfAsync(_0x5d8a63,(..._0x104f01)=>{if(!_0x104f01[0x0]){const _0x2c27fd={};return _0x2c27fd['error']=_0x104f01[0x1],_0x261805(_0x2c27fd);}const _0x2745f0={};_0x2745f0['value']=_0x104f01[0x1],_0x261805(_0x2745f0);});}));});}));return function _0x451498(){return _0x349e40['then'](_0x24a896=>_0x24a896());};}function loadSources(_0x28d9e4,_0x166113,_0x28b6df,_0x2d97d5){const _0x3585f3=Object['keys'](_0x28d9e4)['filter'](_0x3eef4a=>excludes(_0x28b6df,_0x3eef4a)),_0x1d52b6=suppressUnhandledRejectionWarning(mapWithBreaks(_0x3585f3,_0x5ad0c0=>loadSource(_0x28d9e4[_0x5ad0c0],_0x166113),_0x2d97d5));return async function _0x38799c(){const _0x59239d=await _0x1d52b6,_0x121989=await mapWithBreaks(_0x59239d,_0x5f5ac5=>suppressUnhandledRejectionWarning(_0x5f5ac5()),_0x2d97d5),_0x2ada4c=await Promise['all'](_0x121989),_0x1e9fcf={};for(let _0x4a80c5=0x0;_0x4a80c5<_0x3585f3['length'];++_0x4a80c5){_0x1e9fcf[_0x3585f3[_0x4a80c5]]=_0x2ada4c[_0x4a80c5];}return _0x1e9fcf;};}function getAutomationDescriptor(){try{const _0x1433a6=Object['getOwnPropertyDescriptor'](navigator,'webdriver'),_0x460829=_0x1433a6!==undefined;let _0x11f916=null;_0x1433a6&&(_0x11f916=_0x1433a6['configurable']??null);let _0xd9247c=![],_0x4c5bf3=null;try{const _0x473e80=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');_0x473e80&&(_0xd9247c=typeof _0x473e80['get']==='function',_0x4c5bf3=_0x473e80['configurable']??null);}catch{}const _0x1fd0c1={};return _0x1fd0c1['hasOwnWebdriver']=_0x460829,_0x1fd0c1['ownConfigurable']=_0x11f916,_0x1fd0c1['prototypeHasGetter']=_0xd9247c,_0x1fd0c1['prototypeConfigurable']=_0x4c5bf3,_0x1fd0c1;}catch{const _0x3b83d2={};return _0x3b83d2['hasOwnWebdriver']=![],_0x3b83d2['ownConfigurable']=null,_0x3b83d2['prototypeHasGetter']=![],_0x3b83d2['prototypeConfigurable']=null,_0x3b83d2;}}function getCdpDetection(){try{const _0x312720=Error,_0x3fe2d8=_0x312720['prepareStackTrace'];let _0x3fe320=![];Object['defineProperty'](_0x312720,'prepareStackTrace',{'get'(){return _0x3fe320=!![],_0x3fe2d8;},'set'(_0x28874b){const _0x17e68f={};_0x17e68f['value']=_0x28874b,_0x17e68f['writable']=!![],_0x17e68f['configurable']=!![],Object['defineProperty'](_0x312720,'prepareStackTrace',_0x17e68f);},'configurable':!![]});try{console['debug']('');}catch{}try{const _0x2fa1da={};_0x2fa1da['value']=_0x3fe2d8,_0x2fa1da['writable']=!![],_0x2fa1da['configurable']=!![],Object['defineProperty'](_0x312720,'prepareStackTrace',_0x2fa1da);}catch{}return _0x3fe320;}catch{return![];}}function getChromeRuntime(){try{const _0x7cfca2=window,_0xdcce19=_0x7cfca2['chrome'];if(!_0xdcce19||typeof _0xdcce19!=='object'){const _0x3eae89={};return _0x3eae89['hasChrome']=![],_0x3eae89['hasRuntime']=![],_0x3eae89['hasPlatformOs']=![],_0x3eae89['hasConnect']=![],_0x3eae89['connectNative']=![],_0x3eae89['hasApp']=![],_0x3eae89['appIsInstalled']=null,_0x3eae89['hasCsi']=![],_0x3eae89['hasLoadTimes']=![],_0x3eae89['runtimeKeyCount']=0x0,_0x3eae89;}const _0x1a2421=_0xdcce19['runtime'],_0x16cc3a=_0x1a2421!==undefined&&_0x1a2421!==null;let _0x54ad71=![],_0x5bcca6=![],_0x481dab=![],_0x13fdfa=0x0;if(_0x16cc3a&&typeof _0x1a2421==='object'){_0x54ad71='PlatformOs'in _0x1a2421||'PlatformArch'in _0x1a2421,_0x5bcca6=typeof _0x1a2421['connect']==='function';if(_0x5bcca6)try{_0x481dab=/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x1a2421['connect']));}catch{_0x481dab=![];}try{_0x13fdfa=Object['getOwnPropertyNames'](_0x1a2421)['length'];}catch{_0x13fdfa=0x0;}}const _0x40feec=_0xdcce19['app'],_0x2ac656=_0x40feec!==undefined&&_0x40feec!==null;let _0x3f8a1a=null;_0x2ac656&&typeof _0x40feec==='object'&&(_0x3f8a1a=_0x40feec['isInstalled']===!![]);const _0x304e7e=typeof _0xdcce19['csi']==='function',_0x3ff832=typeof _0xdcce19['loadTimes']==='function',_0x410944={};return _0x410944['hasChrome']=!![],_0x410944['hasRuntime']=_0x16cc3a,_0x410944['hasPlatformOs']=_0x54ad71,_0x410944['hasConnect']=_0x5bcca6,_0x410944['connectNative']=_0x481dab,_0x410944['hasApp']=_0x2ac656,_0x410944['appIsInstalled']=_0x3f8a1a,_0x410944['hasCsi']=_0x304e7e,_0x410944['hasLoadTimes']=_0x3ff832,_0x410944['runtimeKeyCount']=_0x13fdfa,_0x410944;}catch{return null;}}function errorToObject(_0x5ecb66){return{'name':_0x5ecb66['name'],'message':_0x5ecb66['message'],'stack':_0x5ecb66['stack']?.['split']('\x0a'),..._0x5ecb66};}function isFunctionNative(_0x3e6a17){return/^function\s.*?\{\s*\[native code]\s*}$/['test'](String(_0x3e6a17));}function isTrident(){const _0x2f40f0=window,_0x39d24=navigator;return countTruthy(['MSCSSMatrix'in _0x2f40f0,'msSetImmediate'in _0x2f40f0,'msIndexedDB'in _0x2f40f0,'msMaxTouchPoints'in _0x39d24,'msPointerEnabled'in _0x39d24])>=0x4;}function isEdgeHTML(){const _0x4be789=window,_0x2834c7=navigator;return countTruthy(['msWriteProfilerMark'in _0x4be789,'MSStream'in _0x4be789,'msLaunchUri'in _0x2834c7,'msSaveBlob'in _0x2834c7])>=0x3&&!isTrident();}function isChromium(){const _0x51fe40=window,_0x1e9ced=navigator;return countTruthy(['webkitPersistentStorage'in _0x1e9ced,'webkitTemporaryStorage'in _0x1e9ced,(_0x1e9ced['vendor']||'')['indexOf']('Google')===0x0,'webkitResolveLocalFileSystemURL'in _0x51fe40,'BatteryManager'in _0x51fe40,'webkitMediaStream'in _0x51fe40,'webkitSpeechGrammar'in _0x51fe40])>=0x5;}function isWebKit(){const _0x5870cc=window,_0xb926d0=navigator;return countTruthy(['ApplePayError'in _0x5870cc,'CSSPrimitiveValue'in _0x5870cc,'Counter'in _0x5870cc,_0xb926d0['vendor']['indexOf']('Apple')===0x0,'RGBColor'in _0x5870cc,'WebKitMediaKeys'in _0x5870cc])>=0x4;}function isDesktopWebKit(){const _0x162225=window;return countTruthy(['safari'in _0x162225,!('ongestureend'in _0x162225),!('TouchEvent'in _0x162225),!('orientation'in _0x162225),!('autocapitalize'in _0x162225['HTMLElement']['prototype']),'pointerLockElement'in _0x162225['Document']['prototype']])>=0x4;}function isSafariWebKit(){const _0x39cd04=window;return isFunctionNative(_0x39cd04['print'])&&String(_0x39cd04['browser'])==='[object\x20WebPageNamespace]';}function isGecko(){const _0x5b05a6=window;return countTruthy(['buildID'in navigator,'MozAppearance'in document['documentElement']['style'],'onmozfullscreenchange'in _0x5b05a6,'mozInnerScreenX'in _0x5b05a6,'CSSMozDocumentRule'in _0x5b05a6,'CanvasCaptureMediaStream'in _0x5b05a6])>=0x4;}function isGecko120OrNewer(){const _0x4273f4=window,_0x1eca74=navigator,{CSS:_0x16fd3c}=_0x4273f4;return countTruthy(['userActivation'in _0x1eca74,_0x16fd3c['supports']('color','light-dark(#000,\x20#fff)'),_0x16fd3c['supports']('height','1lh'),'globalPrivacyControl'in _0x1eca74])>=0x3;}function isGecko143OrNewer(){const {CSS:_0x5ca0ad}=window;return countTruthy([_0x5ca0ad['supports']('selector(::details-content)'),_0x5ca0ad['supports']('selector(::before::marker)'),_0x5ca0ad['supports']('selector(::after::marker)'),!('locale'in CompositionEvent['prototype'])])>=0x3;}function isChromium86OrNewer(){const _0x59ac28=window;return countTruthy([!('MediaSettingsRange'in _0x59ac28),'RTCEncodedAudioFrame'in _0x59ac28,''+_0x59ac28['Intl']==='[object\x20Intl]',''+_0x59ac28['Reflect']==='[object\x20Reflect]'])>=0x3;}function isChromium122OrNewer(){const _0x4db7ee=window,{URLPattern:_0x1ddfed}=_0x4db7ee;return countTruthy(['union'in Set['prototype'],'Iterator'in _0x4db7ee,_0x1ddfed&&'hasRegExpGroups'in _0x1ddfed['prototype'],'RGB8'in WebGLRenderingContext['prototype']])>=0x3;}function isWebKit606OrNewer(){const _0x4a385f=window;return countTruthy(['DOMRectList'in _0x4a385f,'RTCPeerConnectionIceEvent'in _0x4a385f,'SVGGeometryElement'in _0x4a385f,'ontransitioncancel'in _0x4a385f])>=0x3;}function isWebKit616OrNewer(){const _0x1ab6c9=window,_0x4c3c36=navigator,{CSS:_0x1d9fcb,HTMLButtonElement:_0x27f728}=_0x1ab6c9;return countTruthy([!('getStorageUpdates'in _0x4c3c36),'popover'in _0x27f728['prototype'],'CSSCounterStyleRule'in _0x1ab6c9,_0x1d9fcb['supports']('font-size-adjust:\x20ex-height\x200.5'),_0x1d9fcb['supports']('text-transform:\x20full-width')])>=0x4;}function isIPad(){if(navigator['platform']==='iPad')return!![];const _0x440629=screen,_0x1f0e6b=_0x440629['width']/_0x440629['height'];return countTruthy(['MediaSource'in window,!!Element['prototype']['webkitRequestFullscreen'],_0x1f0e6b>0.65&&_0x1f0e6b<1.53])>=0x2;}function getFullscreenElement(){const _0x51c3b5=document;return _0x51c3b5['fullscreenElement']??_0x51c3b5['msFullscreenElement']??_0x51c3b5['mozFullScreenElement']??_0x51c3b5['webkitFullscreenElement']??null;}function exitFullscreen(){const _0x4cac4d=document;return _0x4cac4d['exitFullscreen']['call'](_0x4cac4d);}function isAndroid(){const _0x58e54b=isChromium(),_0x4a43b5=isGecko(),_0x2b700e=window,_0x15ecd0=navigator,_0x6072a7='connection';if(_0x58e54b)return countTruthy([!('SharedWorker'in _0x2b700e),_0x15ecd0[_0x6072a7]&&'ontypechange'in _0x15ecd0[_0x6072a7],!('sinkId'in new Audio())])>=0x2;else{if(_0x4a43b5)return countTruthy(['onorientationchange'in _0x2b700e,'orientation'in _0x2b700e,/android/i['test'](_0x15ecd0['appVersion'])])>=0x2;}return![];}function isSamsungInternet(){const _0x5cfc71=navigator,_0x1a1646=window,_0xb2e17c=Audio['prototype'],{visualViewport:_0xa51e54}=_0x1a1646;return countTruthy(['srLatency'in _0xb2e17c,'srChannelCount'in _0xb2e17c,'devicePosture'in _0x5cfc71,_0xa51e54&&'segments'in _0xa51e54,'getTextInformation'in Image['prototype']])>=0x3;}async function getDevtoolsDetection(){if(!isChromium()&&!isSafariWebKit())return null;try{const _0x3fe8c4=await new Promise(_0xcc3450=>{if(isChromium()){const _0x2a0cab=new Error();_0x2a0cab['name']='\x20',Object['defineProperty'](_0x2a0cab,'stack',{'get':_0xcc3450['bind'](null,!![])}),console['debug'](_0x2a0cab);}else{const _0x4e093b=document['createElement']('div');_0x4e093b['toString']=()=>'',Object['defineProperty'](_0x4e093b,'id',{'get'(){_0xcc3450(!![]);const _0x1d7fb7=new Error();_0x1d7fb7['name']='';throw _0x1d7fb7;}}),console['debug'](_0x4e093b);}setTimeout(()=>_0xcc3450(![]));});return _0x3fe8c4;}catch{return null;}}const THRESHOLD_PX=0xc8;function getDevtoolsWindowSize(){try{if(typeof window==='undefined')return null;if(window['top']!==window['self'])return null;const _0xa919f3=window['devicePixelRatio']||0x1,_0x1e96d7=window['outerWidth']-window['innerWidth']*_0xa919f3,_0x11197b=window['outerHeight']-window['innerHeight']*_0xa919f3;return _0x1e96d7>THRESHOLD_PX||_0x11197b>THRESHOLD_PX;}catch{return null;}}function getEvalLength(){return eval['toString']()['length'];}function getEventIsTrusted(){try{const _0x39ec99=new Event(''),_0x4cf88f=_0x39ec99['isTrusted'];return typeof _0x4cf88f==='undefined'?null:{'isTrusted':_0x4cf88f};}catch{return null;}}const _0x3b4df3={};_0x3b4df3['window']=['awesomium'];const _0x5a5d6a={};_0x5a5d6a['window']=['RunPerfTest'];const _0x39e23e={};_0x39e23e['window']=['CefSharp'];const _0x189b45={};_0x189b45['window']=['emit'];const _0x20054e={};_0x20054e['window']=['fmget_targets'];const _0x31d2d3={};_0x31d2d3['window']=['geb'];const _0x195c0e={};_0x195c0e['window']=['__nightmare','nightmare'];const _0x35f698={};_0x35f698['window']=['__phantomas'];const _0x49a105={};_0x49a105['window']=['callPhantom','_phantom'];const _0x45e113={};_0x45e113['window']=['spawn'];const _0x409c36={};_0x409c36['window']=['_Selenium_IDE_Recorder','_selenium','calledSelenium',/^[a-z]{3}_.*_(?:Array|Promise|Symbol)$/],_0x409c36['document']=['__selenium_evaluate','selenium-evaluate','__selenium_unwrapped'];const _0x104613={};_0x104613['window']=['wdioElectron'];const _0x23b591={};_0x23b591['window']=['webdriver','__webdriverFunc','__lastWatirAlert','__lastWatirConfirm','__lastWatirPrompt','_WEBDRIVER_ELEM_CACHE','ChromeDriverw'],_0x23b591['document']=['__webdriver_script_fn','__driver_evaluate','__webdriver_evaluate','__fxdriver_evaluate','__driver_unwrapped','__webdriver_unwrapped','__fxdriver_unwrapped','__webdriver_script_fn','__webdriver_script_func','__webdriver_script_function','$cdc_asdjflasutopfhvcZLmcf','$cdc_asdjflasutopfhvcZLmcfl_','$chrome_asyncScriptInfo','__$webdriverAsyncExecutor'];const _0x5ab6ca={};_0x5ab6ca['window']=['domAutomation','domAutomationController'];const _0x5c3d51={};_0x5c3d51['window']=['iimPlay','iimGetLastError','iimGetLastExtract'];const _0x2b6502={};_0x2b6502['window']=['__automa__'];const _0x10253f={};_0x10253f['window']=['_webscraper_data'];const _0x46b921={};_0x46b921['window']=['_KatalonRecorder'];const _0x1b8dea={};_0x1b8dea['window']=['uivision','__uivision'];const _0x1f6ffe={};_0x1f6ffe['window']=['%testCafeDriverInstance%','%hammerhead%'];const _0x19a3c9={};_0x19a3c9['window']=['__cypress'];const _0x1f4599={};_0x1f4599['window']=['__puppeteer_evaluation_script__'],_0x1f4599['document']=['__puppeteer_evaluation_script__'];const _0x16d5b7={};_0x16d5b7['window']=['__playwright','__pw_manual','__pwInitScripts','__playwright__binding__'],_0x16d5b7['document']=['__playwright_evaluation_script__'];const _0x5c7bcc={};_0x5c7bcc['awesomium']=_0x3b4df3,_0x5c7bcc['cef']=_0x5a5d6a,_0x5c7bcc['cefsharp']=_0x39e23e,_0x5c7bcc['coachjs']=_0x189b45,_0x5c7bcc['fminer']=_0x20054e,_0x5c7bcc['geb']=_0x31d2d3,_0x5c7bcc['nightmarejs']=_0x195c0e,_0x5c7bcc['phantomas']=_0x35f698,_0x5c7bcc['phantomjs']=_0x49a105,_0x5c7bcc['rhino']=_0x45e113,_0x5c7bcc['selenium']=_0x409c36,_0x5c7bcc['webdriverio']=_0x104613,_0x5c7bcc['webdriver']=_0x23b591,_0x5c7bcc['headless_chrome']=_0x5ab6ca,_0x5c7bcc['imacros']=_0x5c3d51,_0x5c7bcc['automa']=_0x2b6502,_0x5c7bcc['web_scraper']=_0x10253f,_0x5c7bcc['katalon']=_0x46b921,_0x5c7bcc['ui_vision']=_0x1b8dea,_0x5c7bcc['testcafe']=_0x1f6ffe,_0x5c7bcc['cypress']=_0x19a3c9,_0x5c7bcc['puppeteer']=_0x1f4599,_0x5c7bcc['playwright_internal']=_0x16d5b7;const TOOL_MARKERS=_0x5c7bcc;function getOwnPropertyNames(_0x14f1ac){try{return Object['getOwnPropertyNames'](_0x14f1ac);}catch{return[];}}function matchesAny(_0x25bc57,_0x43167b){for(const _0x36aa31 of _0x43167b){if(typeof _0x36aa31==='string'){if(_0x25bc57['indexOf'](_0x36aa31)!==-0x1)return!![];}else for(const _0xc47f1b of _0x25bc57){if(_0x36aa31['test'](_0xc47f1b))return!![];}}return![];}function getHeadlessSignals(){const _0x16b109=getOwnPropertyNames(window),_0x637632=typeof document!=='undefined'?getOwnPropertyNames(document):[],_0x2a6df7={};for(const _0x50b6f8 of Object['keys'](TOOL_MARKERS)){const _0x4ad0dd=TOOL_MARKERS[_0x50b6f8],_0x50183f=_0x4ad0dd['window']?matchesAny(_0x16b109,_0x4ad0dd['window']):![],_0x2f3323=_0x4ad0dd['document']&&_0x637632['length']?matchesAny(_0x637632,_0x4ad0dd['document']):![];_0x2a6df7[_0x50b6f8]=_0x50183f||_0x2f3323;}return _0x2a6df7;}let cachedResult=null,observing$1=![];function startObserving$1(){if(observing$1||typeof window==='undefined')return;observing$1=!![];const _0x355a08=performance['now'](),_0x47761f=['click','touchstart','keydown'],_0x5e3e12=_0x5de705=>{cachedResult={'firstInteractionMs':Math['round'](performance['now']()-_0x355a08),'interactionType':_0x5de705['type']};for(const _0x407e5f of _0x47761f){window['removeEventListener'](_0x407e5f,_0x5e3e12);}};for(const _0x2d1688 of _0x47761f){const _0x174316={};_0x174316['once']=!![],_0x174316['passive']=!![],window['addEventListener'](_0x2d1688,_0x5e3e12,_0x174316);}}function getInteractionTiming(){return startObserving$1(),Promise['resolve'](cachedResult);}async function getNotificationContradiction(){try{if(typeof Notification==='undefined')return undefined;const _0x4a0f75=navigator['permissions'];if(_0x4a0f75===undefined||typeof _0x4a0f75['query']!=='function')return undefined;const _0x25e86d={};_0x25e86d['name']='notifications';const _0x1c8f60=await _0x4a0f75['query'](_0x25e86d);return Notification['permission']==='denied'&&_0x1c8f60['state']==='prompt';}catch{return undefined;}}const RESTRICTED_THRESHOLD=0x3;function computeRestrictedEnvironment(_0x5bd0bd){let _0x1182ab=0x0;if(_0x5bd0bd['pushManager'])_0x1182ab++;if(_0x5bd0bd['audioBuffer'])_0x1182ab++;if(_0x5bd0bd['rtcPeerConnection'])_0x1182ab++;if(_0x5bd0bd['geolocation'])_0x1182ab++;if(_0x5bd0bd['serviceWorker'])_0x1182ab++;const _0x514c59={};return _0x514c59['restricted']=_0x1182ab>=RESTRICTED_THRESHOLD,_0x514c59['missing']=_0x1182ab,_0x514c59['flags']=_0x5bd0bd,_0x514c59;}function getRestrictedEnvironment(){if(typeof window==='undefined'||typeof navigator==='undefined')return null;const _0x4b7246=window,_0x51c335=navigator,_0x5a743a={};return _0x5a743a['pushManager']=!('PushManager'in _0x4b7246),_0x5a743a['audioBuffer']=!('AudioBuffer'in _0x4b7246),_0x5a743a['rtcPeerConnection']=!('RTCPeerConnection'in _0x4b7246),_0x5a743a['geolocation']=!('geolocation'in _0x51c335),_0x5a743a['serviceWorker']=!('ServiceWorker'in _0x4b7246),computeRestrictedEnvironment(_0x5a743a);}function getAppVersion(){const _0x435f74=navigator['appVersion'];if(typeof _0x435f74!=='string')throw new Error('navigator.appVersion\x20is\x20undefined');return _0x435f74;}function getArchitecture(){const _0x4eb168=new Float32Array(0x1),_0x14c789=new Uint8Array(_0x4eb168['buffer']);return _0x4eb168[0x0]=Infinity,_0x4eb168[0x0]=_0x4eb168[0x0]-_0x4eb168[0x0],_0x14c789[0x3];}function getAudioSignal(){if(doesBrowserPerformAntiSignalCollection())return getStabilizedAudioSignal();return getUnstableAudioSignal();}function getUnstableAudioSignal(){const _0x1cb162=window,_0x4a3090=_0x1cb162['OfflineAudioContext']??_0x1cb162['webkitOfflineAudioContext'];if(_0x4a3090===undefined)return null;if(doesBrowserSuspendAudioContext())return null;const _0x1d8ad9=0x1194,_0x19a475=0x1388,_0x4ad22b=new _0x4a3090(0x1,_0x19a475,0xac44),_0x396162=_0x4ad22b['createOscillator']();_0x396162['type']='triangle',_0x396162['frequency']['value']=0x2710;const _0x338173=_0x4ad22b['createDynamicsCompressor']();_0x338173['threshold']['value']=-0x32,_0x338173['knee']['value']=0x28,_0x338173['ratio']['value']=0xc,_0x338173['attack']['value']=0x0,_0x338173['release']['value']=0.25,_0x396162['connect'](_0x338173),_0x338173['connect'](_0x4ad22b['destination']),_0x396162['start'](0x0);const [_0x30cd8e,_0xe7f54]=startRenderingAudio(_0x4ad22b),_0x2c3f33=suppressUnhandledRejectionWarning(_0x30cd8e['then'](_0x2a57df=>getHash(_0x2a57df['getChannelData'](0x0)['subarray'](_0x1d8ad9)),_0x1fda53=>{if(_0x1fda53['name']==='timeout'||_0x1fda53['name']==='suspended')return null;throw _0x1fda53;}));return()=>{return _0xe7f54(),_0x2c3f33;};}function doesBrowserSuspendAudioContext(){return isWebKit()&&!isDesktopWebKit()&&!isWebKit606OrNewer();}function doesBrowserPerformAntiSignalCollection(){return isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit()||isChromium()&&isSamsungInternet()&&isChromium122OrNewer();}function startRenderingAudio(_0x193add){const _0x1d3603=0x3,_0x4627e3=0x1f4,_0x50a025=0x1f4,_0x29042d=0x1388;let _0x2ef974=()=>undefined;const _0x101b45=new Promise((_0x271671,_0x501ca2)=>{let _0x23b3c0=![],_0x3579b8=0x0,_0x24cbb0=0x0;_0x193add['oncomplete']=_0x3bf3c8=>{_0x271671(_0x3bf3c8['renderedBuffer']);};const _0x13482a=()=>{setTimeout(()=>_0x501ca2(makeInnerError('timeout')),Math['min'](_0x50a025,_0x24cbb0+_0x29042d-Date['now']()));},_0x19e126=()=>{try{const _0x2b4745=_0x193add['startRendering']();isPromise(_0x2b4745)&&void suppressUnhandledRejectionWarning(_0x2b4745);switch(_0x193add['state']){case'running':_0x24cbb0=Date['now']();_0x23b3c0&&_0x13482a();break;case'suspended':!document['hidden']&&_0x3579b8++;_0x23b3c0&&_0x3579b8>=_0x1d3603?_0x501ca2(makeInnerError('suspended')):setTimeout(_0x19e126,_0x4627e3);break;case'closed':case'interrupted':break;}}catch(_0x48efa5){_0x501ca2(_0x48efa5);}};_0x19e126(),_0x2ef974=()=>{!_0x23b3c0&&(_0x23b3c0=!![],_0x24cbb0>0x0&&_0x13482a());};});return[_0x101b45,_0x2ef974];}function roundToSignificant(_0x5c4e4f,_0x58eeac){if(_0x5c4e4f===0x0)return 0x0;const _0x4a44a3=Math['pow'](0xa,_0x58eeac-Math['ceil'](Math['log10'](Math['abs'](_0x5c4e4f))));return Math['round'](_0x5c4e4f*_0x4a44a3/0x5)*0x5/_0x4a44a3;}function getHash(_0x25c4d3){let _0x2cd68b=0x0;for(let _0x44f27a=0x0;_0x44f27a<_0x25c4d3['length'];++_0x44f27a){_0x2cd68b+=Math['abs'](_0x25c4d3[_0x44f27a]);}return _0x2cd68b;}const _0x132fdf={};_0x132fdf['oscType']='triangle',_0x132fdf['freq']=0x2710,_0x132fdf['useCompressor']=!![],_0x132fdf['useAllpass']=![];const _0x236272={};_0x236272['oscType']='sine',_0x236272['freq']=0x1f40,_0x236272['useCompressor']=![],_0x236272['useAllpass']=![];const _0x5da1e8={};_0x5da1e8['oscType']='square',_0x5da1e8['freq']=0x2710,_0x5da1e8['useCompressor']=!![],_0x5da1e8['useAllpass']=!![];const SCENES=[_0x132fdf,_0x236272,_0x5da1e8],SIG_DIGITS=0x7,BUFFER_LENGTH=0x2af8,SAMPLE_RATE=0xac44,_0x21ecc5={};_0x21ecc5['from']=0x1194,_0x21ecc5['to']=0x1388;const _0x1737a2={};_0x1737a2['from']=0x2710,_0x1737a2['to']=0x2904;const WINDOWS=[_0x21ecc5,_0x1737a2];function extractMetrics(_0x350aae){const _0x47c51a=_0x350aae['length'];if(_0x47c51a===0x0)return[0x0,0x0,0x0,0x0];const _0xe4d280=[];for(let _0x1430f6=0x0;_0x1430f6<_0x47c51a;_0x1430f6++){_0xe4d280['push'](roundToSignificant(_0x350aae[_0x1430f6],SIG_DIGITS));}const _0x499f6f=[..._0xe4d280]['map'](Math['abs'])['sort']((_0x2788c3,_0x4de39d)=>_0x2788c3-_0x4de39d),_0x4c9e50=Math['floor'](_0x499f6f['length']*0.05);let _0x4ea684=0x0;for(let _0x3a0abe=_0x4c9e50;_0x3a0abe<_0x499f6f['length']-_0x4c9e50;_0x3a0abe++){_0x4ea684+=_0x499f6f[_0x3a0abe];}let _0x1cd78e=0x0;for(let _0x13e4d0=0x0;_0x13e4d0<_0x47c51a;_0x13e4d0++){_0x1cd78e+=_0xe4d280[_0x13e4d0]*_0xe4d280[_0x13e4d0];}_0x1cd78e/=_0x47c51a;let _0x488265=0x0;for(let _0x38970a=0x1;_0x38970a<_0x47c51a;_0x38970a++){Math['sign'](_0xe4d280[_0x38970a])!==Math['sign'](_0xe4d280[_0x38970a-0x1])&&_0x488265++;}let _0x3fb66b=0x0;for(let _0x5417e8=0x1;_0x5417e8<_0x47c51a;_0x5417e8++){_0x3fb66b+=Math['abs'](_0xe4d280[_0x5417e8]-_0xe4d280[_0x5417e8-0x1]);}return[_0x4ea684,_0x1cd78e,_0x488265,_0x3fb66b];}async function renderScene(_0xd87a34){const _0x31d8e7=window,_0x569af7=_0x31d8e7['OfflineAudioContext']??_0x31d8e7['webkitOfflineAudioContext'];if(_0x569af7===undefined)return null;try{const _0x50bfc9=new _0x569af7(0x1,BUFFER_LENGTH,SAMPLE_RATE),_0x3c2bc8=_0x50bfc9['createOscillator']();_0x3c2bc8['type']=_0xd87a34['oscType'],_0x3c2bc8['frequency']['value']=_0xd87a34['freq'];let _0x41134c=_0x3c2bc8;if(_0xd87a34['useCompressor']){const _0x2e8966=_0x50bfc9['createDynamicsCompressor']();_0x2e8966['threshold']['value']=-0x32,_0x2e8966['knee']['value']=0x28,_0x2e8966['ratio']['value']=0xc,_0x2e8966['attack']['value']=0x0,_0x2e8966['release']['value']=0.25,_0x41134c['connect'](_0x2e8966),_0x41134c=_0x2e8966;}if(_0xd87a34['useAllpass']){const _0x1bbe9c=_0x50bfc9['createBiquadFilter']();_0x1bbe9c['type']='allpass',_0x1bbe9c['frequency']['value']=0x1388,_0x1bbe9c['Q']['value']=0x5,_0x41134c['connect'](_0x1bbe9c),_0x41134c=_0x1bbe9c;}_0x41134c['connect'](_0x50bfc9['destination']),_0x3c2bc8['start'](0x0);const [_0x184a64,_0x6764e8]=startRenderingAudio(_0x50bfc9);_0x6764e8();const _0x45d5ee=await _0x184a64;return _0x45d5ee['getChannelData'](0x0);}catch{return null;}}function getStabilizedAudioSignal(){return async()=>{const _0x256540=[];for(const _0x4fc9b6 of SCENES){const _0x4c43d7=await renderScene(_0x4fc9b6);if(_0x4c43d7===null)return null;for(const _0x3c3877 of WINDOWS){const _0x2067c1=_0x4c43d7['subarray'](_0x3c3877['from'],_0x3c3877['to']);_0x256540['push'](...extractMetrics(_0x2067c1));}}const _0x1c61db=[0x0,0x4,0x8,0xc,0x10,0x14],_0x582bc0=[0x2,0x6,0xa,0xe,0x12,0x16],_0x1fcc07=[];for(const _0x3066b0 of _0x582bc0)_0x1fcc07['push'](_0x256540[_0x3066b0]);const _0x4dbba1=[[_0x1c61db[0x0],_0x1c61db[0x2]],[_0x1c61db[0x0],_0x1c61db[0x4]],[_0x1c61db[0x2],_0x1c61db[0x4]],[_0x1c61db[0x1],_0x1c61db[0x3]],[_0x1c61db[0x1],_0x1c61db[0x5]],[_0x1c61db[0x3],_0x1c61db[0x5]],[_0x1c61db[0x0],_0x1c61db[0x1]],[_0x1c61db[0x2],_0x1c61db[0x3]],[_0x1c61db[0x4],_0x1c61db[0x5]]],_0x151b57=[];for(const [_0x9a9276,_0x31eedd]of _0x4dbba1){const _0x18d070=_0x256540[_0x31eedd];if(_0x18d070===0x0)return null;_0x151b57['push'](Math['round'](_0x256540[_0x9a9276]/_0x18d070*0x64)/0x64);}let _0x43c7d0=0x0;for(const _0x27505c of _0x1fcc07){const _0x92c730=String(_0x27505c);for(let _0x1f922b=0x0;_0x1f922b<_0x92c730['length'];_0x1f922b++){_0x43c7d0=(_0x43c7d0<<0x5)-_0x43c7d0+_0x92c730['charCodeAt'](_0x1f922b)|0x0;}}for(const _0x5c1da6 of _0x151b57){const _0x468f43=_0x5c1da6['toFixed'](0x2);for(let _0x2dc126=0x0;_0x2dc126<_0x468f43['length'];_0x2dc126++){_0x43c7d0=(_0x43c7d0<<0x5)-_0x43c7d0+_0x468f43['charCodeAt'](_0x2dc126)|0x0;}}return _0x43c7d0>>>0x0;};}function makeInnerError(_0x18a9c7){const _0x32b74a=new Error(_0x18a9c7);return _0x32b74a['name']=_0x18a9c7,_0x32b74a;}function renderAudio(){return new Promise(_0x329df3=>{try{const _0x442820=window,_0x18de6e=_0x442820['OfflineAudioContext']??_0x442820['webkitOfflineAudioContext'];if(!_0x18de6e){_0x329df3(null);return;}const _0x252262=new _0x18de6e(0x1,0x1194,0xac44),_0x179b7a=_0x252262['createOscillator']();_0x179b7a['type']='triangle',_0x179b7a['frequency']['setValueAtTime'](0x2710,_0x252262['currentTime']);const _0x490826=_0x252262['createDynamicsCompressor']();_0x490826['threshold']['setValueAtTime'](-0x32,_0x252262['currentTime']),_0x490826['knee']['setValueAtTime'](0x28,_0x252262['currentTime']),_0x490826['ratio']['setValueAtTime'](0xc,_0x252262['currentTime']),_0x490826['attack']['setValueAtTime'](0x0,_0x252262['currentTime']),_0x490826['release']['setValueAtTime'](0.25,_0x252262['currentTime']),_0x179b7a['connect'](_0x490826),_0x490826['connect'](_0x252262['destination']),_0x179b7a['start'](0x0),_0x252262['startRendering']()['then'](_0x5f5437=>{_0x329df3(_0x5f5437['getChannelData'](0x0)['slice'](0xfa0,0x1194));})['catch'](()=>_0x329df3(null)),setTimeout(()=>_0x329df3(null),0x7d0);}catch{_0x329df3(null);}});}async function getAudioConsistency(){try{const [_0x39cf90,_0x1d66cb]=await Promise['all']([renderAudio(),renderAudio()]);if(_0x39cf90===null||_0x1d66cb===null)return null;const _0x589e5d={};_0x589e5d['consistent']=![],_0x589e5d['delta']=0x1;if(_0x39cf90['length']!==_0x1d66cb['length'])return _0x589e5d;let _0x53062d=0x0;for(let _0x35be1d=0x0;_0x35be1d<_0x39cf90['length'];_0x35be1d++){_0x53062d+=Math['abs'](_0x39cf90[_0x35be1d]-_0x1d66cb[_0x35be1d]);}return{'consistent':_0x53062d===0x0,'delta':Math['round'](_0x53062d*0xf4240)/0xf4240};}catch{return null;}}function getAudioContextInfo(){try{const _0x170317=window['AudioContext']??window['webkitAudioContext'];if(_0x170317===undefined)return null;const _0x3d5850=new _0x170317(),_0x32e102=_0x3d5850['destination'],_0x32cbd3={};_0x32cbd3['maxChannelCount']=_0x32e102['maxChannelCount'],_0x32cbd3['sampleRate']=_0x3d5850['sampleRate'],_0x32cbd3['channelCountMode']=_0x32e102['channelCountMode'],_0x32cbd3['channelInterpretation']=_0x32e102['channelInterpretation'],_0x32cbd3['numberOfOutputs']=_0x32e102['numberOfOutputs'];const _0x536692=_0x32cbd3;return _0x3d5850['close']()['catch'](()=>undefined),_0x536692;}catch{return null;}}function getAudioContextBaseLatency(){const _0x40a87d=isAndroid()||isWebKit();if(!_0x40a87d)return null;const _0x164fe0=window['AudioContext'];if(_0x164fe0===undefined)return null;const _0x52dabe=new _0x164fe0()['baseLatency'];if(_0x52dabe===undefined)return null;if(!isFinite(_0x52dabe))return null;return _0x52dabe;}function getAudioTrap(){return new Promise(_0x3907db=>{try{const _0x3d1a0c=window,_0x30aa0b=_0x3d1a0c['AudioContext']??_0x3d1a0c['webkitAudioContext'];if(!_0x30aa0b){_0x3907db(null);return;}const _0x2e07bf=new _0x30aa0b(),_0x292499=_0x2e07bf['sampleRate']||0xac44,_0x5d3a08=0x80,_0x1a7868=_0x2e07bf['createBuffer'](0x1,_0x5d3a08,_0x292499),_0x3621ea=new Float32Array(_0x5d3a08);for(let _0x4110f6=0x0;_0x4110f6<_0x5d3a08;_0x4110f6++){_0x3621ea[_0x4110f6]=_0x4110f6%0x2===0x0?0.5:-0.5;}if(typeof _0x1a7868['copyToChannel']==='function')_0x1a7868['copyToChannel'](_0x3621ea,0x0);else{const _0x56c5a3=_0x1a7868['getChannelData'](0x0);for(let _0x4f1572=0x0;_0x4f1572<_0x5d3a08;_0x4f1572++){_0x56c5a3[_0x4f1572]=_0x3621ea[_0x4f1572];}}const _0x4bfd77=_0x1a7868['getChannelData'](0x0);let _0x5c9b55=0x0;for(let _0x15bc71=0x0;_0x15bc71<_0x5d3a08;_0x15bc71++){_0x5c9b55+=Math['abs'](_0x4bfd77[_0x15bc71]-_0x3621ea[_0x15bc71]);}try{void _0x2e07bf['close']();}catch{}_0x3907db({'clean':_0x5c9b55===0x0,'delta':Math['round'](_0x5c9b55*0x2540be400)/0x2540be400});}catch{_0x3907db(null);}});}async function getBarcodeDetection(){try{const _0x317984=window['BarcodeDetector'];if(!_0x317984){const _0x2769ed={};return _0x2769ed['supported']=![],_0x2769ed['formats']=[],_0x2769ed;}const _0x56756f=await _0x317984['getSupportedFormats']();return{'supported':!![],'formats':_0x56756f['sort']()};}catch{return null;}}const HASH_SIZE=0x8,WIDTH=HASH_SIZE+0x1,HEIGHT=HASH_SIZE;function computeDHash(_0x3cb2dd){const _0x4cbd9b=document['createElement']('canvas');_0x4cbd9b['width']=WIDTH,_0x4cbd9b['height']=HEIGHT;const _0x3c24a5=_0x4cbd9b['getContext']('2d');if(!_0x3c24a5)return'';_0x3c24a5['drawImage'](_0x3cb2dd,0x0,0x0,WIDTH,HEIGHT);const _0x4ca8bf=_0x3c24a5['getImageData'](0x0,0x0,WIDTH,HEIGHT)['data'],_0xe64a78=WIDTH*HEIGHT,_0x1e10ab=new Uint8Array(_0xe64a78);for(let _0x3f0825=0x0;_0x3f0825<_0xe64a78;_0x3f0825++){const _0x518653=_0x3f0825*0x4;_0x1e10ab[_0x3f0825]=_0x4ca8bf[_0x518653]*0x4d+_0x4ca8bf[_0x518653+0x1]*0x96+_0x4ca8bf[_0x518653+0x2]*0x1d>>0x8;}let _0x21b109='',_0x342e82=0x0,_0x28f040=0x0;for(let _0x2df5c5=0x0;_0x2df5c5<HEIGHT;_0x2df5c5++){for(let _0x35f43f=0x0;_0x35f43f<HASH_SIZE;_0x35f43f++){const _0x1ebb42=_0x2df5c5*WIDTH+_0x35f43f;_0x1e10ab[_0x1ebb42]>_0x1e10ab[_0x1ebb42+0x1]&&(_0x28f040|=0x1<<0x3-_0x342e82),_0x342e82++,_0x342e82===0x4&&(_0x21b109+=_0x28f040['toString'](0x10),_0x28f040=0x0,_0x342e82=0x0);}}return _0x21b109;}function x64Add(_0x643c78,_0x1d50f0){const _0x33b067=_0x643c78[0x0]>>>0x10,_0x48b796=_0x643c78[0x0]&0xffff,_0x83951f=_0x643c78[0x1]>>>0x10,_0x1a61a8=_0x643c78[0x1]&0xffff,_0x3bd381=_0x1d50f0[0x0]>>>0x10,_0x1a25d0=_0x1d50f0[0x0]&0xffff,_0x4c58c3=_0x1d50f0[0x1]>>>0x10,_0x22e6db=_0x1d50f0[0x1]&0xffff;let _0x56ec56=0x0,_0x3b504e=0x0,_0x59338e=0x0,_0x18e4ce=0x0;_0x18e4ce+=_0x1a61a8+_0x22e6db,_0x59338e+=_0x18e4ce>>>0x10,_0x18e4ce&=0xffff,_0x59338e+=_0x83951f+_0x4c58c3,_0x3b504e+=_0x59338e>>>0x10,_0x59338e&=0xffff,_0x3b504e+=_0x48b796+_0x1a25d0,_0x56ec56+=_0x3b504e>>>0x10,_0x3b504e&=0xffff,_0x56ec56+=_0x33b067+_0x3bd381,_0x56ec56&=0xffff,_0x643c78[0x0]=_0x56ec56<<0x10|_0x3b504e,_0x643c78[0x1]=_0x59338e<<0x10|_0x18e4ce;}function x64Multiply(_0x4c61aa,_0x251c5c){const _0xb000f6=_0x4c61aa[0x0]>>>0x10,_0x5eb399=_0x4c61aa[0x0]&0xffff,_0xab66f4=_0x4c61aa[0x1]>>>0x10,_0x5a938b=_0x4c61aa[0x1]&0xffff,_0x1250e9=_0x251c5c[0x0]>>>0x10,_0x5f2105=_0x251c5c[0x0]&0xffff,_0x3cac8f=_0x251c5c[0x1]>>>0x10,_0x954cf2=_0x251c5c[0x1]&0xffff;let _0x43d70f=0x0,_0x7f130e=0x0,_0x1e4230=0x0,_0x2015aa=0x0;_0x2015aa+=_0x5a938b*_0x954cf2,_0x1e4230+=_0x2015aa>>>0x10,_0x2015aa&=0xffff,_0x1e4230+=_0xab66f4*_0x954cf2,_0x7f130e+=_0x1e4230>>>0x10,_0x1e4230&=0xffff,_0x1e4230+=_0x5a938b*_0x3cac8f,_0x7f130e+=_0x1e4230>>>0x10,_0x1e4230&=0xffff,_0x7f130e+=_0x5eb399*_0x954cf2,_0x43d70f+=_0x7f130e>>>0x10,_0x7f130e&=0xffff,_0x7f130e+=_0xab66f4*_0x3cac8f,_0x43d70f+=_0x7f130e>>>0x10,_0x7f130e&=0xffff,_0x7f130e+=_0x5a938b*_0x5f2105,_0x43d70f+=_0x7f130e>>>0x10,_0x7f130e&=0xffff,_0x43d70f+=_0xb000f6*_0x954cf2+_0x5eb399*_0x3cac8f+_0xab66f4*_0x5f2105+_0x5a938b*_0x1250e9,_0x43d70f&=0xffff,_0x4c61aa[0x0]=_0x43d70f<<0x10|_0x7f130e,_0x4c61aa[0x1]=_0x1e4230<<0x10|_0x2015aa;}function x64Rotl(_0x8588fd,_0x43daea){const _0x36d2f7=_0x8588fd[0x0],_0x369497=_0x43daea%0x40;if(_0x369497===0x20)_0x8588fd[0x0]=_0x8588fd[0x1],_0x8588fd[0x1]=_0x36d2f7;else{if(_0x369497<0x20)_0x8588fd[0x0]=_0x36d2f7<<_0x369497|_0x8588fd[0x1]>>>0x20-_0x369497,_0x8588fd[0x1]=_0x8588fd[0x1]<<_0x369497|_0x36d2f7>>>0x20-_0x369497;else{const _0x1faf0f=_0x369497-0x20;_0x8588fd[0x0]=_0x8588fd[0x1]<<_0x1faf0f|_0x36d2f7>>>0x20-_0x1faf0f,_0x8588fd[0x1]=_0x36d2f7<<_0x1faf0f|_0x8588fd[0x1]>>>0x20-_0x1faf0f;}}}function x64LeftShift(_0x40863f,_0x10bfe8){const _0xf61c58=_0x10bfe8%0x40;if(_0xf61c58===0x0)return;else _0xf61c58<0x20?(_0x40863f[0x0]=_0x40863f[0x1]>>>0x20-_0xf61c58,_0x40863f[0x1]=_0x40863f[0x1]<<_0xf61c58):(_0x40863f[0x0]=_0x40863f[0x1]<<_0xf61c58-0x20,_0x40863f[0x1]=0x0);}function x64Xor(_0x571885,_0x271b9c){_0x571885[0x0]^=_0x271b9c[0x0],_0x571885[0x1]^=_0x271b9c[0x1];}const F1=[0xff51afd7,0xed558ccd],F2=[0xc4ceb9fe,0x1a85ec53];function x64Fmix(_0x19064e){const _0x31841d=[0x0,_0x19064e[0x0]>>>0x1];x64Xor(_0x19064e,_0x31841d),x64Multiply(_0x19064e,F1),_0x31841d[0x1]=_0x19064e[0x0]>>>0x1,x64Xor(_0x19064e,_0x31841d),x64Multiply(_0x19064e,F2),_0x31841d[0x1]=_0x19064e[0x0]>>>0x1,x64Xor(_0x19064e,_0x31841d);}const C1=[0x87c37b91,0x114253d5],C2=[0x4cf5ad43,0x2745937f],M=[0x0,0x5],N1=[0x0,0x52dce729],N2=[0x0,0x38495ab5];function x64hash128(_0x5b3806,_0x10f4cc){const _0x4fff27=getUTF8Bytes(_0x5b3806),_0x54eadb=0x0,_0x2619b3=[0x0,_0x4fff27['length']],_0x247b90=_0x2619b3[0x1]%0x10,_0x73487f=_0x2619b3[0x1]-_0x247b90,_0x20f335=[0x0,_0x54eadb],_0x543370=[0x0,_0x54eadb],_0x134bb5=[0x0,0x0],_0x1032ba=[0x0,0x0];let _0x160599;for(_0x160599=0x0;_0x160599<_0x73487f;_0x160599=_0x160599+0x10){_0x134bb5[0x0]=_0x4fff27[_0x160599+0x4]|_0x4fff27[_0x160599+0x5]<<0x8|_0x4fff27[_0x160599+0x6]<<0x10|_0x4fff27[_0x160599+0x7]<<0x18,_0x134bb5[0x1]=_0x4fff27[_0x160599]|_0x4fff27[_0x160599+0x1]<<0x8|_0x4fff27[_0x160599+0x2]<<0x10|_0x4fff27[_0x160599+0x3]<<0x18,_0x1032ba[0x0]=_0x4fff27[_0x160599+0xc]|_0x4fff27[_0x160599+0xd]<<0x8|_0x4fff27[_0x160599+0xe]<<0x10|_0x4fff27[_0x160599+0xf]<<0x18,_0x1032ba[0x1]=_0x4fff27[_0x160599+0x8]|_0x4fff27[_0x160599+0x9]<<0x8|_0x4fff27[_0x160599+0xa]<<0x10|_0x4fff27[_0x160599+0xb]<<0x18,x64Multiply(_0x134bb5,C1),x64Rotl(_0x134bb5,0x1f),x64Multiply(_0x134bb5,C2),x64Xor(_0x20f335,_0x134bb5),x64Rotl(_0x20f335,0x1b),x64Add(_0x20f335,_0x543370),x64Multiply(_0x20f335,M),x64Add(_0x20f335,N1),x64Multiply(_0x1032ba,C2),x64Rotl(_0x1032ba,0x21),x64Multiply(_0x1032ba,C1),x64Xor(_0x543370,_0x1032ba),x64Rotl(_0x543370,0x1f),x64Add(_0x543370,_0x20f335),x64Multiply(_0x543370,M),x64Add(_0x543370,N2);}_0x134bb5[0x0]=0x0,_0x134bb5[0x1]=0x0,_0x1032ba[0x0]=0x0,_0x1032ba[0x1]=0x0;const _0x5f34ea=[0x0,0x0];switch(_0x247b90){case 0xf:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0xe],x64LeftShift(_0x5f34ea,0x30),x64Xor(_0x1032ba,_0x5f34ea);case 0xe:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0xd],x64LeftShift(_0x5f34ea,0x28),x64Xor(_0x1032ba,_0x5f34ea);case 0xd:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0xc],x64LeftShift(_0x5f34ea,0x20),x64Xor(_0x1032ba,_0x5f34ea);case 0xc:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0xb],x64LeftShift(_0x5f34ea,0x18),x64Xor(_0x1032ba,_0x5f34ea);case 0xb:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0xa],x64LeftShift(_0x5f34ea,0x10),x64Xor(_0x1032ba,_0x5f34ea);case 0xa:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x9],x64LeftShift(_0x5f34ea,0x8),x64Xor(_0x1032ba,_0x5f34ea);case 0x9:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x8],x64Xor(_0x1032ba,_0x5f34ea),x64Multiply(_0x1032ba,C2),x64Rotl(_0x1032ba,0x21),x64Multiply(_0x1032ba,C1),x64Xor(_0x543370,_0x1032ba);case 0x8:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x7],x64LeftShift(_0x5f34ea,0x38),x64Xor(_0x134bb5,_0x5f34ea);case 0x7:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x6],x64LeftShift(_0x5f34ea,0x30),x64Xor(_0x134bb5,_0x5f34ea);case 0x6:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x5],x64LeftShift(_0x5f34ea,0x28),x64Xor(_0x134bb5,_0x5f34ea);case 0x5:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x4],x64LeftShift(_0x5f34ea,0x20),x64Xor(_0x134bb5,_0x5f34ea);case 0x4:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x3],x64LeftShift(_0x5f34ea,0x18),x64Xor(_0x134bb5,_0x5f34ea);case 0x3:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x2],x64LeftShift(_0x5f34ea,0x10),x64Xor(_0x134bb5,_0x5f34ea);case 0x2:_0x5f34ea[0x1]=_0x4fff27[_0x160599+0x1],x64LeftShift(_0x5f34ea,0x8),x64Xor(_0x134bb5,_0x5f34ea);case 0x1:_0x5f34ea[0x1]=_0x4fff27[_0x160599],x64Xor(_0x134bb5,_0x5f34ea),x64Multiply(_0x134bb5,C1),x64Rotl(_0x134bb5,0x1f),x64Multiply(_0x134bb5,C2),x64Xor(_0x20f335,_0x134bb5);}return x64Xor(_0x20f335,_0x2619b3),x64Xor(_0x543370,_0x2619b3),x64Add(_0x20f335,_0x543370),x64Add(_0x543370,_0x20f335),x64Fmix(_0x20f335),x64Fmix(_0x543370),x64Add(_0x20f335,_0x543370),x64Add(_0x543370,_0x20f335),('00000000'+(_0x20f335[0x0]>>>0x0)['toString'](0x10))['slice'](-0x8)+('00000000'+(_0x20f335[0x1]>>>0x0)['toString'](0x10))['slice'](-0x8)+('00000000'+(_0x543370[0x0]>>>0x0)['toString'](0x10))['slice'](-0x8)+('00000000'+(_0x543370[0x1]>>>0x0)['toString'](0x10))['slice'](-0x8);}const _0x5c7418={};_0x5c7418['winding']=![],_0x5c7418['unstable']=![],_0x5c7418['geometryMurHash']='',_0x5c7418['textMurHash']='',_0x5c7418['geometryDHash']='',_0x5c7418['textDHash']='';const EMPTY$1=_0x5c7418;function getCanvasSignal(){return getUnstableCanvasSignal();}function getUnstableCanvasSignal(_0x1628d5){const [_0x5b50ff,_0x93b1ca]=makeCanvasContext();if(!isSupported(_0x5b50ff,_0x93b1ca))return EMPTY$1;const _0x3f8309=doesSupportWinding(_0x93b1ca);return renderAll(_0x5b50ff,_0x93b1ca,_0x3f8309);}function makeCanvasContext(){const _0x1ad30c=document['createElement']('canvas');return _0x1ad30c['width']=0x1,_0x1ad30c['height']=0x1,[_0x1ad30c,_0x1ad30c['getContext']('2d')];}function isSupported(_0x4c2fdf,_0x5aa980){return _0x5aa980!==undefined&&_0x5aa980!==null&&typeof _0x4c2fdf['toDataURL']==='function';}function doesSupportWinding(_0x27b03a){return _0x27b03a['rect'](0x0,0x0,0xa,0xa),_0x27b03a['rect'](0x2,0x2,0x6,0x6),!_0x27b03a['isPointInPath'](0x5,0x5,'evenodd');}function renderAll(_0xc0128f,_0x5ac439,_0x4fb9d3){renderTextImage(_0xc0128f,_0x5ac439);const _0x35a891=computeDHash(_0xc0128f),_0x392c9f=canvasToString(_0xc0128f),_0xc060db=canvasToString(_0xc0128f);if(_0x392c9f!==_0xc060db){const _0x4c2039={};return _0x4c2039['winding']=_0x4fb9d3,_0x4c2039['unstable']=!![],_0x4c2039['geometryMurHash']='',_0x4c2039['textMurHash']='',_0x4c2039['geometryDHash']='',_0x4c2039['textDHash']='',_0x4c2039;}renderGeometryImage(_0xc0128f,_0x5ac439);const _0x1e3c8d=computeDHash(_0xc0128f),_0x17eecb=canvasToString(_0xc0128f);return{'winding':_0x4fb9d3,'unstable':![],'geometryMurHash':x64hash128(_0x17eecb),'textMurHash':x64hash128(_0x392c9f),'geometryDHash':_0x1e3c8d,'textDHash':_0x35a891};}function renderTextImage(_0x414fb4,_0x328593){_0x414fb4['width']=0xf0,_0x414fb4['height']=0x3c,_0x328593['textBaseline']='alphabetic',_0x328593['fillStyle']='#f60',_0x328593['fillRect'](0x64,0x1,0x3e,0x14),_0x328593['fillStyle']='#069',_0x328593['font']='11pt\x20\x22Times\x20New\x20Roman\x22';const _0x11b022='Cwm\x20fjordbank\x20gly\x20'+String['fromCharCode'](0xd83d,0xde03);_0x328593['fillText'](_0x11b022,0x2,0xf),_0x328593['fillStyle']='rgba(102,\x20204,\x200,\x200.2)',_0x328593['font']='18pt\x20Arial',_0x328593['fillText'](_0x11b022,0x4,0x2d);}function renderGeometryImage(_0x4098c7,_0x34e6e3){_0x4098c7['width']=0x7a,_0x4098c7['height']=0x6e,_0x34e6e3['globalCompositeOperation']='multiply';for(const [_0x26d9a3,_0x328c00,_0x32872a]of[['#f2f',0x28,0x28],['#2ff',0x50,0x28],['#ff2',0x3c,0x50]]){_0x34e6e3['fillStyle']=_0x26d9a3,_0x34e6e3['beginPath'](),_0x34e6e3['arc'](_0x328c00,_0x32872a,0x28,0x0,Math['PI']*0x2,!![]),_0x34e6e3['closePath'](),_0x34e6e3['fill']();}_0x34e6e3['fillStyle']='#f9c',_0x34e6e3['arc'](0x3c,0x3c,0x3c,0x0,Math['PI']*0x2,!![]),_0x34e6e3['arc'](0x3c,0x3c,0x14,0x0,Math['PI']*0x2,!![]),_0x34e6e3['fill']('evenodd');}function canvasToString(_0x55c832){return _0x55c832['toDataURL']();}function getCanvasAdvanced(){try{const _0x2e8957=document['createElement']('canvas'),_0xabdcae=_0x2e8957['getContext']('2d');if(!_0xabdcae)return null;const _0x460b4c=renderBlendModes(_0x2e8957,_0xabdcae),_0x4b57fd=renderShadows(_0x2e8957,_0xabdcae),_0xc0f7ec=renderGradientPath(_0x2e8957,_0xabdcae),_0x4cce04=testOffscreenConsistency(_0x2e8957,_0xabdcae),_0xb904f1={};return _0xb904f1['blendDHash']=_0x460b4c['dHash'],_0xb904f1['shadowDHash']=_0x4b57fd['dHash'],_0xb904f1['gradientDHash']=_0xc0f7ec['dHash'],_0xb904f1['blendMurHash']=_0x460b4c['murHash'],_0xb904f1['shadowMurHash']=_0x4b57fd['murHash'],_0xb904f1['gradientMurHash']=_0xc0f7ec['murHash'],_0xb904f1['offscreenConsistent']=_0x4cce04,_0xb904f1;}catch{return null;}}function renderBlendModes(_0x51c937,_0x40d5cb){_0x51c937['width']=0x64,_0x51c937['height']=0x64,_0x40d5cb['clearRect'](0x0,0x0,0x64,0x64),_0x40d5cb['fillStyle']='#e74c3c',_0x40d5cb['fillRect'](0xa,0xa,0x3c,0x3c),_0x40d5cb['globalCompositeOperation']='multiply',_0x40d5cb['fillStyle']='#3498db',_0x40d5cb['fillRect'](0x1e,0x1e,0x3c,0x3c),_0x40d5cb['globalCompositeOperation']='screen',_0x40d5cb['fillStyle']='#2ecc71',_0x40d5cb['beginPath'](),_0x40d5cb['arc'](0x32,0x32,0x1e,0x0,Math['PI']*0x2),_0x40d5cb['fill'](),_0x40d5cb['globalCompositeOperation']='overlay',_0x40d5cb['fillStyle']='#f39c12',_0x40d5cb['fillRect'](0x14,0x14,0x1e,0x3c),_0x40d5cb['globalCompositeOperation']='source-over';const _0x4f5f5f=computeDHash(_0x51c937),_0x1277c6=x64hash128(_0x51c937['toDataURL']()),_0x1c6a92={};return _0x1c6a92['dHash']=_0x4f5f5f,_0x1c6a92['murHash']=_0x1277c6,_0x1c6a92;}function renderShadows(_0x59afeb,_0x21652f){_0x59afeb['width']=0x78,_0x59afeb['height']=0x50,_0x21652f['clearRect'](0x0,0x0,0x78,0x50),_0x21652f['shadowColor']='rgba(0,\x200,\x200,\x200.5)',_0x21652f['shadowBlur']=0xa,_0x21652f['shadowOffsetX']=0x5,_0x21652f['shadowOffsetY']=0x5,_0x21652f['fillStyle']='#9b59b6',_0x21652f['fillRect'](0x14,0xf,0x28,0x28),_0x21652f['shadowColor']='rgba(52,\x20152,\x20219,\x200.7)',_0x21652f['shadowBlur']=0xf,_0x21652f['shadowOffsetX']=-0x3,_0x21652f['shadowOffsetY']=0x3,_0x21652f['fillStyle']='#1abc9c',_0x21652f['beginPath'](),_0x21652f['arc'](0x55,0x28,0x19,0x0,Math['PI']*0x2),_0x21652f['fill'](),_0x21652f['shadowColor']='transparent',_0x21652f['shadowBlur']=0x0,_0x21652f['shadowOffsetX']=0x0,_0x21652f['shadowOffsetY']=0x0;const _0x3653d7=computeDHash(_0x59afeb),_0x31d359=x64hash128(_0x59afeb['toDataURL']()),_0x2cdd18={};return _0x2cdd18['dHash']=_0x3653d7,_0x2cdd18['murHash']=_0x31d359,_0x2cdd18;}function renderGradientPath(_0x4c7d17,_0x1d124){_0x4c7d17['width']=0x64,_0x4c7d17['height']=0x64,_0x1d124['clearRect'](0x0,0x0,0x64,0x64);const _0x4a736c=_0x1d124['createRadialGradient'](0x32,0x32,0x5,0x32,0x32,0x2d);_0x4a736c['addColorStop'](0x0,'#e74c3c'),_0x4a736c['addColorStop'](0.5,'#f39c12'),_0x4a736c['addColorStop'](0x1,'#2ecc71'),_0x1d124['fillStyle']=_0x4a736c,_0x1d124['beginPath'](),_0x1d124['moveTo'](0x32,0x5),_0x1d124['lineTo'](0x5f,0x23),_0x1d124['lineTo'](0x50,0x5a),_0x1d124['lineTo'](0x14,0x5a),_0x1d124['lineTo'](0x5,0x23),_0x1d124['closePath'](),_0x1d124['fill']();try{const _0x205b2a=_0x1d124['createConicGradient'](0x0,0x32,0x32);_0x205b2a['addColorStop'](0x0,'red'),_0x205b2a['addColorStop'](0.33,'green'),_0x205b2a['addColorStop'](0.66,'blue'),_0x205b2a['addColorStop'](0x1,'red'),_0x1d124['globalCompositeOperation']='difference',_0x1d124['fillStyle']=_0x205b2a,_0x1d124['fillRect'](0xa,0xa,0x50,0x50),_0x1d124['globalCompositeOperation']='source-over';}catch{}const _0x1879fc=computeDHash(_0x4c7d17),_0x1fc7f1=x64hash128(_0x4c7d17['toDataURL']()),_0x338dca={};return _0x338dca['dHash']=_0x1879fc,_0x338dca['murHash']=_0x1fc7f1,_0x338dca;}function testOffscreenConsistency(_0x551356,_0x2508f5){if(typeof OffscreenCanvas==='undefined')return null;try{_0x551356['width']=0x32,_0x551356['height']=0x32,_0x2508f5['clearRect'](0x0,0x0,0x32,0x32),_0x2508f5['fillStyle']='#e74c3c',_0x2508f5['beginPath'](),_0x2508f5['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0x2508f5['fill']();const _0x1e35a9=computeDHash(_0x551356),_0x117cab=new OffscreenCanvas(0x32,0x32),_0x2d2469=_0x117cab['getContext']('2d');if(!_0x2d2469)return null;_0x2d2469['fillStyle']='#e74c3c',_0x2d2469['beginPath'](),_0x2d2469['arc'](0x19,0x19,0x14,0x0,Math['PI']*0x2),_0x2d2469['fill']();const _0x6efd5d=document['createElement']('canvas');_0x6efd5d['width']=0x32,_0x6efd5d['height']=0x32;const _0x439ae7=_0x6efd5d['getContext']('2d');if(!_0x439ae7)return null;const _0x57efe7=_0x117cab['transferToImageBitmap']();_0x439ae7['drawImage'](_0x57efe7,0x0,0x0);const _0x5f2250=computeDHash(_0x6efd5d);return _0x1e35a9===_0x5f2250;}catch{return null;}}const CANVAS_DIM=0x20,SEED=[0x4d6f6f6e,0x57616b65,0x46696e67,0x65725072];function xoshiro128ss(_0x87f05a,_0x5f02f2,_0xfd82ea,_0x480ca9){let _0x6042be=_0x87f05a,_0x1c8205=_0x5f02f2,_0x30b00e=_0xfd82ea,_0x510bda=_0x480ca9;return function(){const _0x50b5f8=_0x1c8205<<0x9;let _0xa4be7=0x5*_0x6042be;return _0xa4be7=0x9*(_0xa4be7<<0x7|_0xa4be7>>>0x19),_0x510bda^=_0x1c8205,_0x1c8205^=_0x30b00e^=_0x6042be,_0x6042be^=_0x510bda,_0x30b00e^=_0x50b5f8,_0x510bda=_0x510bda<<0xb|_0x510bda>>>0x15,(_0xa4be7>>>0x0)/0x100000000;};}const fnv1a$2=fnv1aBytes;function getCanvasRandom(){try{const _0x3e2ff7=document['createElement']('canvas'),_0x4cea19=_0x3e2ff7['getContext']('2d');if(_0x4cea19===null)return null;_0x3e2ff7['width']=CANVAS_DIM,_0x3e2ff7['height']=CANVAS_DIM;const _0x5d14e8=xoshiro128ss(SEED[0x0],SEED[0x1],SEED[0x2],SEED[0x3]),_0x1db581=_0x5d14e8()*CANVAS_DIM,_0x1a4dd8=_0x5d14e8()*CANVAS_DIM,_0x5ef433=_0x4cea19['createRadialGradient'](_0x1db581,_0x1a4dd8,0x2,_0x1db581,_0x1a4dd8,CANVAS_DIM*0.8);for(let _0x501fba=0x0;_0x501fba<0x5;_0x501fba++){const _0x34afb8=Math['floor'](_0x5d14e8()*0x100),_0x38d158=Math['floor'](_0x5d14e8()*0x100),_0x8964dd=Math['floor'](_0x5d14e8()*0x100);_0x5ef433['addColorStop'](_0x501fba/0x4,'rgb('+_0x34afb8+','+_0x38d158+','+_0x8964dd+')');}_0x4cea19['fillStyle']=_0x5ef433,_0x4cea19['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);for(let _0x244c5a=0x0;_0x244c5a<0x3;_0x244c5a++){_0x4cea19['beginPath'](),_0x4cea19['arc'](_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM*0.4+0x2,_0x5d14e8()*Math['PI']*0x2,_0x5d14e8()*Math['PI']*0x2),_0x4cea19['strokeStyle']='rgba('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+(_0x5d14e8()*0.5+0.5)['toFixed'](0x2)+')',_0x4cea19['lineWidth']=_0x5d14e8()*0x3+0.5,_0x4cea19['stroke']();}for(let _0x763e7a=0x0;_0x763e7a<0x2;_0x763e7a++){_0x4cea19['beginPath'](),_0x4cea19['moveTo'](_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM),_0x4cea19['bezierCurveTo'](_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM,_0x5d14e8()*CANVAS_DIM),_0x4cea19['strokeStyle']='rgba('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+(_0x5d14e8()*0.5+0.5)['toFixed'](0x2)+')',_0x4cea19['lineWidth']=_0x5d14e8()*0x2+0.5,_0x4cea19['stroke']();}_0x4cea19['shadowBlur']=_0x5d14e8()*0x8+0x2,_0x4cea19['shadowColor']='rgba('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+',0.7)',_0x4cea19['shadowOffsetX']=_0x5d14e8()*0x4-0x2,_0x4cea19['shadowOffsetY']=_0x5d14e8()*0x4-0x2,_0x4cea19['fillStyle']='rgb('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+')',_0x4cea19['fillRect'](_0x5d14e8()*CANVAS_DIM*0.5,_0x5d14e8()*CANVAS_DIM*0.5,CANVAS_DIM*0.4,CANVAS_DIM*0.4),_0x4cea19['shadowBlur']=0x0,_0x4cea19['shadowColor']='transparent',_0x4cea19['shadowOffsetX']=0x0,_0x4cea19['shadowOffsetY']=0x0;const _0x887b03=['serif','sans-serif','monospace'];for(let _0x3563b9=0x0;_0x3563b9<0x3;_0x3563b9++){const _0x173174=Math['floor'](_0x5d14e8()*0xc)+0x8;_0x4cea19['font']=_0x173174+'px\x20'+_0x887b03[_0x3563b9%0x3],_0x4cea19['fillStyle']='rgb('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+')',_0x4cea19['fillText'](String['fromCharCode'](Math['floor'](_0x5d14e8()*0x1a)+0x41,Math['floor'](_0x5d14e8()*0x1a)+0x61,Math['floor'](_0x5d14e8()*0xa)+0x30),_0x5d14e8()*CANVAS_DIM*0.7,_0x5d14e8()*CANVAS_DIM*0.8+_0x173174);}_0x4cea19['globalAlpha']=0.3;const _0xcc829=_0x4cea19['createLinearGradient'](0x0,0x0,CANVAS_DIM,CANVAS_DIM);_0xcc829['addColorStop'](0x0,'rgba('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+',1)'),_0xcc829['addColorStop'](0x1,'rgba('+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+','+Math['floor'](_0x5d14e8()*0x100)+',1)'),_0x4cea19['fillStyle']=_0xcc829,_0x4cea19['fillRect'](0x0,0x0,CANVAS_DIM,CANVAS_DIM),_0x4cea19['globalAlpha']=0x1;const _0xf022e3=_0x4cea19['getImageData'](0x0,0x0,_0x3e2ff7['width'],_0x3e2ff7['height']),_0x413062=fnv1a$2(_0xf022e3['data']),_0x3532e7=computeDHash(_0x3e2ff7),_0x5eb8e4=x64hash128(_0x3e2ff7['toDataURL']()),_0x337a4d={};return _0x337a4d['p']=_0x413062,_0x337a4d['d']=CANVAS_DIM,_0x337a4d['dHash']=_0x3532e7,_0x337a4d['murHash']=_0x5eb8e4,_0x337a4d;}catch{return null;}}function getColorGamut(){for(const _0x16caaf of['rec2020','p3','srgb']){if(matchMedia('(color-gamut:\x20'+_0x16caaf+')')['matches'])return _0x16caaf;}return undefined;}const _0x2a81ea={};_0x2a81ea['prop']='width',_0x2a81ea['value']='calc(sin(1)\x20*\x201000px)',_0x2a81ea['label']='sin1';const _0x11fc66={};_0x11fc66['prop']='width',_0x11fc66['value']='calc(cos(1)\x20*\x201000px)',_0x11fc66['label']='cos1';const _0x4715e7={};_0x4715e7['prop']='width',_0x4715e7['value']='calc(tan(0.5)\x20*\x201000px)',_0x4715e7['label']='tan05';const _0x5cd89b={};_0x5cd89b['prop']='width',_0x5cd89b['value']='calc(sin(1.5)\x20*\x20cos(2.3)\x20*\x2010000px)',_0x5cd89b['label']='sincos';const _0x5d723d={};_0x5d723d['prop']='width',_0x5d723d['value']='calc(sin(0.001)\x20*\x201000000px)',_0x5d723d['label']='sin_small';const _0x5a2a75={};_0x5a2a75['prop']='width',_0x5a2a75['value']='calc(cos(3.14159265)\x20*\x2010000px\x20+\x2010000px)',_0x5a2a75['label']='cos_pi';const _0x130b86={};_0x130b86['prop']='width',_0x130b86['value']='calc(tan(1.5)\x20*\x20100px\x20+\x2010000px)',_0x130b86['label']='tan15';const _0x473f3a={};_0x473f3a['prop']='width',_0x473f3a['value']='calc(sin(12345.6789)\x20*\x201000px\x20+\x201000px)',_0x473f3a['label']='sin_large';const _0x468f15={};_0x468f15['prop']='height',_0x468f15['value']='calc(sqrt(2)\x20*\x201000px)',_0x468f15['label']='sqrt2';const _0x496fcf={};_0x496fcf['prop']='height',_0x496fcf['value']='calc(exp(1)\x20*\x20100px)',_0x496fcf['label']='exp1';const _0x56aa23={};_0x56aa23['prop']='height',_0x56aa23['value']='calc(log(10)\x20*\x201000px)',_0x56aa23['label']='log10';const _0x3f2980={};_0x3f2980['prop']='height',_0x3f2980['value']='calc(hypot(3,\x204)\x20*\x20100px)',_0x3f2980['label']='hypot34';const EXPRESSIONS=[_0x2a81ea,_0x11fc66,_0x4715e7,_0x5cd89b,_0x5d723d,_0x5a2a75,_0x130b86,_0x473f3a,_0x468f15,_0x496fcf,_0x56aa23,_0x3f2980];function getCssTrigPrecision(){try{if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;if(!CSS['supports']('width','calc(sin(1)\x20*\x201px)'))return null;const _0x550dee=document['createElement']('div');_0x550dee['style']['position']='absolute',_0x550dee['style']['visibility']='hidden',_0x550dee['style']['overflow']='hidden',_0x550dee['style']['top']='-9999px',_0x550dee['style']['left']='-9999px',document['body']['appendChild'](_0x550dee);const _0x255f58={};for(const _0xaaade7 of EXPRESSIONS){const _0xf2ffb5=document['createElement']('div');_0xf2ffb5['style']['position']='absolute',_0xf2ffb5['style'][_0xaaade7['prop']]=_0xaaade7['value'],_0x550dee['appendChild'](_0xf2ffb5);const _0x3fef65=getComputedStyle(_0xf2ffb5),_0x23c795=parseFloat(_0x3fef65[_0xaaade7['prop']]);!isNaN(_0x23c795)&&isFinite(_0x23c795)&&(_0x255f58[_0xaaade7['label']]=Math['round'](_0x23c795*0xf4240)/0xf4240);}return document['body']['removeChild'](_0x550dee),Object['keys'](_0x255f58)['length']>0x0?_0x255f58:null;}catch{return null;}}const KEY_SYSTEMS=[['wv','com.widevine.alpha'],['wvp','com.widevine.alpha.experiment'],['pr','com.microsoft.playready'],['ck','org.w3.clearkey'],['pt','com.adobe.primetime'],['fp','com.apple.fairplay']],_0x1da96c={};_0x1da96c['contentType']='audio/mp4;codecs=\x22mp4a.40.2\x22';const _0x4a6ba1={};_0x4a6ba1['initDataTypes']=['cenc'],_0x4a6ba1['audioCapabilities']=[_0x1da96c];const PROBE_CONFIG=[_0x4a6ba1];function getRequestFn(){if(typeof navigator==='undefined')return null;const _0x238767=navigator['requestMediaKeySystemAccess'];if(typeof _0x238767!=='function')return null;return _0x238767;}function getDrmSystems(){const _0x297a3b=getRequestFn();if(_0x297a3b===null)return null;return async()=>{const _0x5ddaf9={};_0x5ddaf9['wv']=![],_0x5ddaf9['wvp']=![],_0x5ddaf9['pr']=![],_0x5ddaf9['ck']=![],_0x5ddaf9['pt']=![],_0x5ddaf9['fp']=![];const _0x429b72=_0x5ddaf9;return await Promise['all'](KEY_SYSTEMS['map'](async([_0xf7a65,_0x536373])=>{try{await _0x297a3b['call'](navigator,_0x536373,PROBE_CONFIG),_0x429b72[_0xf7a65]=!![];}catch{_0x429b72[_0xf7a65]=![];}})),_0x429b72;};}const IFRAME_INIT_TIMEOUT_MS=0x1388,IFRAME_ACTION_TIMEOUT_MS=0xbb8,BODY_POLL_TIMEOUT_MS=0x1388;async function withIframe(_0x5416e3,_0x1b8341,_0x538650=0x32){const _0x166660=document;while(_0x166660['body']===null){await wait(_0x538650);}const _0x1ee8d1=_0x166660['createElement']('iframe');try{await new Promise((_0x4b2dfa,_0x5bbb3b)=>{let _0x1056d9=![];const _0x1e5ace=()=>{_0x1056d9=!![],_0x4b2dfa();},_0xae5dc=_0x2b539e=>{_0x1056d9=!![],_0x5bbb3b(_0x2b539e);};_0x1ee8d1['onload']=_0x1e5ace,_0x1ee8d1['onerror']=_0xae5dc;const {style:_0x1d1dc}=_0x1ee8d1;_0x1d1dc['setProperty']('display','block','important'),_0x1d1dc['position']='absolute',_0x1d1dc['top']='0',_0x1d1dc['left']='0',_0x1d1dc['visibility']='hidden';_0x1b8341!==undefined&&_0x1b8341!==''&&'srcdoc'in _0x1ee8d1?_0x1ee8d1['srcdoc']=_0x1b8341:_0x1ee8d1['src']='about:blank';_0x166660['body']['appendChild'](_0x1ee8d1);const _0x4bd9d8=()=>{if(_0x1056d9)return;_0x1ee8d1['contentWindow']?.['document']['readyState']==='complete'?_0x1e5ace():setTimeout(_0x4bd9d8,0xa);};_0x4bd9d8();});while(!_0x1ee8d1['contentWindow']?.['document']['body']){await wait(_0x538650);}return await _0x5416e3(_0x1ee8d1,_0x1ee8d1['contentWindow']);}finally{_0x1ee8d1['parentNode']?.['removeChild'](_0x1ee8d1);}}function emptyCounters(){const _0x3ecb0f={};return _0x3ecb0f['creations']=0x0,_0x3ecb0f['loadsCompleted']=0x0,_0x3ecb0f['initErrors']=0x0,_0x3ecb0f['initTimeouts']=0x0,_0x3ecb0f['actionTimeouts']=0x0,_0x3ecb0f['actionsCompleted']=0x0,_0x3ecb0f['actionsErrored']=0x0,_0x3ecb0f['readyStateSpins']=0x0,_0x3ecb0f['bodyAwaitSpins']=0x0,_0x3ecb0f['bodyAwaitMs']=0x0,_0x3ecb0f;}class IframePool{['iframe']=null;['iframeReady']=null;['queue']=[];['processing']=![];['idleTimer']=null;['idleTimeoutMs'];['dc']=emptyCounters();constructor(_0xf333c3=0x1388){this['idleTimeoutMs']=_0xf333c3;}['getDebugCounters'](){const _0x12055f={...this['dc']};return _0x12055f;}['execute'](_0x8d09da){return new Promise((_0x3b8dfb,_0x2eae2b)=>{const _0x2a8131={};_0x2a8131['action']=_0x8d09da,_0x2a8131['resolve']=_0x3b8dfb,_0x2a8131['reject']=_0x2eae2b,this['queue']['push'](_0x2a8131),void this['processQueue']();});}async['processQueue'](){if(this['processing'])return;this['processing']=!![];try{while(this['queue']['length']>0x0){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null);try{await withTimeoutReject(this['ensureIframe'](),IFRAME_INIT_TIMEOUT_MS,()=>{return this['dc']['initTimeouts']+=0x1,new Error('IframePool:\x20ensureIframe\x20timed\x20out\x20after\x20'+IFRAME_INIT_TIMEOUT_MS+'ms');});}catch(_0x5de2b7){this['dc']['initErrors']+=0x1;const _0x38d64e=this['queue']['shift']();_0x38d64e?.['reject'](_0x5de2b7);continue;}const _0x617150=this['queue']['shift'](),_0x1f99c5=this['iframe'];if(_0x617150===undefined)continue;if(_0x1f99c5===null){_0x617150['reject'](new Error('IframePool:\x20pool\x20was\x20destroyed\x20before\x20action\x20could\x20run'));continue;}try{const _0x5d2c12=await withTimeoutReject(Promise['resolve'](_0x617150['action'](_0x1f99c5,_0x1f99c5['contentWindow'])),IFRAME_ACTION_TIMEOUT_MS,()=>{return this['dc']['actionTimeouts']+=0x1,new Error('IframePool:\x20action\x20timed\x20out\x20after\x20'+IFRAME_ACTION_TIMEOUT_MS+'ms');});this['dc']['actionsCompleted']+=0x1,_0x617150['resolve'](_0x5d2c12);}catch(_0x5999ee){this['dc']['actionsErrored']+=0x1,_0x617150['reject'](_0x5999ee);}}}finally{this['processing']=![],this['scheduleCleanup']();}}async['ensureIframe'](){if(this['iframe']?.['contentWindow']?.['document']['body'])return;const _0x31053b=document,_0x5c28a9=Date['now'](),_0x1447eb=_0x5c28a9+BODY_POLL_TIMEOUT_MS;while(_0x31053b['body']===null){if(Date['now']()>_0x1447eb){this['dc']['bodyAwaitMs']+=Date['now']()-_0x5c28a9;throw new Error('IframePool:\x20document.body\x20did\x20not\x20appear\x20within\x20'+BODY_POLL_TIMEOUT_MS+'ms');}this['dc']['bodyAwaitSpins']+=0x1,await wait(0x32);}this['dc']['bodyAwaitMs']+=Date['now']()-_0x5c28a9;if(this['iframeReady']){await this['iframeReady'];if(this['iframe']?.['contentWindow']?.['document']['body'])return;}const _0x34bfb3=_0x31053b['createElement']('iframe');this['dc']['creations']+=0x1,this['iframe']=_0x34bfb3,this['iframeReady']=new Promise((_0x3e28ba,_0x8b8ee1)=>{let _0x872c47=![];_0x34bfb3['onload']=()=>{_0x872c47=!![],this['dc']['loadsCompleted']+=0x1,_0x3e28ba();},_0x34bfb3['onerror']=_0x5b5739=>{_0x872c47=!![],this['dc']['initErrors']+=0x1,_0x8b8ee1(_0x5b5739);};const {style:_0x48f4b3}=_0x34bfb3;_0x48f4b3['setProperty']('display','block','important'),_0x48f4b3['position']='absolute',_0x48f4b3['top']='0',_0x48f4b3['left']='0',_0x48f4b3['visibility']='hidden',_0x34bfb3['src']='about:blank',_0x31053b['body']['appendChild'](_0x34bfb3);const _0x1301ee=()=>{if(_0x872c47)return;_0x34bfb3['contentWindow']?.['document']['readyState']==='complete'?(_0x872c47=!![],this['dc']['loadsCompleted']+=0x1,_0x3e28ba()):(this['dc']['readyStateSpins']+=0x1,setTimeout(_0x1301ee,0xa));};_0x1301ee();}),await this['iframeReady'];const _0x158a7b=Date['now']()+BODY_POLL_TIMEOUT_MS;while(!_0x34bfb3['contentWindow']?.['document']['body']){if(Date['now']()>_0x158a7b)throw new Error('IframePool:\x20iframe\x20body\x20did\x20not\x20appear\x20within\x20'+BODY_POLL_TIMEOUT_MS+'ms');await wait(0x32);}}['scheduleCleanup'](){this['idleTimer']=setTimeout(()=>{this['destroy']();},this['idleTimeoutMs']);}['destroy'](){this['idleTimer']!==null&&(clearTimeout(this['idleTimer']),this['idleTimer']=null);this['iframe']&&(this['iframe']['parentNode']?.['removeChild'](this['iframe']),this['iframe']=null,this['iframeReady']=null);if(this['queue']['length']>0x0){const _0x1e86cc=this['queue']['splice'](0x0),_0x45744a=new Error('IframePool:\x20pool\x20was\x20destroyed\x20before\x20action\x20could\x20run');for(const _0x3c8e98 of _0x1e86cc)_0x3c8e98['reject'](_0x45744a);}}}let sharedPool=null;function getIframePool(){return sharedPool??=new IframePool(),sharedPool;}function addStyleString(_0x5092c5,_0xcfe7c4){for(const _0x264098 of _0xcfe7c4['split'](';')){const _0x2cf13b=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/['exec'](_0x264098);if(_0x2cf13b){const [,_0x1cec8a,_0x4d3c8f,,_0x344e57]=_0x2cf13b;_0x5092c5['setProperty'](_0x1cec8a,_0x4d3c8f,_0x344e57??'');}}}function isAnyParentCrossOrigin(){let _0x4b99db=window;for(;;){const _0x1ce9aa=_0x4b99db['parent'];if(_0x1ce9aa===_0x4b99db)return![];try{if(_0x1ce9aa['location']['origin']!==_0x4b99db['location']['origin'])return!![];}catch(_0x31dab1){if(_0x31dab1 instanceof Error&&_0x31dab1['name']==='SecurityError')return!![];throw _0x31dab1;}_0x4b99db=_0x1ce9aa;}}function getEmojiSignal(){let _0x4122d7='';for(let _0x316723=0x1f600;_0x316723<=0x1f64f;_0x316723++){_0x4122d7+=String['fromCodePoint'](_0x316723);}return getIframePool()['execute']((_0x41f609,_0xb8cec7)=>{const _0x43a1d8=_0xb8cec7['document'],_0x357d93=_0x43a1d8['createElement']('span');_0x357d93['style']['whiteSpace']='nowrap',_0x357d93['innerText']=_0x4122d7,_0x43a1d8['body']['append'](_0x357d93);const _0x1ab2ef={},_0x46bc9d=['x','y','left','right','bottom','height','top','width'],_0x160064=_0x357d93['getBoundingClientRect']();for(const _0x5f5852 of _0x46bc9d){_0x5f5852 in _0x160064&&(_0x1ab2ef[_0x5f5852]=Math['round'](_0x160064[_0x5f5852]*0x64)/0x64);}const _0x35c89a=_0xb8cec7['getComputedStyle'](_0x357d93,null)['getPropertyValue']('font-family');return _0x1ab2ef['font']=_0x35c89a,_0x43a1d8['body']['removeChild'](_0x357d93),_0x1ab2ef;});}function getEndianness(){const _0x5655a2=new Float32Array(0x1),_0x503601=new Uint8Array(_0x5655a2['buffer']);return _0x5655a2[0x0]=Infinity,_0x5655a2[0x0]=_0x5655a2[0x0]-_0x5655a2[0x0],_0x503601[0x3];}const defaultText='mmMwWLliI0fiflO&1',_0x4d01a2={};_0x4d01a2['font']='-apple-system-body';const _0x3e8562={};_0x3e8562['fontFamily']='serif';const _0x3eee9b={};_0x3eee9b['fontFamily']='sans-serif';const _0x132498={};_0x132498['fontFamily']='monospace';const _0x39562e={};_0x39562e['fontSize']='1px';const _0x357c73={};_0x357c73['fontFamily']='system-ui';const _0x4157bd={};_0x4157bd['default']=[],_0x4157bd['apple']=[_0x4d01a2],_0x4157bd['serif']=[_0x3e8562],_0x4157bd['sans']=[_0x3eee9b],_0x4157bd['mono']=[_0x132498],_0x4157bd['min']=[_0x39562e],_0x4157bd['system']=[_0x357c73];const presets=_0x4157bd;function getFontPreferences(){return withNaturalFonts((_0x10e7bb,_0x4ba7b5,_0x1340ba)=>{const _0x364c48={},_0x544d6a={};for(const _0x4019d9 of Object['keys'](presets)){const [_0x136e3d={},_0xe810aa=defaultText]=presets[_0x4019d9],_0x359ca4=_0x10e7bb['createElement']('span');_0x359ca4['textContent']=_0xe810aa,_0x359ca4['style']['whiteSpace']='nowrap';for(const _0x557b4f of Object['keys'](_0x136e3d)){const _0x125785=_0x136e3d[_0x557b4f];_0x125785!==undefined&&(_0x359ca4['style'][_0x557b4f]=_0x125785);}_0x364c48[_0x4019d9]=_0x359ca4,_0x4ba7b5['append'](_0x10e7bb['createElement']('br'),_0x359ca4);}const _0x359712=_0x1340ba['devicePixelRatio']>0x0?_0x1340ba['devicePixelRatio']:0x1;for(const _0x1d41ee of Object['keys'](presets)){_0x544d6a[_0x1d41ee]=Math['round'](_0x364c48[_0x1d41ee]['getBoundingClientRect']()['width']*_0x359712*0x64)/0x64;}return _0x544d6a;});}function withNaturalFonts(_0x326551,_0x37d4c2=0xfa0){return withIframe((_0x588514,_0x3d6bcb)=>{const _0x5d2afd=_0x3d6bcb['document'],_0x143d7e=_0x5d2afd['body'],_0x2fdd5a=_0x143d7e['style'];_0x2fdd5a['width']=_0x37d4c2+'px',_0x2fdd5a['webkitTextSizeAdjust']=_0x2fdd5a['textSizeAdjust']='none';if(isChromium())_0x143d7e['style']['zoom']=''+0x1/_0x3d6bcb['devicePixelRatio'];else isWebKit()&&(_0x143d7e['style']['zoom']='reset');const _0x16796b=_0x5d2afd['createElement']('div'),_0x5b1a81={};return _0x5b1a81['length']=_0x37d4c2/0x14<<0x0,_0x16796b['textContent']=Array['from'](_0x5b1a81)['map'](()=>'word')['join']('\x20'),_0x143d7e['appendChild'](_0x16796b),_0x326551(_0x5d2afd,_0x143d7e,_0x3d6bcb);},'<!doctype\x20html><html><head><meta\x20name=\x22viewport\x22\x20content=\x22width=device-width,\x20initial-scale=1\x22>');}const testString='mmMwWLliI0fiflO&1',textSize='48px',baseFonts=['monospace','sans-serif','serif'],fontList=['sans-serif-thin','ARNO\x20PRO','Agency\x20FB','Arabic\x20Typesetting','Arial','Arial\x20Black','Arial\x20Narrow','Arial\x20Rounded\x20MT','Arial\x20Unicode\x20MS','Arimo','Archivo','AvantGarde\x20Bk\x20BT','BankGothic\x20Md\x20BT','Barlow','Batang','Bebas\x20Neue','Bitter','Bitstream\x20Vera\x20Sans\x20Mono','Bookman','Cabin','Calibri','Candara','Century','Century\x20Gothic','Clarendon','Comic\x20Sans\x20MS','Constantia','Courier','Courier\x20New','Crimson\x20Text','DM\x20Mono','DM\x20Sans','DM\x20Serif\x20Display','DM\x20Serif\x20Text','Dosis','Droid\x20Sans','EUROSTILE','Exo','Fira\x20Code','Fira\x20Sans','Franklin\x20Gothic','Franklin\x20Gothic\x20Medium','Futura\x20Bk\x20BT','Futura\x20Md\x20BT','Garamond','Geneva','Georgia','GOTHAM','Gill\x20Sans','HELV','Haettenschweiler','Helvetica','Helvetica\x20Neue','Humanst521\x20BT','Impact','Inconsolata','Indie\x20Flower','Inter','Josefin\x20Sans','Karla','Lato','Leelawadee','Letter\x20Gothic','Levenim\x20MT','Lexend','Lucida\x20Bright','Lucida\x20Console','Lucida\x20Sans','Lucida\x20Sans\x20Unicode','Manrope','Marlett','Meiryo\x20UI','Menlo','Merriweather','Merriweather\x20Sans','Microsoft\x20Uighur','Minion\x20Pro','Monotype\x20Corsiva','Montserrat','MS\x20Mincho','MS\x20Outlook','MS\x20Reference\x20Specialty','MS\x20UI\x20Gothic','MT\x20Extra','Myriad','MYRIAD\x20PRO','Noto\x20Sans','Nunito','Nunito\x20Sans','Open\x20Sans','Optima','Orbitron','Oswald','Pacifico','Palatino','Perpetua','PMingLiU','Poppins','Pristina','Prompt','PT\x20Sans','PT\x20Serif','Public\x20Sans','Quicksand','Rajdhani','Recursive','Roboto','Roboto\x20Condensed','Rockwell','Rubik','SCRIPTINA','Segoe\x20Print','Segoe\x20Script','Segoe\x20UI','Segoe\x20UI\x20Light','Serifa','SimHei','Small\x20Fonts','Sora','Source\x20Sans\x20Pro','Space\x20Mono','Staccato222\x20BT','Tahoma','Taviraj','Times','Times\x20New\x20Roman','Titillium\x20Web','TRAJAN\x20PRO','Trebuchet\x20MS','Ubuntu','Univers\x20CE\x2055\x20Medium','Varela\x20Round','Verdana','Vrinda','Work\x20Sans','ZWAdobeF'];function getFonts(){return getIframePool()['execute']((_0x1ab2f5,{document:_0xba3d8})=>{const _0x2216f1=_0xba3d8['body'];_0x2216f1['style']['fontSize']=textSize;const _0x108e2f=_0xba3d8['createElement']('div');_0x108e2f['style']['setProperty']('visibility','hidden','important');const _0x41d7d0={},_0x489493={},_0x3383ef=_0x37b534=>{const _0x208edb=_0xba3d8['createElement']('span'),{style:_0x470b50}=_0x208edb;return _0x470b50['position']='absolute',_0x470b50['top']='0',_0x470b50['left']='0',_0x470b50['fontFamily']=_0x37b534,_0x208edb['textContent']=testString,_0x108e2f['appendChild'](_0x208edb),_0x208edb;},_0x5b0fba=(_0x452ba6,_0x8a5b99)=>{return _0x3383ef('\x27'+_0x452ba6+'\x27,'+_0x8a5b99);},_0xf61bc4=()=>{return baseFonts['map'](_0x3383ef);},_0x2ecc68=()=>{const _0x5a3f2b={};for(const _0x36d12b of fontList){_0x5a3f2b[_0x36d12b]=baseFonts['map'](_0x555ca1=>_0x5b0fba(_0x36d12b,_0x555ca1));}return _0x5a3f2b;},_0x417163=_0x2f09ed=>{return baseFonts['some']((_0x12a8a3,_0x4fedf6)=>_0x2f09ed[_0x4fedf6]['offsetWidth']!==_0x41d7d0[_0x12a8a3]||_0x2f09ed[_0x4fedf6]['offsetHeight']!==_0x489493[_0x12a8a3]);},_0x477c7f=_0xf61bc4(),_0x21ad7e=_0x2ecc68();_0x2216f1['appendChild'](_0x108e2f);for(let _0x26ce48=0x0;_0x26ce48<baseFonts['length'];_0x26ce48++){_0x41d7d0[baseFonts[_0x26ce48]]=_0x477c7f[_0x26ce48]['offsetWidth'],_0x489493[baseFonts[_0x26ce48]]=_0x477c7f[_0x26ce48]['offsetHeight'];}return fontList['filter'](_0x1a33bf=>_0x417163(_0x21ad7e[_0x1a33bf]));});}const ROTATION_MATRICES=[[0x0,0x1,0x0,Math['PI']/0x7],[0x1,0x0,0x0,Math['PI']/0x8],[0x0,0x1,0x1,Math['PI']/0x4],[0x1,0x2,0x1,Math['PI']/0x8]],TEX_WIDTH=0x7,TEX_HEIGHT=0x9,BYTES_PER_PIXEL=0x4,RT_WIDTH=0x20,RT_HEIGHT=0x20,TIMING_BUCKET_US=0x64,TIMEOUT_MS=0x5dc,WGSL_SHADER='\x0astruct\x20Uniforms\x20{\x0a\x20\x20params:\x20vec4f,\x0a}\x0a\x0a@group(0)\x20@binding(0)\x20var\x20mySampler:\x20sampler;\x0a@group(0)\x20@binding(1)\x20var\x20myTexture:\x20texture_2d<f32>;\x0a@group(1)\x20@binding(0)\x20var<uniform>\x20uniforms:\x20Uniforms;\x0a\x0astruct\x20VertexOutput\x20{\x0a\x20\x20@builtin(position)\x20position:\x20vec4f,\x0a\x20\x20@location(0)\x20uv:\x20vec2f,\x0a}\x0a\x0a@vertex\x0afn\x20vs(@builtin(vertex_index)\x20idx:\x20u32)\x20->\x20VertexOutput\x20{\x0a\x20\x20var\x20pos\x20=\x20array<vec2f,\x206>(\x0a\x20\x20\x20\x20vec2f(-1,\x20-1),\x20vec2f(1,\x20-1),\x20vec2f(-1,\x201),\x0a\x20\x20\x20\x20vec2f(-1,\x201),\x20vec2f(1,\x20-1),\x20vec2f(1,\x201),\x0a\x20\x20);\x0a\x20\x20let\x20p\x20=\x20uniforms.params;\x0a\x20\x20let\x20angle\x20=\x20p.w;\x0a\x20\x20let\x20axis\x20=\x20normalize(p.xyz);\x0a\x20\x20let\x20c\x20=\x20cos(angle);\x0a\x20\x20let\x20s\x20=\x20sin(angle);\x0a\x20\x20let\x20t\x20=\x201.0\x20-\x20c;\x0a\x20\x20let\x20x\x20=\x20axis.x;\x20let\x20y\x20=\x20axis.y;\x20let\x20z\x20=\x20axis.z;\x0a\x20\x20let\x20m\x20=\x20mat3x3f(\x0a\x20\x20\x20\x20vec3f(t*x*x\x20+\x20c,\x20t*x*y\x20+\x20s*z,\x20t*x*z\x20-\x20s*y),\x0a\x20\x20\x20\x20vec3f(t*x*y\x20-\x20s*z,\x20t*y*y\x20+\x20c,\x20t*y*z\x20+\x20s*x),\x0a\x20\x20\x20\x20vec3f(t*x*z\x20+\x20s*y,\x20t*y*z\x20-\x20s*x,\x20t*z*z\x20+\x20c),\x0a\x20\x20);\x0a\x20\x20let\x20v\x20=\x20pos[idx];\x0a\x20\x20let\x20rotated\x20=\x20m\x20*\x20vec3f(v,\x200.0);\x0a\x20\x20var\x20out:\x20VertexOutput;\x0a\x20\x20out.position\x20=\x20vec4f(rotated.xy,\x200.0,\x201.0);\x0a\x20\x20out.uv\x20=\x20v\x20*\x200.5\x20+\x200.5;\x0a\x20\x20return\x20out;\x0a}\x0a\x0a@fragment\x0afn\x20fs(@location(0)\x20uv:\x20vec2f)\x20->\x20@location(0)\x20vec4f\x20{\x0a\x20\x20return\x20textureSample(myTexture,\x20mySampler,\x20uv);\x0a}\x0a';async function getAdapterInfo$1(_0x1f8d00){const _0x1c1584=_0x1f8d00['info'];if(_0x1c1584!==undefined&&_0x1c1584!==null){const _0x49ee6f={};return _0x49ee6f['vendor']=_0x1c1584['vendor'],_0x49ee6f['architecture']=_0x1c1584['architecture'],_0x49ee6f;}if(typeof _0x1f8d00['requestAdapterInfo']==='function'){const _0x429e8c=await _0x1f8d00['requestAdapterInfo'](),_0xabff2e={};return _0xabff2e['vendor']=_0x429e8c['vendor'],_0xabff2e['architecture']=_0x429e8c['architecture'],_0xabff2e;}const _0x255652={};return _0x255652['vendor']='',_0x255652['architecture']='',_0x255652;}function createTextureData(){const _0x2b175c=[],_0x35c510=[[0xff,0x0,0x0,0xff],[0x0,0xff,0x0,0xff],[0x0,0x0,0xff,0xff]];for(let _0x461cec=0x0;_0x461cec<TEX_WIDTH*TEX_HEIGHT;_0x461cec++){_0x2b175c['push'](..._0x35c510[_0x461cec%0x3]);}return new Uint8Array(_0x2b175c);}function quantizeTiming(_0x1fff05){const _0x98c1f0=Number(_0x1fff05/0x3e8n);return Math['round'](_0x98c1f0/TIMING_BUCKET_US)*TIMING_BUCKET_US;}const fnv1a$1=fnv1aBytes;async function renderAndReadback(_0x28d513,_0x25ab50){const _0x3a6afc=[];for(const _0x9f0333 of _0x25ab50){_0x3a6afc['push'](_0x9f0333);}const _0x258804={};_0x258804['requiredFeatures']=_0x3a6afc;const _0x26f359=await _0x28d513['requestDevice'](_0x258804);try{return await renderAndReadbackOnDevice(_0x26f359);}finally{typeof _0x26f359['destroy']==='function'&&_0x26f359['destroy']();}}async function renderAndReadbackOnDevice(_0x200210){const _0x100bbd='rgba8unorm',_0x32eb07={};_0x32eb07['label']='fp-shader',_0x32eb07['code']=WGSL_SHADER;const _0x11aa53=_0x200210['createShaderModule'](_0x32eb07),_0x5121ed={};_0x5121ed['module']=_0x11aa53;const _0x28500f={};_0x28500f['format']=_0x100bbd;const _0x12371c={};_0x12371c['module']=_0x11aa53,_0x12371c['targets']=[_0x28500f];const _0x174b3b={};_0x174b3b['topology']='triangle-list';const _0x564623={};_0x564623['label']='fp-pipeline',_0x564623['layout']='auto',_0x564623['vertex']=_0x5121ed,_0x564623['fragment']=_0x12371c,_0x564623['primitive']=_0x174b3b;const _0x9ceb65=_0x200210['createRenderPipeline'](_0x564623),_0x46d0be=createTextureData(),_0xa1e673={};_0xa1e673['label']='fp-src-texture',_0xa1e673['size']=[TEX_WIDTH,TEX_HEIGHT],_0xa1e673['format']='rgba8unorm',_0xa1e673['usage']=GPUTextureUsage['TEXTURE_BINDING']|GPUTextureUsage['COPY_DST'];const _0x108057=_0x200210['createTexture'](_0xa1e673),_0x2fee7f={};_0x2fee7f['texture']=_0x108057;const _0x670db1={};_0x670db1['bytesPerRow']=TEX_WIDTH*BYTES_PER_PIXEL;const _0xddd335={};_0xddd335['width']=TEX_WIDTH,_0xddd335['height']=TEX_HEIGHT,_0x200210['queue']['writeTexture'](_0x2fee7f,_0x46d0be['buffer'],_0x670db1,_0xddd335);const _0x3e7a04={};_0x3e7a04['label']='fp-sampler';const _0x3b7eb8=_0x200210['createSampler'](_0x3e7a04),_0x43df62={};_0x43df62['binding']=0x0,_0x43df62['resource']=_0x3b7eb8;const _0x4e5418=_0x200210['createBindGroup']({'layout':_0x9ceb65['getBindGroupLayout'](0x0),'entries':[_0x43df62,{'binding':0x1,'resource':_0x108057['createView']()}]}),_0x36e80f=ROTATION_MATRICES['map'](_0x96752d=>{const _0x10d006={};_0x10d006['label']='fp-uniform',_0x10d006['size']=0x4*Float32Array['BYTES_PER_ELEMENT'],_0x10d006['usage']=GPUBufferUsage['UNIFORM'],_0x10d006['mappedAtCreation']=!![];const _0x1b23bd=_0x200210['createBuffer'](_0x10d006);new Float32Array(_0x1b23bd['getMappedRange']())['set'](_0x96752d),_0x1b23bd['unmap']();const _0x25e7c7={};_0x25e7c7['buffer']=_0x1b23bd;const _0x257dc5={};return _0x257dc5['binding']=0x0,_0x257dc5['resource']=_0x25e7c7,_0x200210['createBindGroup']({'layout':_0x9ceb65['getBindGroupLayout'](0x1),'entries':[_0x257dc5]});}),_0x3ff59e=_0x200210['features']['has']('timestamp-query');let _0x457eda=null,_0x248ded=null,_0x2d7a62=null;if(_0x3ff59e){const _0x5725b4={};_0x5725b4['label']='fp-ts',_0x5725b4['type']='timestamp',_0x5725b4['count']=0x2,_0x457eda=_0x200210['createQuerySet'](_0x5725b4);const _0x46bcd3={};_0x46bcd3['size']=0x2*0x8,_0x46bcd3['usage']=GPUBufferUsage['QUERY_RESOLVE']|GPUBufferUsage['COPY_SRC'],_0x248ded=_0x200210['createBuffer'](_0x46bcd3);const _0x580055={};_0x580055['size']=0x2*0x8,_0x580055['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'],_0x2d7a62=_0x200210['createBuffer'](_0x580055);}const _0xd23b93={};_0xd23b93['label']='fp-rt',_0xd23b93['size']=[RT_WIDTH,RT_HEIGHT],_0xd23b93['format']=_0x100bbd,_0xd23b93['usage']=GPUTextureUsage['RENDER_ATTACHMENT']|GPUTextureUsage['COPY_SRC'];const _0x1749d9=_0x200210['createTexture'](_0xd23b93),_0x5c9d69=Math['ceil'](RT_WIDTH*BYTES_PER_PIXEL/0x100)*0x100,_0x52add5={};_0x52add5['label']='fp-pixel-read',_0x52add5['size']=_0x5c9d69*RT_HEIGHT,_0x52add5['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x313b05=_0x200210['createBuffer'](_0x52add5),_0x5eed16=[],_0x268193=[];for(let _0x5b533e=0x0;_0x5b533e<ROTATION_MATRICES['length'];_0x5b533e++){const _0x32f0b6=_0x1749d9['createView'](),_0x2dded5={};_0x2dded5['label']='fp-enc-'+_0x5b533e;const _0x24b723=_0x200210['createCommandEncoder'](_0x2dded5),_0x6b3709={};_0x6b3709['r']=0x0,_0x6b3709['g']=0x0,_0x6b3709['b']=0x0,_0x6b3709['a']=0x1;const _0x3dea17={};_0x3dea17['view']=_0x32f0b6,_0x3dea17['clearValue']=_0x6b3709,_0x3dea17['loadOp']='clear',_0x3dea17['storeOp']='store';const _0x12462d={'label':'fp-pass-'+_0x5b533e,'colorAttachments':[_0x3dea17],..._0x3ff59e&&_0x457eda?{'timestampWrites':{'querySet':_0x457eda,'beginningOfPassWriteIndex':0x0,'endOfPassWriteIndex':0x1}}:{}},_0x5dbb43=_0x12462d,_0x152806=_0x24b723['beginRenderPass'](_0x5dbb43);_0x152806['setPipeline'](_0x9ceb65),_0x152806['setBindGroup'](0x0,_0x4e5418),_0x152806['setBindGroup'](0x1,_0x36e80f[_0x5b533e]),_0x152806['draw'](0x6),_0x152806['end']();_0x3ff59e&&_0x457eda&&_0x248ded&&_0x2d7a62&&(_0x24b723['resolveQuerySet'](_0x457eda,0x0,0x2,_0x248ded,0x0),_0x24b723['copyBufferToBuffer'](_0x248ded,0x0,_0x2d7a62,0x0,_0x248ded['size']));const _0x284872={};_0x284872['x']=0x0,_0x284872['y']=0x0;const _0xdd74a7={};_0xdd74a7['texture']=_0x1749d9,_0xdd74a7['origin']=_0x284872;const _0xbafbe0={};_0xbafbe0['buffer']=_0x313b05,_0xbafbe0['bytesPerRow']=_0x5c9d69,_0xbafbe0['rowsPerImage']=RT_HEIGHT;const _0x339ca6={};_0x339ca6['width']=RT_WIDTH,_0x339ca6['height']=RT_HEIGHT,_0x24b723['copyTextureToBuffer'](_0xdd74a7,_0xbafbe0,_0x339ca6),_0x200210['queue']['submit']([_0x24b723['finish']()]),await _0x313b05['mapAsync'](GPUMapMode['READ']);const _0x4e2216=new Uint8Array(_0x313b05['getMappedRange']()),_0x3244a7=RT_WIDTH*BYTES_PER_PIXEL,_0x4c8d1d=new Uint8Array(_0x3244a7*RT_HEIGHT);for(let _0x58bed1=0x0;_0x58bed1<RT_HEIGHT;_0x58bed1++){_0x4c8d1d['set'](_0x4e2216['subarray'](_0x58bed1*_0x5c9d69,_0x58bed1*_0x5c9d69+_0x3244a7),_0x58bed1*_0x3244a7);}_0x5eed16['push'](fnv1a$1(_0x4c8d1d)),_0x313b05['unmap']();if(_0x3ff59e&&_0x2d7a62)try{await _0x2d7a62['mapAsync'](GPUMapMode['READ']);const _0x3e6a2c=new BigUint64Array(_0x2d7a62['getMappedRange']()),_0x49c53f=_0x3e6a2c[0x0],_0x1543dc=_0x3e6a2c[0x1];_0x1543dc>_0x49c53f&&_0x268193['push'](quantizeTiming(_0x1543dc-_0x49c53f)),_0x2d7a62['unmap']();}catch{}}const _0x415292=new Uint8Array(_0x5eed16['length']*0x4),_0x15d3e9=new DataView(_0x415292['buffer']);for(let _0x26fc64=0x0;_0x26fc64<_0x5eed16['length'];_0x26fc64++){_0x15d3e9['setUint32'](_0x26fc64*0x4,_0x5eed16[_0x26fc64],!![]);}let _0x25b9c7='';for(let _0x41c7c6=0x0;_0x41c7c6<_0x415292['length'];_0x41c7c6++){_0x25b9c7+=String['fromCharCode'](_0x415292[_0x41c7c6]);}return{'pixelHash':btoa(_0x25b9c7),'timingBuckets':_0x268193};}async function getSubtleCryptoExport(){if(typeof navigator==='undefined'||navigator['gpu']===undefined){const _0x4535e2={};return _0x4535e2['s']=-0x1,_0x4535e2['v']=null,_0x4535e2;}const _0xfcea08={};_0xfcea08['s']=-0x2,_0xfcea08['v']=null;const _0x391332=await Promise['race']([collectWebGpuSignal(),new Promise(_0x111d47=>setTimeout(()=>_0x111d47(_0xfcea08),TIMEOUT_MS))]);return _0x391332;}async function collectWebGpuSignal(){const {getCachedGpuAdapter:_0x4d5ed8}=await Promise['resolve']()['then'](function(){return webgpuAdapter;});let _0x48144f;try{const _0x35898e=_0x4d5ed8(),_0x516972={};_0x516972['s']=-0x4,_0x516972['v']=null;if(_0x35898e===null)return _0x516972;const _0x40665a=await _0x35898e;if(_0x40665a===null){const _0x415d37={};return _0x415d37['s']=-0x4,_0x415d37['v']=null,_0x415d37;}_0x48144f=_0x40665a;}catch(_0x507bf5){if(_0x507bf5 instanceof Error){const _0x31eb1e={};return _0x31eb1e['s']=-0x3,_0x31eb1e['v']=null,_0x31eb1e;}throw _0x507bf5;}try{const _0x2d0382=Array['from'](_0x48144f['features']['values']())['sort'](),[_0x1e0ca0,_0x2ec3b7]=await Promise['all']([renderAndReadback(_0x48144f,_0x2d0382),getAdapterInfo$1(_0x48144f)]),_0x3fb07a={};_0x3fb07a['s']=_0x2d0382,_0x3fb07a['f']=_0x1e0ca0['pixelHash'],_0x3fb07a['t']=_0x1e0ca0['timingBuckets'],_0x3fb07a['v']=_0x2ec3b7['vendor'],_0x3fb07a['a']=_0x2ec3b7['architecture'];const _0x5bbb6c={};return _0x5bbb6c['s']=0x0,_0x5bbb6c['v']=_0x3fb07a,_0x5bbb6c;}catch(_0x57218d){if(_0x57218d instanceof TypeError){const _0x16e661={};return _0x16e661['s']=-0x7,_0x16e661['v']=null,_0x16e661;}throw _0x57218d;}}const _0x454eef={};_0x454eef['text']='今天天气真好我们出去玩吧',_0x454eef['locale']='zh',_0x454eef['gran']='word';const _0x16cdca={};_0x16cdca['text']='東京都は日本の首都です',_0x16cdca['locale']='ja',_0x16cdca['gran']='word';const _0x367748={};_0x367748['text']='สวัสดีครับวันนี้อากาศดี',_0x367748['locale']='th',_0x367748['gran']='word';const _0x2c64d9={};_0x2c64d9['text']='오늘날씨가좋아서산책했습니다',_0x2c64d9['locale']='ko',_0x2c64d9['gran']='word';const _0x1cca5e={};_0x1cca5e['text']='can\x27t\x20won\x27t\x20they\x27re\x20ice-cream',_0x1cca5e['locale']='en',_0x1cca5e['gran']='word';const _0x333067={};_0x333067['text']='👨👩👧👦🏳️🌈👩🏽💻',_0x333067['locale']='en',_0x333067['gran']='grapheme';const SEGMENTER_TESTS=[_0x454eef,_0x16cdca,_0x367748,_0x2c64d9,_0x1cca5e,_0x333067],_0x417ba1={};_0x417ba1['code']='XK',_0x417ba1['type']='region';const _0x3f76c3={};_0x3f76c3['code']='EH',_0x3f76c3['type']='region';const _0x35aa8b={};_0x35aa8b['code']='SX',_0x35aa8b['type']='region';const _0x305cb6={};_0x305cb6['code']='BQ',_0x305cb6['type']='region';const _0x713aa7={};_0x713aa7['code']='SS',_0x713aa7['type']='region';const _0x192866={};_0x192866['code']='CW',_0x192866['type']='region';const DISPLAY_NAMES_TESTS=[_0x417ba1,_0x3f76c3,_0x35aa8b,_0x305cb6,_0x713aa7,_0x192866];function getIntlSegmenter(){const _0x35e04c={};_0x35e04c['segmenter']=null,_0x35e04c['displayNames']=null;const _0x2d904c=_0x35e04c;try{const _0x44d9dd=Intl['Segmenter'];if(_0x44d9dd){const _0x1457ba={};for(const _0x376824 of SEGMENTER_TESTS){try{const _0x342526=new _0x44d9dd(_0x376824['locale'],{'granularity':_0x376824['gran']}),_0x52dde4=[..._0x342526['segment'](_0x376824['text'])]['length'];_0x1457ba[_0x376824['locale']+'_'+_0x376824['gran']]=_0x52dde4;}catch{}}Object['keys'](_0x1457ba)['length']>0x0&&(_0x2d904c['segmenter']=_0x1457ba);}}catch{}try{if(typeof Intl['DisplayNames']==='function'){const _0x527d75={},_0x3961f4={};_0x3961f4['type']='region';const _0x17d0d8=new Intl['DisplayNames'](['en'],_0x3961f4);for(const _0x3a8e05 of DISPLAY_NAMES_TESTS){try{const _0x384573=_0x17d0d8['of'](_0x3a8e05['code']);_0x384573!==undefined&&_0x384573!==''&&(_0x527d75[_0x3a8e05['code']]=_0x384573);}catch{}}Object['keys'](_0x527d75)['length']>0x0&&(_0x2d904c['displayNames']=_0x527d75);}}catch{}return _0x2d904c;}const fallbackFn=()=>0x0;function getMathFn(_0x265271){const _0x444ba6=globalThis['Math'][_0x265271];return typeof _0x444ba6==='function'?_0x444ba6:fallbackFn;}function getMathSignal(){const _0x2d5e46=getMathFn('acos'),_0x2fc209=getMathFn('acosh'),_0x177073=getMathFn('asin'),_0x3918eb=getMathFn('asinh'),_0x332222=getMathFn('atanh'),_0x4a7754=getMathFn('atan'),_0xb0d4fd=getMathFn('sin'),_0x5a942d=getMathFn('sinh'),_0x53e7a7=getMathFn('cos'),_0x2b01f3=getMathFn('cosh'),_0xb1a47a=getMathFn('tan'),_0x20e344=getMathFn('tanh'),_0xc059c2=getMathFn('exp'),_0x5b2a2b=getMathFn('expm1'),_0x36fa1e=getMathFn('log1p'),_0x9b6263=_0x1c182d=>Math['pow'](Math['PI'],_0x1c182d),_0x59db8b=_0x3eab2d=>Math['log'](_0x3eab2d+Math['sqrt'](_0x3eab2d*_0x3eab2d-0x1)),_0x1069be=_0x50b752=>Math['log'](_0x50b752+Math['sqrt'](_0x50b752*_0x50b752+0x1)),_0x372107=_0x43d4fa=>Math['log']((0x1+_0x43d4fa)/(0x1-_0x43d4fa))/0x2,_0x388c0b=_0x793e3a=>Math['exp'](_0x793e3a)-0x1/Math['exp'](_0x793e3a)/0x2,_0x2f374f=_0xfba5ee=>(Math['exp'](_0xfba5ee)+0x1/Math['exp'](_0xfba5ee))/0x2,_0x2b5d51=_0x2c5a51=>Math['exp'](_0x2c5a51)-0x1,_0x472a30=_0x185fde=>(Math['exp'](0x2*_0x185fde)-0x1)/(Math['exp'](0x2*_0x185fde)+0x1),_0x1f3761=_0x17dde7=>Math['log'](0x1+_0x17dde7);return{'acos':_0x2d5e46(0.12312423423423424),'acosh':_0x2fc209(0x8e679c2f5e450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'acoshPf':_0x59db8b(0xbeeefb584aff88000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'asin':_0x177073(0.12312423423423424),'asinh':_0x3918eb(0x1),'asinhPf':_0x1069be(0x1),'atanh':_0x332222(0.5),'atanhPf':_0x372107(0.5),'atan':_0x4a7754(0.5),'sin':_0xb0d4fd(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'sinh':_0x5a942d(0x1),'sinhPf':_0x388c0b(0x1),'cos':_0x53e7a7(10.000000000123),'cosh':_0x2b01f3(0x1),'coshPf':_0x2f374f(0x1),'tan':_0xb1a47a(-0x17e43c8800759c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000),'tanh':_0x20e344(0x1),'tanhPf':_0x472a30(0x1),'exp':_0xc059c2(0x1),'expm1':_0x5b2a2b(0x1),'expm1Pf':_0x2b5d51(0x1),'log1p':_0x36fa1e(0xa),'log1pPf':_0x1f3761(0xa),'powPI':_0x9b6263(-0x64)};}const QUINTUPLETS=[['𝔈','υ','τ','ρ','σ'],['𝔇','π','ο','ν','ξ'],['𝔄','δ','γ','α','β'],['𝔅','θ','η','ε','ζ'],['𝔉','ω','ψ','φ','χ'],['ℭ','μ','λ','ι','κ']];function getMathML(){const _0xc611e4=document['createDocumentFragment'](),_0x16984b=createMathElement(_0xc611e4,'mrow'),_0x2eb6f5=createMathElement(_0x16984b,'munderover'),_0x56fb8f=createMathElement(_0x2eb6f5,'mmultiscripts');createMathElement(_0x56fb8f,'mo','∏');for(const [_0x3abb19,_0x3ca918,_0x5d65e1,_0x221719,_0x2f97fd]of QUINTUPLETS){const _0x2ca08a=document['createElement']('mmultiscripts');createMathElement(_0x2ca08a,'mi',_0x3abb19),createMathElement(_0x2ca08a,'mi',_0x3ca918),createMathElement(_0x2ca08a,'mi',_0x5d65e1),createMathElement(_0x2ca08a,'mprescripts'),createMathElement(_0x2ca08a,'mi',_0x221719),createMathElement(_0x2ca08a,'mi',_0x2f97fd),_0x56fb8f['append'](_0x2ca08a);}return getIframePool()['execute']((_0x480a3c,_0x4b8a4b)=>{const _0x14873f=_0x4b8a4b['document'],_0x4a5650=_0x14873f['createElement']('math');_0x4a5650['style']['whiteSpace']='nowrap',_0x4a5650['append'](_0xc611e4),_0x14873f['body']['append'](_0x4a5650);const _0x2ac766={},_0x273015=_0x4a5650['getBoundingClientRect'](),_0x509a1e=['x','y','left','right','bottom','height','top','width'];for(const _0x203469 of _0x509a1e){_0x203469 in _0x273015&&(_0x2ac766[_0x203469]=_0x273015[_0x203469]);}const _0xbfe13c=_0x4b8a4b['getComputedStyle'](_0x4a5650,null)['getPropertyValue']('font-family');return _0x2ac766['font']=_0xbfe13c,_0x14873f['body']['removeChild'](_0x4a5650),_0x2ac766;});}function createMathElement(_0x429332,_0x2e4f09,_0x5e5395=''){const _0x53c143=document['createElement'](_0x2e4f09);return _0x53c143['textContent']=_0x5e5395,_0x429332['appendChild'](_0x53c143),_0x53c143;}const MSE_AUDIO_CODECS=['audio/mp4;\x20codecs=\x22mp4a.40.2\x22','audio/webm;\x20codecs=\x22vorbis\x22','audio/ogg;\x20codecs=\x22vorbis\x22','audio/wav;\x20codecs=\x221\x22','audio/ogg;\x20codecs=\x22speex\x22','audio/ogg;\x20codecs=\x22flac\x22','audio/mpeg','audio/3gpp'],MSE_VIDEO_CODECS=['video/mp4;\x20codecs=\x22avc1.42E01E\x22','video/mp4;\x20codecs=\x22avc1.58A01E\x22','video/mp4;\x20codecs=\x22avc1.4D401E\x22','video/mp4;\x20codecs=\x22avc1.64001E\x22','video/mp4;\x20codecs=\x22mp4v.20.8\x22','video/webm;\x20codecs=\x22vp8\x22','video/webm;\x20codecs=\x22vp9\x22','video/ogg;\x20codecs=\x22theora\x22','video/mp4;\x20codecs=\x22hvc1\x22','video/mp4;\x20codecs=\x22av01.0.01M.08\x22','video/webm;\x20codecs=\x22av1\x22'];function getMediaCodecsExtended(){return{'mseAudio':getMseBitmask(MSE_AUDIO_CODECS),'mseVideo':getMseBitmask(MSE_VIDEO_CODECS),'rtcAudioCodecs':getRtcCodecs('audio'),'rtcVideoCodecs':getRtcCodecs('video')};}function getMseBitmask(_0x565f78){const _0xf3187d=window,_0x335ac4=_0xf3187d['MediaSource'];if(_0x335ac4===undefined||typeof _0x335ac4['isTypeSupported']!=='function')return-0x1;let _0x1df408=0x0;for(let _0x32223b=0x0;_0x32223b<_0x565f78['length'];_0x32223b++){try{_0x335ac4['isTypeSupported'](_0x565f78[_0x32223b])&&(_0x1df408|=0x1<<_0x32223b);}catch{}}return _0x1df408;}function getRtcCodecs(_0x19b716){const _0x664db7=window,_0x1fe025=_0x664db7['RTCRtpReceiver'];if(_0x1fe025===undefined||typeof _0x1fe025['getCapabilities']!=='function')return null;try{const _0x5a8fc8=_0x1fe025['getCapabilities'](_0x19b716);if(_0x5a8fc8===null)return null;const _0x1c68af=_0x5a8fc8['codecs']['map'](_0x52f413=>''+_0x52f413['mimeType']+(_0x52f413['sdpFmtpLine']!==undefined&&_0x52f413['sdpFmtpLine']!==''?';'+_0x52f413['sdpFmtpLine']:''));return _0x1c68af['sort']();}catch{return null;}}const VOICES_CHANGED_EVENT='voiceschanged',POLL_TIMEOUT_MS=0x258;function escapeField(_0x3e3f08){if(_0x3e3f08===undefined||_0x3e3f08===null||_0x3e3f08==='')return'';return String(_0x3e3f08)['replace'](/([,\\])/g,'\x5c$1');}function getSpeechSynthesis(){if(typeof window==='undefined')return null;const _0x12af2a=window['speechSynthesis'];if(!_0x12af2a||typeof _0x12af2a['getVoices']!=='function')return null;return _0x12af2a;}function readVoicesOnce(_0x35faa8){try{const _0x3e4677=_0x35faa8['getVoices']();if(Array['isArray'](_0x3e4677)&&_0x3e4677['length']>0x0)return _0x3e4677;}catch{}return null;}function awaitVoicesPopulated(_0x1039cd){return new Promise(_0x1cc0a7=>{let _0x2f86cb=![];const _0x160ea7=_0x173bd6=>{if(_0x2f86cb)return;_0x2f86cb=!![];if(_0x3b1908!==null)clearTimeout(_0x3b1908);if(_0x1bb1f2!==null&&typeof _0x1039cd['removeEventListener']==='function')try{_0x1039cd['removeEventListener'](VOICES_CHANGED_EVENT,_0x1bb1f2);}catch{}_0x1cc0a7(_0x173bd6);},_0x4fbe9c=readVoicesOnce(_0x1039cd);if(_0x4fbe9c!==null){_0x1cc0a7(_0x4fbe9c);return;}let _0x3b1908=setTimeout(()=>{_0x160ea7(null);},POLL_TIMEOUT_MS),_0x1bb1f2=null;if(typeof _0x1039cd['addEventListener']==='function'){_0x1bb1f2=()=>{const _0x3b2961=readVoicesOnce(_0x1039cd);if(_0x3b2961!==null)_0x160ea7(_0x3b2961);};try{_0x1039cd['addEventListener'](VOICES_CHANGED_EVENT,_0x1bb1f2);}catch{_0x1bb1f2=null;}}});}function buildDescriptors(_0x133886){const _0x125a39=[];for(const _0x33476d of _0x133886){const _0x46cd44=escapeField(_0x33476d['voiceURI']),_0xf5b7f8=escapeField(_0x33476d['name']),_0x2013ce=escapeField(_0x33476d['lang']),_0x1a46bc=_0x33476d['localService']===!![]?'1':'0',_0x314af0=_0x33476d['default']===!![]?'1':'0';_0x125a39['push'](_0x46cd44+','+_0xf5b7f8+','+_0x2013ce+','+_0x1a46bc+','+_0x314af0);}return _0x125a39['sort'](),_0x125a39;}function buildMask(_0x43bac5){let _0x287fcc=0x0;for(const _0x46d5dc of _0x43bac5){if(_0x46d5dc['localService']===!![])_0x287fcc|=0x1;if(_0x46d5dc['default']===!![])_0x287fcc|=0x2;}return _0x287fcc;}function getSpeechVoices(){const _0x4f1253=getSpeechSynthesis();if(_0x4f1253===null)return null;return async()=>{let _0x8df668=await awaitVoicesPopulated(_0x4f1253);if(_0x8df668===null)try{const _0xfd9aaa=_0x4f1253['getVoices']();if(Array['isArray'](_0xfd9aaa))_0x8df668=_0xfd9aaa;else return null;}catch{return null;}const _0x12e40f=buildDescriptors(_0x8df668),_0x3bb192=x64hash128(JSON['stringify'](_0x12e40f)),_0x2e8e72=buildMask(_0x8df668),_0xe8877c=_0x8df668['length'],_0x56c0fc={};return _0x56c0fc['hash']=_0x3bb192,_0x56c0fc['mask']=_0x2e8e72,_0x56c0fc['count']=_0xe8877c,_0x56c0fc;};}async function getSubPixelRendering(){try{return await getIframePool()['execute']((_0x348b93,_0x4cca2e)=>{const _0x8136a9=_0x4cca2e['document'],_0x230675=_0x8136a9['createElement']('div');_0x230675['style']['border']='.5px\x20dotted\x20transparent',_0x8136a9['body']['appendChild'](_0x230675);const _0x14962f=_0x230675['offsetHeight'];return _0x8136a9['body']['removeChild'](_0x230675),_0x14962f;});}catch{return null;}}function getSupportedConstraints(){try{const _0x501e4b=navigator['mediaDevices'];if(_0x501e4b===undefined||typeof _0x501e4b['getSupportedConstraints']!=='function')return undefined;return Object['keys'](_0x501e4b['getSupportedConstraints']());}catch{return undefined;}}function getSvgEmojiSignal(){let _0x897317='';for(let _0x3d291a=0x1f600;_0x3d291a<=0x1f64f;_0x3d291a++){_0x897317+=String['fromCodePoint'](_0x3d291a);}return getIframePool()['execute']((_0x5160c7,_0x405a91)=>{const _0x2d2f72=_0x405a91['document'],_0x546c5f='http://www.w3.org/2000/svg',_0x1ad677=_0x2d2f72['createElementNS'](_0x546c5f,'svg');_0x1ad677['setAttribute']('width','0'),_0x1ad677['setAttribute']('height','0'),_0x1ad677['style']['position']='absolute',_0x1ad677['style']['visibility']='hidden';const _0x8afc6d=_0x2d2f72['createElementNS'](_0x546c5f,'text');_0x8afc6d['setAttribute']('x','0'),_0x8afc6d['setAttribute']('y','50'),_0x8afc6d['setAttribute']('font-size','16'),_0x8afc6d['textContent']=_0x897317,_0x1ad677['appendChild'](_0x8afc6d),_0x2d2f72['body']['appendChild'](_0x1ad677);const _0x4bbb2f=_0x405a91['getComputedStyle'](_0x8afc6d)['getPropertyValue']('font-family');let _0x417989=null;try{const _0x27c0a8=_0x8afc6d['getBBox']();_0x417989={'x':round(_0x27c0a8['x']),'y':round(_0x27c0a8['y']),'width':round(_0x27c0a8['width']),'height':round(_0x27c0a8['height'])};}catch{}let _0x192089=null;try{const _0x519961=_0x8afc6d,_0x3d5214=_0x519961['getExtentOfChar'](0x0);_0x192089={'x':round(_0x3d5214['x']),'y':round(_0x3d5214['y']),'width':round(_0x3d5214['width']),'height':round(_0x3d5214['height'])};}catch{}let _0x24c398=null;try{const _0x385401=_0x8afc6d;_0x24c398=round(_0x385401['getSubStringLength'](0x0,0xa));}catch{}let _0x429296=null;try{const _0x3c1e0b=_0x8afc6d;_0x429296=round(_0x3c1e0b['getComputedTextLength']());}catch{}_0x2d2f72['body']['removeChild'](_0x1ad677);const _0x78d95d={};return _0x78d95d['bbox']=_0x417989,_0x78d95d['charExtent']=_0x192089,_0x78d95d['substringLength']=_0x24c398,_0x78d95d['computedTextLength']=_0x429296,_0x78d95d['font']=_0x4bbb2f,_0x78d95d;});}function round(_0x2b9021){return Math['round'](_0x2b9021*0x64)/0x64;}const _0xa1c87={};_0xa1c87['contentType']='video/mp4;\x20codecs=\x22avc1.42E01E\x22',_0xa1c87['width']=0x780,_0xa1c87['height']=0x438,_0xa1c87['bitrate']=0x4c4b40,_0xa1c87['framerate']=0x1e;const _0x4677d8={};_0x4677d8['type']='file',_0x4677d8['video']=_0xa1c87;const _0x73e665={};_0x73e665['contentType']='video/webm;\x20codecs=\x22vp8\x22',_0x73e665['width']=0x780,_0x73e665['height']=0x438,_0x73e665['bitrate']=0x4c4b40,_0x73e665['framerate']=0x1e;const _0x55fb5b={};_0x55fb5b['type']='file',_0x55fb5b['video']=_0x73e665;const _0x8ee3cf={};_0x8ee3cf['contentType']='video/webm;\x20codecs=\x22vp09.00.10.08\x22',_0x8ee3cf['width']=0x780,_0x8ee3cf['height']=0x438,_0x8ee3cf['bitrate']=0x4c4b40,_0x8ee3cf['framerate']=0x1e;const _0x443df8={};_0x443df8['type']='file',_0x443df8['video']=_0x8ee3cf;const _0xcd4e13={};_0xcd4e13['contentType']='video/mp4;\x20codecs=\x22av01.0.05M.08\x22',_0xcd4e13['width']=0x780,_0xcd4e13['height']=0x438,_0xcd4e13['bitrate']=0x4c4b40,_0xcd4e13['framerate']=0x1e;const _0x4f914e={};_0x4f914e['type']='file',_0x4f914e['video']=_0xcd4e13;const _0x99af60={};_0x99af60['contentType']='video/mp4;\x20codecs=\x22hvc1.1.6.L93.B0\x22',_0x99af60['width']=0x780,_0x99af60['height']=0x438,_0x99af60['bitrate']=0x4c4b40,_0x99af60['framerate']=0x1e;const _0x3809dc={};_0x3809dc['type']='file',_0x3809dc['video']=_0x99af60;const _0x2ed288={};_0x2ed288['contentType']='video/mp4;\x20codecs=\x22avc1.640033\x22',_0x2ed288['width']=0xf00,_0x2ed288['height']=0x870,_0x2ed288['bitrate']=0x1312d00,_0x2ed288['framerate']=0x3c;const _0x292718={};_0x292718['type']='file',_0x292718['video']=_0x2ed288;const _0xff9d9c={};_0xff9d9c['contentType']='video/webm;\x20codecs=\x22vp09.02.10.10\x22',_0xff9d9c['width']=0xf00,_0xff9d9c['height']=0x870,_0xff9d9c['bitrate']=0x1312d00,_0xff9d9c['framerate']=0x3c;const _0x5c7999={};_0x5c7999['type']='file',_0x5c7999['video']=_0xff9d9c;const _0x21f3d4={};_0x21f3d4['contentType']='video/mp4;\x20codecs=\x22av01.0.12M.10\x22',_0x21f3d4['width']=0xf00,_0x21f3d4['height']=0x870,_0x21f3d4['bitrate']=0x1312d00,_0x21f3d4['framerate']=0x3c;const _0x22844e={};_0x22844e['type']='file',_0x22844e['video']=_0x21f3d4;const CODEC_CONFIGS=[_0x4677d8,_0x55fb5b,_0x443df8,_0x4f914e,_0x3809dc,_0x292718,_0x5c7999,_0x22844e];async function getVideoCodecs(){if(!('mediaCapabilities'in navigator))return null;return Promise['all'](CODEC_CONFIGS['map'](async _0xef337=>{try{const _0x4e2e57=await navigator['mediaCapabilities']['decodingInfo'](_0xef337);let _0x44a1a9=0x0;if(_0x4e2e57['supported'])_0x44a1a9|=0x1;if(_0x4e2e57['smooth'])_0x44a1a9|=0x2;if(_0x4e2e57['powerEfficient'])_0x44a1a9|=0x4;return _0x44a1a9;}catch(_0x332e0b){return _0x332e0b instanceof Error?_0x332e0b['message']:String(_0x332e0b);}}));}const WASM_PREFIX$1=[0x0,0x61,0x73,0x6d,0x1,0x0,0x0,0x0,0x1,0x4,0x1,0x60,0x0,0x0,0x3,0x2,0x1,0x0,0xa],FEATURE_MODULES$1=[[0x9,0x1,0x7,0x0,0x41,0x0,0xfd,0xf,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0xf0,0x43,0x0,0x0,0x0,0xc,0x1,0xa,0x0,0xfc,0x2,0x3,0x1,0x1,0x0,0x0,0x6e,0x1a,0xb,0xa1,0xa],[0x6,0x1,0x4,0x0,0x12,0x0,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x8,0x1,0x6,0x0,0x41,0x0,0xc0,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x7,0x1,0x5,0x0,0xd0,0x70,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0]];function getWasmFeatures(){try{if(typeof WebAssembly==='undefined'||typeof WebAssembly['validate']!=='function')return undefined;let _0x28c967=0x0;for(const _0x43a4a3 of FEATURE_MODULES$1){_0x28c967<<=0x1,WebAssembly['validate'](Uint8Array['of'](...WASM_PREFIX$1,..._0x43a4a3)['buffer'])&&(_0x28c967|=0x1);}return _0x28c967;}catch{return undefined;}}const WASM_PREFIX=[0x0,0x61,0x73,0x6d,0x1,0x0,0x0,0x0,0x1,0x4,0x1,0x60,0x0,0x0,0x3,0x2,0x1,0x0,0xa],FEATURE_MODULES=[[0x9,0x1,0x7,0x0,0x41,0x0,0xfd,0xf,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0xf0,0x43,0x0,0x0,0x0,0xc,0x1,0xa,0x0,0xfc,0x2,0x3,0x1,0x1,0x0,0x0,0x6e,0x1a,0xb,0xa1,0xa],[0x6,0x1,0x4,0x0,0x12,0x0,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x8,0x1,0x6,0x0,0x41,0x0,0xc0,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0],[0x7,0x1,0x5,0x0,0xd0,0x70,0x1a,0xb,0x0,0xa,0x4,0x6e,0x61,0x6d,0x65,0x2,0x3,0x1,0x0,0x0]],WORKER_SOURCE='\x0aself.onmessage\x20=\x20function\x20(e)\x20{\x0a\x20\x20if\x20(e.data\x20!==\x20\x27probe\x27)\x20return;\x0a\x20\x20if\x20(typeof\x20WebAssembly\x20===\x20\x27undefined\x27\x20||\x20typeof\x20WebAssembly.validate\x20!==\x20\x27function\x27)\x20{\x0a\x20\x20\x20\x20self.postMessage({\x20ok:\x20false,\x20reason:\x20\x27no-wasm\x27\x20});\x0a\x20\x20\x20\x20return;\x0a\x20\x20}\x0a\x20\x20var\x20PREFIX\x20=\x20'+JSON['stringify'](WASM_PREFIX)+';\x0a\x20\x20var\x20MODS\x20=\x20'+JSON['stringify'](FEATURE_MODULES)+';\x0a\x20\x20try\x20{\x0a\x20\x20\x20\x20var\x20mask\x20=\x200;\x0a\x20\x20\x20\x20for\x20(var\x20i\x20=\x200;\x20i\x20<\x20MODS.length;\x20i++)\x20{\x0a\x20\x20\x20\x20\x20\x20mask\x20<<=\x201;\x0a\x20\x20\x20\x20\x20\x20var\x20bytes\x20=\x20new\x20Uint8Array(PREFIX.length\x20+\x20MODS[i].length);\x0a\x20\x20\x20\x20\x20\x20bytes.set(PREFIX,\x200);\x0a\x20\x20\x20\x20\x20\x20bytes.set(MODS[i],\x20PREFIX.length);\x0a\x20\x20\x20\x20\x20\x20if\x20(WebAssembly.validate(bytes.buffer))\x20mask\x20|=\x201;\x0a\x20\x20\x20\x20}\x0a\x20\x20\x20\x20self.postMessage({\x20ok:\x20true,\x20mask:\x20mask\x20});\x0a\x20\x20}\x20catch\x20(err)\x20{\x0a\x20\x20\x20\x20self.postMessage({\x20ok:\x20false,\x20reason:\x20\x27throw\x27\x20});\x0a\x20\x20}\x0a};\x0a',WORKER_PROBE_TIMEOUT_MS=0x5dc;function getWasmFeaturesWorker(){if(typeof Worker!=='function'||typeof Blob!=='function'||typeof URL!=='function')return null;if(typeof URL['createObjectURL']!=='function')return null;return async()=>{const _0x2374c6=Date['now']();let _0x23e82d=null,_0x2ca035=null;try{const _0x449f97={};_0x449f97['type']='application/javascript';const _0x462079=new Blob([WORKER_SOURCE],_0x449f97);_0x2ca035=URL['createObjectURL'](_0x462079),_0x23e82d=new Worker(_0x2ca035);}catch{if(_0x2ca035!==null)URL['revokeObjectURL'](_0x2ca035);return _0x23e82d?.['terminate'](),null;}const _0x23e617=_0x23e82d;try{const _0x15b7f1=await new Promise(_0x50c2cf=>{const _0xcbea38=setTimeout(()=>_0x50c2cf(undefined),WORKER_PROBE_TIMEOUT_MS);_0x23e617['onmessage']=_0x3fcc0e=>{clearTimeout(_0xcbea38),_0x3fcc0e['data']['ok']&&typeof _0x3fcc0e['data']['mask']==='number'?_0x50c2cf(_0x3fcc0e['data']['mask']):_0x50c2cf(undefined);},_0x23e617['onerror']=()=>{clearTimeout(_0xcbea38),_0x50c2cf(undefined);},_0x23e617['postMessage']('probe');});return{'mask':_0x15b7f1,'durationMs':Date['now']()-_0x2374c6};}finally{_0x23e617['terminate']();if(_0x2ca035!==null)URL['revokeObjectURL'](_0x2ca035);}};}const _0x44a2e9={};_0x44a2e9['conditionalCreate']='cc',_0x44a2e9['conditionalGet']='cg',_0x44a2e9['hybridTransport']='ht',_0x44a2e9['passkeyPlatformAuthenticator']='ppa',_0x44a2e9['userVerifyingPlatformAuthenticator']='uvpa',_0x44a2e9['relatedOrigins']='ro',_0x44a2e9['signalAllAcceptedCredentials']='saac',_0x44a2e9['signalCurrentUserDetails']='scud',_0x44a2e9['signalUnknownCredential']='suc',_0x44a2e9['extension:credProps']='ecp',_0x44a2e9['extension:prf']='ep',_0x44a2e9['extension:appid']='eai',_0x44a2e9['extension:appidExclude']='eaie',_0x44a2e9['extension:credBlob']='ecb',_0x44a2e9['extension:credProtect']='ecpr',_0x44a2e9['extension:hmacSecret']='ehs',_0x44a2e9['extension:largeBlob']='elb',_0x44a2e9['extension:minPinLength']='empl',_0x44a2e9['extension:payment']='epy';const CAPABILITY_SHORT_CODE=_0x44a2e9;function getPublicKeyCredential(){if(typeof window==='undefined')return null;const _0x482d53=window['PublicKeyCredential'];if(!_0x482d53||typeof _0x482d53['getClientCapabilities']!=='function')return null;return _0x482d53;}function getWebAuthnCapabilities(){const _0x44ab73=getPublicKeyCredential();if(_0x44ab73===null||_0x44ab73['getClientCapabilities']===undefined)return null;const _0x5cf3f6=_0x44ab73['getClientCapabilities'];return async()=>{let _0x5cd165;try{_0x5cd165=await _0x5cf3f6();}catch{return null;}if(_0x5cd165===null||typeof _0x5cd165!=='object')return null;const _0x12ef41={};for(const [_0x16e75a,_0x164da7]of Object['entries'](_0x5cd165)){const _0x46e18d=CAPABILITY_SHORT_CODE[_0x16e75a];if(_0x46e18d!==undefined)_0x12ef41[_0x46e18d]=_0x164da7===!![];}return _0x12ef41;};}const _0x2693f1={};_0x2693f1['codec']='avc1.42001E',_0x2693f1['width']=0x780,_0x2693f1['height']=0x438,_0x2693f1['label']='h264-baseline-1080';const _0x671f12={};_0x671f12['codec']='avc1.4D0032',_0x671f12['width']=0xf00,_0x671f12['height']=0x870,_0x671f12['label']='h264-main-4k';const _0x16c241={};_0x16c241['codec']='avc1.640033',_0x16c241['width']=0xf00,_0x16c241['height']=0x870,_0x16c241['label']='h264-high-4k';const _0x200ebe={};_0x200ebe['codec']='hev1.1.6.L150.B0',_0x200ebe['width']=0x780,_0x200ebe['height']=0x438,_0x200ebe['label']='hevc-main-1080';const _0x426cd0={};_0x426cd0['codec']='hev1.2.4.L153.B0',_0x426cd0['width']=0xf00,_0x426cd0['height']=0x870,_0x426cd0['label']='hevc-main10-4k';const _0x54f74a={};_0x54f74a['codec']='hev1.1.6.L180.B0',_0x54f74a['width']=0x1e00,_0x54f74a['height']=0x10e0,_0x54f74a['label']='hevc-main-8k';const _0x4790eb={};_0x4790eb['codec']='vp09.00.40.08',_0x4790eb['width']=0x780,_0x4790eb['height']=0x438,_0x4790eb['label']='vp9-profile0-1080';const _0x453a88={};_0x453a88['codec']='vp09.02.40.10',_0x453a88['width']=0xf00,_0x453a88['height']=0x870,_0x453a88['label']='vp9-profile2-4k-10bit';const _0x436596={};_0x436596['codec']='av01.0.08M.08',_0x436596['width']=0x780,_0x436596['height']=0x438,_0x436596['label']='av1-main-1080';const _0x1cbf7a={};_0x1cbf7a['codec']='av01.0.12M.10',_0x1cbf7a['width']=0xf00,_0x1cbf7a['height']=0x870,_0x1cbf7a['label']='av1-main-4k-10bit';const _0x138247={};_0x138247['codec']='av01.0.16M.10',_0x138247['width']=0x1e00,_0x138247['height']=0x10e0,_0x138247['label']='av1-main-8k-10bit';const _0x2a6ba5={};_0x2a6ba5['codec']='vp8',_0x2a6ba5['width']=0x780,_0x2a6ba5['height']=0x438,_0x2a6ba5['label']='vp8-1080';const CODEC_TESTS=[_0x2693f1,_0x671f12,_0x16c241,_0x200ebe,_0x426cd0,_0x54f74a,_0x4790eb,_0x453a88,_0x436596,_0x1cbf7a,_0x138247,_0x2a6ba5];async function getWebCodecsHardware(){try{const _0x1fff1d=window['VideoDecoder'];if(!_0x1fff1d||typeof _0x1fff1d['isConfigSupported']!=='function')return null;const _0x25221f=_0x1fff1d['isConfigSupported']['bind'](_0x1fff1d),_0x25a564=[],_0x4f7267=CODEC_TESTS['map'](async _0x4e16db=>{try{const _0x2089cb={};_0x2089cb['codec']=_0x4e16db['codec'],_0x2089cb['codedWidth']=_0x4e16db['width'],_0x2089cb['codedHeight']=_0x4e16db['height'],_0x2089cb['hardwareAcceleration']='prefer-hardware';const _0x4dddc8=_0x2089cb,_0x22af7d=await Promise['race']([_0x25221f(_0x4dddc8),new Promise(_0x34dd58=>setTimeout(()=>_0x34dd58(null),0x1f4))]);if(_0x22af7d?.['supported']===!![]){const _0x327824=_0x22af7d['config'],_0x357c5a=_0x327824?.['hardwareAcceleration'];(_0x357c5a==='prefer-hardware'||_0x357c5a===undefined)&&_0x25a564['push'](_0x4e16db['label']);}}catch{}});return await Promise['all'](_0x4f7267),_0x25a564['sort']();}catch{return null;}}const STATUS_NO_GL_CONTEXT=-0x1,STATUS_GET_PARAMETER_NOT_A_FUNCTION=-0x2,validContextParameters=new Set([0x2a00,0xb21,0xb44,0xb45,0xb46,0xb70,0xb71,0xb72,0xb73,0xb74,0xb90,0xb91,0xb92,0xb93,0xb94,0xb95,0xb96,0xb97,0xb98,0xba2,0xbd0,0xbe2,0xc10,0xc11,0xc22,0xc23,0x8005,0x8009,0x8009,0x8037,0x8038,0x80a8,0x80a9,0x80aa,0x80ab,0x80c8,0x80c9,0x80ca,0x80cb,0xcf5,0x8192,0xd05,0xd33,0xd39,0xd3a,0xd4b,0xd66,0x846d,0x846e,0x84e0,0x84e8,0x851c,0xd50,0xd52,0xd53,0xd54,0xd55,0xd56,0xd57,0x86a3,0x8800,0x8801,0x8802,0x8803,0x883d,0x8869,0x8872,0x8b4c,0x8b4d,0x8b8c,0x8b9a,0x8b9b,0x8ca3,0x8ca4,0x8ca5,0x8dfb,0x8dfc,0x8dfd,0x9240,0x9241,0x9243,0x1f00,0x1f01,0x1f02]),validExtensionParams=new Set([0x84ff,0x8b8b,0x8cdf,0x8824,0x8825,0x8826,0x85b5,0x8e28,0x8fbb,0x9631]),shaderTypes=['FRAGMENT_SHADER','VERTEX_SHADER'],precisionTypes=['LOW_FLOAT','MEDIUM_FLOAT','HIGH_FLOAT','LOW_INT','MEDIUM_INT','HIGH_INT'],rendererInfoExtensionName='WEBGL_debug_renderer_info',polygonModeExtensionName='WEBGL_polygon_mode';function getWebGlBasics({cache:_0xdfbae9}){const _0x2cc599=getWebGLContext(_0xdfbae9);if(!_0x2cc599)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0x2cc599))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0xac823d=shouldAvoidDebugRendererInfo()?null:_0x2cc599['getExtension'](rendererInfoExtensionName);return{'version':getParamString(_0x2cc599,_0x2cc599['VERSION']),'vendor':getParamString(_0x2cc599,_0x2cc599['VENDOR']),'vendorUnmasked':_0xac823d!==null?getParamString(_0x2cc599,_0xac823d['UNMASKED_VENDOR_WEBGL']):'','renderer':getParamString(_0x2cc599,_0x2cc599['RENDERER']),'rendererUnmasked':_0xac823d!==null?getParamString(_0x2cc599,_0xac823d['UNMASKED_RENDERER_WEBGL']):'','shadingLanguageVersion':getParamString(_0x2cc599,_0x2cc599['SHADING_LANGUAGE_VERSION'])};}function getWebGlExtensions({cache:_0xefcb4a}){const _0x1a7377=getWebGLContext(_0xefcb4a);if(!_0x1a7377)return STATUS_NO_GL_CONTEXT;if(!isValidParameterGetter(_0x1a7377))return STATUS_GET_PARAMETER_NOT_A_FUNCTION;const _0x316b6e=_0x1a7377['getSupportedExtensions'](),_0x5338cc=_0x1a7377['getContextAttributes'](),_0x25cef8=[],_0x1e4cac=[],_0x1bf7ba=[],_0x3aaa10=[],_0x341864=[];if(_0x5338cc)for(const _0x403c1b of Object['keys'](_0x5338cc)){_0x1e4cac['push'](_0x403c1b+'='+_0x5338cc[_0x403c1b]);}const _0xe3f9ef=getConstantsFromPrototype(_0x1a7377);for(const _0x1eb565 of _0xe3f9ef){const _0x13cb2d=_0x1a7377[_0x1eb565],_0xa3d6d3=validContextParameters['has'](_0x13cb2d)?'='+String(_0x1a7377['getParameter'](_0x13cb2d)):'';_0x1bf7ba['push'](_0x1eb565+'='+_0x13cb2d+_0xa3d6d3);}if(_0x316b6e!==null)for(const _0x373ab8 of _0x316b6e){if(_0x373ab8===rendererInfoExtensionName&&shouldAvoidDebugRendererInfo()||_0x373ab8===polygonModeExtensionName&&shouldAvoidPolygonModeExtensions())continue;const _0x4a14ed=_0x1a7377['getExtension'](_0x373ab8);if(_0x4a14ed===null){_0x25cef8['push'](_0x373ab8);continue;}for(const _0x3d3177 of getConstantsFromPrototype(_0x4a14ed)){const _0xc6cf4c=_0x4a14ed[_0x3d3177],_0xc528a3=validExtensionParams['has'](_0xc6cf4c)?'='+String(_0x1a7377['getParameter'](_0xc6cf4c)):'';_0x3aaa10['push'](_0x3d3177+'='+_0xc6cf4c+_0xc528a3);}}for(const _0x3693e1 of shaderTypes){for(const _0x4a21f5 of precisionTypes){const _0x252567=getShaderPrecision(_0x1a7377,_0x3693e1,_0x4a21f5);_0x341864['push'](_0x3693e1+'.'+_0x4a21f5+'='+_0x252567['join'](','));}}_0x3aaa10['sort'](),_0x1bf7ba['sort']();const _0x1bba4c={};return _0x1bba4c['contextAttributes']=_0x1e4cac,_0x1bba4c['parameters']=_0x1bf7ba,_0x1bba4c['shaderPrecisions']=_0x341864,_0x1bba4c['extensions']=_0x316b6e,_0x1bba4c['extensionParameters']=_0x3aaa10,_0x1bba4c['unsupportedExtensions']=_0x25cef8,_0x1bba4c;}function getWebGLContext(_0x4d2919){if(_0x4d2919['webgl'])return _0x4d2919['webgl']['context'];const _0x411f25=document['createElement']('canvas');let _0x33f084;_0x411f25['addEventListener']('webglCreateContextError',()=>_0x33f084=undefined);for(const _0x57ed54 of['webgl','experimental-webgl']){try{_0x33f084=_0x411f25['getContext'](_0x57ed54);}catch{}if(_0x33f084)break;}const _0x1955fe={};return _0x1955fe['context']=_0x33f084,_0x4d2919['webgl']=_0x1955fe,_0x33f084;}function getShaderPrecision(_0x16c026,_0x43f8a7,_0x4cc8aa){const _0x52b7a9=_0x16c026['getShaderPrecisionFormat'](_0x16c026[_0x43f8a7],_0x16c026[_0x4cc8aa]);return _0x52b7a9?[_0x52b7a9['rangeMin'],_0x52b7a9['rangeMax'],_0x52b7a9['precision']]:[];}function getConstantsFromPrototype(_0x25d7e0){const _0x5c2188=Object['getPrototypeOf'](_0x25d7e0);if(_0x5c2188===null)return[];const _0x5b7349=Object['keys'](_0x5c2188);return _0x5b7349['filter'](isConstantLike);}function isConstantLike(_0x21dd4f){return typeof _0x21dd4f==='string'&&!_0x21dd4f['match'](/[^A-Z0-9_x]/);}function shouldAvoidDebugRendererInfo(){return isGecko();}function shouldAvoidPolygonModeExtensions(){return isChromium()||isWebKit();}function getParamString(_0x426760,_0x14b93b){const _0xc78a47=_0x426760['getParameter'](_0x14b93b);if(_0xc78a47===undefined||_0xc78a47===null)return'';return String(_0xc78a47);}function isValidParameterGetter(_0x1fa33c){return typeof _0x1fa33c['getParameter']==='function';}const _0x4b673e={};_0x4b673e['dHash']='',_0x4b673e['imageMurHash']='',_0x4b673e['unstable']=![];const EMPTY=_0x4b673e;function getWebGlCanvas(){try{const _0x1c382e=document['createElement']('canvas');_0x1c382e['width']=0x100,_0x1c382e['height']=0x100;const _0x2b3af2=_0x1c382e['getContext']('webgl')??_0x1c382e['getContext']('experimental-webgl');if(!_0x2b3af2||!(_0x2b3af2 instanceof WebGLRenderingContext))return EMPTY;renderTriangle(_0x2b3af2);const _0x33e45b=computeDHash(_0x1c382e),_0x4a5bab=_0x1c382e['toDataURL'](),_0x261932=_0x1c382e['toDataURL']();if(_0x4a5bab!==_0x261932){const _0x2f151d={};return _0x2f151d['dHash']=_0x33e45b,_0x2f151d['imageMurHash']='',_0x2f151d['unstable']=!![],_0x2f151d;}return{'dHash':_0x33e45b,'imageMurHash':x64hash128(_0x4a5bab),'unstable':![]};}catch{return EMPTY;}}function renderTriangle(_0x5e917f){_0x5e917f['clearColor'](0x0,0x0,0x1,0x1);const _0x1a3db9=_0x5e917f['createProgram']();if(_0x1a3db9===null)return;const _0x2e7e5b=_0x1a3db9;function _0x28e584(_0x239609,_0xc9b840){const _0x46a6fb=_0x5e917f['createShader'](_0x239609);if(_0x46a6fb===null)return;_0x5e917f['shaderSource'](_0x46a6fb,_0xc9b840),_0x5e917f['compileShader'](_0x46a6fb),_0x5e917f['attachShader'](_0x2e7e5b,_0x46a6fb);}_0x28e584(_0x5e917f['VERTEX_SHADER'],'attribute\x20vec2\x20p;uniform\x20float\x20t;void\x20main(){float\x20s=sin(t);float\x20c=cos(t);gl_Position=vec4(p*mat2(c,s,-s,c),1,1);}'),_0x28e584(_0x5e917f['FRAGMENT_SHADER'],'void\x20main(){gl_FragColor=vec4(1,0,0,1);}'),_0x5e917f['linkProgram'](_0x1a3db9),_0x5e917f['useProgram'](_0x1a3db9),_0x5e917f['enableVertexAttribArray'](0x0);const _0x40b484=_0x5e917f['getUniformLocation'](_0x1a3db9,'t'),_0x5d9195=_0x5e917f['createBuffer']();_0x5e917f['bindBuffer'](_0x5e917f['ARRAY_BUFFER'],_0x5d9195),_0x5e917f['bufferData'](_0x5e917f['ARRAY_BUFFER'],new Float32Array([0x0,0x1,-0x1,-0x1,0x1,-0x1]),_0x5e917f['STATIC_DRAW']),_0x5e917f['vertexAttribPointer'](0x0,0x2,_0x5e917f['FLOAT'],![],0x0,0x0),_0x5e917f['clear'](_0x5e917f['COLOR_BUFFER_BIT']),_0x5e917f['uniform1f'](_0x40b484,3.65),_0x5e917f['drawArrays'](_0x5e917f['TRIANGLES'],0x0,0x3);}const GPU_LIMIT_NAMES=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','minUniformBufferOffsetAlignment','minStorageBufferOffsetAlignment','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderComponents','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension','maxBindGroupsPlusVertexBuffers','maxStorageBuffersInFragmentStage','maxStorageBuffersInVertexStage','maxStorageTexturesInFragmentStage','maxStorageTexturesInVertexStage'];async function getAdapterInfo(_0x85043a){const _0xd6633b=_0x85043a['info'];if(_0xd6633b!==null&&_0xd6633b!==undefined)return _0xd6633b;const _0x54f883=_0x85043a['requestAdapterInfo'];if(typeof _0x54f883==='function')try{return await _0x54f883['call'](_0x85043a);}catch{return null;}return null;}async function getWebGlExtended(){try{const {getCachedGpuAdapter:_0x4d66a1}=await Promise['resolve']()['then'](function(){return webgpuAdapter;}),_0x23e607=_0x4d66a1();if(_0x23e607===null)return null;const _0x46c69d=await _0x23e607;if(!_0x46c69d)return null;const _0x430b96=_0x46c69d['limits'],_0x125fb0=[];for(const _0x1937e5 of GPU_LIMIT_NAMES){if(_0x430b96&&_0x1937e5 in _0x430b96){const _0xced1f5=_0x430b96[_0x1937e5];_0x125fb0['push'](typeof _0xced1f5==='number'?_0xced1f5:null);}else _0x125fb0['push'](null);}const _0x1c935=await getAdapterInfo(_0x46c69d);let _0xa25e0=null,_0x396789=null;_0x1c935!==null&&(_0xa25e0=typeof _0x1c935['description']==='string'?_0x1c935['description']:null,_0x396789=typeof _0x1c935['device']==='string'?_0x1c935['device']:null);const _0x42dd76='isFallbackAdapter'in _0x46c69d?Boolean(_0x46c69d['isFallbackAdapter']):null,_0x4ffa0a={};return _0x4ffa0a['ds']=_0xa25e0,_0x4ffa0a['dv']=_0x396789,_0x4ffa0a['f']=_0x42dd76,_0x4ffa0a['l']=_0x125fb0,_0x4ffa0a;}catch{return null;}}const AH_TOKEN='34047',KH_BLACKLIST=new Set(['32926','32928']);function transformParameters(_0x197230){return _0x197230['map'](_0x5d221f=>{const _0x35d7ec=_0x5d221f['split']('=',0x3),_0x7617ce=_0x35d7ec[0x0],_0x140745=_0x35d7ec[0x1],_0x432310=_0x35d7ec[0x2];if(_0x432310!==undefined||_0x140745!==undefined&&KH_BLACKLIST['has'](_0x140745))return _0x7617ce+'('+(_0x140745??'')+')=null';return _0x5d221f;});}function transformExtensionParameters(_0x477cc0){return _0x477cc0['map'](_0x1045bb=>{const _0x322c58=_0x1045bb['split']('=',0x3),_0x3cf461=_0x322c58[0x0],_0x3bda6b=_0x322c58[0x1],_0x348378=_0x322c58[0x2];if(_0x348378!==undefined&&_0x3bda6b!==AH_TOKEN)return _0x3cf461+'('+(_0x3bda6b??'')+')='+_0x348378;return _0x1045bb;});}function getWebGlExtensionsHashed({cache:_0xa199e7}){const _0x2fc960={};_0x2fc960['cache']=_0xa199e7;const _0x4a8ec2=getWebGlExtensions(_0x2fc960);if(typeof _0x4a8ec2==='number')return _0x4a8ec2;const {contextAttributes:_0xd8d644,parameters:_0x28ac40,shaderPrecisions:_0x338d,extensions:_0x402533,extensionParameters:_0x1bc1a3,unsupportedExtensions:_0x536848}=_0x4a8ec2,_0x42e478=_0x402533??[],_0x3ca92b=transformParameters(_0x28ac40),_0x185cbd=transformExtensionParameters(_0x1bc1a3);return{'contextAttributes':x64hash128(_0xd8d644['join']('&')),'parameters':x64hash128(_0x3ca92b['join']('&')),'parameters2':x64hash128(_0x28ac40['join']('&')),'shaderPrecisions':x64hash128(_0x338d['join']('&')),'extensions':x64hash128(_0x42e478['join'](',')),'extensionParameters':x64hash128(_0x185cbd['join'](',')),'extensionParameters2':x64hash128(_0x1bc1a3['join']('&')),'unsupportedExtensions':_0x536848,'extensionsList':_0x42e478};}const SIZE=0x43,LAT_BANDS=0x32,LON_BANDS=0x32,RADIUS=0x2,VERT_SHADER='\x0aattribute\x20vec3\x20aPosition;\x0aattribute\x20vec3\x20aNormal;\x0auniform\x20vec4\x20uLightPos;\x0auniform\x20vec3\x20uKd;\x0auniform\x20vec3\x20uLd;\x0auniform\x20mat4\x20uMVMatrix;\x0auniform\x20mat4\x20uMVPMatrix;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20vec3\x20n\x20=\x20normalize(aNormal);\x0a\x20\x20vec4\x20pos\x20=\x20uMVMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a\x20\x20vec3\x20s\x20=\x20normalize(vec3(uLightPos\x20-\x20pos));\x0a\x20\x20vLight\x20=\x20uLd\x20*\x20uKd\x20*\x20max(dot(s,\x20n),\x200.0);\x0a\x20\x20gl_Position\x20=\x20uMVPMatrix\x20*\x20vec4(aPosition,\x201.0);\x0a}\x0a',FRAG_SHADER='\x0aprecision\x20mediump\x20float;\x0avarying\x20vec3\x20vLight;\x0avoid\x20main()\x20{\x0a\x20\x20gl_FragColor\x20=\x20vec4(vLight,\x201.0);\x0a}\x0a';function getWebGlSphere(){try{const _0x36f97a=document['createElement']('canvas');_0x36f97a['width']=SIZE,_0x36f97a['height']=SIZE;const _0x4ef85e=_0x36f97a['getContext']('webgl')??_0x36f97a['getContext']('experimental-webgl');if(!_0x4ef85e)return null;const _0x4e548c=buildProgram(_0x4ef85e);if(!_0x4e548c)return null;const _0xd0461a=buildSphere();renderSphere(_0x4ef85e,_0x4e548c,_0xd0461a);const _0x703dd0=_0x36f97a['toDataURL'](),_0x5880e0=_0x36f97a['toDataURL']();if(_0x703dd0!==_0x5880e0)return null;return fnv1a(_0x703dd0);}catch{return null;}}function buildProgram(_0x400894){const _0x274f99=_0x400894['createProgram'](),_0xab1454=_0x400894['createShader'](_0x400894['VERTEX_SHADER']),_0x911438=_0x400894['createShader'](_0x400894['FRAGMENT_SHADER']);if(_0xab1454===null||_0x911438===null)return null;_0x400894['shaderSource'](_0xab1454,VERT_SHADER),_0x400894['compileShader'](_0xab1454),_0x400894['attachShader'](_0x274f99,_0xab1454),_0x400894['shaderSource'](_0x911438,FRAG_SHADER),_0x400894['compileShader'](_0x911438),_0x400894['attachShader'](_0x274f99,_0x911438),_0x400894['linkProgram'](_0x274f99);if(_0x400894['getProgramParameter'](_0x274f99,_0x400894['LINK_STATUS'])!==!![])return null;return _0x274f99;}function buildSphere(){const _0x54ce11=[],_0x4e539e=[],_0x1fb977=[];for(let _0x2bca2f=0x0;_0x2bca2f<=LAT_BANDS;_0x2bca2f++){const _0x39f1d1=_0x2bca2f*Math['PI']/LAT_BANDS,_0x27d756=Math['sin'](_0x39f1d1),_0x19bf36=Math['cos'](_0x39f1d1);for(let _0x1e1ef7=0x0;_0x1e1ef7<=LON_BANDS;_0x1e1ef7++){const _0x88821f=_0x1e1ef7*0x2*Math['PI']/LON_BANDS,_0x3ae932=_0x27d756*Math['cos'](_0x88821f),_0x12ccf1=_0x19bf36,_0x1380c6=_0x27d756*Math['sin'](_0x88821f);_0x4e539e['push'](_0x3ae932,_0x12ccf1,_0x1380c6),_0x54ce11['push'](_0x3ae932*RADIUS,_0x12ccf1*RADIUS,_0x1380c6*RADIUS);}}for(let _0x5132c1=0x0;_0x5132c1<LAT_BANDS;_0x5132c1++){for(let _0x1e4f41=0x0;_0x1e4f41<LON_BANDS;_0x1e4f41++){const _0x17a9c7=_0x5132c1*(LON_BANDS+0x1)+_0x1e4f41,_0x565134=_0x17a9c7+LON_BANDS+0x1;_0x1fb977['push'](_0x17a9c7,_0x565134,_0x17a9c7+0x1),_0x1fb977['push'](_0x565134,_0x565134+0x1,_0x17a9c7+0x1);}}return{'vertices':new Float32Array(_0x54ce11),'normals':new Float32Array(_0x4e539e),'indices':new Uint16Array(_0x1fb977)};}function renderSphere(_0x576f4d,_0x2aa1aa,_0x862924){_0x576f4d['useProgram'](_0x2aa1aa),_0x576f4d['viewport'](0x0,0x0,SIZE,SIZE),_0x576f4d['clearColor'](0x0,0x0,0x0,0x1),_0x576f4d['enable'](_0x576f4d['DEPTH_TEST']),_0x576f4d['clear'](_0x576f4d['COLOR_BUFFER_BIT']|_0x576f4d['DEPTH_BUFFER_BIT']);const _0x448814=_0x576f4d['createBuffer']();_0x576f4d['bindBuffer'](_0x576f4d['ARRAY_BUFFER'],_0x448814),_0x576f4d['bufferData'](_0x576f4d['ARRAY_BUFFER'],_0x862924['vertices'],_0x576f4d['STATIC_DRAW']);const _0x454205=_0x576f4d['getAttribLocation'](_0x2aa1aa,'aPosition');_0x576f4d['enableVertexAttribArray'](_0x454205),_0x576f4d['vertexAttribPointer'](_0x454205,0x3,_0x576f4d['FLOAT'],![],0x0,0x0);const _0x2a62c6=_0x576f4d['createBuffer']();_0x576f4d['bindBuffer'](_0x576f4d['ARRAY_BUFFER'],_0x2a62c6),_0x576f4d['bufferData'](_0x576f4d['ARRAY_BUFFER'],_0x862924['normals'],_0x576f4d['STATIC_DRAW']);const _0x23c641=_0x576f4d['getAttribLocation'](_0x2aa1aa,'aNormal');_0x576f4d['enableVertexAttribArray'](_0x23c641),_0x576f4d['vertexAttribPointer'](_0x23c641,0x3,_0x576f4d['FLOAT'],![],0x0,0x0);const _0x45abf6=_0x576f4d['createBuffer']();_0x576f4d['bindBuffer'](_0x576f4d['ELEMENT_ARRAY_BUFFER'],_0x45abf6),_0x576f4d['bufferData'](_0x576f4d['ELEMENT_ARRAY_BUFFER'],_0x862924['indices'],_0x576f4d['STATIC_DRAW']);const _0x459e57=Math['PI']/0x6,_0x45d2cd=0x1,_0x3ebfa6=0.1,_0x52207c=0x64,_0xb7f795=0x1/Math['tan'](_0x459e57/0x2),_0x7f044f=new Float32Array([_0xb7f795/_0x45d2cd,0x0,0x0,0x0,0x0,_0xb7f795,0x0,0x0,0x0,0x0,(_0x52207c+_0x3ebfa6)/(_0x3ebfa6-_0x52207c),-0x1,0x0,0x0,0x2*_0x52207c*_0x3ebfa6/(_0x3ebfa6-_0x52207c),0x0]),_0x43a3f5=new Float32Array([0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,-0xa,0x1]),_0x198d4a=multiplyMat4(_0x7f044f,_0x43a3f5);_0x576f4d['uniformMatrix4fv'](_0x576f4d['getUniformLocation'](_0x2aa1aa,'uMVMatrix'),![],_0x43a3f5),_0x576f4d['uniformMatrix4fv'](_0x576f4d['getUniformLocation'](_0x2aa1aa,'uMVPMatrix'),![],_0x198d4a),_0x576f4d['uniform4f'](_0x576f4d['getUniformLocation'](_0x2aa1aa,'uLightPos'),0xa,0xa,0xa,0x1),_0x576f4d['uniform3f'](_0x576f4d['getUniformLocation'](_0x2aa1aa,'uKd'),0.9,0.5,0.3),_0x576f4d['uniform3f'](_0x576f4d['getUniformLocation'](_0x2aa1aa,'uLd'),0x1,0x1,0x1),_0x576f4d['drawElements'](_0x576f4d['TRIANGLES'],_0x862924['indices']['length'],_0x576f4d['UNSIGNED_SHORT'],0x0);}function multiplyMat4(_0x366cf1,_0xd80942){const _0x2979ad=new Float32Array(0x10);for(let _0xf1320f=0x0;_0xf1320f<0x4;_0xf1320f++){for(let _0x4b2976=0x0;_0x4b2976<0x4;_0x4b2976++){_0x2979ad[_0x4b2976*0x4+_0xf1320f]=0x0;for(let _0x34ea77=0x0;_0x34ea77<0x4;_0x34ea77++){_0x2979ad[_0x4b2976*0x4+_0xf1320f]+=_0x366cf1[_0x34ea77*0x4+_0xf1320f]*_0xd80942[_0x4b2976*0x4+_0x34ea77];}}}return _0x2979ad;}function fnv1a(_0x2ef7fd){let _0x55c3f1=0x811c9dc5;for(let _0x76c90a=0x0;_0x76c90a<_0x2ef7fd['length'];_0x76c90a++){_0x55c3f1^=_0x2ef7fd['charCodeAt'](_0x76c90a),_0x55c3f1+=(_0x55c3f1<<0x1)+(_0x55c3f1<<0x4)+(_0x55c3f1<<0x7)+(_0x55c3f1<<0x8)+(_0x55c3f1<<0x18);}return _0x55c3f1>>>0x0;}let cached=null;function getCachedGpuAdapter(){if(typeof navigator==='undefined')return null;const _0x938521=navigator['gpu'];if(_0x938521===undefined||_0x938521===null)return null;const _0x73fa25=_0x938521['requestAdapter'];if(typeof _0x73fa25!=='function')return null;return cached===null&&(cached=((async()=>{try{const _0xb6ca40=await _0x73fa25['call'](_0x938521);return _0xb6ca40===null||_0xb6ca40===undefined?null:_0xb6ca40;}catch{return null;}})())),cached;}function resetCachedGpuAdapter(){cached=null;}const _0x5a48d4={};_0x5a48d4['__proto__']=null,_0x5a48d4['getCachedGpuAdapter']=getCachedGpuAdapter,_0x5a48d4['resetCachedGpuAdapter']=resetCachedGpuAdapter;var webgpuAdapter=Object['freeze'](_0x5a48d4);const DISCRIMINATING_LIMITS=['maxTextureDimension1D','maxTextureDimension2D','maxTextureDimension3D','maxTextureArrayLayers','maxBindGroups','maxBindGroupsPlusVertexBuffers','maxBindingsPerBindGroup','maxDynamicUniformBuffersPerPipelineLayout','maxDynamicStorageBuffersPerPipelineLayout','maxSampledTexturesPerShaderStage','maxSamplersPerShaderStage','maxStorageBuffersPerShaderStage','maxStorageTexturesPerShaderStage','maxUniformBuffersPerShaderStage','maxUniformBufferBindingSize','maxStorageBufferBindingSize','maxVertexBuffers','maxBufferSize','maxVertexAttributes','maxVertexBufferArrayStride','maxInterStageShaderVariables','maxColorAttachments','maxColorAttachmentBytesPerSample','maxComputeWorkgroupStorageSize','maxComputeInvocationsPerWorkgroup','maxComputeWorkgroupSizeX','maxComputeWorkgroupSizeY','maxComputeWorkgroupSizeZ','maxComputeWorkgroupsPerDimension'];async function getWebGpuSignal(){try{const _0x5a2aaf=getCachedGpuAdapter();if(_0x5a2aaf===null)return null;const _0x2c0ebd=await _0x5a2aaf;if(!_0x2c0ebd)return null;const _0x17d2f2=_0x2c0ebd['info'],_0x52c091=_0x17d2f2?.['vendor']??'',_0x2f79e4=_0x17d2f2?.['architecture']??'',_0x256273=_0x17d2f2?.['device']??'',_0x54e95d=_0x17d2f2?.['description']??'',_0x4e4d53=[];_0x2c0ebd['features']['forEach'](_0x1e1e7d=>_0x4e4d53['push'](_0x1e1e7d)),_0x4e4d53['sort']();const _0x33f811={};for(const _0x2ac391 of DISCRIMINATING_LIMITS){_0x2ac391 in _0x2c0ebd['limits']&&(_0x33f811[_0x2ac391]=_0x2c0ebd['limits'][_0x2ac391]);}const _0xd3a7f0={};return _0xd3a7f0['vendor']=_0x52c091,_0xd3a7f0['architecture']=_0x2f79e4,_0xd3a7f0['device']=_0x256273,_0xd3a7f0['description']=_0x54e95d,_0xd3a7f0['features']=_0x4e4d53,_0xd3a7f0['limits']=_0x33f811,_0xd3a7f0;}catch{return null;}}const SHADER='\x0astruct\x20Counter\x20{\x20n:\x20atomic<u32>\x20}\x0a@group(0)\x20@binding(0)\x20var<storage,\x20read_write>\x20g:\x20Counter;\x0a\x0astruct\x20OutBuf\x20{\x20vals:\x20array<atomic<u32>>\x20}\x0a@group(0)\x20@binding(1)\x20var<storage,\x20read_write>\x20out:\x20OutBuf;\x0a\x0astruct\x20Params\x20{\x20limit:\x20u32,\x20_p1:\x20u32,\x20_p2:\x20u32,\x20_p3:\x20u32\x20}\x0a@group(0)\x20@binding(2)\x20var<uniform>\x20params:\x20Params;\x0a\x0aoverride\x20WG_SIZE:\x20u32\x20=\x2064u;\x0a\x0a@compute\x20@workgroup_size(WG_SIZE)\x0afn\x20main(@builtin(workgroup_id)\x20wid:\x20vec3<u32>,\x20@builtin(local_invocation_id)\x20lid:\x20vec3<u32>)\x20{\x0a\x20\x20if\x20(lid.x\x20==\x200u)\x20{\x20atomicStore(&out.vals[wid.x],\x200u);\x20}\x0a\x20\x20workgroupBarrier();\x0a\x20\x20var\x20local:\x20u32\x20=\x200u;\x0a\x20\x20loop\x20{\x0a\x20\x20\x20\x20let\x20prev\x20=\x20atomicAdd(&g.n,\x201u);\x0a\x20\x20\x20\x20if\x20(prev\x20>=\x20params.limit)\x20{\x20break;\x20}\x0a\x20\x20\x20\x20local\x20=\x20local\x20+\x201u;\x0a\x20\x20}\x0a\x20\x20atomicAdd(&out.vals[wid.x],\x20local);\x0a}\x0a',_0x52a71a={};_0x52a71a['wgCount']=0x80,_0x52a71a['wgSize']=0x40;const _0x5cdc37={};_0x5cdc37['wgCount']=0x100,_0x5cdc37['wgSize']=0x40;const _0x3a2a03={};_0x3a2a03['wgCount']=0x80,_0x3a2a03['wgSize']=0x80;const CONFIGS=[_0x52a71a,_0x5cdc37,_0x3a2a03],LIMIT=0x3d0900,TRIALS=0x3,BINS=0x40;async function getWebGpuContention(){try{const {getCachedGpuAdapter:_0x296de2}=await Promise['resolve']()['then'](function(){return webgpuAdapter;}),_0x31bde9=_0x296de2();if(_0x31bde9===null)return null;const _0x3d51bd=await _0x31bde9;if(_0x3d51bd===null)return null;const _0x1fe174=await _0x3d51bd['requestDevice']();try{const _0x3da876=_0x1fe174['queue'],_0xfe5bd3={};_0xfe5bd3['code']=SHADER;const _0x251b2c=_0x1fe174['createShaderModule'](_0xfe5bd3),_0x162777=await collectDistribution(_0x1fe174,_0x3da876,_0x251b2c),_0xfc7406=await collectDistribution(_0x1fe174,_0x3da876,_0x251b2c),_0x506678=cosine(_0x162777,_0xfc7406);if(_0x506678<0.8)return null;const _0x4b6349=_0x162777['map']((_0x1fcd91,_0x5eaea9)=>(_0x1fcd91+_0xfc7406[_0x5eaea9])/0x2);return _0x4b6349['map'](_0x217f3e=>Math['round'](_0x217f3e*0x2710)/0x2710);}finally{_0x1fe174['destroy']();}}catch{return null;}}async function collectDistribution(_0x30edaa,_0x255ebc,_0x529378){const _0x50d380=[];for(const _0x53937f of CONFIGS){const _0x2052ab=[];for(let _0x126c34=0x0;_0x126c34<TRIALS;_0x126c34++){const _0x2aac89=await runTrial(_0x30edaa,_0x255ebc,_0x529378,_0x53937f['wgCount'],_0x53937f['wgSize'],LIMIT);_0x2052ab['push'](_0x2aac89);}const _0x575559=medianOfTrials(_0x2052ab),_0x1b7f6d=normalize(_0x575559),_0xc78b18=downsample(_0x1b7f6d,BINS);_0x50d380['push'](..._0xc78b18);}return _0x50d380;}function cosine(_0x4ae1a9,_0x45515a){let _0x4ee051=0x0,_0x2f495e=0x0,_0x2868a1=0x0;for(let _0x54fa25=0x0;_0x54fa25<_0x4ae1a9['length'];_0x54fa25++){_0x4ee051+=_0x4ae1a9[_0x54fa25]*_0x45515a[_0x54fa25],_0x2f495e+=_0x4ae1a9[_0x54fa25]*_0x4ae1a9[_0x54fa25],_0x2868a1+=_0x45515a[_0x54fa25]*_0x45515a[_0x54fa25];}const _0x29d23c=Math['sqrt'](_0x2f495e)*Math['sqrt'](_0x2868a1);return _0x29d23c===0x0?0x0:_0x4ee051/_0x29d23c;}async function runTrial(_0x221663,_0x5e5627,_0x18f5a2,_0x471a49,_0x3188ac,_0x2a228a){const _0x20e1bf={};_0x20e1bf['WG_SIZE']=_0x3188ac;const _0x1f248c={};_0x1f248c['module']=_0x18f5a2,_0x1f248c['entryPoint']='main',_0x1f248c['constants']=_0x20e1bf;const _0x1d3d16={};_0x1d3d16['layout']='auto',_0x1d3d16['compute']=_0x1f248c;const _0x3cd4ff=_0x221663['createComputePipeline'](_0x1d3d16),_0x3694e3=_0x471a49*0x4,_0x267097={};_0x267097['size']=0x4,_0x267097['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_DST'];const _0x2655f9=_0x221663['createBuffer'](_0x267097),_0x8ab029={};_0x8ab029['size']=_0x3694e3,_0x8ab029['usage']=GPUBufferUsage['STORAGE']|GPUBufferUsage['COPY_SRC']|GPUBufferUsage['COPY_DST'];const _0x31e62e=_0x221663['createBuffer'](_0x8ab029),_0x1950e0={};_0x1950e0['size']=0x10,_0x1950e0['usage']=GPUBufferUsage['UNIFORM']|GPUBufferUsage['COPY_DST'];const _0x163973=_0x221663['createBuffer'](_0x1950e0),_0x339226={};_0x339226['size']=_0x3694e3,_0x339226['usage']=GPUBufferUsage['COPY_DST']|GPUBufferUsage['MAP_READ'];const _0x36b27a=_0x221663['createBuffer'](_0x339226);try{_0x5e5627['writeBuffer'](_0x2655f9,0x0,new Uint32Array([0x0])),_0x5e5627['writeBuffer'](_0x31e62e,0x0,new Uint8Array(_0x3694e3)),_0x5e5627['writeBuffer'](_0x163973,0x0,new Uint32Array([_0x2a228a,0x0,0x0,0x0]));const _0x2befe5={};_0x2befe5['buffer']=_0x2655f9;const _0x2652a4={};_0x2652a4['binding']=0x0,_0x2652a4['resource']=_0x2befe5;const _0x3bc277={};_0x3bc277['buffer']=_0x31e62e;const _0x2b3826={};_0x2b3826['binding']=0x1,_0x2b3826['resource']=_0x3bc277;const _0x51d53f={};_0x51d53f['buffer']=_0x163973;const _0xb90e40={};_0xb90e40['binding']=0x2,_0xb90e40['resource']=_0x51d53f;const _0x3e0b13=_0x221663['createBindGroup']({'layout':_0x3cd4ff['getBindGroupLayout'](0x0),'entries':[_0x2652a4,_0x2b3826,_0xb90e40]}),_0x23858c=_0x221663['createCommandEncoder'](),_0x1f2a7b=_0x23858c['beginComputePass']();_0x1f2a7b['setPipeline'](_0x3cd4ff),_0x1f2a7b['setBindGroup'](0x0,_0x3e0b13),_0x1f2a7b['dispatchWorkgroups'](_0x471a49,0x1,0x1),_0x1f2a7b['end'](),_0x23858c['copyBufferToBuffer'](_0x31e62e,0x0,_0x36b27a,0x0,_0x3694e3),_0x5e5627['submit']([_0x23858c['finish']()]),await _0x5e5627['onSubmittedWorkDone'](),await _0x36b27a['mapAsync'](GPUMapMode['READ']);const _0x20074d=new Uint32Array(_0x36b27a['getMappedRange']()['slice'](0x0));return _0x36b27a['unmap'](),Array['from'](_0x20074d);}finally{_0x2655f9['destroy'](),_0x31e62e['destroy'](),_0x163973['destroy'](),_0x36b27a['destroy']();}}function medianOfTrials(_0x3e98d4){const _0x14bb4d=_0x3e98d4[0x0]['length'],_0x2b9c50=new Array(_0x14bb4d);for(let _0x3e8d43=0x0;_0x3e8d43<_0x14bb4d;_0x3e8d43++){const _0x468d25=_0x3e98d4['map'](_0x938eb=>_0x938eb[_0x3e8d43])['sort']((_0x16dcf2,_0x5e144c)=>_0x16dcf2-_0x5e144c),_0x3fa4ae=Math['floor'](_0x468d25['length']/0x2);_0x2b9c50[_0x3e8d43]=_0x468d25['length']%0x2?_0x468d25[_0x3fa4ae]:(_0x468d25[_0x3fa4ae-0x1]+_0x468d25[_0x3fa4ae])/0x2;}return _0x2b9c50;}function normalize(_0xd29a4a){const _0x4a5af0=_0xd29a4a['reduce']((_0x4698ca,_0x20bb9d)=>_0x4698ca+_0x20bb9d,0x0)||0x1;return _0xd29a4a['map'](_0x466f04=>_0x466f04/_0x4a5af0);}function downsample(_0x1250ba,_0x649cbe){const _0x209601=_0x1250ba['length'],_0x12c24c=new Array(_0x649cbe)['fill'](0x0);for(let _0x499526=0x0;_0x499526<_0x209601;_0x499526++){_0x12c24c[Math['floor'](_0x499526*_0x649cbe/_0x209601)]+=_0x1250ba[_0x499526];}const _0x5df5f3=_0x12c24c['reduce']((_0x303663,_0x1fa7e8)=>_0x303663+_0x1fa7e8,0x0)||0x1;return _0x12c24c['map'](_0x4e603f=>_0x4e603f/_0x5df5f3);}async function getWebRtcDevices(){const _0x59616e=navigator['mediaDevices'];if(typeof navigator==='undefined'||_0x59616e===undefined||typeof _0x59616e['enumerateDevices']!=='function')return undefined;try{const _0x3cec9=await _0x59616e['enumerateDevices']();let _0xad32c3=0x0,_0xb55de9=0x0,_0x495f60=0x0;const _0x18c398=[];for(const _0x453419 of _0x3cec9){_0x18c398['push'](_0x453419['kind']);if(_0x453419['kind']==='audioinput')_0xad32c3++;else{if(_0x453419['kind']==='audiooutput')_0xb55de9++;else _0x495f60++;}}const _0x3f06b1=_0x18c398['join'](',');let _0x54d15f=0x0;for(let _0x975d6c=0x0;_0x975d6c<_0x3f06b1['length'];_0x975d6c++){_0x54d15f=(_0x54d15f<<0x5)-_0x54d15f+_0x3f06b1['charCodeAt'](_0x975d6c)|0x0;}return{'audioInputCount':_0xad32c3,'audioOutputCount':_0xb55de9,'videoInputCount':_0x495f60,'totalCount':_0x3cec9['length'],'kindsHash':(_0x54d15f>>>0x0)['toString'](0x10)};}catch{return undefined;}}function getAncestorOrigins(){try{const _0x3aabf1=window['location'],_0x454f6f=_0x3aabf1['href'],_0x172a4b=_0x3aabf1['ancestorOrigins'];let _0x2ea1d8=null;if(_0x172a4b!==undefined&&_0x172a4b!==null){_0x2ea1d8=[];for(let _0x16e45f=0x0;_0x16e45f<_0x172a4b['length'];_0x16e45f++){const _0x328f4c=_0x172a4b[_0x16e45f];if(typeof _0x328f4c==='string')_0x2ea1d8['push'](_0x328f4c);}}const _0x261bbc={};return _0x261bbc['w']=_0x454f6f,_0x261bbc['l']=_0x454f6f,_0x261bbc['a']=_0x2ea1d8,_0x261bbc;}catch{return null;}}const willPrintConsoleError=isAnyParentCrossOrigin;function getApplePayState(){const {ApplePaySession:_0x503cd3}=window;if(typeof _0x503cd3?.['canMakePayments']!=='function')return null;if(willPrintConsoleError())return null;try{return _0x503cd3['canMakePayments']();}catch(_0x2484f0){if(_0x2484f0 instanceof Error&&_0x2484f0['name']==='InvalidAccessError'&&/\bfrom\b.*\binsecure\b/i['test'](_0x2484f0['message']))return null;throw _0x2484f0;}}async function getBatterySignal(){const _0x3407be=navigator;if(typeof _0x3407be['getBattery']!=='function')return null;try{const _0x4c81e5=await _0x3407be['getBattery']();if(_0x4c81e5===undefined||_0x4c81e5===null)return null;const _0x28237d=_0x4c81e5['chargingTime'],_0x2d52e2=_0x4c81e5['dischargingTime'];return{'level':_0x4c81e5['level'],'charging':_0x4c81e5['charging'],'ct':Number['isFinite'](_0x28237d)?_0x28237d:null,'dt':Number['isFinite'](_0x2d52e2)?_0x2d52e2:null};}catch{return null;}}let table=null;function getTable(){if(table)return table;table=new Uint32Array(0x100);for(let _0x3aea32=0x0;_0x3aea32<0x100;_0x3aea32++){let _0xa04880=_0x3aea32;for(let _0x274331=0x0;_0x274331<0x8;_0x274331++)_0xa04880=_0xa04880&0x1?0xedb88320^_0xa04880>>>0x1:_0xa04880>>>0x1;table[_0x3aea32]=_0xa04880;}return table;}function crc32(_0x52c4f0){const _0x33c376=getTable();let _0x3e9076=0xffffffff;for(let _0x539d3e=0x0;_0x539d3e<_0x52c4f0['length'];_0x539d3e++){_0x3e9076=_0x33c376[(_0x3e9076^_0x52c4f0['charCodeAt'](_0x539d3e))&0xff]^_0x3e9076>>>0x8;}return(_0x3e9076^0xffffffff)>>>0x0;}function summarizePrototype(_0x18e457){const _0x3acede={};_0x3acede['count']=0x0,_0x3acede['hash']=0x0;if(!_0x18e457)return _0x3acede;try{const _0x458c3e=Object['getOwnPropertyNames'](_0x18e457)['sort'](),_0x140678=_0x458c3e['join'](',');return{'count':_0x458c3e['length'],'hash':crc32(_0x140678)};}catch{const _0x34706c={};return _0x34706c['count']=0x0,_0x34706c['hash']=0x0,_0x34706c;}}function isNativeFunction$1(_0x51b786){try{return typeof _0x51b786==='function'&&/\[native code\]/['test'](Function['prototype']['toString']['call'](_0x51b786));}catch{return![];}}function getBomEnumeration(){try{const _0x6599e7=summarizePrototype(Navigator['prototype']),_0x22d88b=summarizePrototype(Screen['prototype']),_0xff6fcd=summarizePrototype(HTMLElement['prototype']),_0x6a82a3=summarizePrototype(Document['prototype']),_0x2ac251={};_0x2ac251['count']=0x0,_0x2ac251['hash']=0x0;let _0x382de0=_0x2ac251;typeof Performance!=='undefined'&&(_0x382de0=summarizePrototype(Performance['prototype']));const _0x326824=_0x6599e7['count']+_0x22d88b['count']+_0xff6fcd['count']+_0x6a82a3['count']+_0x382de0['count'],_0x30cee7=window,_0x2de51a='chrome'in window&&typeof _0x30cee7['chrome']==='object',_0x172999=typeof navigator['brave']==='object',_0x4942d7='__playwright'in _0x30cee7||'__selenium_unwrapped'in _0x30cee7||'__webdriver_evaluate'in _0x30cee7||'__nightmare'in _0x30cee7||'_phantom'in _0x30cee7||'__lastWatirAlert'in _0x30cee7;let _0xf4f091=!![];try{const _0x4f043b=navigator['plugins'];_0xf4f091=_0x4f043b['length']===PluginArray['prototype']['length']||Object['getOwnPropertyNames'](PluginArray['prototype'])['includes']('length');}catch{_0xf4f091=![];}let _0x3bc6af=!![];try{const _0x65eebf=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');if(!_0x65eebf)_0x3bc6af=![];else{if('value'in _0x65eebf)_0x3bc6af=![];else _0x65eebf['get']?_0x3bc6af=isNativeFunction$1(_0x65eebf['get']):_0x3bc6af=![];}}catch{_0x3bc6af=![];}const _0x53bec1=typeof SharedWorker!=='undefined',_0x5dbf8c=typeof Notification!=='undefined',_0x38c1ae={};_0x38c1ae['hasChrome']=_0x2de51a,_0x38c1ae['hasBraveShield']=_0x172999,_0x38c1ae['hasAutomation']=_0x4942d7,_0x38c1ae['pluginConsistent']=_0xf4f091,_0x38c1ae['webdriverNative']=_0x3bc6af,_0x38c1ae['hasSharedWorker']=_0x53bec1,_0x38c1ae['hasNotification']=_0x5dbf8c;const _0x4f3ebc={};return _0x4f3ebc['nav']=_0x6599e7,_0x4f3ebc['scr']=_0x22d88b,_0x4f3ebc['html']=_0xff6fcd,_0x4f3ebc['doc']=_0x6a82a3,_0x4f3ebc['perf']=_0x382de0,_0x4f3ebc['total']=_0x326824,_0x4f3ebc['markers']=_0x38c1ae,_0x4f3ebc;}catch{return null;}}function getColorDepth(){return window['screen']['colorDepth'];}function getColorScheme(){if(matchMedia('(prefers-color-scheme:\x20dark)')['matches'])return!![];if(matchMedia('(prefers-color-scheme:\x20light)')['matches'])return![];return null;}function getConnectionExtended(){if(typeof navigator==='undefined')return null;const _0x5e3b58=navigator['connection'];if(_0x5e3b58===undefined||_0x5e3b58===null)return null;const _0x12241f=typeof _0x5e3b58['downlink']==='number'?_0x5e3b58['downlink']:0x0,_0x326f8d=Math['round'](_0x12241f*0xa)/0xa|0x0,_0x2b7979=_0x5e3b58['metered']===!![],_0x4c4bd7={};return _0x4c4bd7['downlink']=_0x326f8d,_0x4c4bd7['metered']=_0x2b7979,_0x4c4bd7;}function getConnectionInfo(){try{const _0xe321cb=navigator['connection'];if(!_0xe321cb)return null;const _0x504aff=Object['getOwnPropertyDescriptor'](_0xe321cb,Symbol['toStringTag']);if(_0x504aff?.['configurable']===!![])return!![];for(let _0x323e03=0x0;_0x323e03<_0xe321cb['length'];_0x323e03++){const _0x3b7b33=Object['getOwnPropertyDescriptor'](_0xe321cb,_0x323e03);if(_0x3b7b33!==undefined&&(_0x3b7b33['configurable']===!![]||_0x3b7b33['enumerable']===!![]))return!![];}return![];}catch{return null;}}function getConnectionSaveData(){if(typeof navigator==='undefined')return null;const _0x38ef5f=navigator['connection'];if(_0x38ef5f===undefined||_0x38ef5f===null)return null;return _0x38ef5f['saveData']===!![];}const PROBE_VALUE='calc(0.207912px)';function getCssCalcResolved(){if(typeof document==='undefined')return null;const _0x1aae72=document['createElement']('div');_0x1aae72['style']['cssText']='width:'+PROBE_VALUE+';position:absolute;left:-9999px',document['body']['appendChild'](_0x1aae72);let _0x5b9b42;try{_0x5b9b42=getComputedStyle(_0x1aae72)['width'];}finally{_0x1aae72['remove']();}return _0x5b9b42['startsWith']('0')||_0x5b9b42['startsWith']('calc')?PROBE_VALUE:_0x5b9b42;}function getCssRegisterProperty(){if(typeof window==='undefined')return null;const _0x432ad2=window['CSS'];if(_0x432ad2===undefined||_0x432ad2===null)return![];return typeof _0x432ad2['registerProperty']==='function';}function getContrastPreference(){if(doesMatch$4('no-preference'))return 0x0;if(doesMatch$4('high')||doesMatch$4('more'))return 0x1;if(doesMatch$4('low')||doesMatch$4('less'))return-0x1;if(doesMatch$4('forced'))return 0xa;return undefined;}function doesMatch$4(_0x341130){return matchMedia('(prefers-contrast:\x20'+_0x341130+')')['matches'];}function areCookiesEnabled(){const _0x5989eb=document;try{_0x5989eb['cookie']='cookietest=1;\x20SameSite=Strict;';const _0x528908=_0x5989eb['cookie']['indexOf']('cookietest=')!==-0x1;return _0x5989eb['cookie']='cookietest=1;\x20SameSite=Strict;\x20expires=Thu,\x2001-Jan-1970\x2000:00:01\x20GMT',_0x528908;}catch{return![];}}function getCssSupports(){if(typeof CSS==='undefined')return null;return CSS['supports']('backdrop-filter','blur(2px)');}function getDateTimeLocale(){const _0x5e1cad=window['Intl'];if(_0x5e1cad===undefined)return-0x1;const _0x34c24d=_0x5e1cad['DateTimeFormat'];if(_0x34c24d===undefined)return-0x2;const _0x13c911=_0x34c24d()['resolvedOptions']()['locale'];if(!_0x13c911&&_0x13c911!=='')return-0x3;return _0x13c911;}function getDeviceMemory(){return replaceNaN(toFloat(navigator['deviceMemory']),undefined);}function getDevicePixelRatio(){const _0x5cc2d3=window['devicePixelRatio'];return _0x5cc2d3??null;}function getDoNotTrack(){const _0x389c6e=navigator['doNotTrack'];return _0x389c6e??null;}function getEpochTimestamp(){return Math['floor'](Date['now']()/0x3e8);}function getDocumentAttributes(){try{return document['documentElement']['getAttributeNames']();}catch{return[];}}function getDocumentFocus(){try{return document['hasFocus']();}catch{return![];}}async function getFileSystemAccess(){try{const _0x5a7330=navigator['storage'];if(_0x5a7330===undefined||typeof _0x5a7330['getDirectory']!=='function')return undefined;return await _0x5a7330['getDirectory'](),!![];}catch{return![];}}const PROBE_FILENAME='default.ini',PROBE_TIMEOUT_MS$2=0xc8;function fsProbe(_0x45a470){return new Promise(_0x47a20f=>{const _0x4d4a17=new Image();let _0x11b013=![];const _0x4c6a71=_0x2b782b=>{if(_0x11b013)return;_0x11b013=!![];const _0x1fa5d2={};_0x1fa5d2['n']=_0x45a470,_0x1fa5d2['l']=_0x2b782b,_0x47a20f(_0x1fa5d2);};_0x4d4a17['onload']=()=>_0x4c6a71(_0x4d4a17['naturalWidth']|0x0),_0x4d4a17['onerror']=()=>_0x4c6a71(-0x1),_0x4d4a17['src']='file:///'+_0x45a470+'?_='+Date['now'](),setTimeout(()=>_0x4c6a71(-0x1),PROBE_TIMEOUT_MS$2);});}function getFilesystemUrlProbe(){if(typeof window==='undefined'||typeof Image!=='function')return null;if(typeof location!=='undefined'){const _0x16025d=location['protocol'];if(_0x16025d==='http:'||_0x16025d==='https:')return null;}return async()=>{const _0x18be07=await fsProbe(PROBE_FILENAME);return[_0x18be07];};}const POSITION_TIMEOUT_MS=0x2710;function getGeolocationProbe(){if(typeof navigator==='undefined')return null;const _0x25a9bf=navigator['geolocation'];if(_0x25a9bf===undefined||_0x25a9bf===null)return null;const _0x44295c=navigator['permissions'];if(!_0x44295c||typeof _0x44295c['query']!=='function')return null;const _0x5d456c=_0x44295c['query'];return async()=>{let _0x25ae1b;try{const _0x399627={};_0x399627['name']='geolocation',_0x25ae1b=(await _0x5d456c['call'](_0x44295c,_0x399627))['state'];}catch{return null;}const _0x211f9c={};_0x211f9c['state']='prompt';if(_0x25ae1b==='prompt')return _0x211f9c;const _0x28bcde={};_0x28bcde['state']='denied';if(_0x25ae1b==='denied')return _0x28bcde;if(_0x25ae1b!=='granted')return null;return new Promise(_0x5413f2=>{const _0x30ecf8={};_0x30ecf8['enableHighAccuracy']=!![],_0x30ecf8['timeout']=POSITION_TIMEOUT_MS,_0x30ecf8['maximumAge']=0x0,_0x25a9bf['getCurrentPosition'](_0x11e948=>{const _0x321b36=_0x11e948['coords'],_0x3c23e3={};_0x3c23e3['la']=_0x321b36['latitude'],_0x3c23e3['lo']=_0x321b36['longitude'],_0x3c23e3['al']=_0x321b36['altitude'],_0x3c23e3['ac']=_0x321b36['accuracy'],_0x3c23e3['alac']=_0x321b36['altitudeAccuracy'],_0x3c23e3['h']=_0x321b36['heading'],_0x3c23e3['s']=_0x321b36['speed'],_0x3c23e3['t']=_0x11e948['timestamp'],_0x5413f2(_0x3c23e3);},_0x4a3088=>{const _0x8da0b4={};_0x8da0b4['state']='denied';const _0x260de1={};_0x260de1['state']='timeout';const _0x3626c3={};_0x3626c3['state']='unavailable';if(_0x4a3088['code']===0x1)_0x5413f2(_0x8da0b4);else{if(_0x4a3088['code']===0x3)_0x5413f2(_0x260de1);else _0x5413f2(_0x3626c3);}},_0x30ecf8);});};}function areColorsForced(){if(doesMatch$3('active'))return!![];if(doesMatch$3('none'))return![];return undefined;}function doesMatch$3(_0x1c8cc7){return matchMedia('(forced-colors:\x20'+_0x1c8cc7+')')['matches'];}async function getFormControlFont(){if(!isGecko())return undefined;return getIframePool()['execute']((_0x4eb11a,_0x10d700)=>{const _0x2ae29d=_0x10d700['document'],_0x7afce1=_0x2ae29d['createElement']('input');_0x7afce1['type']='radio',_0x2ae29d['body']['appendChild'](_0x7afce1);const _0x30f2dd=_0x10d700['getComputedStyle'](_0x7afce1)['getPropertyValue']('font-family');return _0x2ae29d['body']['removeChild'](_0x7afce1),_0x30f2dd||undefined;});}function getHardwareConcurrency(){const _0x28730d=getUnstableHardwareConcurrency();if(_0x28730d!==undefined&&isGecko()&&isGecko143OrNewer())return _0x28730d>=0x8?0x8:0x4;return _0x28730d;}function getUnstableHardwareConcurrency(){return replaceNaN(toInt(navigator['hardwareConcurrency']),undefined);}function isHDR(){if(doesMatch$2('high'))return!![];if(doesMatch$2('standard'))return![];return undefined;}function doesMatch$2(_0x48d7e2){return matchMedia('(dynamic-range:\x20'+_0x48d7e2+')')['matches'];}async function getIncognitoDetection(){try{if(typeof navigator==='undefined')return null;return await new Promise((_0x13a1b3,_0x495a57)=>{let _0x5d616b='Unknown',_0xa88a86=![];const _0x22cb31=_0x193a2f=>{if(_0xa88a86)return;_0xa88a86=!![];const _0x5bda05={};_0x5bda05['isPrivate']=_0x193a2f,_0x5bda05['browserName']=_0x5d616b,_0x13a1b3(_0x5bda05);},_0x429ff7=()=>{const _0x58a376=navigator['userAgent'];if(_0x58a376['match'](/Chrome/)){if(navigator['brave']!==undefined)return'Brave';if(_0x58a376['match'](/Edg/))return'Edge';if(_0x58a376['match'](/OPR/))return'Opera';return'Chrome';}return'Chromium';},_0x177346=async()=>{try{const _0xbbe3b2=navigator['storage'];await _0xbbe3b2['getDirectory'](),_0x22cb31(![]);}catch(_0x5a02e8){const _0x3184db=_0x5a02e8 instanceof Error&&typeof _0x5a02e8['message']==='string'?_0x5a02e8['message']:String(_0x5a02e8);_0x22cb31(_0x3184db['includes']('unknown\x20transient\x20reason'));}},_0x10f487=()=>{const _0x3d03a5=String(Math['random']());try{const _0xc90fc3=indexedDB['open'](_0x3d03a5,0x1);_0xc90fc3['onupgradeneeded']=_0x3fb58e=>{const _0x1f0340=_0x3fb58e['target']['result'],_0x5a163f=_0x4f8240=>{_0x22cb31(_0x4f8240);};try{const _0x4c8e1a={};_0x4c8e1a['autoIncrement']=!![],_0x1f0340['createObjectStore']('t',_0x4c8e1a)['put'](new Blob()),_0x5a163f(![]);}catch(_0x53a186){const _0x4b1067=_0x53a186 instanceof Error&&typeof _0x53a186['message']==='string'?_0x53a186['message']:String(_0x53a186);if(_0x4b1067['includes']('are\x20not\x20yet\x20supported'))_0x5a163f(!![]);else _0x5a163f(![]);}finally{_0x1f0340['close'](),indexedDB['deleteDatabase'](_0x3d03a5);}},_0xc90fc3['onerror']=()=>_0x22cb31(![]);}catch{_0x22cb31(![]);}},_0x55402a=()=>{const _0x3922aa=window['openDatabase'],_0x57445a=window['localStorage'];try{_0x3922aa(null,null,null,null);}catch{_0x22cb31(!![]);return;}try{_0x57445a['setItem']('test','1'),_0x57445a['removeItem']('test');}catch{_0x22cb31(!![]);return;}_0x22cb31(![]);},_0x329638=async()=>{const _0x3109b0=navigator['storage'];if(typeof _0x3109b0?.['getDirectory']==='function')await _0x177346();else navigator['maxTouchPoints']!==undefined?_0x10f487():_0x55402a();},_0x5d14c2=()=>{const _0x1baf7c=window;return _0x1baf7c['performance']?.['memory']?.['jsHeapSizeLimit']??0x40000000;},_0x56f236=()=>{const _0x577e1f=navigator['webkitTemporaryStorage'];_0x577e1f['queryUsageAndQuota']((_0x15a226,_0x16044b)=>{const _0x34c6d0=Math['round'](_0x16044b/(0x400*0x400)),_0x1d79fe=Math['round'](_0x5d14c2()/(0x400*0x400))*0x2;_0x22cb31(_0x34c6d0<_0x1d79fe);},_0x4fe97f=>_0x495a57(new Error('detectIncognito\x20somehow\x20failed\x20to\x20query\x20storage\x20quota:\x20'+_0x4fe97f['message'])));},_0x5a8ec2=()=>{const _0x6ad9cb=window['webkitRequestFileSystem'];_0x6ad9cb(0x0,0x1,()=>_0x22cb31(![]),()=>_0x22cb31(!![]));},_0x4a6885=()=>{self['Promise']!==undefined&&self['Promise']['allSettled']!==undefined?_0x56f236():_0x5a8ec2();},_0x1d3b44=async()=>{const _0x2be3e8=navigator['storage'];if(typeof _0x2be3e8?.['getDirectory']==='function'){try{await _0x2be3e8['getDirectory'](),_0x22cb31(![]);}catch(_0x2fc0dd){const _0x4555f4=_0x2fc0dd instanceof Error&&typeof _0x2fc0dd['message']==='string'?_0x2fc0dd['message']:String(_0x2fc0dd);_0x22cb31(_0x4555f4['includes']('Security\x20error'));}return;}const _0x308781=indexedDB['open']('inPrivate');_0x308781['onerror']=_0x47dee8=>{_0x308781['error']!==null&&_0x308781['error']['name']==='InvalidStateError'&&_0x47dee8['preventDefault'](),_0x22cb31(!![]);},_0x308781['onsuccess']=()=>{indexedDB['deleteDatabase']('inPrivate'),_0x22cb31(![]);};},_0x3c9283=()=>{_0x22cb31(window['indexedDB']===undefined);},_0x3a6023=async()=>{if(isSafariWebKit())_0x5d616b='Safari',await _0x329638();else{if(isChromium())_0x5d616b=_0x429ff7(),_0x4a6885();else{if(isGecko())_0x5d616b='Firefox',await _0x1d3b44();else isTrident()||navigator['msSaveBlob']!==undefined?(_0x5d616b='Internet\x20Explorer',_0x3c9283()):_0x495a57(new Error('detectIncognito\x20cannot\x20determine\x20the\x20browser'));}}};_0x3a6023()['catch'](_0x495a57);});}catch{return null;}}const PROBE_TIMEOUT_MS$1=0x3e8;function getInstalledRelatedApps(){if(typeof navigator==='undefined')return null;const _0x13bb68=navigator['getInstalledRelatedApps'];if(typeof _0x13bb68!=='function')return null;return async()=>{const _0x5405c1=((async()=>{try{const _0x1e2a12=await _0x13bb68['call'](navigator);if(!Array['isArray'](_0x1e2a12)||_0x1e2a12['length']===0x0)return null;return _0x1e2a12['length'];}catch{return null;}})()),_0xfe0e89=new Promise(_0x5b0108=>setTimeout(()=>_0x5b0108(null),PROBE_TIMEOUT_MS$1));return Promise['race']([_0x5405c1,_0xfe0e89]);};}function getIndexedDB(){try{return window['indexedDB']!==undefined;}catch{return!![];}}async function getIndexedDbBlob(){if(typeof indexedDB==='undefined')return null;try{const _0x4ef83a=await Promise['race']([new Promise(_0x54247a=>{try{const _0x2544bf='mw_blob_test',_0x15fb5a='store',_0x3a0b60=indexedDB['deleteDatabase'](_0x2544bf);_0x3a0b60['onsuccess']=_0x57a5aa,_0x3a0b60['onerror']=_0x57a5aa;function _0x57a5aa(){try{const _0x1d6ffb=indexedDB['open'](_0x2544bf,0x1);_0x1d6ffb['onupgradeneeded']=()=>{try{_0x1d6ffb['result']['createObjectStore'](_0x15fb5a);}catch{_0x54247a(null);}},_0x1d6ffb['onsuccess']=()=>{try{const _0x3f2514=_0x1d6ffb['result'],_0x1613cf=_0x3f2514['transaction'](_0x15fb5a,'readwrite'),_0x3d5e34=_0x1613cf['objectStore'](_0x15fb5a);try{const _0x48ca3b=_0x3d5e34['put'](new Blob(['test']),'blob_key');_0x48ca3b['onsuccess']=()=>{_0x3f2514['close']();try{indexedDB['deleteDatabase'](_0x2544bf);}catch{}_0x54247a(![]);},_0x48ca3b['onerror']=()=>{_0x3f2514['close']();try{indexedDB['deleteDatabase'](_0x2544bf);}catch{}const _0x54fbb1=_0x48ca3b['error']?.['message']??'';_0x54247a(_0x54fbb1['includes']('not\x20yet\x20supported')||_0x54fbb1['includes']('not\x20supported'));};}catch(_0x504c84){_0x3f2514['close']();try{indexedDB['deleteDatabase'](_0x2544bf);}catch{}if(_0x504c84 instanceof DOMException){const _0x329ad3=_0x504c84['message'];_0x54247a(_0x329ad3['includes']('not\x20yet\x20supported')||_0x329ad3['includes']('not\x20supported'));}else _0x54247a(null);}}catch{_0x54247a(null);}},_0x1d6ffb['onerror']=()=>{_0x54247a(null);};}catch{_0x54247a(null);}}}catch{_0x54247a(null);}}),new Promise(_0x4b0126=>setTimeout(()=>_0x4b0126(null),0x3e8))]);return _0x4ef83a;}catch{return null;}}function areColorsInverted(){if(doesMatch$1('inverted'))return!![];if(doesMatch$1('none'))return![];return undefined;}function doesMatch$1(_0x540e71){return matchMedia('(inverted-colors:\x20'+_0x540e71+')')['matches'];}function getLanguages(){const _0x4ec526=navigator,_0x583374=[],_0x30c070=_0x4ec526['language']??_0x4ec526['userLanguage']??_0x4ec526['browserLanguage']??_0x4ec526['systemLanguage'];_0x30c070!==undefined&&_0x583374['push']([_0x30c070]);if(Array['isArray'](_0x4ec526['languages']))!(isChromium()&&isChromium86OrNewer())&&_0x583374['push'](_0x4ec526['languages']);else{if(typeof _0x4ec526['languages']==='string'){const _0x3cab68=_0x4ec526['languages'];_0x3cab68!==''&&_0x583374['push'](_0x3cab68['split'](','));}}return _0x583374;}function getLocalStorage(){try{return window['localStorage']!==undefined;}catch{return!![];}}function getIntlCurrency(){try{const _0xf11c62=window['Intl'],_0x549325=_0xf11c62?.['NumberFormat'];if(_0x549325===undefined)return null;try{const _0x19cc56={};_0x19cc56['style']='currency';const _0x46f781=new _0x549325(undefined,_0x19cc56),_0x31134f=_0x46f781['resolvedOptions']();if(typeof _0x31134f['currency']==='string'&&_0x31134f['currency']['length']===0x3)return _0x31134f['currency']['toUpperCase']();}catch{}return null;}catch{return null;}}function getIntlMetadata(){try{const _0x14fc00=window['Intl'],_0xc31b61=_0x14fc00?.['DateTimeFormat'];if(_0xc31b61===undefined){const _0x56335f={};return _0x56335f['hourCycle']=null,_0x56335f['numberingSystem']=null,_0x56335f['calendar']=null,_0x56335f;}const _0x1bcab3=new _0xc31b61()['resolvedOptions'](),_0x2d98aa={};return _0x2d98aa['hourCycle']=typeof _0x1bcab3['hourCycle']==='string'?_0x1bcab3['hourCycle']:null,_0x2d98aa['numberingSystem']=typeof _0x1bcab3['numberingSystem']==='string'?_0x1bcab3['numberingSystem']:null,_0x2d98aa['calendar']=typeof _0x1bcab3['calendar']==='string'?_0x1bcab3['calendar']:null,_0x2d98aa;}catch{const _0x145a6d={};return _0x145a6d['hourCycle']=null,_0x145a6d['numberingSystem']=null,_0x145a6d['calendar']=null,_0x145a6d;}}function getLocaleCurrency(){try{const _0x474728=navigator['language'];if(!_0x474728)return null;const _0x5df2cc={};_0x5df2cc['style']='currency',_0x5df2cc['currency']='USD';const _0x4e41e1=0x1['toLocaleString'](_0x474728,_0x5df2cc),_0x11dd63={};_0x11dd63['style']='currency',_0x11dd63['currency']='USD';const _0x47447f=0x1['toLocaleString'](undefined,_0x11dd63),_0x20626b={};return _0x20626b['match']=_0x4e41e1===_0x47447f,_0x20626b['explicit']=_0x4e41e1,_0x20626b['implicit']=_0x47447f,_0x20626b;}catch{return null;}}const _0x207076={};_0x207076['any-hover']=['hover','none'],_0x207076['any-pointer']=['none','coarse','fine'],_0x207076['pointer']=['none','coarse','fine'],_0x207076['hover']=['hover','none'],_0x207076['update']=['fast','slow'],_0x207076['scripting']=['none','initial-only','enabled'];const queries=_0x207076;function getMediaQueries(){if(typeof matchMedia==='undefined')return{};const _0x191a39={};for(const [_0x3f5352,_0x439e9a]of Object['entries'](queries)){for(const _0x493587 of _0x439e9a){if(matchMedia('('+_0x3f5352+':\x20'+_0x493587+')')['matches']){_0x191a39[_0x3f5352]=_0x493587;break;}}}return _0x191a39;}function getMediaSession(){try{const _0x86609e=navigator['mediaSession'];if(_0x86609e===undefined||_0x86609e===null)return null;let _0x4c805d=null;if(_0x86609e['metadata']!==null&&_0x86609e['metadata']!==undefined){const _0x3a1b66=_0x86609e['metadata']['artwork'],_0x5b2308=Array['isArray'](_0x3a1b66)?_0x3a1b66['length']:0x0,_0x3184ba={};_0x3184ba['artworkCount']=_0x5b2308,_0x4c805d=_0x3184ba;}const _0x184303={};return _0x184303['metadata']=_0x4c805d,_0x184303['playbackState']=typeof _0x86609e['playbackState']==='string'?_0x86609e['playbackState']:'none',_0x184303['hasSetActionHandler']=typeof _0x86609e['setActionHandler']==='function',_0x184303;}catch{return null;}}function getMimeTypes(){try{const _0x139db0=navigator['mimeTypes'];if(_0x139db0===undefined)return undefined;let _0x24a497=Object['getPrototypeOf'](_0x139db0)===MimeTypeArray['prototype'];for(let _0x309619=0x0;_0x309619<_0x139db0['length'];_0x309619++){_0x24a497&&(_0x24a497=Object['getPrototypeOf'](_0x139db0[_0x309619])===MimeType['prototype']);}return _0x24a497;}catch{return undefined;}}function getMimeTypesCount(){if(typeof navigator==='undefined')return null;const _0x24e2e9=navigator['mimeTypes'];return _0x24e2e9?.['length']??0x0;}function getNavigatorLanguages(){const _0x18e2f0=navigator['languages'];return _0x18e2f0??null;}function getNavigatorOnline(){if(typeof navigator==='undefined')return null;return navigator['onLine']===!![];}const PROBE_TIMEOUT_MS=0xfa,STUN_URL='stun:stun.l.google.com:19302',PROBE_DATA_CHANNEL_LABEL='';function getRTCConstructor(){if(typeof window==='undefined')return null;const _0x2a2aca=window['RTCPeerConnection'];if(typeof _0x2a2aca!=='function')return null;return _0x2a2aca;}function getNetworkIceProbe(){const _0x3eb938=getRTCConstructor();if(_0x3eb938===null)return null;return()=>new Promise(_0x3635f4=>{let _0xa31588=null,_0x515409=![],_0xcfa4a6=null;const _0x1d67ec=_0x7a8ba6=>{if(_0x515409)return;_0x515409=!![];if(_0xcfa4a6!==null)clearTimeout(_0xcfa4a6);if(_0xa31588!==null)try{_0xa31588['close']();}catch{}_0x3635f4(_0x7a8ba6);};try{const _0x8e4a5e={};_0x8e4a5e['urls']=STUN_URL;const _0x4cee9e={};_0x4cee9e['iceServers']=[_0x8e4a5e],_0xa31588=new _0x3eb938(_0x4cee9e),_0xa31588['createDataChannel'](PROBE_DATA_CHANNEL_LABEL),_0xa31588['onicecandidate']=_0x113746=>{if(_0x113746['candidate']===null)_0x1d67ec(!![]);},_0xa31588['onicecandidateerror']=()=>_0x1d67ec(![]),_0xa31588['createOffer']()['then'](_0x5e5256=>{if(_0x515409||_0xa31588===null)return;return _0xa31588['setLocalDescription'](_0x5e5256);})['catch'](()=>_0x1d67ec(![])),_0xcfa4a6=setTimeout(()=>_0x1d67ec(![]),PROBE_TIMEOUT_MS);}catch{_0x1d67ec(![]);}});}function getNetworkRTT(){const _0x2757b8=navigator;return _0x2757b8['connection']?.['rtt']??null;}function getNotificationPresence(){return typeof window['Notification']!=='undefined';}function getOsCpu(){if(typeof navigator==='undefined')return null;const _0x56eccd=navigator['oscpu'];return _0x56eccd??null;}function getPageUrl(){try{if(typeof window==='undefined')return null;const _0x3dedc2={};return _0x3dedc2['l']=window['location']['href'],_0x3dedc2['f']='',[_0x3dedc2];}catch{return null;}}function isPdfViewerEnabled(){return navigator['pdfViewerEnabled'];}function getPerformanceMemory(){if(typeof performance==='undefined')return undefined;const _0x385f8c=performance['memory'];if(_0x385f8c===undefined||typeof _0x385f8c['jsHeapSizeLimit']!=='number')return undefined;return _0x385f8c['jsHeapSizeLimit'];}function getPerformanceNowMicroseconds(){if(typeof performance==='undefined'||typeof performance['now']!=='function')return null;return Math['floor'](performance['now']()*0x3e8);}function getPerformanceResolution(){const _0xad94b6=window['performance'];if(typeof _0xad94b6['now']!=='function')return null;let _0xbec4dc=0x1,_0x602fd6=0x1,_0x1dd4f9=_0xad94b6['now'](),_0x57ba00=_0x1dd4f9;for(let _0x2ab62f=0x0;_0x2ab62f<0xc350;_0x2ab62f++){_0x1dd4f9=_0x57ba00,_0x57ba00=_0xad94b6['now']();if(_0x1dd4f9<_0x57ba00){const _0xb31204=_0x57ba00-_0x1dd4f9;if(_0xb31204>_0xbec4dc){if(_0xb31204<_0x602fd6)_0x602fd6=_0xb31204;}else _0xb31204<_0xbec4dc&&(_0x602fd6=_0xbec4dc,_0xbec4dc=_0xb31204);}}return[_0xbec4dc,_0x602fd6];}const permissionNames=['accelerometer','ambient-light-sensor','background-fetch','background-sync','bluetooth','camera','clipboard-read','clipboard-write','display-capture','geolocation','gyroscope','local-fonts','magnetometer','microphone','midi','nfc','notifications','payment-handler','persistent-storage','push','screen-wake-lock','speaker-selection','storage-access','window-management'];async function getPermissions(){if(!('permissions'in navigator)||typeof navigator['permissions']['query']!=='function')return{};const _0x2d4f0b=0x3,_0xc9320b=[];for(let _0x4ee7b8=0x0;_0x4ee7b8<_0x2d4f0b;_0x4ee7b8++){const _0x1429d6={},_0x558854=permissionNames['map'](async _0x202080=>{try{const _0x3838cb={};_0x3838cb['name']=_0x202080;const _0x5f2814=await navigator['permissions']['query'](_0x3838cb);_0x1429d6[_0x202080]=_0x5f2814['state'];}catch{}});await Promise['all'](_0x558854),_0xc9320b['push'](_0x1429d6);}const _0x5ccb82={},_0x1fb36e=new Set(_0xc9320b['flatMap'](_0x4a93c6=>Object['keys'](_0x4a93c6)));for(const _0x1dee38 of _0x1fb36e){const _0x3b9fd7={};for(const _0x493948 of _0xc9320b){const _0xc3ab0c=_0x493948[_0x1dee38];_0xc3ab0c&&(_0x3b9fd7[_0xc3ab0c]=(_0x3b9fd7[_0xc3ab0c]||0x0)+0x1);}let _0x3db17d='',_0xd8c889=0x0;for(const [_0x3837b1,_0x15cb6d]of Object['entries'](_0x3b9fd7)){_0x15cb6d>_0xd8c889&&(_0x3db17d=_0x3837b1,_0xd8c889=_0x15cb6d);}_0x3db17d&&(_0x5ccb82[_0x1dee38]=_0x3db17d);}return _0x5ccb82;}function getPlatform(){const {platform:_0x24bb81}=navigator;if(_0x24bb81==='MacIntel'){if(isWebKit()&&!isDesktopWebKit())return isIPad()?'iPad':'iPhone';}return _0x24bb81;}function getPluginPropsEnum(){if(!('plugins'in navigator))return undefined;const _0x47696d=navigator['plugins'];let _0x4defab=Object['getPrototypeOf'](_0x47696d)===PluginArray['prototype'];for(let _0x42445e=0x0;_0x42445e<_0x47696d['length'];_0x42445e++){_0x4defab&&(_0x4defab=Object['getPrototypeOf'](_0x47696d[_0x42445e])===Plugin['prototype']);}return _0x4defab;}function getPlugins(){if(!('plugins'in navigator))return undefined;const _0x8cd5e3=navigator['plugins'],_0x2974be=[];for(let _0x2cd201=0x0;_0x2cd201<_0x8cd5e3['length'];++_0x2cd201){const _0x22e6c2=_0x8cd5e3['item'](_0x2cd201);if(_0x22e6c2===null)continue;const _0x517e09=[];for(let _0x3be81e=0x0;_0x3be81e<_0x22e6c2['length'];++_0x3be81e){const _0x129320=_0x22e6c2[_0x3be81e],_0x1ae4b7={};_0x1ae4b7['type']=_0x129320['type'],_0x1ae4b7['suffixes']=_0x129320['suffixes'],_0x517e09['push'](_0x1ae4b7);}const _0x3973d7={};_0x3973d7['name']=_0x22e6c2['name'],_0x3973d7['description']=_0x22e6c2['description'],_0x3973d7['mimeTypes']=_0x517e09,_0x2974be['push'](_0x3973d7);}return _0x2974be;}function getPluginsArray(){try{if(!('plugins'in navigator))return null;if(typeof PluginArray==='undefined')return null;return navigator['plugins']instanceof PluginArray;}catch{return null;}}function getPluginsCount(){if(!('plugins'in navigator))throw new Error('navigator.plugins\x20is\x20undefined');const _0x1a1c90=navigator['plugins'];if(typeof _0x1a1c90['length']!=='number')throw new Error('navigator.plugins.length\x20is\x20undefined');return _0x1a1c90['length'];}function getProductSub(){if(!('productSub'in navigator))throw new Error('navigator.productSub\x20is\x20undefined');return navigator['productSub'];}function isMotionReduced(){if(doesMatch('reduce'))return!![];if(doesMatch('no-preference'))return![];return undefined;}function doesMatch(_0x40cbd7){return matchMedia('(prefers-reduced-motion:\x20'+_0x40cbd7+')')['matches'];}function getReducedTransparency(){if(typeof matchMedia!=='function')return null;if(matchMedia('(prefers-reduced-transparency:\x20reduce)')['matches'])return!![];if(matchMedia('(prefers-reduced-transparency:\x20no-preference)')['matches'])return![];return undefined;}const screenFrameCheckInterval=0x9c4,roundingPrecision=0xa,MAX_FRAME_POLL_ATTEMPTS=0x1e;let screenFrameBackup,screenFrameSizeTimeoutId,screenFrameAttempts=0x0;function watchScreenFrame(){if(screenFrameSizeTimeoutId!==undefined)return;const _0x1638c8=()=>{const _0xb1149a=getCurrentScreenFrame();if(isFrameSizeNull(_0xb1149a)){screenFrameAttempts+=0x1;if(screenFrameAttempts>=MAX_FRAME_POLL_ATTEMPTS){screenFrameSizeTimeoutId=undefined;return;}screenFrameSizeTimeoutId=setTimeout(_0x1638c8,screenFrameCheckInterval);}else screenFrameBackup=_0xb1149a,screenFrameSizeTimeoutId=undefined;};_0x1638c8();}function getUnstableScreenFrame(){return watchScreenFrame(),async()=>{let _0x109126=getCurrentScreenFrame();if(isFrameSizeNull(_0x109126)){if(screenFrameBackup)return[...screenFrameBackup];getFullscreenElement()&&(await exitFullscreen(),_0x109126=getCurrentScreenFrame());}return!isFrameSizeNull(_0x109126)&&(screenFrameBackup=_0x109126),_0x109126;};}function getScreenFrame(){const _0x144bbb=isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit(),_0x41bd5f=isGecko()&&isGecko143OrNewer();if(_0x144bbb||_0x41bd5f)return()=>Promise['resolve'](undefined);const _0x396649=getUnstableScreenFrame();return async()=>{const _0x32bf8c=await _0x396649(),_0x90d89=_0x90d314=>_0x90d314===null?null:round$1(_0x90d314,roundingPrecision);return[_0x90d89(_0x32bf8c[0x0]),_0x90d89(_0x32bf8c[0x1]),_0x90d89(_0x32bf8c[0x2]),_0x90d89(_0x32bf8c[0x3])];};}function getCurrentScreenFrame(){const _0x14490b=screen;return[replaceNaN(toFloat(_0x14490b['availTop']),null),replaceNaN(toFloat(_0x14490b['width'])-toFloat(_0x14490b['availWidth'])-replaceNaN(toFloat(_0x14490b['availLeft']),0x0),null),replaceNaN(toFloat(_0x14490b['height'])-toFloat(_0x14490b['availHeight'])-replaceNaN(toFloat(_0x14490b['availTop']),0x0),null),replaceNaN(toFloat(_0x14490b['availLeft']),null)];}function isFrameSizeNull(_0x34c337){for(let _0x45d655=0x0;_0x45d655<0x4;++_0x45d655){if(_0x34c337[_0x45d655]!==null&&_0x34c337[_0x45d655]!==0x0)return![];}return!![];}async function getScreenIframe(){try{return await getIframePool()['execute']((_0x55e930,_0xdbb743)=>{const _0x50cbed=_0xdbb743['screen'],_0x2fd93a=_0x334153=>{const _0x91d3dc=parseInt(_0x334153);return typeof _0x91d3dc==='number'&&isNaN(_0x91d3dc)?-0x1:_0x91d3dc;};return{'w':_0x2fd93a(_0x50cbed['width']),'h':_0x2fd93a(_0x50cbed['height'])};});}catch{return null;}}function getScreenResolution(){if(isWebKit()&&isWebKit616OrNewer()&&isSafariWebKit())return undefined;return getUnstableScreenResolution();}function getUnstableScreenResolution(){const _0x4dc268=screen,_0x33be1c=_0x50e565=>replaceNaN(toInt(_0x50e565),null),_0x17d6a0=[_0x33be1c(_0x4dc268['width']),_0x33be1c(_0x4dc268['height'])];return _0x17d6a0['sort']()['reverse'](),_0x17d6a0;}const MIN_EVENTS=0x5,MAX_SAMPLES=0xc8,velocities=[];let lastY=0x0,lastTime=0x0,observing=![];function startObserving(){if(observing||typeof window==='undefined')return;observing=!![];const _0x202e2a={};_0x202e2a['passive']=!![],window['addEventListener']('scroll',()=>{const _0x887a9f=performance['now'](),_0x33ba45=window['scrollY'];if(lastTime>0x0){const _0x46111e=_0x887a9f-lastTime;if(_0x46111e>0x0&&_0x46111e<0x1f4){const _0x3173e4=Math['abs'](_0x33ba45-lastY)/(_0x46111e/0x3e8);if(velocities['length']>=MAX_SAMPLES)velocities['shift']();velocities['push'](Math['round'](_0x3173e4));}}lastY=_0x33ba45,lastTime=_0x887a9f;},_0x202e2a);}function getScrollBehavior(){startObserving();if(velocities['length']<MIN_EVENTS)return Promise['resolve'](null);const _0x1a45a3=[...velocities]['sort']((_0xae7f73,_0x1ddad7)=>_0xae7f73-_0x1ddad7),_0x2567d0=_0x1a45a3[Math['floor'](_0x1a45a3['length']*0.5)]??0x0,_0x79163e=_0x1a45a3[Math['floor'](_0x1a45a3['length']*0.9)]??0x0,_0x42abfa={};return _0x42abfa['p50']=_0x2567d0,_0x42abfa['p90']=_0x79163e,_0x42abfa['count']=_0x1a45a3['length'],Promise['resolve'](_0x42abfa);}async function getScrollbarWidth(){return getIframePool()['execute']((_0xd3cb44,_0xdc4cc7)=>{const _0x128c35=_0xdc4cc7['document'],_0x12ef69=_0x128c35['createElement']('div');_0x12ef69['style']['width']='100px',_0x12ef69['style']['height']='100px',_0x12ef69['style']['overflow']='scroll',_0x12ef69['style']['visibility']='hidden',_0x128c35['body']['appendChild'](_0x12ef69);const _0xb776b1=_0x12ef69['offsetWidth']===_0x12ef69['clientWidth'];return _0x128c35['body']['removeChild'](_0x12ef69),_0xb776b1;});}function getSecureContext(){if(typeof window==='undefined')return null;const _0x6f178e=window['isSecureContext'];return _0x6f178e===!![];}function getServiceWorkerPresence(){if(typeof navigator==='undefined')return null;return typeof navigator['serviceWorker']!=='undefined';}const PROBE_KEY='_t';function getSessionStorage(){try{const _0x27f479=window['sessionStorage'];if(_0x27f479===null||_0x27f479===undefined)return![];return _0x27f479['setItem'](PROBE_KEY,'1'),_0x27f479['removeItem'](PROBE_KEY),!![];}catch{return![];}}function getSharedArrayBuffer(){if(typeof window==='undefined')return null;const _0x407086=window['SharedArrayBuffer'];if(typeof _0x407086!=='function')return null;try{const _0x1c71ce=new _0x407086(0x1);if(_0x1c71ce['byteLength']===undefined)return null;return _0x1c71ce['byteLength'];}catch{return null;}}function getStandalonePwa(){if(typeof navigator==='undefined')return null;const _0x462056=navigator['standalone'];return _0x462056===!![];}function getStoragePersisted(){if(typeof navigator==='undefined')return null;const _0x23b3a9=navigator['storage'],_0x519ff0=_0x23b3a9?.['persisted'];if(typeof _0x519ff0!=='function')return()=>Promise['resolve'](![]);return async()=>{try{return await _0x519ff0['call'](_0x23b3a9)===!![];}catch{return![];}};}const ITER=0x40,BUDGET_MS=0x19;function getTimerReliability(){if(typeof performance==='undefined'||typeof performance['now']!=='function')return null;if(typeof setTimeout!=='function')return null;return()=>new Promise(_0x52574c=>{let _0x4de889=0x0;const _0x141e5a=performance['now']();function _0x530125(){_0x4de889++,_0x4de889>=ITER||performance['now']()-_0x141e5a>BUDGET_MS?_0x52574c(_0x4de889*0x4|0x0):setTimeout(_0x530125,0x0);}setTimeout(_0x530125,0x0);});}async function getStorageEstimate(){const _0x480668=navigator['storage'];if(_0x480668===undefined||typeof _0x480668['estimate']!=='function')return null;try{const _0x3af22b=await Promise['race']([_0x480668['estimate'](),new Promise((_0x32d3ce,_0x44142c)=>setTimeout(()=>_0x44142c(new Error('timeout')),0x1f4))]);if(_0x3af22b['quota']!==undefined&&_0x3af22b['quota']>0x0)return Math['round'](_0x3af22b['quota']/(0x64*0x400*0x400))*(0x64*0x400*0x400);return null;}catch{return null;}}async function getStorageQuota(){const _0x3e9116=navigator['storage'];if(_0x3e9116===undefined)return null;const _0x74715a=_0x3e9116['getDirectory'];if(typeof _0x74715a!=='function')return null;try{const _0x2d60f3=await Promise['race']([_0x3e9116['getDirectory']()['then'](()=>'',_0x3c31cd=>_0x3c31cd instanceof Error?_0x3c31cd['message']:String(_0x3c31cd)),new Promise((_0x14f347,_0x4c6dc7)=>setTimeout(()=>_0x4c6dc7(new Error('timeout')),0xfa))]);return _0x2d60f3;}catch{return null;}}const _0x3c8750={};_0x3c8750['AccentColor']='ac',_0x3c8750['AccentColorText']='act',_0x3c8750['ActiveText']='at',_0x3c8750['ActiveBorder']='ab',_0x3c8750['ActiveCaption']='aca',_0x3c8750['AppWorkspace']='aw',_0x3c8750['Background']='b',_0x3c8750['ButtonHighlight']='bh',_0x3c8750['ButtonShadow']='bs',_0x3c8750['ButtonBorder']='bb',_0x3c8750['ButtonFace']='bf',_0x3c8750['ButtonText']='bt',_0x3c8750['FieldText']='ft',_0x3c8750['GrayText']='gt',_0x3c8750['Highlight']='h',_0x3c8750['HighlightText']='ht',_0x3c8750['InactiveBorder']='ib',_0x3c8750['InactiveCaption']='ic',_0x3c8750['InactiveCaptionText']='ict',_0x3c8750['InfoBackground']='infb',_0x3c8750['InfoText']='it',_0x3c8750['LinkText']='lt',_0x3c8750['Mark']='m',_0x3c8750['Menu']='me',_0x3c8750['Scrollbar']='s',_0x3c8750['ThreeDDarkShadow']='tdds',_0x3c8750['ThreeDFace']='tdf',_0x3c8750['ThreeDHighlight']='tdh',_0x3c8750['ThreeDLightShadow']='tdls',_0x3c8750['ThreeDShadow']='tds',_0x3c8750['VisitedText']='vt',_0x3c8750['Window']='w',_0x3c8750['WindowFrame']='wf',_0x3c8750['WindowText']='wt',_0x3c8750['Selecteditem']='si',_0x3c8750['Selecteditemtext']='sit';const systemColorMap=_0x3c8750;function getSystemColors(){return getIframePool()['execute']((_0x33744e,_0x2c84c7)=>{const _0x3981c0=_0x2c84c7['document'];_0x3981c0['documentElement']['style']['colorScheme']='light';const _0x538e82=_0x3981c0['createElement']('div');_0x3981c0['body']['appendChild'](_0x538e82);const _0x1f670b={};for(const _0x2ac9b0 of Object['keys'](systemColorMap)){_0x538e82['style']['color']=_0x2ac9b0,_0x1f670b[systemColorMap[_0x2ac9b0]]=_0x2c84c7['getComputedStyle'](_0x538e82)['color'];}return _0x3981c0['body']['removeChild'](_0x538e82),_0x1f670b;});}function getTimezone(){const _0x1f687f=window['Intl'],_0xbdbd39=_0x1f687f?.['DateTimeFormat'];if(_0xbdbd39!==undefined){const _0x1e724e=new _0xbdbd39()['resolvedOptions']()['timeZone'];if(_0x1e724e!=='')return _0x1e724e;}const _0x17d91a=-getTimezoneOffset();return'UTC'+(_0x17d91a>=0x0?'+':'')+_0x17d91a;}function getTimezoneOffset(){const _0x5f271e=new Date()['getFullYear']();return Math['max'](toFloat(new Date(_0x5f271e,0x0,0x1)['getTimezoneOffset']()),toFloat(new Date(_0x5f271e,0x6,0x1)['getTimezoneOffset']()));}function getUrlProtocolParser(){if(typeof URL!=='function')return null;try{return new URL('C:/')['protocol'];}catch{return null;}}function getUrlSegmentsHash(){try{if(typeof URL!=='function'||typeof window==='undefined')return null;const _0x15ed95=window['location']['href'],_0x1f1a94=new URL(_0x15ed95),_0x160f10=[_0x1f1a94['protocol'],_0x1f1a94['hostname'],_0x1f1a94['port'],_0x1f1a94['pathname'],_0x1f1a94['search'],_0x1f1a94['hash']];return _0x160f10['map'](_0x271323=>x64hash128(_0x271323));}catch{return null;}}function getMeasuredTimezone(){let _0x304c98='';try{const _0x53ae45=window['Intl'],_0x32e9b7=_0x53ae45?.['DateTimeFormat'];_0x32e9b7!==undefined&&(_0x304c98=new _0x32e9b7()['resolvedOptions']()['timeZone']);}catch{}const _0x15b368=new Date()['getTimezoneOffset'](),_0x36ad1c=new Date('July\x201,\x201113')['getTimezoneOffset'](),_0xa29a97=new Date()['getFullYear'](),_0x4cf822=new Date(_0xa29a97,0x0,0x1)['getTimezoneOffset'](),_0x1278c7=new Date(_0xa29a97,0x6,0x1)['getTimezoneOffset'](),_0xe3f0e4={};return _0xe3f0e4['reported']=_0x304c98,_0xe3f0e4['offset']=_0x15b368,_0xe3f0e4['historicalOffset']=_0x36ad1c,_0xe3f0e4['janOffset']=_0x4cf822,_0xe3f0e4['julOffset']=_0x1278c7,_0xe3f0e4;}function getTouchSupport(){const _0x30f7b8=navigator;let _0x3d93f4=0x0,_0x4f747b;if('maxTouchPoints'in _0x30f7b8)_0x3d93f4=toInt(_0x30f7b8['maxTouchPoints']);else _0x30f7b8['msMaxTouchPoints']!==undefined&&(_0x3d93f4=_0x30f7b8['msMaxTouchPoints']??0x0);try{document['createEvent']('TouchEvent'),_0x4f747b=!![];}catch{_0x4f747b=![];}const _0x1869e4='ontouchstart'in window,_0x160777={};return _0x160777['maxTouchPoints']=_0x3d93f4,_0x160777['touchEvent']=_0x4f747b,_0x160777['touchStart']=_0x1869e4,_0x160777;}function getUserAgent(){return navigator['userAgent'];}function getUserAgentData(){const _0x473f28=navigator['userAgentData'];return _0x473f28!==undefined&&_0x473f28!==null&&typeof _0x473f28==='object';}function getVendor(){return navigator['vendor']||'';}function getWebSqlDatabase(){if(typeof window==='undefined')return null;const _0x1978b8=window['openDatabase'];return typeof _0x1978b8==='function';}function getWindowDimensions(){const _0x524dd3={};return _0x524dd3['outerWidth']=window['outerWidth'],_0x524dd3['outerHeight']=window['outerHeight'],_0x524dd3['innerWidth']=window['innerWidth'],_0x524dd3['innerHeight']=window['innerHeight'],_0x524dd3;}function getLockdownFeatures(){return{'wasm':checkWasm(),'webAudio':checkWebAudio(),'gamepad':checkGamepad(),'speechRec':checkSpeechRec(),'rtcDataChannel':checkRtcDataChannel(),'webgl':checkWebGl()};}function checkWasm(){try{return typeof WebAssembly!=='undefined'&&typeof WebAssembly['instantiate']==='function';}catch{return![];}}function checkWebAudio(){try{const _0x10787e=window['AudioContext']??window['webkitAudioContext'];if(_0x10787e===undefined)return![];return typeof _0x10787e==='function';}catch{return![];}}function checkGamepad(){try{return typeof navigator['getGamepads']==='function';}catch{return![];}}function checkSpeechRec(){try{return typeof window['SpeechRecognition']==='function'||typeof window['webkitSpeechRecognition']==='function';}catch{return![];}}function checkRtcDataChannel(){const _0x151d3e=window['RTCPeerConnection']??window['webkitRTCPeerConnection'];if(_0x151d3e===undefined)return![];let _0x1a911a=null;try{_0x1a911a=new _0x151d3e();const _0x3dceb6=_0x1a911a['createDataChannel']('lockdown-probe');return _0x3dceb6['close'](),!![];}catch{return![];}finally{_0x1a911a?.['close']();}}function checkWebGl(){let _0x545139=null;try{const _0x558908=document['createElement']('canvas');return _0x545139=_0x558908['getContext']('webgl')??_0x558908['getContext']('experimental-webgl')??_0x558908['getContext']('webgl2'),_0x545139!==null;}catch{return![];}finally{if(_0x545139!==null)try{const _0x4ff9b4=_0x545139['getExtension']('WEBGL_lose_context');_0x4ff9b4?.['loseContext']();}catch{}}}const EXPECTED=[0x0,0x7f,0xff,0xff];function getCanvasPow(){try{const _0x22e6bb=document['createElement']('canvas');_0x22e6bb['width']=0x10,_0x22e6bb['height']=0x10;const _0x589e57=_0x22e6bb['getContext']('2d');if(_0x589e57===null)return null;_0x589e57['fillStyle']='rgba(0,\x20127,\x20255,\x201)',_0x589e57['fillRect'](0x0,0x0,0x10,0x10);const _0x885967=_0x589e57['getImageData'](0x0,0x0,0x1,0x1),_0x28a918=_0x885967['data'];if(_0x28a918['length']<0x4)return null;const _0x45251b=[_0x28a918[0x0],_0x28a918[0x1],_0x28a918[0x2],_0x28a918[0x3]],_0xb4e910=_0x45251b[0x0]===EXPECTED[0x0]&&_0x45251b[0x1]===EXPECTED[0x1]&&_0x45251b[0x2]===EXPECTED[0x2]&&_0x45251b[0x3]===EXPECTED[0x3],_0x1363b5={};return _0x1363b5['match']=_0xb4e910,_0x1363b5['actual']=_0x45251b,_0x1363b5['expected']=EXPECTED,_0x1363b5;}catch{return null;}}const NATIVE_CONSOLE_DEBUG=typeof console!=='undefined'&&typeof console['debug']==='function'?console['debug']['bind'](console):null,CACHED_DEBUG_IS_NATIVE=((()=>{if(typeof console==='undefined'||typeof console['debug']!=='function')return![];try{return/\{\s*\[native code\]\s*\}/['test'](Function['prototype']['toString']['call'](console['debug']));}catch{return![];}})());function getProtoChainProxyTrap(){try{if(NATIVE_CONSOLE_DEBUG===null){const _0x1b8eb8={};return _0x1b8eb8['trapTriggered']=![],_0x1b8eb8['reliable']=![],_0x1b8eb8;}let _0x55ca45=![];const _0x2d627a={};_0x2d627a['ownKeys']=function(){return _0x55ca45=!![],[];};const _0x3a570d=new Proxy({},_0x2d627a),_0x47e1fe=Object['create'](_0x3a570d);try{NATIVE_CONSOLE_DEBUG(_0x47e1fe);}catch{}const _0x10f5da={};return _0x10f5da['trapTriggered']=_0x55ca45,_0x10f5da['reliable']=CACHED_DEBUG_IS_NATIVE,_0x10f5da;}catch{const _0x402fa3={};return _0x402fa3['trapTriggered']=![],_0x402fa3['reliable']=![],_0x402fa3;}}const EXACT_MARKERS=['__webdriver_evaluate','__selenium_evaluate','__driver_evaluate','__webdriver_unwrapped','__selenium_unwrapped','__fxdriver_evaluate','__driver_unwrapped','__webdriver_script_function','__webdriver_script_func','__webdriver_script_fn','__puppeteer_evaluation_script__','__nightmare','_phantomas','domAutomation','domAutomationController','webdriver-active','callPhantom','_phantom','__phantomas'],PREFIX_MARKERS=['cdc_','$cdc_'];function getStealthMarkers(){const _0x51f38f=[];try{const _0x30bc27=window;for(const _0x14a8ff of EXACT_MARKERS){_0x14a8ff in _0x30bc27&&_0x51f38f['push'](_0x14a8ff);}try{const _0x981cdf=Object['getOwnPropertyNames'](_0x30bc27);for(const _0x5d0a60 of _0x981cdf){for(const _0x3a4c9d of PREFIX_MARKERS){if(_0x5d0a60['startsWith'](_0x3a4c9d)){_0x51f38f['push'](_0x5d0a60);break;}}}}catch{}const _0x5ac151={};return _0x5ac151['detected']=_0x51f38f,_0x5ac151['count']=_0x51f38f['length'],_0x5ac151;}catch{const _0x65bd3e={};return _0x65bd3e['detected']=[],_0x65bd3e['count']=0x0,_0x65bd3e;}}const ADBLOCK_FILTER_LISTS=Object['freeze']({'abpIndo':Object['freeze'](['#Iklan-Melayang','#Kolom-Iklan-728','#SidebarIklan-wrapper','[title=\x22ALIENBOLA\x22\x20i]','#Box-Banner-ads']),'abpvn':Object['freeze'](['.quangcao','#mobileCatfish','.close-ads','[id^=\x22bn_bottom_fixed_\x22]','#pmadv']),'adBlockFinland':Object['freeze'](['.mainostila','.sponsorit','.ylamainos','a[href*=\x22/clickthrgh.asp?\x22]','a[href^=\x22https://app.readpeak.com/ads\x22]']),'adBlockPersian':Object['freeze'](['#navbar_notice_50','.kadr','TABLE[width=\x22140px\x22]','#divAgahi','a[href^=\x22http://g1.v.fwmrm.net/ad/\x22]']),'adBlockWarningRemoval':Object['freeze'](['#adblock-honeypot','.adblocker-root','.wp_adblock_detect','.header-blocked-ad','#ad_blocker']),'adGuardAnnoyances':Object['freeze'](['.hs-sosyal','#cookieconsentdiv','div[class^=\x22app_gdpr\x22]','.as-oil','[data-cypress=\x22soft-push-notification-modal\x22]']),'adGuardBase':Object['freeze'](['.BetterJsPopOverlay','#ad_300X250','#bannerfloat22','#campaign-banner','#Ad-Content']),'adGuardChinese':Object['freeze'](['.Zi_ad_a_H','a[href*=\x22.hthbet34.com\x22]','#widget-quan','a[href*=\x22/84992020.xyz\x22]','a[href*=\x22.1956hl.com/\x22]']),'adGuardFrench':Object['freeze'](['#pavePub','.ad-desktop-rectangle','.mobile_adhesion','.widgetadv','.ads_ban']),'adGuardJapanese':Object['freeze'](['#kauli_yad_1','a[href^=\x22http://ad2.trafficgate.net/\x22]','._popIn_infinite_ad','.adgoogle','.__isboostReturnAd']),'adGuardMobile':Object['freeze'](['amp-auto-ads','.amp_ad','amp-embed[type=\x2224smi\x22]','#mgid_iframe1','#ad_inview_area']),'adGuardRussian':Object['freeze'](['a[href^=\x22https://ad.letmeads.com/\x22]','.reclama','div[id^=\x22smi2adblock\x22]','div[id^=\x22AdFox_banner_\x22]','#psyduckpockeball']),'adGuardSocial':Object['freeze'](['a[href^=\x22//www.stumbleupon.com/submit?url=\x22]','a[href^=\x22//telegram.me/share/url?\x22]','.etsy-tweet','#inlineShare','.popup-social']),'adGuardSpanishPortuguese':Object['freeze'](['#barraPublicidade','#Publicidade','#publiEspecial','#queTooltip','.cnt-publi']),'adGuardTrackingProtection':Object['freeze'](['#qoo-counter','a[href^=\x22http://click.hotlog.ru/\x22]','a[href^=\x22http://hitcounter.ru/top/stat.php\x22]','a[href^=\x22http://top.mail.ru/jump\x22]','#top100counter']),'adGuardTurkish':Object['freeze'](['#backkapat','#reklami','a[href^=\x22http://adserv.ontek.com.tr/\x22]','a[href^=\x22http://izlenzi.com/campaign/\x22]','a[href^=\x22http://www.installads.net/\x22]']),'bulgarian':Object['freeze'](['td#freenet_table_ads','#ea_intext_div','.lapni-pop-over','#xenium_hot_offers']),'easyList':Object['freeze'](['.yb-floorad','.widget_po_ads_widget','.trafficjunky-ad','.textad_headline','.sponsored-text-links']),'easyListChina':Object['freeze'](['.appguide-wrap[onclick*=\x22bcebos.com\x22]','.frontpageAdvM','#taotaole','#aafoot.top_box','.cfa_popup']),'easyListCookie':Object['freeze'](['.ezmob-footer','.cc-CookieWarning','[data-cookie-number]','.aw-cookie-banner','.sygnal24-gdpr-modal-wrap']),'easyListCzechSlovak':Object['freeze'](['#onlajny-stickers','#reklamni-box','.reklama-megaboard','.sklik','[id^=\x22sklikReklama\x22]']),'easyListDutch':Object['freeze'](['#advertentie','#vipAdmarktBannerBlock','.adstekst','a[href^=\x22https://xltube.nl/click/\x22]','#semilo-lrectangle']),'easyListGermany':Object['freeze'](['#SSpotIMPopSlider','.sponsorlinkgruen','#werbungsky','#reklame-rechts-mitte','a[href^=\x22https://bd742.com/\x22]']),'easyListItaly':Object['freeze'](['.box_adv_annunci','.sb-box-pubbliredazionale','a[href^=\x22http://affiliazioniads.snai.it/\x22]','a[href^=\x22https://adserver.html.it/\x22]','a[href^=\x22https://affiliazioniads.snai.it/\x22]']),'easyListLithuania':Object['freeze'](['.reklamos_tarpas','.reklamos_nuorodos','img[alt=\x22Reklaminis\x20skydelis\x22]','img[alt=\x22Dedikuoti.lt\x20serveriai\x22]','img[alt=\x22Hostingas\x20Serveriai.lt\x22]']),'fanboyAnnoyances':Object['freeze'](['#ac-lre-player','.navigate-to-top','#subscribe_popup','.newsletter_holder','#back-top']),'fanboyEnhancedTrackers':Object['freeze'](['.open.pushModal','#issuem-leaky-paywall-articles-zero-remaining-nag','#sovrn_container','div[class$=\x22-hide\x22][zoompage-fontsize][style=\x22display:\x20block;\x22]','.BlockNag__Card']),'fanboySocial':Object['freeze'](['#FollowUs','#meteored_share','#social_follow','.article-sharer','.community__social-desc']),'frellwitSwedish':Object['freeze'](['a[href*=\x22casinopro.se\x22][target=\x22_blank\x22]','a[href*=\x22doktor-se.onelink.me\x22]','article.category-samarbete','div.holidAds','ul.adsmodern']),'greekAdBlock':Object['freeze'](['A[href*=\x22adman.otenet.gr/click?\x22]','A[href*=\x22http://axiabanners.exodus.gr/\x22]','A[href*=\x22http://interactive.forthnet.gr/click?\x22]','DIV.agores300','TABLE.advright']),'hungarian':Object['freeze'](['#cemp_doboz','.optimonk-iframe-container','.ad__main','[class*=\x22GoogleAds\x22]','#hirdetesek_box']),'iDontCareAboutCookies':Object['freeze'](['.alert-info[data-block-track*=\x22CookieNotice\x22]','.ModuleTemplateCookieIndicator','.o--cookies--container','#cookies-policy-sticky','#stickyCookieBar']),'latvian':Object['freeze'](['a[href=\x22http://www.salidzini.lv/\x22][style=\x22display:\x20block;\x20width:\x20120px;\x20height:\x2040px;\x20overflow:\x20hidden;\x20position:\x20relative;\x22]','a[href=\x22http://www.salidzini.lv/\x22][style=\x22display:\x20block;\x20width:\x2088px;\x20height:\x2031px;\x20overflow:\x20hidden;\x20position:\x20relative;\x22]']),'listKr':Object['freeze'](['a[href*=\x22//ad.planbplus.co.kr/\x22]','#livereAdWrapper','a[href*=\x22//adv.imadrep.co.kr/\x22]','ins.fastview-ad','.revenue_unit_item.dable']),'listeAr':Object['freeze'](['.geminiLB1Ad','.right-and-left-sponsers','a[href*=\x22.aflam.info\x22]','a[href*=\x22booraq.org\x22]','a[href*=\x22dubizzle.com/ar/?utm_source=\x22]']),'listeFr':Object['freeze'](['a[href^=\x22http://promo.vador.com/\x22]','#adcontainer_recherche','a[href*=\x22weborama.fr/fcgi-bin/\x22]','.site-pub-interstitiel','div[id^=\x22crt-\x22][data-criteo-id]']),'officialPolish':Object['freeze'](['#ceneo-placeholder-ceneo-12','[href^=\x22https://aff.sendhub.pl/\x22]','a[href^=\x22http://advmanager.techfun.pl/redirect/\x22]','a[href^=\x22http://www.trizer.pl/?utm_source\x22]','div#skapiec_ad']),'ro':Object['freeze'](['a[href^=\x22//afftrk.altex.ro/Counter/Click\x22]','a[href^=\x22https://blackfridaysales.ro/trk/shop/\x22]','a[href^=\x22https://event.2performant.com/events/click\x22]','a[href^=\x22https://l.profitshare.ro/\x22]','a[href^=\x22/url/\x22]']),'ruAd':Object['freeze'](['a[href*=\x22//febrare.ru/\x22]','a[href*=\x22//utimg.ru/\x22]','a[href*=\x22://chikidiki.ru\x22]','#pgeldiz','.yandex-rtb-block']),'thaiAds':Object['freeze'](['a[href*=macau-uta-popup]','#ads-google-middle_rectangle-group','.ads300s','.bumq','.img-kosana']),'webAnnoyancesUltralist':Object['freeze'](['#mod-social-share-2','#social-tools','.ctpl-fullbanner','.zergnet-recommend','.yt.btn-link.btn-md.btn'])}),BLOCK_THRESHOLD=0.6;function applyHidden(_0x2293d6){_0x2293d6['style']['setProperty']('visibility','hidden','important'),_0x2293d6['style']['setProperty']('display','block','important');}function buildElement(_0x7d5fe2,_0x16dcb6){const [_0x2b1265,_0x50a32c]=parseSimpleCssSelector(_0x7d5fe2),_0x29c7ca=_0x16dcb6['createElement'](_0x2b1265??'div');for(const _0x401446 of Object['keys'](_0x50a32c)){const _0x3e800d=_0x50a32c[_0x401446]['join']('\x20');_0x401446==='style'?addStyleString(_0x29c7ca['style'],_0x3e800d):_0x29c7ca['setAttribute'](_0x401446,_0x3e800d);}return _0x29c7ca;}function getAdblockFilterMatch(){if(typeof window==='undefined'||typeof document==='undefined')return null;if(!isWebKit()||!isSafariWebKit())return null;return async()=>{try{const _0x5e4893=[],_0x27e8cb={};let _0xb31660=0x0;for(const _0x3fa788 of Object['keys'](ADBLOCK_FILTER_LISTS)){const _0x3f994d=ADBLOCK_FILTER_LISTS[_0x3fa788],_0x2ffefc=_0xb31660;for(const _0x2e37b3 of _0x3f994d){_0x5e4893['push'](_0x2e37b3),_0xb31660+=0x1;}_0x27e8cb[_0x3fa788]=[_0x2ffefc,_0xb31660];}const _0x2d9410=await getIframePool()['execute']((_0x68c5da,_0x3b9bb7)=>{const _0x1ce5a6=_0x3b9bb7['document'],_0x38e2f8=_0x1ce5a6['createElement']('div');applyHidden(_0x38e2f8);const _0x2b3967=[];for(const _0x3a074d of _0x5e4893){let _0x5d6e58;try{_0x5d6e58=buildElement(_0x3a074d,_0x1ce5a6);}catch{_0x5d6e58=_0x1ce5a6['createElement']('div');}if(_0x5d6e58['tagName']==='DIALOG')try{;_0x5d6e58['show']();}catch{}const _0x2c5689=_0x1ce5a6['createElement']('div');applyHidden(_0x2c5689),_0x2c5689['appendChild'](_0x5d6e58),_0x38e2f8['appendChild'](_0x2c5689),_0x2b3967['push'](_0x5d6e58);}_0x1ce5a6['body']['appendChild'](_0x38e2f8);try{const _0x2ac258=[];for(const _0x3c1777 of _0x2b3967){_0x2ac258['push'](_0x3c1777['offsetParent']===null);}return _0x2ac258;}finally{_0x38e2f8['parentNode']?.['removeChild'](_0x38e2f8);}}),_0xa15b12=[];for(const _0xc0dd39 of Object['keys'](_0x27e8cb)){const [_0x40beab,_0x4a8dcc]=_0x27e8cb[_0xc0dd39],_0x20a849=_0x4a8dcc-_0x40beab;if(_0x20a849===0x0)continue;let _0x474446=0x0;for(let _0x435706=_0x40beab;_0x435706<_0x4a8dcc;_0x435706+=0x1){if(_0x2d9410[_0x435706])_0x474446+=0x1;}_0x474446>BLOCK_THRESHOLD*_0x20a849&&_0xa15b12['push'](_0xc0dd39);}return _0xa15b12['sort'](),_0xa15b12;}catch{return null;}};}function getBindToString(){try{return Function['prototype']['bind']['toString']();}catch{return'';}}function getCanvasModified(){try{const _0x5afb73=document['createElement']('canvas');_0x5afb73['width']=0x1,_0x5afb73['height']=0x1;const _0x268567=_0x5afb73['getContext']('2d');if(!_0x268567)return null;_0x268567['clearRect'](0x0,0x0,0x1,0x1);const _0x480db2=_0x268567['getImageData'](0x0,0x0,0x1,0x1)['data'];return _0x480db2[0x0]!==0x0||_0x480db2[0x1]!==0x0||_0x480db2[0x2]!==0x0||_0x480db2[0x3]!==0x0;}catch{return null;}}function getElementMatchesPolyfill(){if(typeof Element==='undefined')return null;return typeof Element['prototype']['matches']==='function';}function getExternalObjectString(){if(typeof window==='undefined')return null;try{return String(window['external']);}catch{return'';}}const CSS_PROPERTIES=['display','direction','unicode-bidi','writing-mode','color','font-family'];function getComputedStyleSignal(){const _0x46d629=window['getComputedStyle'](document['documentElement']);let _0x551028=0x0;for(const _0x3bfe7a of CSS_PROPERTIES){_0x46d629['getPropertyValue'](_0x3bfe7a)!==''&&_0x551028++;}return _0x551028>=0x4;}function getCreateElementDescriptor(){const _0x4fb67e=Object['getOwnPropertyDescriptor'](document,'createElement');return _0x4fb67e?!('writeable'in _0x4fb67e):null;}function getErrorStackFormat(){try{;null[0x0]();}catch(_0x1a609d){if(_0x1a609d instanceof Error&&_0x1a609d['stack']!==undefined)return _0x1a609d['stack']['toString']();}return undefined;}function hasWindowProp(_0x14c00b){return _0x14c00b in window;}function getExtensionDetection(){const _0x222bf1=[['grammarly',()=>{return document['body']['hasAttribute']('data-gr-ext-installed')||document['querySelector']('.grammarly-desktop-integration')!==null;}],['metamask',()=>hasWindowProp('ethereum')],['deepl',()=>document['querySelector']('deepl-input-controller')!==null],['lastpass',()=>document['querySelector']('[data-lastpass-icon-root]')!==null],['1password',()=>document['querySelector']('com-1password-notification')!==null],['honey',()=>hasWindowProp('honeyAutocomplete')],['reactDevtools',()=>hasWindowProp('__REACT_DEVTOOLS_GLOBAL_HOOK__')],['reduxDevtools',()=>hasWindowProp('__REDUX_DEVTOOLS_EXTENSION__')]],_0x14b0cf=[];let _0x47e075='';for(const [_0x1bab5f,_0x4c5528]of _0x222bf1){let _0x487f57=![];try{_0x487f57=_0x4c5528();}catch{}_0x487f57&&_0x14b0cf['push'](_0x1bab5f),_0x47e075+=_0x487f57?'1':'0';}const _0x240d83={};return _0x240d83['detected']=_0x14b0cf,_0x240d83['bitmask']=_0x47e075,_0x240d83;}const CHROMIUM_CSS=[['aspect-ratio','1',0x58],['color','oklch(0\x200\x200)',0x6f],['container-type','inline-size',0x69],['animation-composition','add',0x70],['color','color-mix(in\x20srgb,\x20red,\x20blue)',0x6f],['text-wrap','balance',0x72],['field-sizing','content',0x78],['view-transition-name','foo',0x6f],['interpolate-size','allow-keywords',0x81],['ruby-align','center',0x80]],GECKO_CSS=[['color','light-dark(#000,\x20#fff)',0x78],['height','1lh',0x78],['text-wrap','balance',0x79],['text-wrap','pretty',0x80],['field-sizing','content',0x88]],WEBKIT_CSS=[['selector(:has(a))','',0xf],['container-type','inline-size',0x10],['font-size-adjust','ex-height\x200.5',0x11],['view-transition-name','foo',0x12]],g$1=globalThis,CHROMIUM_JS=[[()=>typeof AbortSignal['abort']==='function',0x5d],[()=>'URLPattern'in g$1,0x5f],[()=>typeof g$1['structuredClone']==='function',0x62],[()=>typeof AbortSignal['timeout']==='function',0x67],[()=>'formatRange'in Intl['NumberFormat']['prototype'],0x6b],[()=>'groupBy'in(g$1['Map']??{}),0x75],[()=>'fromAsync'in Array,0x77],[()=>'union'in Set['prototype'],0x7a]],GECKO_JS=[[()=>'findLast'in Array['prototype'],0x68],[()=>'withResolvers'in(g$1['Promise']??{}),0x79],[()=>'union'in Set['prototype'],0x7f],[()=>'Iterator'in g$1,0x82]],WEBKIT_JS=[[()=>'RegExp'in g$1&&/(?<=a)b/['test']('ab'),0x10],[()=>'groupBy'in(g$1['Map']??{}),0x11],[()=>'ViewTransition'in g$1,0x12]];function detectVersion(_0x2b16f9,_0x1ae177){let _0x751c7d=null,_0x376b5=null;if(typeof CSS!=='undefined'&&typeof CSS['supports']==='function')for(const [_0x5d2d4d,_0x5d46f2,_0x2381ca]of _0x2b16f9){try{const _0x52d76f=_0x5d46f2===''?CSS['supports'](_0x5d2d4d):CSS['supports'](_0x5d2d4d,_0x5d46f2);_0x52d76f&&(_0x751c7d===null||_0x2381ca>_0x751c7d)&&(_0x751c7d=_0x2381ca);}catch{}}for(const [_0x31516c,_0x5d2f6c]of _0x1ae177){try{_0x31516c()&&(_0x376b5===null||_0x5d2f6c>_0x376b5)&&(_0x376b5=_0x5d2f6c);}catch{}}const _0x1723be={};return _0x1723be['cssVersion']=_0x751c7d,_0x1723be['jsVersion']=_0x376b5,_0x1723be;}function parseUAVersion(_0x591506){const _0x5293c1=navigator['userAgent'];if(_0x591506==='chromium'){const _0x34bc6a=/Chrom(?:e|ium)\/(\d+)/['exec'](_0x5293c1);return _0x34bc6a?parseInt(_0x34bc6a[0x1],0xa):null;}if(_0x591506==='gecko'){const _0x5211f2=/Firefox\/(\d+)/['exec'](_0x5293c1);return _0x5211f2?parseInt(_0x5211f2[0x1],0xa):null;}if(_0x591506==='webkit'){const _0x53aac2=/Version\/(\d+)/['exec'](_0x5293c1);return _0x53aac2?parseInt(_0x53aac2[0x1],0xa):null;}return null;}function getFeatureVersion(){let _0x41b455='unknown';try{if(isChromium())_0x41b455='chromium';else{if(isGecko())_0x41b455='gecko';else isWebKit()&&(_0x41b455='webkit');}}catch{return null;}if(_0x41b455==='unknown'){const _0x379a4a={};return _0x379a4a['cssVersion']=null,_0x379a4a['jsVersion']=null,_0x379a4a['uaVersion']=null,_0x379a4a['mismatch']=![],_0x379a4a['engine']=_0x41b455,_0x379a4a;}let _0x209524,_0x147bb1;if(_0x41b455==='chromium')_0x209524=CHROMIUM_CSS,_0x147bb1=CHROMIUM_JS;else _0x41b455==='gecko'?(_0x209524=GECKO_CSS,_0x147bb1=GECKO_JS):(_0x209524=WEBKIT_CSS,_0x147bb1=WEBKIT_JS);const {cssVersion:_0x855e40,jsVersion:_0x261141}=detectVersion(_0x209524,_0x147bb1),_0x5095c9=parseUAVersion(_0x41b455);let _0x398d44=![];if(_0x5095c9!==null){const _0x5a8999=Math['max'](_0x855e40??0x0,_0x261141??0x0);_0x5a8999>0x0&&_0x5095c9-_0x5a8999>0x14&&(_0x398d44=!![]);}const _0x287fb0={};return _0x287fb0['cssVersion']=_0x855e40,_0x287fb0['jsVersion']=_0x261141,_0x287fb0['uaVersion']=_0x5095c9,_0x287fb0['mismatch']=_0x398d44,_0x287fb0['engine']=_0x41b455,_0x287fb0;}function getGetterProxyDetection(){try{const _0x410688=Object['getOwnPropertyDescriptor'](Object['getPrototypeOf'](navigator),'hardwareConcurrency');if(!_0x410688?.['get'])return null;const _0x3bc5a1=Function['prototype']['toString']['call'](_0x410688['get']);return!/\{\s*\[native code\]\s*\}/['test'](_0x3bc5a1);}catch{return null;}}const GETTER_TARGETS=[['navigator',['plugins','userAgent','platform','appName','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','connection','cookieEnabled','language','pdfViewerEnabled']],['screen',['width','availWidth','height','availHeight','colorDepth']]],TAMPER_CHECK_PROPS=['userAgent','platform','languages','vendor','hardwareConcurrency','deviceMemory','maxTouchPoints','plugins','connection','cookieEnabled'];function getGetterToString(){try{const _0x3c3e00={},_0x22d717={};for(const [_0x246521,_0x42227e]of GETTER_TARGETS){const _0x1af4c3=window[_0x246521];if(_0x1af4c3===null||_0x1af4c3===undefined||typeof _0x1af4c3!=='object')continue;for(const _0x195d7c of _0x42227e){try{const _0x4b677b=Object['getOwnPropertyDescriptor'](_0x1af4c3,_0x195d7c)?.['get']?.['toString']();_0x4b677b!==undefined&&(_0x3c3e00[_0x246521+'.'+_0x195d7c]=_0x4b677b);}catch{}}}for(const _0x126a04 of TAMPER_CHECK_PROPS){try{const _0x491c0c=Object['getOwnPropertyDescriptor'](navigator,_0x126a04);if(_0x491c0c!==undefined){const _0x3ae2c2={};if(_0x491c0c['writable']===!![])_0x3ae2c2['writable']=!![];if(_0x491c0c['configurable']===!![])_0x3ae2c2['configurable']=!![];(_0x3ae2c2['writable']===!![]||_0x3ae2c2['configurable']===!![])&&(_0x22d717[_0x126a04]=_0x3ae2c2);}}catch{}}const _0x599587={};return _0x599587['overrides']=_0x3c3e00,_0x599587['tampered']=_0x22d717,_0x599587;}catch{return null;}}const IMPOSSIBLE_BIGRAMS=new Set(['bq','bx','cb','cf','cj','cp','cv','cx','dx','fq','fx','gq','gx','hx','jb','jc','jd','jf','jg','jh','jk','jl','jm','jn','jp','jq','jr','js','jt','jv','jw','jx','jy','jz','kq','kx','kz','lq','lx','mx','pq','px','qb','qc','qd','qe','qf','qg','qh','qj','qk','ql','qm','qn','qo','qp','qq','qr','qs','qt','qv','qw','qx','qy','qz','sx','vb','vc','vf','vg','vj','vk','vm','vn','vp','vq','vw','vx','vz','wq','wx','wz','xb','xd','xf','xg','xj','xk','xq','xr','xw','xz','yq','yx','yy','zb','zc','zd','zf','zg','zj','zk','zl','zm','zn','zp','zq','zr','zs','zt','zv','zw','zx']);function getGpuGibberish(){try{const _0x9b0598=document['createElement']('canvas'),_0x5252e2=_0x9b0598['getContext']('webgl')??_0x9b0598['getContext']('experimental-webgl');if(!_0x5252e2)return null;const _0x3dfca9=_0x5252e2['getExtension']('WEBGL_debug_renderer_info');if(!_0x3dfca9)return null;const _0x1ea357=_0x5252e2['getParameter'](_0x3dfca9['UNMASKED_RENDERER_WEBGL']);if(!_0x1ea357)return null;let _0x267af2=_0x1ea357;const _0x58bad3=_0x267af2['match'](/^ANGLE \((.+)\)$/);if(_0x58bad3){_0x267af2=_0x58bad3[0x1];const _0x3fa9ca=_0x267af2['lastIndexOf'](',');_0x3fa9ca!==-0x1&&(_0x267af2=_0x267af2['substring'](0x0,_0x3fa9ca));}const _0x171deb=_0x267af2['toLowerCase']()['replace'](/[^a-z]/g,'');let _0x4d137b=0x0;for(let _0x548085=0x0;_0x548085<_0x171deb['length']-0x1;_0x548085++){const _0x55e298=_0x171deb[_0x548085]+_0x171deb[_0x548085+0x1];IMPOSSIBLE_BIGRAMS['has'](_0x55e298)&&_0x4d137b++;}const _0x2bad81={};return _0x2bad81['score']=_0x4d137b,_0x2bad81['gibberish']=_0x4d137b>0x2,_0x2bad81['renderer']=_0x1ea357,_0x2bad81;}catch{return null;}}function getIframeProxy(){try{if(typeof document==='undefined')return null;const _0xbd6371=document['body']??document['documentElement'];if(_0xbd6371===null)return null;const _0x4cea7a=document['createElement']('iframe');_0x4cea7a['style']['display']='none',_0xbd6371['appendChild'](_0x4cea7a);try{const _0x1085de=_0x4cea7a['contentWindow'];if(!_0x1085de){const _0x1b7684={};return _0x1b7684['accessible']=![],_0x1b7684['proxyDetected']=![],_0x1b7684['selfConsistent']=![],_0x1b7684['frameElementNull']=![],_0x1b7684;}let _0x4e0fa9=![];try{_0x4e0fa9=_0x1085de['self']===_0x1085de;}catch{_0x4e0fa9=![];}let _0x19b769=![];try{const _0x424b8c=Object['prototype']['toString']['call'](_0x1085de);_0x424b8c!=='[object\x20Window]'&&_0x424b8c!=='[object\x20global]'&&(_0x19b769=!![]);}catch{_0x19b769=!![];}try{const _0x36cfc9=Object['getOwnPropertyDescriptor'](_0x1085de,'self');if(_0x36cfc9===undefined&&!_0x19b769){}}catch{_0x19b769=!![];}let _0x34bc06=![];try{_0x34bc06=_0x1085de['frameElement']===null;}catch{_0x34bc06=!![];}const _0x53b5cc={};return _0x53b5cc['accessible']=!![],_0x53b5cc['proxyDetected']=_0x19b769,_0x53b5cc['selfConsistent']=_0x4e0fa9,_0x53b5cc['frameElementNull']=_0x34bc06,_0x53b5cc;}finally{_0x4cea7a['remove']();}}catch{return null;}}function getIframeSignals(){return new Promise(_0x1202eb=>{try{const _0x27016a=document['createElement']('iframe');_0x27016a['style']['display']='none',_0x27016a['style']['width']='0',_0x27016a['style']['height']='0',_0x27016a['style']['position']='absolute',_0x27016a['style']['top']='-9999px';let _0x16c30f=null;const _0xae9e4e=()=>{if(_0x16c30f!==null)clearTimeout(_0x16c30f);try{_0x27016a['parentNode']&&_0x27016a['parentNode']['removeChild'](_0x27016a);}catch{}};_0x16c30f=setTimeout(()=>{_0xae9e4e(),_0x1202eb(null);},0x7d0),_0x27016a['onload']=()=>{try{const _0x354e5a=_0x27016a['contentWindow'];if(!_0x354e5a){_0xae9e4e(),_0x1202eb(null);return;}const _0x2dfdff=_0x354e5a['navigator'],_0x4aaf8={};_0x4aaf8['webdriver']=_0x2dfdff['webdriver'],_0x4aaf8['platform']=_0x2dfdff['platform'],_0x4aaf8['hardwareConcurrency']=_0x2dfdff['hardwareConcurrency'],_0x4aaf8['deviceMemory']=_0x2dfdff['deviceMemory'],_0x4aaf8['language']=_0x2dfdff['language'];const _0x4ee54b=_0x4aaf8;_0xae9e4e(),_0x1202eb(_0x4ee54b);}catch{_0xae9e4e(),_0x1202eb(null);}},_0x27016a['onerror']=()=>{_0xae9e4e(),_0x1202eb(null);},document['body']['appendChild'](_0x27016a);}catch{_0x1202eb(null);}});}const CHECKED_PROPERTIES=['deviceMemory','hardwareConcurrency','language','languages','platform'];function getNavigatorDescriptors(){try{let _0x60379b='';for(const _0x492c3a of CHECKED_PROPERTIES){try{const _0x208971=Object['getOwnPropertyDescriptor'](navigator,_0x492c3a);if(_0x208971){_0x60379b+='1';continue;}const _0x26c398=Object['getOwnPropertyDescriptor'](Navigator['prototype'],_0x492c3a);if(!_0x26c398){_0x60379b+='2';continue;}typeof _0x26c398['get']==='function'?_0x60379b+='0':_0x60379b+='1';}catch{_0x60379b+='2';}}return _0x60379b;}catch{return'22222';}}function getObjectInspectGlobal(){try{return typeof globalThis['objectToInspect']!=='undefined';}catch{return![];}}const _0x3085b8={};_0x3085b8['Windows']=['Segoe\x20Fluent\x20Icons','HoloLens\x20MDL2\x20Assets','Leelawadee\x20UI','Nirmala\x20UI','Cambria\x20Math'],_0x3085b8['macOS']=['Galvji','Noto\x20Serif\x20Yezidi\x20Regular','InaiMathi\x20Bold','Luminari','Helvetica\x20Neue'],_0x3085b8['Linux']=['Ubuntu','Noto\x20Color\x20Emoji','Liberation\x20Mono'];const OS_FONT_MARKERS=_0x3085b8,TEST_STRING='mmMwWLliI0O&1',TEST_SIZE='72px',BASE_FONT='monospace';function getOsFontValidation(){return new Promise(_0x41ff7b=>{try{const _0x25059b=document['createElement']('canvas'),_0x3ba83a=_0x25059b['getContext']('2d');if(!_0x3ba83a){const _0x5d3898={};_0x5d3898['detectedOs']='unknown',_0x5d3898['markers']=[],_0x41ff7b(_0x5d3898);return;}_0x3ba83a['font']=TEST_SIZE+'\x20'+BASE_FONT;const _0x43f2c4=_0x3ba83a['measureText'](TEST_STRING)['width'],_0x1b05f7=[];let _0x2e2cbd='unknown';for(const [_0x3e6a7d,_0x521da2]of Object['entries'](OS_FONT_MARKERS)){for(const _0x2cff7e of _0x521da2){_0x3ba83a['font']=TEST_SIZE+'\x20\x27'+_0x2cff7e+'\x27,\x20'+BASE_FONT;const _0x2aa49f=_0x3ba83a['measureText'](TEST_STRING)['width'];_0x2aa49f!==_0x43f2c4&&(_0x1b05f7['push'](_0x2cff7e),_0x2e2cbd==='unknown'&&(_0x2e2cbd=_0x3e6a7d));}}const _0xf7ed58={};_0xf7ed58['detectedOs']=_0x2e2cbd,_0xf7ed58['markers']=_0x1b05f7,_0x41ff7b(_0xf7ed58);}catch{const _0x3db21a={};_0x3db21a['detectedOs']='unknown',_0x3db21a['markers']=[],_0x41ff7b(_0x3db21a);}});}const g=globalThis,_0x49b603={};_0x49b603['android']=0x2,_0x49b603['chromeos']=0x1;const _0x4c6f7d={};_0x4c6f7d['windows']=0x2,_0x4c6f7d['mac']=0x2,_0x4c6f7d['linux']=0x2;const _0x14ce2f={};_0x14ce2f['windows']=0x2,_0x14ce2f['mac']=0x2,_0x14ce2f['linux']=0x2;const _0xffc540={};_0xffc540['windows']=0x2,_0xffc540['mac']=0x2,_0xffc540['linux']=0x2;const _0x25112c={};_0x25112c['windows']=0x1,_0x25112c['mac']=0x1,_0x25112c['linux']=0x1;const _0x367e05={};_0x367e05['windows']=0x1,_0x367e05['mac']=0x1,_0x367e05['linux']=0x1;const _0x56ed56={};_0x56ed56['windows']=0x2,_0x56ed56['mac']=0x2,_0x56ed56['linux']=0x2,_0x56ed56['chromeos']=0x2;const _0x9ead62={};_0x9ead62['android']=0x2,_0x9ead62['ios']=0x2;const _0x4626d0={};_0x4626d0['android']=0x1,_0x4626d0['ios']=0x1;const _0x5c7ef9={};_0x5c7ef9['android']=0x2;const _0x11318d={};_0x11318d['android']=0x2;const _0x5dba71={};_0x5dba71['windows']=0x1,_0x5dba71['mac']=0x1,_0x5dba71['chromeos']=0x1;const _0x333b27={};_0x333b27['windows']=0x2,_0x333b27['mac']=0x2,_0x333b27['linux']=0x2;const _0x35d968={};_0x35d968['windows']=0x1,_0x35d968['mac']=0x1,_0x35d968['linux']=0x1;const _0x5c4b81={};_0x5c4b81['android']=0x1,_0x5c4b81['windows']=0x1,_0x5c4b81['mac']=0x1;const PROBES=[['BarcodeDetector',()=>'BarcodeDetector'in g,_0x49b603],['EyeDropper',()=>'EyeDropper'in g,_0x4c6f7d],['HID',()=>'hid'in navigator,_0x14ce2f],['Serial',()=>'serial'in navigator,_0xffc540],['USB',()=>'usb'in navigator,_0x25112c],['Bluetooth',()=>'bluetooth'in navigator,_0x367e05],['SharedWorker',()=>'SharedWorker'in g,_0x56ed56],['orientation',()=>'ondeviceorientation'in g,_0x9ead62],['DeviceMotionEvent',()=>'DeviceMotionEvent'in g,_0x4626d0],['ContactsManager',()=>'ContactsManager'in g,_0x5c7ef9],['ContentIndex',()=>'ContentIndex'in g,_0x11318d],['AppBadge',()=>typeof navigator['setAppBadge']==='function',_0x5dba71],['FileSystemAccess',()=>'showOpenFilePicker'in g,_0x333b27],['PressureObserver',()=>'PressureObserver'in g,_0x35d968],['WakeLock',()=>'wakeLock'in navigator,_0x5c4b81]];function getPlatformApiScoring(){try{const _0x403c25={},_0x2d36fb=[];for(const [_0x28bd09,_0x44fd07,_0x5a376a]of PROBES){try{if(_0x44fd07()){_0x2d36fb['push'](_0x28bd09);for(const [_0x11e7a7,_0x2f9c57]of Object['entries'](_0x5a376a)){_0x403c25[_0x11e7a7]=(_0x403c25[_0x11e7a7]??0x0)+_0x2f9c57;}}}catch{}}const _0x5d5d1e={};return _0x5d5d1e['score']=_0x403c25,_0x5d5d1e['apis']=_0x2d36fb,_0x5d5d1e;}catch{return null;}}function getPluginOverflow(){try{const _0x32d2c3=navigator['plugins'];if(_0x32d2c3['length']===0x0)return null;const _0x5dbdcd=_0x32d2c3['item'](0x0);if(!_0x5dbdcd)return null;let _0x1b4c40=![];try{const _0xc0d06f=_0x32d2c3['item'](0x100000000);_0x1b4c40=_0xc0d06f!==_0x5dbdcd;}catch{_0x1b4c40=!![];}let _0x38afe3=!![];try{if(_0x5dbdcd['length']>0x0){const _0x307ab8=_0x5dbdcd['item'](0x0);_0x307ab8&&(_0x38afe3=_0x307ab8['enabledPlugin']===_0x5dbdcd);}}catch{_0x38afe3=![];}const _0x2c478d={};return _0x2c478d['overflow']=_0x1b4c40,_0x2c478d['backref']=_0x38afe3,_0x2c478d;}catch{return null;}}function getPrivateClickMeasurement(){if(typeof document==='undefined')return null;try{const _0x24dc32=document['createElement']('a'),_0x4c1986=_0x24dc32['attributionSourceId']??_0x24dc32['attributionsourceid'];return _0x4c1986===undefined||_0x4c1986===null?null:String(_0x4c1986);}catch{return null;}}function getChainDepth(_0x4aa3a8,_0x2feb9c){let _0x4e3de7=_0x4aa3a8,_0x3ea113=0x0;while(_0x4e3de7!==null&&_0x3ea113<_0x2feb9c){_0x4e3de7=Object['getPrototypeOf'](_0x4e3de7),_0x3ea113++;}return _0x3ea113;}function checkChain(_0x1fda9e,_0x51ec0a,_0x1e5a87,_0x119d80){try{const _0x1dead6=Object['getPrototypeOf'](_0x1fda9e),_0x1aacff=_0x1dead6===_0x1e5a87,_0x36f70f=getChainDepth(_0x1fda9e,0xf);if(!_0x1aacff){const _0xe65daa={};return _0xe65daa['target']=_0x51ec0a+'→'+_0x119d80,_0xe65daa['intact']=![],_0xe65daa['depth']=_0x36f70f,_0xe65daa;}const _0x3ca0f9={};return _0x3ca0f9['target']=_0x51ec0a+'→'+_0x119d80,_0x3ca0f9['intact']=!![],_0x3ca0f9['depth']=_0x36f70f,_0x3ca0f9;}catch{const _0x3f876b={};return _0x3f876b['target']=_0x51ec0a+'→'+_0x119d80,_0x3f876b['intact']=![],_0x3f876b['depth']=0x0,_0x3f876b;}}function getPrototypeChain(){const _0x1f05bf=[];try{typeof Navigator!=='undefined'&&_0x1f05bf['push'](checkChain(navigator,'navigator',Navigator['prototype'],'Navigator.prototype'));typeof Screen!=='undefined'&&_0x1f05bf['push'](checkChain(screen,'screen',Screen['prototype'],'Screen.prototype'));if(typeof HTMLDocument!=='undefined')_0x1f05bf['push'](checkChain(document,'document',HTMLDocument['prototype'],'HTMLDocument.prototype'));else typeof Document!=='undefined'&&_0x1f05bf['push'](checkChain(document,'document',Document['prototype'],'Document.prototype'));const _0x7cdde0=navigator['constructor']===Navigator,_0x17118d={};_0x17118d['target']='navigator.constructor===Navigator',_0x17118d['intact']=_0x7cdde0,_0x17118d['depth']=0x0,_0x1f05bf['push'](_0x17118d);const _0x4abf92=Object['prototype']['toString']['call'](navigator),_0x37f8e4={};_0x37f8e4['target']='navigator.toStringTag',_0x37f8e4['intact']=_0x4abf92==='[object\x20Navigator]',_0x37f8e4['depth']=0x0,_0x1f05bf['push'](_0x37f8e4);const _0x5a3120=Object['prototype']['toString']['call'](screen),_0x481a70={};_0x481a70['target']='screen.toStringTag',_0x481a70['intact']=_0x5a3120==='[object\x20Screen]',_0x481a70['depth']=0x0,_0x1f05bf['push'](_0x481a70);}catch{}const _0x4913d7=_0x1f05bf['length']>0x0&&_0x1f05bf['every'](_0x1ec9c3=>_0x1ec9c3['intact']),_0x367188={};return _0x367188['valid']=_0x4913d7,_0x367188['checks']=_0x1f05bf,_0x367188;}const LIGHT_TARGETS=[[Navigator['prototype'],'hardwareConcurrency'],[Navigator['prototype'],'platform'],[Navigator['prototype'],'userAgent'],[Navigator['prototype'],'languages'],[Navigator['prototype'],'webdriver'],[Screen['prototype'],'width'],[Screen['prototype'],'height'],[Screen['prototype'],'colorDepth']];function getLightTargets(){const _0x46c095=[...LIGHT_TARGETS];try{typeof CanvasRenderingContext2D!=='undefined'&&(_0x46c095['push']([CanvasRenderingContext2D['prototype'],'getImageData']),_0x46c095['push']([CanvasRenderingContext2D['prototype'],'fillText']));}catch{}try{typeof HTMLCanvasElement!=='undefined'&&_0x46c095['push']([HTMLCanvasElement['prototype'],'toDataURL']);}catch{}try{typeof WebGLRenderingContext!=='undefined'&&_0x46c095['push']([WebGLRenderingContext['prototype'],'getParameter']);}catch{}try{_0x46c095['push']([Date['prototype'],'getTimezoneOffset']);}catch{}try{typeof Intl!=='undefined'&&typeof Intl['DateTimeFormat']!=='undefined'&&_0x46c095['push']([Intl['DateTimeFormat']['prototype'],'resolvedOptions']);}catch{}return _0x46c095;}function getHighTargets(){const _0xebea33=getLightTargets(),_0x253c04=['appVersion','vendor','appName','connection','cookieEnabled','deviceMemory','doNotTrack','geolocation','language','maxTouchPoints','mimeTypes','onLine','permissions','plugins','product','productSub','serviceWorker','storage','vendorSub'];for(const _0xe8d06 of _0x253c04){_0xe8d06 in Navigator['prototype']&&_0xebea33['push']([Navigator['prototype'],_0xe8d06]);}const _0x508cb6=['availHeight','availWidth','pixelDepth','availLeft','availTop','orientation'];for(const _0x2bd72a of _0x508cb6){_0x2bd72a in Screen['prototype']&&_0xebea33['push']([Screen['prototype'],_0x2bd72a]);}const _0x463ed8=['cookie','domain','referrer','title','URL','hidden','visibilityState','fullscreenElement'];for(const _0x5b411e of _0x463ed8){_0x5b411e in Document['prototype']&&_0xebea33['push']([Document['prototype'],_0x5b411e]);}try{const _0x1bd094=['getBoundingClientRect','getClientRects','innerHTML','outerHTML','getAttribute','setAttribute'];for(const _0x530bb8 of _0x1bd094){_0x530bb8 in Element['prototype']&&_0xebea33['push']([Element['prototype'],_0x530bb8]);}}catch{}try{const _0x2256aa=['offsetWidth','offsetHeight','style'];for(const _0x3216a6 of _0x2256aa){_0x3216a6 in HTMLElement['prototype']&&_0xebea33['push']([HTMLElement['prototype'],_0x3216a6]);}}catch{}try{if(typeof CanvasRenderingContext2D!=='undefined'){const _0x28313e=['fillRect','strokeRect','measureText','font','globalCompositeOperation','drawImage'];for(const _0x49798d of _0x28313e){_0x49798d in CanvasRenderingContext2D['prototype']&&_0xebea33['push']([CanvasRenderingContext2D['prototype'],_0x49798d]);}}}catch{}try{if(typeof WebGLRenderingContext!=='undefined'){const _0x35137d=['getExtension','getSupportedExtensions','readPixels','createShader','shaderSource','compileShader'];for(const _0x1f73dc of _0x35137d){_0x1f73dc in WebGLRenderingContext['prototype']&&_0xebea33['push']([WebGLRenderingContext['prototype'],_0x1f73dc]);}}}catch{}try{typeof AudioContext!=='undefined'&&(_0xebea33['push']([AudioContext['prototype'],'createOscillator']),_0xebea33['push']([AudioContext['prototype'],'createAnalyser']),_0xebea33['push']([AudioContext['prototype'],'createGain']));}catch{}try{typeof OfflineAudioContext!=='undefined'&&_0xebea33['push']([OfflineAudioContext['prototype'],'startRendering']);}catch{}try{_0xebea33['push']([Performance['prototype'],'now']),_0xebea33['push']([Performance['prototype'],'getEntries']);}catch{}try{_0xebea33['push']([Storage['prototype'],'getItem']),_0xebea33['push']([Storage['prototype'],'setItem']);}catch{}try{const _0x48a300=['random','floor','ceil','round','sin','cos'];for(const _0x5d4812 of _0x48a300){_0x5d4812 in Math&&_0xebea33['push']([Math,_0x5d4812]);}}catch{}try{typeof MediaDevices!=='undefined'&&'enumerateDevices'in MediaDevices['prototype']&&_0xebea33['push']([MediaDevices['prototype'],'enumerateDevices']);}catch{}try{typeof Permissions!=='undefined'&&'query'in Permissions['prototype']&&_0xebea33['push']([Permissions['prototype'],'query']);}catch{}return _0xebea33;}function checkToString(_0x33c9dc,_0x318e1e){try{const _0x1b34b5=Object['getOwnPropertyDescriptor'](_0x33c9dc,_0x318e1e),_0x5a449d=_0x1b34b5?.['get']??_0x1b34b5?.['value']??_0x33c9dc[_0x318e1e];if(typeof _0x5a449d!=='function')return![];const _0x4aed70=Function['prototype']['toString']['call'](_0x5a449d);return!_0x4aed70['includes']('[native\x20code]');}catch{return![];}}function checkOwnDescriptor(_0x19fb38){try{const _0x40acc0=Object['getOwnPropertyDescriptor'](navigator,_0x19fb38);return _0x40acc0?.['value']!==undefined;}catch{return![];}}function checkHasPrototype(_0x415275,_0x5644ad){try{const _0x1b2b5c=Object['getOwnPropertyDescriptor'](_0x415275,_0x5644ad);if(!_0x1b2b5c?.['get'])return![];return'prototype'in _0x1b2b5c['get'];}catch{return![];}}function checkOwnPropertyNames(_0x236d3a,_0x43d5e9){try{const _0x5e2c4c=Object['getOwnPropertyDescriptor'](_0x236d3a,_0x43d5e9),_0x27c47a=_0x5e2c4c?.['get'];if(typeof _0x27c47a!=='function')return![];const _0x1583db=Object['getOwnPropertyNames'](_0x27c47a)['sort']();if(_0x1583db['length']>0x2)return!![];if(_0x1583db['length']===0x2&&(_0x1583db[0x0]!=='length'||_0x1583db[0x1]!=='name'))return!![];return![];}catch{return![];}}function checkClassExtends(_0x2ffb45,_0x24c393){try{const _0x3ffabe=Object['getOwnPropertyDescriptor'](_0x2ffb45,_0x24c393),_0x240b0f=_0x3ffabe?.['get'];if(typeof _0x240b0f!=='function')return![];class _0x4351bd extends _0x240b0f{}return void _0x4351bd,!![];}catch{return![];}}function checkNullProto(_0x35a4e1,_0xdfc567){try{const _0x49a89e=Object['getOwnPropertyDescriptor'](_0x35a4e1,_0xdfc567),_0x166cee=_0x49a89e?.['get']??_0x49a89e?.['value'];if(typeof _0x166cee!=='function')return![];const _0x722bdc=Object['create'](_0x166cee);return Object['setPrototypeOf'](_0x722bdc,null),_0x722bdc['toString'](),!![];}catch{return![];}}function checkIllegalInvocation(_0x2fcb89,_0x355748){try{const _0x5b60de=Object['getOwnPropertyDescriptor'](_0x2fcb89,_0x355748),_0x3e92ea=_0x5b60de?.['get'];if(typeof _0x3e92ea!=='function')return![];return _0x3e92ea['call'](undefined),!![];}catch(_0x256667){if(_0x256667 instanceof TypeError)return![];return!![];}}function checkBindToString(_0x4eab37,_0x596084){try{const _0x44c51d=Object['getOwnPropertyDescriptor'](_0x4eab37,_0x596084),_0x229c87=_0x44c51d?.['get']??_0x44c51d?.['value'];if(typeof _0x229c87!=='function')return![];const _0x4f68ec=_0x229c87['bind'](null),_0x41f3bf=Function['prototype']['toString']['call'](_0x4f68ec);return!_0x41f3bf['includes']('[native\x20code]')&&!_0x41f3bf['includes']('native\x20code');}catch{return![];}}function checkReflectKeys(_0x239a2b,_0x321ba3){try{const _0x594584=Object['getOwnPropertyDescriptor'](_0x239a2b,_0x321ba3),_0x593cc0=_0x594584?.['get']??_0x594584?.['value'];if(typeof _0x593cc0!=='function')return![];const _0x18ef1a=Reflect['ownKeys'](_0x593cc0)['sort'](),_0x5ba8a8=Object['getOwnPropertyNames'](_0x593cc0)['sort']();if(_0x18ef1a['length']!==_0x5ba8a8['length'])return!![];for(let _0x19bfbd=0x0;_0x19bfbd<_0x18ef1a['length'];_0x19bfbd++){if(_0x18ef1a[_0x19bfbd]!==_0x5ba8a8[_0x19bfbd])return!![];}return![];}catch{return![];}}function checkDescriptorKeys(_0xe170ca,_0x844f11){try{const _0x21c857=Object['getOwnPropertyDescriptor'](_0xe170ca,_0x844f11);if(!_0x21c857)return![];const _0x161b65=_0x21c857['get']??_0x21c857['set']??_0x21c857['value'];if(typeof _0x161b65!=='function')return![];const _0x4ada20=Object['getOwnPropertyDescriptors'](_0x161b65),_0x1ac8f3=Object['keys'](_0x4ada20)['filter'](_0x3bcb33=>_0x3bcb33!=='length'&&_0x3bcb33!=='name');return _0x1ac8f3['length']>0x0;}catch{return![];}}function checkInstanceOf(_0x9addd5,_0x47fe88){try{const _0x4f3906=Object['getOwnPropertyDescriptor'](_0x9addd5,_0x47fe88),_0x153b91=_0x4f3906?.['get']??_0x4f3906?.['value'];if(typeof _0x153b91!=='function')return![];const _0x626ef4=_0x153b91 instanceof _0x153b91;return _0x626ef4===!![];}catch{return![];}}let proxyDetectionMode='high';function setProxyDetectionMode(_0x402c0e){proxyDetectionMode=_0x402c0e;}function getProxyDetection(){const _0x680274=proxyDetectionMode,_0x2cb480=_0x680274==='high'?getHighTargets():getLightTargets(),_0x34f1ce=_0x680274==='high'?[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends,checkNullProto,checkIllegalInvocation,checkBindToString,checkReflectKeys,checkDescriptorKeys,checkInstanceOf]:[checkToString,checkHasPrototype,checkOwnPropertyNames,checkClassExtends],_0x4e5e6c=[];for(const [_0x14a820,_0x197842]of _0x2cb480){let _0x1f089c=![];try{_0x14a820===Navigator['prototype']&&checkOwnDescriptor(_0x197842)&&(_0x1f089c=!![]);}catch{}if(!_0x1f089c)for(const _0x2c4225 of _0x34f1ce){try{if(_0x2c4225(_0x14a820,_0x197842)){_0x1f089c=!![];break;}}catch{}}if(_0x1f089c){const _0x1f754b=_0x14a820['constructor']['name'];_0x4e5e6c['push'](_0x1f754b+'.'+_0x197842);}}const _0x57974b={};return _0x57974b['tested']=_0x2cb480['length'],_0x57974b['lied']=_0x4e5e6c['length'],_0x57974b['lies']=_0x4e5e6c,_0x57974b['mode']=_0x680274,_0x57974b;}function measureCssDimension(_0x24b148,_0x9a71e9,_0x2ef2c9){try{if(typeof matchMedia!=='function')return 0x0;let _0x50e6f9=_0x9a71e9,_0x2236c9=_0x2ef2c9;while(_0x2236c9-_0x50e6f9>0x1){const _0x2c6274=Math['floor']((_0x50e6f9+_0x2236c9)/0x2),_0x4822f5=_0x24b148==='width'?'(min-device-width:\x20'+_0x2c6274+'px)':'(min-device-height:\x20'+_0x2c6274+'px)';matchMedia(_0x4822f5)['matches']?_0x50e6f9=_0x2c6274:_0x2236c9=_0x2c6274;}return _0x50e6f9;}catch{return 0x0;}}function getScreenVerify(){try{const _0x299524=screen['width'],_0x48bce5=screen['height'],_0xd49abd=measureCssDimension('width',0x64,0x1f40),_0x58b4f7=measureCssDimension('height',0x64,0x1f40),_0x42e7bd=_0xd49abd===0x0||Math['abs'](_0x299524-_0xd49abd)<=0x1,_0xcbeb4e=_0x58b4f7===0x0||Math['abs'](_0x48bce5-_0x58b4f7)<=0x1,_0x3406bf={};return _0x3406bf['match']=_0x42e7bd&&_0xcbeb4e,_0x3406bf['screenWidth']=_0x299524,_0x3406bf['cssWidth']=_0xd49abd,_0x3406bf['screenHeight']=_0x48bce5,_0x3406bf['cssHeight']=_0x58b4f7,_0x3406bf['probed']=_0xd49abd>0x0&&_0x58b4f7>0x0,_0x3406bf;}catch{const _0x3e9e44={};return _0x3e9e44['match']=!![],_0x3e9e44['screenWidth']=0x0,_0x3e9e44['cssWidth']=0x0,_0x3e9e44['screenHeight']=0x0,_0x3e9e44['cssHeight']=0x0,_0x3e9e44['probed']=![],_0x3e9e44;}}function getStackBytes(){try{const _0x456cab=[];for(let _0xac3381=0x0;_0xac3381<0x5;_0xac3381++){let _0xe32de9=0x0;const _0x4d16aa=()=>{_0xe32de9++,_0x4d16aa();};try{_0x4d16aa();}catch{}let _0x1efdb9=0x0;const _0x4ebc9a=()=>{_0x1efdb9++;const _0x51240d=0x0;_0x4ebc9a();};try{_0x4ebc9a();}catch{}const _0x2d442a=_0xe32de9-_0x1efdb9;_0x2d442a>0x0&&_0x456cab['push'](Math['round'](_0x1efdb9*0x8/_0x2d442a));}if(_0x456cab['length']===0x0)return 0x0;return _0x456cab['sort']((_0x2b73ed,_0x1ea824)=>_0x2b73ed-_0x1ea824),_0x456cab[Math['floor'](_0x456cab['length']/0x2)]??0x0;}catch{return null;}}const NATIVE_BODY_RE=/\[native code\]\s*\}\s*$/;function isNativeFunction(_0x33c72b){if(typeof _0x33c72b!=='function')return![];try{const _0xd5540=Function['prototype']['toString']['call'](_0x33c72b);return NATIVE_BODY_RE['test'](_0xd5540);}catch{return![];}}function getTamperAggregate(){try{if(typeof document==='undefined'||typeof navigator==='undefined'||typeof window==='undefined')return null;const _0x35f3e2=isNativeFunction(document['createElement']),_0x592adf=isNativeFunction(window['fetch']),_0x3c253b=navigator['plugins'];if(_0x3c253b===undefined||_0x3c253b===null)return![];const _0x4a3a0d=_0x3c253b['constructor'],_0x3a1bc1=isNativeFunction(_0x4a3a0d),_0x4e2058=window['PluginArray'],_0x4e35f8=_0x4e2058!==undefined&&_0x4e2058!==null&&Object['getPrototypeOf'](_0x3c253b)===_0x4e2058['prototype'];return _0x35f3e2&&_0x592adf&&_0x3a1bc1&&_0x4e35f8;}catch{return null;}}const NATIVE_MARKER='[native\x20code]',DST_OBSERVING_PREFIXES=['America/','Europe/','Australia/','Pacific/Auckland','Pacific/Chatham','Pacific/Fiji','Pacific/Norfolk','Atlantic/Azores','Atlantic/Bermuda','Atlantic/Madeira','Atlantic/Stanley','Asia/Beirut','Asia/Damascus','Asia/Famagusta','Asia/Gaza','Asia/Hebron','Asia/Jerusalem','Asia/Nicosia','Asia/Tehran'],ANTARCTICA_DST_ZONES=new Set(['Antarctica/Macquarie','Antarctica/Troll','Antarctica/Palmer']),NO_DST_EXCEPTIONS=new Set(['America/Phoenix','America/Argentina/Buenos_Aires','America/Argentina/Catamarca','America/Argentina/Cordoba','America/Argentina/Jujuy','America/Argentina/La_Rioja','America/Argentina/Mendoza','America/Argentina/Rio_Gallegos','America/Argentina/Salta','America/Argentina/San_Juan','America/Argentina/San_Luis','America/Argentina/Tucuman','America/Argentina/Ushuaia','America/Bogota','America/Cancun','America/Cayenne','America/Cayman','America/Costa_Rica','America/El_Salvador','America/Guatemala','America/Guayaquil','America/Hermosillo','America/Jamaica','America/La_Paz','America/Lima','America/Managua','America/Manaus','America/Panama','America/Paramaribo','America/Port_of_Spain','America/Puerto_Rico','America/Tegucigalpa','Europe/Astrakhan','Europe/Kaliningrad','Europe/Kirov','Europe/Minsk','Europe/Moscow','Europe/Samara','Europe/Saratov','Europe/Simferopol','Europe/Ulyanovsk','Europe/Volgograd','Australia/Brisbane','Australia/Darwin','Australia/Eucla','Australia/Lindeman','Australia/Perth']),ETC_OR_UTC_REGEX=/^(?:Etc\/GMT[+-]?\d+|UTC|GMT)$/,IANA_NAME_REGEX=/^[A-Z][A-Za-z_-]+\/[A-Z][A-Za-z0-9_/+-]+$/,VALID_SINGLE_SEGMENT_TZ=new Set(['UCT','Universal','Zulu','EST','EST5EDT','WET','CET','MET','PST8PDT','MST','MST7MDT','CST6CDT','HST','Egypt','Eire','Greenwich','Hongkong','Iceland','Iran','Israel','Jamaica','Japan','Kwajalein','Libya','Navajo','Poland','Portugal','Singapore','Turkey','GMT','GMT0','Cuba']);function isNative(_0x47fd27){if(typeof _0x47fd27!=='function')return![];try{return Function['prototype']['toString']['call'](_0x47fd27)['includes'](NATIVE_MARKER);}catch{return![];}}function checkResolvedOptionsNative(){const _0x5afb3c=window['Intl'],_0x4c21f2=_0x5afb3c?.['DateTimeFormat']?.['prototype'];if(_0x4c21f2===undefined)return!![];return isNative(_0x4c21f2['resolvedOptions']);}function checkGetTimezoneOffsetNative(){const _0xb458d3=Date?.['prototype'];if(_0xb458d3===undefined)return!![];return isNative(_0xb458d3['getTimezoneOffset']);}function checkDstConsistency(_0x1b525e){if(ETC_OR_UTC_REGEX['test'](_0x1b525e))return null;if(VALID_SINGLE_SEGMENT_TZ['has'](_0x1b525e))return null;if(NO_DST_EXCEPTIONS['has'](_0x1b525e))return null;if(_0x1b525e['startsWith']('Antarctica/')&&!ANTARCTICA_DST_ZONES['has'](_0x1b525e))return null;const _0x27f974=DST_OBSERVING_PREFIXES['some'](_0x3a2c03=>_0x1b525e===_0x3a2c03['replace'](/\/$/,'')||_0x1b525e['startsWith'](_0x3a2c03))||ANTARCTICA_DST_ZONES['has'](_0x1b525e);if(!_0x27f974)return null;try{const _0x1395cf=new Date()['getFullYear'](),_0x4e00c0=new Date(_0x1395cf,0x0,0x1)['getTimezoneOffset'](),_0x5e4c62=new Date(_0x1395cf,0x6,0x1)['getTimezoneOffset']();if(_0x4e00c0===_0x5e4c62)return'dst_inconsistency';}catch{}return null;}function checkIanaFormat(_0x25da3f){if(_0x25da3f==='')return!![];if(ETC_OR_UTC_REGEX['test'](_0x25da3f))return!![];if(VALID_SINGLE_SEGMENT_TZ['has'](_0x25da3f))return!![];return IANA_NAME_REGEX['test'](_0x25da3f);}function getTzTampered(){const _0x58f542=[],_0x2ed269=[];try{!checkResolvedOptionsNative()&&_0x58f542['push']('non_native_resolved_options');}catch{_0x2ed269['push']('probe_failed');}try{!checkGetTimezoneOffsetNative()&&_0x58f542['push']('non_native_get_timezone_offset');}catch{_0x2ed269['push']('probe_failed');}let _0x70a0e5='';try{const _0x5187e8=window['Intl'],_0x194727=_0x5187e8?.['DateTimeFormat'];_0x194727!==undefined&&(_0x70a0e5=new _0x194727()['resolvedOptions']()['timeZone']??'');}catch{_0x2ed269['push']('probe_failed');}_0x70a0e5!==''&&!checkIanaFormat(_0x70a0e5)&&_0x58f542['push']('invalid_iana_format');if(_0x70a0e5!=='')try{const _0x28e70e=checkDstConsistency(_0x70a0e5);if(_0x28e70e!==null)_0x58f542['push'](_0x28e70e);}catch{_0x2ed269['push']('probe_failed');}const _0x4f9c0c={'detected':_0x58f542['length']>0x0,'reasons':_0x58f542,..._0x2ed269['length']>0x0?{'diagnostics':_0x2ed269}:{}};return _0x4f9c0c;}function getLanguagesProtoChain(){if(typeof navigator==='undefined')return null;const _0x566a61=navigator['languages'];if(_0x566a61===null||_0x566a61===undefined)return null;try{const _0x78fe44=Object['getPrototypeOf'](_0x566a61);if(_0x78fe44===null)return!![];if(_0x78fe44!==Array['prototype'])return!![];const _0x3cf7d5=_0x78fe44['constructor'];if(_0x3cf7d5!==Array)return!![];return![];}catch{return!![];}}const SAMPLE_COUNT=0x6,SAMPLE_STRIDE=0x1000,I32_SCALE=0x2**0x1f;function getMathRandomDeterminism(){const _0xad5918=[];let _0x4de443=Math['random']();for(let _0x2ed1ab=SAMPLE_COUNT*SAMPLE_STRIDE-0x1;_0x2ed1ab>=0x0;_0x2ed1ab-=0x1){if(_0x2ed1ab%SAMPLE_STRIDE===0x0){const _0x4bb343=Math['random']();_0xad5918['push']((_0x4de443-_0x4bb343)*I32_SCALE|0x0),_0x4de443=_0x4bb343;}}return _0xad5918;}const _0x15d466={};_0x15d466['label']='Navigator',_0x15d466['resolve']=()=>typeof window!=='undefined'&&'Navigator'in window?window['Navigator']['prototype']:null,_0x15d466['props']=['hardwareConcurrency','userAgent','platform','vendor','language','languages','deviceMemory','maxTouchPoints','webdriver'];const _0x4121e1={};_0x4121e1['label']='Screen',_0x4121e1['resolve']=()=>typeof window!=='undefined'&&'Screen'in window?window['Screen']['prototype']:null,_0x4121e1['props']=['width','height','availWidth','availHeight','colorDepth'];const _0x13ab0b={};_0x13ab0b['label']='Document',_0x13ab0b['resolve']=()=>typeof window!=='undefined'&&'Document'in window?window['Document']['prototype']:null,_0x13ab0b['props']=['cookie'];const CLASS_SPECS=[_0x15d466,_0x4121e1,_0x13ab0b];function getNativeGetterSource(){if(typeof window==='undefined')return null;const _0x308592={};for(const _0x19d5f4 of CLASS_SPECS){let _0x5cb213;try{_0x5cb213=_0x19d5f4['resolve']();}catch{continue;}if(_0x5cb213===null)continue;for(const _0x4bf37d of _0x19d5f4['props']){try{const _0x9ebac8=Object['getOwnPropertyDescriptor'](_0x5cb213,_0x4bf37d),_0x22f2b0=_0x9ebac8?.['get'];if(typeof _0x22f2b0!=='function')continue;const _0x44c69f=_0x22f2b0['toString']();_0x308592[_0x19d5f4['label']+'.'+_0x4bf37d]=_0x44c69f;}catch{}}}return _0x308592;}const DENYLIST=['webkitPersistentStorage','connectionSpeed','xr','hid'];function getNavigatorProtoFunctionNames(){if(typeof navigator==='undefined')return null;const _0xa18897=Object['getPrototypeOf'](navigator);if(_0xa18897===null)return null;const _0x58838e=[];for(const _0x24b16e of Object['getOwnPropertyNames'](_0xa18897)){if(DENYLIST['includes'](_0x24b16e))continue;try{const _0x4e5d40=navigator[_0x24b16e];if(typeof _0x4e5d40==='function'){const _0x2ad370=_0x4e5d40;typeof _0x2ad370['name']==='string'&&_0x58838e['push'](_0x2ad370['name']);}}catch(_0xb8e8fe){return{'ok':![],'error':_0xb8e8fe instanceof Error?_0xb8e8fe['message']:String(_0xb8e8fe)};}}const _0x22148d={};return _0x22148d['ok']=!![],_0x22148d['names']=_0x58838e,_0x22148d;}function getNodeTypeSanity(){if(typeof document==='undefined')return null;try{return document['createElement']('div')['nodeType']!==0x1;}catch{return!![];}}function getObjectFunctionTypeof(){return[typeof Object,typeof Function];}function getUrlIsTrusted(){if(typeof URL!=='function')return null;let _0x4a0f8b;try{_0x4a0f8b=new URL('');}catch{const _0x4162d0={};return _0x4162d0['acceptedEmpty']=![],_0x4162d0;}const _0xeb7d2c=_0x4a0f8b['isTrusted'],_0x6f97d={};return _0x6f97d['acceptedEmpty']=!![],_0x6f97d['isTrusted']=_0xeb7d2c,_0x6f97d;}const UD=0xf9d684ec,TARGET_HASHES=new Set([0xf4c8818b,0xbf53f276,0x9bb1268b,0x8dfb6cf0,0xc03b5091,0x3cb85adc,0xacd7554a,0x7cd3d994,0xbcea22ee,0xb7916bb5,0x17606f7d,0xce50ef1d,0xd585fbaa,0x673afc2a,0x69560c56,0xcbd311ab,0x422cb2d0,0x56c7ff24,0x1ad6e59b,0xa845651,0x77221929,0xb0857c03,0xcb7c7f4f,0x89108b4c,0xeb2c7a0f,0x1cf0e843,0xc6e1ec3c,0xdec06b24,0x9f1c624d,0xe6194b71,0xf9d684ec]);function getWindowPropertyNames(){try{const _0x5606e7=[],_0x157b26=Object['getOwnPropertyNames'](window);for(let _0x51be4f=0x0;_0x51be4f<_0x157b26['length'];_0x51be4f++){const _0x31b43f=crc32(_0x157b26[_0x51be4f]);TARGET_HASHES['has'](_0x31b43f)&&_0x5606e7['push'](_0x157b26[_0x51be4f]),_0x31b43f===UD&&_0x51be4f+0x1<_0x157b26['length']&&_0x5606e7['push'](_0x157b26[_0x51be4f+0x1]);}return _0x5606e7;}catch{return null;}}function getPlaywrightMarkers(){try{const _0x1bad70=window,_0x1095d6=['__pwInitScripts','__playwright__binding__','__playwright_evaluation_script__','__pw_manual'];for(const _0x1b3541 of _0x1095d6){if(_0x1b3541 in _0x1bad70)return!![];}return![];}catch{return![];}}const AUTOMATION_PATTERNS=['UtilityScript','__puppeteer_evaluation_script__','__playwright_evaluation_script__','__selenium_evaluation_script__','pptr://','playwright://','__puppeteer','__playwright'];function getSourceUrlLeak(){try{const _0xc2a7f1=new Error('probe'),_0xf63019=_0xc2a7f1['stack']??'';for(const _0x52e86f of AUTOMATION_PATTERNS){if(_0xf63019['includes'](_0x52e86f)){const _0x1dd912={};return _0x1dd912['leaked']=!![],_0x1dd912['pattern']=_0x52e86f,_0x1dd912;}}try{const _0x5e1aa6=new Function('return\x20new\x20Error(\x22probe\x22).stack'),_0x22953d=_0x5e1aa6();if(typeof _0x22953d==='string')for(const _0x35d4b5 of AUTOMATION_PATTERNS){if(_0x22953d['includes'](_0x35d4b5)){const _0x19ef74={};return _0x19ef74['leaked']=!![],_0x19ef74['pattern']=_0x35d4b5,_0x19ef74;}}}catch{}const _0x23620a={};return _0x23620a['leaked']=![],_0x23620a['pattern']=null,_0x23620a;}catch{const _0x224f4a={};return _0x224f4a['leaked']=![],_0x224f4a['pattern']=null,_0x224f4a;}}function getWebdriver(){const _0x27f98d=navigator['webdriver'],_0x4598ad={};_0x4598ad['status']=-0x1,_0x4598ad['value']=null,_0x4598ad['tampered']=![];if(_0x27f98d===null)return _0x4598ad;const _0x3df171={};_0x3df171['status']=-0x2,_0x3df171['value']=null,_0x3df171['tampered']=![];if(_0x27f98d===undefined)return _0x3df171;const _0x28e631=_0x27f98d===!![]||_0x27f98d===![];return{'status':0x0,'value':Boolean(_0x27f98d),'tampered':!_0x28e631};}function getWebdriverWritable(){try{const _0x3eb231=Object['getOwnPropertyDescriptor'](navigator,'webdriver')!==undefined;if(_0x3eb231){const _0x572877=Object['getOwnPropertyDescriptor'](navigator,'webdriver');if('value'in _0x572877)return!![];}const _0x55808d=Object['getOwnPropertyDescriptor'](Navigator['prototype'],'webdriver');if(!_0x55808d)return!![];if('value'in _0x55808d)return!![];if(typeof _0x55808d['set']==='function')return!![];return![];}catch{return![];}}function getWindowClose(){return window['close']===undefined?null:window['close']['toString']();}function getWindowProcess(){const _0x2b213f=window['process'];if(_0x2b213f===undefined)return undefined;if(_0x2b213f&&typeof _0x2b213f!=='object')return undefined;return _0x2b213f;}const WORKER_CODE='\x0a\x27use\x20strict\x27;\x0aself.window\x20=\x20self;\x0aself.document\x20=\x20{\x20hidden:\x20false,\x20addEventListener:\x20()\x20=>\x20{},\x20removeEventListener:\x20()\x20=>\x20{}\x20};\x0a\x0afunction\x20getWasmFeatures()\x20{\x0a\x20\x20try\x20{\x0a\x20\x20\x20\x20if\x20(typeof\x20WebAssembly\x20===\x20\x27undefined\x27\x20||\x20typeof\x20WebAssembly.validate\x20!==\x20\x27function\x27)\x20return\x20null;\x0a\x20\x20\x20\x20var\x20prefix\x20=\x20[0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10];\x0a\x20\x20\x20\x20var\x20modules\x20=\x20[\x0a\x20\x20\x20\x20\x20\x20[9,1,7,0,65,0,253,15,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[240,67,0,0,0,12,1,10,0,252,2,3,1,1,0,0,110,26,11,161,10],\x0a\x20\x20\x20\x20\x20\x20[6,1,4,0,18,0,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[8,1,6,0,65,0,192,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20\x20\x20[7,1,5,0,208,112,26,11,0,10,4,110,97,109,101,2,3,1,0,0],\x0a\x20\x20\x20\x20];\x0a\x20\x20\x20\x20var\x20bitmask\x20=\x200;\x0a\x20\x20\x20\x20for\x20(var\x20i\x20=\x200;\x20i\x20<\x20modules.length;\x20i++)\x20{\x0a\x20\x20\x20\x20\x20\x20bitmask\x20<<=\x201;\x0a\x20\x20\x20\x20\x20\x20var\x20bytes\x20=\x20new\x20Uint8Array(prefix.concat(modules[i]));\x0a\x20\x20\x20\x20\x20\x20if\x20(WebAssembly.validate(bytes.buffer))\x20bitmask\x20|=\x201;\x0a\x20\x20\x20\x20}\x0a\x20\x20\x20\x20return\x20bitmask;\x0a\x20\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0afunction\x20getSafe(fn)\x20{\x0a\x20\x20try\x20{\x20return\x20fn();\x20}\x20catch(e)\x20{\x20return\x20null;\x20}\x0a}\x0a\x0aself.addEventListener(\x27message\x27,\x20function(e)\x20{\x0a\x20\x20if\x20(e.data\x20===\x20\x27run\x27)\x20{\x0a\x20\x20\x20\x20var\x20result\x20=\x20{\x0a\x20\x20\x20\x20\x20\x20hardwareConcurrency:\x20getSafe(function()\x20{\x20return\x20navigator.hardwareConcurrency\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20deviceMemory:\x20getSafe(function()\x20{\x20return\x20navigator.deviceMemory\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20platform:\x20getSafe(function()\x20{\x20return\x20navigator.platform\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20userAgent:\x20getSafe(function()\x20{\x20return\x20navigator.userAgent\x20||\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20languages:\x20getSafe(function()\x20{\x20return\x20navigator.languages\x20?\x20Array.prototype.slice.call(navigator.languages)\x20:\x20null;\x20}),\x0a\x20\x20\x20\x20\x20\x20wasmFeatures:\x20getWasmFeatures(),\x0a\x20\x20\x20\x20\x20\x20doNotTrack:\x20getSafe(function()\x20{\x0a\x20\x20\x20\x20\x20\x20\x20\x20var\x20dnt\x20=\x20navigator.doNotTrack;\x0a\x20\x20\x20\x20\x20\x20\x20\x20return\x20dnt\x20===\x20undefined\x20||\x20dnt\x20===\x20null\x20?\x20null\x20:\x20String(dnt);\x0a\x20\x20\x20\x20\x20\x20}),\x0a\x20\x20\x20\x20};\x0a\x20\x20\x20\x20self.postMessage(result);\x0a\x20\x20}\x0a});\x0a\x0aself.postMessage(\x27ready\x27);\x0a';function getWorkerIsolation(){return new Promise(_0x54a9f2=>{try{if(typeof Worker==='undefined'||typeof Blob==='undefined'||typeof URL==='undefined'){_0x54a9f2(null);return;}const _0x55575b={};_0x55575b['type']='text/javascript';const _0x51acf4=new Blob([WORKER_CODE],_0x55575b),_0x4afcbe=URL['createObjectURL'](_0x51acf4);let _0x54d184=![];const _0x5cc263=new Worker(_0x4afcbe),_0x30566f=setTimeout(()=>{!_0x54d184&&(_0x54d184=!![],_0x5cc263['terminate'](),URL['revokeObjectURL'](_0x4afcbe),_0x54a9f2(null));},0x1f4);_0x5cc263['addEventListener']('error',()=>{!_0x54d184&&(_0x54d184=!![],clearTimeout(_0x30566f),_0x5cc263['terminate'](),URL['revokeObjectURL'](_0x4afcbe),_0x54a9f2(null));}),_0x5cc263['addEventListener']('message',_0x3ac008=>{if(_0x3ac008['data']==='ready'){_0x5cc263['postMessage']('run');return;}!_0x54d184&&(_0x54d184=!![],clearTimeout(_0x30566f),_0x5cc263['terminate'](),URL['revokeObjectURL'](_0x4afcbe),_0x54a9f2(_0x3ac008['data']));});}catch{_0x54a9f2(null);}});}const CSS_PROBES=[['container-type','inline-size'],['container-type','size'],['selector(&)',''],['grid-template-columns','subgrid'],['width','calc(sin(1)\x20*\x201px)'],['width','calc(cos(1)\x20*\x201px)'],['width','calc(tan(1)\x20*\x201px)'],['width','calc(round(1.5,\x201)\x20*\x201px)'],['width','calc(mod(5,\x203)\x20*\x201px)'],['width','calc(rem(5,\x203)\x20*\x201px)'],['width','calc(abs(-1)\x20*\x201px)'],['width','calc(sign(-1)\x20*\x201px)'],['color','oklch(0.5\x200.2\x20120)'],['color','oklab(0.5\x200.1\x200.1)'],['color','color(display-p3\x201\x200\x200)'],['color','color-mix(in\x20oklch,\x20red,\x20blue)'],['color','lch(50\x20100\x20120)'],['color','lab(50\x2080\x20-10)'],['color','hwb(120\x2010%\x2020%)'],['background','linear-gradient(in\x20oklch,\x20red,\x20blue)'],['text-wrap','balance'],['text-wrap','pretty'],['text-wrap','stable'],['initial-letter','2'],['hyphenate-limit-chars','6\x203\x202'],['text-spacing-trim','space-all'],['font-synthesis','small-caps'],['font-palette','normal'],['width','fit-content'],['field-sizing','content'],['interpolate-size','allow-keywords'],['anchor-name','--a'],['position-anchor','--a'],['selector(:is(a))',''],['selector(:where(a))',''],['selector(:has(a))',''],['view-transition-name','hero'],['animation-timeline','scroll()'],['scroll-timeline-name','--t'],['timeline-scope','--t'],['backdrop-filter','blur(2px)'],['-webkit-backdrop-filter','blur(2px)'],['mask-composite','add'],['mask-border-source','none'],['overscroll-behavior','contain'],['scroll-behavior','smooth'],['scrollbar-width','thin'],['scrollbar-gutter','stable'],['scroll-snap-type','x\x20mandatory'],['accent-color','auto'],['content-visibility','auto'],['contain','paint'],['aspect-ratio','1'],['color-scheme','dark'],['forced-color-adjust','none'],['print-color-adjust','exact'],['background','paint(worklet)']];function getCssSupportExtended(){if(typeof CSS==='undefined'||typeof CSS['supports']!=='function')return null;const _0x3109d8={};for(const [_0x16c68d,_0x14ecfd]of CSS_PROBES){const _0x16179e=_0x14ecfd===''?_0x16c68d:_0x16c68d+':'+_0x14ecfd;try{_0x3109d8[_0x16179e]=_0x14ecfd===''?CSS['supports'](_0x16c68d):CSS['supports'](_0x16c68d,_0x14ecfd);}catch{_0x3109d8[_0x16179e]=![];}}return _0x3109d8;}async function getDetectBrave(){if(!('brave'in navigator))return undefined;const _0x736216=Object['getOwnPropertyDescriptor'](navigator,'brave')?.['value']??navigator['brave'];if(_0x736216===undefined||typeof _0x736216['isBrave']!=='function')return undefined;try{return!!await _0x736216['isBrave']();}catch{return undefined;}}function getDetectChromium(){return isChromium();}function getDetectChromium86(){if(!isChromium())return null;return isChromium86OrNewer();}function getDetectChromium122(){if(!isChromium())return null;return isChromium122OrNewer();}function getDetectEdgeHTML(){return isEdgeHTML();}function getDetectGecko(){return isGecko();}function getDetectGecko120(){if(!isGecko())return null;return isGecko120OrNewer();}function getDetectGecko143(){if(!isGecko())return null;return isGecko143OrNewer();}const PERF_NOW_SAMPLES=0x7d0;async function getTorBrowserProbe(){return{'letterboxed':detectLetterboxing(),'screenInnerEqual':screen['width']===window['innerWidth'],'devicePixelRatioOne':window['devicePixelRatio']===0x1,'perfNowResolutionMs':measurePerfNowResolution(),'canvasAllWhite':probeCanvasAllWhite(),'mediaDevicesRfp':await probeMediaDevicesRfp(),'webGpuPresent':typeof navigator['gpu']!=='undefined','offscreenCanvasPresent':typeof window['OffscreenCanvas']!=='undefined','prefersColorSchemeLight':probePrefersColorSchemeLight(),'navigatorBravePresent':typeof navigator['brave']!=='undefined'};}function detectLetterboxing(){const _0x1aeb8b=window['innerWidth'],_0x2177a0=window['innerHeight'];if(_0x1aeb8b<=0x0||_0x2177a0<=0x0)return![];return _0x1aeb8b%0xc8===0x0&&_0x2177a0%0x64===0x0&&_0x1aeb8b<=0x578&&_0x2177a0<=0x384;}function measurePerfNowResolution(){let _0x16e5d2=Infinity,_0x519f67=performance['now']();for(let _0xc90a9f=0x0;_0xc90a9f<PERF_NOW_SAMPLES;_0xc90a9f++){const _0x33ec10=performance['now'](),_0xc36545=_0x33ec10-_0x519f67;if(_0xc36545>0x0&&_0xc36545<_0x16e5d2)_0x16e5d2=_0xc36545;_0x519f67=_0x33ec10;}if(!Number['isFinite'](_0x16e5d2))return 0x0;return Math['round'](_0x16e5d2);}function probeCanvasAllWhite(){try{const _0x5cf63f=document['createElement']('canvas');_0x5cf63f['width']=0x10,_0x5cf63f['height']=0x10;const _0x20cc87=_0x5cf63f['getContext']('2d');if(_0x20cc87===null)return null;_0x20cc87['fillStyle']='#000000',_0x20cc87['fillRect'](0x0,0x0,0x10,0x10);const _0x47910b=_0x5cf63f['toDataURL']('image/png'),_0x148081=_0x20cc87['getImageData'](0x0,0x0,0x10,0x10)['data'];for(let _0x561e50=0x0;_0x561e50<_0x148081['length'];_0x561e50+=0x4){if(_0x148081[_0x561e50]!==0xff||_0x148081[_0x561e50+0x1]!==0xff||_0x148081[_0x561e50+0x2]!==0xff)return![];}return void _0x47910b,!![];}catch{return null;}}async function probeMediaDevicesRfp(){try{const _0x36cdcb=navigator['mediaDevices'];if(_0x36cdcb===undefined||typeof _0x36cdcb['enumerateDevices']!=='function')return null;const _0x5335a6=await _0x36cdcb['enumerateDevices']();if(_0x5335a6['length']!==0x2)return![];const _0x2cac5a=_0x5335a6['map'](_0x314f83=>_0x314f83['label'])['sort']();return _0x2cac5a[0x0]==='Internal\x20Camera'&&_0x2cac5a[0x1]==='Internal\x20Microphone';}catch{return null;}}function probePrefersColorSchemeLight(){try{const _0x467996=window['matchMedia']('(prefers-color-scheme:\x20dark)'),_0x1af12d=window['matchMedia']('(prefers-color-scheme:\x20light)');return _0x1af12d['matches']&&!_0x467996['matches'];}catch{return![];}}function getDetectMobile(){return isAndroid();}const THRESHOLD=0x3;function getDetectSamsungInternet(){if(typeof window==='undefined'||typeof navigator==='undefined')return null;const _0x25c2aa=window,_0xdfd2e9=navigator,_0x2deb91=_0x25c2aa['Audio']?.['prototype']??{},_0x3b6d6b=_0x25c2aa['Image']?.['prototype']??{},_0x2603de=_0x25c2aa['visualViewport'];let _0x2fa7c3=0x0;if('srLatency'in _0x2deb91)_0x2fa7c3++;if('srChannelCount'in _0x2deb91)_0x2fa7c3++;if('devicePosture'in _0xdfd2e9)_0x2fa7c3++;if(_0x2603de!==undefined&&_0x2603de!==null&&'segments'in _0x2603de)_0x2fa7c3++;if('getTextInformation'in _0x3b6d6b)_0x2fa7c3++;return _0x2fa7c3>=THRESHOLD;}function getDetectSafari(){if(isSafariWebKit())return!![];if(isWebKit()&&isDesktopWebKit()&&!isGecko()&&!isChromium())return!![];return![];}function getDetectTrident(){return isTrident();}function getDetectWebKit(){return isWebKit();}function getDetectWebKit606(){if(!isWebKit())return null;return isWebKit606OrNewer();}function getDetectWebKit616(){if(!isWebKit())return null;return isWebKit616OrNewer();}function isMobileTouchCapable(){if(typeof navigator==='undefined')return![];const _0x5151b7=navigator;return typeof _0x5151b7['maxTouchPoints']==='number'&&_0x5151b7['maxTouchPoints']>0x0;}function getSafariLocalStorageCallable(){if(!isWebKit()||!isSafariWebKit()||isMobileTouchCapable())return null;try{;window['localStorage'](null,null,null,null);}catch{return!![];}try{return window['sessionStorage']['setItem']('test','1'),window['sessionStorage']['removeItem']('test'),![];}catch{return!![];}}const BLACKLIST=['webkitPersistentStorage','connectionSpeed','xr','hid'];function getNavigatorMethods(){const _0x3d8dad=navigator,_0x4ceef7=[];for(const _0x16c007 of Object['getOwnPropertyNames'](Object['getPrototypeOf'](_0x3d8dad))){if(BLACKLIST['includes'](_0x16c007))continue;try{const _0x399672=_0x3d8dad[_0x16c007];typeof _0x399672==='function'&&_0x399672['name']!==undefined&&_0x4ceef7['push'](_0x399672['name']);}catch(_0x2d8ce0){return[_0x2d8ce0 instanceof Error?_0x2d8ce0['message']:String(_0x2d8ce0)];}}return _0x4ceef7;}const HIGH_ENTROPY_HINTS=['brands','mobile','platform','platformVersion','architecture','bitness','model','uaFullVersion','fullVersionList'];async function getUAClientHints(){const _0x2c2a80=navigator['userAgentData'];if(!_0x2c2a80||typeof _0x2c2a80!=='object')return undefined;const _0x361605={},_0x1440bb=[];if(typeof _0x2c2a80['getHighEntropyValues']==='function'){const _0x2b31a5=_0x2c2a80['getHighEntropyValues']['bind'](_0x2c2a80);await Promise['all'](HIGH_ENTROPY_HINTS['map'](async _0x2debfd=>{try{const _0x3af4af=await _0x2b31a5([_0x2debfd]),_0x2978cc=_0x3af4af[_0x2debfd];_0x2978cc!==undefined&&(_0x361605[_0x2debfd]=typeof _0x2978cc==='string'?_0x2978cc:JSON['stringify'](_0x2978cc));}catch(_0x5a1071){if(_0x5a1071 instanceof Error&&_0x5a1071['name']==='NotAllowedError')_0x1440bb['push'](_0x2debfd);else throw _0x5a1071;}}));}return{'b':_0x2c2a80['brands']['map'](_0x1fca58=>({'b':_0x1fca58['brand'],'v':_0x1fca58['version']})),'m':_0x2c2a80['mobile'],'p':_0x2c2a80['platform']??null,'h':_0x361605,'nah':_0x1440bb};}function getVendorFlavors(){const _0xa1d53a=[];for(const _0x5558aa of['chrome','safari','__crWeb','__gCrWeb','yandex','__yb','__ybro','__firefox__','__edgeTrackingPreventionStatistics','webkit','oprt','samsungAr','ucweb','UCShellJava','puffinDevice']){const _0x644c20=window[_0x5558aa];_0x644c20!==undefined&&_0x644c20!==null&&typeof _0x644c20==='object'&&_0xa1d53a['push'](_0x5558aa);}return _0xa1d53a['sort']();}const _0x1e294f={};_0x1e294f['workerIsolation']=getWorkerIsolation,_0x1e294f['webGlExtended']=getWebGlExtended;const stage1Sources=_0x1e294f,_0x278dfb={};_0x278dfb['canvas']=getCanvasSignal,_0x278dfb['canvasAdvanced']=getCanvasAdvanced,_0x278dfb['canvasRandom']=getCanvasRandom,_0x278dfb['canvasPow']=getCanvasPow,_0x278dfb['webGpu']=getWebGpuSignal,_0x278dfb['webGlExtensionsHashed']=getWebGlExtensionsHashed,_0x278dfb['audio']=getAudioSignal,_0x278dfb['audioTrap']=getAudioTrap,_0x278dfb['audioConsistency']=getAudioConsistency,_0x278dfb['fonts']=getFonts,_0x278dfb['fontPreferences']=getFontPreferences,_0x278dfb['osFontValidation']=getOsFontValidation,_0x278dfb['systemColors']=getSystemColors,_0x278dfb['scrollbarWidth']=getScrollbarWidth,_0x278dfb['formControlFont']=getFormControlFont,_0x278dfb['subPixelRendering']=getSubPixelRendering,_0x278dfb['screenFrame']=getScreenFrame,_0x278dfb['screenIframe']=getScreenIframe,_0x278dfb['emoji']=getEmojiSignal,_0x278dfb['svgEmoji']=getSvgEmojiSignal,_0x278dfb['mathml']=getMathML,_0x278dfb['computedStyle']=getComputedStyleSignal,_0x278dfb['iframeProxy']=getIframeProxy,_0x278dfb['iframeSignals']=getIframeSignals,_0x278dfb['adblockFilterMatch']=getAdblockFilterMatch,_0x278dfb['videoCodecs']=getVideoCodecs,_0x278dfb['drmSystems']=getDrmSystems,_0x278dfb['mediaCodecsExtended']=getMediaCodecsExtended,_0x278dfb['webAuthnCapabilities']=getWebAuthnCapabilities,_0x278dfb['speechVoices']=getSpeechVoices,_0x278dfb['barcodeDetection']=getBarcodeDetection,_0x278dfb['subtleCryptoExport']=getSubtleCryptoExport,_0x278dfb['webRtcDevices']=getWebRtcDevices,_0x278dfb['networkIceProbe']=getNetworkIceProbe,_0x278dfb['permissions']=getPermissions,_0x278dfb['notificationContradiction']=getNotificationContradiction,_0x278dfb['fileSystemAccess']=getFileSystemAccess,_0x278dfb['storageQuota']=getStorageQuota,_0x278dfb['storageEstimate']=getStorageEstimate,_0x278dfb['indexedDbBlob']=getIndexedDbBlob,_0x278dfb['geolocationProbe']=getGeolocationProbe,_0x278dfb['battery']=getBatterySignal,_0x278dfb['filesystemUrlProbe']=getFilesystemUrlProbe,_0x278dfb['storagePersisted']=getStoragePersisted,_0x278dfb['incognitoDetection']=getIncognitoDetection,_0x278dfb['headless']=getHeadlessSignals,_0x278dfb['restrictedEnvironment']=getRestrictedEnvironment,_0x278dfb['uaClientHints']=getUAClientHints,_0x278dfb['detectBrave']=getDetectBrave,_0x278dfb['detectSamsungInternet']=getDetectSamsungInternet,_0x278dfb['torBrowserProbe']=getTorBrowserProbe,_0x278dfb['wasmFeaturesWorker']=getWasmFeaturesWorker,_0x278dfb['scrollBehavior']=getScrollBehavior,_0x278dfb['interactionTiming']=getInteractionTiming;const stage2Sources=_0x278dfb,_0x4ee2ff={};_0x4ee2ff['osCpu']=getOsCpu,_0x4ee2ff['languages']=getLanguages,_0x4ee2ff['navigatorLanguages']=getNavigatorLanguages,_0x4ee2ff['colorDepth']=getColorDepth,_0x4ee2ff['deviceMemory']=getDeviceMemory,_0x4ee2ff['screenResolution']=getScreenResolution,_0x4ee2ff['hardwareConcurrency']=getHardwareConcurrency,_0x4ee2ff['timezone']=getTimezone,_0x4ee2ff['platform']=getPlatform,_0x4ee2ff['plugins']=getPlugins,_0x4ee2ff['pluginsCount']=getPluginsCount,_0x4ee2ff['pluginsArray']=getPluginsArray,_0x4ee2ff['touchSupport']=getTouchSupport,_0x4ee2ff['vendor']=getVendor,_0x4ee2ff['vendorFlavors']=getVendorFlavors,_0x4ee2ff['userAgent']=getUserAgent,_0x4ee2ff['appVersion']=getAppVersion,_0x4ee2ff['userAgentData']=getUserAgentData,_0x4ee2ff['productSub']=getProductSub,_0x4ee2ff['windowDimensions']=getWindowDimensions,_0x4ee2ff['devicePixelRatio']=getDevicePixelRatio,_0x4ee2ff['sessionStorage']=getSessionStorage,_0x4ee2ff['localStorage']=getLocalStorage,_0x4ee2ff['indexedDB']=getIndexedDB,_0x4ee2ff['cookiesEnabled']=areCookiesEnabled,_0x4ee2ff['webSqlDatabase']=getWebSqlDatabase,_0x4ee2ff['colorGamut']=getColorGamut,_0x4ee2ff['colorScheme']=getColorScheme,_0x4ee2ff['invertedColors']=areColorsInverted,_0x4ee2ff['forcedColors']=areColorsForced,_0x4ee2ff['contrast']=getContrastPreference,_0x4ee2ff['reducedMotion']=isMotionReduced,_0x4ee2ff['reducedTransparency']=getReducedTransparency,_0x4ee2ff['hdr']=isHDR,_0x4ee2ff['mediaQueries']=getMediaQueries,_0x4ee2ff['cssSupports']=getCssSupports,_0x4ee2ff['cssSupportExtended']=getCssSupportExtended,_0x4ee2ff['cssRegisterProperty']=getCssRegisterProperty,_0x4ee2ff['cssCalcResolved']=getCssCalcResolved,_0x4ee2ff['cssTrigPrecision']=getCssTrigPrecision,_0x4ee2ff['math']=getMathSignal,_0x4ee2ff['endianness']=getEndianness,_0x4ee2ff['performanceNowMicroseconds']=getPerformanceNowMicroseconds,_0x4ee2ff['performanceResolution']=getPerformanceResolution,_0x4ee2ff['performanceMemory']=getPerformanceMemory,_0x4ee2ff['timerReliability']=getTimerReliability,_0x4ee2ff['epochTimestamp']=getEpochTimestamp,_0x4ee2ff['measuredTimezone']=getMeasuredTimezone,_0x4ee2ff['tzTampered']=getTzTampered,_0x4ee2ff['connectionInfo']=getConnectionInfo,_0x4ee2ff['connectionExtended']=getConnectionExtended,_0x4ee2ff['connectionSaveData']=getConnectionSaveData,_0x4ee2ff['networkRtt']=getNetworkRTT,_0x4ee2ff['navigatorOnline']=getNavigatorOnline,_0x4ee2ff['secureContext']=getSecureContext,_0x4ee2ff['serviceWorkerPresence']=getServiceWorkerPresence,_0x4ee2ff['sharedArrayBuffer']=getSharedArrayBuffer,_0x4ee2ff['notificationPresence']=getNotificationPresence,_0x4ee2ff['documentFocus']=getDocumentFocus,_0x4ee2ff['documentAttributes']=getDocumentAttributes,_0x4ee2ff['pageUrl']=getPageUrl,_0x4ee2ff['urlSegmentsHash']=getUrlSegmentsHash,_0x4ee2ff['ancestorOrigins']=getAncestorOrigins,_0x4ee2ff['doNotTrack']=getDoNotTrack,_0x4ee2ff['pdfViewerEnabled']=isPdfViewerEnabled,_0x4ee2ff['privateClickMeasurement']=getPrivateClickMeasurement,_0x4ee2ff['installedRelatedApps']=getInstalledRelatedApps,_0x4ee2ff['standalonePwa']=getStandalonePwa,_0x4ee2ff['applePay']=getApplePayState,_0x4ee2ff['audioBaseLatency']=getAudioContextBaseLatency,_0x4ee2ff['audioContextInfo']=getAudioContextInfo,_0x4ee2ff['mediaSession']=getMediaSession,_0x4ee2ff['mimeTypes']=getMimeTypes,_0x4ee2ff['mimeTypesCount']=getMimeTypesCount,_0x4ee2ff['pluginPropsEnum']=getPluginPropsEnum,_0x4ee2ff['supportedConstraints']=getSupportedConstraints,_0x4ee2ff['bomEnumeration']=getBomEnumeration,_0x4ee2ff['urlProtocolParser']=getUrlProtocolParser,_0x4ee2ff['architecture']=getArchitecture,_0x4ee2ff['wasmFeatures']=getWasmFeatures,_0x4ee2ff['featureVersion']=getFeatureVersion,_0x4ee2ff['lockdownFeatures']=getLockdownFeatures,_0x4ee2ff['intlCurrency']=getIntlCurrency,_0x4ee2ff['intlMetadata']=getIntlMetadata,_0x4ee2ff['intlSegmenter']=getIntlSegmenter,_0x4ee2ff['localeCurrency']=getLocaleCurrency,_0x4ee2ff['dateTimeLocale']=getDateTimeLocale,_0x4ee2ff['detectTrident']=getDetectTrident,_0x4ee2ff['detectEdgeHTML']=getDetectEdgeHTML,_0x4ee2ff['detectChromium']=getDetectChromium,_0x4ee2ff['detectChromium86']=getDetectChromium86,_0x4ee2ff['detectChromium122']=getDetectChromium122,_0x4ee2ff['detectGecko']=getDetectGecko,_0x4ee2ff['detectGecko120']=getDetectGecko120,_0x4ee2ff['detectGecko143']=getDetectGecko143,_0x4ee2ff['detectWebKit']=getDetectWebKit,_0x4ee2ff['detectWebKit606']=getDetectWebKit606,_0x4ee2ff['detectWebKit616']=getDetectWebKit616,_0x4ee2ff['detectSafari']=getDetectSafari,_0x4ee2ff['detectMobile']=getDetectMobile,_0x4ee2ff['navigatorMethods']=getNavigatorMethods,_0x4ee2ff['safariLocalStorageCallable']=getSafariLocalStorageCallable,_0x4ee2ff['webdriver']=getWebdriver,_0x4ee2ff['webdriverWritable']=getWebdriverWritable,_0x4ee2ff['windowProcess']=getWindowProcess,_0x4ee2ff['windowClose']=getWindowClose,_0x4ee2ff['windowPropertyNames']=getWindowPropertyNames,_0x4ee2ff['navigatorProtoFunctionNames']=getNavigatorProtoFunctionNames,_0x4ee2ff['nativeGetterSource']=getNativeGetterSource,_0x4ee2ff['navigatorDescriptors']=getNavigatorDescriptors,_0x4ee2ff['bindToString']=getBindToString,_0x4ee2ff['evalLength']=getEvalLength,_0x4ee2ff['errorStack']=getErrorStackFormat,_0x4ee2ff['createElementDescriptor']=getCreateElementDescriptor,_0x4ee2ff['getterProxyDetection']=getGetterProxyDetection,_0x4ee2ff['getterToString']=getGetterToString,_0x4ee2ff['externalObjectString']=getExternalObjectString,_0x4ee2ff['objectInspectGlobal']=getObjectInspectGlobal,_0x4ee2ff['objectFunctionTypeof']=getObjectFunctionTypeof,_0x4ee2ff['prototypeChain']=getPrototypeChain,_0x4ee2ff['pluginOverflow']=getPluginOverflow,_0x4ee2ff['languagesProtoChain']=getLanguagesProtoChain,_0x4ee2ff['elementMatchesPolyfill']=getElementMatchesPolyfill,_0x4ee2ff['nodeTypeSanity']=getNodeTypeSanity,_0x4ee2ff['proxyDetection']=getProxyDetection,_0x4ee2ff['protoChainProxyTrap']=getProtoChainProxyTrap,_0x4ee2ff['tamperAggregate']=getTamperAggregate,_0x4ee2ff['screenVerify']=getScreenVerify,_0x4ee2ff['canvasModified']=getCanvasModified,_0x4ee2ff['gpuGibberish']=getGpuGibberish,_0x4ee2ff['extensionDetection']=getExtensionDetection,_0x4ee2ff['platformApiScoring']=getPlatformApiScoring,_0x4ee2ff['stackBytes']=getStackBytes,_0x4ee2ff['mathRandomDeterminism']=getMathRandomDeterminism,_0x4ee2ff['urlIsTrusted']=getUrlIsTrusted,_0x4ee2ff['eventIsTrusted']=getEventIsTrusted,_0x4ee2ff['automationDescriptor']=getAutomationDescriptor,_0x4ee2ff['cdpDetection']=getCdpDetection,_0x4ee2ff['chromeRuntime']=getChromeRuntime,_0x4ee2ff['playwrightMarkers']=getPlaywrightMarkers,_0x4ee2ff['stealthMarkers']=getStealthMarkers,_0x4ee2ff['sourceUrlLeak']=getSourceUrlLeak,_0x4ee2ff['devtoolsDetection']=getDevtoolsDetection,_0x4ee2ff['devtoolsWindowSize']=getDevtoolsWindowSize,_0x4ee2ff['webGlBasics']=getWebGlBasics,_0x4ee2ff['webGlCanvas']=getWebGlCanvas,_0x4ee2ff['webGlSphere']=getWebGlSphere,_0x4ee2ff['webGpuContention']=getWebGpuContention,_0x4ee2ff['webCodecsHardware']=getWebCodecsHardware;const stage3Sources=_0x4ee2ff;let lastPipelineTrace=null;function timedSource(_0x1dbd44,_0x1d777d,_0x241981){return _0x41b424=>{const _0x291c05=performance['now'](),_0x17b23c=()=>{_0x241981[_0x1dbd44]=performance['now']()-_0x291c05;},_0x2cb4c9=_0x12a012=>{return()=>{const _0x36a9bb=_0x12a012();if(isPromise(_0x36a9bb))return _0x36a9bb['then'](_0x189f3a=>{return _0x17b23c(),_0x189f3a;});return _0x17b23c(),_0x36a9bb;};},_0x4672a2=_0x1d777d(_0x41b424);if(isPromise(_0x4672a2))return _0x4672a2['then'](_0x3cc602=>{if(typeof _0x3cc602==='function')return _0x2cb4c9(_0x3cc602);return _0x17b23c(),_0x3cc602;});if(typeof _0x4672a2==='function')return _0x2cb4c9(_0x4672a2);return _0x17b23c(),_0x4672a2;};}function instrumentSources(_0x22a59f,_0x3e47b2){const _0x5563ed={};for(const _0x5aba48 of Object['keys'](_0x22a59f)){_0x5563ed[_0x5aba48]=timedSource(_0x5aba48,_0x22a59f[_0x5aba48],_0x3e47b2);}return _0x5563ed;}function getPipelineTrace(){return lastPipelineTrace;}function loadBuiltinSources(_0x54e6d6){const _0x5c8e55={'initTime':performance['now'](),'wave1LoadStart':null,'idleResolvedAt':null,'wave2LoadStart':null,'getStart':null,'wave1Done':null,'wave2Done':null,'allDone':null,'stage1Keys':Object['keys'](stage1Sources),'stage2Keys':Object['keys'](stage2Sources),'stage3Keys':Object['keys'](stage3Sources),'collectorTimings':{}};lastPipelineTrace=_0x5c8e55;const _0x2df426={...stage1Sources,...stage2Sources},_0x5d7b79=instrumentSources(_0x2df426,_0x5c8e55['collectorTimings']),_0x50c891=Object['keys'](_0x5d7b79)['length']>0x0,_0x528b2a=_0x50c891?((()=>{return _0x5c8e55['wave1LoadStart']=performance['now'](),loadSources(_0x5d7b79,_0x54e6d6,[]);})()):null,_0x122ba6=instrumentSources(stage3Sources,_0x5c8e55['collectorTimings']),_0x5b5b8c=requestIdleCallbackIfAvailable(0x8,0x10)['then'](()=>{return _0x5c8e55['idleResolvedAt']=performance['now'](),_0x5c8e55['wave2LoadStart']=performance['now'](),loadSources(_0x122ba6,_0x54e6d6,[]);});return _0x5b5b8c['then'](undefined,()=>undefined),async function _0x332522(){_0x5c8e55['getStart']=performance['now']();if(_0x528b2a){const [_0x1516f2,_0x320393]=await Promise['all']([_0x528b2a()['then'](_0x562841=>{return _0x5c8e55['wave1Done']=performance['now'](),_0x562841;}),_0x5b5b8c['then'](_0x4ea301=>_0x4ea301())['then'](_0x13c210=>{return _0x5c8e55['wave2Done']=performance['now'](),_0x13c210;})]);_0x5c8e55['allDone']=performance['now']();const _0x5b3035={..._0x320393,..._0x1516f2};return _0x5b3035;}const _0x2135b1=await _0x5b5b8c,_0x2f02cc=await _0x2135b1();return _0x5c8e55['wave2Done']=performance['now'](),_0x5c8e55['allDone']=performance['now'](),_0x2f02cc;};}const SANDBOX_MESSAGE_PATTERNS=[/sandboxed.*allow-same-origin/i,/operation is insecure/i,/forbidden in a sandboxed/i];function isSandboxedIframe(){if(typeof document==='undefined')return![];try{return void document['cookie'],![];}catch(_0xc5617c){if(!(_0xc5617c instanceof DOMException))return![];const _0x16f88b=_0xc5617c['message'];for(const _0xae8c58 of SANDBOX_MESSAGE_PATTERNS){if(_0xae8c58['test'](_0x16f88b))return!![];}return _0xc5617c['name']==='SecurityError';}}const version='1.0.3';function componentsToDebugString(_0x44227b){return JSON['stringify'](_0x44227b,(_0x32f5e3,_0x11084d)=>{if(_0x11084d instanceof Error)return errorToObject(_0x11084d);return _0x11084d;},0x2);}function makeEngine(_0x2471e1,_0x1b0715){const _0xd4f459=Date['now']();return{async 'get'(_0xf12590){const _0x473bcc=Date['now'](),_0xa2b555=await _0x2471e1();(_0x1b0715===!![]||_0xf12590?.['debug']===!![])&&console['log']('Copy\x20the\x20text\x20below\x20to\x20get\x20the\x20debug\x20data:\x0a\x0a```\x0aversion:\x20'+version+'\x0auserAgent:\x20'+navigator['userAgent']+'\x0atimeBetweenLoadAndGet:\x20'+(_0x473bcc-_0xd4f459)+'\x0acomponents:\x20'+componentsToDebugString(_0xa2b555)+'\x0a```');const _0x3252f5={};return _0x3252f5['components']=_0xa2b555,_0x3252f5['version']=version,_0x3252f5;}};}function load(_0xeb5c3e={}){if(isSandboxedIframe())throw new SentinelError('Running\x20inside\x20sandboxed\x20iframes\x20(without\x20allow-same-origin)\x20is\x20not\x20supported','sandboxed_iframe');const {debug:_0x1c8b09,proxyDetection:proxyDetection='high',apiKey:_0x411634,endpoint:_0x34ff52,linkedId:_0x1dfd24,tag:_0x5c4b11}=_0xeb5c3e;setProxyDetectionMode(proxyDetection);const _0x263b0a={};_0x263b0a['cache']={},_0x263b0a['debug']=_0x1c8b09;const _0x1f16d2=loadBuiltinSources(_0x263b0a),_0x4b8333=makeEngine(_0x1f16d2,_0x1c8b09);if(_0x411634!==undefined&&_0x34ff52!==undefined){const _0x3bebf9={};_0x3bebf9['apiKey']=_0x411634,_0x3bebf9['endpoint']=_0x34ff52;const _0x402a77={};_0x402a77['linkedId']=_0x1dfd24,_0x402a77['tag']=_0x5c4b11,_0x4b8333['result']=capture(_0x4b8333,_0x3bebf9,_0x402a77)['catch'](_0x30c9b9=>{_0x1c8b09===!![]&&console['error']('[Sentinel]\x20auto-capture\x20failed:',_0x30c9b9);throw _0x30c9b9;}),_0x4b8333['result']['catch'](()=>undefined);}return _0x4b8333;}function createPageHideAbortController(){const _0x4b23f0=new AbortController();if(typeof window==='undefined'){const _0x2d365a={};return _0x2d365a['signal']=_0x4b23f0['signal'],_0x2d365a['dispose']=()=>undefined,_0x2d365a;}const _0x29da96=()=>{if(!_0x4b23f0['signal']['aborted'])_0x4b23f0['abort']();},_0x122e3c={};_0x122e3c['once']=!![],window['addEventListener']('pagehide',_0x29da96,_0x122e3c);const _0x387bf4={};_0x387bf4['once']=!![],window['addEventListener']('beforeunload',_0x29da96,_0x387bf4);let _0x4a59be=![];const _0x3fbe35=()=>{if(_0x4a59be)return;_0x4a59be=!![],window['removeEventListener']('pagehide',_0x29da96),window['removeEventListener']('beforeunload',_0x29da96);},_0x1628e6={};return _0x1628e6['signal']=_0x4b23f0['signal'],_0x1628e6['dispose']=_0x3fbe35,_0x1628e6;}const WITHOUT_DEFAULT_TAG='@danetix/sentinel/without-default/v1';function withoutDefault(_0x1a76e4){const _0x1001a8={};return _0x1001a8['__type__']=WITHOUT_DEFAULT_TAG,_0x1001a8['value']=_0x1a76e4,_0x1001a8;}function isWithoutDefault(_0x41ac0f){if(_0x41ac0f===null||typeof _0x41ac0f!=='object')return![];const _0x5b14a0=_0x41ac0f;return _0x5b14a0['__type__']===WITHOUT_DEFAULT_TAG&&'value'in _0x5b14a0;}function unwrapWithoutDefault(_0x475cab){return isWithoutDefault(_0x475cab)?_0x475cab['value']:_0x475cab;}async function handleAgentData(_0x3894ef,_0x5015b6){let _0x5caa88;try{_0x5caa88=_0x5015b6?.['raw']===!![]?_0x3894ef:await decodePayload(_0x3894ef);}catch(_0x4668eb){throw new SentinelError('handleAgentData:\x20decode\x20failed\x20('+(_0x4668eb instanceof Error?_0x4668eb['message']:String(_0x4668eb))+')','bad_response_format');}let _0x28bab5;try{_0x28bab5=JSON['parse'](_0x5caa88);}catch(_0x2833a3){throw new SentinelError('handleAgentData:\x20not\x20valid\x20JSON\x20('+(_0x2833a3 instanceof Error?_0x2833a3['message']:String(_0x2833a3))+')','bad_response_format');}if(_0x28bab5===null||typeof _0x28bab5!=='object'||typeof _0x28bab5['requestId']!=='string'||typeof _0x28bab5['visitorId']!=='string')throw new SentinelError('handleAgentData:\x20response\x20missing\x20required\x20fields\x20(requestId,\x20visitorId)','bad_response_format');if(_0x28bab5['visitorId']['length']===0x0||_0x28bab5['visitorId']['length']>0x1000||/[\x00-\x1f\x7f]/['test'](_0x28bab5['visitorId']))throw new SentinelError('handleAgentData:\x20visitorId\x20failed\x20format\x20validation','bad_response_format');return saveDeviceToken(_0x28bab5['visitorId']),Array['isArray'](_0x28bab5['notifications'])&&dispatchNotifications(_0x28bab5['notifications']),_0x28bab5;}function dispatchNotifications(_0x2dda45){for(const _0x1b91a7 of _0x2dda45){if(_0x1b91a7===null||typeof _0x1b91a7!=='object')continue;const _0x905e29=String(_0x1b91a7['message']);if(_0x1b91a7['level']==='error')console['error'](_0x905e29);else{if(_0x1b91a7['level']==='warning')console['warn'](_0x905e29);else console['log'](_0x905e29);}}}const STORAGE_SUFFIX='lr',RING_SIZE=0x2;function createReplayChannel(_0x54f75e={}){const _0x335e44=_0x54f75e['prefix']??'_dx',_0x14d66c=Math['max'](0x1,_0x54f75e['ringSize']??RING_SIZE),_0xa7b6af=''+_0x335e44+STORAGE_SUFFIX;function _0x3448b6(){if(typeof localStorage==='undefined')return[];try{const _0x19b2af=localStorage['getItem'](_0xa7b6af);if(_0x19b2af===null)return[];const _0x48feaf=JSON['parse'](_0x19b2af);if(!Array['isArray'](_0x48feaf))return[];return _0x48feaf['filter'](_0x620669=>typeof _0x620669==='string');}catch{return[];}}function _0x58736e(_0x237d23){if(typeof localStorage==='undefined')return;try{localStorage['setItem'](_0xa7b6af,JSON['stringify'](_0x237d23));}catch{}}return{'list'(){return _0x3448b6();},'record'(_0x57c517){if(typeof _0x57c517!=='string'||_0x57c517['length']===0x0)return;const _0x42f59b=_0x3448b6(),_0x4f4398=_0x42f59b['filter'](_0x1a8d3f=>_0x1a8d3f!==_0x57c517);_0x4f4398['push'](_0x57c517);while(_0x4f4398['length']>_0x14d66c)_0x4f4398['shift']();_0x58736e(_0x4f4398);},'acknowledge'(_0x5945c6){if(_0x5945c6['length']===0x0)return;const _0x2589ea=_0x3448b6(),_0x48cb6a=new Set(_0x5945c6),_0xfd85cd=_0x2589ea['filter'](_0x3dc0fd=>!_0x48cb6a['has'](_0x3dc0fd));if(_0xfd85cd['length']===_0x2589ea['length'])return;_0x58736e(_0xfd85cd);},'clear'(){if(typeof localStorage==='undefined')return;try{localStorage['removeItem'](_0xa7b6af);}catch{}}};}function resolveRandomizeStrategy(_0x5e249f){if(_0x5e249f===undefined)return'replace';if(_0x5e249f===![]||_0x5e249f==='off')return'off';if(_0x5e249f===!![]||_0x5e249f==='replace')return'replace';return'append';}function start(_0x330b34){const {apiKey:_0x6244,endpoint:_0x1e3b74,cache:_0x48dd7c,randomizeEndpointPath:_0xf629ec,integrationInfo:_0x35a91d,urlPrivacy:_0x5f3d23,..._0x52a361}=_0x330b34,_0x3f1a1b=load(_0x52a361),_0x941e7={'apiKey':_0x6244,'endpoint':_0x1e3b74,'randomizeStrategy':resolveRandomizeStrategy(_0xf629ec),'integrationInfo':_0x35a91d,'urlPrivacy':_0x5f3d23},_0x2e47ce=_0x48dd7c?createCache(_0x48dd7c):null;return{'get'(_0x35c421){const {ignoreCache:_0x3ad965,..._0x3d0b0a}=_0x35c421??{},_0xab058a={};_0xab058a['tag']=_0x3d0b0a['tag'],_0xab058a['linkedId']=_0x3d0b0a['linkedId'];const _0x4c1d09=_0xab058a;if(_0x3ad965!==!![]&&_0x2e47ce!==null){const _0x432f6f=_0x2e47ce['get'](_0x4c1d09);if(_0x432f6f!==null)return Promise['resolve'](_0x432f6f);}return capture(_0x3f1a1b,_0x941e7,_0x3d0b0a)['then'](_0x1e5145=>{if(_0x2e47ce!==null)_0x2e47ce['set'](_0x1e5145,_0x4c1d09);return _0x1e5145;});},'clearCache'(){if(_0x2e47ce!==null)_0x2e47ce['clear']();}};}const _0x2541ac={};_0x2541ac['start']=start;var index=_0x2541ac;exports['CspBlockError']=CspBlockError,exports['FetchTimeoutError']=FetchTimeoutError,exports['SentinelError']=SentinelError,exports['buildEndpointSuffix']=buildEndpointSuffix,exports['createPageHideAbortController']=createPageHideAbortController,exports['createReplayChannel']=createReplayChannel,exports['default']=index,exports['detectFrameworks']=detectFrameworks,exports['getPageVisitId']=getPageVisitId,exports['getPipelineTrace']=getPipelineTrace,exports['handleAgentData']=handleAgentData,exports['isSentinelError']=isSentinelError,exports['isWithoutDefault']=isWithoutDefault,exports['listRegisteredIntegrations']=listRegisteredIntegrations,exports['load']=load,exports['randomizeEndpoint']=randomizeEndpoint,exports['registerIntegration']=registerIntegration,exports['start']=start,exports['unwrapWithoutDefault']=unwrapWithoutDefault,exports['withoutDefault']=withoutDefault;
|