aibox-web-tracing 0.0.6 → 0.0.7

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/README.md CHANGED
@@ -1,67 +1,67 @@
1
- # Start
2
- WebTracing是一个基于 JavaScript 的埋点SDK 官方文档:https://m-cheng-web.github.io/web-tracing/
3
-
4
- 这个包基于 WebTracing 做了二开, 改成了js版本,添加了一些自定义的东西,例如自定义请求参数等。删除了对react、vue2的支持,仅支持 vue3
5
-
6
- 它努力为你的前端项目提供【 行为、性能、异常、请求、资源、路由、曝光、录屏 】监控手段
7
-
8
- ## 自定义请求参数
9
- 主要通过 transformSendParams 实现
10
- 主要实现在src/libs/sendData.js这个文件
11
- ```js
12
- app.use(WebTracing, {
13
- dsn: '/report',
14
- appName: 'aibox-client',
15
- debug: false,
16
- pv: false,
17
- performance: {
18
- firstResource: true,
19
- },
20
- recordScreen: false,
21
- error: true,
22
- event: true,
23
- cacheMaxLength: 10,
24
- cacheWatingTime: 1000,
25
- transformSendParams: (sendParams) => {
26
- const { baseInfo, eventInfo} = sendParams
27
- const data = {
28
- data:{
29
- events: [],
30
- metrics: [],
31
- errors: [],
32
- performance: []
33
- },
34
- }
35
- eventInfo.reduce((acc, cur) => {
36
- if (cur.eventId === SENDID.PAGE) {
37
- acc.data.performance.push(cur)
38
- return acc
39
- }
40
- if (cur.eventType === SEDNEVENTTYPES.ERROR) {
41
- acc.data.errors.push(cur)
42
- return acc
43
- }
44
- if(Object.values(CUSTOMEVENTTYPE).includes(cur?.type)){
45
- acc.data[cur.type].push(cur)
46
- return acc
47
- }
48
- acc.data.events.push(cur)
49
- return acc
50
- }, data)
51
- return {
52
- service: baseInfo.appName,
53
- serviceVersion: baseInfo.sdkVersion,
54
- sessionId: baseInfo.sessionId,
55
- sendTime: baseInfo.sendTime,
56
- userId: baseInfo.userUuid,
57
- // ...baseInfo,
58
- ...data
59
- }
60
- //return sendParams
61
- }
62
- })
63
- ```
64
- 其他的内容可以看看官方文档或者翻一下源码实现
65
-
66
- ## performance 增加了对fcp和lcp的监控
1
+ # Start
2
+ WebTracing是一个基于 JavaScript 的埋点SDK 官方文档:https://m-cheng-web.github.io/web-tracing/
3
+
4
+ 这个包基于 WebTracing 做了二开, 改成了js版本,添加了一些自定义的东西,例如自定义请求参数等。删除了对react、vue2的支持,仅支持 vue3
5
+
6
+ 它努力为你的前端项目提供【 行为、性能、异常、请求、资源、路由、曝光、录屏 】监控手段
7
+
8
+ ## 自定义请求参数
9
+ 主要通过 transformSendParams 实现
10
+ 主要实现在src/libs/sendData.js这个文件
11
+ ```js
12
+ app.use(WebTracing, {
13
+ dsn: '/report',
14
+ appName: 'aibox-client',
15
+ debug: false,
16
+ pv: false,
17
+ performance: {
18
+ firstResource: true,
19
+ },
20
+ recordScreen: false,
21
+ error: true,
22
+ event: true,
23
+ cacheMaxLength: 10,
24
+ cacheWatingTime: 1000,
25
+ transformSendParams: (sendParams) => {
26
+ const { baseInfo, eventInfo} = sendParams
27
+ const data = {
28
+ data:{
29
+ events: [],
30
+ metrics: [],
31
+ errors: [],
32
+ performance: []
33
+ },
34
+ }
35
+ eventInfo.reduce((acc, cur) => {
36
+ if (cur.eventId === SENDID.PAGE) {
37
+ acc.data.performance.push(cur)
38
+ return acc
39
+ }
40
+ if (cur.eventType === SEDNEVENTTYPES.ERROR) {
41
+ acc.data.errors.push(cur)
42
+ return acc
43
+ }
44
+ if(Object.values(CUSTOMEVENTTYPE).includes(cur?.type)){
45
+ acc.data[cur.type].push(cur)
46
+ return acc
47
+ }
48
+ acc.data.events.push(cur)
49
+ return acc
50
+ }, data)
51
+ return {
52
+ service: baseInfo.appName,
53
+ serviceVersion: baseInfo.sdkVersion,
54
+ sessionId: baseInfo.sessionId,
55
+ sendTime: baseInfo.sendTime,
56
+ userId: baseInfo.userUuid,
57
+ // ...baseInfo,
58
+ ...data
59
+ }
60
+ //return sendParams
61
+ }
62
+ })
63
+ ```
64
+ 其他的内容可以看看官方文档或者翻一下源码实现
65
+
66
+ ## performance 增加了对fcp和lcp的监控
67
67
  详细看src/libs/performance.js这个文件
package/es/index.mjs CHANGED
@@ -414,7 +414,7 @@ let d;
414
414
  function Ln(e) {
415
415
  return !Sn(e) || !En(e) ? !1 : (d = qt(new yn(e)), C.options = d, !0);
416
416
  }
417
- const wn = "0.0.6", dt = "_webtracing_device_id", Ye = "_webtracing_session_id", Rn = 18e5, _e = "_webtracing_localization_key", An = wn, f = {
417
+ const wn = "0.0.7", dt = "_webtracing_device_id", Ye = "_webtracing_session_id", Rn = 18e5, _e = "_webtracing_localization_key", An = wn, f = {
418
418
  ERROR: "error",
419
419
  CONSOLEERROR: "consoleError",
420
420
  UNHANDLEDREJECTION: "unhandledrejection",
package/lib/index.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const ke=require("vue"),gn=require("rrweb"),Pt=require("pako"),Re=require("js-base64");function ee(e){return function(n){return Object.prototype.toString.call(n)===`[object ${e}]`}}const et=ee("RegExp"),bn=ee("Number"),yn=ee("String"),En=ee("Boolean"),Sn=ee("Function"),Ce=ee("Array"),Ln=ee("Window"),Oe=e=>En(e)&&String(e)==="false";function wn(e){return yn(e)&&e.trim()===""||e===void 0||e===null}const Rn=Ln(typeof window<"u"?window:0),An=!!window?.process?.versions?.electron,je=typeof navigator<"u"&&navigator.userAgent.includes("jsdom")||typeof window<"u"&&window.jsdom;function xt(){return Rn||An||je?window:{}}function In(){return p.__webTracing__=p.__webTracing__||{},p.__webTracing__}function Tn(){return!!p.__webTracingInit__}const p=xt(),C=In();function ae(...e){exports._options.value.debug&&console.log("@web-tracing: ",...e)}function K(...e){console.error("@web-tracing: ",...e)}function V(e,n,t,r=!1){e.addEventListener(n,t,r)}function le(e,n,t,r=!1){if(e!==void 0&&(n in e||r)){const o=e[n],a=t(o);Sn(a)&&(e[n]=a)}}function se(e){return Object.keys(e).forEach(n=>{const t=e[n];bn(t)&&(e[n]=t===0?void 0:parseFloat(t.toFixed(2)))}),e}function F(){return typeof document>"u"||document.location==null?"":document.location.href}function w(){return Date.now()}function Nt(e,n,t=!1){let r=null,o;return function(...a){o=a,r===null&&(t&&e.apply(this,o),r=setTimeout(()=>{r=null,e.apply(this,o)},n))}}function kn(e,n,t=!1){let r=null;return function(...o){t&&(e.call(this,...o),t=!1),r&&clearTimeout(r),r=setTimeout(()=>{e.call(this,...o)},n)}}function Pe(e,...n){const t=new Map;for(const r of e){const o=n.filter(a=>r[a]).map(a=>r[a]).join(":");t.has(o)||t.set(o,[]),t.get(o).push(r)}return Array.from(t.values())}function Ae(e,...n){return n.forEach(t=>{for(const r in t)t[r]!==null&&et(t[r])?e[r]=t[r]:t[r]!==null&&typeof t[r]=="object"?e[r]=Ae(e[r]||(Ce(t[r])?[]:{}),t[r]):e[r]=t[r]}),e}function O(e){return Tn()?!0:(K(`${e} 需要在SDK初始化之后使用`),!1)}function ce(e){return Object.prototype.toString.call(e).slice(8,-1).toLowerCase()}function de(e,n){return e in n}function Cn(e){return Math.random()<=e}function te(e,n,t="0"){const r=String(e);if(r.length<n){let o=r;for(let a=0;a<n-r.length;a+=1)o=t+o;return o}return r}function On(e){return e.split("?")[0]}function We(){const e=new Date,n=parseInt(`${e.getFullYear()}${te(e.getMonth()+1,2)}${te(e.getDate(),2)}`,10).toString(16),t=parseInt(`${te(e.getHours(),2)}${te(e.getMinutes(),2)}${te(e.getSeconds(),2)}${te(e.getMilliseconds(),3)}`,10).toString(16);let r=n+t.length+t;for(;r.length<32;)r+=Math.floor(Math.random()*16).toString(16);return`${r.slice(0,8)}-${r.slice(8,16)}-${r.slice(16)}`}function tt(e){const n=document.cookie.match(new RegExp(`${e}=([^;]+)(;|$)`));return n?n[1]:void 0}function Pn(e,n){const t=new Blob([JSON.stringify(n)],{type:"application/json"});return navigator.sendBeacon(e,t)}const Le=[];function xn(e,n){return new Promise(t=>{const r=new Image;r.src=`${e}?v=${encodeURIComponent(JSON.stringify(n))}`,Le.push(r),r.onload=()=>{t()},r.onerror=function(){t()}})}function st(e,n,t=5e3){return new Promise((r,o)=>{const a=new XMLHttpRequest;a.open("post",e),a.setRequestHeader("content-type","application/json"),a.timeout=t,a.send(JSON.stringify(n)),a.onreadystatechange=function(){a.readyState===4&&(a.status>=200&&a.status<300?r():o(new Error("@web-tracing XMLHttpRequest error: "+a.status)))},a.ontimeout=function(){o(new Error("@web-tracing XMLHttpRequest timeout"))},a.onerror=function(){o(new Error("@web-tracing XMLHttpRequest network error"))}})}function ye(e,n,t){if(e.length===0)return t;let r;for(let o=0;o<e.length;o++){const a=e[o];o===0||n?r=a(t):r=a(r)}return r}function xe(e){return Ce(e)?e:[e]}const Nn=Array.prototype.map||function(n){const t=[];for(let r=0;r<this.length;r+=1)t.push(n(this[r],r,this));return t};function Ft(e,n){return Nn.call(e,n)}const Fn=Array.prototype.filter||function(n){const t=[];for(let r=0;r<this.length;r+=1)n(this[r],r,this)&&t.push(this[r]);return t};function Mn(e,n){return Fn.call(e,n)}const _n=window.requestIdleCallback||window.requestAnimationFrame||(e=>setTimeout(e,17));function ct(e,n){const t=JSON.stringify(e);return new TextEncoder().encode(t).length/1024>n}function Be(e){if(!e)return{};const n={},t=e.split("?")[1];if(t){const r=t.split("&");for(const o of r){const[a,s]=o.split("=");n[decodeURIComponent(a)]=decodeURIComponent(s)}}return n}function Ze(e,n=new Map){if(e!==null&&typeof e=="object"){let t=n.get(e);return t||(e instanceof Array?(t=[],n.set(e,t),e.forEach((r,o)=>{t[o]=Ze(r,n)})):(t={},n.set(e,t),Object.keys(e).forEach(r=>{de(r,e)&&(t[r]=Ze(e[r],n))})),t)}return e}function j(e,n,t,r=!1){e.removeEventListener(n,t,r)}class Vn{dsn="";appName="";appCode="";appVersion="";userUuid="";sdkUserUuid="";debug=!1;pv={core:!1};performance={core:!1,firstResource:!1,server:!1};error={core:!1,server:!1};event={core:!1};recordScreen=!0;timeout=5e3;maxQueueLength=200;checkRecoverInterval=1;ext={};tracesSampleRate=1;cacheMaxLength=5;cacheWatingTime=5e3;ignoreErrors=[];ignoreRequest=[];scopeError=!1;localization=!1;sendTypeByXmlBody=!1;beforePushEventList=[];beforeSendData=[];afterSendData=[];localizationOverFlow=()=>{};constructor(n){const t=this.transitionOptions(n);t.ignoreRequest.push(new RegExp(t.dsn)),Ae(this,t)}transitionOptions(n){const t=Ae({},this,n),{beforePushEventList:r,beforeSendData:o,afterSendData:a}=n,{pv:s,performance:c,error:i,event:u}=t;return typeof s=="boolean"&&(t.pv={core:s}),typeof c=="boolean"&&(t.performance={core:c,firstResource:c,server:c}),typeof i=="boolean"&&(t.error={core:i,server:i}),typeof u=="boolean"&&(t.event={core:u}),r&&(t.beforePushEventList=[r]),o&&(t.beforeSendData=[o]),a&&(t.afterSendData=[a]),n.timeout!==void 0&&(t.timeout=n.timeout),n.maxQueueLength!==void 0&&(t.maxQueueLength=n.maxQueueLength),n.checkRecoverInterval!==void 0&&(t.checkRecoverInterval=n.checkRecoverInterval),t}}function Hn(e){const{dsn:n,appName:t,appCode:r,appVersion:o,userUuid:a,debug:s,recordScreen:c,pv:i,performance:u,error:l,event:f,ext:m,tracesSampleRate:v,cacheMaxLength:E,cacheWatingTime:b,ignoreErrors:h,ignoreRequest:I,scopeError:P,localization:U,sendTypeByXmlBody:J,beforePushEventList:be,beforeSendData:Y,timeout:fn,maxQueueLength:hn,checkRecoverInterval:pn,transformSendParams:mn}=e,G=[];return i&&typeof i=="object"?G.push(y(i.core,"pv.core","boolean")):G.push(y(i,"pv","boolean")),u&&typeof u=="object"?G.push(y(u.core,"performance.core","boolean"),y(u.firstResource,"performance.firstResource","boolean"),y(u.server,"performance.server","boolean")):G.push(y(u,"performance","boolean")),l&&typeof l=="object"?G.push(y(l.core,"error.core","boolean"),y(l.server,"error.server","boolean")):G.push(y(l,"error","boolean")),f&&typeof f=="object"?G.push(y(f.core,"event.core","boolean")):G.push(y(f,"event","boolean")),[y(n,"dsn","string"),y(t,"appName","string"),y(r,"appCode","string"),y(o,"appVersion","string"),y(a,"userUuid","string"),y(s,"debug","boolean"),y(c,"recordScreen","boolean"),y(m,"ext","object"),y(v,"tracesSampleRate","number"),y(E,"cacheMaxLength","number"),y(b,"cacheWatingTime","number"),y(h,"ignoreErrors","array"),lt(h,"ignoreErrors",["string","regexp"]),y(I,"ignoreRequest","array"),lt(I,"ignoreRequest",["string","regexp"]),y(P,"scopeError","boolean"),y(U,"localization","boolean"),y(J,"sendTypeByXmlBody","boolean"),y(be,"beforePushEventList","function"),y(Y,"beforeSendData","function"),y(fn,"timeout","number"),y(hn,"maxQueueLength","number"),y(pn,"checkRecoverInterval","number"),y(mn,"transformSendParams","function")].every(vn=>!!vn)}function Dn(e){return[ut(e.appName,"appName"),ut(e.dsn,"dsn")].every(t=>!!t)}function ut(e,n){return wn(e)?(K(`【${n}】参数必填`),!1):!0}function y(e,n,t){return!e||ce(e)===t?!0:(K(`TypeError:【${n}】期望传入${t}类型,目前是${ce(e)}类型`),!1)}function lt(e,n,t){if(!e)return!0;let r=!0;return e.forEach(o=>{t.includes(ce(o))||(K(`TypeError:【${n}】数组内的值期望传入${t.join("|")}类型,目前值${o}是${ce(o)}类型`),r=!1)}),r}exports._options=void 0;function Un(e){return!Dn(e)||!Hn(e)?!1:(exports._options=ke.ref(new Vn(e)),C.options=exports._options,!0)}const Xn="0.0.6",dt="_webtracing_device_id",Ye="_webtracing_session_id",jn=18e5,Ge="_webtracing_localization_key",Wn=Xn,d={ERROR:"error",CONSOLEERROR:"consoleError",UNHANDLEDREJECTION:"unhandledrejection",CLICK:"click",LOAD:"load",BEFOREUNLOAD:"beforeunload",FETCH:"fetch",XHROPEN:"xhr-open",XHRSEND:"xhr-send",HASHCHANGE:"hashchange",HISTORYPUSHSTATE:"history-pushState",HISTORYREPLACESTATE:"history-replaceState",POPSTATE:"popstate",READYSTATECHANGE:"readystatechange",ONLINE:"online",OFFLINE:"offline"},N={PV:"pv",PVDURATION:"pv-duration",ERROR:"error",PERFORMANCE:"performance",CLICK:"click",DWELL:"dwell",CUSTOM:"custom",INTERSECTION:"intersection"},k={PAGE:"page_performance",RESOURCE:"resource",SERVER:"server",CODE:"code_error",REJECT:"reject_error",CONSOLEERROR:"console_error"},Bn={0:"navigate",1:"reload",2:"back_forward",255:"reserved"};class Zn{handlers;constructor(){this.handlers={}}addEvent(n){!this.handlers[n.type]&&(this.handlers[n.type]=[]),this._getCallbackIndex(n)===-1&&this.handlers[n.type]?.push(n.callback)}delEvent(n){const t=this._getCallbackIndex(n);t!==-1&&this.handlers[n.type]?.splice(t,1)}changeEvent(n,t){const r=this._getCallbackIndex(n);r!==-1&&this.handlers[n.type]?.splice(r,1,t)}getEvent(n){return this.handlers[n]||[]}runEvent(n,...t){this.getEvent(n).forEach(o=>{o(...t)})}_getCallbackIndex(n){if(this.handlers[n.type]){const t=this.handlers[n.type];return t?t.findIndex(r=>r===n.callback):-1}else return-1}removeEvents(n){n.forEach(t=>{delete this.handlers[t]})}}const g=C.eventBus||(C.eventBus=new Zn),R={consoleError:null,xhrOpen:null,xhrSend:null,fetch:null,historyPushState:null,historyReplaceState:null},L={error:null,unhandledrejection:null,click:null,load:null,beforeunload:null,hashchange:null,popstate:null,offline:null,online:null};function Yn(){for(const e in d)de(e,d)&&Gn(e)}function Gn(e){if(!de(e,d))return;switch(d[e]){case d.ERROR:zn(d.ERROR);break;case d.UNHANDLEDREJECTION:Jn(d.UNHANDLEDREJECTION);break;case d.CONSOLEERROR:qn(d.CONSOLEERROR);break;case d.CLICK:$n(d.CLICK);break;case d.LOAD:Qn(d.LOAD);break;case d.BEFOREUNLOAD:Kn(d.BEFOREUNLOAD);break;case d.XHROPEN:er(d.XHROPEN);break;case d.XHRSEND:tr(d.XHRSEND);break;case d.FETCH:nr(d.FETCH);break;case d.HASHCHANGE:rr(d.HASHCHANGE);break;case d.HISTORYPUSHSTATE:ir(d.HISTORYPUSHSTATE);break;case d.HISTORYREPLACESTATE:or(d.HISTORYREPLACESTATE);break;case d.POPSTATE:ar(d.POPSTATE);break;case d.OFFLINE:sr(d.OFFLINE);break;case d.ONLINE:cr(d.ONLINE);break}}function zn(e){const n=function(t){g.runEvent(e,t)};L.error=n,V(p,"error",n,!0)}function Jn(e){const n=function(t){g.runEvent(e,t)};L.unhandledrejection=n,V(p,"unhandledrejection",n)}function qn(e){R.consoleError=console.error,le(console,"error",n=>function(...t){t[0]&&t[0].slice&&t[0].slice(0,12)==="@web-tracing"||g.runEvent(e,t),n.apply(this,t)})}function $n(e){if(!("document"in p))return;const n=Nt(g.runEvent,100,!0),t=function(r){n.call(g,e,r)};L.click=t,V(p.document,"click",t,!0)}function Qn(e){const n=function(t){g.runEvent(e,t)};L.load=n,V(p,"load",n,!0)}function Kn(e){const n=function(t){g.runEvent(e,t)};L.beforeunload=n,V(p,"beforeunload",n,!1)}function er(e){"XMLHttpRequest"in p&&(R.xhrOpen=XMLHttpRequest.prototype.open,le(XMLHttpRequest.prototype,"open",n=>function(...t){g.runEvent(e,...t),n.apply(this,t)}))}function tr(e){"XMLHttpRequest"in p&&(R.xhrSend=XMLHttpRequest.prototype.send,le(XMLHttpRequest.prototype,"send",n=>function(...t){g.runEvent(e,this,...t),n.apply(this,t)}))}function nr(e){"fetch"in p&&(R.fetch=p.fetch,le(p,"fetch",n=>function(...t){const r=w(),o={};return n.apply(p,t).then(a=>(g.runEvent(e,t[0],t[1],a,r,o),a))}))}function rr(e){const n=function(t){g.runEvent(e,t)};L.hashchange=n,V(p,"hashchange",n)}function or(e){R.historyReplaceState=history.replaceState,le(history,"replaceState",n=>function(...t){g.runEvent(e,...t),n.apply(this,t)})}function ir(e){R.historyPushState=history.pushState,le(history,"pushState",n=>function(...t){g.runEvent(e,...t),n.apply(this,t)})}function ar(e){const n=function(t){g.runEvent(e,t)};L.popstate=n,V(p,"popstate",n)}function sr(e){const n=function(t){g.runEvent(e,t)};L.offline=n,V(p,"offline",n)}function cr(e){const n=function(t){g.runEvent(e,t)};L.offline=n,V(p,"offline",n)}function ur(){R.consoleError&&console.error!==R.consoleError&&(console.error=R.consoleError),R.xhrOpen&&XMLHttpRequest.prototype.open!==R.xhrOpen&&(XMLHttpRequest.prototype.open=R.xhrOpen),R.xhrSend&&XMLHttpRequest.prototype.send!==R.xhrSend&&(XMLHttpRequest.prototype.send=R.xhrSend),R.fetch&&p.fetch!==R.fetch&&(p.fetch=R.fetch),R.historyPushState&&history.pushState!==R.historyPushState&&(history.pushState=R.historyPushState),R.historyReplaceState&&history.replaceState!==R.historyReplaceState&&(history.replaceState=R.historyReplaceState),L.error&&j(p,"error",L.error,!0),L.unhandledrejection&&j(p,"unhandledrejection",L.unhandledrejection),L.click&&j(p.document,"click",L.click,!0),L.load&&j(p,"load",L.load,!0),L.beforeunload&&j(p,"beforeunload",L.beforeunload,!1),L.hashchange&&j(p,"hashchange",L.hashchange),L.popstate&&j(p,"popstate",L.popstate),L.offline&&j(p,"offline",L.offline),L.online&&j(p,"online",L.online),Object.keys(R).forEach(e=>{R[e]=null}),Object.keys(L).forEach(e=>{L[e]=null})}let ze=function(){return ze=Object.assign||function(e){for(var n,t=1,r=arguments.length;t<r;t++)for(const o in n=arguments[t])Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o]);return e},ze.apply(this,arguments)};function Z(e,n,t,r){return new(t||(t=Promise))(function(o,a){function s(u){try{i(r.next(u))}catch(l){a(l)}}function c(u){try{i(r.throw(u))}catch(l){a(l)}}function i(u){let l;u.done?o(u.value):(l=u.value,l instanceof t?l:new t(function(f){f(l)})).then(s,c)}i((r=r.apply(e,[])).next())})}function X(e,n){let t,r,o,a,s={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:c(0),throw:c(1),return:c(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function c(i){return function(u){return(function(l){if(t)throw new TypeError("Generator is already executing.");for(;a&&(a=0,l[0]&&(s=0)),s;)try{if(t=1,r&&(o=2&l[0]?r.return:l[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,l[1])).done)return o;switch(r=0,o&&(l=[2&l[0],o.value]),l[0]){case 0:case 1:o=l;break;case 4:return s.label++,{value:l[1],done:!1};case 5:s.label++,r=l[1],l=[0];continue;case 7:l=s.ops.pop(),s.trys.pop();continue;default:if(o=s.trys,!((o=o.length>0&&o[o.length-1])||l[0]!==6&&l[0]!==2)){s=0;continue}if(l[0]===3&&(!o||l[1]>o[0]&&l[1]<o[3])){s.label=l[1];break}if(l[0]===6&&s.label<o[1]){s.label=o[1],o=l;break}if(o&&s.label<o[2]){s.label=o[2],s.ops.push(l);break}o[2]&&s.ops.pop(),s.trys.pop();continue}l=n.call(e,s)}catch(f){l=[6,f],r=0}finally{t=o=0}if(5&l[0])throw l[1];return{value:l[0]?l[1]:void 0,done:!0}})([i,u])}}}function ie(e,n,t){if(t||arguments.length===2)for(var r,o=0,a=n.length;o<a;o++)!r&&o in n||(r||(r=Array.prototype.slice.call(n,0,o)),r[o]=n[o]);return e.concat(r||Array.prototype.slice.call(n))}function B(e,n){return new Promise(function(t){return setTimeout(t,e,n)})}function Mt(e){return!!e&&typeof e.then=="function"}function ft(e,n){try{const t=e();Mt(t)?t.then(function(r){return n(!0,r)},function(r){return n(!1,r)}):n(!0,t)}catch(t){n(!1,t)}}function ht(e,n,t){return t===void 0&&(t=16),Z(this,void 0,void 0,function(){let r,o,a;return X(this,function(s){switch(s.label){case 0:r=Date.now(),o=0,s.label=1;case 1:return o<e.length?(n(e[o],o),(a=Date.now())>=r+t?(r=a,[4,B(0)]):[3,3]):[3,4];case 2:s.sent(),s.label=3;case 3:return++o,[3,1];case 4:return[2]}})})}function Ie(e){e.then(void 0,function(){})}function z(e,n){e=[e[0]>>>16,65535&e[0],e[1]>>>16,65535&e[1]],n=[n[0]>>>16,65535&n[0],n[1]>>>16,65535&n[1]];const t=[0,0,0,0];return t[3]+=e[3]+n[3],t[2]+=t[3]>>>16,t[3]&=65535,t[2]+=e[2]+n[2],t[1]+=t[2]>>>16,t[2]&=65535,t[1]+=e[1]+n[1],t[0]+=t[1]>>>16,t[1]&=65535,t[0]+=e[0]+n[0],t[0]&=65535,[t[0]<<16|t[1],t[2]<<16|t[3]]}function _(e,n){e=[e[0]>>>16,65535&e[0],e[1]>>>16,65535&e[1]],n=[n[0]>>>16,65535&n[0],n[1]>>>16,65535&n[1]];const t=[0,0,0,0];return t[3]+=e[3]*n[3],t[2]+=t[3]>>>16,t[3]&=65535,t[2]+=e[2]*n[3],t[1]+=t[2]>>>16,t[2]&=65535,t[2]+=e[3]*n[2],t[1]+=t[2]>>>16,t[2]&=65535,t[1]+=e[1]*n[3],t[0]+=t[1]>>>16,t[1]&=65535,t[1]+=e[2]*n[2],t[0]+=t[1]>>>16,t[1]&=65535,t[1]+=e[3]*n[1],t[0]+=t[1]>>>16,t[1]&=65535,t[0]+=e[0]*n[3]+e[1]*n[2]+e[2]*n[1]+e[3]*n[0],t[0]&=65535,[t[0]<<16|t[1],t[2]<<16|t[3]]}function ne(e,n){return(n%=64)===32?[e[1],e[0]]:n<32?[e[0]<<n|e[1]>>>32-n,e[1]<<n|e[0]>>>32-n]:(n-=32,[e[1]<<n|e[0]>>>32-n,e[0]<<n|e[1]>>>32-n])}function M(e,n){return(n%=64)===0?e:n<32?[e[0]<<n|e[1]>>>32-n,e[1]<<n]:[e[1]<<n-32,0]}function A(e,n){return[e[0]^n[0],e[1]^n[1]]}function pt(e){return e=A(e,[0,e[0]>>>1]),e=A(e=_(e,[4283543511,3981806797]),[0,e[0]>>>1]),e=A(e=_(e,[3301882366,444984403]),[0,e[0]>>>1])}function lr(e,n){n=n||0;let t,r=(e=e||"").length%16,o=e.length-r,a=[0,n],s=[0,n],c=[0,0],i=[0,0],u=[2277735313,289559509],l=[1291169091,658871167];for(t=0;t<o;t+=16)c=[255&e.charCodeAt(t+4)|(255&e.charCodeAt(t+5))<<8|(255&e.charCodeAt(t+6))<<16|(255&e.charCodeAt(t+7))<<24,255&e.charCodeAt(t)|(255&e.charCodeAt(t+1))<<8|(255&e.charCodeAt(t+2))<<16|(255&e.charCodeAt(t+3))<<24],i=[255&e.charCodeAt(t+12)|(255&e.charCodeAt(t+13))<<8|(255&e.charCodeAt(t+14))<<16|(255&e.charCodeAt(t+15))<<24,255&e.charCodeAt(t+8)|(255&e.charCodeAt(t+9))<<8|(255&e.charCodeAt(t+10))<<16|(255&e.charCodeAt(t+11))<<24],c=ne(c=_(c,u),31),a=z(a=ne(a=A(a,c=_(c,l)),27),s),a=z(_(a,[0,5]),[0,1390208809]),i=ne(i=_(i,l),33),s=z(s=ne(s=A(s,i=_(i,u)),31),a),s=z(_(s,[0,5]),[0,944331445]);switch(c=[0,0],i=[0,0],r){case 15:i=A(i,M([0,e.charCodeAt(t+14)],48));case 14:i=A(i,M([0,e.charCodeAt(t+13)],40));case 13:i=A(i,M([0,e.charCodeAt(t+12)],32));case 12:i=A(i,M([0,e.charCodeAt(t+11)],24));case 11:i=A(i,M([0,e.charCodeAt(t+10)],16));case 10:i=A(i,M([0,e.charCodeAt(t+9)],8));case 9:i=_(i=A(i,[0,e.charCodeAt(t+8)]),l),s=A(s,i=_(i=ne(i,33),u));case 8:c=A(c,M([0,e.charCodeAt(t+7)],56));case 7:c=A(c,M([0,e.charCodeAt(t+6)],48));case 6:c=A(c,M([0,e.charCodeAt(t+5)],40));case 5:c=A(c,M([0,e.charCodeAt(t+4)],32));case 4:c=A(c,M([0,e.charCodeAt(t+3)],24));case 3:c=A(c,M([0,e.charCodeAt(t+2)],16));case 2:c=A(c,M([0,e.charCodeAt(t+1)],8));case 1:c=_(c=A(c,[0,e.charCodeAt(t)]),u),a=A(a,c=_(c=ne(c,31),l))}return a=z(a=A(a,[0,e.length]),s=A(s,[0,e.length])),s=z(s,a),a=z(a=pt(a),s=pt(s)),s=z(s,a),("00000000"+(a[0]>>>0).toString(16)).slice(-8)+("00000000"+(a[1]>>>0).toString(16)).slice(-8)+("00000000"+(s[0]>>>0).toString(16)).slice(-8)+("00000000"+(s[1]>>>0).toString(16)).slice(-8)}function Ne(e){return parseInt(e)}function H(e){return parseFloat(e)}function W(e,n){return typeof e=="number"&&isNaN(e)?n:e}function D(e){return e.reduce(function(n,t){return n+(t?1:0)},0)}function _t(e,n){if(n===void 0&&(n=1),Math.abs(n)>=1)return Math.round(e/n)*n;const t=1/n;return Math.round(e*t)/t}function mt(e){return e&&typeof e=="object"&&"message"in e?e:{message:e}}function dr(e){return typeof e!="function"}function fr(e,n,t){const r=Object.keys(e).filter(function(a){return!(function(s,c){for(let i=0,u=s.length;i<u;++i)if(s[i]===c)return!0;return!1})(t,a)}),o=Array(r.length);return ht(r,function(a,s){o[s]=(function(c,i){const u=new Promise(function(l){const f=Date.now();ft(c.bind(null,i),function(){for(var m=[],v=0;v<arguments.length;v++)m[v]=arguments[v];const E=Date.now()-f;if(!m[0])return l(function(){return{error:mt(m[1]),duration:E}});const b=m[1];if(dr(b))return l(function(){return{value:b,duration:E}});l(function(){return new Promise(function(h){const I=Date.now();ft(b,function(){for(var P=[],U=0;U<arguments.length;U++)P[U]=arguments[U];const J=E+Date.now()-I;if(!P[0])return h({error:mt(P[1]),duration:J});h({value:P[1],duration:J})})})})})});return Ie(u),function(){return u.then(function(l){return l()})}})(e[a],n)}),function(){return Z(this,void 0,void 0,function(){let a,s,c,i,u,l;return X(this,function(f){switch(f.label){case 0:for(a={},s=0,c=r;s<c.length;s++)i=c[s],a[i]=void 0;u=Array(r.length),l=function(){let m;return X(this,function(v){switch(v.label){case 0:return m=!0,[4,ht(r,function(E,b){if(!u[b])if(o[b]){const h=o[b]().then(function(I){return a[E]=I});Ie(h),u[b]=h}else m=!1})];case 1:return v.sent(),m?[2,"break"]:[4,B(1)];case 2:return v.sent(),[2]}})},f.label=1;case 1:return[5,l()];case 2:if(f.sent()==="break")return[3,4];f.label=3;case 3:return[3,1];case 4:return[4,Promise.all(u)];case 5:return f.sent(),[2,a]}})})}}function Vt(){const e=window,n=navigator;return D(["MSCSSMatrix"in e,"msSetImmediate"in e,"msIndexedDB"in e,"msMaxTouchPoints"in n,"msPointerEnabled"in n])>=4}function hr(){const e=window,n=navigator;return D(["msWriteProfilerMark"in e,"MSStream"in e,"msLaunchUri"in n,"msSaveBlob"in n])>=3&&!Vt()}function Je(){const e=window,n=navigator;return D(["webkitPersistentStorage"in n,"webkitTemporaryStorage"in n,n.vendor.indexOf("Google")===0,"webkitResolveLocalFileSystemURL"in e,"BatteryManager"in e,"webkitMediaStream"in e,"webkitSpeechGrammar"in e])>=5}function he(){const e=window,n=navigator;return D(["ApplePayError"in e,"CSSPrimitiveValue"in e,"Counter"in e,n.vendor.indexOf("Apple")===0,"getStorageUpdates"in n,"WebKitMediaKeys"in e])>=4}function qe(){const e=window;return D(["safari"in e,!("DeviceMotionEvent"in e),!("ongestureend"in e),!("standalone"in navigator)])>=3}function pr(){let e,n,t=window;return D(["buildID"in navigator,"MozAppearance"in((n=(e=document.documentElement)===null||e===void 0?void 0:e.style)!==null&&n!==void 0?n:{}),"onmozfullscreenchange"in t,"mozInnerScreenX"in t,"CSSMozDocumentRule"in t,"CanvasCaptureMediaStream"in t])>=4}function mr(){const e=document;return e.fullscreenElement||e.msFullscreenElement||e.mozFullScreenElement||e.webkitFullscreenElement||null}function Ht(){const e=Je(),n=pr();if(!e&&!n)return!1;const t=window;return D(["onorientationchange"in t,"orientation"in t,e&&!("SharedWorker"in t),n&&/android/i.test(navigator.appVersion)])>=2}function vt(e){const n=new Error(e);return n.name=e,n}function gt(e,n,t){let r,o,a;return t===void 0&&(t=50),Z(this,void 0,void 0,function(){let s,c;return X(this,function(i){switch(i.label){case 0:s=document,i.label=1;case 1:return s.body?[3,3]:[4,B(t)];case 2:return i.sent(),[3,1];case 3:c=s.createElement("iframe"),i.label=4;case 4:return i.trys.push([4,,10,11]),[4,new Promise(function(u,l){let f=!1,m=function(){f=!0,u()};c.onload=m,c.onerror=function(b){f=!0,l(b)};const v=c.style;v.setProperty("display","block","important"),v.position="absolute",v.top="0",v.left="0",v.visibility="hidden",c.src="about:blank",s.body.appendChild(c);const E=function(){let b,h;f||(((h=(b=c.contentWindow)===null||b===void 0?void 0:b.document)===null||h===void 0?void 0:h.readyState)==="complete"?m():setTimeout(E,10))};E()})];case 5:i.sent(),i.label=6;case 6:return!((o=(r=c.contentWindow)===null||r===void 0?void 0:r.document)===null||o===void 0)&&o.body?[3,8]:[4,B(t)];case 7:return i.sent(),[3,6];case 8:return[4,e(c,c.contentWindow)];case 9:return[2,i.sent()];case 10:return(a=c.parentNode)===null||a===void 0||a.removeChild(c),[7];case 11:return[2]}})})}function vr(e){for(var n=(function(c){for(var i,u,l="Unexpected syntax '".concat(c,"'"),f=/^\s*([a-z-]*)(.*)$/i.exec(c),m=f[1]||void 0,v={},E=/([.:#][\w-]+|\[.+?\])/gi,b=function(I,P){v[I]=v[I]||[],v[I].push(P)};;){const I=E.exec(f[2]);if(!I)break;const P=I[0];switch(P[0]){case".":b("class",P.slice(1));break;case"#":b("id",P.slice(1));break;case"[":var h=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(P);if(!h)throw new Error(l);b(h[1],(u=(i=h[4])!==null&&i!==void 0?i:h[5])!==null&&u!==void 0?u:"");break;default:throw new Error(l)}}return[m,v]})(e),t=n[0],r=n[1],o=document.createElement(t??"div"),a=0,s=Object.keys(r);a<s.length;a++){const c=s[a],i=r[c].join(" ");c==="style"?gr(o.style,i):o.setAttribute(c,i)}return o}function gr(e,n){for(let t=0,r=n.split(";");t<r.length;t++){const o=r[t],a=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/.exec(o);if(a){const s=a[1],c=a[2],i=a[4];e.setProperty(s,c,i||"")}}}const re=["monospace","sans-serif","serif"],bt=["sans-serif-thin","ARNO PRO","Agency FB","Arabic Typesetting","Arial Unicode MS","AvantGarde Bk BT","BankGothic Md BT","Batang","Bitstream Vera Sans Mono","Calibri","Century","Century Gothic","Clarendon","EUROSTILE","Franklin Gothic","Futura Bk BT","Futura Md BT","GOTHAM","Gill Sans","HELV","Haettenschweiler","Helvetica Neue","Humanst521 BT","Leelawadee","Letter Gothic","Levenim MT","Lucida Bright","Lucida Sans","Menlo","MS Mincho","MS Outlook","MS Reference Specialty","MS UI Gothic","MT Extra","MYRIAD PRO","Marlett","Meiryo UI","Microsoft Uighur","Minion Pro","Monotype Corsiva","PMingLiU","Pristina","SCRIPTINA","Segoe UI Light","Serifa","SimHei","Small Fonts","Staccato222 BT","TRAJAN PRO","Univers CE 55 Medium","Vrinda","ZWAdobeF"];function Fe(e){return e.toDataURL()}let Ee,Me;function br(){const e=this;return(function(){if(Me===void 0){const n=function(){const t=_e();Ve(t)?Me=setTimeout(n,2500):(Ee=t,Me=void 0)};n()}})(),function(){return Z(e,void 0,void 0,function(){let n;return X(this,function(t){switch(t.label){case 0:return Ve(n=_e())?Ee?[2,ie([],Ee,!0)]:mr()?[4,(r=document,(r.exitFullscreen||r.msExitFullscreen||r.mozCancelFullScreen||r.webkitExitFullscreen).call(r))]:[3,2]:[3,2];case 1:t.sent(),n=_e(),t.label=2;case 2:return Ve(n)||(Ee=n),[2,n]}let r})})}}function _e(){const e=screen;return[W(H(e.availTop),null),W(H(e.width)-H(e.availWidth)-W(H(e.availLeft),0),null),W(H(e.height)-H(e.availHeight)-W(H(e.availTop),0),null),W(H(e.availLeft),null)]}function Ve(e){for(let n=0;n<4;++n)if(e[n])return!1;return!0}function yr(e){let n;return Z(this,void 0,void 0,function(){let t,r,o,a,s,c,i;return X(this,function(u){switch(u.label){case 0:for(t=document,r=t.createElement("div"),o=new Array(e.length),a={},yt(r),i=0;i<e.length;++i)s=vr(e[i]),yt(c=t.createElement("div")),c.appendChild(s),r.appendChild(c),o[i]=s;u.label=1;case 1:return t.body?[3,3]:[4,B(50)];case 2:return u.sent(),[3,1];case 3:t.body.appendChild(r);try{for(i=0;i<e.length;++i)o[i].offsetParent||(a[e[i]]=!0)}finally{(n=r.parentNode)===null||n===void 0||n.removeChild(r)}return[2,a]}})})}function yt(e){e.style.setProperty("display","block","important")}function Et(e){return matchMedia("(inverted-colors: ".concat(e,")")).matches}function St(e){return matchMedia("(forced-colors: ".concat(e,")")).matches}function oe(e){return matchMedia("(prefers-contrast: ".concat(e,")")).matches}function Lt(e){return matchMedia("(prefers-reduced-motion: ".concat(e,")")).matches}function wt(e){return matchMedia("(dynamic-range: ".concat(e,")")).matches}const S=Math,x=function(){return 0},He={default:[],apple:[{font:"-apple-system-body"}],serif:[{fontFamily:"serif"}],sans:[{fontFamily:"sans-serif"}],mono:[{fontFamily:"monospace"}],min:[{fontSize:"1px"}],system:[{fontFamily:"system-ui"}]},Er={fonts:function(){return gt(function(e,n){const t=n.document,r=t.body;r.style.fontSize="48px";const o=t.createElement("div"),a={},s={},c=function(l){const f=t.createElement("span"),m=f.style;return m.position="absolute",m.top="0",m.left="0",m.fontFamily=l,f.textContent="mmMwWLliI0O&1",o.appendChild(f),f},i=re.map(c),u=(function(){for(var l={},f=function(E){l[E]=re.map(function(b){return(function(h,I){return c("'".concat(h,"',").concat(I))})(E,b)})},m=0,v=bt;m<v.length;m++)f(v[m]);return l})();r.appendChild(o);for(let l=0;l<re.length;l++)a[re[l]]=i[l].offsetWidth,s[re[l]]=i[l].offsetHeight;return bt.filter(function(l){return n=u[l],re.some(function(f,m){return n[m].offsetWidth!==a[f]||n[m].offsetHeight!==s[f]})})})},domBlockers:function(e){const n=(e===void 0?{}:e).debug;return Z(this,void 0,void 0,function(){let t,r,o,a,s;return X(this,function(c){switch(c.label){case 0:return he()||Ht()?(i=atob,t={abpIndo:["#Iklan-Melayang","#Kolom-Iklan-728","#SidebarIklan-wrapper",i("YVt0aXRsZT0iN25hZ2EgcG9rZXIiIGld"),'[title="ALIENBOLA" i]'],abpvn:["#quangcaomb",i("Lmlvc0Fkc2lvc0Fkcy1sYXlvdXQ="),".quangcao",i("W2hyZWZePSJodHRwczovL3I4OC52bi8iXQ=="),i("W2hyZWZePSJodHRwczovL3piZXQudm4vIl0=")],adBlockFinland:[".mainostila",i("LnNwb25zb3JpdA=="),".ylamainos",i("YVtocmVmKj0iL2NsaWNrdGhyZ2guYXNwPyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9hcHAucmVhZHBlYWsuY29tL2FkcyJd")],adBlockPersian:["#navbar_notice_50",".kadr",'TABLE[width="140px"]',"#divAgahi",i("I2FkMl9pbmxpbmU=")],adBlockWarningRemoval:["#adblock-honeypot",".adblocker-root",".wp_adblock_detect",i("LmhlYWRlci1ibG9ja2VkLWFk"),i("I2FkX2Jsb2NrZXI=")],adGuardAnnoyances:['amp-embed[type="zen"]',".hs-sosyal","#cookieconsentdiv",'div[class^="app_gdpr"]',".as-oil"],adGuardBase:[".BetterJsPopOverlay",i("I2FkXzMwMFgyNTA="),i("I2Jhbm5lcmZsb2F0MjI="),i("I2FkLWJhbm5lcg=="),i("I2NhbXBhaWduLWJhbm5lcg==")],adGuardChinese:[i("LlppX2FkX2FfSA=="),i("YVtocmVmKj0iL29kMDA1LmNvbSJd"),i("YVtocmVmKj0iLmh0aGJldDM0LmNvbSJd"),".qq_nr_lad","#widget-quan"],adGuardFrench:[i("I2Jsb2NrLXZpZXdzLWFkcy1zaWRlYmFyLWJsb2NrLWJsb2Nr"),"#pavePub",i("LmFkLWRlc2t0b3AtcmVjdGFuZ2xl"),".mobile_adhesion",".widgetadv"],adGuardGerman:[i("LmJhbm5lcml0ZW13ZXJidW5nX2hlYWRfMQ=="),i("LmJveHN0YXJ0d2VyYnVuZw=="),i("LndlcmJ1bmcz"),i("YVtocmVmXj0iaHR0cDovL3d3dy5laXMuZGUvaW5kZXgucGh0bWw/cmVmaWQ9Il0="),i("YVtocmVmXj0iaHR0cHM6Ly93d3cudGlwaWNvLmNvbS8/YWZmaWxpYXRlSWQ9Il0=")],adGuardJapanese:["#kauli_yad_1",i("YVtocmVmXj0iaHR0cDovL2FkMi50cmFmZmljZ2F0ZS5uZXQvIl0="),i("Ll9wb3BJbl9pbmZpbml0ZV9hZA=="),i("LmFkZ29vZ2xl"),i("LmFkX3JlZ3VsYXIz")],adGuardMobile:[i("YW1wLWF1dG8tYWRz"),i("LmFtcF9hZA=="),'amp-embed[type="24smi"]',"#mgid_iframe1",i("I2FkX2ludmlld19hcmVh")],adGuardRussian:[i("YVtocmVmXj0iaHR0cHM6Ly9hZC5sZXRtZWFkcy5jb20vIl0="),i("LnJlY2xhbWE="),'div[id^="smi2adblock"]',i("ZGl2W2lkXj0iQWRGb3hfYmFubmVyXyJd"),i("I2FkX3NxdWFyZQ==")],adGuardSocial:[i("YVtocmVmXj0iLy93d3cuc3R1bWJsZXVwb24uY29tL3N1Ym1pdD91cmw9Il0="),i("YVtocmVmXj0iLy90ZWxlZ3JhbS5tZS9zaGFyZS91cmw/Il0="),".etsy-tweet","#inlineShare",".popup-social"],adGuardSpanishPortuguese:["#barraPublicidade","#Publicidade","#publiEspecial","#queTooltip",i("W2hyZWZePSJodHRwOi8vYWRzLmdsaXNwYS5jb20vIl0=")],adGuardTrackingProtection:["#qoo-counter",i("YVtocmVmXj0iaHR0cDovL2NsaWNrLmhvdGxvZy5ydS8iXQ=="),i("YVtocmVmXj0iaHR0cDovL2hpdGNvdW50ZXIucnUvdG9wL3N0YXQucGhwIl0="),i("YVtocmVmXj0iaHR0cDovL3RvcC5tYWlsLnJ1L2p1bXAiXQ=="),"#top100counter"],adGuardTurkish:["#backkapat",i("I3Jla2xhbWk="),i("YVtocmVmXj0iaHR0cDovL2Fkc2Vydi5vbnRlay5jb20udHIvIl0="),i("YVtocmVmXj0iaHR0cDovL2l6bGVuemkuY29tL2NhbXBhaWduLyJd"),i("YVtocmVmXj0iaHR0cDovL3d3dy5pbnN0YWxsYWRzLm5ldC8iXQ==")],bulgarian:[i("dGQjZnJlZW5ldF90YWJsZV9hZHM="),"#ea_intext_div",".lapni-pop-over","#xenium_hot_offers",i("I25ld0Fk")],easyList:[i("I0FEX0NPTlRST0xfMjg="),i("LnNlY29uZC1wb3N0LWFkcy13cmFwcGVy"),".universalboxADVBOX03",i("LmFkdmVydGlzZW1lbnQtNzI4eDkw"),i("LnNxdWFyZV9hZHM=")],easyListChina:[i("YVtocmVmKj0iLndlbnNpeHVldGFuZy5jb20vIl0="),i("LmFwcGd1aWRlLXdyYXBbb25jbGljayo9ImJjZWJvcy5jb20iXQ=="),i("LmZyb250cGFnZUFkdk0="),"#taotaole","#aafoot.top_box"],easyListCookie:["#AdaCompliance.app-notice",".text-center.rgpd",".panel--cookie",".js-cookies-andromeda",".elxtr-consent"],easyListCzechSlovak:["#onlajny-stickers",i("I3Jla2xhbW5pLWJveA=="),i("LnJla2xhbWEtbWVnYWJvYXJk"),".sklik",i("W2lkXj0ic2tsaWtSZWtsYW1hIl0=")],easyListDutch:[i("I2FkdmVydGVudGll"),i("I3ZpcEFkbWFya3RCYW5uZXJCbG9jaw=="),".adstekst",i("YVtocmVmXj0iaHR0cHM6Ly94bHR1YmUubmwvY2xpY2svIl0="),"#semilo-lrectangle"],easyListGermany:[i("I0FkX1dpbjJkYXk="),i("I3dlcmJ1bmdzYm94MzAw"),i("YVtocmVmXj0iaHR0cDovL3d3dy5yb3RsaWNodGthcnRlaS5jb20vP3NjPSJd"),i("I3dlcmJ1bmdfd2lkZXNreXNjcmFwZXJfc2NyZWVu"),i("YVtocmVmXj0iaHR0cDovL2xhbmRpbmcucGFya3BsYXR6a2FydGVpLmNvbS8/YWc9Il0=")],easyListItaly:[i("LmJveF9hZHZfYW5udW5jaQ=="),".sb-box-pubbliredazionale",i("YVtocmVmXj0iaHR0cDovL2FmZmlsaWF6aW9uaWFkcy5zbmFpLml0LyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9hZHNlcnZlci5odG1sLml0LyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9hZmZpbGlhemlvbmlhZHMuc25haS5pdC8iXQ==")],easyListLithuania:[i("LnJla2xhbW9zX3RhcnBhcw=="),i("LnJla2xhbW9zX251b3JvZG9z"),i("aW1nW2FsdD0iUmVrbGFtaW5pcyBza3lkZWxpcyJd"),i("aW1nW2FsdD0iRGVkaWt1b3RpLmx0IHNlcnZlcmlhaSJd"),i("aW1nW2FsdD0iSG9zdGluZ2FzIFNlcnZlcmlhaS5sdCJd")],estonian:[i("QVtocmVmKj0iaHR0cDovL3BheTRyZXN1bHRzMjQuZXUiXQ==")],fanboyAnnoyances:["#feedback-tab","#taboola-below-article",".feedburnerFeedBlock",".widget-feedburner-counter",'[title="Subscribe to our blog"]'],fanboyAntiFacebook:[".util-bar-module-firefly-visible"],fanboyEnhancedTrackers:[".open.pushModal","#issuem-leaky-paywall-articles-zero-remaining-nag","#sovrn_container",'div[class$="-hide"][zoompage-fontsize][style="display: block;"]',".BlockNag__Card"],fanboySocial:[".td-tags-and-social-wrapper-box",".twitterContainer",".youtube-social",'a[title^="Like us on Facebook"]','img[alt^="Share on Digg"]'],frellwitSwedish:[i("YVtocmVmKj0iY2FzaW5vcHJvLnNlIl1bdGFyZ2V0PSJfYmxhbmsiXQ=="),i("YVtocmVmKj0iZG9rdG9yLXNlLm9uZWxpbmsubWUiXQ=="),"article.category-samarbete",i("ZGl2LmhvbGlkQWRz"),"ul.adsmodern"],greekAdBlock:[i("QVtocmVmKj0iYWRtYW4ub3RlbmV0LmdyL2NsaWNrPyJd"),i("QVtocmVmKj0iaHR0cDovL2F4aWFiYW5uZXJzLmV4b2R1cy5nci8iXQ=="),i("QVtocmVmKj0iaHR0cDovL2ludGVyYWN0aXZlLmZvcnRobmV0LmdyL2NsaWNrPyJd"),"DIV.agores300","TABLE.advright"],hungarian:["#cemp_doboz",".optimonk-iframe-container",i("LmFkX19tYWlu"),i("W2NsYXNzKj0iR29vZ2xlQWRzIl0="),"#hirdetesek_box"],iDontCareAboutCookies:['.alert-info[data-block-track*="CookieNotice"]',".ModuleTemplateCookieIndicator",".o--cookies--container",".cookie-msg-info-container","#cookies-policy-sticky"],icelandicAbp:[i("QVtocmVmXj0iL2ZyYW1ld29yay9yZXNvdXJjZXMvZm9ybXMvYWRzLmFzcHgiXQ==")],latvian:[i("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiAxMjBweDsgaGVpZ2h0OiA0MHB4OyBvdmVyZmxvdzogaGlkZGVuOyBwb3NpdGlvbjogcmVsYXRpdmU7Il0="),i("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiA4OHB4OyBoZWlnaHQ6IDMxcHg7IG92ZXJmbG93OiBoaWRkZW47IHBvc2l0aW9uOiByZWxhdGl2ZTsiXQ==")],listKr:[i("YVtocmVmKj0iLy9hZC5wbGFuYnBsdXMuY28ua3IvIl0="),i("I2xpdmVyZUFkV3JhcHBlcg=="),i("YVtocmVmKj0iLy9hZHYuaW1hZHJlcC5jby5rci8iXQ=="),i("aW5zLmZhc3R2aWV3LWFk"),".revenue_unit_item.dable"],listeAr:[i("LmdlbWluaUxCMUFk"),".right-and-left-sponsers",i("YVtocmVmKj0iLmFmbGFtLmluZm8iXQ=="),i("YVtocmVmKj0iYm9vcmFxLm9yZyJd"),i("YVtocmVmKj0iZHViaXp6bGUuY29tL2FyLz91dG1fc291cmNlPSJd")],listeFr:[i("YVtocmVmXj0iaHR0cDovL3Byb21vLnZhZG9yLmNvbS8iXQ=="),i("I2FkY29udGFpbmVyX3JlY2hlcmNoZQ=="),i("YVtocmVmKj0id2Vib3JhbWEuZnIvZmNnaS1iaW4vIl0="),".site-pub-interstitiel",'div[id^="crt-"][data-criteo-id]'],officialPolish:["#ceneo-placeholder-ceneo-12",i("W2hyZWZePSJodHRwczovL2FmZi5zZW5kaHViLnBsLyJd"),i("YVtocmVmXj0iaHR0cDovL2Fkdm1hbmFnZXIudGVjaGZ1bi5wbC9yZWRpcmVjdC8iXQ=="),i("YVtocmVmXj0iaHR0cDovL3d3dy50cml6ZXIucGwvP3V0bV9zb3VyY2UiXQ=="),i("ZGl2I3NrYXBpZWNfYWQ=")],ro:[i("YVtocmVmXj0iLy9hZmZ0cmsuYWx0ZXgucm8vQ291bnRlci9DbGljayJd"),'a[href^="/magazin/"]',i("YVtocmVmXj0iaHR0cHM6Ly9ibGFja2ZyaWRheXNhbGVzLnJvL3Ryay9zaG9wLyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9ldmVudC4ycGVyZm9ybWFudC5jb20vZXZlbnRzL2NsaWNrIl0="),i("YVtocmVmXj0iaHR0cHM6Ly9sLnByb2ZpdHNoYXJlLnJvLyJd")],ruAd:[i("YVtocmVmKj0iLy9mZWJyYXJlLnJ1LyJd"),i("YVtocmVmKj0iLy91dGltZy5ydS8iXQ=="),i("YVtocmVmKj0iOi8vY2hpa2lkaWtpLnJ1Il0="),"#pgeldiz",".yandex-rtb-block"],thaiAds:["a[href*=macau-uta-popup]",i("I2Fkcy1nb29nbGUtbWlkZGxlX3JlY3RhbmdsZS1ncm91cA=="),i("LmFkczMwMHM="),".bumq",".img-kosana"],webAnnoyancesUltralist:["#mod-social-share-2","#social-tools",i("LmN0cGwtZnVsbGJhbm5lcg=="),".zergnet-recommend",".yt.btn-link.btn-md.btn"]},r=Object.keys(t),[4,yr((s=[]).concat.apply(s,r.map(function(u){return t[u]})))]):[2,void 0];case 1:return o=c.sent(),n&&(function(u,l){for(var f="DOM blockers debug:\n```",m=0,v=Object.keys(u);m<v.length;m++){const E=v[m];f+=`
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const ke=require("vue"),gn=require("rrweb"),Pt=require("pako"),Re=require("js-base64");function ee(e){return function(n){return Object.prototype.toString.call(n)===`[object ${e}]`}}const et=ee("RegExp"),bn=ee("Number"),yn=ee("String"),En=ee("Boolean"),Sn=ee("Function"),Ce=ee("Array"),Ln=ee("Window"),Oe=e=>En(e)&&String(e)==="false";function wn(e){return yn(e)&&e.trim()===""||e===void 0||e===null}const Rn=Ln(typeof window<"u"?window:0),An=!!window?.process?.versions?.electron,je=typeof navigator<"u"&&navigator.userAgent.includes("jsdom")||typeof window<"u"&&window.jsdom;function xt(){return Rn||An||je?window:{}}function In(){return p.__webTracing__=p.__webTracing__||{},p.__webTracing__}function Tn(){return!!p.__webTracingInit__}const p=xt(),C=In();function ae(...e){exports._options.value.debug&&console.log("@web-tracing: ",...e)}function K(...e){console.error("@web-tracing: ",...e)}function V(e,n,t,r=!1){e.addEventListener(n,t,r)}function le(e,n,t,r=!1){if(e!==void 0&&(n in e||r)){const o=e[n],a=t(o);Sn(a)&&(e[n]=a)}}function se(e){return Object.keys(e).forEach(n=>{const t=e[n];bn(t)&&(e[n]=t===0?void 0:parseFloat(t.toFixed(2)))}),e}function F(){return typeof document>"u"||document.location==null?"":document.location.href}function w(){return Date.now()}function Nt(e,n,t=!1){let r=null,o;return function(...a){o=a,r===null&&(t&&e.apply(this,o),r=setTimeout(()=>{r=null,e.apply(this,o)},n))}}function kn(e,n,t=!1){let r=null;return function(...o){t&&(e.call(this,...o),t=!1),r&&clearTimeout(r),r=setTimeout(()=>{e.call(this,...o)},n)}}function Pe(e,...n){const t=new Map;for(const r of e){const o=n.filter(a=>r[a]).map(a=>r[a]).join(":");t.has(o)||t.set(o,[]),t.get(o).push(r)}return Array.from(t.values())}function Ae(e,...n){return n.forEach(t=>{for(const r in t)t[r]!==null&&et(t[r])?e[r]=t[r]:t[r]!==null&&typeof t[r]=="object"?e[r]=Ae(e[r]||(Ce(t[r])?[]:{}),t[r]):e[r]=t[r]}),e}function O(e){return Tn()?!0:(K(`${e} 需要在SDK初始化之后使用`),!1)}function ce(e){return Object.prototype.toString.call(e).slice(8,-1).toLowerCase()}function de(e,n){return e in n}function Cn(e){return Math.random()<=e}function te(e,n,t="0"){const r=String(e);if(r.length<n){let o=r;for(let a=0;a<n-r.length;a+=1)o=t+o;return o}return r}function On(e){return e.split("?")[0]}function We(){const e=new Date,n=parseInt(`${e.getFullYear()}${te(e.getMonth()+1,2)}${te(e.getDate(),2)}`,10).toString(16),t=parseInt(`${te(e.getHours(),2)}${te(e.getMinutes(),2)}${te(e.getSeconds(),2)}${te(e.getMilliseconds(),3)}`,10).toString(16);let r=n+t.length+t;for(;r.length<32;)r+=Math.floor(Math.random()*16).toString(16);return`${r.slice(0,8)}-${r.slice(8,16)}-${r.slice(16)}`}function tt(e){const n=document.cookie.match(new RegExp(`${e}=([^;]+)(;|$)`));return n?n[1]:void 0}function Pn(e,n){const t=new Blob([JSON.stringify(n)],{type:"application/json"});return navigator.sendBeacon(e,t)}const Le=[];function xn(e,n){return new Promise(t=>{const r=new Image;r.src=`${e}?v=${encodeURIComponent(JSON.stringify(n))}`,Le.push(r),r.onload=()=>{t()},r.onerror=function(){t()}})}function st(e,n,t=5e3){return new Promise((r,o)=>{const a=new XMLHttpRequest;a.open("post",e),a.setRequestHeader("content-type","application/json"),a.timeout=t,a.send(JSON.stringify(n)),a.onreadystatechange=function(){a.readyState===4&&(a.status>=200&&a.status<300?r():o(new Error("@web-tracing XMLHttpRequest error: "+a.status)))},a.ontimeout=function(){o(new Error("@web-tracing XMLHttpRequest timeout"))},a.onerror=function(){o(new Error("@web-tracing XMLHttpRequest network error"))}})}function ye(e,n,t){if(e.length===0)return t;let r;for(let o=0;o<e.length;o++){const a=e[o];o===0||n?r=a(t):r=a(r)}return r}function xe(e){return Ce(e)?e:[e]}const Nn=Array.prototype.map||function(n){const t=[];for(let r=0;r<this.length;r+=1)t.push(n(this[r],r,this));return t};function Ft(e,n){return Nn.call(e,n)}const Fn=Array.prototype.filter||function(n){const t=[];for(let r=0;r<this.length;r+=1)n(this[r],r,this)&&t.push(this[r]);return t};function Mn(e,n){return Fn.call(e,n)}const _n=window.requestIdleCallback||window.requestAnimationFrame||(e=>setTimeout(e,17));function ct(e,n){const t=JSON.stringify(e);return new TextEncoder().encode(t).length/1024>n}function Be(e){if(!e)return{};const n={},t=e.split("?")[1];if(t){const r=t.split("&");for(const o of r){const[a,s]=o.split("=");n[decodeURIComponent(a)]=decodeURIComponent(s)}}return n}function Ze(e,n=new Map){if(e!==null&&typeof e=="object"){let t=n.get(e);return t||(e instanceof Array?(t=[],n.set(e,t),e.forEach((r,o)=>{t[o]=Ze(r,n)})):(t={},n.set(e,t),Object.keys(e).forEach(r=>{de(r,e)&&(t[r]=Ze(e[r],n))})),t)}return e}function j(e,n,t,r=!1){e.removeEventListener(n,t,r)}class Vn{dsn="";appName="";appCode="";appVersion="";userUuid="";sdkUserUuid="";debug=!1;pv={core:!1};performance={core:!1,firstResource:!1,server:!1};error={core:!1,server:!1};event={core:!1};recordScreen=!0;timeout=5e3;maxQueueLength=200;checkRecoverInterval=1;ext={};tracesSampleRate=1;cacheMaxLength=5;cacheWatingTime=5e3;ignoreErrors=[];ignoreRequest=[];scopeError=!1;localization=!1;sendTypeByXmlBody=!1;beforePushEventList=[];beforeSendData=[];afterSendData=[];localizationOverFlow=()=>{};constructor(n){const t=this.transitionOptions(n);t.ignoreRequest.push(new RegExp(t.dsn)),Ae(this,t)}transitionOptions(n){const t=Ae({},this,n),{beforePushEventList:r,beforeSendData:o,afterSendData:a}=n,{pv:s,performance:c,error:i,event:u}=t;return typeof s=="boolean"&&(t.pv={core:s}),typeof c=="boolean"&&(t.performance={core:c,firstResource:c,server:c}),typeof i=="boolean"&&(t.error={core:i,server:i}),typeof u=="boolean"&&(t.event={core:u}),r&&(t.beforePushEventList=[r]),o&&(t.beforeSendData=[o]),a&&(t.afterSendData=[a]),n.timeout!==void 0&&(t.timeout=n.timeout),n.maxQueueLength!==void 0&&(t.maxQueueLength=n.maxQueueLength),n.checkRecoverInterval!==void 0&&(t.checkRecoverInterval=n.checkRecoverInterval),t}}function Hn(e){const{dsn:n,appName:t,appCode:r,appVersion:o,userUuid:a,debug:s,recordScreen:c,pv:i,performance:u,error:l,event:f,ext:m,tracesSampleRate:v,cacheMaxLength:E,cacheWatingTime:b,ignoreErrors:h,ignoreRequest:I,scopeError:P,localization:U,sendTypeByXmlBody:J,beforePushEventList:be,beforeSendData:Y,timeout:fn,maxQueueLength:hn,checkRecoverInterval:pn,transformSendParams:mn}=e,G=[];return i&&typeof i=="object"?G.push(y(i.core,"pv.core","boolean")):G.push(y(i,"pv","boolean")),u&&typeof u=="object"?G.push(y(u.core,"performance.core","boolean"),y(u.firstResource,"performance.firstResource","boolean"),y(u.server,"performance.server","boolean")):G.push(y(u,"performance","boolean")),l&&typeof l=="object"?G.push(y(l.core,"error.core","boolean"),y(l.server,"error.server","boolean")):G.push(y(l,"error","boolean")),f&&typeof f=="object"?G.push(y(f.core,"event.core","boolean")):G.push(y(f,"event","boolean")),[y(n,"dsn","string"),y(t,"appName","string"),y(r,"appCode","string"),y(o,"appVersion","string"),y(a,"userUuid","string"),y(s,"debug","boolean"),y(c,"recordScreen","boolean"),y(m,"ext","object"),y(v,"tracesSampleRate","number"),y(E,"cacheMaxLength","number"),y(b,"cacheWatingTime","number"),y(h,"ignoreErrors","array"),lt(h,"ignoreErrors",["string","regexp"]),y(I,"ignoreRequest","array"),lt(I,"ignoreRequest",["string","regexp"]),y(P,"scopeError","boolean"),y(U,"localization","boolean"),y(J,"sendTypeByXmlBody","boolean"),y(be,"beforePushEventList","function"),y(Y,"beforeSendData","function"),y(fn,"timeout","number"),y(hn,"maxQueueLength","number"),y(pn,"checkRecoverInterval","number"),y(mn,"transformSendParams","function")].every(vn=>!!vn)}function Dn(e){return[ut(e.appName,"appName"),ut(e.dsn,"dsn")].every(t=>!!t)}function ut(e,n){return wn(e)?(K(`【${n}】参数必填`),!1):!0}function y(e,n,t){return!e||ce(e)===t?!0:(K(`TypeError:【${n}】期望传入${t}类型,目前是${ce(e)}类型`),!1)}function lt(e,n,t){if(!e)return!0;let r=!0;return e.forEach(o=>{t.includes(ce(o))||(K(`TypeError:【${n}】数组内的值期望传入${t.join("|")}类型,目前值${o}是${ce(o)}类型`),r=!1)}),r}exports._options=void 0;function Un(e){return!Dn(e)||!Hn(e)?!1:(exports._options=ke.ref(new Vn(e)),C.options=exports._options,!0)}const Xn="0.0.7",dt="_webtracing_device_id",Ye="_webtracing_session_id",jn=18e5,Ge="_webtracing_localization_key",Wn=Xn,d={ERROR:"error",CONSOLEERROR:"consoleError",UNHANDLEDREJECTION:"unhandledrejection",CLICK:"click",LOAD:"load",BEFOREUNLOAD:"beforeunload",FETCH:"fetch",XHROPEN:"xhr-open",XHRSEND:"xhr-send",HASHCHANGE:"hashchange",HISTORYPUSHSTATE:"history-pushState",HISTORYREPLACESTATE:"history-replaceState",POPSTATE:"popstate",READYSTATECHANGE:"readystatechange",ONLINE:"online",OFFLINE:"offline"},N={PV:"pv",PVDURATION:"pv-duration",ERROR:"error",PERFORMANCE:"performance",CLICK:"click",DWELL:"dwell",CUSTOM:"custom",INTERSECTION:"intersection"},k={PAGE:"page_performance",RESOURCE:"resource",SERVER:"server",CODE:"code_error",REJECT:"reject_error",CONSOLEERROR:"console_error"},Bn={0:"navigate",1:"reload",2:"back_forward",255:"reserved"};class Zn{handlers;constructor(){this.handlers={}}addEvent(n){!this.handlers[n.type]&&(this.handlers[n.type]=[]),this._getCallbackIndex(n)===-1&&this.handlers[n.type]?.push(n.callback)}delEvent(n){const t=this._getCallbackIndex(n);t!==-1&&this.handlers[n.type]?.splice(t,1)}changeEvent(n,t){const r=this._getCallbackIndex(n);r!==-1&&this.handlers[n.type]?.splice(r,1,t)}getEvent(n){return this.handlers[n]||[]}runEvent(n,...t){this.getEvent(n).forEach(o=>{o(...t)})}_getCallbackIndex(n){if(this.handlers[n.type]){const t=this.handlers[n.type];return t?t.findIndex(r=>r===n.callback):-1}else return-1}removeEvents(n){n.forEach(t=>{delete this.handlers[t]})}}const g=C.eventBus||(C.eventBus=new Zn),R={consoleError:null,xhrOpen:null,xhrSend:null,fetch:null,historyPushState:null,historyReplaceState:null},L={error:null,unhandledrejection:null,click:null,load:null,beforeunload:null,hashchange:null,popstate:null,offline:null,online:null};function Yn(){for(const e in d)de(e,d)&&Gn(e)}function Gn(e){if(!de(e,d))return;switch(d[e]){case d.ERROR:zn(d.ERROR);break;case d.UNHANDLEDREJECTION:Jn(d.UNHANDLEDREJECTION);break;case d.CONSOLEERROR:qn(d.CONSOLEERROR);break;case d.CLICK:$n(d.CLICK);break;case d.LOAD:Qn(d.LOAD);break;case d.BEFOREUNLOAD:Kn(d.BEFOREUNLOAD);break;case d.XHROPEN:er(d.XHROPEN);break;case d.XHRSEND:tr(d.XHRSEND);break;case d.FETCH:nr(d.FETCH);break;case d.HASHCHANGE:rr(d.HASHCHANGE);break;case d.HISTORYPUSHSTATE:ir(d.HISTORYPUSHSTATE);break;case d.HISTORYREPLACESTATE:or(d.HISTORYREPLACESTATE);break;case d.POPSTATE:ar(d.POPSTATE);break;case d.OFFLINE:sr(d.OFFLINE);break;case d.ONLINE:cr(d.ONLINE);break}}function zn(e){const n=function(t){g.runEvent(e,t)};L.error=n,V(p,"error",n,!0)}function Jn(e){const n=function(t){g.runEvent(e,t)};L.unhandledrejection=n,V(p,"unhandledrejection",n)}function qn(e){R.consoleError=console.error,le(console,"error",n=>function(...t){t[0]&&t[0].slice&&t[0].slice(0,12)==="@web-tracing"||g.runEvent(e,t),n.apply(this,t)})}function $n(e){if(!("document"in p))return;const n=Nt(g.runEvent,100,!0),t=function(r){n.call(g,e,r)};L.click=t,V(p.document,"click",t,!0)}function Qn(e){const n=function(t){g.runEvent(e,t)};L.load=n,V(p,"load",n,!0)}function Kn(e){const n=function(t){g.runEvent(e,t)};L.beforeunload=n,V(p,"beforeunload",n,!1)}function er(e){"XMLHttpRequest"in p&&(R.xhrOpen=XMLHttpRequest.prototype.open,le(XMLHttpRequest.prototype,"open",n=>function(...t){g.runEvent(e,...t),n.apply(this,t)}))}function tr(e){"XMLHttpRequest"in p&&(R.xhrSend=XMLHttpRequest.prototype.send,le(XMLHttpRequest.prototype,"send",n=>function(...t){g.runEvent(e,this,...t),n.apply(this,t)}))}function nr(e){"fetch"in p&&(R.fetch=p.fetch,le(p,"fetch",n=>function(...t){const r=w(),o={};return n.apply(p,t).then(a=>(g.runEvent(e,t[0],t[1],a,r,o),a))}))}function rr(e){const n=function(t){g.runEvent(e,t)};L.hashchange=n,V(p,"hashchange",n)}function or(e){R.historyReplaceState=history.replaceState,le(history,"replaceState",n=>function(...t){g.runEvent(e,...t),n.apply(this,t)})}function ir(e){R.historyPushState=history.pushState,le(history,"pushState",n=>function(...t){g.runEvent(e,...t),n.apply(this,t)})}function ar(e){const n=function(t){g.runEvent(e,t)};L.popstate=n,V(p,"popstate",n)}function sr(e){const n=function(t){g.runEvent(e,t)};L.offline=n,V(p,"offline",n)}function cr(e){const n=function(t){g.runEvent(e,t)};L.offline=n,V(p,"offline",n)}function ur(){R.consoleError&&console.error!==R.consoleError&&(console.error=R.consoleError),R.xhrOpen&&XMLHttpRequest.prototype.open!==R.xhrOpen&&(XMLHttpRequest.prototype.open=R.xhrOpen),R.xhrSend&&XMLHttpRequest.prototype.send!==R.xhrSend&&(XMLHttpRequest.prototype.send=R.xhrSend),R.fetch&&p.fetch!==R.fetch&&(p.fetch=R.fetch),R.historyPushState&&history.pushState!==R.historyPushState&&(history.pushState=R.historyPushState),R.historyReplaceState&&history.replaceState!==R.historyReplaceState&&(history.replaceState=R.historyReplaceState),L.error&&j(p,"error",L.error,!0),L.unhandledrejection&&j(p,"unhandledrejection",L.unhandledrejection),L.click&&j(p.document,"click",L.click,!0),L.load&&j(p,"load",L.load,!0),L.beforeunload&&j(p,"beforeunload",L.beforeunload,!1),L.hashchange&&j(p,"hashchange",L.hashchange),L.popstate&&j(p,"popstate",L.popstate),L.offline&&j(p,"offline",L.offline),L.online&&j(p,"online",L.online),Object.keys(R).forEach(e=>{R[e]=null}),Object.keys(L).forEach(e=>{L[e]=null})}let ze=function(){return ze=Object.assign||function(e){for(var n,t=1,r=arguments.length;t<r;t++)for(const o in n=arguments[t])Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o]);return e},ze.apply(this,arguments)};function Z(e,n,t,r){return new(t||(t=Promise))(function(o,a){function s(u){try{i(r.next(u))}catch(l){a(l)}}function c(u){try{i(r.throw(u))}catch(l){a(l)}}function i(u){let l;u.done?o(u.value):(l=u.value,l instanceof t?l:new t(function(f){f(l)})).then(s,c)}i((r=r.apply(e,[])).next())})}function X(e,n){let t,r,o,a,s={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:c(0),throw:c(1),return:c(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function c(i){return function(u){return(function(l){if(t)throw new TypeError("Generator is already executing.");for(;a&&(a=0,l[0]&&(s=0)),s;)try{if(t=1,r&&(o=2&l[0]?r.return:l[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,l[1])).done)return o;switch(r=0,o&&(l=[2&l[0],o.value]),l[0]){case 0:case 1:o=l;break;case 4:return s.label++,{value:l[1],done:!1};case 5:s.label++,r=l[1],l=[0];continue;case 7:l=s.ops.pop(),s.trys.pop();continue;default:if(o=s.trys,!((o=o.length>0&&o[o.length-1])||l[0]!==6&&l[0]!==2)){s=0;continue}if(l[0]===3&&(!o||l[1]>o[0]&&l[1]<o[3])){s.label=l[1];break}if(l[0]===6&&s.label<o[1]){s.label=o[1],o=l;break}if(o&&s.label<o[2]){s.label=o[2],s.ops.push(l);break}o[2]&&s.ops.pop(),s.trys.pop();continue}l=n.call(e,s)}catch(f){l=[6,f],r=0}finally{t=o=0}if(5&l[0])throw l[1];return{value:l[0]?l[1]:void 0,done:!0}})([i,u])}}}function ie(e,n,t){if(t||arguments.length===2)for(var r,o=0,a=n.length;o<a;o++)!r&&o in n||(r||(r=Array.prototype.slice.call(n,0,o)),r[o]=n[o]);return e.concat(r||Array.prototype.slice.call(n))}function B(e,n){return new Promise(function(t){return setTimeout(t,e,n)})}function Mt(e){return!!e&&typeof e.then=="function"}function ft(e,n){try{const t=e();Mt(t)?t.then(function(r){return n(!0,r)},function(r){return n(!1,r)}):n(!0,t)}catch(t){n(!1,t)}}function ht(e,n,t){return t===void 0&&(t=16),Z(this,void 0,void 0,function(){let r,o,a;return X(this,function(s){switch(s.label){case 0:r=Date.now(),o=0,s.label=1;case 1:return o<e.length?(n(e[o],o),(a=Date.now())>=r+t?(r=a,[4,B(0)]):[3,3]):[3,4];case 2:s.sent(),s.label=3;case 3:return++o,[3,1];case 4:return[2]}})})}function Ie(e){e.then(void 0,function(){})}function z(e,n){e=[e[0]>>>16,65535&e[0],e[1]>>>16,65535&e[1]],n=[n[0]>>>16,65535&n[0],n[1]>>>16,65535&n[1]];const t=[0,0,0,0];return t[3]+=e[3]+n[3],t[2]+=t[3]>>>16,t[3]&=65535,t[2]+=e[2]+n[2],t[1]+=t[2]>>>16,t[2]&=65535,t[1]+=e[1]+n[1],t[0]+=t[1]>>>16,t[1]&=65535,t[0]+=e[0]+n[0],t[0]&=65535,[t[0]<<16|t[1],t[2]<<16|t[3]]}function _(e,n){e=[e[0]>>>16,65535&e[0],e[1]>>>16,65535&e[1]],n=[n[0]>>>16,65535&n[0],n[1]>>>16,65535&n[1]];const t=[0,0,0,0];return t[3]+=e[3]*n[3],t[2]+=t[3]>>>16,t[3]&=65535,t[2]+=e[2]*n[3],t[1]+=t[2]>>>16,t[2]&=65535,t[2]+=e[3]*n[2],t[1]+=t[2]>>>16,t[2]&=65535,t[1]+=e[1]*n[3],t[0]+=t[1]>>>16,t[1]&=65535,t[1]+=e[2]*n[2],t[0]+=t[1]>>>16,t[1]&=65535,t[1]+=e[3]*n[1],t[0]+=t[1]>>>16,t[1]&=65535,t[0]+=e[0]*n[3]+e[1]*n[2]+e[2]*n[1]+e[3]*n[0],t[0]&=65535,[t[0]<<16|t[1],t[2]<<16|t[3]]}function ne(e,n){return(n%=64)===32?[e[1],e[0]]:n<32?[e[0]<<n|e[1]>>>32-n,e[1]<<n|e[0]>>>32-n]:(n-=32,[e[1]<<n|e[0]>>>32-n,e[0]<<n|e[1]>>>32-n])}function M(e,n){return(n%=64)===0?e:n<32?[e[0]<<n|e[1]>>>32-n,e[1]<<n]:[e[1]<<n-32,0]}function A(e,n){return[e[0]^n[0],e[1]^n[1]]}function pt(e){return e=A(e,[0,e[0]>>>1]),e=A(e=_(e,[4283543511,3981806797]),[0,e[0]>>>1]),e=A(e=_(e,[3301882366,444984403]),[0,e[0]>>>1])}function lr(e,n){n=n||0;let t,r=(e=e||"").length%16,o=e.length-r,a=[0,n],s=[0,n],c=[0,0],i=[0,0],u=[2277735313,289559509],l=[1291169091,658871167];for(t=0;t<o;t+=16)c=[255&e.charCodeAt(t+4)|(255&e.charCodeAt(t+5))<<8|(255&e.charCodeAt(t+6))<<16|(255&e.charCodeAt(t+7))<<24,255&e.charCodeAt(t)|(255&e.charCodeAt(t+1))<<8|(255&e.charCodeAt(t+2))<<16|(255&e.charCodeAt(t+3))<<24],i=[255&e.charCodeAt(t+12)|(255&e.charCodeAt(t+13))<<8|(255&e.charCodeAt(t+14))<<16|(255&e.charCodeAt(t+15))<<24,255&e.charCodeAt(t+8)|(255&e.charCodeAt(t+9))<<8|(255&e.charCodeAt(t+10))<<16|(255&e.charCodeAt(t+11))<<24],c=ne(c=_(c,u),31),a=z(a=ne(a=A(a,c=_(c,l)),27),s),a=z(_(a,[0,5]),[0,1390208809]),i=ne(i=_(i,l),33),s=z(s=ne(s=A(s,i=_(i,u)),31),a),s=z(_(s,[0,5]),[0,944331445]);switch(c=[0,0],i=[0,0],r){case 15:i=A(i,M([0,e.charCodeAt(t+14)],48));case 14:i=A(i,M([0,e.charCodeAt(t+13)],40));case 13:i=A(i,M([0,e.charCodeAt(t+12)],32));case 12:i=A(i,M([0,e.charCodeAt(t+11)],24));case 11:i=A(i,M([0,e.charCodeAt(t+10)],16));case 10:i=A(i,M([0,e.charCodeAt(t+9)],8));case 9:i=_(i=A(i,[0,e.charCodeAt(t+8)]),l),s=A(s,i=_(i=ne(i,33),u));case 8:c=A(c,M([0,e.charCodeAt(t+7)],56));case 7:c=A(c,M([0,e.charCodeAt(t+6)],48));case 6:c=A(c,M([0,e.charCodeAt(t+5)],40));case 5:c=A(c,M([0,e.charCodeAt(t+4)],32));case 4:c=A(c,M([0,e.charCodeAt(t+3)],24));case 3:c=A(c,M([0,e.charCodeAt(t+2)],16));case 2:c=A(c,M([0,e.charCodeAt(t+1)],8));case 1:c=_(c=A(c,[0,e.charCodeAt(t)]),u),a=A(a,c=_(c=ne(c,31),l))}return a=z(a=A(a,[0,e.length]),s=A(s,[0,e.length])),s=z(s,a),a=z(a=pt(a),s=pt(s)),s=z(s,a),("00000000"+(a[0]>>>0).toString(16)).slice(-8)+("00000000"+(a[1]>>>0).toString(16)).slice(-8)+("00000000"+(s[0]>>>0).toString(16)).slice(-8)+("00000000"+(s[1]>>>0).toString(16)).slice(-8)}function Ne(e){return parseInt(e)}function H(e){return parseFloat(e)}function W(e,n){return typeof e=="number"&&isNaN(e)?n:e}function D(e){return e.reduce(function(n,t){return n+(t?1:0)},0)}function _t(e,n){if(n===void 0&&(n=1),Math.abs(n)>=1)return Math.round(e/n)*n;const t=1/n;return Math.round(e*t)/t}function mt(e){return e&&typeof e=="object"&&"message"in e?e:{message:e}}function dr(e){return typeof e!="function"}function fr(e,n,t){const r=Object.keys(e).filter(function(a){return!(function(s,c){for(let i=0,u=s.length;i<u;++i)if(s[i]===c)return!0;return!1})(t,a)}),o=Array(r.length);return ht(r,function(a,s){o[s]=(function(c,i){const u=new Promise(function(l){const f=Date.now();ft(c.bind(null,i),function(){for(var m=[],v=0;v<arguments.length;v++)m[v]=arguments[v];const E=Date.now()-f;if(!m[0])return l(function(){return{error:mt(m[1]),duration:E}});const b=m[1];if(dr(b))return l(function(){return{value:b,duration:E}});l(function(){return new Promise(function(h){const I=Date.now();ft(b,function(){for(var P=[],U=0;U<arguments.length;U++)P[U]=arguments[U];const J=E+Date.now()-I;if(!P[0])return h({error:mt(P[1]),duration:J});h({value:P[1],duration:J})})})})})});return Ie(u),function(){return u.then(function(l){return l()})}})(e[a],n)}),function(){return Z(this,void 0,void 0,function(){let a,s,c,i,u,l;return X(this,function(f){switch(f.label){case 0:for(a={},s=0,c=r;s<c.length;s++)i=c[s],a[i]=void 0;u=Array(r.length),l=function(){let m;return X(this,function(v){switch(v.label){case 0:return m=!0,[4,ht(r,function(E,b){if(!u[b])if(o[b]){const h=o[b]().then(function(I){return a[E]=I});Ie(h),u[b]=h}else m=!1})];case 1:return v.sent(),m?[2,"break"]:[4,B(1)];case 2:return v.sent(),[2]}})},f.label=1;case 1:return[5,l()];case 2:if(f.sent()==="break")return[3,4];f.label=3;case 3:return[3,1];case 4:return[4,Promise.all(u)];case 5:return f.sent(),[2,a]}})})}}function Vt(){const e=window,n=navigator;return D(["MSCSSMatrix"in e,"msSetImmediate"in e,"msIndexedDB"in e,"msMaxTouchPoints"in n,"msPointerEnabled"in n])>=4}function hr(){const e=window,n=navigator;return D(["msWriteProfilerMark"in e,"MSStream"in e,"msLaunchUri"in n,"msSaveBlob"in n])>=3&&!Vt()}function Je(){const e=window,n=navigator;return D(["webkitPersistentStorage"in n,"webkitTemporaryStorage"in n,n.vendor.indexOf("Google")===0,"webkitResolveLocalFileSystemURL"in e,"BatteryManager"in e,"webkitMediaStream"in e,"webkitSpeechGrammar"in e])>=5}function he(){const e=window,n=navigator;return D(["ApplePayError"in e,"CSSPrimitiveValue"in e,"Counter"in e,n.vendor.indexOf("Apple")===0,"getStorageUpdates"in n,"WebKitMediaKeys"in e])>=4}function qe(){const e=window;return D(["safari"in e,!("DeviceMotionEvent"in e),!("ongestureend"in e),!("standalone"in navigator)])>=3}function pr(){let e,n,t=window;return D(["buildID"in navigator,"MozAppearance"in((n=(e=document.documentElement)===null||e===void 0?void 0:e.style)!==null&&n!==void 0?n:{}),"onmozfullscreenchange"in t,"mozInnerScreenX"in t,"CSSMozDocumentRule"in t,"CanvasCaptureMediaStream"in t])>=4}function mr(){const e=document;return e.fullscreenElement||e.msFullscreenElement||e.mozFullScreenElement||e.webkitFullscreenElement||null}function Ht(){const e=Je(),n=pr();if(!e&&!n)return!1;const t=window;return D(["onorientationchange"in t,"orientation"in t,e&&!("SharedWorker"in t),n&&/android/i.test(navigator.appVersion)])>=2}function vt(e){const n=new Error(e);return n.name=e,n}function gt(e,n,t){let r,o,a;return t===void 0&&(t=50),Z(this,void 0,void 0,function(){let s,c;return X(this,function(i){switch(i.label){case 0:s=document,i.label=1;case 1:return s.body?[3,3]:[4,B(t)];case 2:return i.sent(),[3,1];case 3:c=s.createElement("iframe"),i.label=4;case 4:return i.trys.push([4,,10,11]),[4,new Promise(function(u,l){let f=!1,m=function(){f=!0,u()};c.onload=m,c.onerror=function(b){f=!0,l(b)};const v=c.style;v.setProperty("display","block","important"),v.position="absolute",v.top="0",v.left="0",v.visibility="hidden",c.src="about:blank",s.body.appendChild(c);const E=function(){let b,h;f||(((h=(b=c.contentWindow)===null||b===void 0?void 0:b.document)===null||h===void 0?void 0:h.readyState)==="complete"?m():setTimeout(E,10))};E()})];case 5:i.sent(),i.label=6;case 6:return!((o=(r=c.contentWindow)===null||r===void 0?void 0:r.document)===null||o===void 0)&&o.body?[3,8]:[4,B(t)];case 7:return i.sent(),[3,6];case 8:return[4,e(c,c.contentWindow)];case 9:return[2,i.sent()];case 10:return(a=c.parentNode)===null||a===void 0||a.removeChild(c),[7];case 11:return[2]}})})}function vr(e){for(var n=(function(c){for(var i,u,l="Unexpected syntax '".concat(c,"'"),f=/^\s*([a-z-]*)(.*)$/i.exec(c),m=f[1]||void 0,v={},E=/([.:#][\w-]+|\[.+?\])/gi,b=function(I,P){v[I]=v[I]||[],v[I].push(P)};;){const I=E.exec(f[2]);if(!I)break;const P=I[0];switch(P[0]){case".":b("class",P.slice(1));break;case"#":b("id",P.slice(1));break;case"[":var h=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(P);if(!h)throw new Error(l);b(h[1],(u=(i=h[4])!==null&&i!==void 0?i:h[5])!==null&&u!==void 0?u:"");break;default:throw new Error(l)}}return[m,v]})(e),t=n[0],r=n[1],o=document.createElement(t??"div"),a=0,s=Object.keys(r);a<s.length;a++){const c=s[a],i=r[c].join(" ");c==="style"?gr(o.style,i):o.setAttribute(c,i)}return o}function gr(e,n){for(let t=0,r=n.split(";");t<r.length;t++){const o=r[t],a=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/.exec(o);if(a){const s=a[1],c=a[2],i=a[4];e.setProperty(s,c,i||"")}}}const re=["monospace","sans-serif","serif"],bt=["sans-serif-thin","ARNO PRO","Agency FB","Arabic Typesetting","Arial Unicode MS","AvantGarde Bk BT","BankGothic Md BT","Batang","Bitstream Vera Sans Mono","Calibri","Century","Century Gothic","Clarendon","EUROSTILE","Franklin Gothic","Futura Bk BT","Futura Md BT","GOTHAM","Gill Sans","HELV","Haettenschweiler","Helvetica Neue","Humanst521 BT","Leelawadee","Letter Gothic","Levenim MT","Lucida Bright","Lucida Sans","Menlo","MS Mincho","MS Outlook","MS Reference Specialty","MS UI Gothic","MT Extra","MYRIAD PRO","Marlett","Meiryo UI","Microsoft Uighur","Minion Pro","Monotype Corsiva","PMingLiU","Pristina","SCRIPTINA","Segoe UI Light","Serifa","SimHei","Small Fonts","Staccato222 BT","TRAJAN PRO","Univers CE 55 Medium","Vrinda","ZWAdobeF"];function Fe(e){return e.toDataURL()}let Ee,Me;function br(){const e=this;return(function(){if(Me===void 0){const n=function(){const t=_e();Ve(t)?Me=setTimeout(n,2500):(Ee=t,Me=void 0)};n()}})(),function(){return Z(e,void 0,void 0,function(){let n;return X(this,function(t){switch(t.label){case 0:return Ve(n=_e())?Ee?[2,ie([],Ee,!0)]:mr()?[4,(r=document,(r.exitFullscreen||r.msExitFullscreen||r.mozCancelFullScreen||r.webkitExitFullscreen).call(r))]:[3,2]:[3,2];case 1:t.sent(),n=_e(),t.label=2;case 2:return Ve(n)||(Ee=n),[2,n]}let r})})}}function _e(){const e=screen;return[W(H(e.availTop),null),W(H(e.width)-H(e.availWidth)-W(H(e.availLeft),0),null),W(H(e.height)-H(e.availHeight)-W(H(e.availTop),0),null),W(H(e.availLeft),null)]}function Ve(e){for(let n=0;n<4;++n)if(e[n])return!1;return!0}function yr(e){let n;return Z(this,void 0,void 0,function(){let t,r,o,a,s,c,i;return X(this,function(u){switch(u.label){case 0:for(t=document,r=t.createElement("div"),o=new Array(e.length),a={},yt(r),i=0;i<e.length;++i)s=vr(e[i]),yt(c=t.createElement("div")),c.appendChild(s),r.appendChild(c),o[i]=s;u.label=1;case 1:return t.body?[3,3]:[4,B(50)];case 2:return u.sent(),[3,1];case 3:t.body.appendChild(r);try{for(i=0;i<e.length;++i)o[i].offsetParent||(a[e[i]]=!0)}finally{(n=r.parentNode)===null||n===void 0||n.removeChild(r)}return[2,a]}})})}function yt(e){e.style.setProperty("display","block","important")}function Et(e){return matchMedia("(inverted-colors: ".concat(e,")")).matches}function St(e){return matchMedia("(forced-colors: ".concat(e,")")).matches}function oe(e){return matchMedia("(prefers-contrast: ".concat(e,")")).matches}function Lt(e){return matchMedia("(prefers-reduced-motion: ".concat(e,")")).matches}function wt(e){return matchMedia("(dynamic-range: ".concat(e,")")).matches}const S=Math,x=function(){return 0},He={default:[],apple:[{font:"-apple-system-body"}],serif:[{fontFamily:"serif"}],sans:[{fontFamily:"sans-serif"}],mono:[{fontFamily:"monospace"}],min:[{fontSize:"1px"}],system:[{fontFamily:"system-ui"}]},Er={fonts:function(){return gt(function(e,n){const t=n.document,r=t.body;r.style.fontSize="48px";const o=t.createElement("div"),a={},s={},c=function(l){const f=t.createElement("span"),m=f.style;return m.position="absolute",m.top="0",m.left="0",m.fontFamily=l,f.textContent="mmMwWLliI0O&1",o.appendChild(f),f},i=re.map(c),u=(function(){for(var l={},f=function(E){l[E]=re.map(function(b){return(function(h,I){return c("'".concat(h,"',").concat(I))})(E,b)})},m=0,v=bt;m<v.length;m++)f(v[m]);return l})();r.appendChild(o);for(let l=0;l<re.length;l++)a[re[l]]=i[l].offsetWidth,s[re[l]]=i[l].offsetHeight;return bt.filter(function(l){return n=u[l],re.some(function(f,m){return n[m].offsetWidth!==a[f]||n[m].offsetHeight!==s[f]})})})},domBlockers:function(e){const n=(e===void 0?{}:e).debug;return Z(this,void 0,void 0,function(){let t,r,o,a,s;return X(this,function(c){switch(c.label){case 0:return he()||Ht()?(i=atob,t={abpIndo:["#Iklan-Melayang","#Kolom-Iklan-728","#SidebarIklan-wrapper",i("YVt0aXRsZT0iN25hZ2EgcG9rZXIiIGld"),'[title="ALIENBOLA" i]'],abpvn:["#quangcaomb",i("Lmlvc0Fkc2lvc0Fkcy1sYXlvdXQ="),".quangcao",i("W2hyZWZePSJodHRwczovL3I4OC52bi8iXQ=="),i("W2hyZWZePSJodHRwczovL3piZXQudm4vIl0=")],adBlockFinland:[".mainostila",i("LnNwb25zb3JpdA=="),".ylamainos",i("YVtocmVmKj0iL2NsaWNrdGhyZ2guYXNwPyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9hcHAucmVhZHBlYWsuY29tL2FkcyJd")],adBlockPersian:["#navbar_notice_50",".kadr",'TABLE[width="140px"]',"#divAgahi",i("I2FkMl9pbmxpbmU=")],adBlockWarningRemoval:["#adblock-honeypot",".adblocker-root",".wp_adblock_detect",i("LmhlYWRlci1ibG9ja2VkLWFk"),i("I2FkX2Jsb2NrZXI=")],adGuardAnnoyances:['amp-embed[type="zen"]',".hs-sosyal","#cookieconsentdiv",'div[class^="app_gdpr"]',".as-oil"],adGuardBase:[".BetterJsPopOverlay",i("I2FkXzMwMFgyNTA="),i("I2Jhbm5lcmZsb2F0MjI="),i("I2FkLWJhbm5lcg=="),i("I2NhbXBhaWduLWJhbm5lcg==")],adGuardChinese:[i("LlppX2FkX2FfSA=="),i("YVtocmVmKj0iL29kMDA1LmNvbSJd"),i("YVtocmVmKj0iLmh0aGJldDM0LmNvbSJd"),".qq_nr_lad","#widget-quan"],adGuardFrench:[i("I2Jsb2NrLXZpZXdzLWFkcy1zaWRlYmFyLWJsb2NrLWJsb2Nr"),"#pavePub",i("LmFkLWRlc2t0b3AtcmVjdGFuZ2xl"),".mobile_adhesion",".widgetadv"],adGuardGerman:[i("LmJhbm5lcml0ZW13ZXJidW5nX2hlYWRfMQ=="),i("LmJveHN0YXJ0d2VyYnVuZw=="),i("LndlcmJ1bmcz"),i("YVtocmVmXj0iaHR0cDovL3d3dy5laXMuZGUvaW5kZXgucGh0bWw/cmVmaWQ9Il0="),i("YVtocmVmXj0iaHR0cHM6Ly93d3cudGlwaWNvLmNvbS8/YWZmaWxpYXRlSWQ9Il0=")],adGuardJapanese:["#kauli_yad_1",i("YVtocmVmXj0iaHR0cDovL2FkMi50cmFmZmljZ2F0ZS5uZXQvIl0="),i("Ll9wb3BJbl9pbmZpbml0ZV9hZA=="),i("LmFkZ29vZ2xl"),i("LmFkX3JlZ3VsYXIz")],adGuardMobile:[i("YW1wLWF1dG8tYWRz"),i("LmFtcF9hZA=="),'amp-embed[type="24smi"]',"#mgid_iframe1",i("I2FkX2ludmlld19hcmVh")],adGuardRussian:[i("YVtocmVmXj0iaHR0cHM6Ly9hZC5sZXRtZWFkcy5jb20vIl0="),i("LnJlY2xhbWE="),'div[id^="smi2adblock"]',i("ZGl2W2lkXj0iQWRGb3hfYmFubmVyXyJd"),i("I2FkX3NxdWFyZQ==")],adGuardSocial:[i("YVtocmVmXj0iLy93d3cuc3R1bWJsZXVwb24uY29tL3N1Ym1pdD91cmw9Il0="),i("YVtocmVmXj0iLy90ZWxlZ3JhbS5tZS9zaGFyZS91cmw/Il0="),".etsy-tweet","#inlineShare",".popup-social"],adGuardSpanishPortuguese:["#barraPublicidade","#Publicidade","#publiEspecial","#queTooltip",i("W2hyZWZePSJodHRwOi8vYWRzLmdsaXNwYS5jb20vIl0=")],adGuardTrackingProtection:["#qoo-counter",i("YVtocmVmXj0iaHR0cDovL2NsaWNrLmhvdGxvZy5ydS8iXQ=="),i("YVtocmVmXj0iaHR0cDovL2hpdGNvdW50ZXIucnUvdG9wL3N0YXQucGhwIl0="),i("YVtocmVmXj0iaHR0cDovL3RvcC5tYWlsLnJ1L2p1bXAiXQ=="),"#top100counter"],adGuardTurkish:["#backkapat",i("I3Jla2xhbWk="),i("YVtocmVmXj0iaHR0cDovL2Fkc2Vydi5vbnRlay5jb20udHIvIl0="),i("YVtocmVmXj0iaHR0cDovL2l6bGVuemkuY29tL2NhbXBhaWduLyJd"),i("YVtocmVmXj0iaHR0cDovL3d3dy5pbnN0YWxsYWRzLm5ldC8iXQ==")],bulgarian:[i("dGQjZnJlZW5ldF90YWJsZV9hZHM="),"#ea_intext_div",".lapni-pop-over","#xenium_hot_offers",i("I25ld0Fk")],easyList:[i("I0FEX0NPTlRST0xfMjg="),i("LnNlY29uZC1wb3N0LWFkcy13cmFwcGVy"),".universalboxADVBOX03",i("LmFkdmVydGlzZW1lbnQtNzI4eDkw"),i("LnNxdWFyZV9hZHM=")],easyListChina:[i("YVtocmVmKj0iLndlbnNpeHVldGFuZy5jb20vIl0="),i("LmFwcGd1aWRlLXdyYXBbb25jbGljayo9ImJjZWJvcy5jb20iXQ=="),i("LmZyb250cGFnZUFkdk0="),"#taotaole","#aafoot.top_box"],easyListCookie:["#AdaCompliance.app-notice",".text-center.rgpd",".panel--cookie",".js-cookies-andromeda",".elxtr-consent"],easyListCzechSlovak:["#onlajny-stickers",i("I3Jla2xhbW5pLWJveA=="),i("LnJla2xhbWEtbWVnYWJvYXJk"),".sklik",i("W2lkXj0ic2tsaWtSZWtsYW1hIl0=")],easyListDutch:[i("I2FkdmVydGVudGll"),i("I3ZpcEFkbWFya3RCYW5uZXJCbG9jaw=="),".adstekst",i("YVtocmVmXj0iaHR0cHM6Ly94bHR1YmUubmwvY2xpY2svIl0="),"#semilo-lrectangle"],easyListGermany:[i("I0FkX1dpbjJkYXk="),i("I3dlcmJ1bmdzYm94MzAw"),i("YVtocmVmXj0iaHR0cDovL3d3dy5yb3RsaWNodGthcnRlaS5jb20vP3NjPSJd"),i("I3dlcmJ1bmdfd2lkZXNreXNjcmFwZXJfc2NyZWVu"),i("YVtocmVmXj0iaHR0cDovL2xhbmRpbmcucGFya3BsYXR6a2FydGVpLmNvbS8/YWc9Il0=")],easyListItaly:[i("LmJveF9hZHZfYW5udW5jaQ=="),".sb-box-pubbliredazionale",i("YVtocmVmXj0iaHR0cDovL2FmZmlsaWF6aW9uaWFkcy5zbmFpLml0LyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9hZHNlcnZlci5odG1sLml0LyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9hZmZpbGlhemlvbmlhZHMuc25haS5pdC8iXQ==")],easyListLithuania:[i("LnJla2xhbW9zX3RhcnBhcw=="),i("LnJla2xhbW9zX251b3JvZG9z"),i("aW1nW2FsdD0iUmVrbGFtaW5pcyBza3lkZWxpcyJd"),i("aW1nW2FsdD0iRGVkaWt1b3RpLmx0IHNlcnZlcmlhaSJd"),i("aW1nW2FsdD0iSG9zdGluZ2FzIFNlcnZlcmlhaS5sdCJd")],estonian:[i("QVtocmVmKj0iaHR0cDovL3BheTRyZXN1bHRzMjQuZXUiXQ==")],fanboyAnnoyances:["#feedback-tab","#taboola-below-article",".feedburnerFeedBlock",".widget-feedburner-counter",'[title="Subscribe to our blog"]'],fanboyAntiFacebook:[".util-bar-module-firefly-visible"],fanboyEnhancedTrackers:[".open.pushModal","#issuem-leaky-paywall-articles-zero-remaining-nag","#sovrn_container",'div[class$="-hide"][zoompage-fontsize][style="display: block;"]',".BlockNag__Card"],fanboySocial:[".td-tags-and-social-wrapper-box",".twitterContainer",".youtube-social",'a[title^="Like us on Facebook"]','img[alt^="Share on Digg"]'],frellwitSwedish:[i("YVtocmVmKj0iY2FzaW5vcHJvLnNlIl1bdGFyZ2V0PSJfYmxhbmsiXQ=="),i("YVtocmVmKj0iZG9rdG9yLXNlLm9uZWxpbmsubWUiXQ=="),"article.category-samarbete",i("ZGl2LmhvbGlkQWRz"),"ul.adsmodern"],greekAdBlock:[i("QVtocmVmKj0iYWRtYW4ub3RlbmV0LmdyL2NsaWNrPyJd"),i("QVtocmVmKj0iaHR0cDovL2F4aWFiYW5uZXJzLmV4b2R1cy5nci8iXQ=="),i("QVtocmVmKj0iaHR0cDovL2ludGVyYWN0aXZlLmZvcnRobmV0LmdyL2NsaWNrPyJd"),"DIV.agores300","TABLE.advright"],hungarian:["#cemp_doboz",".optimonk-iframe-container",i("LmFkX19tYWlu"),i("W2NsYXNzKj0iR29vZ2xlQWRzIl0="),"#hirdetesek_box"],iDontCareAboutCookies:['.alert-info[data-block-track*="CookieNotice"]',".ModuleTemplateCookieIndicator",".o--cookies--container",".cookie-msg-info-container","#cookies-policy-sticky"],icelandicAbp:[i("QVtocmVmXj0iL2ZyYW1ld29yay9yZXNvdXJjZXMvZm9ybXMvYWRzLmFzcHgiXQ==")],latvian:[i("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiAxMjBweDsgaGVpZ2h0OiA0MHB4OyBvdmVyZmxvdzogaGlkZGVuOyBwb3NpdGlvbjogcmVsYXRpdmU7Il0="),i("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiA4OHB4OyBoZWlnaHQ6IDMxcHg7IG92ZXJmbG93OiBoaWRkZW47IHBvc2l0aW9uOiByZWxhdGl2ZTsiXQ==")],listKr:[i("YVtocmVmKj0iLy9hZC5wbGFuYnBsdXMuY28ua3IvIl0="),i("I2xpdmVyZUFkV3JhcHBlcg=="),i("YVtocmVmKj0iLy9hZHYuaW1hZHJlcC5jby5rci8iXQ=="),i("aW5zLmZhc3R2aWV3LWFk"),".revenue_unit_item.dable"],listeAr:[i("LmdlbWluaUxCMUFk"),".right-and-left-sponsers",i("YVtocmVmKj0iLmFmbGFtLmluZm8iXQ=="),i("YVtocmVmKj0iYm9vcmFxLm9yZyJd"),i("YVtocmVmKj0iZHViaXp6bGUuY29tL2FyLz91dG1fc291cmNlPSJd")],listeFr:[i("YVtocmVmXj0iaHR0cDovL3Byb21vLnZhZG9yLmNvbS8iXQ=="),i("I2FkY29udGFpbmVyX3JlY2hlcmNoZQ=="),i("YVtocmVmKj0id2Vib3JhbWEuZnIvZmNnaS1iaW4vIl0="),".site-pub-interstitiel",'div[id^="crt-"][data-criteo-id]'],officialPolish:["#ceneo-placeholder-ceneo-12",i("W2hyZWZePSJodHRwczovL2FmZi5zZW5kaHViLnBsLyJd"),i("YVtocmVmXj0iaHR0cDovL2Fkdm1hbmFnZXIudGVjaGZ1bi5wbC9yZWRpcmVjdC8iXQ=="),i("YVtocmVmXj0iaHR0cDovL3d3dy50cml6ZXIucGwvP3V0bV9zb3VyY2UiXQ=="),i("ZGl2I3NrYXBpZWNfYWQ=")],ro:[i("YVtocmVmXj0iLy9hZmZ0cmsuYWx0ZXgucm8vQ291bnRlci9DbGljayJd"),'a[href^="/magazin/"]',i("YVtocmVmXj0iaHR0cHM6Ly9ibGFja2ZyaWRheXNhbGVzLnJvL3Ryay9zaG9wLyJd"),i("YVtocmVmXj0iaHR0cHM6Ly9ldmVudC4ycGVyZm9ybWFudC5jb20vZXZlbnRzL2NsaWNrIl0="),i("YVtocmVmXj0iaHR0cHM6Ly9sLnByb2ZpdHNoYXJlLnJvLyJd")],ruAd:[i("YVtocmVmKj0iLy9mZWJyYXJlLnJ1LyJd"),i("YVtocmVmKj0iLy91dGltZy5ydS8iXQ=="),i("YVtocmVmKj0iOi8vY2hpa2lkaWtpLnJ1Il0="),"#pgeldiz",".yandex-rtb-block"],thaiAds:["a[href*=macau-uta-popup]",i("I2Fkcy1nb29nbGUtbWlkZGxlX3JlY3RhbmdsZS1ncm91cA=="),i("LmFkczMwMHM="),".bumq",".img-kosana"],webAnnoyancesUltralist:["#mod-social-share-2","#social-tools",i("LmN0cGwtZnVsbGJhbm5lcg=="),".zergnet-recommend",".yt.btn-link.btn-md.btn"]},r=Object.keys(t),[4,yr((s=[]).concat.apply(s,r.map(function(u){return t[u]})))]):[2,void 0];case 1:return o=c.sent(),n&&(function(u,l){for(var f="DOM blockers debug:\n```",m=0,v=Object.keys(u);m<v.length;m++){const E=v[m];f+=`
2
2
  `.concat(E,":");for(let b=0,h=u[E];b<h.length;b++){const I=h[b];f+=`
3
3
  `.concat(l[I]?"🚫":"➡️"," ").concat(I)}}console.log("".concat(f,"\n```"))})(t,o),(a=r.filter(function(u){const l=t[u];return D(l.map(function(f){return o[f]}))>.6*l.length})).sort(),[2,a]}let i})})},fontPreferences:function(){return(function(e,n){return n===void 0&&(n=4e3),gt(function(t,r){const o=r.document,a=o.body,s=a.style;s.width="".concat(n,"px"),s.webkitTextSizeAdjust=s.textSizeAdjust="none",Je()?a.style.zoom="".concat(1/r.devicePixelRatio):he()&&(a.style.zoom="reset");const c=o.createElement("div");return c.textContent=ie([],Array(n/20<<0),!0).map(function(){return"word"}).join(" "),a.appendChild(c),e(o,a)})})(function(e,n){for(var t={},r={},o=0,a=Object.keys(He);o<a.length;o++){var s=a[o],c=He[s],i=c[0],u=i===void 0?{}:i,l=c[1],f=l===void 0?"mmMwWLliI0fiflO&1":l,m=e.createElement("span");m.textContent=f,m.style.whiteSpace="nowrap";for(let v=0,E=Object.keys(u);v<E.length;v++){const b=E[v],h=u[b];h!==void 0&&(m.style[b]=h)}t[s]=m,n.appendChild(e.createElement("br")),n.appendChild(m)}for(let v=0,E=Object.keys(He);v<E.length;v++)r[s=E[v]]=t[s].getBoundingClientRect().width;return r})},audio:function(){const e=window,n=e.OfflineAudioContext||e.webkitOfflineAudioContext;if(!n)return-2;if(he()&&!qe()&&!(function(){const u=window;return D(["DOMRectList"in u,"RTCPeerConnectionIceEvent"in u,"SVGGeometryElement"in u,"ontransitioncancel"in u])>=3})())return-1;const t=new n(1,5e3,44100),r=t.createOscillator();r.type="triangle",r.frequency.value=1e4;const o=t.createDynamicsCompressor();o.threshold.value=-50,o.knee.value=40,o.ratio.value=12,o.attack.value=0,o.release.value=.25,r.connect(o),o.connect(t.destination),r.start(0);const a=(function(u){let l=3,f=500,m=500,v=5e3,E=function(){};return[new Promise(function(b,h){let I=!1,P=0,U=0;u.oncomplete=function(Y){return b(Y.renderedBuffer)};const J=function(){setTimeout(function(){return h(vt("timeout"))},Math.min(m,U+v-Date.now()))},be=function(){try{const Y=u.startRendering();switch(Mt(Y)&&Ie(Y),u.state){case"running":U=Date.now(),I&&J();break;case"suspended":document.hidden||P++,I&&P>=l?h(vt("suspended")):setTimeout(be,f)}}catch(Y){h(Y)}};be(),E=function(){I||(I=!0,U>0&&J())}}),E]})(t),s=a[0],c=a[1],i=s.then(function(u){return(function(l){for(var f=0,m=0;m<l.length;++m)f+=Math.abs(l[m]);return f})(u.getChannelData(0).subarray(4500))},function(u){if(u.name==="timeout"||u.name==="suspended")return-3;throw u});return Ie(i),function(){return c(),i}},screenFrame:function(){const e=this,n=br();return function(){return Z(e,void 0,void 0,function(){let t,r;return X(this,function(o){switch(o.label){case 0:return[4,n()];case 1:return t=o.sent(),[2,[(r=function(a){return a===null?null:_t(a,10)})(t[0]),r(t[1]),r(t[2]),r(t[3])]]}})})}},osCpu:function(){return navigator.oscpu},languages:function(){let e,n=navigator,t=[],r=n.language||n.userLanguage||n.browserLanguage||n.systemLanguage;if(r!==void 0&&t.push([r]),Array.isArray(n.languages))Je()&&D([!("MediaSettingsRange"in(e=window)),"RTCEncodedAudioFrame"in e,""+e.Intl=="[object Intl]",""+e.Reflect=="[object Reflect]"])>=3||t.push(n.languages);else if(typeof n.languages=="string"){const o=n.languages;o&&t.push(o.split(","))}return t},colorDepth:function(){return window.screen.colorDepth},deviceMemory:function(){return W(H(navigator.deviceMemory),void 0)},screenResolution:function(){const e=screen,n=function(r){return W(Ne(r),null)},t=[n(e.width),n(e.height)];return t.sort().reverse(),t},hardwareConcurrency:function(){return W(Ne(navigator.hardwareConcurrency),void 0)},timezone:function(){let e,n=(e=window.Intl)===null||e===void 0?void 0:e.DateTimeFormat;if(n){const o=new n().resolvedOptions().timeZone;if(o)return o}let t,r=(t=new Date().getFullYear(),-Math.max(H(new Date(t,0,1).getTimezoneOffset()),H(new Date(t,6,1).getTimezoneOffset())));return"UTC".concat(r>=0?"+":"").concat(Math.abs(r))},sessionStorage:function(){try{return!!window.sessionStorage}catch{return!0}},localStorage:function(){try{return!!window.localStorage}catch{return!0}},indexedDB:function(){if(!Vt()&&!hr())try{return!!window.indexedDB}catch{return!0}},openDatabase:function(){return!!window.openDatabase},cpuClass:function(){return navigator.cpuClass},platform:function(){const e=navigator.platform;return e==="MacIntel"&&he()&&!qe()?(function(){if(navigator.platform==="iPad")return!0;const n=screen,t=n.width/n.height;return D(["MediaSource"in window,!!Element.prototype.webkitRequestFullscreen,t>.65&&t<1.53])>=2})()?"iPad":"iPhone":e},plugins:function(){const e=navigator.plugins;if(e){for(var n=[],t=0;t<e.length;++t){const a=e[t];if(a){for(var r=[],o=0;o<a.length;++o){const s=a[o];r.push({type:s.type,suffixes:s.suffixes})}n.push({name:a.name,description:a.description,mimeTypes:r})}}return n}},canvas:function(){let e,n,t=!1,r=(function(){const s=document.createElement("canvas");return s.width=1,s.height=1,[s,s.getContext("2d")]})(),o=r[0],a=r[1];if((function(s,c){return!(!c||!s.toDataURL)})(o,a)){t=(function(c){return c.rect(0,0,10,10),c.rect(2,2,6,6),!c.isPointInPath(5,5,"evenodd")})(a),(function(c,i){c.width=240,c.height=60,i.textBaseline="alphabetic",i.fillStyle="#f60",i.fillRect(100,1,62,20),i.fillStyle="#069",i.font='11pt "Times New Roman"';const u="Cwm fjordbank gly ".concat("😃");i.fillText(u,2,15),i.fillStyle="rgba(102, 204, 0, 0.2)",i.font="18pt Arial",i.fillText(u,4,45)})(o,a);const s=Fe(o);s!==Fe(o)?e=n="unstable":(n=s,(function(c,i){c.width=122,c.height=110,i.globalCompositeOperation="multiply";for(let u=0,l=[["#f2f",40,40],["#2ff",80,40],["#ff2",60,80]];u<l.length;u++){const f=l[u],m=f[0],v=f[1],E=f[2];i.fillStyle=m,i.beginPath(),i.arc(v,E,40,0,2*Math.PI,!0),i.closePath(),i.fill()}i.fillStyle="#f9c",i.arc(60,60,60,0,2*Math.PI,!0),i.arc(60,60,20,0,2*Math.PI,!0),i.fill("evenodd")})(o,a),e=Fe(o))}else e=n="";return{winding:t,geometry:e,text:n}},touchSupport:function(){let e,n=navigator,t=0;n.maxTouchPoints!==void 0?t=Ne(n.maxTouchPoints):n.msMaxTouchPoints!==void 0&&(t=n.msMaxTouchPoints);try{document.createEvent("TouchEvent"),e=!0}catch{e=!1}return{maxTouchPoints:t,touchEvent:e,touchStart:"ontouchstart"in window}},vendor:function(){return navigator.vendor||""},vendorFlavors:function(){for(var e=[],n=0,t=["chrome","safari","__crWeb","__gCrWeb","yandex","__yb","__ybro","__firefox__","__edgeTrackingPreventionStatistics","webkit","oprt","samsungAr","ucweb","UCShellJava","puffinDevice"];n<t.length;n++){const r=t[n],o=window[r];o&&typeof o=="object"&&e.push(r)}return e.sort()},cookiesEnabled:function(){const e=document;try{e.cookie="cookietest=1; SameSite=Strict;";const n=e.cookie.indexOf("cookietest=")!==-1;return e.cookie="cookietest=1; SameSite=Strict; expires=Thu, 01-Jan-1970 00:00:01 GMT",n}catch{return!1}},colorGamut:function(){for(let e=0,n=["rec2020","p3","srgb"];e<n.length;e++){const t=n[e];if(matchMedia("(color-gamut: ".concat(t,")")).matches)return t}},invertedColors:function(){return!!Et("inverted")||!Et("none")&&void 0},forcedColors:function(){return!!St("active")||!St("none")&&void 0},monochrome:function(){if(matchMedia("(min-monochrome: 0)").matches){for(let e=0;e<=100;++e)if(matchMedia("(max-monochrome: ".concat(e,")")).matches)return e;throw new Error("Too high value")}},contrast:function(){return oe("no-preference")?0:oe("high")||oe("more")?1:oe("low")||oe("less")?-1:oe("forced")?10:void 0},reducedMotion:function(){return!!Lt("reduce")||!Lt("no-preference")&&void 0},hdr:function(){return!!wt("high")||!wt("standard")&&void 0},math:function(){let e,n=S.acos||x,t=S.acosh||x,r=S.asin||x,o=S.asinh||x,a=S.atanh||x,s=S.atan||x,c=S.sin||x,i=S.sinh||x,u=S.cos||x,l=S.cosh||x,f=S.tan||x,m=S.tanh||x,v=S.exp||x,E=S.expm1||x,b=S.log1p||x;return{acos:n(.12312423423423424),acosh:t(1e308),acoshPf:(e=1e154,S.log(e+S.sqrt(e*e-1))),asin:r(.12312423423423424),asinh:o(1),asinhPf:(function(h){return S.log(h+S.sqrt(h*h+1))})(1),atanh:a(.5),atanhPf:(function(h){return S.log((1+h)/(1-h))/2})(.5),atan:s(.5),sin:c(-1e300),sinh:i(1),sinhPf:(function(h){return S.exp(h)-1/S.exp(h)/2})(1),cos:u(10.000000000123),cosh:l(1),coshPf:(function(h){return(S.exp(h)+1/S.exp(h))/2})(1),tan:f(-1e300),tanh:m(1),tanhPf:(function(h){return(S.exp(2*h)-1)/(S.exp(2*h)+1)})(1),exp:v(1),expm1:E(1),expm1Pf:(function(h){return S.exp(h)-1})(1),log1p:b(10),log1pPf:(function(h){return S.log(1+h)})(10),powPI:(function(h){return S.pow(S.PI,h)})(-100)}},videoCard:function(){let e,n=document.createElement("canvas"),t=(e=n.getContext("webgl"))!==null&&e!==void 0?e:n.getContext("experimental-webgl");if(t&&"getExtension"in t){const r=t.getExtension("WEBGL_debug_renderer_info");if(r)return{vendor:(t.getParameter(r.UNMASKED_VENDOR_WEBGL)||"").toString(),renderer:(t.getParameter(r.UNMASKED_RENDERER_WEBGL)||"").toString()}}},pdfViewerEnabled:function(){return navigator.pdfViewerEnabled},architecture:function(){const e=new Float32Array(1),n=new Uint8Array(e.buffer);return e[0]=1/0,e[0]=e[0]-e[0],n[3]}};function Sr(e){const n=(function(r){if(Ht())return .4;if(he())return qe()?.5:.3;const o=r.platform.value||"";return/^Win/.test(o)?.6:/^Mac/.test(o)?.5:.7})(e),t=(function(r){return _t(.99+.01*r,1e-4)})(n);return{score:n,comment:"$ if upgrade to Pro: https://fpjs.dev/pro".replace(/\$/g,"".concat(t))}}function Lr(e){return JSON.stringify(e,function(n,t){return t instanceof Error?ze({name:(ie=t).name,message:ie.message,stack:(B=ie.stack)===null||B===void 0?void 0:B.split(`
4
4
  `)},ie):t},2)}function wr(e){return lr((function(n){for(var t="",r=0,o=Object.keys(n).sort();r<o.length;r++){const a=o[r],s=n[a],c=s.error?"error":JSON.stringify(s.value);t+="".concat(t?"|":"").concat(a.replace(/([:|\\])/g,"\\$1"),":").concat(c)}return t})(e))}function Rr(e){return e===void 0&&(e=50),(function(n,t){t===void 0&&(t=1/0);const r=window.requestIdleCallback;return r?new Promise(function(o){return r.call(window,function(){return o()},{timeout:t})}):B(Math.min(n,t))})(e,2*e)}function Ar(e,n){const t=Date.now();return{get:function(r){return Z(this,void 0,void 0,function(){let o,a,s;return X(this,function(c){switch(c.label){case 0:return o=Date.now(),[4,e()];case 1:return a=c.sent(),s=(function(i){let u;return{get visitorId(){return u===void 0&&(u=wr(this.components)),u},set visitorId(l){u=l},confidence:Sr(i),components:i,version:"3.4.1"}})(a),(n||r?.debug)&&console.log("Copy the text below to get the debug data:\n\n```\nversion: ".concat(s.version,`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aibox-web-tracing",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "keywords": [
5
5
  "tracing",
6
6
  "utils",