clarity-js 0.7.30 → 0.7.31
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/build/clarity.extended.js +1 -1
- package/build/clarity.insight.js +1 -1
- package/build/clarity.js +47 -16
- package/build/clarity.min.js +1 -1
- package/build/clarity.module.js +47 -16
- package/build/clarity.performance.js +1 -1
- package/package.json +1 -1
- package/src/core/version.ts +1 -1
- package/src/data/baseline.ts +6 -3
- package/src/data/encode.ts +1 -0
- package/src/insight/snapshot.ts +2 -0
- package/src/interaction/encode.ts +3 -1
- package/src/interaction/scroll.ts +2 -3
- package/src/layout/discover.ts +2 -2
- package/src/layout/mutation.ts +10 -10
- package/src/layout/node.ts +3 -3
- package/src/layout/style.ts +11 -6
- package/src/layout/traverse.ts +2 -2
- package/types/data.d.ts +1 -0
package/build/clarity.js
CHANGED
|
@@ -156,7 +156,7 @@ function stop$F() {
|
|
|
156
156
|
startTime = 0;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
var version$1 = "0.7.
|
|
159
|
+
var version$1 = "0.7.31";
|
|
160
160
|
|
|
161
161
|
// tslint:disable: no-bitwise
|
|
162
162
|
function hash (input, precision) {
|
|
@@ -378,7 +378,8 @@ function reset$s() {
|
|
|
378
378
|
scrollY: buffer.scrollY,
|
|
379
379
|
pointerX: buffer.pointerX,
|
|
380
380
|
pointerY: buffer.pointerY,
|
|
381
|
-
activityTime: buffer.activityTime
|
|
381
|
+
activityTime: buffer.activityTime,
|
|
382
|
+
scrollTime: buffer.scrollTime
|
|
382
383
|
}
|
|
383
384
|
};
|
|
384
385
|
}
|
|
@@ -392,10 +393,11 @@ function reset$s() {
|
|
|
392
393
|
scrollY: 0,
|
|
393
394
|
pointerX: 0,
|
|
394
395
|
pointerY: 0,
|
|
395
|
-
activityTime: 0
|
|
396
|
+
activityTime: 0,
|
|
397
|
+
scrollTime: 0
|
|
396
398
|
};
|
|
397
399
|
}
|
|
398
|
-
function track$8(event, x, y) {
|
|
400
|
+
function track$8(event, x, y, time) {
|
|
399
401
|
switch (event) {
|
|
400
402
|
case 8 /* Event.Document */:
|
|
401
403
|
buffer.docWidth = x;
|
|
@@ -408,6 +410,7 @@ function track$8(event, x, y) {
|
|
|
408
410
|
case 10 /* Event.Scroll */:
|
|
409
411
|
buffer.scrollX = x;
|
|
410
412
|
buffer.scrollY = y;
|
|
413
|
+
buffer.scrollTime = time;
|
|
411
414
|
break;
|
|
412
415
|
default:
|
|
413
416
|
buffer.pointerX = x;
|
|
@@ -2498,7 +2501,15 @@ function recompute$4(event) {
|
|
|
2498
2501
|
// And, if for some reason that is not available, fall back to looking up scrollTop on document.documentElement.
|
|
2499
2502
|
var x = element === de && "pageXOffset" in w ? Math.round(w.pageXOffset) : Math.round(element.scrollLeft);
|
|
2500
2503
|
var y = element === de && "pageYOffset" in w ? Math.round(w.pageYOffset) : Math.round(element.scrollTop);
|
|
2501
|
-
var
|
|
2504
|
+
var width = window.innerWidth;
|
|
2505
|
+
var height = window.innerHeight;
|
|
2506
|
+
var xPosition = width / 3;
|
|
2507
|
+
var yOffset = width > height ? height * 0.15 : height * 0.2;
|
|
2508
|
+
var startYPosition = yOffset;
|
|
2509
|
+
var endYPosition = height - yOffset;
|
|
2510
|
+
var top = getPositionHash(xPosition, startYPosition);
|
|
2511
|
+
var bottom = getPositionHash(xPosition, endYPosition);
|
|
2512
|
+
var current = { time: time(event), event: 10 /* Event.Scroll */, data: { target: element, x: x, y: y, top: top, bottom: bottom } };
|
|
2502
2513
|
// We don't send any scroll events if this is the first event and the current position is top (0,0)
|
|
2503
2514
|
if ((event === null && x === 0 && y === 0) || (x === null || y === null)) {
|
|
2504
2515
|
return;
|
|
@@ -2512,6 +2523,23 @@ function recompute$4(event) {
|
|
|
2512
2523
|
clearTimeout(timeout$3);
|
|
2513
2524
|
timeout$3 = setTimeout(process$3, 500 /* Setting.LookAhead */, 10 /* Event.Scroll */);
|
|
2514
2525
|
}
|
|
2526
|
+
function getPositionHash(x, y) {
|
|
2527
|
+
var _a, _b, _c, _d;
|
|
2528
|
+
var node;
|
|
2529
|
+
if ("caretPositionFromPoint" in document) {
|
|
2530
|
+
node = (_a = document.caretPositionFromPoint(x, y)) === null || _a === void 0 ? void 0 : _a.offsetNode;
|
|
2531
|
+
}
|
|
2532
|
+
else if ("caretRangeFromPoint" in document) {
|
|
2533
|
+
node = (_b = document.caretRangeFromPoint(x, y)) === null || _b === void 0 ? void 0 : _b.startContainer;
|
|
2534
|
+
}
|
|
2535
|
+
if (!node) {
|
|
2536
|
+
node = document.elementFromPoint(x, y);
|
|
2537
|
+
}
|
|
2538
|
+
if (node && node.nodeType === Node.TEXT_NODE) {
|
|
2539
|
+
node = node.parentNode;
|
|
2540
|
+
}
|
|
2541
|
+
return (_d = (_c = get(node)) === null || _c === void 0 ? void 0 : _c.hash) === null || _d === void 0 ? void 0 : _d[1];
|
|
2542
|
+
}
|
|
2515
2543
|
function reset$a() {
|
|
2516
2544
|
state$2 = [];
|
|
2517
2545
|
}
|
|
@@ -2749,7 +2777,7 @@ function num$1(input, scale) {
|
|
|
2749
2777
|
|
|
2750
2778
|
var IGNORE_ATTRIBUTES = ["title", "alt", "onload", "onfocus", "onerror", "data-drupal-form-submit-last"];
|
|
2751
2779
|
var newlineRegex = /[\r\n]+/g;
|
|
2752
|
-
function processNode (node, source) {
|
|
2780
|
+
function processNode (node, source, timestamp) {
|
|
2753
2781
|
var _a;
|
|
2754
2782
|
var child = null;
|
|
2755
2783
|
// Do not track this change if we are attempting to remove a node before discovering it
|
|
@@ -2999,7 +3027,7 @@ function getAttributes(element) {
|
|
|
2999
3027
|
return output;
|
|
3000
3028
|
}
|
|
3001
3029
|
|
|
3002
|
-
function traverse (root, timer, source) {
|
|
3030
|
+
function traverse (root, timer, source, timestamp) {
|
|
3003
3031
|
return __awaiter(this, void 0, void 0, function () {
|
|
3004
3032
|
var queue, entry, next, state, subnode;
|
|
3005
3033
|
return __generator(this, function (_a) {
|
|
@@ -3174,7 +3202,7 @@ function process$1() {
|
|
|
3174
3202
|
return [3 /*break*/, 6];
|
|
3175
3203
|
}
|
|
3176
3204
|
target = mutation.target;
|
|
3177
|
-
type = track$3(mutation, timer, instance);
|
|
3205
|
+
type = track$3(mutation, timer, instance, record.time);
|
|
3178
3206
|
if (type && target && target.ownerDocument) {
|
|
3179
3207
|
parse$1(target.ownerDocument);
|
|
3180
3208
|
}
|
|
@@ -3183,14 +3211,14 @@ function process$1() {
|
|
|
3183
3211
|
}
|
|
3184
3212
|
switch (type) {
|
|
3185
3213
|
case "attributes" /* Constant.Attributes */:
|
|
3186
|
-
processNode(target, 3 /* Source.Attributes
|
|
3214
|
+
processNode(target, 3 /* Source.Attributes */, record.time);
|
|
3187
3215
|
break;
|
|
3188
3216
|
case "characterData" /* Constant.CharacterData */:
|
|
3189
|
-
processNode(target, 4 /* Source.CharacterData
|
|
3217
|
+
processNode(target, 4 /* Source.CharacterData */, record.time);
|
|
3190
3218
|
break;
|
|
3191
3219
|
case "childList" /* Constant.ChildList */:
|
|
3192
|
-
processNodeList(mutation.addedNodes, 1 /* Source.ChildListAdd */, timer);
|
|
3193
|
-
processNodeList(mutation.removedNodes, 2 /* Source.ChildListRemove */, timer);
|
|
3220
|
+
processNodeList(mutation.addedNodes, 1 /* Source.ChildListAdd */, timer, record.time);
|
|
3221
|
+
processNodeList(mutation.removedNodes, 2 /* Source.ChildListRemove */, timer, record.time);
|
|
3194
3222
|
break;
|
|
3195
3223
|
case "suspend" /* Constant.Suspend */:
|
|
3196
3224
|
value = get(target);
|
|
@@ -3214,7 +3242,7 @@ function process$1() {
|
|
|
3214
3242
|
});
|
|
3215
3243
|
});
|
|
3216
3244
|
}
|
|
3217
|
-
function track$3(m, timer, instance) {
|
|
3245
|
+
function track$3(m, timer, instance, timestamp) {
|
|
3218
3246
|
var value = m.target ? get(m.target.parentNode) : null;
|
|
3219
3247
|
// Check if the parent is already discovered and that the parent is not the document root
|
|
3220
3248
|
if (value && value.data.tag !== "HTML" /* Constant.HTML */) {
|
|
@@ -3256,7 +3284,7 @@ function names(nodes) {
|
|
|
3256
3284
|
}
|
|
3257
3285
|
return output.join();
|
|
3258
3286
|
}
|
|
3259
|
-
function processNodeList(list, source, timer) {
|
|
3287
|
+
function processNodeList(list, source, timer, timestamp) {
|
|
3260
3288
|
return __awaiter(this, void 0, void 0, function () {
|
|
3261
3289
|
var length, i, state;
|
|
3262
3290
|
return __generator(this, function (_a) {
|
|
@@ -3476,8 +3504,10 @@ function encode$3 (type, ts) {
|
|
|
3476
3504
|
tokens.push(sTarget.id);
|
|
3477
3505
|
tokens.push(entry.data.x);
|
|
3478
3506
|
tokens.push(entry.data.y);
|
|
3507
|
+
tokens.push(entry.data.top);
|
|
3508
|
+
tokens.push(entry.data.bottom);
|
|
3479
3509
|
queue(tokens);
|
|
3480
|
-
track$8(entry.event, entry.data.x, entry.data.y);
|
|
3510
|
+
track$8(entry.event, entry.data.x, entry.data.y, entry.time);
|
|
3481
3511
|
}
|
|
3482
3512
|
}
|
|
3483
3513
|
reset$a();
|
|
@@ -3755,7 +3785,7 @@ function send(payload, zipped, sequence, beacon) {
|
|
|
3755
3785
|
xhr_1.onreadystatechange = function () { measure(check$3)(xhr_1, sequence); };
|
|
3756
3786
|
}
|
|
3757
3787
|
xhr_1.withCredentials = true;
|
|
3758
|
-
if (
|
|
3788
|
+
if (zipped) {
|
|
3759
3789
|
// If we do have valid compressed array, send it with appropriate HTTP headers so server can decode it appropriately
|
|
3760
3790
|
xhr_1.setRequestHeader("Accept" /* Constant.Accept */, "application/x-clarity-gzip" /* Constant.ClarityGzip */);
|
|
3761
3791
|
xhr_1.send(zipped);
|
|
@@ -4166,6 +4196,7 @@ function encode$1 (event) {
|
|
|
4166
4196
|
tokens.push(b.data.pointerX);
|
|
4167
4197
|
tokens.push(b.data.pointerY);
|
|
4168
4198
|
tokens.push(b.data.activityTime);
|
|
4199
|
+
tokens.push(b.data.scrollTime);
|
|
4169
4200
|
queue(tokens, false);
|
|
4170
4201
|
}
|
|
4171
4202
|
reset$s();
|
package/build/clarity.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return Pa},get start(){return qa},get stop(){return Ua},get track(){return za}}),e=Object.freeze({__proto__:null,get clone(){return dr},get compute(){return fr},get data(){return ar},get keys(){return rr},get reset(){return hr},get start(){return sr},get stop(){return vr},get trigger(){return lr},get update(){return pr}}),n=Object.freeze({__proto__:null,get check(){return kr},get compute(){return Or},get data(){return nr},get start(){return wr},get stop(){return Sr},get trigger(){return Er}}),a=Object.freeze({__proto__:null,get compute(){return Ir},get data(){return Nr},get log(){return _r},get reset(){return Cr},get start(){return Mr},get stop(){return Tr},get updates(){return xr}}),r=Object.freeze({__proto__:null,get callbacks(){return Ar},get clear(){return Yr},get consent(){return Xr},get data(){return Dr},get electron(){return jr},get id(){return Wr},get metadata(){return Hr},get save(){return qr},get shortid(){return Vr},get start(){return Rr},get stop(){return zr}}),i=Object.freeze({__proto__:null,get data(){return Qr},get envelope(){return ei},get start(){return $r},get stop(){return ti}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now();return Math.max(Math.round(e-c),0)}var l="0.7.29";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=!0,p=null,v=null,g=null;function m(t,e,n,a){if(void 0===a&&(a=!1),t)switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=h&&null!==g?s.match(g)?s:k(s,"▪","▫"):w(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?y(t):w(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return w(t)}break;case 4:switch(e){case"*T":case"data-":return a?y(t):w(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return k(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}return t}function b(t,e){if(void 0===e&&(e=!1),e)return"".concat("https://").concat("Electron");var n=o.drop;if(n&&n.length>0&&t&&t.indexOf("?")>0){var a=t.split("?"),r=a[0],i=a[1];return r+"?"+i.split("&").map((function(t){return n.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}return t}function y(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function w(t){return t.replace(f,"•")}function k(t,e,n){return O(),t?t.replace(v,e).replace(p,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(h&&null===p)try{p=new RegExp("\\p{N}","gu"),v=new RegExp("\\p{L}","gu"),g=new RegExp("\\p{Sc}","gu")}catch(t){h=!1}}var S=null,N=null,x=!1;function M(){x&&(S={time:s(),event:4,data:{visible:N.visible,docWidth:N.docWidth,docHeight:N.docHeight,screenWidth:N.screenWidth,screenHeight:N.screenHeight,scrollX:N.scrollX,scrollY:N.scrollY,pointerX:N.pointerX,pointerY:N.pointerY,activityTime:N.activityTime}}),N=N||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0}}function T(t,e,n){switch(t){case 8:N.docWidth=e,N.docHeight=n;break;case 11:N.screenWidth=e,N.screenHeight=n;break;case 10:N.scrollX=e,N.scrollY=n;break;default:N.pointerX=e,N.pointerY=n}x=!0}function _(t){N.activityTime=t}function I(t,e){N.visible="visible"===e?1:0,N.visible||_(t),x=!0}function C(){x&&yr(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:M,start:function(){x=!1,M()},get state(){return S},stop:function(){M()},track:T,visibility:I}),A=null;function j(t,e){yi()&&t&&"string"==typeof t&&t.length<255&&(A=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},yr(24))}var L,R=null,z=null;function H(t){t in R||(R[t]=0),t in z||(z[t]=0),R[t]++,z[t]++}function W(t,e){null!==e&&(t in R||(R[t]=0),t in z||(z[t]=0),R[t]+=e,z[t]+=e)}function X(t,e){null!==e&&!1===isNaN(e)&&(t in R||(R[t]=0),(e>R[t]||0===R[t])&&(z[t]=e,R[t]=e))}function Y(t,e,n){return window.setTimeout(ri(t),e,n)}function q(t){return window.clearTimeout(t)}var P=0,U=0,V=null;function B(){V&&q(V),V=Y(F,U),P=s()}function F(){var t=s();L={gap:t-P},yr(25),L.gap<3e5?V=Y(F,U):gi&&(j("clarity","suspend"),Li(),["mousemove","touchstart"].forEach((function(t){return oi(document,t,ki)})),["resize","scroll","pageshow"].forEach((function(t){return oi(window,t,ki)})))}var J=Object.freeze({__proto__:null,get data(){return L},reset:B,start:function(){U=6e4,P=0},stop:function(){q(V),P=0,U=0}}),K=null;function G(t,e){if(t in K){var n=K[t],a=n[n.length-1];e-a[0]>100?K[t].push([e,0]):a[1]=e-a[0]}else K[t]=[[e,0]]}function Z(){yr(36)}function Q(){K={}}var $=Object.freeze({__proto__:null,compute:Z,get data(){return K},reset:Q,start:function(){K={}},stop:function(){K={}},track:G}),tt=null;function et(t){yi()&&o.lean&&(o.lean=!1,tt={key:t},qr(),o.upgrade&&o.upgrade(t),yr(3))}var nt=Object.freeze({__proto__:null,get data(){return tt},start:function(){!o.lean&&o.upgrade&&o.upgrade("Config"),tt=null},stop:function(){tt=null},upgrade:et});function at(t,e,n,a){return new(n||(n=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(t){i(t)}}function u(t){try{c(a.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,u)}c((a=a.apply(t,e||[])).next())}))}function rt(t,e){var n,a,r,i,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function u(u){return function(c){return function(u){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,u[0]&&(o=0)),o;)try{if(n=1,a&&(r=2&u[0]?a.return:u[0]?a.throw||((r=a.return)&&r.call(a),0):a.next)&&!(r=r.call(a,u[1])).done)return r;switch(a=0,r&&(u=[2&u[0],r.value]),u[0]){case 0:case 1:r=u;break;case 4:return o.label++,{value:u[1],done:!1};case 5:o.label++,a=u[1],u=[0];continue;case 7:u=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==u[0]&&2!==u[0])){o=0;continue}if(3===u[0]&&(!r||u[1]>r[0]&&u[1]<r[3])){o.label=u[1];break}if(6===u[0]&&o.label<r[1]){o.label=r[1],r=u;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(u);break}r[2]&&o.ops.pop(),o.trys.pop();continue}u=e.call(t,o)}catch(t){u=[6,t],a=0}finally{n=r=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}var it=null;function ot(t,e){ct(t,"string"==typeof e?[e]:e)}function ut(t,e,n,a){return void 0===e&&(e=null),void 0===n&&(n=null),void 0===a&&(a=null),at(this,void 0,void 0,(function(){var r,i;return rt(this,(function(o){switch(o.label){case 0:return i={},[4,dt(t)];case 1:return i.userId=o.sent(),i.userHint=a||((u=t)&&u.length>=5?"".concat(u.substring(0,2)).concat(k(u.substring(2),"*","*")):k(u,"*","*")),ct("userId",[(r=i).userId]),ct("userHint",[r.userHint]),ct("userType",[ft(t)]),e&&(ct("sessionId",[e]),r.sessionId=e),n&&(ct("pageId",[n]),r.pageId=n),[2,r]}var u}))}))}function ct(t,e){if(yi()&&t&&e&&"string"==typeof t&&t.length<255){for(var n=(t in it?it[t]:[]),a=0;a<e.length;a++)"string"==typeof e[a]&&e[a].length<255&&n.push(e[a]);it[t]=n}}function st(){yr(34)}function lt(){it={}}function dt(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ft(t){return t&&t.indexOf("@")>0?"email":"string"}var ht="CompressionStream"in window;function pt(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),ht?(e=new ReadableStream({start:function(e){return at(this,void 0,void 0,(function(){return rt(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,vt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function vt(t){return at(this,void 0,void 0,(function(){var e,n,a,r,i;return rt(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var gt=null;function mt(t){try{if(!gt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){gt(t)}))}catch(t){}}var bt=[D,a,Object.freeze({__proto__:null,compute:st,get data(){return it},identify:ut,reset:lt,set:ot,start:function(){lt()},stop:function(){lt()}}),n,$,r,i,t,J,nt,e];function yt(){R={},z={},H(5),bt.forEach((function(t){return ri(t.start)()}))}function wt(){bt.slice().reverse().forEach((function(t){return ri(t.stop)()})),R={},z={}}function kt(){st(),C(),Ir(),yr(0),Z(),Or(),fr()}var Et,Ot=[];function St(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,24)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),Qa(41)))}var Nt="load,active,fixed,visible,focus,show,collaps,animat".split(","),xt={};function Mt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return Tt(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in xt||(xt[c]=[]),xt[c].indexOf(t.id)<0&&xt[c].push(t.id),i="".concat(c).concat("~").concat(xt[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&Tt(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function Tt(t){if(!t)return!1;if(Nt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var _t=1,It=null,Ct=[],Dt=[],At={},jt=[],Lt=[],Rt=[],zt=[],Ht=[],Wt=[],Xt=null,Yt=null,qt=null,Pt=null;function Ut(){Bt(),Ft(document,!0)}function Vt(){Bt()}function Bt(){_t=1,Ct=[],Dt=[],At={},jt=[],Lt=[],Rt="address,password,contact".split(","),zt="password,secret,pass,social,ssn,code,hidden".split(","),Ht="radio,checkbox,range,button,reset,submit".split(","),Wt="INPUT,SELECT,TEXTAREA".split(","),It=new Map,Xt=new WeakMap,Yt=new WeakMap,qt=new WeakMap,Pt=new WeakMap,xt={}}function Ft(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Lt.push(t):jt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Ge(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Pt.set(t,e[0])}))})),Lt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,0)}))})))}catch(t){er(5,1,t?t.name:null)}}function Jt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Xt.get(t);return!n&&e&&(n=_t++,Xt.set(t,n)),n||null}function Kt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Yt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Gt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Yt.has(e)?Yt.get(e):null}function Zt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function Qt(t){var e=t.parent&&t.parent in Ct?Ct[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=Ct[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[Mt(i,0),Mt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return At[e]=t.id}))}function $t(t){var e=te(ne(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function te(t){return It.has(t)?It.get(t):null}function ee(t){var e=Jt(t);return e in Ct?Ct[e]:null}function ne(t){return t in At?At[t]:null}function ae(t){return It.has(Jt(t))}function re(){for(var t=[],e=0,n=Dt;e<n.length;e++){var a=n[e];a in Ct&&t.push(Ct[a])}return Dt=[],t}function ie(t){It.delete(t);var e=t in Ct?Ct[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ie(a[n])}}function oe(t){for(var e=null;null===e&&t.previousSibling;)e=Jt(t.previousSibling),t=t.previousSibling;return e}function ue(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=Dt.indexOf(t);r>=0&&1===e&&a?(Dt.splice(r,1),Dt.push(t)):-1===r&&n&&Dt.push(t)}var ce=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Jt(t,!0),u=e?Jt(e):null,c=oe(t),s=null,l=Ze(t)?i:null,d=Pt.has(t)?Pt.get(t):null,f=o.content?1:3;u>=0&&Ct[u]&&((s=Ct[u]).children.push(i),l=null===l?s.region:l,d=null===d?s.metadata.fraud:d,f=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Ge(t,n.attributes["data-clarity-region"]),l=i),It.set(i,t),Ct[i]={id:i,parent:u,previous:c,children:[],data:n,selector:null,hash:null,region:l,metadata:{active:!0,suspend:!1,privacy:f,position:null,fraud:d,size:null}},function(t,e,n){var a=e.data,r=e.metadata,i=r.privacy,o=a.attributes||{},u=a.tag.toUpperCase();switch(!0){case Wt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=zt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Ht.indexOf(c)>=0?i:l?4:2;break;case"data-clarity-mask"in o:r.privacy=3;break;case"data-clarity-unmask"in o:r.privacy=0;break;case qt.has(t):r.privacy=qt.get(t);break;case Pt.has(t):r.privacy=2;break;case"*T"===u:var d=n&&n.data?n.data.tag:"",f=n&&n.selector?n.selector[1]:"",h=["STYLE","TITLE","svg:style"];r.privacy=h.includes(d)||jt.some((function(t){return f.indexOf(t)>=0}))?0:i;break;case 1===i:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(o.class,Rt,r)}}(t,Ct[i],s),Qt(Ct[i]),"IMG"===(r=Ct[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ue(i,a)},get:ee,getId:Jt,getNode:te,getValue:function(t){return t in Ct?Ct[t]:null},has:ae,hashText:$t,iframe:Gt,lookup:ne,parse:Ft,sameorigin:Kt,start:Ut,stop:Vt,update:function(t,e,n,a){var r=Jt(t),i=e?Jt(e):null,o=oe(t),u=!1,c=!1;if(r in Ct){var s=Ct[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:Ct[i].children.indexOf(o)+1;Ct[i].children.splice(d,0,r),s.region=Ze(t)?r:Ct[i].region}else!function(t,e){if(t in Ct){var n=Ct[t];n.metadata.active=!1,n.parent=null,ue(t,e),ie(t)}}(r,a);if(null!==l&&l>=0){var f=Ct[l].children.indexOf(r);f>=0&&Ct[l].children.splice(f,1)}c=!0}for(var h in n)Zt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Qt(s),ue(r,a,u,c)}},updates:re}),se=5e3,le={},de=[],fe=null,he=null,pe=null;function ve(){le={},de=[],fe=null,he=null}function ge(t,e){return void 0===e&&(e=0),at(this,void 0,void 0,(function(){var n,a,r;return rt(this,(function(i){for(n=0,a=de;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){de[1===e?"unshift":"push"]({task:t,resolve:n,id:Wr()})})),null===fe&&null===he&&me(),[2,r]}))}))}function me(){var t=de.shift();t&&(fe=t,t.task().then((function(){t.id===Wr()&&(t.resolve(),fe=null,me())})).catch((function(e){t.id===Wr()&&(e&&er(0,1,e.name,e.message,e.stack),fe=null,me())})))}function be(t){var e=Ee(t);return e in le?performance.now()-le[e].start>le[e].yield?0:1:2}function ye(t){le[Ee(t)]={start:performance.now(),calls:0,yield:30}}function we(t){var e=performance.now(),n=Ee(t),a=e-le[n].start;W(t.cost,a),H(5),le[n].calls>0&&W(4,a)}function ke(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in le?(we(t),n=le[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(le&&le[e]){var n=le[e].calls,a=le[e].yield;ye(t),le[e].calls=n+1,le[e].yield=a}}(t),a.label=2;case 2:return[2,e in le?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return he?[4,he]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Ne(t,{timeout:se})}))]}}))}))}var Se,Ne=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function xe(){Se=null}function Me(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Se&&c===Se.width&&v===Se.height||null===c||null===v||(Se={width:c,height:v},Xe(8))}var Te=[],_e=[],Ie=null,Ce=null,De=null,Ae=null,je="clarityAnimationId",Le="clarityOperationCount",Re=20;function ze(){_e=[]}function He(t,e,n,a,r,i,o){_e.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),Xe(44)}function We(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){if(yi()){var n=this.effect,a=Jt(this.effect.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!this[je]){this[je]=Vr(),this[Le]=0;var r=n.getKeyframes(),i=n.getTiming();He(s(),this[je],0,JSON.stringify(r),JSON.stringify(i),a)}if(this[Le]++<Re){var o=null;switch(e){case"play":o=1;break;case"pause":o=2;break;case"cancel":o=3;break;case"finish":o=4}o&&He(s(),this[je],o)}}}return t.apply(this,arguments)})}function Xe(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),at(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,b,y,w,k,E,O,S,N,x,M,I,C,D,A,j,L,R;return rt(this,(function(z){switch(z.label){case 0:switch(a=n||s(),r=[a,t],t){case 8:return[3,1];case 7:return[3,2];case 45:return[3,3];case 46:return[3,4];case 44:return[3,5];case 5:case 6:return[3,6]}return[3,13];case 1:return i=Se,r.push(i.width),r.push(i.height),T(t,i.width,i.height),Pa(r),[3,13];case 2:for(u=0,c=Ue;u<c.length;u++)l=c[u],(r=[l.time,7]).push(l.data.id),r.push(l.data.interaction),r.push(l.data.visibility),r.push(l.data.name),Pa(r);return nn(),[3,13];case 3:for(d=0,f=Te;d<f.length;d++)b=f[d],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.newIds),Pa(r);return[3,13];case 4:for(h=0,p=Te;h<p.length;h++)b=p[h],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.cssRules),Pa(r);z.label=5;case 5:for(v=0,g=_e;v<g.length;v++)b=g[v],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.keyFrames),r.push(b.data.timing),r.push(b.data.timeline),r.push(b.data.targetId),Pa(r);return ze(),[3,13];case 6:if(2===be(e))return[3,13];if(!((y=re()).length>0))return[3,12];w=0,k=y,z.label=7;case 7:return w<k.length?(E=k[w],0!==(O=be(e))?[3,9]:[4,ke(e)]):[3,11];case 8:O=z.sent(),z.label=9;case 9:if(2===O)return[3,11];for(S=E.data,N=E.metadata.active,x=E.metadata.suspend,M=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=N?["tag","attributes","value"]:["tag"];C<D.length;C++)if(S[A=D[C]])switch(A){case"tag":j=Ye(E),L=I?-1:1,r.push(E.id*L),E.parent&&N&&r.push(E.parent),E.previous&&N&&r.push(E.previous),r.push(x?"*M":S[A]),j&&2===j.length&&r.push("".concat("#").concat(qe(j[0]),".").concat(qe(j[1])));break;case"attributes":for(R in S[A])void 0!==S[A][R]&&r.push(Pe(R,S[A][R],M));break;case"value":St(E.metadata.fraud,E.id,S[A]),r.push(m(S[A],S.tag,M,I))}z.label=10;case 10:return w++,[3,7];case 11:6===t&&_(a),Pa(function(t){for(var e=[],n={},a=0,r=null,i=0;i<t.length;i++)if("string"==typeof t[i]){var o=t[i],u=n[o]||-1;u>=0?r?r.push(u):(r=[u],e.push(r),a++):(r=null,e.push(o),n[o]=a++)}else r=null,e.push(t[i]),a++;return e}(r),!o.lean),z.label=12;case 12:return[3,13];case 13:return[2]}}))}))}function Ye(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=te(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function qe(t){return t.toString(36)}function Pe(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var Ue=[],Ve=null,Be={},Fe=[],Je=!1,Ke=null;function Ge(t,e){!1===Ve.has(t)&&(Ve.set(t,e),(Ke=null===Ke&&Je?new IntersectionObserver($e,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Ke)&&t&&t.nodeType===Node.ELEMENT_NODE&&Ke.observe(t))}function Ze(t){return Ve&&Ve.has(t)}function Qe(){for(var t=[],e=0,n=Fe;e<n.length;e++){var a=n[e],r=Jt(a.node);r?(a.state.data.id=r,Be[r]=a.state.data,Ue.push(a.state)):t.push(a)}Fe=t,Ue.length>0&&Xe(7)}function $e(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],r=a.target,i=a.boundingClientRect,o=a.intersectionRect,u=a.rootBounds;if(Ve.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Jt(r):null,s=c in Be?Be[c]:{id:c,name:Ve.get(r),interaction:16,visibility:0},l=(o?o.width*o.height*1/(u.width*u.height):0)>.05||a.intersectionRatio>.8,d=(l||10==s.visibility)&&Math.abs(i.top)+u.height>i.height;tn(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Ke&&Ke.unobserve(r)}}Ue.length>0&&Xe(7)}function tn(t,e,n,a){var r=n>e.interaction||a>e.visibility;e.interaction=n>e.interaction?n:e.interaction,e.visibility=a>e.visibility?a:e.visibility,e.id?(e.id in Be&&r||!(e.id in Be))&&(Be[e.id]=e,Ue.push(en(e))):Fe.push({node:t,state:en(e)})}function en(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function nn(){Ue=[]}var an=[];function rn(t){var e=xa(t);if(e){var n=e.value,a=n&&n.length>=5&&o.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?d(n,24):"";an.push({time:s(t),event:42,data:{target:xa(t),type:e.type,value:n,checksum:a}}),ge(Ta.bind(this,42))}}function on(){an=[]}function un(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Gt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var cn=["input","textarea","radio","button","canvas"],sn=[];function ln(t){oi(t,"click",dn.bind(this,9,t),!0)}function dn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=un(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=xa(n),l=function(t){for(;t&&t!==document;){if(t.nodeType===Node.ELEMENT_NODE){var e=t;if("A"===e.tagName)return e}t=t.parentNode}return null}(c),d=function(t){var e=null,n=document.documentElement;if("function"==typeof t.getBoundingClientRect){var a=t.getBoundingClientRect();a&&a.width>0&&a.height>0&&(e={x:Math.floor(a.left+("pageXOffset"in window?window.pageXOffset:n.scrollLeft)),y:Math.floor(a.top+("pageYOffset"in window?window.pageYOffset:n.scrollTop)),w:Math.floor(a.width),h:Math.floor(a.height)})}return e}(c);0===n.detail&&d&&(i=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var f=d?Math.max(Math.floor((i-d.x)/d.w*32767),0):0,h=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==i&&null!==o&&(sn.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:hn(c),context:pn(l),text:fn(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),ge(Ta.bind(this,t)))}function fn(t){var e=null;if(t){var n=t.textContent||t.value||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function hn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(cn.indexOf(e)>=0)return 0}return 1}function pn(t){if(t&&t.hasAttribute("target"))switch(t.getAttribute("target")){case"_blank":return 1;case"_parent":return 2;case"_top":return 3}return 0}function vn(){sn=[]}var gn=[];function mn(t,e){gn.push({time:s(e),event:38,data:{target:xa(e),action:t}}),ge(Ta.bind(this,38))}function bn(){gn=[]}var yn=null,wn=[];function kn(t){var e=xa(t),n=ee(e);if(e&&e.type&&n){var a=e.value;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a};wn.length>0&&wn[wn.length-1].data.target===r.target&&wn.pop(),wn.push({time:s(t),event:27,data:r}),q(yn),yn=Y(En,1e3,27)}}function En(t){ge(Ta.bind(this,t))}function On(){wn=[]}var Sn,Nn=[],xn=null;function Mn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=un(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&_n({time:s(n),event:t,data:{target:xa(n),x:i,y:o}})}function Tn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i=n.changedTouches,o=s(n);if(i)for(var u=0;u<i.length;u++){var c=i[u],l="clientX"in c?Math.round(c.clientX+r.scrollLeft):null,d="clientY"in c?Math.round(c.clientY+r.scrollTop):null;l=l&&a?l+Math.round(a.offsetLeft):l,d=d&&a?d+Math.round(a.offsetTop):d,null!==l&&null!==d&&_n({time:o,event:t,data:{target:xa(n),x:l,y:d}})}}function _n(t){switch(t.event){case 12:case 15:case 19:var e=Nn.length,n=e>1?Nn[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,r=Math.sqrt(n*n+a*a),i=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&r<20&&i<25}(n,t)&&Nn.pop(),Nn.push(t),q(xn),xn=Y(In,500,t.event);break;default:Nn.push(t),In(t.event)}}function In(t){ge(Ta.bind(this,t))}function Cn(){Nn=[]}function Dn(){var t=document.documentElement;Sn={width:t&&"clientWidth"in t?Math.min(t.clientWidth,window.innerWidth):window.innerWidth,height:t&&"clientHeight"in t?Math.min(t.clientHeight,window.innerHeight):window.innerHeight},Ta(11)}function An(){Sn=null}var jn=[],Ln=null;function Rn(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?xa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Gt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u={time:s(t),event:10,data:{target:a,x:i,y:o}};if((null!==t||0!==i||0!==o)&&null!==i&&null!==o){var c=jn.length,l=c>1?jn[c-2]:null;l&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(l,u)&&jn.pop(),jn.push(u),q(Ln),Ln=Y(zn,500,10)}}function zn(t){ge(Ta.bind(this,t))}var Hn=null,Wn=null,Xn=null;function Yn(t){var e=(t.nodeType===Node.DOCUMENT_NODE?t:document).getSelection();if(null!==e&&!(null===e.anchorNode&&null===e.focusNode||e.anchorNode===e.focusNode&&e.anchorOffset===e.focusOffset)){var n=Hn.start?Hn.start:null;null!==Wn&&null!==Hn.start&&n!==e.anchorNode&&(q(Xn),qn(21)),Hn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Wn=e,q(Xn),Xn=Y(qn,500,21)}}function qn(t){ge(Ta.bind(this,t))}function Pn(){Wn=null,Hn={start:0,startOffset:0,end:0,endOffset:0}}var Un,Vn,Bn=[];function Fn(t){Bn.push({time:s(t),event:39,data:{target:xa(t)}}),ge(Ta.bind(this,39))}function Jn(){Bn=[]}function Kn(t){Un={name:t.type},Ta(26,s(t)),Li()}function Gn(){Un=null}function Zn(t){void 0===t&&(t=null),Vn={visible:"visibilityState"in document?document.visibilityState:"default"},Ta(28,s(t))}function Qn(){Vn=null}function $n(t){!function(t){var e=Gt(t);oi(e?e.contentWindow:t===document?window:t,"scroll",Rn,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(ln(t),function(t){oi(t,"cut",mn.bind(this,0),!0),oi(t,"copy",mn.bind(this,1),!0),oi(t,"paste",mn.bind(this,2),!0)}(t),function(t){oi(t,"mousedown",Mn.bind(this,13,t),!0),oi(t,"mouseup",Mn.bind(this,14,t),!0),oi(t,"mousemove",Mn.bind(this,12,t),!0),oi(t,"wheel",Mn.bind(this,15,t),!0),oi(t,"dblclick",Mn.bind(this,16,t),!0),oi(t,"touchstart",Tn.bind(this,17,t),!0),oi(t,"touchend",Tn.bind(this,18,t),!0),oi(t,"touchmove",Tn.bind(this,19,t),!0),oi(t,"touchcancel",Tn.bind(this,20,t),!0)}(t),function(t){oi(t,"input",kn,!0)}(t),function(t){oi(t,"selectstart",Yn.bind(this,t),!0),oi(t,"selectionchange",Yn.bind(this,t),!0)}(t),function(t){oi(t,"change",rn,!0)}(t),function(t){oi(t,"submit",Fn,!0)}(t))}var ta=Object.freeze({__proto__:null,observe:$n,start:function(){_a=[],Ca(),vn(),bn(),Cn(),On(),oi(window,"resize",Dn),Dn(),oi(document,"visibilitychange",Zn),Zn(),jn=[],Rn(),Pn(),on(),Jn(),oi(window,"pagehide",Kn)},stop:function(){_a=[],Ca(),vn(),bn(),q(xn),Nn.length>0&&In(Nn[Nn.length-1].event),q(yn),On(),An(),Qn(),q(Ln),jn=[],Pn(),q(Xn),on(),Jn(),Gn()}}),ea=/[^0-9\.]/g;function na(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],r=t[a];if("@type"===a&&"string"==typeof r)switch(r=(r=r.toLowerCase()).indexOf("article")>=0||r.indexOf("posting")>=0?"article":r){case"article":case"recipe":_r(5,t[a]),_r(8,t.creator),_r(18,t.headline);break;case"product":_r(5,t[a]),_r(10,t.name),_r(12,t.sku),t.brand&&_r(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(X(11,aa(t.ratingValue,100)),X(18,aa(t.bestRating)),X(19,aa(t.worstRating))),X(12,aa(t.ratingCount)),X(17,aa(t.reviewCount));break;case"person":_r(8,t.name);break;case"offer":_r(7,t.availability),_r(14,t.itemCondition),_r(13,t.priceCurrency),_r(12,t.sku),X(13,aa(t.price));break;case"brand":_r(6,t.name)}null!==r&&"object"==typeof r&&na(r)}}function aa(t,e){if(void 0===e&&(e=1),null!==t)switch(typeof t){case"number":return Math.round(t*e);case"string":return Math.round(parseFloat(t.replace(ea,""))*e)}return null}var ra=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last"],ia=/[\r\n]+/g;function oa(t,e){var n,a=null;if(2===e&&!1===ae(t))return a;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var r=!1===ae(t)?"add":"update",i=t.parentElement?t.parentElement:null,o=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:i=o&&t.parentNode?Gt(t.parentNode):i;var u=t,c={tag:(o?"iframe:":"")+"*D",attributes:{name:u.name,publicId:u.publicId,systemId:u.systemId}};ce[r](t,i,c,e);break;case Node.DOCUMENT_NODE:t===document&&Ft(document),ua(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var s=t;if(s.host)if(Ft(s),"function"===typeof s.constructor&&s.constructor.toString().indexOf("[native code]")>=0){ua(s);var l={tag:"*S",attributes:{style:""}};ce[r](t,s.host,l,e)}else ce[r](t,s.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(i=i||t.parentNode,"update"===r||i&&ae(i)&&"STYLE"!==i.tagName&&"NOSCRIPT"!==i.tagName){var d={tag:"*T",value:t.nodeValue};ce[r](t,i,d,e)}break;case Node.ELEMENT_NODE:var f=t,h=f.tagName,p=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;ra.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(f);switch(i=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===f.namespaceURI&&(h="svg:"+h),h){case"HTML":i=o&&i?Gt(i):null;var v={tag:(o?"iframe:":"")+h,attributes:p};ce[r](t,i,v,e);break;case"SCRIPT":if("type"in p&&"application/ld+json"===p.type)try{na(JSON.parse(f.text.replace(ia,"")))}catch(t){}break;case"NOSCRIPT":var g={tag:h,attributes:{},value:""};ce[r](t,i,g,e);break;case"META":var m="property"in p?"property":"name"in p?"name":null;if(m&&"content"in p){var b=p.content;switch(p[m]){case"og:title":_r(20,b);break;case"og:type":_r(19,b);break;case"generator":_r(21,b)}}break;case"HEAD":var y={tag:h,attributes:p},w=o&&(null===(n=t.ownerDocument)||void 0===n?void 0:n.location)?t.ownerDocument.location:location;y.attributes["*B"]=w.protocol+"//"+w.host+w.pathname,ce[r](t,i,y,e);break;case"BASE":var k=ee(t.parentElement);if(k){var E=document.createElement("a");E.href=p.href,k.data.attributes["*B"]=E.protocol+"//"+E.host+E.pathname}break;case"STYLE":var O={tag:h,attributes:p,value:ca(f)};ce[r](t,i,O,e);break;case"IFRAME":var S=t,N={tag:h,attributes:p};Kt(S)&&(!function(t){!1===ae(t)&&oi(t,"load",Na.bind(this,t,"childList"),!0)}(S),N.attributes["*O"]="true",S.contentDocument&&S.contentWindow&&"loading"!==S.contentDocument.readyState&&(a=S.contentDocument)),ce[r](t,i,N,e);break;case"LINK":if(jr&&"stylesheet"===p.rel){for(var x in Object.keys(document.styleSheets)){var M=document.styleSheets[x];if(M.ownerNode==f){var T={tag:"STYLE",attributes:p,value:sa(M)};ce[r](t,i,T,e);break}}break}var _={tag:h,attributes:p};ce[r](t,i,_,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in p&&p.src.startsWith("data:")&&(p.src="");var I={tag:h,attributes:p};ce[r](t,i,I,e);break;default:var C={tag:h,attributes:p};f.shadowRoot&&(a=f.shadowRoot),ce[r](t,i,C,e)}}return a}function ua(t){ae(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](ri(wa)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),da.push(n))}catch(t){er(2,0,t?t.name:null)}}(t),$n(t))}function ca(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=sa(t.sheet)),e}function sa(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(er(1,1,t?t.name:null),t&&"SecurityError"!==t.name)throw t}if(null!==n)for(var a=0;a<n.length;a++)e+=n[a].cssText;return e}function la(t,e,n){return at(this,void 0,void 0,(function(){var a,r,i,o,u;return rt(this,(function(c){switch(c.label){case 0:a=[t],c.label=1;case 1:if(!(a.length>0))return[3,4];for(r=a.shift(),i=r.firstChild;i;)a.push(i),i=i.nextSibling;return 0!==(o=be(e))?[3,3]:[4,ke(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=oa(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var da=[],fa=[],ha=null,pa=null,va=null,ga=[],ma=null,ba=null,ya={};function wa(t){var e=s();G(6,e),fa.push({time:e,mutations:t}),ge(ka,1).then((function(){Y(Me),ri(Qe)()}))}function ka(){return at(this,void 0,void 0,(function(){var t,e,n,a,r,i,o,u,c,l;return rt(this,(function(d){switch(d.label){case 0:ye(t={id:Wr(),cost:3}),d.label=1;case 1:if(!(fa.length>0))return[3,8];e=fa.shift(),n=s(),a=0,r=e.mutations,d.label=2;case 2:return a<r.length?(i=r[a],0!==(o=be(t))?[3,4]:[4,ke(t)]):[3,6];case 3:o=d.sent(),d.label=4;case 4:if(2===o)return[3,6];switch(u=i.target,c=function(t,e,n){var a=t.target?ee(t.target.parentNode):null;if(a&&"HTML"!==a.data.tag){var r=s()>ba,i=ee(t.target),o=i&&i.selector?i.selector.join():t.target.nodeName,u=[a.selector?a.selector.join():"",o,t.attributeName,Ea(t.addedNodes),Ea(t.removedNodes)].join();ya[u]=u in ya?ya[u]:[0,n];var c=ya[u];if(!1===r&&c[0]>=10&&Oa(c[2],2,e),c[0]=r?c[1]===n?c[0]:c[0]+1:1,c[1]=n,10===c[0])return c[2]=t.removedNodes,"suspend";if(c[0]>10)return""}return t.type}(i,t,n),c&&u&&u.ownerDocument&&Ft(u.ownerDocument),c&&u&&u.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&u.host&&Ft(u),c){case"attributes":oa(u,3);break;case"characterData":oa(u,4);break;case"childList":Oa(i.addedNodes,1,t),Oa(i.removedNodes,2,t);break;case"suspend":(l=ee(u))&&(l.metadata.suspend=!0)}d.label=5;case 5:return a++,[3,2];case 6:return[4,Xe(6,t,e.time)];case 7:return d.sent(),[3,1];case 8:return we(t),[2]}}))}))}function Ea(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function Oa(t,e,n){return at(this,void 0,void 0,(function(){var a,r,i;return rt(this,(function(o){switch(o.label){case 0:a=t?t.length:0,r=0,o.label=1;case 1:return r<a?1!==e?[3,2]:(la(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=be(n))?[3,4]:[4,ke(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];oa(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Sa(t){return ga.indexOf(t)<0&&ga.push(t),ma&&q(ma),ma=Y((function(){!function(){for(var t=0,e=ga;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ae(n))continue;Na(n,a?"childList":"characterData")}}ga=[]}()}),33),t}function Na(t,e){ri(wa)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function xa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return ba=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Ma(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ee(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=te(t),a=t in Be?Be[t]:{id:t,visibility:0,interaction:16,name:Ve.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}tn(n,a,r,a.visibility)}(r.region,e),i.fraud&&St(i.fraud,r.id,n||r.data.value)}}return a}function Ta(t,e){return void 0===e&&(e=null),at(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,y,w,k,E,O,S,N,x,M,_,C,D,A,j,L,R,z;return rt(this,(function(H){switch(n=e||s(),a=[n,t],t){case 13:case 14:case 12:case 15:case 16:case 17:case 18:case 19:case 20:for(r=0,i=Nn;r<i.length;r++)R=i[r],(o=Ma(R.data.target,R.event)).id>0&&((a=[R.time,R.event]).push(o.id),a.push(R.data.x),a.push(R.data.y),Pa(a),T(R.event,R.data.x,R.data.y));Cn();break;case 9:for(u=0,c=sn;u<c.length;u++)R=c[u],l=Ma(R.data.target,R.event,R.data.text),a=[R.time,R.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(R.data.x),a.push(R.data.y),a.push(R.data.eX),a.push(R.data.eY),a.push(R.data.button),a.push(R.data.reaction),a.push(R.data.context),a.push(m(R.data.text,"click",l.privacy)),a.push(b(R.data.link)),a.push(d),a.push(R.data.trust),Pa(a),Da(R.time,R.event,d,R.data.x,R.data.y,R.data.reaction,R.data.context);vn();break;case 38:for(f=0,h=gn;f<h.length;f++)R=h[f],a=[R.time,R.event],(A=Ma(R.data.target,R.event)).id>0&&(a.push(A.id),a.push(R.data.action),Pa(a));bn();break;case 11:p=Sn,a.push(p.width),a.push(p.height),T(t,p.width,p.height),An(),Pa(a);break;case 26:v=Un,a.push(v.name),Gn(),Pa(a);break;case 27:for(g=0,y=wn;g<y.length;g++)R=y[g],w=Ma(R.data.target,R.event,R.data.value),(a=[R.time,R.event]).push(w.id),a.push(m(R.data.value,"input",w.privacy)),Pa(a);On();break;case 21:(k=Hn)&&(E=Ma(k.start,t),O=Ma(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Pn(),Pa(a));break;case 10:for(S=0,N=jn;S<N.length;S++)R=N[S],(x=Ma(R.data.target,R.event)).id>0&&((a=[R.time,R.event]).push(x.id),a.push(R.data.x),a.push(R.data.y),Pa(a),T(R.event,R.data.x,R.data.y));jn=[];break;case 42:for(M=0,_=an;M<_.length;M++)R=_[M],a=[R.time,R.event],(A=Ma(R.data.target,R.event)).id>0&&((a=[R.time,R.event]).push(A.id),a.push(R.data.type),a.push(m(R.data.value,"change",A.privacy)),a.push(m(R.data.checksum,"checksum",A.privacy)),Pa(a));on();break;case 39:for(C=0,D=Bn;C<D.length;C++)R=D[C],a=[R.time,R.event],(A=Ma(R.data.target,R.event)).id>0&&(a.push(A.id),Pa(a));Jn();break;case 22:for(j=0,L=Ia;j<L.length;j++)R=L[j],(a=[R.time,R.event]).push(R.data.type),a.push(R.data.hash),a.push(R.data.x),a.push(R.data.y),a.push(R.data.reaction),a.push(R.data.context),Pa(a,!1);Ca();break;case 28:z=Vn,a.push(z.visible),Pa(a),I(n,z.visible),Qn()}return[2]}))}))}var _a=[],Ia=[];function Ca(){Ia=[]}function Da(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),_a.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),T(e,a,r)}var Aa,ja,La,Ra,za,Ha=0,Wa=0,Xa=null,Ya=0;function qa(){Ra=!0,Ha=0,Wa=0,Ya=0,Aa=[],ja=[],La={},za=null}function Pa(t,e){if(void 0===e&&(e=!0),Ra){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:Ha+=r.length;case 37:case 6:case 43:case 45:case 46:Wa+=r.length,Aa.push(r);break;default:ja.push(r)}H(25);var i=function(){var t=!1===o.lean&&Ha>0?100:Qr.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Ya>2*i&&(q(Xa),Xa=null),e&&null===Xa&&(25!==a&&B(),Xa=Y(Va,i),Ya=n,kr(Wa))}}function Ua(){q(Xa),Va(!0),Ha=0,Wa=0,Ya=0,Aa=[],ja=[],La={},za=null,Ra=!1}function Va(t){return void 0===t&&(t=!1),at(this,void 0,void 0,(function(){var e,n,a,r,i,u,c,s;return rt(this,(function(l){switch(l.label){case 0:return Xa=null,(e=!1===o.lean&&Wa>0&&(Wa<1048576||Qr.sequence>0))&&X(1,1),Qe(),function(){var t=[];Ia=[];for(var e=Qr.start+Qr.duration,n=Math.max(e-2e3,0),a=0,r=_a;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ia.push(i),t.push(i))}_a=t,Ta(22)}(),kt(),n=!0===t,a=JSON.stringify(ei(n)),r="[".concat(ja.join(),"]"),i=e?"[".concat(Aa.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,pt(u)];case 2:s=l.sent(),l.label=3;case 3:return W(2,(c=s)?c.length:u.length),Ba(u,c,Qr.sequence,n),ja=[],e&&(Aa=[],Wa=0,Ha=0),[2]}}))}))}function Ba(t,e,n,a){if(void 0===a&&(a=!1),"string"==typeof o.upload){var r=o.upload,i=!1;if(a&&"sendBeacon"in navigator)try{(i=navigator.sendBeacon.bind(navigator)(r,t))&&Ja(n)}catch(t){}if(!1===i){n in La?La[n].attempts++:La[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){ai(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){ri(Fa)(u,n)}),u.withCredentials=!0,e?u.send(t):(u.setRequestHeader("Accept","application/x-clarity-gzip"),u.send(e))}}else if(o.upload){(0,o.upload)(t),Ja(n)}}function Fa(t,e){var n=La[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?Er(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Ba(n.data,null,e)):(za={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&yr(2),200===t.status&&t.responseText&&function(t){for(var e=t&&t.length>0?t.split("\n"):[],n=0,a=e;n<a.length;n++){var r=a[n],i=r&&r.length>0?r.split(/ (.*)/):[""];switch(i[0]){case"END":Er(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&lr(i[1]);break;case"SIGNAL":i.length>1&&mt(i[1])}}}(t.responseText),0===t.status&&(Ba(n.data,null,e,!0),Er(3)),t.status>=200&&t.status<=208&&Ja(e),delete La[e]))}function Ja(t){1===t&&qr()}var Ka,Ga={};function Za(t){var e=t.error||t;return e.message in Ga||(Ga[e.message]=0),Ga[e.message]++>=5||e&&e.message&&(Ka={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Qa(31)),!0}function Qa(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Ka.message),e.push(Ka.line),e.push(Ka.column),e.push(Ka.stack),e.push(b(Ka.source)),Pa(e);break;case 33:$a&&(e.push($a.code),e.push($a.name),e.push($a.message),e.push($a.stack),e.push($a.severity),Pa(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),Pa(e,!1))}return[2]}))}))}var $a,tr={};function er(t,e,n,a,r){void 0===n&&(n=null),void 0===a&&(a=null),void 0===r&&(r=null);var i=n?"".concat(n,"|").concat(a):"";t in tr&&tr[t].indexOf(i)>=0||($a={code:t,name:n,message:a,stack:r,severity:e},t in tr?tr[t].push(i):tr[t]=[i],Qa(33))}var nr,ar={},rr=new Set,ir={},or={},ur={},cr={};function sr(){hr()}function lr(t){try{var e=t&&t.length>0?t.split(/ (.*)/):[""],n=e[0].split(/\|(.*)/),a=parseInt(n[0]),r=n.length>1?n[1]:"",i=e.length>1?JSON.parse(e[1]):{};for(var o in ir[a]={},or[a]={},ur[a]={},cr[a]=r,i){var u=parseInt(o),c=i[o],s=2;switch(c.startsWith("~")?s=0:c.startsWith("!")&&(s=4),s){case 0:var l=c.substring(1,c.length);ir[a][u]=gr(l);break;case 2:or[a][u]=c;break;case 4:var d=c.substring(1,c.length);ur[a][u]=d}}}catch(t){er(8,1,t?t.name:null)}}function dr(t){return JSON.parse(JSON.stringify(t))}function fr(){try{for(var t in ir){var e=parseInt(t);if(""==cr[e]||document.querySelector(cr[e])){var n=ir[e];for(var a in n){var r=parseInt(a),i=(h=mr(dr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&pr(e,r,i)}var o=or[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)pr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=ur[e];for(var d in l){var f=parseInt(d);pr(e,f,$t(l[f]).trim().substring(0,1e4))}}}rr.size>0&&yr(40)}catch(t){er(5,1,t?t.name:null)}var h}function hr(){rr.clear()}function pr(t,e,n){var a,r=!1;t in ar||(ar[t]={},r=!0),a=ur[t],0==Object.keys(a).length||e in ar[t]&&ar[t][e]==n||(r=!0),ar[t][e]=n,r&&rr.add(t)}function vr(){hr()}function gr(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function mr(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&br(r,a.condition))n=mr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(br(c,a.condition)){var s=mr(t,c);s&&i.push(s)}}n=i}return n}return null}function br(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function yr(t){var e=[s(),t];switch(t){case 4:var n=S;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),Pa(e,!1)),M();break;case 25:e.push(L.gap),Pa(e);break;case 35:e.push(nr.check),Pa(e,!1);break;case 3:e.push(tt.key),Pa(e);break;case 2:e.push(za.sequence),e.push(za.attempts),e.push(za.status),Pa(e,!1);break;case 24:A.key&&e.push(A.key),e.push(A.value),Pa(e);break;case 34:var a=Object.keys(it);if(a.length>0){for(var r=0,i=a;r<i.length;r++){var o=i[r];e.push(o),e.push(it[o])}lt(),Pa(e,!1)}break;case 0:var u=Object.keys(z);if(u.length>0){for(var c=0,l=u;c<l.length;c++){var d=l[c],f=parseInt(d,10);e.push(f),e.push(Math.round(z[d]))}z={},Pa(e,!1)}break;case 1:var h=Object.keys(xr);if(h.length>0){for(var p=0,v=h;p<v.length;p++){var g=v[p];f=parseInt(g,10);e.push(f),e.push(xr[g])}Cr(),Pa(e,!1)}break;case 36:var m=Object.keys(K);if(m.length>0){for(var b=0,y=m;b<y.length;b++){var w=y[b];f=parseInt(w,10);e.push(f),e.push([].concat.apply([],K[w]))}Q(),Pa(e,!1)}break;case 40:rr.forEach((function(t){e.push(t);var n=[];for(var a in ar[t]){var r=parseInt(a,10);n.push(r),n.push(ar[t][a])}e.push(n)})),hr(),Pa(e,!1)}}function wr(){nr={check:0}}function kr(t){if(0===nr.check){var e=nr.check;e=Qr.sequence>=128?1:e,e=Qr.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==nr.check&&Er(e)}}function Er(t){nr.check=t,Yr(),Li()}function Or(){0!==nr.check&&yr(35)}function Sr(){nr=null}var Nr=null,xr=null;function Mr(){Nr={},xr={}}function Tr(){Nr={},xr={}}function _r(t,e){e&&(e="".concat(e),t in Nr||(Nr[t]=[]),Nr[t].indexOf(e)<0&&(Nr[t].push(e),t in xr||(xr[t]=[]),xr[t].push(e),Nr[t].length>128&&Er(5)))}function Ir(){yr(1)}function Cr(){xr={}}var Dr=null,Ar=[],jr=0,Lr=null;function Rr(){Lr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";jr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:Vr(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=Jr("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-Br(n[1])<18e5&&(t.session=n[0],t.count=Br(n[2])+1,t.upgrade=Br(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=Fr(),i=o.projectId||d(location.host);Dr={projectId:i,userId:r.id,sessionId:a.session,pageNum:a.count},o.lean=o.track&&null!==a.upgrade?0===a.upgrade:o.lean,o.upload=o.track&&"string"==typeof o.upload&&a.upload&&a.upload.length>"https://".length?a.upload:o.upload,_r(0,t),_r(3,e),_r(1,b(location.href,!!jr)),_r(2,document.referrer),_r(15,function(){var t=Vr();if(o.track&&Pr(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),_r(16,document.documentElement.lang),_r(17,document.dir),_r(26,"".concat(window.devicePixelRatio)),_r(28,r.dob.toString()),_r(29,r.version.toString()),X(0,a.ts),X(1,0),X(35,jr),navigator&&(_r(9,navigator.language),X(33,navigator.hardwareConcurrency),X(32,navigator.maxTouchPoints),X(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;_r(22,t.platform),_r(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){_r(24,t.name+"~"+t.version)})),_r(25,t.model),X(27,t.mobile?1:0)})):_r(22,navigator.platform)),screen&&(X(14,Math.round(screen.width)),X(15,Math.round(screen.height)),X(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=Jr(s);l&&ot(s,l)}Ur(r)}function zr(){Lr=null,Dr=null}function Hr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Dr&&(n||!1===e)?t(Dr,!o.lean):Ar.push({callback:t,wait:e})}function Wr(){return Dr?[Dr.userId,Dr.sessionId,Dr.pageNum].join("."):""}function Xr(t){if(void 0===t&&(t=!0),!t)return o.track=!1,Gr("_clsk","",-Number.MAX_VALUE),Gr("_clck","",-Number.MAX_VALUE),Li(),void window.setTimeout(ji,250);yi()&&(o.track=!0,Ur(Fr(),1))}function Yr(){Gr("_clsk","",0)}function qr(){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;!function(t){Ar.length>0&&Ar.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Dr,!o.lean)}))}(n),Gr("_clsk",[Dr.sessionId,t,Dr.pageNum,n,e].join("|"),1)}function Pr(t,e){try{return!!t[e]}catch(t){return!1}}function Ur(t,e){void 0===e&&(e=null),e=null===e?t.consent:e;var n=Math.ceil((Date.now()+31536e6)/864e5),a=0===t.dob?null===o.dob?0:o.dob:t.dob;(null===t.expiry||Math.abs(n-t.expiry)>=1||t.consent!==e||t.dob!==a)&&Gr("_clck",[Dr.userId,2,n.toString(36),e,a].join("|"),365)}function Vr(){var t=Math.floor(Math.random()*Math.pow(2,32));return window&&window.crypto&&window.crypto.getRandomValues&&Uint32Array&&(t=window.crypto.getRandomValues(new Uint32Array(1))[0]),t.toString(36)}function Br(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Fr(){var t={id:Vr(),version:0,expiry:null,consent:0,dob:0},e=Jr("_clck");if(e&&e.length>0){for(var n=e.split("|"),a=0,r=0,i=document.cookie.split(";");r<i.length;r++){a+="_clck"===i[r].split("=")[0].trim()?1:0}if(1===n.length||a>1){var u="".concat(";").concat("expires=").concat(new Date(0).toUTCString()).concat(";path=/");document.cookie="".concat("_clck","=").concat(u),document.cookie="".concat("_clsk","=").concat(u)}n.length>1&&(t.version=Br(n[1])),n.length>2&&(t.expiry=Br(n[2],36)),n.length>3&&1===Br(n[3])&&(t.consent=1),n.length>4&&Br(n[1])>1&&(t.dob=Br(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function Jr(t){var e;if(Pr(document,"cookie")){var n=document.cookie.split(";");if(n)for(var a=0;a<n.length;a++){var r=n[a].split("=");if(r.length>1&&r[0]&&r[0].trim()===t){for(var i=Kr(r[1]),o=i[0],u=i[1];o;)o=(e=Kr(u))[0],u=e[1];return u}}}return null}function Kr(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Gr(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Pr(document,"cookie"))){var a=function(t){return encodeURIComponent(t)}(e),r=new Date;r.setDate(r.getDate()+n);var i=r?"expires="+r.toUTCString():"",u="".concat(t,"=").concat(a).concat(";").concat(i).concat(";path=/");try{if(null===Lr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(Lr=".".concat(c[s]).concat(Lr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(Lr),Jr(t)===e))return;Lr=""}}catch(t){Lr=""}document.cookie=Lr?"".concat(u).concat(";").concat("domain=").concat(Lr):u}}var Zr,Qr=null;function $r(){var t=Dr;Qr={version:l,sequence:0,start:0,duration:0,projectId:t.projectId,userId:t.userId,sessionId:t.sessionId,pageNum:t.pageNum,upload:0,end:0}}function ti(){Qr=null}function ei(t){return Qr.start=Qr.start+Qr.duration,Qr.duration=s()-Qr.start,Qr.sequence++,Qr.upload=t&&"sendBeacon"in navigator?1:0,Qr.end=t?1:0,[Qr.version,Qr.sequence,Qr.start,Qr.duration,Qr.projectId,Qr.userId,Qr.sessionId,Qr.pageNum,Qr.upload,Qr.end]}function ni(){Zr=[]}function ai(t){if(Zr&&-1===Zr.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:Qr.version,p:Qr.projectId,u:Qr.userId,s:Qr.sessionId,n:Qr.pageNum};t.message&&(n.m=t.message),t.stack&&(n.e=t.stack);var a=new XMLHttpRequest;a.open("POST",e,!0),a.send(JSON.stringify(n)),Zr.push(t.message)}}return t}function ri(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw ai(t)}var n=performance.now()-e;W(4,n),n>30&&(H(7),X(6,n))}}var ii=[];function oi(t,e,n,a){void 0===a&&(a=!1),n=ri(n);try{t[u("addEventListener")](e,n,a),ii.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function ui(){for(var t=0,e=ii;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}ii=[]}var ci=null,si=null,li=null,di=0;function fi(){return!(di++>20)||(er(4,0),!1)}function hi(){di=0,li!==vi()&&(Li(),window.setTimeout(pi,250))}function pi(){ji(),X(29,1)}function vi(){return location.href?location.href.replace(location.hash,""):location.href}var gi=!1;function mi(){gi=!0,c=performance.now(),ve(),ui(),ni(),li=vi(),di=0,oi(window,"popstate",hi),null===ci&&(ci=history.pushState,history.pushState=function(){ci.apply(this,arguments),yi()&&fi()&&hi()}),null===si&&(si=history.replaceState,history.replaceState=function(){si.apply(this,arguments),yi()&&fi()&&hi()})}function bi(){li=null,di=0,ni(),ui(),ve(),c=0,gi=!1}function yi(){return gi}function wi(t){if(null===t||gi)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function ki(){ji(),j("clarity","restart")}var Ei=Object.freeze({__proto__:null,start:function(){!function(){Ot=[],X(26,navigator.webdriver?1:0);try{X(31,window.top==window.self?1:2)}catch(t){X(31,0)}}(),oi(window,"error",Za),Ga={},tr={}},stop:function(){tr={}}});function Oi(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),ye(e={id:Wr(),cost:3}),[4,la(document,e,0)];case 1:return n.sent(),[4,Xe(5,e,t)];case 2:return n.sent(),we(e),[2]}}))}))}var Si=Object.freeze({__proto__:null,hashText:$t,start:function(){xe(),Me(),nn(),Ke=null,Ve=new WeakMap,Be={},Fe=[],Je=!!window.IntersectionObserver,Ut(),o.delayDom&&oi(window,"load",(function(){!function(){if(da=[],ga=[],ma=null,ba=0,ya={},null===ha&&(ha=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return yi()&&Sa(this.ownerNode),ha.apply(this,arguments)}),null===pa&&(pa=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return yi()&&Sa(this.ownerNode),pa.apply(this,arguments)}),null===va){va=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return yi()?Sa(va.apply(this,arguments)):va.apply(this,arguments)}}catch(t){va=null}}}()})),ge(Oi,1).then((function(){ri(Me)(),ri(Qe)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(ze(),We(Ie,"play"),We(Ce,"pause"),We(De,"cancel"),We(Ae,"finish"))},stop:function(){nn(),Ve=null,Be={},Fe=[],Ke&&(Ke.disconnect(),Ke=null),Je=!1,Vt(),function(){for(var t=0,e=da;t<e.length;t++){var n=e[t];n&&n.disconnect()}da=[],ya={},fa=[],ga=[],ba=0,ma=null}(),xe(),ze()}});var Ni,xi=null;function Mi(){xi=null}function Ti(t){xi={fetchStart:Math.round(t.fetchStart),connectStart:Math.round(t.connectStart),connectEnd:Math.round(t.connectEnd),requestStart:Math.round(t.requestStart),responseStart:Math.round(t.responseStart),responseEnd:Math.round(t.responseEnd),domInteractive:Math.round(t.domInteractive),domComplete:Math.round(t.domComplete),loadEventStart:Math.round(t.loadEventStart),loadEventEnd:Math.round(t.loadEventEnd),redirectCount:Math.round(t.redirectCount),size:t.transferSize?t.transferSize:0,type:t.type,protocol:t.nextHopProtocol,encodedSize:t.encodedBodySize?t.encodedBodySize:0,decodedSize:t.decodedBodySize?t.decodedBodySize:0},function(t){at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(xi.fetchStart),n.push(xi.connectStart),n.push(xi.connectEnd),n.push(xi.requestStart),n.push(xi.responseStart),n.push(xi.responseEnd),n.push(xi.domInteractive),n.push(xi.domComplete),n.push(xi.loadEventStart),n.push(xi.loadEventEnd),n.push(xi.redirectCount),n.push(xi.size),n.push(xi.type),n.push(xi.protocol),n.push(xi.encodedSize),n.push(xi.decodedSize),Mi(),Pa(n)),[2]}))}))}(29)}var _i=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Ii(){try{Ni&&Ni.disconnect(),Ni=new PerformanceObserver(ri(Ci));for(var t=0,e=_i;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&W(9,0),Ni.observe({type:n,buffered:!0}))}}catch(t){er(3,1)}}function Ci(t){!function(t){for(var e=(!("visibilityState"in document)||"visible"===document.visibilityState),n=0;n<t.length;n++){var a=t[n];switch(a.entryType){case"navigation":Ti(a);break;case"resource":var r=a.name;_r(4,Di(r)),r!==o.upload&&r!==o.fallback||X(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&X(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&W(9,1e3*a.value);break;case"largest-contentful-paint":e&&X(8,a.startTime)}}}(t.getEntries())}function Di(t){var e=document.createElement("a");return e.href=t,e.host}var Ai=[Ei,Si,ta,Object.freeze({__proto__:null,start:function(){Mi(),function(){navigator&&"connection"in navigator&&_r(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?oi(window,"load",Y.bind(this,Ii,0)):Ii():er(3,0)}()},stop:function(){Ni&&Ni.disconnect(),Ni=null,Mi()}})];function ji(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===gi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(wi(t),mi(),yt(),Ai.forEach((function(t){return ri(t.start)()})),null===t&&Wi())}function Li(){yi()&&(Ai.slice().reverse().forEach((function(t){return ri(t.stop)()})),wt(),bi(),void 0!==zi&&(zi[Hi]=function(){(zi[Hi].q=zi[Hi].q||[]).push(arguments),"start"===arguments[0]&&zi[Hi].q.unshift(zi[Hi].q.pop())&&Wi()}))}var Ri=Object.freeze({__proto__:null,consent:Xr,event:j,hashText:$t,identify:ut,metadata:Hr,pause:function(){yi()&&(j("clarity","pause"),null===he&&(he=new Promise((function(t){pe=t}))))},resume:function(){yi()&&(he&&(pe(),he=null,null===fe&&me()),j("clarity","resume"))},set:ot,signal:function(t){gt=t},start:ji,stop:Li,upgrade:et,version:l}),zi=window,Hi="clarity";function Wi(){if(void 0!==zi){if(zi[Hi]&&zi[Hi].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=zi[Hi]&&zi[Hi].q||[];for(zi[Hi]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return Ri[t].apply(Ri,e)},zi[Hi].v=l;t.length>0;)zi[Hi].apply(zi,t.shift())}}Wi()}();
|
|
1
|
+
!function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return Ua},get start(){return qa},get stop(){return Fa},get track(){return Ha}}),e=Object.freeze({__proto__:null,get clone(){return fr},get compute(){return hr},get data(){return rr},get keys(){return ir},get reset(){return pr},get start(){return lr},get stop(){return gr},get trigger(){return dr},get update(){return vr}}),n=Object.freeze({__proto__:null,get check(){return Er},get compute(){return Nr},get data(){return ar},get start(){return kr},get stop(){return Tr},get trigger(){return Or}}),a=Object.freeze({__proto__:null,get compute(){return Cr},get data(){return Sr},get log(){return Ir},get reset(){return Dr},get start(){return Mr},get stop(){return _r},get updates(){return xr}}),r=Object.freeze({__proto__:null,get callbacks(){return jr},get clear(){return Yr},get consent(){return Xr},get data(){return Ar},get electron(){return Rr},get id(){return Wr},get metadata(){return Pr},get save(){return qr},get shortid(){return Vr},get start(){return zr},get stop(){return Hr}}),i=Object.freeze({__proto__:null,get data(){return $r},get envelope(){return ni},get start(){return ti},get stop(){return ei}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now();return Math.max(Math.round(e-c),0)}var l="0.7.31";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=!0,p=null,v=null,g=null;function m(t,e,n,a){if(void 0===a&&(a=!1),t)switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=h&&null!==g?s.match(g)?s:k(s,"▪","▫"):w(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?y(t):w(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return w(t)}break;case 4:switch(e){case"*T":case"data-":return a?y(t):w(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return k(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}return t}function b(t,e){if(void 0===e&&(e=!1),e)return"".concat("https://").concat("Electron");var n=o.drop;if(n&&n.length>0&&t&&t.indexOf("?")>0){var a=t.split("?"),r=a[0],i=a[1];return r+"?"+i.split("&").map((function(t){return n.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}return t}function y(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function w(t){return t.replace(f,"•")}function k(t,e,n){return O(),t?t.replace(v,e).replace(p,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(h&&null===p)try{p=new RegExp("\\p{N}","gu"),v=new RegExp("\\p{L}","gu"),g=new RegExp("\\p{Sc}","gu")}catch(t){h=!1}}var N=null,T=null,S=!1;function x(){S&&(N={time:s(),event:4,data:{visible:T.visible,docWidth:T.docWidth,docHeight:T.docHeight,screenWidth:T.screenWidth,screenHeight:T.screenHeight,scrollX:T.scrollX,scrollY:T.scrollY,pointerX:T.pointerX,pointerY:T.pointerY,activityTime:T.activityTime,scrollTime:T.scrollTime}}),T=T||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0,scrollTime:0}}function M(t,e,n,a){switch(t){case 8:T.docWidth=e,T.docHeight=n;break;case 11:T.screenWidth=e,T.screenHeight=n;break;case 10:T.scrollX=e,T.scrollY=n,T.scrollTime=a;break;default:T.pointerX=e,T.pointerY=n}S=!0}function _(t){T.activityTime=t}function I(t,e){T.visible="visible"===e?1:0,T.visible||_(t),S=!0}function C(){S&&wr(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:x,start:function(){S=!1,x()},get state(){return N},stop:function(){x()},track:M,visibility:I}),A=null;function j(t,e){wi()&&t&&"string"==typeof t&&t.length<255&&(A=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},wr(24))}var R,L=null,z=null;function H(t){t in L||(L[t]=0),t in z||(z[t]=0),L[t]++,z[t]++}function P(t,e){null!==e&&(t in L||(L[t]=0),t in z||(z[t]=0),L[t]+=e,z[t]+=e)}function W(t,e){null!==e&&!1===isNaN(e)&&(t in L||(L[t]=0),(e>L[t]||0===L[t])&&(z[t]=e,L[t]=e))}function X(t,e,n){return window.setTimeout(ii(t),e,n)}function Y(t){return window.clearTimeout(t)}var q=0,U=0,F=null;function V(){F&&Y(F),F=X(B,U),q=s()}function B(){var t=s();R={gap:t-q},wr(25),R.gap<3e5?F=X(B,U):mi&&(j("clarity","suspend"),Li(),["mousemove","touchstart"].forEach((function(t){return ui(document,t,Ei)})),["resize","scroll","pageshow"].forEach((function(t){return ui(window,t,Ei)})))}var J=Object.freeze({__proto__:null,get data(){return R},reset:V,start:function(){U=6e4,q=0},stop:function(){Y(F),q=0,U=0}}),K=null;function G(t,e){if(t in K){var n=K[t],a=n[n.length-1];e-a[0]>100?K[t].push([e,0]):a[1]=e-a[0]}else K[t]=[[e,0]]}function Z(){wr(36)}function Q(){K={}}var $=Object.freeze({__proto__:null,compute:Z,get data(){return K},reset:Q,start:function(){K={}},stop:function(){K={}},track:G}),tt=null;function et(t){wi()&&o.lean&&(o.lean=!1,tt={key:t},qr(),o.upgrade&&o.upgrade(t),wr(3))}var nt=Object.freeze({__proto__:null,get data(){return tt},start:function(){!o.lean&&o.upgrade&&o.upgrade("Config"),tt=null},stop:function(){tt=null},upgrade:et});function at(t,e,n,a){return new(n||(n=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(t){i(t)}}function u(t){try{c(a.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,u)}c((a=a.apply(t,e||[])).next())}))}function rt(t,e){var n,a,r,i,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function u(u){return function(c){return function(u){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,u[0]&&(o=0)),o;)try{if(n=1,a&&(r=2&u[0]?a.return:u[0]?a.throw||((r=a.return)&&r.call(a),0):a.next)&&!(r=r.call(a,u[1])).done)return r;switch(a=0,r&&(u=[2&u[0],r.value]),u[0]){case 0:case 1:r=u;break;case 4:return o.label++,{value:u[1],done:!1};case 5:o.label++,a=u[1],u=[0];continue;case 7:u=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==u[0]&&2!==u[0])){o=0;continue}if(3===u[0]&&(!r||u[1]>r[0]&&u[1]<r[3])){o.label=u[1];break}if(6===u[0]&&o.label<r[1]){o.label=r[1],r=u;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(u);break}r[2]&&o.ops.pop(),o.trys.pop();continue}u=e.call(t,o)}catch(t){u=[6,t],a=0}finally{n=r=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}var it=null;function ot(t,e){ct(t,"string"==typeof e?[e]:e)}function ut(t,e,n,a){return void 0===e&&(e=null),void 0===n&&(n=null),void 0===a&&(a=null),at(this,void 0,void 0,(function(){var r,i;return rt(this,(function(o){switch(o.label){case 0:return i={},[4,dt(t)];case 1:return i.userId=o.sent(),i.userHint=a||((u=t)&&u.length>=5?"".concat(u.substring(0,2)).concat(k(u.substring(2),"*","*")):k(u,"*","*")),ct("userId",[(r=i).userId]),ct("userHint",[r.userHint]),ct("userType",[ft(t)]),e&&(ct("sessionId",[e]),r.sessionId=e),n&&(ct("pageId",[n]),r.pageId=n),[2,r]}var u}))}))}function ct(t,e){if(wi()&&t&&e&&"string"==typeof t&&t.length<255){for(var n=(t in it?it[t]:[]),a=0;a<e.length;a++)"string"==typeof e[a]&&e[a].length<255&&n.push(e[a]);it[t]=n}}function st(){wr(34)}function lt(){it={}}function dt(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ft(t){return t&&t.indexOf("@")>0?"email":"string"}var ht="CompressionStream"in window;function pt(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),ht?(e=new ReadableStream({start:function(e){return at(this,void 0,void 0,(function(){return rt(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,vt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function vt(t){return at(this,void 0,void 0,(function(){var e,n,a,r,i;return rt(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var gt=null;function mt(t){try{if(!gt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){gt(t)}))}catch(t){}}var bt=[D,a,Object.freeze({__proto__:null,compute:st,get data(){return it},identify:ut,reset:lt,set:ot,start:function(){lt()},stop:function(){lt()}}),n,$,r,i,t,J,nt,e];function yt(){L={},z={},H(5),bt.forEach((function(t){return ii(t.start)()}))}function wt(){bt.slice().reverse().forEach((function(t){return ii(t.stop)()})),L={},z={}}function kt(){st(),C(),Cr(),wr(0),Z(),Nr(),hr()}var Et,Ot=[];function Nt(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,24)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),$a(41)))}var Tt="load,active,fixed,visible,focus,show,collaps,animat".split(","),St={};function xt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return Mt(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in St||(St[c]=[]),St[c].indexOf(t.id)<0&&St[c].push(t.id),i="".concat(c).concat("~").concat(St[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&Mt(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function Mt(t){if(!t)return!1;if(Tt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var _t=1,It=null,Ct=[],Dt=[],At={},jt=[],Rt=[],Lt=[],zt=[],Ht=[],Pt=[],Wt=null,Xt=null,Yt=null,qt=null;function Ut(){Vt(),Bt(document,!0)}function Ft(){Vt()}function Vt(){_t=1,Ct=[],Dt=[],At={},jt=[],Rt=[],Lt="address,password,contact".split(","),zt="password,secret,pass,social,ssn,code,hidden".split(","),Ht="radio,checkbox,range,button,reset,submit".split(","),Pt="INPUT,SELECT,TEXTAREA".split(","),It=new Map,Wt=new WeakMap,Xt=new WeakMap,Yt=new WeakMap,qt=new WeakMap,St={}}function Bt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Rt.push(t):jt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Ge(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return qt.set(t,e[0])}))})),Rt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,0)}))})))}catch(t){nr(5,1,t?t.name:null)}}function Jt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Wt.get(t);return!n&&e&&(n=_t++,Wt.set(t,n)),n||null}function Kt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Xt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Gt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Xt.has(e)?Xt.get(e):null}function Zt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function Qt(t){var e=t.parent&&t.parent in Ct?Ct[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=Ct[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[xt(i,0),xt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return At[e]=t.id}))}function $t(t){var e=te(ne(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function te(t){return It.has(t)?It.get(t):null}function ee(t){var e=Jt(t);return e in Ct?Ct[e]:null}function ne(t){return t in At?At[t]:null}function ae(t){return It.has(Jt(t))}function re(){for(var t=[],e=0,n=Dt;e<n.length;e++){var a=n[e];a in Ct&&t.push(Ct[a])}return Dt=[],t}function ie(t){It.delete(t);var e=t in Ct?Ct[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ie(a[n])}}function oe(t){for(var e=null;null===e&&t.previousSibling;)e=Jt(t.previousSibling),t=t.previousSibling;return e}function ue(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=Dt.indexOf(t);r>=0&&1===e&&a?(Dt.splice(r,1),Dt.push(t)):-1===r&&n&&Dt.push(t)}var ce=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Jt(t,!0),u=e?Jt(e):null,c=oe(t),s=null,l=Ze(t)?i:null,d=qt.has(t)?qt.get(t):null,f=o.content?1:3;u>=0&&Ct[u]&&((s=Ct[u]).children.push(i),l=null===l?s.region:l,d=null===d?s.metadata.fraud:d,f=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Ge(t,n.attributes["data-clarity-region"]),l=i),It.set(i,t),Ct[i]={id:i,parent:u,previous:c,children:[],data:n,selector:null,hash:null,region:l,metadata:{active:!0,suspend:!1,privacy:f,position:null,fraud:d,size:null}},function(t,e,n){var a=e.data,r=e.metadata,i=r.privacy,o=a.attributes||{},u=a.tag.toUpperCase();switch(!0){case Pt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=zt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Ht.indexOf(c)>=0?i:l?4:2;break;case"data-clarity-mask"in o:r.privacy=3;break;case"data-clarity-unmask"in o:r.privacy=0;break;case Yt.has(t):r.privacy=Yt.get(t);break;case qt.has(t):r.privacy=2;break;case"*T"===u:var d=n&&n.data?n.data.tag:"",f=n&&n.selector?n.selector[1]:"",h=["STYLE","TITLE","svg:style"];r.privacy=h.includes(d)||jt.some((function(t){return f.indexOf(t)>=0}))?0:i;break;case 1===i:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(o.class,Lt,r)}}(t,Ct[i],s),Qt(Ct[i]),"IMG"===(r=Ct[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ue(i,a)},get:ee,getId:Jt,getNode:te,getValue:function(t){return t in Ct?Ct[t]:null},has:ae,hashText:$t,iframe:Gt,lookup:ne,parse:Bt,sameorigin:Kt,start:Ut,stop:Ft,update:function(t,e,n,a){var r=Jt(t),i=e?Jt(e):null,o=oe(t),u=!1,c=!1;if(r in Ct){var s=Ct[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:Ct[i].children.indexOf(o)+1;Ct[i].children.splice(d,0,r),s.region=Ze(t)?r:Ct[i].region}else!function(t,e){if(t in Ct){var n=Ct[t];n.metadata.active=!1,n.parent=null,ue(t,e),ie(t)}}(r,a);if(null!==l&&l>=0){var f=Ct[l].children.indexOf(r);f>=0&&Ct[l].children.splice(f,1)}c=!0}for(var h in n)Zt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Qt(s),ue(r,a,u,c)}},updates:re}),se=5e3,le={},de=[],fe=null,he=null,pe=null;function ve(){le={},de=[],fe=null,he=null}function ge(t,e){return void 0===e&&(e=0),at(this,void 0,void 0,(function(){var n,a,r;return rt(this,(function(i){for(n=0,a=de;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){de[1===e?"unshift":"push"]({task:t,resolve:n,id:Wr()})})),null===fe&&null===he&&me(),[2,r]}))}))}function me(){var t=de.shift();t&&(fe=t,t.task().then((function(){t.id===Wr()&&(t.resolve(),fe=null,me())})).catch((function(e){t.id===Wr()&&(e&&nr(0,1,e.name,e.message,e.stack),fe=null,me())})))}function be(t){var e=Ee(t);return e in le?performance.now()-le[e].start>le[e].yield?0:1:2}function ye(t){le[Ee(t)]={start:performance.now(),calls:0,yield:30}}function we(t){var e=performance.now(),n=Ee(t),a=e-le[n].start;P(t.cost,a),H(5),le[n].calls>0&&P(4,a)}function ke(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in le?(we(t),n=le[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(le&&le[e]){var n=le[e].calls,a=le[e].yield;ye(t),le[e].calls=n+1,le[e].yield=a}}(t),a.label=2;case 2:return[2,e in le?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return he?[4,he]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Te(t,{timeout:se})}))]}}))}))}var Ne,Te=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Se(){Ne=null}function xe(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Ne&&c===Ne.width&&v===Ne.height||null===c||null===v||(Ne={width:c,height:v},We(8))}var Me=[],_e=[],Ie=null,Ce=null,De=null,Ae=null,je="clarityAnimationId",Re="clarityOperationCount",Le=20;function ze(){_e=[]}function He(t,e,n,a,r,i,o){_e.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),We(44)}function Pe(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){if(wi()){var n=this.effect,a=Jt(this.effect.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!this[je]){this[je]=Vr(),this[Re]=0;var r=n.getKeyframes(),i=n.getTiming();He(s(),this[je],0,JSON.stringify(r),JSON.stringify(i),a)}if(this[Re]++<Le){var o=null;switch(e){case"play":o=1;break;case"pause":o=2;break;case"cancel":o=3;break;case"finish":o=4}o&&He(s(),this[je],o)}}}return t.apply(this,arguments)})}function We(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),at(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,b,y,w,k,E,O,N,T,S,x,I,C,D,A,j,R,L;return rt(this,(function(z){switch(z.label){case 0:switch(a=n||s(),r=[a,t],t){case 8:return[3,1];case 7:return[3,2];case 45:return[3,3];case 46:return[3,4];case 44:return[3,5];case 5:case 6:return[3,6]}return[3,13];case 1:return i=Ne,r.push(i.width),r.push(i.height),M(t,i.width,i.height),Ua(r),[3,13];case 2:for(u=0,c=Ue;u<c.length;u++)l=c[u],(r=[l.time,7]).push(l.data.id),r.push(l.data.interaction),r.push(l.data.visibility),r.push(l.data.name),Ua(r);return nn(),[3,13];case 3:for(d=0,f=Me;d<f.length;d++)b=f[d],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.newIds),Ua(r);return[3,13];case 4:for(h=0,p=Me;h<p.length;h++)b=p[h],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.cssRules),Ua(r);z.label=5;case 5:for(v=0,g=_e;v<g.length;v++)b=g[v],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.keyFrames),r.push(b.data.timing),r.push(b.data.timeline),r.push(b.data.targetId),Ua(r);return ze(),[3,13];case 6:if(2===be(e))return[3,13];if(!((y=re()).length>0))return[3,12];w=0,k=y,z.label=7;case 7:return w<k.length?(E=k[w],0!==(O=be(e))?[3,9]:[4,ke(e)]):[3,11];case 8:O=z.sent(),z.label=9;case 9:if(2===O)return[3,11];for(N=E.data,T=E.metadata.active,S=E.metadata.suspend,x=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=T?["tag","attributes","value"]:["tag"];C<D.length;C++)if(N[A=D[C]])switch(A){case"tag":j=Xe(E),R=I?-1:1,r.push(E.id*R),E.parent&&T&&r.push(E.parent),E.previous&&T&&r.push(E.previous),r.push(S?"*M":N[A]),j&&2===j.length&&r.push("".concat("#").concat(Ye(j[0]),".").concat(Ye(j[1])));break;case"attributes":for(L in N[A])void 0!==N[A][L]&&r.push(qe(L,N[A][L],x));break;case"value":Nt(E.metadata.fraud,E.id,N[A]),r.push(m(N[A],N.tag,x,I))}z.label=10;case 10:return w++,[3,7];case 11:6===t&&_(a),Ua(function(t){for(var e=[],n={},a=0,r=null,i=0;i<t.length;i++)if("string"==typeof t[i]){var o=t[i],u=n[o]||-1;u>=0?r?r.push(u):(r=[u],e.push(r),a++):(r=null,e.push(o),n[o]=a++)}else r=null,e.push(t[i]),a++;return e}(r),!o.lean),z.label=12;case 12:return[3,13];case 13:return[2]}}))}))}function Xe(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=te(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Ye(t){return t.toString(36)}function qe(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var Ue=[],Fe=null,Ve={},Be=[],Je=!1,Ke=null;function Ge(t,e){!1===Fe.has(t)&&(Fe.set(t,e),(Ke=null===Ke&&Je?new IntersectionObserver($e,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Ke)&&t&&t.nodeType===Node.ELEMENT_NODE&&Ke.observe(t))}function Ze(t){return Fe&&Fe.has(t)}function Qe(){for(var t=[],e=0,n=Be;e<n.length;e++){var a=n[e],r=Jt(a.node);r?(a.state.data.id=r,Ve[r]=a.state.data,Ue.push(a.state)):t.push(a)}Be=t,Ue.length>0&&We(7)}function $e(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],r=a.target,i=a.boundingClientRect,o=a.intersectionRect,u=a.rootBounds;if(Fe.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Jt(r):null,s=c in Ve?Ve[c]:{id:c,name:Fe.get(r),interaction:16,visibility:0},l=(o?o.width*o.height*1/(u.width*u.height):0)>.05||a.intersectionRatio>.8,d=(l||10==s.visibility)&&Math.abs(i.top)+u.height>i.height;tn(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Ke&&Ke.unobserve(r)}}Ue.length>0&&We(7)}function tn(t,e,n,a){var r=n>e.interaction||a>e.visibility;e.interaction=n>e.interaction?n:e.interaction,e.visibility=a>e.visibility?a:e.visibility,e.id?(e.id in Ve&&r||!(e.id in Ve))&&(Ve[e.id]=e,Ue.push(en(e))):Be.push({node:t,state:en(e)})}function en(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function nn(){Ue=[]}var an=[];function rn(t){var e=xa(t);if(e){var n=e.value,a=n&&n.length>=5&&o.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?d(n,24):"";an.push({time:s(t),event:42,data:{target:xa(t),type:e.type,value:n,checksum:a}}),ge(_a.bind(this,42))}}function on(){an=[]}function un(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Gt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var cn=["input","textarea","radio","button","canvas"],sn=[];function ln(t){ui(t,"click",dn.bind(this,9,t),!0)}function dn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=un(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=xa(n),l=function(t){for(;t&&t!==document;){if(t.nodeType===Node.ELEMENT_NODE){var e=t;if("A"===e.tagName)return e}t=t.parentNode}return null}(c),d=function(t){var e=null,n=document.documentElement;if("function"==typeof t.getBoundingClientRect){var a=t.getBoundingClientRect();a&&a.width>0&&a.height>0&&(e={x:Math.floor(a.left+("pageXOffset"in window?window.pageXOffset:n.scrollLeft)),y:Math.floor(a.top+("pageYOffset"in window?window.pageYOffset:n.scrollTop)),w:Math.floor(a.width),h:Math.floor(a.height)})}return e}(c);0===n.detail&&d&&(i=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var f=d?Math.max(Math.floor((i-d.x)/d.w*32767),0):0,h=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==i&&null!==o&&(sn.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:hn(c),context:pn(l),text:fn(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),ge(_a.bind(this,t)))}function fn(t){var e=null;if(t){var n=t.textContent||t.value||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function hn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(cn.indexOf(e)>=0)return 0}return 1}function pn(t){if(t&&t.hasAttribute("target"))switch(t.getAttribute("target")){case"_blank":return 1;case"_parent":return 2;case"_top":return 3}return 0}function vn(){sn=[]}var gn=[];function mn(t,e){gn.push({time:s(e),event:38,data:{target:xa(e),action:t}}),ge(_a.bind(this,38))}function bn(){gn=[]}var yn=null,wn=[];function kn(t){var e=xa(t),n=ee(e);if(e&&e.type&&n){var a=e.value;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a};wn.length>0&&wn[wn.length-1].data.target===r.target&&wn.pop(),wn.push({time:s(t),event:27,data:r}),Y(yn),yn=X(En,1e3,27)}}function En(t){ge(_a.bind(this,t))}function On(){wn=[]}var Nn,Tn=[],Sn=null;function xn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=un(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&_n({time:s(n),event:t,data:{target:xa(n),x:i,y:o}})}function Mn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i=n.changedTouches,o=s(n);if(i)for(var u=0;u<i.length;u++){var c=i[u],l="clientX"in c?Math.round(c.clientX+r.scrollLeft):null,d="clientY"in c?Math.round(c.clientY+r.scrollTop):null;l=l&&a?l+Math.round(a.offsetLeft):l,d=d&&a?d+Math.round(a.offsetTop):d,null!==l&&null!==d&&_n({time:o,event:t,data:{target:xa(n),x:l,y:d}})}}function _n(t){switch(t.event){case 12:case 15:case 19:var e=Tn.length,n=e>1?Tn[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,r=Math.sqrt(n*n+a*a),i=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&r<20&&i<25}(n,t)&&Tn.pop(),Tn.push(t),Y(Sn),Sn=X(In,500,t.event);break;default:Tn.push(t),In(t.event)}}function In(t){ge(_a.bind(this,t))}function Cn(){Tn=[]}function Dn(){var t=document.documentElement;Nn={width:t&&"clientWidth"in t?Math.min(t.clientWidth,window.innerWidth):window.innerWidth,height:t&&"clientHeight"in t?Math.min(t.clientHeight,window.innerHeight):window.innerHeight},_a(11)}function An(){Nn=null}var jn=[],Rn=null;function Ln(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?xa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Gt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u=window.innerWidth,c=window.innerHeight,l=u/3,d=u>c?.15*c:.2*c,f=c-d,h=zn(l,d),p=zn(l,f),v={time:s(t),event:10,data:{target:a,x:i,y:o,top:h,bottom:p}};if((null!==t||0!==i||0!==o)&&null!==i&&null!==o){var g=jn.length,m=g>1?jn[g-2]:null;m&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(m,v)&&jn.pop(),jn.push(v),Y(Rn),Rn=X(Hn,500,10)}}function zn(t,e){var n,a,r,i,o;return"caretPositionFromPoint"in document?o=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(o=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),o||(o=document.elementFromPoint(t,e)),o&&o.nodeType===Node.TEXT_NODE&&(o=o.parentNode),null===(i=null===(r=ee(o))||void 0===r?void 0:r.hash)||void 0===i?void 0:i[1]}function Hn(t){ge(_a.bind(this,t))}var Pn=null,Wn=null,Xn=null;function Yn(t){var e=(t.nodeType===Node.DOCUMENT_NODE?t:document).getSelection();if(null!==e&&!(null===e.anchorNode&&null===e.focusNode||e.anchorNode===e.focusNode&&e.anchorOffset===e.focusOffset)){var n=Pn.start?Pn.start:null;null!==Wn&&null!==Pn.start&&n!==e.anchorNode&&(Y(Xn),qn(21)),Pn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Wn=e,Y(Xn),Xn=X(qn,500,21)}}function qn(t){ge(_a.bind(this,t))}function Un(){Wn=null,Pn={start:0,startOffset:0,end:0,endOffset:0}}var Fn,Vn,Bn=[];function Jn(t){Bn.push({time:s(t),event:39,data:{target:xa(t)}}),ge(_a.bind(this,39))}function Kn(){Bn=[]}function Gn(t){Fn={name:t.type},_a(26,s(t)),Li()}function Zn(){Fn=null}function Qn(t){void 0===t&&(t=null),Vn={visible:"visibilityState"in document?document.visibilityState:"default"},_a(28,s(t))}function $n(){Vn=null}function ta(t){!function(t){var e=Gt(t);ui(e?e.contentWindow:t===document?window:t,"scroll",Ln,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(ln(t),function(t){ui(t,"cut",mn.bind(this,0),!0),ui(t,"copy",mn.bind(this,1),!0),ui(t,"paste",mn.bind(this,2),!0)}(t),function(t){ui(t,"mousedown",xn.bind(this,13,t),!0),ui(t,"mouseup",xn.bind(this,14,t),!0),ui(t,"mousemove",xn.bind(this,12,t),!0),ui(t,"wheel",xn.bind(this,15,t),!0),ui(t,"dblclick",xn.bind(this,16,t),!0),ui(t,"touchstart",Mn.bind(this,17,t),!0),ui(t,"touchend",Mn.bind(this,18,t),!0),ui(t,"touchmove",Mn.bind(this,19,t),!0),ui(t,"touchcancel",Mn.bind(this,20,t),!0)}(t),function(t){ui(t,"input",kn,!0)}(t),function(t){ui(t,"selectstart",Yn.bind(this,t),!0),ui(t,"selectionchange",Yn.bind(this,t),!0)}(t),function(t){ui(t,"change",rn,!0)}(t),function(t){ui(t,"submit",Jn,!0)}(t))}var ea=Object.freeze({__proto__:null,observe:ta,start:function(){Ia=[],Da(),vn(),bn(),Cn(),On(),ui(window,"resize",Dn),Dn(),ui(document,"visibilitychange",Qn),Qn(),jn=[],Ln(),Un(),on(),Kn(),ui(window,"pagehide",Gn)},stop:function(){Ia=[],Da(),vn(),bn(),Y(Sn),Tn.length>0&&In(Tn[Tn.length-1].event),Y(yn),On(),An(),$n(),Y(Rn),jn=[],Un(),Y(Xn),on(),Kn(),Zn()}}),na=/[^0-9\.]/g;function aa(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],r=t[a];if("@type"===a&&"string"==typeof r)switch(r=(r=r.toLowerCase()).indexOf("article")>=0||r.indexOf("posting")>=0?"article":r){case"article":case"recipe":Ir(5,t[a]),Ir(8,t.creator),Ir(18,t.headline);break;case"product":Ir(5,t[a]),Ir(10,t.name),Ir(12,t.sku),t.brand&&Ir(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(W(11,ra(t.ratingValue,100)),W(18,ra(t.bestRating)),W(19,ra(t.worstRating))),W(12,ra(t.ratingCount)),W(17,ra(t.reviewCount));break;case"person":Ir(8,t.name);break;case"offer":Ir(7,t.availability),Ir(14,t.itemCondition),Ir(13,t.priceCurrency),Ir(12,t.sku),W(13,ra(t.price));break;case"brand":Ir(6,t.name)}null!==r&&"object"==typeof r&&aa(r)}}function ra(t,e){if(void 0===e&&(e=1),null!==t)switch(typeof t){case"number":return Math.round(t*e);case"string":return Math.round(parseFloat(t.replace(na,""))*e)}return null}var ia=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last"],oa=/[\r\n]+/g;function ua(t,e,n){var a,r=null;if(2===e&&!1===ae(t))return r;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var i=!1===ae(t)?"add":"update",o=t.parentElement?t.parentElement:null,u=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=u&&t.parentNode?Gt(t.parentNode):o;var c=t,s={tag:(u?"iframe:":"")+"*D",attributes:{name:c.name,publicId:c.publicId,systemId:c.systemId}};ce[i](t,o,s,e);break;case Node.DOCUMENT_NODE:t===document&&Bt(document),ca(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var l=t;if(l.host)if(Bt(l),"function"===typeof l.constructor&&l.constructor.toString().indexOf("[native code]")>=0){ca(l);var d={tag:"*S",attributes:{style:""}};ce[i](t,l.host,d,e)}else ce[i](t,l.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===i||o&&ae(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var f={tag:"*T",value:t.nodeValue};ce[i](t,o,f,e)}break;case Node.ELEMENT_NODE:var h=t,p=h.tagName,v=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;ia.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(h);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===h.namespaceURI&&(p="svg:"+p),p){case"HTML":o=u&&o?Gt(o):null;var g={tag:(u?"iframe:":"")+p,attributes:v};ce[i](t,o,g,e);break;case"SCRIPT":if("type"in v&&"application/ld+json"===v.type)try{aa(JSON.parse(h.text.replace(oa,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:p,attributes:{},value:""};ce[i](t,o,m,e);break;case"META":var b="property"in v?"property":"name"in v?"name":null;if(b&&"content"in v){var y=v.content;switch(v[b]){case"og:title":Ir(20,y);break;case"og:type":Ir(19,y);break;case"generator":Ir(21,y)}}break;case"HEAD":var w={tag:p,attributes:v},k=u&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,ce[i](t,o,w,e);break;case"BASE":var E=ee(t.parentElement);if(E){var O=document.createElement("a");O.href=v.href,E.data.attributes["*B"]=O.protocol+"//"+O.host+O.pathname}break;case"STYLE":var N={tag:p,attributes:v,value:sa(h)};ce[i](t,o,N,e);break;case"IFRAME":var T=t,S={tag:p,attributes:v};Kt(T)&&(!function(t){!1===ae(t)&&ui(t,"load",Sa.bind(this,t,"childList"),!0)}(T),S.attributes["*O"]="true",T.contentDocument&&T.contentWindow&&"loading"!==T.contentDocument.readyState&&(r=T.contentDocument)),ce[i](t,o,S,e);break;case"LINK":if(Rr&&"stylesheet"===v.rel){for(var x in Object.keys(document.styleSheets)){var M=document.styleSheets[x];if(M.ownerNode==h){var _={tag:"STYLE",attributes:v,value:la(M)};ce[i](t,o,_,e);break}}break}var I={tag:p,attributes:v};ce[i](t,o,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in v&&v.src.startsWith("data:")&&(v.src="");var C={tag:p,attributes:v};ce[i](t,o,C,e);break;default:var D={tag:p,attributes:v};h.shadowRoot&&(r=h.shadowRoot),ce[i](t,o,D,e)}}return r}function ca(t){ae(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](ii(ka)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),fa.push(n))}catch(t){nr(2,0,t?t.name:null)}}(t),ta(t))}function sa(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=la(t.sheet)),e}function la(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(nr(1,1,t?t.name:null),t&&"SecurityError"!==t.name)throw t}if(null!==n)for(var a=0;a<n.length;a++)e+=n[a].cssText;return e}function da(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i,o,u;return rt(this,(function(c){switch(c.label){case 0:a=[t],c.label=1;case 1:if(!(a.length>0))return[3,4];for(r=a.shift(),i=r.firstChild;i;)a.push(i),i=i.nextSibling;return 0!==(o=be(e))?[3,3]:[4,ke(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=ua(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var fa=[],ha=[],pa=null,va=null,ga=null,ma=[],ba=null,ya=null,wa={};function ka(t){var e=s();G(6,e),ha.push({time:e,mutations:t}),ge(Ea,1).then((function(){X(xe),ii(Qe)()}))}function Ea(){return at(this,void 0,void 0,(function(){var t,e,n,a,r,i,o,u,c,l;return rt(this,(function(d){switch(d.label){case 0:ye(t={id:Wr(),cost:3}),d.label=1;case 1:if(!(ha.length>0))return[3,8];e=ha.shift(),n=s(),a=0,r=e.mutations,d.label=2;case 2:return a<r.length?(i=r[a],0!==(o=be(t))?[3,4]:[4,ke(t)]):[3,6];case 3:o=d.sent(),d.label=4;case 4:if(2===o)return[3,6];switch(u=i.target,c=function(t,e,n,a){var r=t.target?ee(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var i=s()>ya,o=ee(t.target),u=o&&o.selector?o.selector.join():t.target.nodeName,c=[r.selector?r.selector.join():"",u,t.attributeName,Oa(t.addedNodes),Oa(t.removedNodes)].join();wa[c]=c in wa?wa[c]:[0,n];var l=wa[c];if(!1===i&&l[0]>=10&&Na(l[2],2,e),l[0]=i?l[1]===n?l[0]:l[0]+1:1,l[1]=n,10===l[0])return l[2]=t.removedNodes,"suspend";if(l[0]>10)return""}return t.type}(i,t,n,e.time),c&&u&&u.ownerDocument&&Bt(u.ownerDocument),c&&u&&u.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&u.host&&Bt(u),c){case"attributes":ua(u,3,e.time);break;case"characterData":ua(u,4,e.time);break;case"childList":Na(i.addedNodes,1,t,e.time),Na(i.removedNodes,2,t,e.time);break;case"suspend":(l=ee(u))&&(l.metadata.suspend=!0)}d.label=5;case 5:return a++,[3,2];case 6:return[4,We(6,t,e.time)];case 7:return d.sent(),[3,1];case 8:return we(t),[2]}}))}))}function Oa(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function Na(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i;return rt(this,(function(o){switch(o.label){case 0:a=t?t.length:0,r=0,o.label=1;case 1:return r<a?1!==e?[3,2]:(da(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=be(n))?[3,4]:[4,ke(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ua(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Ta(t){return ma.indexOf(t)<0&&ma.push(t),ba&&Y(ba),ba=X((function(){!function(){for(var t=0,e=ma;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ae(n))continue;Sa(n,a?"childList":"characterData")}}ma=[]}()}),33),t}function Sa(t,e){ii(ka)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function xa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return ya=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Ma(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ee(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=te(t),a=t in Ve?Ve[t]:{id:t,visibility:0,interaction:16,name:Fe.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}tn(n,a,r,a.visibility)}(r.region,e),i.fraud&&Nt(i.fraud,r.id,n||r.data.value)}}return a}function _a(t,e){return void 0===e&&(e=null),at(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,y,w,k,E,O,N,T,S,x,_,C,D,A,j,R,L,z;return rt(this,(function(H){switch(n=e||s(),a=[n,t],t){case 13:case 14:case 12:case 15:case 16:case 17:case 18:case 19:case 20:for(r=0,i=Tn;r<i.length;r++)L=i[r],(o=Ma(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(o.id),a.push(L.data.x),a.push(L.data.y),Ua(a),M(L.event,L.data.x,L.data.y));Cn();break;case 9:for(u=0,c=sn;u<c.length;u++)L=c[u],l=Ma(L.data.target,L.event,L.data.text),a=[L.time,L.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(L.data.x),a.push(L.data.y),a.push(L.data.eX),a.push(L.data.eY),a.push(L.data.button),a.push(L.data.reaction),a.push(L.data.context),a.push(m(L.data.text,"click",l.privacy)),a.push(b(L.data.link)),a.push(d),a.push(L.data.trust),Ua(a),Aa(L.time,L.event,d,L.data.x,L.data.y,L.data.reaction,L.data.context);vn();break;case 38:for(f=0,h=gn;f<h.length;f++)L=h[f],a=[L.time,L.event],(A=Ma(L.data.target,L.event)).id>0&&(a.push(A.id),a.push(L.data.action),Ua(a));bn();break;case 11:p=Nn,a.push(p.width),a.push(p.height),M(t,p.width,p.height),An(),Ua(a);break;case 26:v=Fn,a.push(v.name),Zn(),Ua(a);break;case 27:for(g=0,y=wn;g<y.length;g++)L=y[g],w=Ma(L.data.target,L.event,L.data.value),(a=[L.time,L.event]).push(w.id),a.push(m(L.data.value,"input",w.privacy)),Ua(a);On();break;case 21:(k=Pn)&&(E=Ma(k.start,t),O=Ma(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Un(),Ua(a));break;case 10:for(N=0,T=jn;N<T.length;N++)L=T[N],(S=Ma(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(S.id),a.push(L.data.x),a.push(L.data.y),a.push(L.data.top),a.push(L.data.bottom),Ua(a),M(L.event,L.data.x,L.data.y,L.time));jn=[];break;case 42:for(x=0,_=an;x<_.length;x++)L=_[x],a=[L.time,L.event],(A=Ma(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(A.id),a.push(L.data.type),a.push(m(L.data.value,"change",A.privacy)),a.push(m(L.data.checksum,"checksum",A.privacy)),Ua(a));on();break;case 39:for(C=0,D=Bn;C<D.length;C++)L=D[C],a=[L.time,L.event],(A=Ma(L.data.target,L.event)).id>0&&(a.push(A.id),Ua(a));Kn();break;case 22:for(j=0,R=Ca;j<R.length;j++)L=R[j],(a=[L.time,L.event]).push(L.data.type),a.push(L.data.hash),a.push(L.data.x),a.push(L.data.y),a.push(L.data.reaction),a.push(L.data.context),Ua(a,!1);Da();break;case 28:z=Vn,a.push(z.visible),Ua(a),I(n,z.visible),$n()}return[2]}))}))}var Ia=[],Ca=[];function Da(){Ca=[]}function Aa(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),Ia.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),M(e,a,r)}var ja,Ra,La,za,Ha,Pa=0,Wa=0,Xa=null,Ya=0;function qa(){za=!0,Pa=0,Wa=0,Ya=0,ja=[],Ra=[],La={},Ha=null}function Ua(t,e){if(void 0===e&&(e=!0),za){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:Pa+=r.length;case 37:case 6:case 43:case 45:case 46:Wa+=r.length,ja.push(r);break;default:Ra.push(r)}H(25);var i=function(){var t=!1===o.lean&&Pa>0?100:$r.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Ya>2*i&&(Y(Xa),Xa=null),e&&null===Xa&&(25!==a&&V(),Xa=X(Va,i),Ya=n,Er(Wa))}}function Fa(){Y(Xa),Va(!0),Pa=0,Wa=0,Ya=0,ja=[],Ra=[],La={},Ha=null,za=!1}function Va(t){return void 0===t&&(t=!1),at(this,void 0,void 0,(function(){var e,n,a,r,i,u,c,s;return rt(this,(function(l){switch(l.label){case 0:return Xa=null,(e=!1===o.lean&&Wa>0&&(Wa<1048576||$r.sequence>0))&&W(1,1),Qe(),function(){var t=[];Ca=[];for(var e=$r.start+$r.duration,n=Math.max(e-2e3,0),a=0,r=Ia;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ca.push(i),t.push(i))}Ia=t,_a(22)}(),kt(),n=!0===t,a=JSON.stringify(ni(n)),r="[".concat(Ra.join(),"]"),i=e?"[".concat(ja.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,pt(u)];case 2:s=l.sent(),l.label=3;case 3:return P(2,(c=s)?c.length:u.length),Ba(u,c,$r.sequence,n),Ra=[],e&&(ja=[],Wa=0,Pa=0),[2]}}))}))}function Ba(t,e,n,a){if(void 0===a&&(a=!1),"string"==typeof o.upload){var r=o.upload,i=!1;if(a&&"sendBeacon"in navigator)try{(i=navigator.sendBeacon.bind(navigator)(r,t))&&Ka(n)}catch(t){}if(!1===i){n in La?La[n].attempts++:La[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){ri(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){ii(Ja)(u,n)}),u.withCredentials=!0,e?(u.setRequestHeader("Accept","application/x-clarity-gzip"),u.send(e)):u.send(t)}}else if(o.upload){(0,o.upload)(t),Ka(n)}}function Ja(t,e){var n=La[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?Or(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Ba(n.data,null,e)):(Ha={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&wr(2),200===t.status&&t.responseText&&function(t){for(var e=t&&t.length>0?t.split("\n"):[],n=0,a=e;n<a.length;n++){var r=a[n],i=r&&r.length>0?r.split(/ (.*)/):[""];switch(i[0]){case"END":Or(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&dr(i[1]);break;case"SIGNAL":i.length>1&&mt(i[1])}}}(t.responseText),0===t.status&&(Ba(n.data,null,e,!0),Or(3)),t.status>=200&&t.status<=208&&Ka(e),delete La[e]))}function Ka(t){1===t&&qr()}var Ga,Za={};function Qa(t){var e=t.error||t;return e.message in Za||(Za[e.message]=0),Za[e.message]++>=5||e&&e.message&&(Ga={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},$a(31)),!0}function $a(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Ga.message),e.push(Ga.line),e.push(Ga.column),e.push(Ga.stack),e.push(b(Ga.source)),Ua(e);break;case 33:tr&&(e.push(tr.code),e.push(tr.name),e.push(tr.message),e.push(tr.stack),e.push(tr.severity),Ua(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),Ua(e,!1))}return[2]}))}))}var tr,er={};function nr(t,e,n,a,r){void 0===n&&(n=null),void 0===a&&(a=null),void 0===r&&(r=null);var i=n?"".concat(n,"|").concat(a):"";t in er&&er[t].indexOf(i)>=0||(tr={code:t,name:n,message:a,stack:r,severity:e},t in er?er[t].push(i):er[t]=[i],$a(33))}var ar,rr={},ir=new Set,or={},ur={},cr={},sr={};function lr(){pr()}function dr(t){try{var e=t&&t.length>0?t.split(/ (.*)/):[""],n=e[0].split(/\|(.*)/),a=parseInt(n[0]),r=n.length>1?n[1]:"",i=e.length>1?JSON.parse(e[1]):{};for(var o in or[a]={},ur[a]={},cr[a]={},sr[a]=r,i){var u=parseInt(o),c=i[o],s=2;switch(c.startsWith("~")?s=0:c.startsWith("!")&&(s=4),s){case 0:var l=c.substring(1,c.length);or[a][u]=mr(l);break;case 2:ur[a][u]=c;break;case 4:var d=c.substring(1,c.length);cr[a][u]=d}}}catch(t){nr(8,1,t?t.name:null)}}function fr(t){return JSON.parse(JSON.stringify(t))}function hr(){try{for(var t in or){var e=parseInt(t);if(""==sr[e]||document.querySelector(sr[e])){var n=or[e];for(var a in n){var r=parseInt(a),i=(h=br(fr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&vr(e,r,i)}var o=ur[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)vr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=cr[e];for(var d in l){var f=parseInt(d);vr(e,f,$t(l[f]).trim().substring(0,1e4))}}}ir.size>0&&wr(40)}catch(t){nr(5,1,t?t.name:null)}var h}function pr(){ir.clear()}function vr(t,e,n){var a,r=!1;t in rr||(rr[t]={},r=!0),a=cr[t],0==Object.keys(a).length||e in rr[t]&&rr[t][e]==n||(r=!0),rr[t][e]=n,r&&ir.add(t)}function gr(){pr()}function mr(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function br(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&yr(r,a.condition))n=br(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(yr(c,a.condition)){var s=br(t,c);s&&i.push(s)}}n=i}return n}return null}function yr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function wr(t){var e=[s(),t];switch(t){case 4:var n=N;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),e.push(n.data.scrollTime),Ua(e,!1)),x();break;case 25:e.push(R.gap),Ua(e);break;case 35:e.push(ar.check),Ua(e,!1);break;case 3:e.push(tt.key),Ua(e);break;case 2:e.push(Ha.sequence),e.push(Ha.attempts),e.push(Ha.status),Ua(e,!1);break;case 24:A.key&&e.push(A.key),e.push(A.value),Ua(e);break;case 34:var a=Object.keys(it);if(a.length>0){for(var r=0,i=a;r<i.length;r++){var o=i[r];e.push(o),e.push(it[o])}lt(),Ua(e,!1)}break;case 0:var u=Object.keys(z);if(u.length>0){for(var c=0,l=u;c<l.length;c++){var d=l[c],f=parseInt(d,10);e.push(f),e.push(Math.round(z[d]))}z={},Ua(e,!1)}break;case 1:var h=Object.keys(xr);if(h.length>0){for(var p=0,v=h;p<v.length;p++){var g=v[p];f=parseInt(g,10);e.push(f),e.push(xr[g])}Dr(),Ua(e,!1)}break;case 36:var m=Object.keys(K);if(m.length>0){for(var b=0,y=m;b<y.length;b++){var w=y[b];f=parseInt(w,10);e.push(f),e.push([].concat.apply([],K[w]))}Q(),Ua(e,!1)}break;case 40:ir.forEach((function(t){e.push(t);var n=[];for(var a in rr[t]){var r=parseInt(a,10);n.push(r),n.push(rr[t][a])}e.push(n)})),pr(),Ua(e,!1)}}function kr(){ar={check:0}}function Er(t){if(0===ar.check){var e=ar.check;e=$r.sequence>=128?1:e,e=$r.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==ar.check&&Or(e)}}function Or(t){ar.check=t,Yr(),Li()}function Nr(){0!==ar.check&&wr(35)}function Tr(){ar=null}var Sr=null,xr=null;function Mr(){Sr={},xr={}}function _r(){Sr={},xr={}}function Ir(t,e){e&&(e="".concat(e),t in Sr||(Sr[t]=[]),Sr[t].indexOf(e)<0&&(Sr[t].push(e),t in xr||(xr[t]=[]),xr[t].push(e),Sr[t].length>128&&Or(5)))}function Cr(){wr(1)}function Dr(){xr={}}var Ar=null,jr=[],Rr=0,Lr=null;function zr(){Lr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Rr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:Vr(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=Kr("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-Br(n[1])<18e5&&(t.session=n[0],t.count=Br(n[2])+1,t.upgrade=Br(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=Jr(),i=o.projectId||d(location.host);Ar={projectId:i,userId:r.id,sessionId:a.session,pageNum:a.count},o.lean=o.track&&null!==a.upgrade?0===a.upgrade:o.lean,o.upload=o.track&&"string"==typeof o.upload&&a.upload&&a.upload.length>"https://".length?a.upload:o.upload,Ir(0,t),Ir(3,e),Ir(1,b(location.href,!!Rr)),Ir(2,document.referrer),Ir(15,function(){var t=Vr();if(o.track&&Ur(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),Ir(16,document.documentElement.lang),Ir(17,document.dir),Ir(26,"".concat(window.devicePixelRatio)),Ir(28,r.dob.toString()),Ir(29,r.version.toString()),W(0,a.ts),W(1,0),W(35,Rr),navigator&&(Ir(9,navigator.language),W(33,navigator.hardwareConcurrency),W(32,navigator.maxTouchPoints),W(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;Ir(22,t.platform),Ir(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){Ir(24,t.name+"~"+t.version)})),Ir(25,t.model),W(27,t.mobile?1:0)})):Ir(22,navigator.platform)),screen&&(W(14,Math.round(screen.width)),W(15,Math.round(screen.height)),W(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=Kr(s);l&&ot(s,l)}Fr(r)}function Hr(){Lr=null,Ar=null}function Pr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Ar&&(n||!1===e)?t(Ar,!o.lean):jr.push({callback:t,wait:e})}function Wr(){return Ar?[Ar.userId,Ar.sessionId,Ar.pageNum].join("."):""}function Xr(t){if(void 0===t&&(t=!0),!t)return o.track=!1,Zr("_clsk","",-Number.MAX_VALUE),Zr("_clck","",-Number.MAX_VALUE),Li(),void window.setTimeout(Ri,250);wi()&&(o.track=!0,Fr(Jr(),1))}function Yr(){Zr("_clsk","",0)}function qr(){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;!function(t){jr.length>0&&jr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Ar,!o.lean)}))}(n),Zr("_clsk",[Ar.sessionId,t,Ar.pageNum,n,e].join("|"),1)}function Ur(t,e){try{return!!t[e]}catch(t){return!1}}function Fr(t,e){void 0===e&&(e=null),e=null===e?t.consent:e;var n=Math.ceil((Date.now()+31536e6)/864e5),a=0===t.dob?null===o.dob?0:o.dob:t.dob;(null===t.expiry||Math.abs(n-t.expiry)>=1||t.consent!==e||t.dob!==a)&&Zr("_clck",[Ar.userId,2,n.toString(36),e,a].join("|"),365)}function Vr(){var t=Math.floor(Math.random()*Math.pow(2,32));return window&&window.crypto&&window.crypto.getRandomValues&&Uint32Array&&(t=window.crypto.getRandomValues(new Uint32Array(1))[0]),t.toString(36)}function Br(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Jr(){var t={id:Vr(),version:0,expiry:null,consent:0,dob:0},e=Kr("_clck");if(e&&e.length>0){for(var n=e.split("|"),a=0,r=0,i=document.cookie.split(";");r<i.length;r++){a+="_clck"===i[r].split("=")[0].trim()?1:0}if(1===n.length||a>1){var u="".concat(";").concat("expires=").concat(new Date(0).toUTCString()).concat(";path=/");document.cookie="".concat("_clck","=").concat(u),document.cookie="".concat("_clsk","=").concat(u)}n.length>1&&(t.version=Br(n[1])),n.length>2&&(t.expiry=Br(n[2],36)),n.length>3&&1===Br(n[3])&&(t.consent=1),n.length>4&&Br(n[1])>1&&(t.dob=Br(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function Kr(t){var e;if(Ur(document,"cookie")){var n=document.cookie.split(";");if(n)for(var a=0;a<n.length;a++){var r=n[a].split("=");if(r.length>1&&r[0]&&r[0].trim()===t){for(var i=Gr(r[1]),o=i[0],u=i[1];o;)o=(e=Gr(u))[0],u=e[1];return u}}}return null}function Gr(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Zr(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Ur(document,"cookie"))){var a=function(t){return encodeURIComponent(t)}(e),r=new Date;r.setDate(r.getDate()+n);var i=r?"expires="+r.toUTCString():"",u="".concat(t,"=").concat(a).concat(";").concat(i).concat(";path=/");try{if(null===Lr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(Lr=".".concat(c[s]).concat(Lr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(Lr),Kr(t)===e))return;Lr=""}}catch(t){Lr=""}document.cookie=Lr?"".concat(u).concat(";").concat("domain=").concat(Lr):u}}var Qr,$r=null;function ti(){var t=Ar;$r={version:l,sequence:0,start:0,duration:0,projectId:t.projectId,userId:t.userId,sessionId:t.sessionId,pageNum:t.pageNum,upload:0,end:0}}function ei(){$r=null}function ni(t){return $r.start=$r.start+$r.duration,$r.duration=s()-$r.start,$r.sequence++,$r.upload=t&&"sendBeacon"in navigator?1:0,$r.end=t?1:0,[$r.version,$r.sequence,$r.start,$r.duration,$r.projectId,$r.userId,$r.sessionId,$r.pageNum,$r.upload,$r.end]}function ai(){Qr=[]}function ri(t){if(Qr&&-1===Qr.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:$r.version,p:$r.projectId,u:$r.userId,s:$r.sessionId,n:$r.pageNum};t.message&&(n.m=t.message),t.stack&&(n.e=t.stack);var a=new XMLHttpRequest;a.open("POST",e,!0),a.send(JSON.stringify(n)),Qr.push(t.message)}}return t}function ii(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw ri(t)}var n=performance.now()-e;P(4,n),n>30&&(H(7),W(6,n))}}var oi=[];function ui(t,e,n,a){void 0===a&&(a=!1),n=ii(n);try{t[u("addEventListener")](e,n,a),oi.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function ci(){for(var t=0,e=oi;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}oi=[]}var si=null,li=null,di=null,fi=0;function hi(){return!(fi++>20)||(nr(4,0),!1)}function pi(){fi=0,di!==gi()&&(Li(),window.setTimeout(vi,250))}function vi(){Ri(),W(29,1)}function gi(){return location.href?location.href.replace(location.hash,""):location.href}var mi=!1;function bi(){mi=!0,c=performance.now(),ve(),ci(),ai(),di=gi(),fi=0,ui(window,"popstate",pi),null===si&&(si=history.pushState,history.pushState=function(){si.apply(this,arguments),wi()&&hi()&&pi()}),null===li&&(li=history.replaceState,history.replaceState=function(){li.apply(this,arguments),wi()&&hi()&&pi()})}function yi(){di=null,fi=0,ai(),ci(),ve(),c=0,mi=!1}function wi(){return mi}function ki(t){if(null===t||mi)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function Ei(){Ri(),j("clarity","restart")}var Oi=Object.freeze({__proto__:null,start:function(){!function(){Ot=[],W(26,navigator.webdriver?1:0);try{W(31,window.top==window.self?1:2)}catch(t){W(31,0)}}(),ui(window,"error",Qa),Za={},er={}},stop:function(){er={}}});function Ni(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),ye(e={id:Wr(),cost:3}),[4,da(document,e,0)];case 1:return n.sent(),[4,We(5,e,t)];case 2:return n.sent(),we(e),[2]}}))}))}var Ti=Object.freeze({__proto__:null,hashText:$t,start:function(){Se(),xe(),nn(),Ke=null,Fe=new WeakMap,Ve={},Be=[],Je=!!window.IntersectionObserver,Ut(),o.delayDom&&ui(window,"load",(function(){!function(){if(fa=[],ma=[],ba=null,ya=0,wa={},null===pa&&(pa=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return wi()&&Ta(this.ownerNode),pa.apply(this,arguments)}),null===va&&(va=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return wi()&&Ta(this.ownerNode),va.apply(this,arguments)}),null===ga){ga=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return wi()?Ta(ga.apply(this,arguments)):ga.apply(this,arguments)}}catch(t){ga=null}}}()})),ge(Ni,1).then((function(){ii(xe)(),ii(Qe)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(ze(),Pe(Ie,"play"),Pe(Ce,"pause"),Pe(De,"cancel"),Pe(Ae,"finish"))},stop:function(){nn(),Fe=null,Ve={},Be=[],Ke&&(Ke.disconnect(),Ke=null),Je=!1,Ft(),function(){for(var t=0,e=fa;t<e.length;t++){var n=e[t];n&&n.disconnect()}fa=[],wa={},ha=[],ma=[],ya=0,ba=null}(),Se(),ze()}});var Si,xi=null;function Mi(){xi=null}function _i(t){xi={fetchStart:Math.round(t.fetchStart),connectStart:Math.round(t.connectStart),connectEnd:Math.round(t.connectEnd),requestStart:Math.round(t.requestStart),responseStart:Math.round(t.responseStart),responseEnd:Math.round(t.responseEnd),domInteractive:Math.round(t.domInteractive),domComplete:Math.round(t.domComplete),loadEventStart:Math.round(t.loadEventStart),loadEventEnd:Math.round(t.loadEventEnd),redirectCount:Math.round(t.redirectCount),size:t.transferSize?t.transferSize:0,type:t.type,protocol:t.nextHopProtocol,encodedSize:t.encodedBodySize?t.encodedBodySize:0,decodedSize:t.decodedBodySize?t.decodedBodySize:0},function(t){at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(xi.fetchStart),n.push(xi.connectStart),n.push(xi.connectEnd),n.push(xi.requestStart),n.push(xi.responseStart),n.push(xi.responseEnd),n.push(xi.domInteractive),n.push(xi.domComplete),n.push(xi.loadEventStart),n.push(xi.loadEventEnd),n.push(xi.redirectCount),n.push(xi.size),n.push(xi.type),n.push(xi.protocol),n.push(xi.encodedSize),n.push(xi.decodedSize),Mi(),Ua(n)),[2]}))}))}(29)}var Ii=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Ci(){try{Si&&Si.disconnect(),Si=new PerformanceObserver(ii(Di));for(var t=0,e=Ii;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&P(9,0),Si.observe({type:n,buffered:!0}))}}catch(t){nr(3,1)}}function Di(t){!function(t){for(var e=(!("visibilityState"in document)||"visible"===document.visibilityState),n=0;n<t.length;n++){var a=t[n];switch(a.entryType){case"navigation":_i(a);break;case"resource":var r=a.name;Ir(4,Ai(r)),r!==o.upload&&r!==o.fallback||W(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&W(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&P(9,1e3*a.value);break;case"largest-contentful-paint":e&&W(8,a.startTime)}}}(t.getEntries())}function Ai(t){var e=document.createElement("a");return e.href=t,e.host}var ji=[Oi,Ti,ea,Object.freeze({__proto__:null,start:function(){Mi(),function(){navigator&&"connection"in navigator&&Ir(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?ui(window,"load",X.bind(this,Ci,0)):Ci():nr(3,0)}()},stop:function(){Si&&Si.disconnect(),Si=null,Mi()}})];function Ri(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===mi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(ki(t),bi(),yt(),ji.forEach((function(t){return ii(t.start)()})),null===t&&Wi())}function Li(){wi()&&(ji.slice().reverse().forEach((function(t){return ii(t.stop)()})),wt(),yi(),void 0!==Hi&&(Hi[Pi]=function(){(Hi[Pi].q=Hi[Pi].q||[]).push(arguments),"start"===arguments[0]&&Hi[Pi].q.unshift(Hi[Pi].q.pop())&&Wi()}))}var zi=Object.freeze({__proto__:null,consent:Xr,event:j,hashText:$t,identify:ut,metadata:Pr,pause:function(){wi()&&(j("clarity","pause"),null===he&&(he=new Promise((function(t){pe=t}))))},resume:function(){wi()&&(he&&(pe(),he=null,null===fe&&me()),j("clarity","resume"))},set:ot,signal:function(t){gt=t},start:Ri,stop:Li,upgrade:et,version:l}),Hi=window,Pi="clarity";function Wi(){if(void 0!==Hi){if(Hi[Pi]&&Hi[Pi].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Hi[Pi]&&Hi[Pi].q||[];for(Hi[Pi]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return zi[t].apply(zi,e)},Hi[Pi].v=l;t.length>0;)Hi[Pi].apply(Hi,t.shift())}}Wi()}();
|