clarity-js 0.7.24 → 0.7.25
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 +56 -16
- package/build/clarity.min.js +1 -1
- package/build/clarity.module.js +56 -16
- package/build/clarity.performance.js +1 -1
- package/package.json +1 -1
- package/src/core/version.ts +1 -1
- package/src/layout/node.ts +16 -0
- package/src/layout/traverse.ts +35 -19
package/build/clarity.js
CHANGED
|
@@ -154,7 +154,7 @@ function stop$E() {
|
|
|
154
154
|
startTime = 0;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
var version$1 = "0.7.
|
|
157
|
+
var version$1 = "0.7.25";
|
|
158
158
|
|
|
159
159
|
// tslint:disable: no-bitwise
|
|
160
160
|
function hash (input, precision) {
|
|
@@ -2755,6 +2755,12 @@ function processNode (node, source) {
|
|
|
2755
2755
|
// In some cases, external libraries like vue-fragment, can modify parentNode property to not be in sync with the DOM
|
|
2756
2756
|
// For correctness, we first look at parentElement and if it not present then fall back to using parentNode
|
|
2757
2757
|
parent = node.parentElement ? node.parentElement : (node.parentNode ? node.parentNode : null);
|
|
2758
|
+
// For HTML slots, the parentElement doesn't actually match what is rendered. If we have an assignedSlot, we use that
|
|
2759
|
+
// as the parent to ensure our visualizations match the browser behavior for end users.
|
|
2760
|
+
var slottedParent = node.assignedSlot;
|
|
2761
|
+
if (slottedParent) {
|
|
2762
|
+
parent = slottedParent;
|
|
2763
|
+
}
|
|
2758
2764
|
// If we encounter a node that is part of SVG namespace, prefix the tag with SVG_PREFIX
|
|
2759
2765
|
if (element.namespaceURI === "http://www.w3.org/2000/svg" /* Constant.SvgNamespace */) {
|
|
2760
2766
|
tag = "svg:" /* Constant.SvgPrefix */ + tag;
|
|
@@ -2849,6 +2855,16 @@ function processNode (node, source) {
|
|
|
2849
2855
|
var linkData = { tag: tag, attributes: attributes };
|
|
2850
2856
|
dom[call](node, parent, linkData, source);
|
|
2851
2857
|
break;
|
|
2858
|
+
case "VIDEO":
|
|
2859
|
+
case "AUDIO":
|
|
2860
|
+
case "SOURCE":
|
|
2861
|
+
// Ignoring any base64 src attribute for media elements to prevent big unused tokens to be sent and shock the network
|
|
2862
|
+
if ("src" /* Constant.Src */ in attributes && attributes["src" /* Constant.Src */].startsWith("data:")) {
|
|
2863
|
+
delete attributes["src" /* Constant.Src */];
|
|
2864
|
+
}
|
|
2865
|
+
var mediaTag = { tag: tag, attributes: attributes };
|
|
2866
|
+
dom[call](node, parent, mediaTag, source);
|
|
2867
|
+
break;
|
|
2852
2868
|
default:
|
|
2853
2869
|
var data = { tag: tag, attributes: attributes };
|
|
2854
2870
|
if (element.shadowRoot) {
|
|
@@ -2918,36 +2934,60 @@ function getAttributes(element) {
|
|
|
2918
2934
|
|
|
2919
2935
|
function traverse (root, timer, source) {
|
|
2920
2936
|
return __awaiter(this, void 0, void 0, function () {
|
|
2921
|
-
var
|
|
2922
|
-
return __generator(this, function (
|
|
2923
|
-
switch (
|
|
2937
|
+
var primaryQueue, slottedNodesQueue, _i, _a, currentQueue, entry, next, slottedParent, state, subnode;
|
|
2938
|
+
return __generator(this, function (_b) {
|
|
2939
|
+
switch (_b.label) {
|
|
2924
2940
|
case 0:
|
|
2925
|
-
|
|
2926
|
-
|
|
2941
|
+
primaryQueue = [root];
|
|
2942
|
+
slottedNodesQueue = [];
|
|
2943
|
+
_i = 0, _a = [primaryQueue, slottedNodesQueue];
|
|
2944
|
+
_b.label = 1;
|
|
2927
2945
|
case 1:
|
|
2928
|
-
if (!(
|
|
2929
|
-
|
|
2946
|
+
if (!(_i < _a.length)) return [3 /*break*/, 6];
|
|
2947
|
+
currentQueue = _a[_i];
|
|
2948
|
+
_b.label = 2;
|
|
2949
|
+
case 2:
|
|
2950
|
+
if (!(currentQueue.length > 0)) return [3 /*break*/, 5];
|
|
2951
|
+
entry = currentQueue.shift();
|
|
2930
2952
|
next = entry.firstChild;
|
|
2931
2953
|
while (next) {
|
|
2932
|
-
|
|
2954
|
+
// During traversal there is not a guarantee that the assigned child here is being found after the slot to which it is placed
|
|
2955
|
+
// as the typical parent/child methods don't reflect what is rendered. We need to make sure all other mutations and
|
|
2956
|
+
// discoveries are processed before we process a slotted element. Once we are processing the slottedNodesQueue we can
|
|
2957
|
+
// skip this effort and go directly to our breadth first traversal.
|
|
2958
|
+
if (currentQueue == primaryQueue) {
|
|
2959
|
+
slottedParent = next.assignedSlot;
|
|
2960
|
+
if (slottedParent) {
|
|
2961
|
+
slottedNodesQueue.push(next);
|
|
2962
|
+
}
|
|
2963
|
+
else {
|
|
2964
|
+
currentQueue.push(next);
|
|
2965
|
+
}
|
|
2966
|
+
}
|
|
2967
|
+
else {
|
|
2968
|
+
currentQueue.push(next);
|
|
2969
|
+
}
|
|
2933
2970
|
next = next.nextSibling;
|
|
2934
2971
|
}
|
|
2935
2972
|
state = state$b(timer);
|
|
2936
|
-
if (!(state === 0 /* Task.Wait */)) return [3 /*break*/,
|
|
2973
|
+
if (!(state === 0 /* Task.Wait */)) return [3 /*break*/, 4];
|
|
2937
2974
|
return [4 /*yield*/, suspend$1(timer)];
|
|
2938
|
-
case 2:
|
|
2939
|
-
state = _a.sent();
|
|
2940
|
-
_a.label = 3;
|
|
2941
2975
|
case 3:
|
|
2976
|
+
state = _b.sent();
|
|
2977
|
+
_b.label = 4;
|
|
2978
|
+
case 4:
|
|
2942
2979
|
if (state === 2 /* Task.Stop */) {
|
|
2943
|
-
return [3 /*break*/,
|
|
2980
|
+
return [3 /*break*/, 5];
|
|
2944
2981
|
}
|
|
2945
2982
|
subnode = processNode(entry, source);
|
|
2946
2983
|
if (subnode) {
|
|
2947
|
-
|
|
2984
|
+
currentQueue.push(subnode);
|
|
2948
2985
|
}
|
|
2986
|
+
return [3 /*break*/, 2];
|
|
2987
|
+
case 5:
|
|
2988
|
+
_i++;
|
|
2949
2989
|
return [3 /*break*/, 1];
|
|
2950
|
-
case
|
|
2990
|
+
case 6: return [2 /*return*/];
|
|
2951
2991
|
}
|
|
2952
2992
|
});
|
|
2953
2993
|
});
|
package/build/clarity.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return Wa},get start(){return qa},get stop(){return Xa},get track(){return Ra}}),e=Object.freeze({__proto__:null,get clone(){return sr},get compute(){return lr},get data(){return er},get keys(){return nr},get reset(){return dr},get start(){return ur},get stop(){return hr},get trigger(){return cr},get update(){return fr}}),n=Object.freeze({__proto__:null,get check(){return yr},get compute(){return kr},get data(){return tr},get start(){return br},get stop(){return Er},get trigger(){return wr}}),a=Object.freeze({__proto__:null,get compute(){return Mr},get data(){return Or},get log(){return Tr},get reset(){return _r},get start(){return xr},get stop(){return Nr},get updates(){return Sr}}),r=Object.freeze({__proto__:null,get callbacks(){return Cr},get clear(){return Yr},get consent(){return Hr},get data(){return Ir},get electron(){return Dr},get id(){return zr},get metadata(){return Lr},get save(){return qr},get shortid(){return Pr},get start(){return Ar},get stop(){return Rr}}),i=Object.freeze({__proto__:null,get data(){return Gr},get envelope(){return $r},get start(){return Zr},get stop(){return Qr}}),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};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.24";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,x=null,N=!1;function T(){N&&(S={time:s(),event:4,data:{visible:x.visible,docWidth:x.docWidth,docHeight:x.docHeight,screenWidth:x.screenWidth,screenHeight:x.screenHeight,scrollX:x.scrollX,scrollY:x.scrollY,pointerX:x.pointerX,pointerY:x.pointerY,activityTime:x.activityTime}}),x=x||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0}}function M(t,e,n){switch(t){case 8:x.docWidth=e,x.docHeight=n;break;case 11:x.screenWidth=e,x.screenHeight=n;break;case 10:x.scrollX=e,x.scrollY=n;break;default:x.pointerX=e,x.pointerY=n}N=!0}function _(t){x.activityTime=t}function I(t,e){x.visible="visible"===e?1:0,x.visible||_(t),N=!0}function C(){N&&mr(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:T,start:function(){N=!1,T()},get state(){return S},stop:function(){T()},track:M,visibility:I}),j=null;function A(t,e){mi()&&t&&"string"==typeof t&&t.length<255&&(j=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},mr(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 Y(t,e){null!==e&&(t in L||(L[t]=0),t in z||(z[t]=0),L[t]+=e,z[t]+=e)}function q(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 W(t,e,n){return window.setTimeout(ni(t),e,n)}function X(t){return window.clearTimeout(t)}var P=0,U=0,B=null;function V(){B&&X(B),B=W(F,U),P=s()}function F(){var t=s();R={gap:t-P},mr(25),R.gap<3e5?B=W(F,U):pi&&(A("clarity","suspend"),ji(),["mousemove","touchstart"].forEach((function(t){return ri(document,t,yi)})),["resize","scroll","pageshow"].forEach((function(t){return ri(window,t,yi)})))}var J=Object.freeze({__proto__:null,get data(){return R},reset:V,start:function(){U=6e4,P=0},stop:function(){X(B),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(){mr(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){mi()&&o.lean&&(o.lean=!1,tt={key:t},qr(),o.upgrade&&o.upgrade(t),mr(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(mi()&&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(){mr(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=[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 mt(){L={},z={},H(5),gt.forEach((function(t){return ni(t.start)()}))}function bt(){gt.slice().reverse().forEach((function(t){return ni(t.stop)()})),L={},z={}}function yt(){st(),C(),Mr(),mr(0),Z(),kr(),lr()}var wt,kt=[];function Et(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(wt={id:t,target:e,checksum:d(n,24)},kt.indexOf(wt.checksum)<0&&(kt.push(wt.checksum),Ga(41)))}var Ot="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 Nt(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&&Nt(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 Nt(t){if(!t)return!1;if(Ot.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 Tt=1,Mt=null,_t=[],It=[],Ct={},Dt=[],jt=[],At=[],Rt=[],Lt=[],zt=[],Ht=null,Yt=null,qt=null,Wt=null;function Xt(){Ut(),Bt(document,!0)}function Pt(){Ut()}function Ut(){Tt=1,_t=[],It=[],Ct={},Dt=[],jt=[],At="address,password,contact".split(","),Rt="password,secret,pass,social,ssn,code,hidden".split(","),Lt="radio,checkbox,range,button,reset,submit".split(","),zt="INPUT,SELECT,TEXTAREA".split(","),Mt=new Map,Ht=new WeakMap,Yt=new WeakMap,qt=new WeakMap,Wt=new WeakMap,St={}}function Bt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?jt.push(t):Dt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Je(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 Wt.set(t,e[0])}))})),jt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return qt.set(t,0)}))})))}catch(t){$a(5,1,t?t.name:null)}}function Vt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Ht.get(t);return!n&&e&&(n=Tt++,Ht.set(t,n)),n||null}function Ft(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 Jt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Yt.has(e)?Yt.get(e):null}function Kt(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 Gt(t){var e=t.parent&&t.parent in _t?_t[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=_t[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 Ct[e]=t.id}))}function Zt(t){var e=Qt(te(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function Qt(t){return Mt.has(t)?Mt.get(t):null}function $t(t){var e=Vt(t);return e in _t?_t[e]:null}function te(t){return t in Ct?Ct[t]:null}function ee(t){return Mt.has(Vt(t))}function ne(){for(var t=[],e=0,n=It;e<n.length;e++){var a=n[e];a in _t&&t.push(_t[a])}return It=[],t}function ae(t){Mt.delete(t);var e=t in _t?_t[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ae(a[n])}}function re(t){for(var e=null;null===e&&t.previousSibling;)e=Vt(t.previousSibling),t=t.previousSibling;return e}function ie(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=It.indexOf(t);r>=0&&1===e&&a?(It.splice(r,1),It.push(t)):-1===r&&n&&It.push(t)}var oe=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Vt(t,!0),u=e?Vt(e):null,c=re(t),s=null,l=Ke(t)?i:null,d=Wt.has(t)?Wt.get(t):null,f=o.content?1:3;u>=0&&_t[u]&&((s=_t[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&&(Je(t,n.attributes["data-clarity-region"]),l=i),Mt.set(i,t),_t[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 zt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=Rt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Lt.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 Wt.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)||Dt.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,At,r)}}(t,_t[i],s),Gt(_t[i]),"IMG"===(r=_t[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ie(i,a)},get:$t,getId:Vt,getNode:Qt,getValue:function(t){return t in _t?_t[t]:null},has:ee,hashText:Zt,iframe:Jt,lookup:te,parse:Bt,sameorigin:Ft,start:Xt,stop:Pt,update:function(t,e,n,a){var r=Vt(t),i=e?Vt(e):null,o=re(t),u=!1,c=!1;if(r in _t){var s=_t[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:_t[i].children.indexOf(o)+1;_t[i].children.splice(d,0,r),s.region=Ke(t)?r:_t[i].region}else!function(t,e){if(t in _t){var n=_t[t];n.metadata.active=!1,n.parent=null,ie(t,e),ae(t)}}(r,a);if(null!==l&&l>=0){var f=_t[l].children.indexOf(r);f>=0&&_t[l].children.splice(f,1)}c=!0}for(var h in n)Kt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Gt(s),ie(r,a,u,c)}},updates:ne}),ue=5e3,ce={},se=[],le=null,de=null,fe=null;function he(){ce={},se=[],le=null,de=null}function pe(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=se;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){se[1===e?"unshift":"push"]({task:t,resolve:n,id:zr()})})),null===le&&null===de&&ve(),[2,r]}))}))}function ve(){var t=se.shift();t&&(le=t,t.task().then((function(){t.id===zr()&&(t.resolve(),le=null,ve())})).catch((function(e){t.id===zr()&&(e&&$a(0,1,e.name,e.message,e.stack),le=null,ve())})))}function ge(t){var e=we(t);return e in ce?performance.now()-ce[e].start>ce[e].yield?0:1:2}function me(t){ce[we(t)]={start:performance.now(),calls:0,yield:30}}function be(t){var e=performance.now(),n=we(t),a=e-ce[n].start;Y(t.cost,a),H(5),ce[n].calls>0&&Y(4,a)}function ye(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=we(t))in ce?(be(t),n=ce[e],[4,ke()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=we(t);if(ce&&ce[e]){var n=ce[e].calls,a=ce[e].yield;me(t),ce[e].calls=n+1,ce[e].yield=a}}(t),a.label=2;case 2:return[2,e in ce?1:2]}}))}))}function we(t){return"".concat(t.id,".").concat(t.cost)}function ke(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return de?[4,de]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Oe(t,{timeout:ue})}))]}}))}))}var Ee,Oe=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(){Ee=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!==Ee&&c===Ee.width&&v===Ee.height||null===c||null===v||(Ee={width:c,height:v},He(8))}var Ne=[],Te=[],Me=null,_e=null,Ie=null,Ce=null,De="clarityAnimationId",je="clarityOperationCount",Ae=20;function Re(){Te=[]}function Le(t,e,n,a,r,i,o){Te.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),He(44)}function ze(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){if(mi()){var n=this.effect,a=Vt(this.effect.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!this[De]){this[De]=Pr(),this[je]=0;var r=n.getKeyframes(),i=n.getTiming();Le(s(),this[De],0,JSON.stringify(r),JSON.stringify(i),a)}if(this[je]++<Ae){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&&Le(s(),this[De],o)}}}return t.apply(this,arguments)})}function He(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,x,N,T,I,C,D,j,A,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=Ee,r.push(i.width),r.push(i.height),M(t,i.width,i.height),Wa(r),[3,13];case 2:for(u=0,c=Xe;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),Wa(r);return tn(),[3,13];case 3:for(d=0,f=Ne;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),Wa(r);return[3,13];case 4:for(h=0,p=Ne;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),Wa(r);z.label=5;case 5:for(v=0,g=Te;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),Wa(r);return Re(),[3,13];case 6:if(2===ge(e))return[3,13];if(!((y=ne()).length>0))return[3,12];w=0,k=y,z.label=7;case 7:return w<k.length?(E=k[w],0!==(O=ge(e))?[3,9]:[4,ye(e)]):[3,11];case 8:O=z.sent(),z.label=9;case 9:if(2===O)return[3,11];for(S=E.data,x=E.metadata.active,N=E.metadata.suspend,T=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=x?["tag","attributes","value"]:["tag"];C<D.length;C++)if(S[j=D[C]])switch(j){case"tag":A=Ye(E),R=I?-1:1,r.push(E.id*R),E.parent&&x&&r.push(E.parent),E.previous&&x&&r.push(E.previous),r.push(N?"*M":S[j]),A&&2===A.length&&r.push("".concat("#").concat(qe(A[0]),".").concat(qe(A[1])));break;case"attributes":for(L in S[j])void 0!==S[j][L]&&r.push(We(L,S[j][L],T));break;case"value":Et(E.metadata.fraud,E.id,S[j]),r.push(m(S[j],S.tag,T,I))}z.label=10;case 10:return w++,[3,7];case 11:6===t&&_(a),Wa(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=Qt(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 We(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var Xe=[],Pe=null,Ue={},Be=[],Ve=!1,Fe=null;function Je(t,e){!1===Pe.has(t)&&(Pe.set(t,e),(Fe=null===Fe&&Ve?new IntersectionObserver(Ze,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Fe)&&t&&t.nodeType===Node.ELEMENT_NODE&&Fe.observe(t))}function Ke(t){return Pe&&Pe.has(t)}function Ge(){for(var t=[],e=0,n=Be;e<n.length;e++){var a=n[e],r=Vt(a.node);r?(a.state.data.id=r,Ue[r]=a.state.data,Xe.push(a.state)):t.push(a)}Be=t,Xe.length>0&&He(7)}function Ze(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(Pe.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Vt(r):null,s=c in Ue?Ue[c]:{id:c,name:Pe.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;Qe(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Fe&&Fe.unobserve(r)}}Xe.length>0&&He(7)}function Qe(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 Ue&&r||!(e.id in Ue))&&(Ue[e.id]=e,Xe.push($e(e))):Be.push({node:t,state:$e(e)})}function $e(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function tn(){Xe=[]}var en=[];function nn(t){var e=Sa(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):"";en.push({time:s(t),event:42,data:{target:Sa(t),type:e.type,value:n,checksum:a}}),pe(Na.bind(this,42))}}function an(){en=[]}function rn(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Jt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var on=["input","textarea","radio","button","canvas"],un=[];function cn(t){ri(t,"click",sn.bind(this,9,t),!0)}function sn(t,e,n){var a=Jt(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=rn(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=Sa(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&&(un.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:dn(c),context:fn(l),text:ln(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),pe(Na.bind(this,t)))}function ln(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 dn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(on.indexOf(e)>=0)return 0}return 1}function fn(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 hn(){un=[]}var pn=[];function vn(t,e){pn.push({time:s(e),event:38,data:{target:Sa(e),action:t}}),pe(Na.bind(this,38))}function gn(){pn=[]}var mn=null,bn=[];function yn(t){var e=Sa(t),n=$t(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};bn.length>0&&bn[bn.length-1].data.target===r.target&&bn.pop(),bn.push({time:s(t),event:27,data:r}),X(mn),mn=W(wn,1e3,27)}}function wn(t){pe(Na.bind(this,t))}function kn(){bn=[]}var En,On=[],Sn=null;function xn(t,e,n){var a=Jt(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=rn(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&Tn({time:s(n),event:t,data:{target:Sa(n),x:i,y:o}})}function Nn(t,e,n){var a=Jt(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&&Tn({time:o,event:t,data:{target:Sa(n),x:l,y:d}})}}function Tn(t){switch(t.event){case 12:case 15:case 19:var e=On.length,n=e>1?On[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)&&On.pop(),On.push(t),X(Sn),Sn=W(Mn,500,t.event);break;default:On.push(t),Mn(t.event)}}function Mn(t){pe(Na.bind(this,t))}function _n(){On=[]}function In(){var t=document.documentElement;En={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},Na(11)}function Cn(){En=null}var Dn=[],jn=null;function An(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?Sa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Jt(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=Dn.length,l=c>1?Dn[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)&&Dn.pop(),Dn.push(u),X(jn),jn=W(Rn,500,10)}}function Rn(t){pe(Na.bind(this,t))}var Ln=null,zn=null,Hn=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=Ln.start?Ln.start:null;null!==zn&&null!==Ln.start&&n!==e.anchorNode&&(X(Hn),qn(21)),Ln={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},zn=e,X(Hn),Hn=W(qn,500,21)}}function qn(t){pe(Na.bind(this,t))}function Wn(){zn=null,Ln={start:0,startOffset:0,end:0,endOffset:0}}var Xn,Pn,Un=[];function Bn(t){Un.push({time:s(t),event:39,data:{target:Sa(t)}}),pe(Na.bind(this,39))}function Vn(){Un=[]}function Fn(t){Xn={name:t.type},Na(26,s(t)),ji()}function Jn(){Xn=null}function Kn(t){void 0===t&&(t=null),Pn={visible:"visibilityState"in document?document.visibilityState:"default"},Na(28,s(t))}function Gn(){Pn=null}function Zn(t){!function(t){var e=Jt(t);ri(e?e.contentWindow:t===document?window:t,"scroll",An,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(cn(t),function(t){ri(t,"cut",vn.bind(this,0),!0),ri(t,"copy",vn.bind(this,1),!0),ri(t,"paste",vn.bind(this,2),!0)}(t),function(t){ri(t,"mousedown",xn.bind(this,13,t),!0),ri(t,"mouseup",xn.bind(this,14,t),!0),ri(t,"mousemove",xn.bind(this,12,t),!0),ri(t,"wheel",xn.bind(this,15,t),!0),ri(t,"dblclick",xn.bind(this,16,t),!0),ri(t,"touchstart",Nn.bind(this,17,t),!0),ri(t,"touchend",Nn.bind(this,18,t),!0),ri(t,"touchmove",Nn.bind(this,19,t),!0),ri(t,"touchcancel",Nn.bind(this,20,t),!0)}(t),function(t){ri(t,"input",yn,!0)}(t),function(t){ri(t,"selectstart",Yn.bind(this,t),!0),ri(t,"selectionchange",Yn.bind(this,t),!0)}(t),function(t){ri(t,"change",nn,!0)}(t),function(t){ri(t,"submit",Bn,!0)}(t))}var Qn=Object.freeze({__proto__:null,observe:Zn,start:function(){Ta=[],_a(),hn(),gn(),_n(),kn(),ri(window,"resize",In),In(),ri(document,"visibilitychange",Kn),Kn(),Dn=[],An(),Wn(),an(),Vn(),ri(window,"pagehide",Fn)},stop:function(){Ta=[],_a(),hn(),gn(),X(Sn),On.length>0&&Mn(On[On.length-1].event),X(mn),kn(),Cn(),Gn(),X(jn),Dn=[],Wn(),X(Hn),an(),Vn(),Jn()}}),$n=/[^0-9\.]/g;function ta(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":Tr(5,t[a]),Tr(8,t.creator),Tr(18,t.headline);break;case"product":Tr(5,t[a]),Tr(10,t.name),Tr(12,t.sku),t.brand&&Tr(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(q(11,ea(t.ratingValue,100)),q(18,ea(t.bestRating)),q(19,ea(t.worstRating))),q(12,ea(t.ratingCount)),q(17,ea(t.reviewCount));break;case"person":Tr(8,t.name);break;case"offer":Tr(7,t.availability),Tr(14,t.itemCondition),Tr(13,t.priceCurrency),Tr(12,t.sku),q(13,ea(t.price));break;case"brand":Tr(6,t.name)}null!==r&&"object"==typeof r&&ta(r)}}function ea(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($n,""))*e)}return null}var na=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last"],aa=/[\r\n]+/g;function ra(t,e){var n,a=null;if(2===e&&!1===ee(t))return a;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var r=!1===ee(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?Jt(t.parentNode):i;var u=t,c={tag:(o?"iframe:":"")+"*D",attributes:{name:u.name,publicId:u.publicId,systemId:u.systemId}};oe[r](t,i,c,e);break;case Node.DOCUMENT_NODE:t===document&&Bt(document),ia(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var s=t;if(s.host)if(Bt(s),"function"===typeof s.constructor&&s.constructor.toString().indexOf("[native code]")>=0){ia(s);var l={tag:"*S",attributes:{style:""}};oe[r](t,s.host,l,e)}else oe[r](t,s.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(i=i||t.parentNode,"update"===r||i&&ee(i)&&"STYLE"!==i.tagName&&"NOSCRIPT"!==i.tagName){var d={tag:"*T",value:t.nodeValue};oe[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;na.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?Jt(i):null;var v={tag:(o?"iframe:":"")+h,attributes:p};oe[r](t,i,v,e);break;case"SCRIPT":if("type"in p&&"application/ld+json"===p.type)try{ta(JSON.parse(f.text.replace(aa,"")))}catch(t){}break;case"NOSCRIPT":var g={tag:h,attributes:{},value:""};oe[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":Tr(20,b);break;case"og:type":Tr(19,b);break;case"generator":Tr(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,oe[r](t,i,y,e);break;case"BASE":var k=$t(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:oa(f)};oe[r](t,i,O,e);break;case"IFRAME":var S=t,x={tag:h,attributes:p};Ft(S)&&(!function(t){!1===ee(t)&&ri(t,"load",Oa.bind(this,t,"childList"),!0)}(S),x.attributes["*O"]="true",S.contentDocument&&S.contentWindow&&"loading"!==S.contentDocument.readyState&&(a=S.contentDocument)),oe[r](t,i,x,e);break;case"LINK":if(Dr&&"stylesheet"===p.rel){for(var N in Object.keys(document.styleSheets)){var T=document.styleSheets[N];if(T.ownerNode==f){var M={tag:"STYLE",attributes:p,value:ua(T)};oe[r](t,i,M,e);break}}break}var _={tag:h,attributes:p};oe[r](t,i,_,e);break;default:var I={tag:h,attributes:p};f.shadowRoot&&(a=f.shadowRoot),oe[r](t,i,I,e)}}return a}function ia(t){ee(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](ni(ba)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),sa.push(n))}catch(t){$a(2,0,t?t.name:null)}}(t),Zn(t))}function oa(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=ua(t.sheet)),e}function ua(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if($a(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 ca(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=ge(e))?[3,3]:[4,ye(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=ra(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var sa=[],la=[],da=null,fa=null,ha=null,pa=[],va=null,ga=null,ma={};function ba(t){var e=s();G(6,e),la.push({time:e,mutations:t}),pe(ya,1).then((function(){W(xe),ni(Ge)()}))}function ya(){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:me(t={id:zr(),cost:3}),d.label=1;case 1:if(!(la.length>0))return[3,8];e=la.shift(),n=s(),a=0,r=e.mutations,d.label=2;case 2:return a<r.length?(i=r[a],0!==(o=ge(t))?[3,4]:[4,ye(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?$t(t.target.parentNode):null;if(a&&"HTML"!==a.data.tag){var r=s()>ga,i=$t(t.target),o=i&&i.selector?i.selector.join():t.target.nodeName,u=[a.selector?a.selector.join():"",o,t.attributeName,wa(t.addedNodes),wa(t.removedNodes)].join();ma[u]=u in ma?ma[u]:[0,n];var c=ma[u];if(!1===r&&c[0]>=10&&ka(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&&Bt(u.ownerDocument),c&&u&&u.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&u.host&&Bt(u),c){case"attributes":ra(u,3);break;case"characterData":ra(u,4);break;case"childList":ka(i.addedNodes,1,t),ka(i.removedNodes,2,t);break;case"suspend":(l=$t(u))&&(l.metadata.suspend=!0)}d.label=5;case 5:return a++,[3,2];case 6:return[4,He(6,t,e.time)];case 7:return d.sent(),[3,1];case 8:return be(t),[2]}}))}))}function wa(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function ka(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]:(ca(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=ge(n))?[3,4]:[4,ye(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ra(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Ea(t){return pa.indexOf(t)<0&&pa.push(t),va&&X(va),va=W((function(){!function(){for(var t=0,e=pa;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ee(n))continue;Oa(n,a?"childList":"characterData")}}pa=[]}()}),33),t}function Oa(t,e){ni(ba)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function Sa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return ga=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function xa(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=$t(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=Qt(t),a=t in Ue?Ue[t]:{id:t,visibility:0,interaction:16,name:Pe.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}Qe(n,a,r,a.visibility)}(r.region,e),i.fraud&&Et(i.fraud,r.id,n||r.data.value)}}return a}function Na(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,x,N,T,_,C,D,j,A,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=On;r<i.length;r++)L=i[r],(o=xa(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),Wa(a),M(L.event,L.data.x,L.data.y));_n();break;case 9:for(u=0,c=un;u<c.length;u++)L=c[u],l=xa(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),Wa(a),Ia(L.time,L.event,d,L.data.x,L.data.y,L.data.reaction,L.data.context);hn();break;case 38:for(f=0,h=pn;f<h.length;f++)L=h[f],a=[L.time,L.event],(j=xa(L.data.target,L.event)).id>0&&(a.push(j.id),a.push(L.data.action),Wa(a));gn();break;case 11:p=En,a.push(p.width),a.push(p.height),M(t,p.width,p.height),Cn(),Wa(a);break;case 26:v=Xn,a.push(v.name),Jn(),Wa(a);break;case 27:for(g=0,y=bn;g<y.length;g++)L=y[g],w=xa(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)),Wa(a);kn();break;case 21:(k=Ln)&&(E=xa(k.start,t),O=xa(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Wn(),Wa(a));break;case 10:for(S=0,x=Dn;S<x.length;S++)L=x[S],(N=xa(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(N.id),a.push(L.data.x),a.push(L.data.y),Wa(a),M(L.event,L.data.x,L.data.y));Dn=[];break;case 42:for(T=0,_=en;T<_.length;T++)L=_[T],a=[L.time,L.event],(j=xa(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(j.id),a.push(L.data.type),a.push(m(L.data.value,"change",j.privacy)),a.push(m(L.data.checksum,"checksum",j.privacy)),Wa(a));an();break;case 39:for(C=0,D=Un;C<D.length;C++)L=D[C],a=[L.time,L.event],(j=xa(L.data.target,L.event)).id>0&&(a.push(j.id),Wa(a));Vn();break;case 22:for(A=0,R=Ma;A<R.length;A++)L=R[A],(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),Wa(a,!1);_a();break;case 28:z=Pn,a.push(z.visible),Wa(a),I(n,z.visible),Gn()}return[2]}))}))}var Ta=[],Ma=[];function _a(){Ma=[]}function Ia(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),Ta.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),M(e,a,r)}var Ca,Da,ja,Aa,Ra,La=0,za=0,Ha=null,Ya=0;function qa(){Aa=!0,La=0,za=0,Ya=0,Ca=[],Da=[],ja={},Ra=null}function Wa(t,e){if(void 0===e&&(e=!0),Aa){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:La+=r.length;case 37:case 6:case 43:case 45:case 46:za+=r.length,Ca.push(r);break;default:Da.push(r)}H(25);var i=function(){var t=!1===o.lean&&La>0?100:Gr.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Ya>2*i&&(X(Ha),Ha=null),e&&null===Ha&&(25!==a&&V(),Ha=W(Pa,i),Ya=n,yr(za))}}function Xa(){X(Ha),Pa(!0),La=0,za=0,Ya=0,Ca=[],Da=[],ja={},Ra=null,Aa=!1}function Pa(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 Ha=null,(e=!1===o.lean&&za>0&&(za<1048576||Gr.sequence>0))&&q(1,1),Ge(),function(){var t=[];Ma=[];for(var e=Gr.start+Gr.duration,n=Math.max(e-2e3,0),a=0,r=Ta;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ma.push(i),t.push(i))}Ta=t,Na(22)}(),yt(),n=!0===t,a=JSON.stringify($r(n)),r="[".concat(Da.join(),"]"),i=e?"[".concat(Ca.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 Y(2,(c=s)?c.length:u.length),Ua(u,c,Gr.sequence,n),Da=[],e&&(Ca=[],za=0,La=0),[2]}}))}))}function Ua(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))&&Va(n)}catch(t){}if(!1===i){n in ja?ja[n].attempts++:ja[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){ei(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){ni(Ba)(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),Va(n)}}function Ba(t,e){var n=ja[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?wr(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Ua(n.data,null,e)):(Ra={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&mr(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":wr(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&cr(i[1])}}}(t.responseText),0===t.status&&(Ua(n.data,null,e,!0),wr(3)),t.status>=200&&t.status<=208&&Va(e),delete ja[e]))}function Va(t){1===t&&qr()}var Fa,Ja={};function Ka(t){var e=t.error||t;return e.message in Ja||(Ja[e.message]=0),Ja[e.message]++>=5||e&&e.message&&(Fa={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Ga(31)),!0}function Ga(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(Fa.message),e.push(Fa.line),e.push(Fa.column),e.push(Fa.stack),e.push(b(Fa.source)),Wa(e);break;case 33:Za&&(e.push(Za.code),e.push(Za.name),e.push(Za.message),e.push(Za.stack),e.push(Za.severity),Wa(e,!1));break;case 41:wt&&(e.push(wt.id),e.push(wt.target),e.push(wt.checksum),Wa(e,!1))}return[2]}))}))}var Za,Qa={};function $a(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 Qa&&Qa[t].indexOf(i)>=0||(Za={code:t,name:n,message:a,stack:r,severity:e},t in Qa?Qa[t].push(i):Qa[t]=[i],Ga(33))}var tr,er={},nr=new Set,ar={},rr={},ir={},or={};function ur(){dr()}function cr(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 ar[a]={},rr[a]={},ir[a]={},or[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);ar[a][u]=pr(l);break;case 2:rr[a][u]=c;break;case 4:var d=c.substring(1,c.length);ir[a][u]=d}}}catch(t){$a(8,1,t?t.name:null)}}function sr(t){return JSON.parse(JSON.stringify(t))}function lr(){try{for(var t in ar){var e=parseInt(t);if(""==or[e]||document.querySelector(or[e])){var n=ar[e];for(var a in n){var r=parseInt(a),i=(h=vr(sr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&fr(e,r,i)}var o=rr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)fr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=ir[e];for(var d in l){var f=parseInt(d);fr(e,f,Zt(l[f]).trim().substring(0,1e4))}}}nr.size>0&&mr(40)}catch(t){$a(5,1,t?t.name:null)}var h}function dr(){nr.clear()}function fr(t,e,n){var a,r=!1;t in er||(er[t]={},r=!0),a=ir[t],0==Object.keys(a).length||e in er[t]&&er[t][e]==n||(r=!0),er[t][e]=n,r&&nr.add(t)}function hr(){dr()}function pr(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 vr(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&&gr(r,a.condition))n=vr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(gr(c,a.condition)){var s=vr(t,c);s&&i.push(s)}}n=i}return n}return null}function gr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function mr(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),Wa(e,!1)),T();break;case 25:e.push(R.gap),Wa(e);break;case 35:e.push(tr.check),Wa(e,!1);break;case 3:e.push(tt.key),Wa(e);break;case 2:e.push(Ra.sequence),e.push(Ra.attempts),e.push(Ra.status),Wa(e,!1);break;case 24:j.key&&e.push(j.key),e.push(j.value),Wa(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(),Wa(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={},Wa(e,!1)}break;case 1:var h=Object.keys(Sr);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(Sr[g])}_r(),Wa(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(),Wa(e,!1)}break;case 40:nr.forEach((function(t){e.push(t);var n=[];for(var a in er[t]){var r=parseInt(a,10);n.push(r),n.push(er[t][a])}e.push(n)})),dr(),Wa(e,!1)}}function br(){tr={check:0}}function yr(t){if(0===tr.check){var e=tr.check;e=Gr.sequence>=128?1:e,e=Gr.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==tr.check&&wr(e)}}function wr(t){tr.check=t,Yr(),ji()}function kr(){0!==tr.check&&mr(35)}function Er(){tr=null}var Or=null,Sr=null;function xr(){Or={},Sr={}}function Nr(){Or={},Sr={}}function Tr(t,e){e&&(e="".concat(e),t in Or||(Or[t]=[]),Or[t].indexOf(e)<0&&(Or[t].push(e),t in Sr||(Sr[t]=[]),Sr[t].push(e),Or[t].length>128&&wr(5)))}function Mr(){mr(1)}function _r(){Sr={}}var Ir=null,Cr=[],Dr=0,jr=null;function Ar(){jr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Dr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:Pr(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=Vr("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-Ur(n[1])<18e5&&(t.session=n[0],t.count=Ur(n[2])+1,t.upgrade=Ur(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=Br(),i=o.projectId||d(location.host);Ir={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,Tr(0,t),Tr(3,e),Tr(1,b(location.href,!!Dr)),Tr(2,document.referrer),Tr(15,function(){var t=Pr();if(o.track&&Wr(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),Tr(16,document.documentElement.lang),Tr(17,document.dir),Tr(26,"".concat(window.devicePixelRatio)),Tr(28,r.dob.toString()),Tr(29,r.version.toString()),q(0,a.ts),q(1,0),q(35,Dr),navigator&&(Tr(9,navigator.language),q(33,navigator.hardwareConcurrency),q(32,navigator.maxTouchPoints),q(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;Tr(22,t.platform),Tr(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){Tr(24,t.name+"~"+t.version)})),Tr(25,t.model),q(27,t.mobile?1:0)})):Tr(22,navigator.platform)),screen&&(q(14,Math.round(screen.width)),q(15,Math.round(screen.height)),q(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=Vr(s);l&&ot(s,l)}Xr(r)}function Rr(){jr=null,Ir=null}function Lr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Ir&&(n||!1===e)?t(Ir,!o.lean):Cr.push({callback:t,wait:e})}function zr(){return Ir?[Ir.userId,Ir.sessionId,Ir.pageNum].join("."):""}function Hr(t){if(void 0===t&&(t=!0),!t)return Jr("_clsk","",0),Jr("_clck","",0),ji(),void window.setTimeout(Di,250);mi()&&(o.track=!0,Xr(Br(),1))}function Yr(){Jr("_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){Cr.length>0&&Cr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Ir,!o.lean)}))}(n),Jr("_clsk",[Ir.sessionId,t,Ir.pageNum,n,e].join("|"),1)}function Wr(t,e){try{return!!t[e]}catch(t){return!1}}function Xr(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)&&Jr("_clck",[Ir.userId,2,n.toString(36),e,a].join("|"),365)}function Pr(){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 Ur(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Br(){var t={id:Pr(),version:0,expiry:null,consent:0,dob:0},e=Vr("_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=Ur(n[1])),n.length>2&&(t.expiry=Ur(n[2],36)),n.length>3&&1===Ur(n[3])&&(t.consent=1),n.length>4&&Ur(n[1])>1&&(t.dob=Ur(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function Vr(t){var e;if(Wr(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=Fr(r[1]),o=i[0],u=i[1];o;)o=(e=Fr(u))[0],u=e[1];return u}}}return null}function Fr(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Jr(t,e,n){if(o.track&&(navigator&&navigator.cookieEnabled||Wr(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===jr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(jr=".".concat(c[s]).concat(jr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(jr),Vr(t)===e))return;jr=""}}catch(t){jr=""}document.cookie=jr?"".concat(u).concat(";").concat("domain=").concat(jr):u}}var Kr,Gr=null;function Zr(){var t=Ir;Gr={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 Qr(){Gr=null}function $r(t){return Gr.start=Gr.start+Gr.duration,Gr.duration=s()-Gr.start,Gr.sequence++,Gr.upload=t&&"sendBeacon"in navigator?1:0,Gr.end=t?1:0,[Gr.version,Gr.sequence,Gr.start,Gr.duration,Gr.projectId,Gr.userId,Gr.sessionId,Gr.pageNum,Gr.upload,Gr.end]}function ti(){Kr=[]}function ei(t){if(Kr&&-1===Kr.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:Gr.version,p:Gr.projectId,u:Gr.userId,s:Gr.sessionId,n:Gr.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)),Kr.push(t.message)}}return t}function ni(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw ei(t)}var n=performance.now()-e;Y(4,n),n>30&&(H(7),q(6,n))}}var ai=[];function ri(t,e,n,a){void 0===a&&(a=!1),n=ni(n);try{t[u("addEventListener")](e,n,a),ai.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function ii(){for(var t=0,e=ai;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}ai=[]}var oi=null,ui=null,ci=null,si=0;function li(){return!(si++>20)||($a(4,0),!1)}function di(){si=0,ci!==hi()&&(ji(),window.setTimeout(fi,250))}function fi(){Di(),q(29,1)}function hi(){return location.href?location.href.replace(location.hash,""):location.href}var pi=!1;function vi(){pi=!0,c=performance.now(),he(),ii(),ti(),ci=hi(),si=0,ri(window,"popstate",di),null===oi&&(oi=history.pushState,history.pushState=function(){oi.apply(this,arguments),mi()&&li()&&di()}),null===ui&&(ui=history.replaceState,history.replaceState=function(){ui.apply(this,arguments),mi()&&li()&&di()})}function gi(){ci=null,si=0,ti(),ii(),he(),c=0,pi=!1}function mi(){return pi}function bi(t){if(null===t||pi)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function yi(){Di(),A("clarity","restart")}var wi=Object.freeze({__proto__:null,start:function(){!function(){kt=[],q(26,navigator.webdriver?1:0);try{q(31,window.top==window.self?1:2)}catch(t){q(31,0)}}(),ri(window,"error",Ka),Ja={},Qa={}},stop:function(){Qa={}}});function ki(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),me(e={id:zr(),cost:3}),[4,ca(document,e,0)];case 1:return n.sent(),[4,He(5,e,t)];case 2:return n.sent(),be(e),[2]}}))}))}var Ei=Object.freeze({__proto__:null,hashText:Zt,start:function(){Se(),xe(),tn(),Fe=null,Pe=new WeakMap,Ue={},Be=[],Ve=!!window.IntersectionObserver,Xt(),function(){if(sa=[],pa=[],va=null,ga=0,ma={},null===da&&(da=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return mi()&&Ea(this.ownerNode),da.apply(this,arguments)}),null===fa&&(fa=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return mi()&&Ea(this.ownerNode),fa.apply(this,arguments)}),null===ha){ha=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return mi()?Ea(ha.apply(this,arguments)):ha.apply(this,arguments)}}catch(t){ha=null}}}(),pe(ki,1).then((function(){ni(xe)(),ni(Ge)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Re(),ze(Me,"play"),ze(_e,"pause"),ze(Ie,"cancel"),ze(Ce,"finish"))},stop:function(){tn(),Pe=null,Ue={},Be=[],Fe&&(Fe.disconnect(),Fe=null),Ve=!1,Pt(),function(){for(var t=0,e=sa;t<e.length;t++){var n=e[t];n&&n.disconnect()}sa=[],ma={},la=[],pa=[],ga=0,va=null}(),Se(),Re()}});var Oi,Si=null;function xi(){Si=null}function Ni(t){Si={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(Si.fetchStart),n.push(Si.connectStart),n.push(Si.connectEnd),n.push(Si.requestStart),n.push(Si.responseStart),n.push(Si.responseEnd),n.push(Si.domInteractive),n.push(Si.domComplete),n.push(Si.loadEventStart),n.push(Si.loadEventEnd),n.push(Si.redirectCount),n.push(Si.size),n.push(Si.type),n.push(Si.protocol),n.push(Si.encodedSize),n.push(Si.decodedSize),xi(),Wa(n)),[2]}))}))}(29)}var Ti=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Mi(){try{Oi&&Oi.disconnect(),Oi=new PerformanceObserver(ni(_i));for(var t=0,e=Ti;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&Y(9,0),Oi.observe({type:n,buffered:!0}))}}catch(t){$a(3,1)}}function _i(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":Ni(a);break;case"resource":var r=a.name;Tr(4,Ii(r)),r!==o.upload&&r!==o.fallback||q(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&q(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&Y(9,1e3*a.value);break;case"largest-contentful-paint":e&&q(8,a.startTime)}}}(t.getEntries())}function Ii(t){var e=document.createElement("a");return e.href=t,e.host}var Ci=[wi,Ei,Qn,Object.freeze({__proto__:null,start:function(){xi(),function(){navigator&&"connection"in navigator&&Tr(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?ri(window,"load",W.bind(this,Mi,0)):Mi():$a(3,0)}()},stop:function(){Oi&&Oi.disconnect(),Oi=null,xi()}})];function Di(t){void 0===t&&(t=null),function(){try{return!1===pi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap}catch(t){return!1}}()&&(bi(t),vi(),mt(),Ci.forEach((function(t){return ni(t.start)()})),null===t&&zi())}function ji(){mi()&&(Ci.slice().reverse().forEach((function(t){return ni(t.stop)()})),bt(),gi(),void 0!==Ri&&(Ri[Li]=function(){(Ri[Li].q=Ri[Li].q||[]).push(arguments),"start"===arguments[0]&&Ri[Li].q.unshift(Ri[Li].q.pop())&&zi()}))}var Ai=Object.freeze({__proto__:null,consent:Hr,event:A,hashText:Zt,identify:ut,metadata:Lr,pause:function(){mi()&&(A("clarity","pause"),null===de&&(de=new Promise((function(t){fe=t}))))},resume:function(){mi()&&(de&&(fe(),de=null,null===le&&ve()),A("clarity","resume"))},set:ot,start:Di,stop:ji,upgrade:et,version:l}),Ri=window,Li="clarity";function zi(){if(void 0!==Ri){if(Ri[Li]&&Ri[Li].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Ri[Li]&&Ri[Li].q||[];for(Ri[Li]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return Ai[t].apply(Ai,e)},Ri[Li].v=l;t.length>0;)Ri[Li].apply(Ri,t.shift())}}zi()}();
|
|
1
|
+
!function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return qa},get start(){return Ya},get stop(){return Xa},get track(){return Ra}}),e=Object.freeze({__proto__:null,get clone(){return sr},get compute(){return lr},get data(){return er},get keys(){return nr},get reset(){return dr},get start(){return ur},get stop(){return hr},get trigger(){return cr},get update(){return fr}}),n=Object.freeze({__proto__:null,get check(){return yr},get compute(){return kr},get data(){return tr},get start(){return br},get stop(){return Er},get trigger(){return wr}}),a=Object.freeze({__proto__:null,get compute(){return Mr},get data(){return Or},get log(){return Tr},get reset(){return _r},get start(){return xr},get stop(){return Nr},get updates(){return Sr}}),r=Object.freeze({__proto__:null,get callbacks(){return Cr},get clear(){return Wr},get consent(){return Hr},get data(){return Ir},get electron(){return Dr},get id(){return zr},get metadata(){return Lr},get save(){return Yr},get shortid(){return Pr},get start(){return Ar},get stop(){return Rr}}),i=Object.freeze({__proto__:null,get data(){return Gr},get envelope(){return $r},get start(){return Zr},get stop(){return Qr}}),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};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.25";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,x=null,N=!1;function T(){N&&(S={time:s(),event:4,data:{visible:x.visible,docWidth:x.docWidth,docHeight:x.docHeight,screenWidth:x.screenWidth,screenHeight:x.screenHeight,scrollX:x.scrollX,scrollY:x.scrollY,pointerX:x.pointerX,pointerY:x.pointerY,activityTime:x.activityTime}}),x=x||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0}}function M(t,e,n){switch(t){case 8:x.docWidth=e,x.docHeight=n;break;case 11:x.screenWidth=e,x.screenHeight=n;break;case 10:x.scrollX=e,x.scrollY=n;break;default:x.pointerX=e,x.pointerY=n}N=!0}function _(t){x.activityTime=t}function I(t,e){x.visible="visible"===e?1:0,x.visible||_(t),N=!0}function C(){N&&mr(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:T,start:function(){N=!1,T()},get state(){return S},stop:function(){T()},track:M,visibility:I}),j=null;function A(t,e){mi()&&t&&"string"==typeof t&&t.length<255&&(j=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},mr(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 W(t,e){null!==e&&(t in L||(L[t]=0),t in z||(z[t]=0),L[t]+=e,z[t]+=e)}function Y(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 q(t,e,n){return window.setTimeout(ni(t),e,n)}function X(t){return window.clearTimeout(t)}var P=0,U=0,B=null;function V(){B&&X(B),B=q(F,U),P=s()}function F(){var t=s();R={gap:t-P},mr(25),R.gap<3e5?B=q(F,U):pi&&(A("clarity","suspend"),ji(),["mousemove","touchstart"].forEach((function(t){return ri(document,t,yi)})),["resize","scroll","pageshow"].forEach((function(t){return ri(window,t,yi)})))}var J=Object.freeze({__proto__:null,get data(){return R},reset:V,start:function(){U=6e4,P=0},stop:function(){X(B),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(){mr(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){mi()&&o.lean&&(o.lean=!1,tt={key:t},Yr(),o.upgrade&&o.upgrade(t),mr(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(mi()&&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(){mr(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=[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 mt(){L={},z={},H(5),gt.forEach((function(t){return ni(t.start)()}))}function bt(){gt.slice().reverse().forEach((function(t){return ni(t.stop)()})),L={},z={}}function yt(){st(),C(),Mr(),mr(0),Z(),kr(),lr()}var wt,kt=[];function Et(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(wt={id:t,target:e,checksum:d(n,24)},kt.indexOf(wt.checksum)<0&&(kt.push(wt.checksum),Ga(41)))}var Ot="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 Nt(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&&Nt(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 Nt(t){if(!t)return!1;if(Ot.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 Tt=1,Mt=null,_t=[],It=[],Ct={},Dt=[],jt=[],At=[],Rt=[],Lt=[],zt=[],Ht=null,Wt=null,Yt=null,qt=null;function Xt(){Ut(),Bt(document,!0)}function Pt(){Ut()}function Ut(){Tt=1,_t=[],It=[],Ct={},Dt=[],jt=[],At="address,password,contact".split(","),Rt="password,secret,pass,social,ssn,code,hidden".split(","),Lt="radio,checkbox,range,button,reset,submit".split(","),zt="INPUT,SELECT,TEXTAREA".split(","),Mt=new Map,Ht=new WeakMap,Wt=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?jt.push(t):Dt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Je(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])}))})),jt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,0)}))})))}catch(t){$a(5,1,t?t.name:null)}}function Vt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Ht.get(t);return!n&&e&&(n=Tt++,Ht.set(t,n)),n||null}function Ft(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Wt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Jt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Wt.has(e)?Wt.get(e):null}function Kt(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 Gt(t){var e=t.parent&&t.parent in _t?_t[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=_t[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 Ct[e]=t.id}))}function Zt(t){var e=Qt(te(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function Qt(t){return Mt.has(t)?Mt.get(t):null}function $t(t){var e=Vt(t);return e in _t?_t[e]:null}function te(t){return t in Ct?Ct[t]:null}function ee(t){return Mt.has(Vt(t))}function ne(){for(var t=[],e=0,n=It;e<n.length;e++){var a=n[e];a in _t&&t.push(_t[a])}return It=[],t}function ae(t){Mt.delete(t);var e=t in _t?_t[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ae(a[n])}}function re(t){for(var e=null;null===e&&t.previousSibling;)e=Vt(t.previousSibling),t=t.previousSibling;return e}function ie(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=It.indexOf(t);r>=0&&1===e&&a?(It.splice(r,1),It.push(t)):-1===r&&n&&It.push(t)}var oe=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Vt(t,!0),u=e?Vt(e):null,c=re(t),s=null,l=Ke(t)?i:null,d=qt.has(t)?qt.get(t):null,f=o.content?1:3;u>=0&&_t[u]&&((s=_t[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&&(Je(t,n.attributes["data-clarity-region"]),l=i),Mt.set(i,t),_t[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 zt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=Rt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Lt.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)||Dt.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,At,r)}}(t,_t[i],s),Gt(_t[i]),"IMG"===(r=_t[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ie(i,a)},get:$t,getId:Vt,getNode:Qt,getValue:function(t){return t in _t?_t[t]:null},has:ee,hashText:Zt,iframe:Jt,lookup:te,parse:Bt,sameorigin:Ft,start:Xt,stop:Pt,update:function(t,e,n,a){var r=Vt(t),i=e?Vt(e):null,o=re(t),u=!1,c=!1;if(r in _t){var s=_t[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:_t[i].children.indexOf(o)+1;_t[i].children.splice(d,0,r),s.region=Ke(t)?r:_t[i].region}else!function(t,e){if(t in _t){var n=_t[t];n.metadata.active=!1,n.parent=null,ie(t,e),ae(t)}}(r,a);if(null!==l&&l>=0){var f=_t[l].children.indexOf(r);f>=0&&_t[l].children.splice(f,1)}c=!0}for(var h in n)Kt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Gt(s),ie(r,a,u,c)}},updates:ne}),ue=5e3,ce={},se=[],le=null,de=null,fe=null;function he(){ce={},se=[],le=null,de=null}function pe(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=se;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){se[1===e?"unshift":"push"]({task:t,resolve:n,id:zr()})})),null===le&&null===de&&ve(),[2,r]}))}))}function ve(){var t=se.shift();t&&(le=t,t.task().then((function(){t.id===zr()&&(t.resolve(),le=null,ve())})).catch((function(e){t.id===zr()&&(e&&$a(0,1,e.name,e.message,e.stack),le=null,ve())})))}function ge(t){var e=we(t);return e in ce?performance.now()-ce[e].start>ce[e].yield?0:1:2}function me(t){ce[we(t)]={start:performance.now(),calls:0,yield:30}}function be(t){var e=performance.now(),n=we(t),a=e-ce[n].start;W(t.cost,a),H(5),ce[n].calls>0&&W(4,a)}function ye(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=we(t))in ce?(be(t),n=ce[e],[4,ke()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=we(t);if(ce&&ce[e]){var n=ce[e].calls,a=ce[e].yield;me(t),ce[e].calls=n+1,ce[e].yield=a}}(t),a.label=2;case 2:return[2,e in ce?1:2]}}))}))}function we(t){return"".concat(t.id,".").concat(t.cost)}function ke(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return de?[4,de]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Oe(t,{timeout:ue})}))]}}))}))}var Ee,Oe=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(){Ee=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!==Ee&&c===Ee.width&&v===Ee.height||null===c||null===v||(Ee={width:c,height:v},He(8))}var Ne=[],Te=[],Me=null,_e=null,Ie=null,Ce=null,De="clarityAnimationId",je="clarityOperationCount",Ae=20;function Re(){Te=[]}function Le(t,e,n,a,r,i,o){Te.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),He(44)}function ze(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){if(mi()){var n=this.effect,a=Vt(this.effect.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!this[De]){this[De]=Pr(),this[je]=0;var r=n.getKeyframes(),i=n.getTiming();Le(s(),this[De],0,JSON.stringify(r),JSON.stringify(i),a)}if(this[je]++<Ae){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&&Le(s(),this[De],o)}}}return t.apply(this,arguments)})}function He(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,x,N,T,I,C,D,j,A,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=Ee,r.push(i.width),r.push(i.height),M(t,i.width,i.height),qa(r),[3,13];case 2:for(u=0,c=Xe;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),qa(r);return tn(),[3,13];case 3:for(d=0,f=Ne;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),qa(r);return[3,13];case 4:for(h=0,p=Ne;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),qa(r);z.label=5;case 5:for(v=0,g=Te;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),qa(r);return Re(),[3,13];case 6:if(2===ge(e))return[3,13];if(!((y=ne()).length>0))return[3,12];w=0,k=y,z.label=7;case 7:return w<k.length?(E=k[w],0!==(O=ge(e))?[3,9]:[4,ye(e)]):[3,11];case 8:O=z.sent(),z.label=9;case 9:if(2===O)return[3,11];for(S=E.data,x=E.metadata.active,N=E.metadata.suspend,T=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=x?["tag","attributes","value"]:["tag"];C<D.length;C++)if(S[j=D[C]])switch(j){case"tag":A=We(E),R=I?-1:1,r.push(E.id*R),E.parent&&x&&r.push(E.parent),E.previous&&x&&r.push(E.previous),r.push(N?"*M":S[j]),A&&2===A.length&&r.push("".concat("#").concat(Ye(A[0]),".").concat(Ye(A[1])));break;case"attributes":for(L in S[j])void 0!==S[j][L]&&r.push(qe(L,S[j][L],T));break;case"value":Et(E.metadata.fraud,E.id,S[j]),r.push(m(S[j],S.tag,T,I))}z.label=10;case 10:return w++,[3,7];case 11:6===t&&_(a),qa(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 We(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=Qt(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 Xe=[],Pe=null,Ue={},Be=[],Ve=!1,Fe=null;function Je(t,e){!1===Pe.has(t)&&(Pe.set(t,e),(Fe=null===Fe&&Ve?new IntersectionObserver(Ze,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Fe)&&t&&t.nodeType===Node.ELEMENT_NODE&&Fe.observe(t))}function Ke(t){return Pe&&Pe.has(t)}function Ge(){for(var t=[],e=0,n=Be;e<n.length;e++){var a=n[e],r=Vt(a.node);r?(a.state.data.id=r,Ue[r]=a.state.data,Xe.push(a.state)):t.push(a)}Be=t,Xe.length>0&&He(7)}function Ze(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(Pe.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Vt(r):null,s=c in Ue?Ue[c]:{id:c,name:Pe.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;Qe(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Fe&&Fe.unobserve(r)}}Xe.length>0&&He(7)}function Qe(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 Ue&&r||!(e.id in Ue))&&(Ue[e.id]=e,Xe.push($e(e))):Be.push({node:t,state:$e(e)})}function $e(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function tn(){Xe=[]}var en=[];function nn(t){var e=Sa(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):"";en.push({time:s(t),event:42,data:{target:Sa(t),type:e.type,value:n,checksum:a}}),pe(Na.bind(this,42))}}function an(){en=[]}function rn(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Jt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var on=["input","textarea","radio","button","canvas"],un=[];function cn(t){ri(t,"click",sn.bind(this,9,t),!0)}function sn(t,e,n){var a=Jt(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=rn(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=Sa(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&&(un.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:dn(c),context:fn(l),text:ln(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),pe(Na.bind(this,t)))}function ln(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 dn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(on.indexOf(e)>=0)return 0}return 1}function fn(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 hn(){un=[]}var pn=[];function vn(t,e){pn.push({time:s(e),event:38,data:{target:Sa(e),action:t}}),pe(Na.bind(this,38))}function gn(){pn=[]}var mn=null,bn=[];function yn(t){var e=Sa(t),n=$t(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};bn.length>0&&bn[bn.length-1].data.target===r.target&&bn.pop(),bn.push({time:s(t),event:27,data:r}),X(mn),mn=q(wn,1e3,27)}}function wn(t){pe(Na.bind(this,t))}function kn(){bn=[]}var En,On=[],Sn=null;function xn(t,e,n){var a=Jt(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=rn(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&Tn({time:s(n),event:t,data:{target:Sa(n),x:i,y:o}})}function Nn(t,e,n){var a=Jt(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&&Tn({time:o,event:t,data:{target:Sa(n),x:l,y:d}})}}function Tn(t){switch(t.event){case 12:case 15:case 19:var e=On.length,n=e>1?On[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)&&On.pop(),On.push(t),X(Sn),Sn=q(Mn,500,t.event);break;default:On.push(t),Mn(t.event)}}function Mn(t){pe(Na.bind(this,t))}function _n(){On=[]}function In(){var t=document.documentElement;En={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},Na(11)}function Cn(){En=null}var Dn=[],jn=null;function An(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?Sa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Jt(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=Dn.length,l=c>1?Dn[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)&&Dn.pop(),Dn.push(u),X(jn),jn=q(Rn,500,10)}}function Rn(t){pe(Na.bind(this,t))}var Ln=null,zn=null,Hn=null;function Wn(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=Ln.start?Ln.start:null;null!==zn&&null!==Ln.start&&n!==e.anchorNode&&(X(Hn),Yn(21)),Ln={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},zn=e,X(Hn),Hn=q(Yn,500,21)}}function Yn(t){pe(Na.bind(this,t))}function qn(){zn=null,Ln={start:0,startOffset:0,end:0,endOffset:0}}var Xn,Pn,Un=[];function Bn(t){Un.push({time:s(t),event:39,data:{target:Sa(t)}}),pe(Na.bind(this,39))}function Vn(){Un=[]}function Fn(t){Xn={name:t.type},Na(26,s(t)),ji()}function Jn(){Xn=null}function Kn(t){void 0===t&&(t=null),Pn={visible:"visibilityState"in document?document.visibilityState:"default"},Na(28,s(t))}function Gn(){Pn=null}function Zn(t){!function(t){var e=Jt(t);ri(e?e.contentWindow:t===document?window:t,"scroll",An,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(cn(t),function(t){ri(t,"cut",vn.bind(this,0),!0),ri(t,"copy",vn.bind(this,1),!0),ri(t,"paste",vn.bind(this,2),!0)}(t),function(t){ri(t,"mousedown",xn.bind(this,13,t),!0),ri(t,"mouseup",xn.bind(this,14,t),!0),ri(t,"mousemove",xn.bind(this,12,t),!0),ri(t,"wheel",xn.bind(this,15,t),!0),ri(t,"dblclick",xn.bind(this,16,t),!0),ri(t,"touchstart",Nn.bind(this,17,t),!0),ri(t,"touchend",Nn.bind(this,18,t),!0),ri(t,"touchmove",Nn.bind(this,19,t),!0),ri(t,"touchcancel",Nn.bind(this,20,t),!0)}(t),function(t){ri(t,"input",yn,!0)}(t),function(t){ri(t,"selectstart",Wn.bind(this,t),!0),ri(t,"selectionchange",Wn.bind(this,t),!0)}(t),function(t){ri(t,"change",nn,!0)}(t),function(t){ri(t,"submit",Bn,!0)}(t))}var Qn=Object.freeze({__proto__:null,observe:Zn,start:function(){Ta=[],_a(),hn(),gn(),_n(),kn(),ri(window,"resize",In),In(),ri(document,"visibilitychange",Kn),Kn(),Dn=[],An(),qn(),an(),Vn(),ri(window,"pagehide",Fn)},stop:function(){Ta=[],_a(),hn(),gn(),X(Sn),On.length>0&&Mn(On[On.length-1].event),X(mn),kn(),Cn(),Gn(),X(jn),Dn=[],qn(),X(Hn),an(),Vn(),Jn()}}),$n=/[^0-9\.]/g;function ta(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":Tr(5,t[a]),Tr(8,t.creator),Tr(18,t.headline);break;case"product":Tr(5,t[a]),Tr(10,t.name),Tr(12,t.sku),t.brand&&Tr(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(Y(11,ea(t.ratingValue,100)),Y(18,ea(t.bestRating)),Y(19,ea(t.worstRating))),Y(12,ea(t.ratingCount)),Y(17,ea(t.reviewCount));break;case"person":Tr(8,t.name);break;case"offer":Tr(7,t.availability),Tr(14,t.itemCondition),Tr(13,t.priceCurrency),Tr(12,t.sku),Y(13,ea(t.price));break;case"brand":Tr(6,t.name)}null!==r&&"object"==typeof r&&ta(r)}}function ea(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($n,""))*e)}return null}var na=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last"],aa=/[\r\n]+/g;function ra(t,e){var n,a=null;if(2===e&&!1===ee(t))return a;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var r=!1===ee(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?Jt(t.parentNode):i;var u=t,c={tag:(o?"iframe:":"")+"*D",attributes:{name:u.name,publicId:u.publicId,systemId:u.systemId}};oe[r](t,i,c,e);break;case Node.DOCUMENT_NODE:t===document&&Bt(document),ia(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var s=t;if(s.host)if(Bt(s),"function"===typeof s.constructor&&s.constructor.toString().indexOf("[native code]")>=0){ia(s);var l={tag:"*S",attributes:{style:""}};oe[r](t,s.host,l,e)}else oe[r](t,s.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(i=i||t.parentNode,"update"===r||i&&ee(i)&&"STYLE"!==i.tagName&&"NOSCRIPT"!==i.tagName){var d={tag:"*T",value:t.nodeValue};oe[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;na.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(f);i=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null;var v=t.assignedSlot;switch(v&&(i=v),"http://www.w3.org/2000/svg"===f.namespaceURI&&(h="svg:"+h),h){case"HTML":i=o&&i?Jt(i):null;var g={tag:(o?"iframe:":"")+h,attributes:p};oe[r](t,i,g,e);break;case"SCRIPT":if("type"in p&&"application/ld+json"===p.type)try{ta(JSON.parse(f.text.replace(aa,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:h,attributes:{},value:""};oe[r](t,i,m,e);break;case"META":var b="property"in p?"property":"name"in p?"name":null;if(b&&"content"in p){var y=p.content;switch(p[b]){case"og:title":Tr(20,y);break;case"og:type":Tr(19,y);break;case"generator":Tr(21,y)}}break;case"HEAD":var w={tag:h,attributes:p},k=o&&(null===(n=t.ownerDocument)||void 0===n?void 0:n.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,oe[r](t,i,w,e);break;case"BASE":var E=$t(t.parentElement);if(E){var O=document.createElement("a");O.href=p.href,E.data.attributes["*B"]=O.protocol+"//"+O.host+O.pathname}break;case"STYLE":var S={tag:h,attributes:p,value:oa(f)};oe[r](t,i,S,e);break;case"IFRAME":var x=t,N={tag:h,attributes:p};Ft(x)&&(!function(t){!1===ee(t)&&ri(t,"load",Oa.bind(this,t,"childList"),!0)}(x),N.attributes["*O"]="true",x.contentDocument&&x.contentWindow&&"loading"!==x.contentDocument.readyState&&(a=x.contentDocument)),oe[r](t,i,N,e);break;case"LINK":if(Dr&&"stylesheet"===p.rel){for(var T in Object.keys(document.styleSheets)){var M=document.styleSheets[T];if(M.ownerNode==f){var _={tag:"STYLE",attributes:p,value:ua(M)};oe[r](t,i,_,e);break}}break}var I={tag:h,attributes:p};oe[r](t,i,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in p&&p.src.startsWith("data:")&&delete p.src;var C={tag:h,attributes:p};oe[r](t,i,C,e);break;default:var D={tag:h,attributes:p};f.shadowRoot&&(a=f.shadowRoot),oe[r](t,i,D,e)}}return a}function ia(t){ee(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](ni(ba)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),sa.push(n))}catch(t){$a(2,0,t?t.name:null)}}(t),Zn(t))}function oa(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=ua(t.sheet)),e}function ua(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if($a(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 ca(t,e,n){return at(this,void 0,void 0,(function(){var a,r,i,o,u,c,s,l,d;return rt(this,(function(f){switch(f.label){case 0:i=0,o=[a=[t],r=[]],f.label=1;case 1:if(!(i<o.length))return[3,6];u=o[i],f.label=2;case 2:if(!(u.length>0))return[3,5];for(c=u.shift(),s=c.firstChild;s;)u==a&&s.assignedSlot?r.push(s):u.push(s),s=s.nextSibling;return 0!==(l=ge(e))?[3,4]:[4,ye(e)];case 3:l=f.sent(),f.label=4;case 4:return 2===l?[3,5]:((d=ra(c,n))&&u.push(d),[3,2]);case 5:return i++,[3,1];case 6:return[2]}}))}))}var sa=[],la=[],da=null,fa=null,ha=null,pa=[],va=null,ga=null,ma={};function ba(t){var e=s();G(6,e),la.push({time:e,mutations:t}),pe(ya,1).then((function(){q(xe),ni(Ge)()}))}function ya(){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:me(t={id:zr(),cost:3}),d.label=1;case 1:if(!(la.length>0))return[3,8];e=la.shift(),n=s(),a=0,r=e.mutations,d.label=2;case 2:return a<r.length?(i=r[a],0!==(o=ge(t))?[3,4]:[4,ye(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?$t(t.target.parentNode):null;if(a&&"HTML"!==a.data.tag){var r=s()>ga,i=$t(t.target),o=i&&i.selector?i.selector.join():t.target.nodeName,u=[a.selector?a.selector.join():"",o,t.attributeName,wa(t.addedNodes),wa(t.removedNodes)].join();ma[u]=u in ma?ma[u]:[0,n];var c=ma[u];if(!1===r&&c[0]>=10&&ka(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&&Bt(u.ownerDocument),c&&u&&u.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&u.host&&Bt(u),c){case"attributes":ra(u,3);break;case"characterData":ra(u,4);break;case"childList":ka(i.addedNodes,1,t),ka(i.removedNodes,2,t);break;case"suspend":(l=$t(u))&&(l.metadata.suspend=!0)}d.label=5;case 5:return a++,[3,2];case 6:return[4,He(6,t,e.time)];case 7:return d.sent(),[3,1];case 8:return be(t),[2]}}))}))}function wa(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function ka(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]:(ca(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=ge(n))?[3,4]:[4,ye(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ra(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Ea(t){return pa.indexOf(t)<0&&pa.push(t),va&&X(va),va=q((function(){!function(){for(var t=0,e=pa;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ee(n))continue;Oa(n,a?"childList":"characterData")}}pa=[]}()}),33),t}function Oa(t,e){ni(ba)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function Sa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return ga=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function xa(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=$t(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=Qt(t),a=t in Ue?Ue[t]:{id:t,visibility:0,interaction:16,name:Pe.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}Qe(n,a,r,a.visibility)}(r.region,e),i.fraud&&Et(i.fraud,r.id,n||r.data.value)}}return a}function Na(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,x,N,T,_,C,D,j,A,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=On;r<i.length;r++)L=i[r],(o=xa(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),qa(a),M(L.event,L.data.x,L.data.y));_n();break;case 9:for(u=0,c=un;u<c.length;u++)L=c[u],l=xa(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),qa(a),Ia(L.time,L.event,d,L.data.x,L.data.y,L.data.reaction,L.data.context);hn();break;case 38:for(f=0,h=pn;f<h.length;f++)L=h[f],a=[L.time,L.event],(j=xa(L.data.target,L.event)).id>0&&(a.push(j.id),a.push(L.data.action),qa(a));gn();break;case 11:p=En,a.push(p.width),a.push(p.height),M(t,p.width,p.height),Cn(),qa(a);break;case 26:v=Xn,a.push(v.name),Jn(),qa(a);break;case 27:for(g=0,y=bn;g<y.length;g++)L=y[g],w=xa(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)),qa(a);kn();break;case 21:(k=Ln)&&(E=xa(k.start,t),O=xa(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),qn(),qa(a));break;case 10:for(S=0,x=Dn;S<x.length;S++)L=x[S],(N=xa(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(N.id),a.push(L.data.x),a.push(L.data.y),qa(a),M(L.event,L.data.x,L.data.y));Dn=[];break;case 42:for(T=0,_=en;T<_.length;T++)L=_[T],a=[L.time,L.event],(j=xa(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(j.id),a.push(L.data.type),a.push(m(L.data.value,"change",j.privacy)),a.push(m(L.data.checksum,"checksum",j.privacy)),qa(a));an();break;case 39:for(C=0,D=Un;C<D.length;C++)L=D[C],a=[L.time,L.event],(j=xa(L.data.target,L.event)).id>0&&(a.push(j.id),qa(a));Vn();break;case 22:for(A=0,R=Ma;A<R.length;A++)L=R[A],(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),qa(a,!1);_a();break;case 28:z=Pn,a.push(z.visible),qa(a),I(n,z.visible),Gn()}return[2]}))}))}var Ta=[],Ma=[];function _a(){Ma=[]}function Ia(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),Ta.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),M(e,a,r)}var Ca,Da,ja,Aa,Ra,La=0,za=0,Ha=null,Wa=0;function Ya(){Aa=!0,La=0,za=0,Wa=0,Ca=[],Da=[],ja={},Ra=null}function qa(t,e){if(void 0===e&&(e=!0),Aa){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:La+=r.length;case 37:case 6:case 43:case 45:case 46:za+=r.length,Ca.push(r);break;default:Da.push(r)}H(25);var i=function(){var t=!1===o.lean&&La>0?100:Gr.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Wa>2*i&&(X(Ha),Ha=null),e&&null===Ha&&(25!==a&&V(),Ha=q(Pa,i),Wa=n,yr(za))}}function Xa(){X(Ha),Pa(!0),La=0,za=0,Wa=0,Ca=[],Da=[],ja={},Ra=null,Aa=!1}function Pa(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 Ha=null,(e=!1===o.lean&&za>0&&(za<1048576||Gr.sequence>0))&&Y(1,1),Ge(),function(){var t=[];Ma=[];for(var e=Gr.start+Gr.duration,n=Math.max(e-2e3,0),a=0,r=Ta;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ma.push(i),t.push(i))}Ta=t,Na(22)}(),yt(),n=!0===t,a=JSON.stringify($r(n)),r="[".concat(Da.join(),"]"),i=e?"[".concat(Ca.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),Ua(u,c,Gr.sequence,n),Da=[],e&&(Ca=[],za=0,La=0),[2]}}))}))}function Ua(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))&&Va(n)}catch(t){}if(!1===i){n in ja?ja[n].attempts++:ja[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){ei(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){ni(Ba)(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),Va(n)}}function Ba(t,e){var n=ja[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?wr(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Ua(n.data,null,e)):(Ra={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&mr(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":wr(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&cr(i[1])}}}(t.responseText),0===t.status&&(Ua(n.data,null,e,!0),wr(3)),t.status>=200&&t.status<=208&&Va(e),delete ja[e]))}function Va(t){1===t&&Yr()}var Fa,Ja={};function Ka(t){var e=t.error||t;return e.message in Ja||(Ja[e.message]=0),Ja[e.message]++>=5||e&&e.message&&(Fa={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Ga(31)),!0}function Ga(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(Fa.message),e.push(Fa.line),e.push(Fa.column),e.push(Fa.stack),e.push(b(Fa.source)),qa(e);break;case 33:Za&&(e.push(Za.code),e.push(Za.name),e.push(Za.message),e.push(Za.stack),e.push(Za.severity),qa(e,!1));break;case 41:wt&&(e.push(wt.id),e.push(wt.target),e.push(wt.checksum),qa(e,!1))}return[2]}))}))}var Za,Qa={};function $a(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 Qa&&Qa[t].indexOf(i)>=0||(Za={code:t,name:n,message:a,stack:r,severity:e},t in Qa?Qa[t].push(i):Qa[t]=[i],Ga(33))}var tr,er={},nr=new Set,ar={},rr={},ir={},or={};function ur(){dr()}function cr(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 ar[a]={},rr[a]={},ir[a]={},or[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);ar[a][u]=pr(l);break;case 2:rr[a][u]=c;break;case 4:var d=c.substring(1,c.length);ir[a][u]=d}}}catch(t){$a(8,1,t?t.name:null)}}function sr(t){return JSON.parse(JSON.stringify(t))}function lr(){try{for(var t in ar){var e=parseInt(t);if(""==or[e]||document.querySelector(or[e])){var n=ar[e];for(var a in n){var r=parseInt(a),i=(h=vr(sr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&fr(e,r,i)}var o=rr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)fr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=ir[e];for(var d in l){var f=parseInt(d);fr(e,f,Zt(l[f]).trim().substring(0,1e4))}}}nr.size>0&&mr(40)}catch(t){$a(5,1,t?t.name:null)}var h}function dr(){nr.clear()}function fr(t,e,n){var a,r=!1;t in er||(er[t]={},r=!0),a=ir[t],0==Object.keys(a).length||e in er[t]&&er[t][e]==n||(r=!0),er[t][e]=n,r&&nr.add(t)}function hr(){dr()}function pr(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 vr(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&&gr(r,a.condition))n=vr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(gr(c,a.condition)){var s=vr(t,c);s&&i.push(s)}}n=i}return n}return null}function gr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function mr(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),qa(e,!1)),T();break;case 25:e.push(R.gap),qa(e);break;case 35:e.push(tr.check),qa(e,!1);break;case 3:e.push(tt.key),qa(e);break;case 2:e.push(Ra.sequence),e.push(Ra.attempts),e.push(Ra.status),qa(e,!1);break;case 24:j.key&&e.push(j.key),e.push(j.value),qa(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(),qa(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={},qa(e,!1)}break;case 1:var h=Object.keys(Sr);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(Sr[g])}_r(),qa(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(),qa(e,!1)}break;case 40:nr.forEach((function(t){e.push(t);var n=[];for(var a in er[t]){var r=parseInt(a,10);n.push(r),n.push(er[t][a])}e.push(n)})),dr(),qa(e,!1)}}function br(){tr={check:0}}function yr(t){if(0===tr.check){var e=tr.check;e=Gr.sequence>=128?1:e,e=Gr.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==tr.check&&wr(e)}}function wr(t){tr.check=t,Wr(),ji()}function kr(){0!==tr.check&&mr(35)}function Er(){tr=null}var Or=null,Sr=null;function xr(){Or={},Sr={}}function Nr(){Or={},Sr={}}function Tr(t,e){e&&(e="".concat(e),t in Or||(Or[t]=[]),Or[t].indexOf(e)<0&&(Or[t].push(e),t in Sr||(Sr[t]=[]),Sr[t].push(e),Or[t].length>128&&wr(5)))}function Mr(){mr(1)}function _r(){Sr={}}var Ir=null,Cr=[],Dr=0,jr=null;function Ar(){jr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Dr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:Pr(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=Vr("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-Ur(n[1])<18e5&&(t.session=n[0],t.count=Ur(n[2])+1,t.upgrade=Ur(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=Br(),i=o.projectId||d(location.host);Ir={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,Tr(0,t),Tr(3,e),Tr(1,b(location.href,!!Dr)),Tr(2,document.referrer),Tr(15,function(){var t=Pr();if(o.track&&qr(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),Tr(16,document.documentElement.lang),Tr(17,document.dir),Tr(26,"".concat(window.devicePixelRatio)),Tr(28,r.dob.toString()),Tr(29,r.version.toString()),Y(0,a.ts),Y(1,0),Y(35,Dr),navigator&&(Tr(9,navigator.language),Y(33,navigator.hardwareConcurrency),Y(32,navigator.maxTouchPoints),Y(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;Tr(22,t.platform),Tr(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){Tr(24,t.name+"~"+t.version)})),Tr(25,t.model),Y(27,t.mobile?1:0)})):Tr(22,navigator.platform)),screen&&(Y(14,Math.round(screen.width)),Y(15,Math.round(screen.height)),Y(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=Vr(s);l&&ot(s,l)}Xr(r)}function Rr(){jr=null,Ir=null}function Lr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Ir&&(n||!1===e)?t(Ir,!o.lean):Cr.push({callback:t,wait:e})}function zr(){return Ir?[Ir.userId,Ir.sessionId,Ir.pageNum].join("."):""}function Hr(t){if(void 0===t&&(t=!0),!t)return Jr("_clsk","",0),Jr("_clck","",0),ji(),void window.setTimeout(Di,250);mi()&&(o.track=!0,Xr(Br(),1))}function Wr(){Jr("_clsk","",0)}function Yr(){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;!function(t){Cr.length>0&&Cr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Ir,!o.lean)}))}(n),Jr("_clsk",[Ir.sessionId,t,Ir.pageNum,n,e].join("|"),1)}function qr(t,e){try{return!!t[e]}catch(t){return!1}}function Xr(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)&&Jr("_clck",[Ir.userId,2,n.toString(36),e,a].join("|"),365)}function Pr(){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 Ur(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Br(){var t={id:Pr(),version:0,expiry:null,consent:0,dob:0},e=Vr("_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=Ur(n[1])),n.length>2&&(t.expiry=Ur(n[2],36)),n.length>3&&1===Ur(n[3])&&(t.consent=1),n.length>4&&Ur(n[1])>1&&(t.dob=Ur(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function Vr(t){var e;if(qr(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=Fr(r[1]),o=i[0],u=i[1];o;)o=(e=Fr(u))[0],u=e[1];return u}}}return null}function Fr(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Jr(t,e,n){if(o.track&&(navigator&&navigator.cookieEnabled||qr(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===jr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(jr=".".concat(c[s]).concat(jr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(jr),Vr(t)===e))return;jr=""}}catch(t){jr=""}document.cookie=jr?"".concat(u).concat(";").concat("domain=").concat(jr):u}}var Kr,Gr=null;function Zr(){var t=Ir;Gr={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 Qr(){Gr=null}function $r(t){return Gr.start=Gr.start+Gr.duration,Gr.duration=s()-Gr.start,Gr.sequence++,Gr.upload=t&&"sendBeacon"in navigator?1:0,Gr.end=t?1:0,[Gr.version,Gr.sequence,Gr.start,Gr.duration,Gr.projectId,Gr.userId,Gr.sessionId,Gr.pageNum,Gr.upload,Gr.end]}function ti(){Kr=[]}function ei(t){if(Kr&&-1===Kr.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:Gr.version,p:Gr.projectId,u:Gr.userId,s:Gr.sessionId,n:Gr.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)),Kr.push(t.message)}}return t}function ni(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw ei(t)}var n=performance.now()-e;W(4,n),n>30&&(H(7),Y(6,n))}}var ai=[];function ri(t,e,n,a){void 0===a&&(a=!1),n=ni(n);try{t[u("addEventListener")](e,n,a),ai.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function ii(){for(var t=0,e=ai;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}ai=[]}var oi=null,ui=null,ci=null,si=0;function li(){return!(si++>20)||($a(4,0),!1)}function di(){si=0,ci!==hi()&&(ji(),window.setTimeout(fi,250))}function fi(){Di(),Y(29,1)}function hi(){return location.href?location.href.replace(location.hash,""):location.href}var pi=!1;function vi(){pi=!0,c=performance.now(),he(),ii(),ti(),ci=hi(),si=0,ri(window,"popstate",di),null===oi&&(oi=history.pushState,history.pushState=function(){oi.apply(this,arguments),mi()&&li()&&di()}),null===ui&&(ui=history.replaceState,history.replaceState=function(){ui.apply(this,arguments),mi()&&li()&&di()})}function gi(){ci=null,si=0,ti(),ii(),he(),c=0,pi=!1}function mi(){return pi}function bi(t){if(null===t||pi)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function yi(){Di(),A("clarity","restart")}var wi=Object.freeze({__proto__:null,start:function(){!function(){kt=[],Y(26,navigator.webdriver?1:0);try{Y(31,window.top==window.self?1:2)}catch(t){Y(31,0)}}(),ri(window,"error",Ka),Ja={},Qa={}},stop:function(){Qa={}}});function ki(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),me(e={id:zr(),cost:3}),[4,ca(document,e,0)];case 1:return n.sent(),[4,He(5,e,t)];case 2:return n.sent(),be(e),[2]}}))}))}var Ei=Object.freeze({__proto__:null,hashText:Zt,start:function(){Se(),xe(),tn(),Fe=null,Pe=new WeakMap,Ue={},Be=[],Ve=!!window.IntersectionObserver,Xt(),function(){if(sa=[],pa=[],va=null,ga=0,ma={},null===da&&(da=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return mi()&&Ea(this.ownerNode),da.apply(this,arguments)}),null===fa&&(fa=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return mi()&&Ea(this.ownerNode),fa.apply(this,arguments)}),null===ha){ha=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return mi()?Ea(ha.apply(this,arguments)):ha.apply(this,arguments)}}catch(t){ha=null}}}(),pe(ki,1).then((function(){ni(xe)(),ni(Ge)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Re(),ze(Me,"play"),ze(_e,"pause"),ze(Ie,"cancel"),ze(Ce,"finish"))},stop:function(){tn(),Pe=null,Ue={},Be=[],Fe&&(Fe.disconnect(),Fe=null),Ve=!1,Pt(),function(){for(var t=0,e=sa;t<e.length;t++){var n=e[t];n&&n.disconnect()}sa=[],ma={},la=[],pa=[],ga=0,va=null}(),Se(),Re()}});var Oi,Si=null;function xi(){Si=null}function Ni(t){Si={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(Si.fetchStart),n.push(Si.connectStart),n.push(Si.connectEnd),n.push(Si.requestStart),n.push(Si.responseStart),n.push(Si.responseEnd),n.push(Si.domInteractive),n.push(Si.domComplete),n.push(Si.loadEventStart),n.push(Si.loadEventEnd),n.push(Si.redirectCount),n.push(Si.size),n.push(Si.type),n.push(Si.protocol),n.push(Si.encodedSize),n.push(Si.decodedSize),xi(),qa(n)),[2]}))}))}(29)}var Ti=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Mi(){try{Oi&&Oi.disconnect(),Oi=new PerformanceObserver(ni(_i));for(var t=0,e=Ti;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&W(9,0),Oi.observe({type:n,buffered:!0}))}}catch(t){$a(3,1)}}function _i(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":Ni(a);break;case"resource":var r=a.name;Tr(4,Ii(r)),r!==o.upload&&r!==o.fallback||Y(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&Y(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&W(9,1e3*a.value);break;case"largest-contentful-paint":e&&Y(8,a.startTime)}}}(t.getEntries())}function Ii(t){var e=document.createElement("a");return e.href=t,e.host}var Ci=[wi,Ei,Qn,Object.freeze({__proto__:null,start:function(){xi(),function(){navigator&&"connection"in navigator&&Tr(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?ri(window,"load",q.bind(this,Mi,0)):Mi():$a(3,0)}()},stop:function(){Oi&&Oi.disconnect(),Oi=null,xi()}})];function Di(t){void 0===t&&(t=null),function(){try{return!1===pi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap}catch(t){return!1}}()&&(bi(t),vi(),mt(),Ci.forEach((function(t){return ni(t.start)()})),null===t&&zi())}function ji(){mi()&&(Ci.slice().reverse().forEach((function(t){return ni(t.stop)()})),bt(),gi(),void 0!==Ri&&(Ri[Li]=function(){(Ri[Li].q=Ri[Li].q||[]).push(arguments),"start"===arguments[0]&&Ri[Li].q.unshift(Ri[Li].q.pop())&&zi()}))}var Ai=Object.freeze({__proto__:null,consent:Hr,event:A,hashText:Zt,identify:ut,metadata:Lr,pause:function(){mi()&&(A("clarity","pause"),null===de&&(de=new Promise((function(t){fe=t}))))},resume:function(){mi()&&(de&&(fe(),de=null,null===le&&ve()),A("clarity","resume"))},set:ot,start:Di,stop:ji,upgrade:et,version:l}),Ri=window,Li="clarity";function zi(){if(void 0!==Ri){if(Ri[Li]&&Ri[Li].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Ri[Li]&&Ri[Li].q||[];for(Ri[Li]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return Ai[t].apply(Ai,e)},Ri[Li].v=l;t.length>0;)Ri[Li].apply(Ri,t.shift())}}zi()}();
|
package/build/clarity.module.js
CHANGED
|
@@ -152,7 +152,7 @@ function stop$E() {
|
|
|
152
152
|
startTime = 0;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
var version$1 = "0.7.
|
|
155
|
+
var version$1 = "0.7.25";
|
|
156
156
|
|
|
157
157
|
// tslint:disable: no-bitwise
|
|
158
158
|
function hash (input, precision) {
|
|
@@ -2753,6 +2753,12 @@ function processNode (node, source) {
|
|
|
2753
2753
|
// In some cases, external libraries like vue-fragment, can modify parentNode property to not be in sync with the DOM
|
|
2754
2754
|
// For correctness, we first look at parentElement and if it not present then fall back to using parentNode
|
|
2755
2755
|
parent = node.parentElement ? node.parentElement : (node.parentNode ? node.parentNode : null);
|
|
2756
|
+
// For HTML slots, the parentElement doesn't actually match what is rendered. If we have an assignedSlot, we use that
|
|
2757
|
+
// as the parent to ensure our visualizations match the browser behavior for end users.
|
|
2758
|
+
var slottedParent = node.assignedSlot;
|
|
2759
|
+
if (slottedParent) {
|
|
2760
|
+
parent = slottedParent;
|
|
2761
|
+
}
|
|
2756
2762
|
// If we encounter a node that is part of SVG namespace, prefix the tag with SVG_PREFIX
|
|
2757
2763
|
if (element.namespaceURI === "http://www.w3.org/2000/svg" /* Constant.SvgNamespace */) {
|
|
2758
2764
|
tag = "svg:" /* Constant.SvgPrefix */ + tag;
|
|
@@ -2847,6 +2853,16 @@ function processNode (node, source) {
|
|
|
2847
2853
|
var linkData = { tag: tag, attributes: attributes };
|
|
2848
2854
|
dom[call](node, parent, linkData, source);
|
|
2849
2855
|
break;
|
|
2856
|
+
case "VIDEO":
|
|
2857
|
+
case "AUDIO":
|
|
2858
|
+
case "SOURCE":
|
|
2859
|
+
// Ignoring any base64 src attribute for media elements to prevent big unused tokens to be sent and shock the network
|
|
2860
|
+
if ("src" /* Constant.Src */ in attributes && attributes["src" /* Constant.Src */].startsWith("data:")) {
|
|
2861
|
+
delete attributes["src" /* Constant.Src */];
|
|
2862
|
+
}
|
|
2863
|
+
var mediaTag = { tag: tag, attributes: attributes };
|
|
2864
|
+
dom[call](node, parent, mediaTag, source);
|
|
2865
|
+
break;
|
|
2850
2866
|
default:
|
|
2851
2867
|
var data = { tag: tag, attributes: attributes };
|
|
2852
2868
|
if (element.shadowRoot) {
|
|
@@ -2916,36 +2932,60 @@ function getAttributes(element) {
|
|
|
2916
2932
|
|
|
2917
2933
|
function traverse (root, timer, source) {
|
|
2918
2934
|
return __awaiter(this, void 0, void 0, function () {
|
|
2919
|
-
var
|
|
2920
|
-
return __generator(this, function (
|
|
2921
|
-
switch (
|
|
2935
|
+
var primaryQueue, slottedNodesQueue, _i, _a, currentQueue, entry, next, slottedParent, state, subnode;
|
|
2936
|
+
return __generator(this, function (_b) {
|
|
2937
|
+
switch (_b.label) {
|
|
2922
2938
|
case 0:
|
|
2923
|
-
|
|
2924
|
-
|
|
2939
|
+
primaryQueue = [root];
|
|
2940
|
+
slottedNodesQueue = [];
|
|
2941
|
+
_i = 0, _a = [primaryQueue, slottedNodesQueue];
|
|
2942
|
+
_b.label = 1;
|
|
2925
2943
|
case 1:
|
|
2926
|
-
if (!(
|
|
2927
|
-
|
|
2944
|
+
if (!(_i < _a.length)) return [3 /*break*/, 6];
|
|
2945
|
+
currentQueue = _a[_i];
|
|
2946
|
+
_b.label = 2;
|
|
2947
|
+
case 2:
|
|
2948
|
+
if (!(currentQueue.length > 0)) return [3 /*break*/, 5];
|
|
2949
|
+
entry = currentQueue.shift();
|
|
2928
2950
|
next = entry.firstChild;
|
|
2929
2951
|
while (next) {
|
|
2930
|
-
|
|
2952
|
+
// During traversal there is not a guarantee that the assigned child here is being found after the slot to which it is placed
|
|
2953
|
+
// as the typical parent/child methods don't reflect what is rendered. We need to make sure all other mutations and
|
|
2954
|
+
// discoveries are processed before we process a slotted element. Once we are processing the slottedNodesQueue we can
|
|
2955
|
+
// skip this effort and go directly to our breadth first traversal.
|
|
2956
|
+
if (currentQueue == primaryQueue) {
|
|
2957
|
+
slottedParent = next.assignedSlot;
|
|
2958
|
+
if (slottedParent) {
|
|
2959
|
+
slottedNodesQueue.push(next);
|
|
2960
|
+
}
|
|
2961
|
+
else {
|
|
2962
|
+
currentQueue.push(next);
|
|
2963
|
+
}
|
|
2964
|
+
}
|
|
2965
|
+
else {
|
|
2966
|
+
currentQueue.push(next);
|
|
2967
|
+
}
|
|
2931
2968
|
next = next.nextSibling;
|
|
2932
2969
|
}
|
|
2933
2970
|
state = state$b(timer);
|
|
2934
|
-
if (!(state === 0 /* Task.Wait */)) return [3 /*break*/,
|
|
2971
|
+
if (!(state === 0 /* Task.Wait */)) return [3 /*break*/, 4];
|
|
2935
2972
|
return [4 /*yield*/, suspend$1(timer)];
|
|
2936
|
-
case 2:
|
|
2937
|
-
state = _a.sent();
|
|
2938
|
-
_a.label = 3;
|
|
2939
2973
|
case 3:
|
|
2974
|
+
state = _b.sent();
|
|
2975
|
+
_b.label = 4;
|
|
2976
|
+
case 4:
|
|
2940
2977
|
if (state === 2 /* Task.Stop */) {
|
|
2941
|
-
return [3 /*break*/,
|
|
2978
|
+
return [3 /*break*/, 5];
|
|
2942
2979
|
}
|
|
2943
2980
|
subnode = processNode(entry, source);
|
|
2944
2981
|
if (subnode) {
|
|
2945
|
-
|
|
2982
|
+
currentQueue.push(subnode);
|
|
2946
2983
|
}
|
|
2984
|
+
return [3 /*break*/, 2];
|
|
2985
|
+
case 5:
|
|
2986
|
+
_i++;
|
|
2947
2987
|
return [3 /*break*/, 1];
|
|
2948
|
-
case
|
|
2988
|
+
case 6: return [2 /*return*/];
|
|
2949
2989
|
}
|
|
2950
2990
|
});
|
|
2951
2991
|
});
|