clarity-js 0.7.40 → 0.7.42

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.js CHANGED
@@ -163,7 +163,7 @@ function stop$F() {
163
163
  startTime = 0;
164
164
  }
165
165
 
166
- var version$1 = "0.7.40";
166
+ var version$1 = "0.7.42";
167
167
 
168
168
  // tslint:disable: no-bitwise
169
169
  function hash (input, precision) {
@@ -1237,7 +1237,10 @@ function privacy(node, value, parent) {
1237
1237
  case maskTags.indexOf(tag) >= 0:
1238
1238
  var type = attributes["type" /* Constant.Type */];
1239
1239
  var meta_1 = "" /* Constant.Empty */;
1240
- Object.keys(attributes).forEach(function (x) { return meta_1 += attributes[x].toLowerCase(); });
1240
+ var excludedPrivacyAttributes_1 = ["class" /* Constant.Class */, "style" /* Constant.Style */];
1241
+ Object.keys(attributes)
1242
+ .filter(function (x) { return !excludedPrivacyAttributes_1.includes(x); })
1243
+ .forEach(function (x) { return (meta_1 += attributes[x].toLowerCase()); });
1241
1244
  var exclude = maskExclude.some(function (x) { return meta_1.indexOf(x) >= 0; });
1242
1245
  // Regardless of privacy mode, always mask off user input from input boxes or drop downs with two exceptions:
1243
1246
  // (1) The node is detected to be one of the excluded fields, in which case we drop everything
@@ -3023,9 +3026,11 @@ function observe$2(root) {
3023
3026
  function getStyleValue(style) {
3024
3027
  // Call trim on the text content to ensure we do not process white spaces ( , \n, \r\n, \t, etc.)
3025
3028
  // Also, check if stylesheet has any data-* attribute, if so process rules instead of looking up text
3029
+ // Additionally, check if style node has an id - if so it's at a high risk to have experienced dynamic
3030
+ // style updates which would make the textContent out of date with its true style contribution.
3026
3031
  var value = style.textContent ? style.textContent.trim() : "" /* Constant.Empty */;
3027
3032
  var dataset = style.dataset ? Object.keys(style.dataset).length : 0;
3028
- if (value.length === 0 || dataset > 0) {
3033
+ if (value.length === 0 || dataset > 0 || style.id.length > 0) {
3029
3034
  value = getCssRules(style.sheet);
3030
3035
  }
3031
3036
  return value;
@@ -3110,6 +3115,8 @@ var mutations = [];
3110
3115
  var insertRule = null;
3111
3116
  var deleteRule = null;
3112
3117
  var attachShadow = null;
3118
+ var mediaInsertRule = null;
3119
+ var mediaDeleteRule = null;
3113
3120
  var queue$1 = [];
3114
3121
  var timeout$1 = null;
3115
3122
  var activePeriod = null;
@@ -3133,6 +3140,15 @@ function start$h() {
3133
3140
  return insertRule.apply(this, arguments);
3134
3141
  };
3135
3142
  }
3143
+ if (mediaInsertRule === null) {
3144
+ mediaInsertRule = CSSMediaRule.prototype.insertRule;
3145
+ CSSMediaRule.prototype.insertRule = function () {
3146
+ if (active()) {
3147
+ schedule(this.parentStyleSheet.ownerNode);
3148
+ }
3149
+ return mediaInsertRule.apply(this, arguments);
3150
+ };
3151
+ }
3136
3152
  if (deleteRule === null) {
3137
3153
  deleteRule = CSSStyleSheet.prototype.deleteRule;
3138
3154
  CSSStyleSheet.prototype.deleteRule = function () {
@@ -3142,6 +3158,15 @@ function start$h() {
3142
3158
  return deleteRule.apply(this, arguments);
3143
3159
  };
3144
3160
  }
3161
+ if (mediaDeleteRule === null) {
3162
+ mediaDeleteRule = CSSMediaRule.prototype.deleteRule;
3163
+ CSSMediaRule.prototype.deleteRule = function () {
3164
+ if (active()) {
3165
+ schedule(this.parentStyleSheet.ownerNode);
3166
+ }
3167
+ return mediaDeleteRule.apply(this, arguments);
3168
+ };
3169
+ }
3145
3170
  // Add a hook to attachShadow API calls
3146
3171
  // In case we are unable to add a hook and browser throws an exception,
3147
3172
  // reset attachShadow variable and resume processing like before
@@ -1 +1 @@
1
- !function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return Za},get start(){return Ka},get stop(){return Qa},get track(){return Fa}}),e=Object.freeze({__proto__:null,get clone(){return yr},get compute(){return wr},get data(){return dr},get keys(){return fr},get reset(){return kr},get start(){return mr},get stop(){return Or},get trigger(){return br},get update(){return Er}}),n=Object.freeze({__proto__:null,get check(){return _r},get compute(){return Dr},get data(){return lr},get start(){return Mr},get stop(){return Cr},get trigger(){return Ir}}),a=Object.freeze({__proto__:null,get compute(){return Hr},get data(){return jr},get log(){return zr},get reset(){return Pr},get start(){return Rr},get stop(){return Lr},get updates(){return Ar}}),r=Object.freeze({__proto__:null,get callbacks(){return Xr},get clear(){return Gr},get consent(){return Jr},get data(){return Wr},get electron(){return Yr},get id(){return Br},get metadata(){return Vr},get save(){return Kr},get shortid(){return $r},get start(){return Ur},get stop(){return Fr}}),i=Object.freeze({__proto__:null,get data(){return oi},get envelope(){return si},get start(){return ui},get stop(){return ci}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1,throttleDom:!0,conversions:!1};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now(),n=t&&t.view?t.view.performance.timeOrigin:performance.timeOrigin;return Math.max(Math.round(e+n-c),0)}var l="0.7.40";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=!0,p=null,v=null,g=null;function m(t,e,n,a){if(void 0===a&&(a=!1),t)switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=h&&null!==g?s.match(g)?s:k(s,"▪","▫"):w(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?y(t):w(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return w(t)}break;case 4:switch(e){case"*T":case"data-":return a?y(t):w(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return k(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}return t}function b(t,e){if(void 0===e&&(e=!1),e)return"".concat("https://").concat("Electron");var n=o.drop;if(n&&n.length>0&&t&&t.indexOf("?")>0){var a=t.split("?"),r=a[0],i=a[1];return r+"?"+i.split("&").map((function(t){return n.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}return t}function y(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function w(t){return t.replace(f,"•")}function k(t,e,n){return O(),t?t.replace(v,e).replace(p,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(h&&null===p)try{p=new RegExp("\\p{N}","gu"),v=new RegExp("\\p{L}","gu"),g=new RegExp("\\p{Sc}","gu")}catch(t){h=!1}}var N=null,T=null,S=!1;function x(){S&&(N={time:s(),event:4,data:{visible:T.visible,docWidth:T.docWidth,docHeight:T.docHeight,screenWidth:T.screenWidth,screenHeight:T.screenHeight,scrollX:T.scrollX,scrollY:T.scrollY,pointerX:T.pointerX,pointerY:T.pointerY,activityTime:T.activityTime,scrollTime:T.scrollTime}}),T=T||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0,scrollTime:0}}function M(t,e,n,a){switch(t){case 8:T.docWidth=e,T.docHeight=n;break;case 11:T.screenWidth=e,T.screenHeight=n;break;case 10:T.scrollX=e,T.scrollY=n,T.scrollTime=a;break;default:T.pointerX=e,T.pointerY=n}S=!0}function _(t){T.activityTime=t}function I(t,e){T.visible="visible"===e?1:0,T.visible||_(t),S=!0}function D(){S&&xr(4)}var C=Object.freeze({__proto__:null,activity:_,compute:D,reset:x,start:function(){S=!1,x()},get state(){return N},stop:function(){x()},track:M,visibility:I}),j=null;function A(t,e){xi()&&t&&"string"==typeof t&&t.length<255&&(j=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},xr(24))}var R,L=null,z=null;function H(t){t in L||(L[t]=0),t in z||(z[t]=0),L[t]++,z[t]++}function P(t,e){null!==e&&(t in L||(L[t]=0),t in z||(z[t]=0),L[t]+=e,z[t]+=e)}function W(t,e){null!==e&&!1===isNaN(e)&&(t in L||(L[t]=0),(e>L[t]||0===L[t])&&(z[t]=e,L[t]=e))}function X(t,e,n){return window.setTimeout(fi(t),e,n)}function Y(t){return window.clearTimeout(t)}var q=0,U=0,F=null;function V(){F&&Y(F),F=X(B,U),q=s()}function B(){var t=s();R={gap:t-q},xr(25),R.gap<3e5?F=X(B,U):Ni&&(A("clarity","suspend"),qi(),["mousemove","touchstart"].forEach((function(t){return pi(document,t,_i)})),["resize","scroll","pageshow"].forEach((function(t){return pi(window,t,_i)})))}var J=Object.freeze({__proto__:null,get data(){return R},reset:V,start:function(){U=6e4,q=0},stop:function(){Y(F),q=0,U=0}}),G=null;function K(t,e){if(t in G){var n=G[t],a=n[n.length-1];e-a[0]>100?G[t].push([e,0]):a[1]=e-a[0]}else G[t]=[[e,0]]}function Z(){xr(36)}function Q(){G={}}var $=Object.freeze({__proto__:null,compute:Z,get data(){return G},reset:Q,start:function(){G={}},stop:function(){G={}},track:K}),tt=null;function et(t){xi()&&o.lean&&(o.lean=!1,tt={key:t},Kr(),o.upgrade&&o.upgrade(t),xr(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(xi()&&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(){xr(34)}function lt(){it={}}function dt(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ft(t){return t&&t.indexOf("@")>0?"email":"string"}var ht="CompressionStream"in window;function pt(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),ht?(e=new ReadableStream({start:function(e){return at(this,void 0,void 0,(function(){return rt(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,vt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function vt(t){return at(this,void 0,void 0,(function(){var e,n,a,r,i;return rt(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var gt=null;function mt(t){try{if(!gt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){gt(t)}))}catch(t){}}var bt=[C,a,Object.freeze({__proto__:null,compute:st,get data(){return it},identify:ut,reset:lt,set:ot,start:function(){lt()},stop:function(){lt()}}),n,$,r,i,t,J,nt,e];function yt(){L={},z={},H(5),bt.forEach((function(t){return fi(t.start)()}))}function wt(){bt.slice().reverse().forEach((function(t){return fi(t.stop)()})),L={},z={}}function kt(){st(),D(),Hr(),xr(0),Z(),Dr(),wr()}var Et,Ot=[];function Nt(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,24)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),or(41)))}var Tt="load,active,fixed,visible,focus,show,collaps,animat".split(","),St={};function xt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return Mt(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in St||(St[c]=[]),St[c].indexOf(t.id)<0&&St[c].push(t.id),i="".concat(c).concat("~").concat(St[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&Mt(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function Mt(t){if(!t)return!1;if(Tt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var _t=1,It=null,Dt=[],Ct=[],jt={},At=[],Rt=[],Lt=[],zt=[],Ht=[],Pt=[],Wt=null,Xt=null,Yt=null,qt=null;function Ut(){Vt(),Bt(document,!0)}function Ft(){Vt()}function Vt(){_t=1,Dt=[],Ct=[],jt={},At=[],Rt=[],Lt="address,password,contact".split(","),zt="password,secret,pass,social,ssn,code,hidden".split(","),Ht="radio,checkbox,range,button,reset,submit".split(","),Pt="INPUT,SELECT,TEXTAREA".split(","),It=new Map,Wt=new WeakMap,Xt=new WeakMap,Yt=new WeakMap,qt=new WeakMap,St={}}function Bt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Rt.push(t):At.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return $e(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return qt.set(t,e[0])}))})),Rt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,0)}))})))}catch(t){sr(5,1,t?t.name:null)}}function Jt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Wt.get(t);return!n&&e&&(n=_t++,Wt.set(t,n)),n||null}function Gt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Xt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Kt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Xt.has(e)?Xt.get(e):null}function Zt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function Qt(t){var e=t.parent&&t.parent in Dt?Dt[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=Dt[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 jt[e]=t.id}))}function $t(t){var e=te(ne(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function te(t){return It.has(t)?It.get(t):null}function ee(t){var e=Jt(t);return e in Dt?Dt[e]:null}function ne(t){return t in jt?jt[t]:null}function ae(t){return It.has(Jt(t))}function re(){for(var t=[],e=0,n=Ct;e<n.length;e++){var a=n[e];a in Dt&&t.push(Dt[a])}return Ct=[],t}function ie(t){if(It.get(t).nodeType!==Node.DOCUMENT_FRAGMENT_NODE){It.delete(t);var e=t in Dt?Dt[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ie(a[n])}}}function oe(t){for(var e=null;null===e&&t.previousSibling;)e=Jt(t.previousSibling),t=t.previousSibling;return e}function ue(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=Ct.indexOf(t);r>=0&&1===e&&a?(Ct.splice(r,1),Ct.push(t)):-1===r&&n&&Ct.push(t)}var ce=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Jt(t,!0),u=e?Jt(e):null,c=oe(t),s=null,l=tn(t)?i:null,d=qt.has(t)?qt.get(t):null,f=o.content?1:3;u>=0&&Dt[u]&&((s=Dt[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&&($e(t,n.attributes["data-clarity-region"]),l=i),It.set(i,t),Dt[i]={id:i,parent:u,previous:c,children:[],data:n,selector:null,hash:null,region:l,metadata:{active:!0,suspend:!1,privacy:f,position:null,fraud:d,size:null}},function(t,e,n){var a=e.data,r=e.metadata,i=r.privacy,o=a.attributes||{},u=a.tag.toUpperCase();switch(!0){case Pt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=zt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Ht.indexOf(c)>=0?i:l?4:2;break;case"data-clarity-mask"in o:r.privacy=3;break;case"data-clarity-unmask"in o:r.privacy=0;break;case Yt.has(t):r.privacy=Yt.get(t);break;case qt.has(t):r.privacy=2;break;case"*T"===u:var d=n&&n.data?n.data.tag:"",f=n&&n.selector?n.selector[1]:"",h=["STYLE","TITLE","svg:style"];r.privacy=h.includes(d)||At.some((function(t){return f.indexOf(t)>=0}))?0:i;break;case 1===i:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(o.class,Lt,r)}}(t,Dt[i],s),Qt(Dt[i]),"IMG"===(r=Dt[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ue(i,a)},get:ee,getId:Jt,getNode:te,getValue:function(t){return t in Dt?Dt[t]:null},has:ae,hashText:$t,iframe:Kt,lookup:ne,parse:Bt,sameorigin:Gt,start:Ut,stop:Ft,update:function(t,e,n,a){var r=Jt(t),i=e?Jt(e):null,o=oe(t),u=!1,c=!1;if(r in Dt){var s=Dt[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:Dt[i].children.indexOf(o)+1;Dt[i].children.splice(d,0,r),s.region=tn(t)?r:Dt[i].region}else!function(t,e){if(t in Dt){var n=Dt[t];n.metadata.active=!1,n.parent=null,ue(t,e),ie(t)}}(r,a);if(null!==l&&l>=0){var f=Dt[l].children.indexOf(r);f>=0&&Dt[l].children.splice(f,1)}c=!0}for(var h in n)Zt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Qt(s),ue(r,a,u,c)}},updates:re}),se=5e3,le={},de=[],fe=null,he=null,pe=null;function ve(){le={},de=[],fe=null,he=null}function ge(t,e){return void 0===e&&(e=0),at(this,void 0,void 0,(function(){var n,a,r;return rt(this,(function(i){for(n=0,a=de;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){de[1===e?"unshift":"push"]({task:t,resolve:n,id:Br()})})),null===fe&&null===he&&me(),[2,r]}))}))}function me(){var t=de.shift();t&&(fe=t,t.task().then((function(){t.id===Br()&&(t.resolve(),fe=null,me())})).catch((function(e){t.id===Br()&&(e&&sr(0,1,e.name,e.message,e.stack),fe=null,me())})))}function be(t){var e=Ee(t);return e in le?performance.now()-le[e].start>le[e].yield?0:1:2}function ye(t){le[Ee(t)]={start:performance.now(),calls:0,yield:30}}function we(t){var e=performance.now(),n=Ee(t),a=e-le[n].start;P(t.cost,a),H(5),le[n].calls>0&&P(4,a)}function ke(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in le?(we(t),n=le[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(le&&le[e]){var n=le[e].calls,a=le[e].yield;ye(t),le[e].calls=n+1,le[e].yield=a}}(t),a.label=2;case 2:return[2,e in le?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return he?[4,he]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Te(t,{timeout:se})}))]}}))}))}var Ne,Te=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Se(){Ne=null}function xe(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Ne&&c===Ne.width&&v===Ne.height||null===c||null===v||(Ne={width:c,height:v},qe(8))}var Me=[],_e=[],Ie=[],De=null,Ce=null,je=null,Ae=null,Re=null,Le="clarityAnimationId",ze="clarityOperationCount",He=20;function Pe(){Ie=[]}function We(t,e,n,a,r,i,o){Ie.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),qe(44)}function Xe(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){return Ye(this,e),t.apply(this,arguments)})}function Ye(t,e){if(xi()){var n=t.effect,a=Jt(n.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!t[Le]){t[Le]=$r(),t[ze]=0;var r=n.getKeyframes(),i=n.getTiming();We(s(),t[Le],0,JSON.stringify(r),JSON.stringify(i),a)}if(t[ze]++<He){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&&We(s(),t[Le],o)}}}}function qe(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),at(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,b,y,w,k,E,O,N,T,S,x,I,D,C,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:case 46:return[3,3];case 44:return[3,4];case 5:case 6:return[3,5]}return[3,12];case 1:return i=Ne,r.push(i.width),r.push(i.height),M(t,i.width,i.height),Za(r),[3,12];case 2:for(u=0,c=Be;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),Za(r);return on(),[3,12];case 3:for(d=0,f=Me;d<f.length;d++)b=f[d],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.newIds),Za(r);for(h=0,p=_e;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),Za(r);return[3,12];case 4:for(v=0,g=Ie;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),Za(r);return Pe(),[3,12];case 5:if(2===be(e))return[3,12];if(!((y=re()).length>0))return[3,11];w=0,k=y,z.label=6;case 6:return w<k.length?(E=k[w],0!==(O=be(e))?[3,8]:[4,ke(e)]):[3,10];case 7:O=z.sent(),z.label=8;case 8:if(2===O)return[3,10];for(N=E.data,T=E.metadata.active,S=E.metadata.suspend,x=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),D=0,C=T?["tag","attributes","value"]:["tag"];D<C.length;D++)if(N[j=C[D]])switch(j){case"tag":A=Ue(E),R=I?-1:1,r.push(E.id*R),E.parent&&T&&(r.push(E.parent),E.previous&&r.push(E.previous)),r.push(S?"*M":N[j]),A&&2===A.length&&r.push("".concat("#").concat(Fe(A[0]),".").concat(Fe(A[1])));break;case"attributes":for(L in N[j])void 0!==N[j][L]&&r.push(Ve(L,N[j][L],x));break;case"value":Nt(E.metadata.fraud,E.id,N[j]),r.push(m(N[j],N.tag,x,I))}z.label=9;case 9:return w++,[3,6];case 10:6===t&&_(a),Za(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=11;case 11:return[3,12];case 12:return[2]}}))}))}function Ue(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=te(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Fe(t){return t.toString(36)}function Ve(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var Be=[],Je=null,Ge={},Ke=[],Ze=!1,Qe=null;function $e(t,e){!1===Je.has(t)&&(Je.set(t,e),(Qe=null===Qe&&Ze?new IntersectionObserver(nn,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Qe)&&t&&t.nodeType===Node.ELEMENT_NODE&&Qe.observe(t))}function tn(t){return Je&&Je.has(t)}function en(){for(var t=[],e=0,n=Ke;e<n.length;e++){var a=n[e],r=Jt(a.node);r?(a.state.data.id=r,Ge[r]=a.state.data,Be.push(a.state)):t.push(a)}Ke=t,Be.length>0&&qe(7)}function nn(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(Je.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Jt(r):null,s=c in Ge?Ge[c]:{id:c,name:Je.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;an(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Qe&&Qe.unobserve(r)}}Be.length>0&&qe(7)}function an(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 Ge&&r||!(e.id in Ge))&&(Ge[e.id]=e,Be.push(rn(e))):Ke.push({node:t,state:rn(e)})}function rn(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function on(){Be=[]}var un=[];function cn(t){var e=Aa(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):"";un.push({time:s(t),event:42,data:{target:Aa(t),type:e.type,value:n,checksum:a}}),ge(La.bind(this,42))}}function sn(){un=[]}function ln(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Kt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var dn=["input","textarea","radio","button","canvas"],fn=[];function hn(t){pi(t,"click",pn.bind(this,9,t),!0)}function pn(t,e,n){var a=Kt(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=ln(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=Aa(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&&(fn.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:gn(c),context:mn(l),text:vn(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),ge(La.bind(this,t)))}function vn(t){var e=null;if(t){var n=t.textContent||String(t.value||"")||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function gn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(dn.indexOf(e)>=0)return 0}return 1}function mn(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 bn(){fn=[]}var yn=[];function wn(t,e){yn.push({time:s(e),event:38,data:{target:Aa(e),action:t}}),ge(La.bind(this,38))}function kn(){yn=[]}var En=null,On=[];function Nn(t){var e=Aa(t),n=ee(e);if(e&&e.type&&n){var a=e.value;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a};On.length>0&&On[On.length-1].data.target===r.target&&On.pop(),On.push({time:s(t),event:27,data:r}),Y(En),En=X(Tn,1e3,27)}}function Tn(t){ge(La.bind(this,t))}function Sn(){On=[]}var xn,Mn=[],_n=null;function In(t,e,n){var a=Kt(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=ln(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&Cn({time:s(n),event:t,data:{target:Aa(n),x:i,y:o}})}function Dn(t,e,n){var a=Kt(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&&Cn({time:o,event:t,data:{target:Aa(n),x:l,y:d}})}}function Cn(t){switch(t.event){case 12:case 15:case 19:var e=Mn.length,n=e>1?Mn[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)&&Mn.pop(),Mn.push(t),Y(_n),_n=X(jn,500,t.event);break;default:Mn.push(t),jn(t.event)}}function jn(t){ge(La.bind(this,t))}function An(){Mn=[]}function Rn(){var t=document.documentElement;xn={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},La(11)}function Ln(){xn=null}var zn=[],Hn=null,Pn=null,Wn=null;function Xn(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?Aa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Kt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u=window.innerWidth,c=window.innerHeight,l=u/3,d=u>c?.15*c:.2*c,f=c-d,h=Yn(l,d),p=Yn(l,f),v={time:s(t),event:10,data:{target:a,x:i,y:o,top:h,bottom:p}};if(null===t&&0===i&&0===o||null===i||null===o)return Hn=h,void(Pn=p);var g=zn.length,m=g>1?zn[g-2]:null;m&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(m,v)&&zn.pop(),zn.push(v),Y(Wn),Wn=X(qn,500,10)}function Yn(t,e){var n,a,r;return"caretPositionFromPoint"in document?r=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(r=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),r||(r=document.elementFromPoint(t,e)),r&&r.nodeType===Node.TEXT_NODE&&(r=r.parentNode),r}function qn(t){ge(La.bind(this,t))}function Un(){var t,e;if(Hn){var n=Ra(Hn,null);zr(31,null===(t=null==n?void 0:n.hash)||void 0===t?void 0:t.join("."))}if(Pn){var a=Ra(Pn,null);zr(32,null===(e=null==a?void 0:a.hash)||void 0===e?void 0:e.join("."))}}var Fn=null,Vn=null,Bn=null;function Jn(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=Fn.start?Fn.start:null;null!==Vn&&null!==Fn.start&&n!==e.anchorNode&&(Y(Bn),Gn(21)),Fn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Vn=e,Y(Bn),Bn=X(Gn,500,21)}}function Gn(t){ge(La.bind(this,t))}function Kn(){Vn=null,Fn={start:0,startOffset:0,end:0,endOffset:0}}var Zn,Qn,$n=[];function ta(t){$n.push({time:s(t),event:39,data:{target:Aa(t)}}),ge(La.bind(this,39))}function ea(){$n=[]}function na(t){Zn={name:t.type},La(26,s(t)),qi()}function aa(){Zn=null}function ra(t){void 0===t&&(t=null),Qn={visible:"visibilityState"in document?document.visibilityState:"default"},La(28,s(t))}function ia(){Qn=null}function oa(t){!function(t){var e=Kt(t);pi(e?e.contentWindow:t===document?window:t,"scroll",Xn,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(hn(t),function(t){pi(t,"cut",wn.bind(this,0),!0),pi(t,"copy",wn.bind(this,1),!0),pi(t,"paste",wn.bind(this,2),!0)}(t),function(t){pi(t,"mousedown",In.bind(this,13,t),!0),pi(t,"mouseup",In.bind(this,14,t),!0),pi(t,"mousemove",In.bind(this,12,t),!0),pi(t,"wheel",In.bind(this,15,t),!0),pi(t,"dblclick",In.bind(this,16,t),!0),pi(t,"touchstart",Dn.bind(this,17,t),!0),pi(t,"touchend",Dn.bind(this,18,t),!0),pi(t,"touchmove",Dn.bind(this,19,t),!0),pi(t,"touchcancel",Dn.bind(this,20,t),!0)}(t),function(t){pi(t,"input",Nn,!0)}(t),function(t){pi(t,"selectstart",Jn.bind(this,t),!0),pi(t,"selectionchange",Jn.bind(this,t),!0)}(t),function(t){pi(t,"change",cn,!0)}(t),function(t){pi(t,"submit",ta,!0)}(t))}var ua=Object.freeze({__proto__:null,observe:oa,start:function(){za=[],Pa(),bn(),kn(),An(),Sn(),pi(window,"resize",Rn),Rn(),pi(document,"visibilitychange",ra),ra(),zn=[],Xn(),Kn(),sn(),ea(),pi(window,"pagehide",na)},stop:function(){za=[],Pa(),bn(),kn(),Y(_n),Mn.length>0&&jn(Mn[Mn.length-1].event),Y(En),Sn(),Ln(),ia(),Y(Wn),zn=[],Hn=null,Pn=null,Kn(),Y(Bn),sn(),ea(),aa()}}),ca=/[^0-9\.]/g;function sa(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":zr(5,t[a]),zr(8,t.creator),zr(18,t.headline);break;case"product":zr(5,t[a]),zr(10,t.name),zr(12,t.sku),t.brand&&zr(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(W(11,la(t.ratingValue,100)),W(18,la(t.bestRating)),W(19,la(t.worstRating))),W(12,la(t.ratingCount)),W(17,la(t.reviewCount));break;case"person":zr(8,t.name);break;case"offer":zr(7,t.availability),zr(14,t.itemCondition),zr(13,t.priceCurrency),zr(12,t.sku),W(13,la(t.price));break;case"brand":zr(6,t.name)}null!==r&&"object"==typeof r&&sa(r)}}function la(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(ca,""))*e)}return null}var da=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last","aria-label"],fa=/[\r\n]+/g;function ha(t,e,n){var a,r=null;if(2===e&&!1===ae(t))return r;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var i=!1===ae(t)?"add":"update",o=t.parentElement?t.parentElement:null,u=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=u&&t.parentNode?Kt(t.parentNode):o;var c=t,s={tag:(u?"iframe:":"")+"*D",attributes:{name:c.name,publicId:c.publicId,systemId:c.systemId}};ce[i](t,o,s,e);break;case Node.DOCUMENT_NODE:t===document&&Bt(document),pa(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var l=t;if(l.host)if(Bt(l),"function"===typeof l.constructor&&l.constructor.toString().indexOf("[native code]")>=0){pa(l);var d={tag:"*S",attributes:{style:""}};ce[i](t,l.host,d,e)}else ce[i](t,l.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===i||o&&ae(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var f={tag:"*T",value:t.nodeValue};ce[i](t,o,f,e)}break;case Node.ELEMENT_NODE:var h=t,p=h.tagName,v=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;da.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(h);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===h.namespaceURI&&(p="svg:"+p),p){case"HTML":o=u&&o?Kt(o):null;var g={tag:(u?"iframe:":"")+p,attributes:v};ce[i](t,o,g,e);break;case"SCRIPT":if("type"in v&&"application/ld+json"===v.type)try{sa(JSON.parse(h.text.replace(fa,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:p,attributes:{},value:""};ce[i](t,o,m,e);break;case"META":var b="property"in v?"property":"name"in v?"name":null;if(b&&"content"in v){var y=v.content;switch(v[b]){case"og:title":zr(20,y);break;case"og:type":zr(19,y);break;case"generator":zr(21,y)}}break;case"HEAD":var w={tag:p,attributes:v},k=u&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,ce[i](t,o,w,e);break;case"BASE":var E=ee(t.parentElement);if(E){var O=document.createElement("a");O.href=v.href,E.data.attributes["*B"]=O.protocol+"//"+O.host+O.pathname}break;case"STYLE":var N={tag:p,attributes:v,value:va(h)};ce[i](t,o,N,e);break;case"IFRAME":var T=t,S={tag:p,attributes:v};Gt(T)&&(!function(t){!1===ae(t)&&pi(t,"load",ja.bind(this,t,"childList"),!0)}(T),S.attributes["*O"]="true",T.contentDocument&&T.contentWindow&&"loading"!==T.contentDocument.readyState&&(r=T.contentDocument)),ce[i](t,o,S,e);break;case"LINK":if(Yr&&"stylesheet"===v.rel){for(var x in Object.keys(document.styleSheets)){var M=document.styleSheets[x];if(M.ownerNode==h){var _={tag:"STYLE",attributes:v,value:ga(M)};ce[i](t,o,_,e);break}}break}var I={tag:p,attributes:v};ce[i](t,o,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in v&&v.src.startsWith("data:")&&(v.src="");var D={tag:p,attributes:v};ce[i](t,o,D,e);break;default:var C={tag:p,attributes:v};h.shadowRoot&&(r=h.shadowRoot),ce[i](t,o,C,e)}}return r}function pa(t){ae(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](fi(Ma)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),ba.push(n))}catch(t){sr(2,0,t?t.name:null)}}(t),oa(t))}function va(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=ga(t.sheet)),e}function ga(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(sr(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 ma(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i,o,u;return rt(this,(function(c){switch(c.label){case 0:a=[t],c.label=1;case 1:if(!(a.length>0))return[3,4];for(r=a.shift(),i=r.firstChild;i;)a.push(i),i=i.nextSibling;return 0!==(o=be(e))?[3,3]:[4,ke(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=ha(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var ba=[],ya=[],wa=null,ka=null,Ea=null,Oa=[],Na=null,Ta=null,Sa={};function xa(){if(ba=[],Oa=[],Na=null,Ta=0,Sa={},null===wa&&(wa=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return xi()&&Ca(this.ownerNode),wa.apply(this,arguments)}),null===ka&&(ka=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return xi()&&Ca(this.ownerNode),ka.apply(this,arguments)}),null===Ea){Ea=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return xi()?Ca(Ea.apply(this,arguments)):Ea.apply(this,arguments)}}catch(t){Ea=null}}}function Ma(t){var e=s();K(6,e),ya.push({time:e,mutations:t}),ge(_a,1).then((function(){X(xe),fi(en)()}))}function _a(){return at(this,void 0,void 0,(function(){var t,e,n,a,r,i,u,c,l,d;return rt(this,(function(f){switch(f.label){case 0:ye(t={id:Br(),cost:3}),f.label=1;case 1:if(!(ya.length>0))return[3,8];e=ya.shift(),n=s(),a=0,r=e.mutations,f.label=2;case 2:return a<r.length?(i=r[a],0!==(u=be(t))?[3,4]:[4,ke(t)]):[3,6];case 3:u=f.sent(),f.label=4;case 4:if(2===u)return[3,6];switch(c=i.target,l=o.throttleDom?function(t,e,n,a){var r=t.target?ee(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var i=a>Ta,o=ee(t.target),u=o&&o.selector?o.selector.join():t.target.nodeName,c=[r.selector?r.selector.join():"",u,t.attributeName,Ia(t.addedNodes),Ia(t.removedNodes)].join();Sa[c]=c in Sa?Sa[c]:[0,n];var s=Sa[c];if(!1===i&&s[0]>=10&&Da(s[2],2,e),s[0]=i?s[1]===n?s[0]:s[0]+1:1,s[1]=n,10===s[0])return s[2]=t.removedNodes,"suspend";if(s[0]>10)return""}return t.type}(i,t,n,e.time):i.type,l&&c&&c.ownerDocument&&Bt(c.ownerDocument),l&&c&&c.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&c.host&&Bt(c),l){case"attributes":ha(c,3,e.time);break;case"characterData":ha(c,4,e.time);break;case"childList":Da(i.addedNodes,1,t,e.time),Da(i.removedNodes,2,t,e.time);break;case"suspend":(d=ee(c))&&(d.metadata.suspend=!0)}f.label=5;case 5:return a++,[3,2];case 6:return[4,qe(6,t,e.time)];case 7:return f.sent(),[3,1];case 8:return we(t),[2]}}))}))}function Ia(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function Da(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i;return rt(this,(function(o){switch(o.label){case 0:a=t?t.length:0,r=0,o.label=1;case 1:return r<a?1!==e?[3,2]:(ma(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=be(n))?[3,4]:[4,ke(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ha(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Ca(t){return Oa.indexOf(t)<0&&Oa.push(t),Na&&Y(Na),Na=X((function(){!function(){for(var t=0,e=Oa;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ae(n))continue;ja(n,a?"childList":"characterData")}}Oa=[]}()}),33),t}function ja(t,e){fi(Ma)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function Aa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return Ta=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Ra(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ee(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=te(t),a=t in Ge?Ge[t]:{id:t,visibility:0,interaction:16,name:Je.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}an(n,a,r,a.visibility)}(r.region,e),i.fraud&&Nt(i.fraud,r.id,n||r.data.value)}}return a}function La(t,e){return void 0===e&&(e=null),at(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,y,w,k,E,O,N,T,S,x,_,D,C,j,A,R,L,z,H,P,W,X;return rt(this,(function(Y){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=Mn;r<i.length;r++)W=i[r],(o=Ra(W.data.target,W.event)).id>0&&((a=[W.time,W.event]).push(o.id),a.push(W.data.x),a.push(W.data.y),Za(a),M(W.event,W.data.x,W.data.y));An();break;case 9:for(u=0,c=fn;u<c.length;u++)W=c[u],l=Ra(W.data.target,W.event,W.data.text),a=[W.time,W.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(W.data.x),a.push(W.data.y),a.push(W.data.eX),a.push(W.data.eY),a.push(W.data.button),a.push(W.data.reaction),a.push(W.data.context),a.push(m(W.data.text,"click",l.privacy)),a.push(b(W.data.link)),a.push(d),a.push(W.data.trust),Za(a),Wa(W.time,W.event,d,W.data.x,W.data.y,W.data.reaction,W.data.context);bn();break;case 38:for(f=0,h=yn;f<h.length;f++)W=h[f],a=[W.time,W.event],(z=Ra(W.data.target,W.event)).id>0&&(a.push(z.id),a.push(W.data.action),Za(a));kn();break;case 11:p=xn,a.push(p.width),a.push(p.height),M(t,p.width,p.height),Ln(),Za(a);break;case 26:v=Zn,a.push(v.name),aa(),Za(a);break;case 27:for(g=0,y=On;g<y.length;g++)W=y[g],w=Ra(W.data.target,W.event,W.data.value),(a=[W.time,W.event]).push(w.id),a.push(m(W.data.value,"input",w.privacy)),Za(a);Sn();break;case 21:(k=Fn)&&(E=Ra(k.start,t),O=Ra(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Kn(),Za(a));break;case 10:for(N=0,T=zn;N<T.length;N++)W=T[N],S=Ra(W.data.target,W.event),x=Ra(W.data.top,W.event),_=Ra(W.data.bottom,W.event),D=(null==x?void 0:x.hash)?x.hash.join("."):"",C=(null==_?void 0:_.hash)?_.hash.join("."):"",S.id>0&&((a=[W.time,W.event]).push(S.id),a.push(W.data.x),a.push(W.data.y),a.push(D),a.push(C),Za(a),M(W.event,W.data.x,W.data.y,W.time));zn=[],Hn=null,Pn=null;break;case 42:for(j=0,A=un;j<A.length;j++)W=A[j],a=[W.time,W.event],(z=Ra(W.data.target,W.event)).id>0&&((a=[W.time,W.event]).push(z.id),a.push(W.data.type),a.push(m(W.data.value,"change",z.privacy)),a.push(m(W.data.checksum,"checksum",z.privacy)),Za(a));sn();break;case 39:for(R=0,L=$n;R<L.length;R++)W=L[R],a=[W.time,W.event],(z=Ra(W.data.target,W.event)).id>0&&(a.push(z.id),Za(a));ea();break;case 22:for(H=0,P=Ha;H<P.length;H++)W=P[H],(a=[W.time,W.event]).push(W.data.type),a.push(W.data.hash),a.push(W.data.x),a.push(W.data.y),a.push(W.data.reaction),a.push(W.data.context),Za(a,!1);Pa();break;case 28:X=Qn,a.push(X.visible),Za(a),I(n,X.visible),ia()}return[2]}))}))}var za=[],Ha=[];function Pa(){Ha=[]}function Wa(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),za.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),M(e,a,r)}var Xa,Ya,qa,Ua,Fa,Va=0,Ba=0,Ja=null,Ga=0;function Ka(){Ua=!0,Va=0,Ba=0,Ga=0,Xa=[],Ya=[],qa={},Fa=null}function Za(t,e){if(void 0===e&&(e=!0),Ua){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:Va+=r.length;case 37:case 6:case 43:case 45:case 46:Ba+=r.length,Xa.push(r);break;default:Ya.push(r)}H(25);var i=function(){var t=!1===o.lean&&Va>0?100:oi.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Ga>2*i&&(Y(Ja),Ja=null),e&&null===Ja&&(25!==a&&V(),Ja=X($a,i),Ga=n,_r(Ba))}}function Qa(){Y(Ja),$a(!0),Va=0,Ba=0,Ga=0,Xa=[],Ya=[],qa={},Fa=null,Ua=!1}function $a(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 Ja=null,(e=!1===o.lean&&Ba>0&&(Ba<1048576||oi.sequence>0))&&W(1,1),en(),function(){var t=[];Ha=[];for(var e=oi.start+oi.duration,n=Math.max(e-2e3,0),a=0,r=za;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ha.push(i),t.push(i))}za=t,La(22)}(),kt(),n=!0===t,a=JSON.stringify(si(n)),r="[".concat(Ya.join(),"]"),i=e?"[".concat(Xa.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,pt(u)];case 2:s=l.sent(),l.label=3;case 3:return P(2,(c=s)?c.length:u.length),tr(u,c,oi.sequence,n),Ya=[],e&&(Xa=[],Ba=0,Va=0),[2]}}))}))}function tr(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))&&nr(n)}catch(t){}if(!1===i){n in qa?qa[n].attempts++:qa[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){di(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){fi(er)(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),nr(n)}}function er(t,e){var n=qa[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?Ir(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),tr(n.data,null,e)):(Fa={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&xr(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":Ir(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&br(i[1]);break;case"SIGNAL":i.length>1&&mt(i[1])}}}(t.responseText),0===t.status&&(tr(n.data,null,e,!0),Ir(3)),t.status>=200&&t.status<=208&&nr(e),delete qa[e]))}function nr(t){1===t&&Kr()}var ar,rr={};function ir(t){var e=t.error||t;return e.message in rr||(rr[e.message]=0),rr[e.message]++>=5||e&&e.message&&(ar={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},or(31)),!0}function or(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(ar.message),e.push(ar.line),e.push(ar.column),e.push(ar.stack),e.push(b(ar.source)),Za(e);break;case 33:ur&&(e.push(ur.code),e.push(ur.name),e.push(ur.message),e.push(ur.stack),e.push(ur.severity),Za(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),Za(e,!1))}return[2]}))}))}var ur,cr={};function sr(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 cr&&cr[t].indexOf(i)>=0||(ur={code:t,name:n,message:a,stack:r,severity:e},t in cr?cr[t].push(i):cr[t]=[i],or(33))}var lr,dr={},fr=new Set,hr={},pr={},vr={},gr={};function mr(){kr()}function br(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 hr[a]={},pr[a]={},vr[a]={},gr[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);hr[a][u]=Nr(l);break;case 2:pr[a][u]=c;break;case 4:var d=c.substring(1,c.length);vr[a][u]=d}}}catch(t){sr(8,1,t?t.name:null)}}function yr(t){return JSON.parse(JSON.stringify(t))}function wr(){try{for(var t in hr){var e=parseInt(t);if(""==gr[e]||document.querySelector(gr[e])){var n=hr[e];for(var a in n){var r=parseInt(a),i=(h=Tr(yr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&Er(e,r,i)}var o=pr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)Er(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=vr[e];for(var d in l){var f=parseInt(d);Er(e,f,$t(l[f]).trim().substring(0,1e4))}}}fr.size>0&&xr(40)}catch(t){sr(5,1,t?t.name:null)}var h}function kr(){fr.clear()}function Er(t,e,n){var a,r=!1;t in dr||(dr[t]={},r=!0),a=vr[t],0==Object.keys(a).length||e in dr[t]&&dr[t][e]==n||(r=!0),dr[t][e]=n,r&&fr.add(t)}function Or(){kr()}function Nr(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 Tr(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&&Sr(r,a.condition))n=Tr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(Sr(c,a.condition)){var s=Tr(t,c);s&&i.push(s)}}n=i}return n}return null}function Sr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function xr(t){var e=[s(),t];switch(t){case 4:var n=N;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),e.push(n.data.scrollTime),Za(e,!1)),x();break;case 25:e.push(R.gap),Za(e);break;case 35:e.push(lr.check),Za(e,!1);break;case 3:e.push(tt.key),Za(e);break;case 2:e.push(Fa.sequence),e.push(Fa.attempts),e.push(Fa.status),Za(e,!1);break;case 24:j.key&&e.push(j.key),e.push(j.value),Za(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(),Za(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={},Za(e,!1)}break;case 1:var h=Object.keys(Ar);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(Ar[g])}Pr(),Za(e,!1)}break;case 36:var m=Object.keys(G);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([],G[w]))}Q(),Za(e,!1)}break;case 40:fr.forEach((function(t){e.push(t);var n=[];for(var a in dr[t]){var r=parseInt(a,10);n.push(r),n.push(dr[t][a])}e.push(n)})),kr(),Za(e,!1)}}function Mr(){lr={check:0}}function _r(t){if(0===lr.check){var e=lr.check;e=oi.sequence>=128?1:e,e=oi.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==lr.check&&Ir(e)}}function Ir(t){lr.check=t,Gr(),qi()}function Dr(){0!==lr.check&&xr(35)}function Cr(){lr=null}var jr=null,Ar=null;function Rr(){jr={},Ar={}}function Lr(){jr={},Ar={}}function zr(t,e){e&&(e="".concat(e),t in jr||(jr[t]=[]),jr[t].indexOf(e)<0&&(jr[t].push(e),t in Ar||(Ar[t]=[]),Ar[t].push(e),jr[t].length>128&&Ir(5)))}function Hr(){xr(1)}function Pr(){Ar={}}var Wr=null,Xr=[],Yr=0,qr=null;function Ur(){qr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Yr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:$r(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=ni("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-ti(n[1])<18e5&&(t.session=n[0],t.count=ti(n[2])+1,t.upgrade=ti(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=ei(),i=o.projectId||d(location.host);Wr={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,zr(0,t),zr(3,e),zr(1,b(location.href,!!Yr)),zr(2,document.referrer),zr(15,function(){var t=$r();if(o.track&&Zr(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),zr(16,document.documentElement.lang),zr(17,document.dir),zr(26,"".concat(window.devicePixelRatio)),zr(28,r.dob.toString()),zr(29,r.version.toString()),W(0,a.ts),W(1,0),W(35,Yr),navigator&&(zr(9,navigator.language),W(33,navigator.hardwareConcurrency),W(32,navigator.maxTouchPoints),W(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;zr(22,t.platform),zr(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){zr(24,t.name+"~"+t.version)})),zr(25,t.model),W(27,t.mobile?1:0)})):zr(22,navigator.platform)),screen&&(W(14,Math.round(screen.width)),W(15,Math.round(screen.height)),W(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=ni(s);l&&ot(s,l)}Qr(r)}function Fr(){qr=null,Wr=null}function Vr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Wr&&(n||!1===e)?t(Wr,!o.lean):Xr.push({callback:t,wait:e})}function Br(){return Wr?[Wr.userId,Wr.sessionId,Wr.pageNum].join("."):""}function Jr(t){if(void 0===t&&(t=!0),!t)return o.track=!1,ri("_clsk","",-Number.MAX_VALUE),ri("_clck","",-Number.MAX_VALUE),qi(),void window.setTimeout(Yi,250);xi()&&(o.track=!0,Qr(ei(),1))}function Gr(){ri("_clsk","",0)}function Kr(){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;!function(t){Xr.length>0&&Xr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Wr,!o.lean)}))}(n),ri("_clsk",[Wr.sessionId,t,Wr.pageNum,n,e].join("|"),1)}function Zr(t,e){try{return!!t[e]}catch(t){return!1}}function Qr(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)&&ri("_clck",[Wr.userId,2,n.toString(36),e,a].join("|"),365)}function $r(){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 ti(t,e){return void 0===e&&(e=10),parseInt(t,e)}function ei(){var t={id:$r(),version:0,expiry:null,consent:0,dob:0},e=ni("_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=ti(n[1])),n.length>2&&(t.expiry=ti(n[2],36)),n.length>3&&1===ti(n[3])&&(t.consent=1),n.length>4&&ti(n[1])>1&&(t.dob=ti(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function ni(t){var e;if(Zr(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=ai(r[1]),o=i[0],u=i[1];o;)o=(e=ai(u))[0],u=e[1];return u}}}return null}function ai(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function ri(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Zr(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===qr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(qr=".".concat(c[s]).concat(qr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(qr),ni(t)===e))return;qr=""}}catch(t){qr=""}document.cookie=qr?"".concat(u).concat(";").concat("domain=").concat(qr):u}}var ii,oi=null;function ui(){var t=Wr;oi={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 ci(){oi=null}function si(t){return oi.start=oi.start+oi.duration,oi.duration=s()-oi.start,oi.sequence++,oi.upload=t&&"sendBeacon"in navigator?1:0,oi.end=t?1:0,[oi.version,oi.sequence,oi.start,oi.duration,oi.projectId,oi.userId,oi.sessionId,oi.pageNum,oi.upload,oi.end]}function li(){ii=[]}function di(t){if(ii&&-1===ii.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:oi.version,p:oi.projectId,u:oi.userId,s:oi.sessionId,n:oi.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)),ii.push(t.message)}}return t}function fi(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw di(t)}var n=performance.now()-e;P(4,n),n>30&&(H(7),W(6,n))}}var hi=[];function pi(t,e,n,a){void 0===a&&(a=!1),n=fi(n);try{t[u("addEventListener")](e,n,a),hi.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function vi(){for(var t=0,e=hi;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}hi=[]}var gi=null,mi=null,bi=null,yi=0;function wi(){return!(yi++>20)||(sr(4,0),!1)}function ki(){yi=0,bi!==Oi()&&(qi(),window.setTimeout(Ei,250))}function Ei(){Yi(),W(29,1)}function Oi(){return location.href?location.href.replace(location.hash,""):location.href}var Ni=!1;function Ti(){Ni=!0,c=performance.now()+performance.timeOrigin,ve(),vi(),li(),bi=Oi(),yi=0,pi(window,"popstate",ki),null===gi&&(gi=history.pushState,history.pushState=function(){gi.apply(this,arguments),xi()&&wi()&&ki()}),null===mi&&(mi=history.replaceState,history.replaceState=function(){mi.apply(this,arguments),xi()&&wi()&&ki()})}function Si(){bi=null,yi=0,li(),vi(),ve(),c=0,Ni=!1}function xi(){return Ni}function Mi(t){if(null===t||Ni)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function _i(){Yi(),A("clarity","restart")}var Ii=Object.freeze({__proto__:null,start:function(){!function(){Ot=[],W(26,navigator.webdriver?1:0);try{W(31,window.top==window.self?1:2)}catch(t){W(31,0)}}(),pi(window,"error",ir),rr={},cr={}},stop:function(){cr={}}});function Di(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),ye(e={id:Br(),cost:3}),[4,ma(document,e,0)];case 1:return n.sent(),[4,qe(5,e,t)];case 2:return n.sent(),we(e),[2]}}))}))}var Ci=Object.freeze({__proto__:null,hashText:$t,start:function(){Se(),xe(),on(),Qe=null,Je=new WeakMap,Ge={},Ke=[],Ze=!!window.IntersectionObserver,Ut(),o.delayDom?pi(window,"load",(function(){xa()})):xa(),ge(Di,1).then((function(){fi(xe)(),fi(en)(),fi(Un)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Pe(),Xe(Ce,"play"),Xe(je,"pause"),Xe(Ae,"cancel"),Xe(Re,"finish"),null===De&&(De=Element.prototype.animate,Element.prototype.animate=function(){var t=De.apply(this,arguments);return Ye(t,"play"),t}))},stop:function(){on(),Je=null,Ge={},Ke=[],Qe&&(Qe.disconnect(),Qe=null),Ze=!1,Ft(),function(){for(var t=0,e=ba;t<e.length;t++){var n=e[t];n&&n.disconnect()}ba=[],Sa={},ya=[],Oa=[],Ta=0,Na=null}(),Se(),Pe()}});var ji,Ai=null;function Ri(){Ai=null}function Li(t){Ai={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(Ai.fetchStart),n.push(Ai.connectStart),n.push(Ai.connectEnd),n.push(Ai.requestStart),n.push(Ai.responseStart),n.push(Ai.responseEnd),n.push(Ai.domInteractive),n.push(Ai.domComplete),n.push(Ai.loadEventStart),n.push(Ai.loadEventEnd),n.push(Ai.redirectCount),n.push(Ai.size),n.push(Ai.type),n.push(Ai.protocol),n.push(Ai.encodedSize),n.push(Ai.decodedSize),Ri(),Za(n)),[2]}))}))}(29)}var zi=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Hi(){try{ji&&ji.disconnect(),ji=new PerformanceObserver(fi(Pi));for(var t=0,e=zi;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&P(9,0),ji.observe({type:n,buffered:!0}))}}catch(t){sr(3,1)}}function Pi(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":Li(a);break;case"resource":var r=a.name;zr(4,Wi(r)),r!==o.upload&&r!==o.fallback||W(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&W(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&P(9,1e3*a.value);break;case"largest-contentful-paint":e&&W(8,a.startTime)}}}(t.getEntries())}function Wi(t){var e=document.createElement("a");return e.href=t,e.host}var Xi=[Ii,Ci,ua,Object.freeze({__proto__:null,start:function(){Ri(),function(){navigator&&"connection"in navigator&&zr(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?pi(window,"load",X.bind(this,Hi,0)):Hi():sr(3,0)}()},stop:function(){ji&&ji.disconnect(),ji=null,Ri()}})];function Yi(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===Ni&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(Mi(t),Ti(),yt(),Xi.forEach((function(t){return fi(t.start)()})),null===t&&Bi())}function qi(){xi()&&(Xi.slice().reverse().forEach((function(t){return fi(t.stop)()})),wt(),Si(),void 0!==Fi&&(Fi[Vi]=function(){(Fi[Vi].q=Fi[Vi].q||[]).push(arguments),"start"===arguments[0]&&Fi[Vi].q.unshift(Fi[Vi].q.pop())&&Bi()}))}var Ui=Object.freeze({__proto__:null,consent:Jr,event:A,hashText:$t,identify:ut,metadata:Vr,pause:function(){xi()&&(A("clarity","pause"),null===he&&(he=new Promise((function(t){pe=t}))))},resume:function(){xi()&&(he&&(pe(),he=null,null===fe&&me()),A("clarity","resume"))},set:ot,signal:function(t){gt=t},start:Yi,stop:qi,upgrade:et,version:l}),Fi=window,Vi="clarity";function Bi(){if(void 0!==Fi){if(Fi[Vi]&&Fi[Vi].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Fi[Vi]&&Fi[Vi].q||[];for(Fi[Vi]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return Ui[t].apply(Ui,e)},Fi[Vi].v=l;t.length>0;)Fi[Vi].apply(Fi,t.shift())}}Bi()}();
1
+ !function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return $a},get start(){return Qa},get stop(){return tr},get track(){return Ba}}),e=Object.freeze({__proto__:null,get clone(){return kr},get compute(){return Er},get data(){return hr},get keys(){return pr},get reset(){return Or},get start(){return yr},get stop(){return Nr},get trigger(){return wr},get update(){return Sr}}),n=Object.freeze({__proto__:null,get check(){return Cr},get compute(){return jr},get data(){return fr},get start(){return Ir},get stop(){return Ar},get trigger(){return Dr}}),a=Object.freeze({__proto__:null,get compute(){return Wr},get data(){return Rr},get log(){return Pr},get reset(){return Xr},get start(){return zr},get stop(){return Hr},get updates(){return Lr}}),r=Object.freeze({__proto__:null,get callbacks(){return qr},get clear(){return Zr},get consent(){return Kr},get data(){return Yr},get electron(){return Ur},get id(){return Gr},get metadata(){return Jr},get save(){return Qr},get shortid(){return ei},get start(){return Vr},get stop(){return Br}}),i=Object.freeze({__proto__:null,get data(){return ci},get envelope(){return di},get start(){return si},get stop(){return li}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1,throttleDom:!0,conversions:!1};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now(),n=t&&t.view?t.view.performance.timeOrigin:performance.timeOrigin;return Math.max(Math.round(e+n-c),0)}var l="0.7.42";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=!0,p=null,v=null,g=null;function m(t,e,n,a){if(void 0===a&&(a=!1),t)switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=h&&null!==g?s.match(g)?s:k(s,"▪","▫"):w(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?y(t):w(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return w(t)}break;case 4:switch(e){case"*T":case"data-":return a?y(t):w(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return k(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}return t}function b(t,e){if(void 0===e&&(e=!1),e)return"".concat("https://").concat("Electron");var n=o.drop;if(n&&n.length>0&&t&&t.indexOf("?")>0){var a=t.split("?"),r=a[0],i=a[1];return r+"?"+i.split("&").map((function(t){return n.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}return t}function y(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function w(t){return t.replace(f,"•")}function k(t,e,n){return O(),t?t.replace(v,e).replace(p,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(h&&null===p)try{p=new RegExp("\\p{N}","gu"),v=new RegExp("\\p{L}","gu"),g=new RegExp("\\p{Sc}","gu")}catch(t){h=!1}}var S=null,N=null,T=!1;function M(){T&&(S={time:s(),event:4,data:{visible:N.visible,docWidth:N.docWidth,docHeight:N.docHeight,screenWidth:N.screenWidth,screenHeight:N.screenHeight,scrollX:N.scrollX,scrollY:N.scrollY,pointerX:N.pointerX,pointerY:N.pointerY,activityTime:N.activityTime,scrollTime:N.scrollTime}}),N=N||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0,scrollTime:0}}function x(t,e,n,a){switch(t){case 8:N.docWidth=e,N.docHeight=n;break;case 11:N.screenWidth=e,N.screenHeight=n;break;case 10:N.scrollX=e,N.scrollY=n,N.scrollTime=a;break;default:N.pointerX=e,N.pointerY=n}T=!0}function _(t){N.activityTime=t}function I(t,e){N.visible="visible"===e?1:0,N.visible||_(t),T=!0}function C(){T&&_r(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:M,start:function(){T=!1,M()},get state(){return S},stop:function(){M()},track:x,visibility:I}),j=null;function A(t,e){_i()&&t&&"string"==typeof t&&t.length<255&&(j=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},_r(24))}var R,L=null,z=null;function H(t){t in L||(L[t]=0),t in z||(z[t]=0),L[t]++,z[t]++}function P(t,e){null!==e&&(t in L||(L[t]=0),t in z||(z[t]=0),L[t]+=e,z[t]+=e)}function W(t,e){null!==e&&!1===isNaN(e)&&(t in L||(L[t]=0),(e>L[t]||0===L[t])&&(z[t]=e,L[t]=e))}function X(t,e,n){return window.setTimeout(pi(t),e,n)}function Y(t){return window.clearTimeout(t)}var q=0,U=0,F=null;function V(){F&&Y(F),F=X(B,U),q=s()}function B(){var t=s();R={gap:t-q},_r(25),R.gap<3e5?F=X(B,U):Ti&&(A("clarity","suspend"),Fi(),["mousemove","touchstart"].forEach((function(t){return gi(document,t,Ci)})),["resize","scroll","pageshow"].forEach((function(t){return gi(window,t,Ci)})))}var J=Object.freeze({__proto__:null,get data(){return R},reset:V,start:function(){U=6e4,q=0},stop:function(){Y(F),q=0,U=0}}),G=null;function K(t,e){if(t in G){var n=G[t],a=n[n.length-1];e-a[0]>100?G[t].push([e,0]):a[1]=e-a[0]}else G[t]=[[e,0]]}function Z(){_r(36)}function Q(){G={}}var $=Object.freeze({__proto__:null,compute:Z,get data(){return G},reset:Q,start:function(){G={}},stop:function(){G={}},track:K}),tt=null;function et(t){_i()&&o.lean&&(o.lean=!1,tt={key:t},Qr(),o.upgrade&&o.upgrade(t),_r(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(_i()&&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(){_r(34)}function lt(){it={}}function dt(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ft(t){return t&&t.indexOf("@")>0?"email":"string"}var ht="CompressionStream"in window;function pt(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),ht?(e=new ReadableStream({start:function(e){return at(this,void 0,void 0,(function(){return rt(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,vt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function vt(t){return at(this,void 0,void 0,(function(){var e,n,a,r,i;return rt(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var gt=null;function mt(t){try{if(!gt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){gt(t)}))}catch(t){}}var bt=[D,a,Object.freeze({__proto__:null,compute:st,get data(){return it},identify:ut,reset:lt,set:ot,start:function(){lt()},stop:function(){lt()}}),n,$,r,i,t,J,nt,e];function yt(){L={},z={},H(5),bt.forEach((function(t){return pi(t.start)()}))}function wt(){bt.slice().reverse().forEach((function(t){return pi(t.stop)()})),L={},z={}}function kt(){st(),C(),Wr(),_r(0),Z(),jr(),Er()}var Et,Ot=[];function St(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,24)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),cr(41)))}var Nt="load,active,fixed,visible,focus,show,collaps,animat".split(","),Tt={};function Mt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return xt(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 Tt||(Tt[c]=[]),Tt[c].indexOf(t.id)<0&&Tt[c].push(t.id),i="".concat(c).concat("~").concat(Tt[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&xt(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 xt(t){if(!t)return!1;if(Nt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var _t=1,It=null,Ct=[],Dt=[],jt={},At=[],Rt=[],Lt=[],zt=[],Ht=[],Pt=[],Wt=null,Xt=null,Yt=null,qt=null;function Ut(){Vt(),Bt(document,!0)}function Ft(){Vt()}function Vt(){_t=1,Ct=[],Dt=[],jt={},At=[],Rt=[],Lt="address,password,contact".split(","),zt="password,secret,pass,social,ssn,code,hidden".split(","),Ht="radio,checkbox,range,button,reset,submit".split(","),Pt="INPUT,SELECT,TEXTAREA".split(","),It=new Map,Wt=new WeakMap,Xt=new WeakMap,Yt=new WeakMap,qt=new WeakMap,Tt={}}function Bt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Rt.push(t):At.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return $e(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return qt.set(t,e[0])}))})),Rt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,0)}))})))}catch(t){dr(5,1,t?t.name:null)}}function Jt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Wt.get(t);return!n&&e&&(n=_t++,Wt.set(t,n)),n||null}function Gt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Xt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Kt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Xt.has(e)?Xt.get(e):null}function Zt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function Qt(t){var e=t.parent&&t.parent in Ct?Ct[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=Ct[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[Mt(i,0),Mt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return jt[e]=t.id}))}function $t(t){var e=te(ne(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function te(t){return It.has(t)?It.get(t):null}function ee(t){var e=Jt(t);return e in Ct?Ct[e]:null}function ne(t){return t in jt?jt[t]:null}function ae(t){return It.has(Jt(t))}function re(){for(var t=[],e=0,n=Dt;e<n.length;e++){var a=n[e];a in Ct&&t.push(Ct[a])}return Dt=[],t}function ie(t){if(It.get(t).nodeType!==Node.DOCUMENT_FRAGMENT_NODE){It.delete(t);var e=t in Ct?Ct[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ie(a[n])}}}function oe(t){for(var e=null;null===e&&t.previousSibling;)e=Jt(t.previousSibling),t=t.previousSibling;return e}function ue(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=Dt.indexOf(t);r>=0&&1===e&&a?(Dt.splice(r,1),Dt.push(t)):-1===r&&n&&Dt.push(t)}var ce=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Jt(t,!0),u=e?Jt(e):null,c=oe(t),s=null,l=tn(t)?i:null,d=qt.has(t)?qt.get(t):null,f=o.content?1:3;u>=0&&Ct[u]&&((s=Ct[u]).children.push(i),l=null===l?s.region:l,d=null===d?s.metadata.fraud:d,f=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&($e(t,n.attributes["data-clarity-region"]),l=i),It.set(i,t),Ct[i]={id:i,parent:u,previous:c,children:[],data:n,selector:null,hash:null,region:l,metadata:{active:!0,suspend:!1,privacy:f,position:null,fraud:d,size:null}},function(t,e,n){var a=e.data,r=e.metadata,i=r.privacy,o=a.attributes||{},u=a.tag.toUpperCase();switch(!0){case Pt.indexOf(u)>=0:var c=o.type,s="",l=["class","style"];Object.keys(o).filter((function(t){return!l.includes(t)})).forEach((function(t){return s+=o[t].toLowerCase()}));var d=zt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Ht.indexOf(c)>=0?i:d?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 f=n&&n.data?n.data.tag:"",h=n&&n.selector?n.selector[1]:"",p=["STYLE","TITLE","svg:style"];r.privacy=p.includes(f)||At.some((function(t){return h.indexOf(t)>=0}))?0:i;break;case 1===i:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(o.class,Lt,r)}}(t,Ct[i],s),Qt(Ct[i]),"IMG"===(r=Ct[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ue(i,a)},get:ee,getId:Jt,getNode:te,getValue:function(t){return t in Ct?Ct[t]:null},has:ae,hashText:$t,iframe:Kt,lookup:ne,parse:Bt,sameorigin:Gt,start:Ut,stop:Ft,update:function(t,e,n,a){var r=Jt(t),i=e?Jt(e):null,o=oe(t),u=!1,c=!1;if(r in Ct){var s=Ct[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:Ct[i].children.indexOf(o)+1;Ct[i].children.splice(d,0,r),s.region=tn(t)?r:Ct[i].region}else!function(t,e){if(t in Ct){var n=Ct[t];n.metadata.active=!1,n.parent=null,ue(t,e),ie(t)}}(r,a);if(null!==l&&l>=0){var f=Ct[l].children.indexOf(r);f>=0&&Ct[l].children.splice(f,1)}c=!0}for(var h in n)Zt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Qt(s),ue(r,a,u,c)}},updates:re}),se=5e3,le={},de=[],fe=null,he=null,pe=null;function ve(){le={},de=[],fe=null,he=null}function ge(t,e){return void 0===e&&(e=0),at(this,void 0,void 0,(function(){var n,a,r;return rt(this,(function(i){for(n=0,a=de;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){de[1===e?"unshift":"push"]({task:t,resolve:n,id:Gr()})})),null===fe&&null===he&&me(),[2,r]}))}))}function me(){var t=de.shift();t&&(fe=t,t.task().then((function(){t.id===Gr()&&(t.resolve(),fe=null,me())})).catch((function(e){t.id===Gr()&&(e&&dr(0,1,e.name,e.message,e.stack),fe=null,me())})))}function be(t){var e=Ee(t);return e in le?performance.now()-le[e].start>le[e].yield?0:1:2}function ye(t){le[Ee(t)]={start:performance.now(),calls:0,yield:30}}function we(t){var e=performance.now(),n=Ee(t),a=e-le[n].start;P(t.cost,a),H(5),le[n].calls>0&&P(4,a)}function ke(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in le?(we(t),n=le[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(le&&le[e]){var n=le[e].calls,a=le[e].yield;ye(t),le[e].calls=n+1,le[e].yield=a}}(t),a.label=2;case 2:return[2,e in le?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return he?[4,he]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Ne(t,{timeout:se})}))]}}))}))}var Se,Ne=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Te(){Se=null}function Me(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Se&&c===Se.width&&v===Se.height||null===c||null===v||(Se={width:c,height:v},qe(8))}var xe=[],_e=[],Ie=[],Ce=null,De=null,je=null,Ae=null,Re=null,Le="clarityAnimationId",ze="clarityOperationCount",He=20;function Pe(){Ie=[]}function We(t,e,n,a,r,i,o){Ie.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),qe(44)}function Xe(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){return Ye(this,e),t.apply(this,arguments)})}function Ye(t,e){if(_i()){var n=t.effect,a=Jt(n.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!t[Le]){t[Le]=ei(),t[ze]=0;var r=n.getKeyframes(),i=n.getTiming();We(s(),t[Le],0,JSON.stringify(r),JSON.stringify(i),a)}if(t[ze]++<He){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&&We(s(),t[Le],o)}}}}function qe(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),at(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,b,y,w,k,E,O,S,N,T,M,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:case 46:return[3,3];case 44:return[3,4];case 5:case 6:return[3,5]}return[3,12];case 1:return i=Se,r.push(i.width),r.push(i.height),x(t,i.width,i.height),$a(r),[3,12];case 2:for(u=0,c=Be;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),$a(r);return on(),[3,12];case 3:for(d=0,f=xe;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),$a(r);for(h=0,p=_e;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),$a(r);return[3,12];case 4:for(v=0,g=Ie;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),$a(r);return Pe(),[3,12];case 5:if(2===be(e))return[3,12];if(!((y=re()).length>0))return[3,11];w=0,k=y,z.label=6;case 6:return w<k.length?(E=k[w],0!==(O=be(e))?[3,8]:[4,ke(e)]):[3,10];case 7:O=z.sent(),z.label=8;case 8:if(2===O)return[3,10];for(S=E.data,N=E.metadata.active,T=E.metadata.suspend,M=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=N?["tag","attributes","value"]:["tag"];C<D.length;C++)if(S[j=D[C]])switch(j){case"tag":A=Ue(E),R=I?-1:1,r.push(E.id*R),E.parent&&N&&(r.push(E.parent),E.previous&&r.push(E.previous)),r.push(T?"*M":S[j]),A&&2===A.length&&r.push("".concat("#").concat(Fe(A[0]),".").concat(Fe(A[1])));break;case"attributes":for(L in S[j])void 0!==S[j][L]&&r.push(Ve(L,S[j][L],M));break;case"value":St(E.metadata.fraud,E.id,S[j]),r.push(m(S[j],S.tag,M,I))}z.label=9;case 9:return w++,[3,6];case 10:6===t&&_(a),$a(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=11;case 11:return[3,12];case 12:return[2]}}))}))}function Ue(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=te(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Fe(t){return t.toString(36)}function Ve(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var Be=[],Je=null,Ge={},Ke=[],Ze=!1,Qe=null;function $e(t,e){!1===Je.has(t)&&(Je.set(t,e),(Qe=null===Qe&&Ze?new IntersectionObserver(nn,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Qe)&&t&&t.nodeType===Node.ELEMENT_NODE&&Qe.observe(t))}function tn(t){return Je&&Je.has(t)}function en(){for(var t=[],e=0,n=Ke;e<n.length;e++){var a=n[e],r=Jt(a.node);r?(a.state.data.id=r,Ge[r]=a.state.data,Be.push(a.state)):t.push(a)}Ke=t,Be.length>0&&qe(7)}function nn(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(Je.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Jt(r):null,s=c in Ge?Ge[c]:{id:c,name:Je.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;an(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Qe&&Qe.unobserve(r)}}Be.length>0&&qe(7)}function an(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 Ge&&r||!(e.id in Ge))&&(Ge[e.id]=e,Be.push(rn(e))):Ke.push({node:t,state:rn(e)})}function rn(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function on(){Be=[]}var un=[];function cn(t){var e=La(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):"";un.push({time:s(t),event:42,data:{target:La(t),type:e.type,value:n,checksum:a}}),ge(Ha.bind(this,42))}}function sn(){un=[]}function ln(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Kt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var dn=["input","textarea","radio","button","canvas"],fn=[];function hn(t){gi(t,"click",pn.bind(this,9,t),!0)}function pn(t,e,n){var a=Kt(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=ln(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=La(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&&(fn.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:gn(c),context:mn(l),text:vn(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),ge(Ha.bind(this,t)))}function vn(t){var e=null;if(t){var n=t.textContent||String(t.value||"")||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function gn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(dn.indexOf(e)>=0)return 0}return 1}function mn(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 bn(){fn=[]}var yn=[];function wn(t,e){yn.push({time:s(e),event:38,data:{target:La(e),action:t}}),ge(Ha.bind(this,38))}function kn(){yn=[]}var En=null,On=[];function Sn(t){var e=La(t),n=ee(e);if(e&&e.type&&n){var a=e.value;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a};On.length>0&&On[On.length-1].data.target===r.target&&On.pop(),On.push({time:s(t),event:27,data:r}),Y(En),En=X(Nn,1e3,27)}}function Nn(t){ge(Ha.bind(this,t))}function Tn(){On=[]}var Mn,xn=[],_n=null;function In(t,e,n){var a=Kt(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=ln(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&Dn({time:s(n),event:t,data:{target:La(n),x:i,y:o}})}function Cn(t,e,n){var a=Kt(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&&Dn({time:o,event:t,data:{target:La(n),x:l,y:d}})}}function Dn(t){switch(t.event){case 12:case 15:case 19:var e=xn.length,n=e>1?xn[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)&&xn.pop(),xn.push(t),Y(_n),_n=X(jn,500,t.event);break;default:xn.push(t),jn(t.event)}}function jn(t){ge(Ha.bind(this,t))}function An(){xn=[]}function Rn(){var t=document.documentElement;Mn={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},Ha(11)}function Ln(){Mn=null}var zn=[],Hn=null,Pn=null,Wn=null;function Xn(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?La(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Kt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u=window.innerWidth,c=window.innerHeight,l=u/3,d=u>c?.15*c:.2*c,f=c-d,h=Yn(l,d),p=Yn(l,f),v={time:s(t),event:10,data:{target:a,x:i,y:o,top:h,bottom:p}};if(null===t&&0===i&&0===o||null===i||null===o)return Hn=h,void(Pn=p);var g=zn.length,m=g>1?zn[g-2]:null;m&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(m,v)&&zn.pop(),zn.push(v),Y(Wn),Wn=X(qn,500,10)}function Yn(t,e){var n,a,r;return"caretPositionFromPoint"in document?r=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(r=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),r||(r=document.elementFromPoint(t,e)),r&&r.nodeType===Node.TEXT_NODE&&(r=r.parentNode),r}function qn(t){ge(Ha.bind(this,t))}function Un(){var t,e;if(Hn){var n=za(Hn,null);Pr(31,null===(t=null==n?void 0:n.hash)||void 0===t?void 0:t.join("."))}if(Pn){var a=za(Pn,null);Pr(32,null===(e=null==a?void 0:a.hash)||void 0===e?void 0:e.join("."))}}var Fn=null,Vn=null,Bn=null;function Jn(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=Fn.start?Fn.start:null;null!==Vn&&null!==Fn.start&&n!==e.anchorNode&&(Y(Bn),Gn(21)),Fn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Vn=e,Y(Bn),Bn=X(Gn,500,21)}}function Gn(t){ge(Ha.bind(this,t))}function Kn(){Vn=null,Fn={start:0,startOffset:0,end:0,endOffset:0}}var Zn,Qn,$n=[];function ta(t){$n.push({time:s(t),event:39,data:{target:La(t)}}),ge(Ha.bind(this,39))}function ea(){$n=[]}function na(t){Zn={name:t.type},Ha(26,s(t)),Fi()}function aa(){Zn=null}function ra(t){void 0===t&&(t=null),Qn={visible:"visibilityState"in document?document.visibilityState:"default"},Ha(28,s(t))}function ia(){Qn=null}function oa(t){!function(t){var e=Kt(t);gi(e?e.contentWindow:t===document?window:t,"scroll",Xn,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(hn(t),function(t){gi(t,"cut",wn.bind(this,0),!0),gi(t,"copy",wn.bind(this,1),!0),gi(t,"paste",wn.bind(this,2),!0)}(t),function(t){gi(t,"mousedown",In.bind(this,13,t),!0),gi(t,"mouseup",In.bind(this,14,t),!0),gi(t,"mousemove",In.bind(this,12,t),!0),gi(t,"wheel",In.bind(this,15,t),!0),gi(t,"dblclick",In.bind(this,16,t),!0),gi(t,"touchstart",Cn.bind(this,17,t),!0),gi(t,"touchend",Cn.bind(this,18,t),!0),gi(t,"touchmove",Cn.bind(this,19,t),!0),gi(t,"touchcancel",Cn.bind(this,20,t),!0)}(t),function(t){gi(t,"input",Sn,!0)}(t),function(t){gi(t,"selectstart",Jn.bind(this,t),!0),gi(t,"selectionchange",Jn.bind(this,t),!0)}(t),function(t){gi(t,"change",cn,!0)}(t),function(t){gi(t,"submit",ta,!0)}(t))}var ua=Object.freeze({__proto__:null,observe:oa,start:function(){Pa=[],Xa(),bn(),kn(),An(),Tn(),gi(window,"resize",Rn),Rn(),gi(document,"visibilitychange",ra),ra(),zn=[],Xn(),Kn(),sn(),ea(),gi(window,"pagehide",na)},stop:function(){Pa=[],Xa(),bn(),kn(),Y(_n),xn.length>0&&jn(xn[xn.length-1].event),Y(En),Tn(),Ln(),ia(),Y(Wn),zn=[],Hn=null,Pn=null,Kn(),Y(Bn),sn(),ea(),aa()}}),ca=/[^0-9\.]/g;function sa(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":Pr(5,t[a]),Pr(8,t.creator),Pr(18,t.headline);break;case"product":Pr(5,t[a]),Pr(10,t.name),Pr(12,t.sku),t.brand&&Pr(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(W(11,la(t.ratingValue,100)),W(18,la(t.bestRating)),W(19,la(t.worstRating))),W(12,la(t.ratingCount)),W(17,la(t.reviewCount));break;case"person":Pr(8,t.name);break;case"offer":Pr(7,t.availability),Pr(14,t.itemCondition),Pr(13,t.priceCurrency),Pr(12,t.sku),W(13,la(t.price));break;case"brand":Pr(6,t.name)}null!==r&&"object"==typeof r&&sa(r)}}function la(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(ca,""))*e)}return null}var da=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last","aria-label"],fa=/[\r\n]+/g;function ha(t,e,n){var a,r=null;if(2===e&&!1===ae(t))return r;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var i=!1===ae(t)?"add":"update",o=t.parentElement?t.parentElement:null,u=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=u&&t.parentNode?Kt(t.parentNode):o;var c=t,s={tag:(u?"iframe:":"")+"*D",attributes:{name:c.name,publicId:c.publicId,systemId:c.systemId}};ce[i](t,o,s,e);break;case Node.DOCUMENT_NODE:t===document&&Bt(document),pa(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var l=t;if(l.host)if(Bt(l),"function"===typeof l.constructor&&l.constructor.toString().indexOf("[native code]")>=0){pa(l);var d={tag:"*S",attributes:{style:""}};ce[i](t,l.host,d,e)}else ce[i](t,l.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===i||o&&ae(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var f={tag:"*T",value:t.nodeValue};ce[i](t,o,f,e)}break;case Node.ELEMENT_NODE:var h=t,p=h.tagName,v=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;da.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(h);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===h.namespaceURI&&(p="svg:"+p),p){case"HTML":o=u&&o?Kt(o):null;var g={tag:(u?"iframe:":"")+p,attributes:v};ce[i](t,o,g,e);break;case"SCRIPT":if("type"in v&&"application/ld+json"===v.type)try{sa(JSON.parse(h.text.replace(fa,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:p,attributes:{},value:""};ce[i](t,o,m,e);break;case"META":var b="property"in v?"property":"name"in v?"name":null;if(b&&"content"in v){var y=v.content;switch(v[b]){case"og:title":Pr(20,y);break;case"og:type":Pr(19,y);break;case"generator":Pr(21,y)}}break;case"HEAD":var w={tag:p,attributes:v},k=u&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,ce[i](t,o,w,e);break;case"BASE":var E=ee(t.parentElement);if(E){var O=document.createElement("a");O.href=v.href,E.data.attributes["*B"]=O.protocol+"//"+O.host+O.pathname}break;case"STYLE":var S={tag:p,attributes:v,value:va(h)};ce[i](t,o,S,e);break;case"IFRAME":var N=t,T={tag:p,attributes:v};Gt(N)&&(!function(t){!1===ae(t)&&gi(t,"load",Ra.bind(this,t,"childList"),!0)}(N),T.attributes["*O"]="true",N.contentDocument&&N.contentWindow&&"loading"!==N.contentDocument.readyState&&(r=N.contentDocument)),ce[i](t,o,T,e);break;case"LINK":if(Ur&&"stylesheet"===v.rel){for(var M in Object.keys(document.styleSheets)){var x=document.styleSheets[M];if(x.ownerNode==h){var _={tag:"STYLE",attributes:v,value:ga(x)};ce[i](t,o,_,e);break}}break}var I={tag:p,attributes:v};ce[i](t,o,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in v&&v.src.startsWith("data:")&&(v.src="");var C={tag:p,attributes:v};ce[i](t,o,C,e);break;default:var D={tag:p,attributes:v};h.shadowRoot&&(r=h.shadowRoot),ce[i](t,o,D,e)}}return r}function pa(t){ae(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](pi(Ia)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),ba.push(n))}catch(t){dr(2,0,t?t.name:null)}}(t),oa(t))}function va(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0||t.id.length>0)&&(e=ga(t.sheet)),e}function ga(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(dr(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 ma(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i,o,u;return rt(this,(function(c){switch(c.label){case 0:a=[t],c.label=1;case 1:if(!(a.length>0))return[3,4];for(r=a.shift(),i=r.firstChild;i;)a.push(i),i=i.nextSibling;return 0!==(o=be(e))?[3,3]:[4,ke(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=ha(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var ba=[],ya=[],wa=null,ka=null,Ea=null,Oa=null,Sa=null,Na=[],Ta=null,Ma=null,xa={};function _a(){if(ba=[],Na=[],Ta=null,Ma=0,xa={},null===wa&&(wa=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return _i()&&Aa(this.ownerNode),wa.apply(this,arguments)}),null===Oa&&(Oa=CSSMediaRule.prototype.insertRule,CSSMediaRule.prototype.insertRule=function(){return _i()&&Aa(this.parentStyleSheet.ownerNode),Oa.apply(this,arguments)}),null===ka&&(ka=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return _i()&&Aa(this.ownerNode),ka.apply(this,arguments)}),null===Sa&&(Sa=CSSMediaRule.prototype.deleteRule,CSSMediaRule.prototype.deleteRule=function(){return _i()&&Aa(this.parentStyleSheet.ownerNode),Sa.apply(this,arguments)}),null===Ea){Ea=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return _i()?Aa(Ea.apply(this,arguments)):Ea.apply(this,arguments)}}catch(t){Ea=null}}}function Ia(t){var e=s();K(6,e),ya.push({time:e,mutations:t}),ge(Ca,1).then((function(){X(Me),pi(en)()}))}function Ca(){return at(this,void 0,void 0,(function(){var t,e,n,a,r,i,u,c,l,d;return rt(this,(function(f){switch(f.label){case 0:ye(t={id:Gr(),cost:3}),f.label=1;case 1:if(!(ya.length>0))return[3,8];e=ya.shift(),n=s(),a=0,r=e.mutations,f.label=2;case 2:return a<r.length?(i=r[a],0!==(u=be(t))?[3,4]:[4,ke(t)]):[3,6];case 3:u=f.sent(),f.label=4;case 4:if(2===u)return[3,6];switch(c=i.target,l=o.throttleDom?function(t,e,n,a){var r=t.target?ee(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var i=a>Ma,o=ee(t.target),u=o&&o.selector?o.selector.join():t.target.nodeName,c=[r.selector?r.selector.join():"",u,t.attributeName,Da(t.addedNodes),Da(t.removedNodes)].join();xa[c]=c in xa?xa[c]:[0,n];var s=xa[c];if(!1===i&&s[0]>=10&&ja(s[2],2,e),s[0]=i?s[1]===n?s[0]:s[0]+1:1,s[1]=n,10===s[0])return s[2]=t.removedNodes,"suspend";if(s[0]>10)return""}return t.type}(i,t,n,e.time):i.type,l&&c&&c.ownerDocument&&Bt(c.ownerDocument),l&&c&&c.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&c.host&&Bt(c),l){case"attributes":ha(c,3,e.time);break;case"characterData":ha(c,4,e.time);break;case"childList":ja(i.addedNodes,1,t,e.time),ja(i.removedNodes,2,t,e.time);break;case"suspend":(d=ee(c))&&(d.metadata.suspend=!0)}f.label=5;case 5:return a++,[3,2];case 6:return[4,qe(6,t,e.time)];case 7:return f.sent(),[3,1];case 8:return we(t),[2]}}))}))}function Da(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function ja(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i;return rt(this,(function(o){switch(o.label){case 0:a=t?t.length:0,r=0,o.label=1;case 1:return r<a?1!==e?[3,2]:(ma(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=be(n))?[3,4]:[4,ke(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ha(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Aa(t){return Na.indexOf(t)<0&&Na.push(t),Ta&&Y(Ta),Ta=X((function(){!function(){for(var t=0,e=Na;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ae(n))continue;Ra(n,a?"childList":"characterData")}}Na=[]}()}),33),t}function Ra(t,e){pi(Ia)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function La(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return Ma=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function za(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ee(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=te(t),a=t in Ge?Ge[t]:{id:t,visibility:0,interaction:16,name:Je.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}an(n,a,r,a.visibility)}(r.region,e),i.fraud&&St(i.fraud,r.id,n||r.data.value)}}return a}function Ha(t,e){return void 0===e&&(e=null),at(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,y,w,k,E,O,S,N,T,M,_,C,D,j,A,R,L,z,H,P,W,X;return rt(this,(function(Y){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=xn;r<i.length;r++)W=i[r],(o=za(W.data.target,W.event)).id>0&&((a=[W.time,W.event]).push(o.id),a.push(W.data.x),a.push(W.data.y),$a(a),x(W.event,W.data.x,W.data.y));An();break;case 9:for(u=0,c=fn;u<c.length;u++)W=c[u],l=za(W.data.target,W.event,W.data.text),a=[W.time,W.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(W.data.x),a.push(W.data.y),a.push(W.data.eX),a.push(W.data.eY),a.push(W.data.button),a.push(W.data.reaction),a.push(W.data.context),a.push(m(W.data.text,"click",l.privacy)),a.push(b(W.data.link)),a.push(d),a.push(W.data.trust),$a(a),Ya(W.time,W.event,d,W.data.x,W.data.y,W.data.reaction,W.data.context);bn();break;case 38:for(f=0,h=yn;f<h.length;f++)W=h[f],a=[W.time,W.event],(z=za(W.data.target,W.event)).id>0&&(a.push(z.id),a.push(W.data.action),$a(a));kn();break;case 11:p=Mn,a.push(p.width),a.push(p.height),x(t,p.width,p.height),Ln(),$a(a);break;case 26:v=Zn,a.push(v.name),aa(),$a(a);break;case 27:for(g=0,y=On;g<y.length;g++)W=y[g],w=za(W.data.target,W.event,W.data.value),(a=[W.time,W.event]).push(w.id),a.push(m(W.data.value,"input",w.privacy)),$a(a);Tn();break;case 21:(k=Fn)&&(E=za(k.start,t),O=za(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Kn(),$a(a));break;case 10:for(S=0,N=zn;S<N.length;S++)W=N[S],T=za(W.data.target,W.event),M=za(W.data.top,W.event),_=za(W.data.bottom,W.event),C=(null==M?void 0:M.hash)?M.hash.join("."):"",D=(null==_?void 0:_.hash)?_.hash.join("."):"",T.id>0&&((a=[W.time,W.event]).push(T.id),a.push(W.data.x),a.push(W.data.y),a.push(C),a.push(D),$a(a),x(W.event,W.data.x,W.data.y,W.time));zn=[],Hn=null,Pn=null;break;case 42:for(j=0,A=un;j<A.length;j++)W=A[j],a=[W.time,W.event],(z=za(W.data.target,W.event)).id>0&&((a=[W.time,W.event]).push(z.id),a.push(W.data.type),a.push(m(W.data.value,"change",z.privacy)),a.push(m(W.data.checksum,"checksum",z.privacy)),$a(a));sn();break;case 39:for(R=0,L=$n;R<L.length;R++)W=L[R],a=[W.time,W.event],(z=za(W.data.target,W.event)).id>0&&(a.push(z.id),$a(a));ea();break;case 22:for(H=0,P=Wa;H<P.length;H++)W=P[H],(a=[W.time,W.event]).push(W.data.type),a.push(W.data.hash),a.push(W.data.x),a.push(W.data.y),a.push(W.data.reaction),a.push(W.data.context),$a(a,!1);Xa();break;case 28:X=Qn,a.push(X.visible),$a(a),I(n,X.visible),ia()}return[2]}))}))}var Pa=[],Wa=[];function Xa(){Wa=[]}function Ya(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),Pa.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),x(e,a,r)}var qa,Ua,Fa,Va,Ba,Ja=0,Ga=0,Ka=null,Za=0;function Qa(){Va=!0,Ja=0,Ga=0,Za=0,qa=[],Ua=[],Fa={},Ba=null}function $a(t,e){if(void 0===e&&(e=!0),Va){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:Ja+=r.length;case 37:case 6:case 43:case 45:case 46:Ga+=r.length,qa.push(r);break;default:Ua.push(r)}H(25);var i=function(){var t=!1===o.lean&&Ja>0?100:ci.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Za>2*i&&(Y(Ka),Ka=null),e&&null===Ka&&(25!==a&&V(),Ka=X(er,i),Za=n,Cr(Ga))}}function tr(){Y(Ka),er(!0),Ja=0,Ga=0,Za=0,qa=[],Ua=[],Fa={},Ba=null,Va=!1}function er(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 Ka=null,(e=!1===o.lean&&Ga>0&&(Ga<1048576||ci.sequence>0))&&W(1,1),en(),function(){var t=[];Wa=[];for(var e=ci.start+ci.duration,n=Math.max(e-2e3,0),a=0,r=Pa;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Wa.push(i),t.push(i))}Pa=t,Ha(22)}(),kt(),n=!0===t,a=JSON.stringify(di(n)),r="[".concat(Ua.join(),"]"),i=e?"[".concat(qa.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,pt(u)];case 2:s=l.sent(),l.label=3;case 3:return P(2,(c=s)?c.length:u.length),nr(u,c,ci.sequence,n),Ua=[],e&&(qa=[],Ga=0,Ja=0),[2]}}))}))}function nr(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))&&rr(n)}catch(t){}if(!1===i){n in Fa?Fa[n].attempts++:Fa[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){hi(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){pi(ar)(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),rr(n)}}function ar(t,e){var n=Fa[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?Dr(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),nr(n.data,null,e)):(Ba={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&_r(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":Dr(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&wr(i[1]);break;case"SIGNAL":i.length>1&&mt(i[1])}}}(t.responseText),0===t.status&&(nr(n.data,null,e,!0),Dr(3)),t.status>=200&&t.status<=208&&rr(e),delete Fa[e]))}function rr(t){1===t&&Qr()}var ir,or={};function ur(t){var e=t.error||t;return e.message in or||(or[e.message]=0),or[e.message]++>=5||e&&e.message&&(ir={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},cr(31)),!0}function cr(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(ir.message),e.push(ir.line),e.push(ir.column),e.push(ir.stack),e.push(b(ir.source)),$a(e);break;case 33:sr&&(e.push(sr.code),e.push(sr.name),e.push(sr.message),e.push(sr.stack),e.push(sr.severity),$a(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),$a(e,!1))}return[2]}))}))}var sr,lr={};function dr(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 lr&&lr[t].indexOf(i)>=0||(sr={code:t,name:n,message:a,stack:r,severity:e},t in lr?lr[t].push(i):lr[t]=[i],cr(33))}var fr,hr={},pr=new Set,vr={},gr={},mr={},br={};function yr(){Or()}function wr(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 vr[a]={},gr[a]={},mr[a]={},br[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);vr[a][u]=Tr(l);break;case 2:gr[a][u]=c;break;case 4:var d=c.substring(1,c.length);mr[a][u]=d}}}catch(t){dr(8,1,t?t.name:null)}}function kr(t){return JSON.parse(JSON.stringify(t))}function Er(){try{for(var t in vr){var e=parseInt(t);if(""==br[e]||document.querySelector(br[e])){var n=vr[e];for(var a in n){var r=parseInt(a),i=(h=Mr(kr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&Sr(e,r,i)}var o=gr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)Sr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=mr[e];for(var d in l){var f=parseInt(d);Sr(e,f,$t(l[f]).trim().substring(0,1e4))}}}pr.size>0&&_r(40)}catch(t){dr(5,1,t?t.name:null)}var h}function Or(){pr.clear()}function Sr(t,e,n){var a,r=!1;t in hr||(hr[t]={},r=!0),a=mr[t],0==Object.keys(a).length||e in hr[t]&&hr[t][e]==n||(r=!0),hr[t][e]=n,r&&pr.add(t)}function Nr(){Or()}function Tr(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function Mr(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&xr(r,a.condition))n=Mr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(xr(c,a.condition)){var s=Mr(t,c);s&&i.push(s)}}n=i}return n}return null}function xr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function _r(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),e.push(n.data.scrollTime),$a(e,!1)),M();break;case 25:e.push(R.gap),$a(e);break;case 35:e.push(fr.check),$a(e,!1);break;case 3:e.push(tt.key),$a(e);break;case 2:e.push(Ba.sequence),e.push(Ba.attempts),e.push(Ba.status),$a(e,!1);break;case 24:j.key&&e.push(j.key),e.push(j.value),$a(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(),$a(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={},$a(e,!1)}break;case 1:var h=Object.keys(Lr);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(Lr[g])}Xr(),$a(e,!1)}break;case 36:var m=Object.keys(G);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([],G[w]))}Q(),$a(e,!1)}break;case 40:pr.forEach((function(t){e.push(t);var n=[];for(var a in hr[t]){var r=parseInt(a,10);n.push(r),n.push(hr[t][a])}e.push(n)})),Or(),$a(e,!1)}}function Ir(){fr={check:0}}function Cr(t){if(0===fr.check){var e=fr.check;e=ci.sequence>=128?1:e,e=ci.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==fr.check&&Dr(e)}}function Dr(t){fr.check=t,Zr(),Fi()}function jr(){0!==fr.check&&_r(35)}function Ar(){fr=null}var Rr=null,Lr=null;function zr(){Rr={},Lr={}}function Hr(){Rr={},Lr={}}function Pr(t,e){e&&(e="".concat(e),t in Rr||(Rr[t]=[]),Rr[t].indexOf(e)<0&&(Rr[t].push(e),t in Lr||(Lr[t]=[]),Lr[t].push(e),Rr[t].length>128&&Dr(5)))}function Wr(){_r(1)}function Xr(){Lr={}}var Yr=null,qr=[],Ur=0,Fr=null;function Vr(){Fr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Ur=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:ei(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=ri("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-ni(n[1])<18e5&&(t.session=n[0],t.count=ni(n[2])+1,t.upgrade=ni(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=ai(),i=o.projectId||d(location.host);Yr={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,Pr(0,t),Pr(3,e),Pr(1,b(location.href,!!Ur)),Pr(2,document.referrer),Pr(15,function(){var t=ei();if(o.track&&$r(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),Pr(16,document.documentElement.lang),Pr(17,document.dir),Pr(26,"".concat(window.devicePixelRatio)),Pr(28,r.dob.toString()),Pr(29,r.version.toString()),W(0,a.ts),W(1,0),W(35,Ur),navigator&&(Pr(9,navigator.language),W(33,navigator.hardwareConcurrency),W(32,navigator.maxTouchPoints),W(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;Pr(22,t.platform),Pr(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){Pr(24,t.name+"~"+t.version)})),Pr(25,t.model),W(27,t.mobile?1:0)})):Pr(22,navigator.platform)),screen&&(W(14,Math.round(screen.width)),W(15,Math.round(screen.height)),W(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=ri(s);l&&ot(s,l)}ti(r)}function Br(){Fr=null,Yr=null}function Jr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Yr&&(n||!1===e)?t(Yr,!o.lean):qr.push({callback:t,wait:e})}function Gr(){return Yr?[Yr.userId,Yr.sessionId,Yr.pageNum].join("."):""}function Kr(t){if(void 0===t&&(t=!0),!t)return o.track=!1,oi("_clsk","",-Number.MAX_VALUE),oi("_clck","",-Number.MAX_VALUE),Fi(),void window.setTimeout(Ui,250);_i()&&(o.track=!0,ti(ai(),1))}function Zr(){oi("_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){qr.length>0&&qr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Yr,!o.lean)}))}(n),oi("_clsk",[Yr.sessionId,t,Yr.pageNum,n,e].join("|"),1)}function $r(t,e){try{return!!t[e]}catch(t){return!1}}function ti(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)&&oi("_clck",[Yr.userId,2,n.toString(36),e,a].join("|"),365)}function ei(){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 ni(t,e){return void 0===e&&(e=10),parseInt(t,e)}function ai(){var t={id:ei(),version:0,expiry:null,consent:0,dob:0},e=ri("_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=ni(n[1])),n.length>2&&(t.expiry=ni(n[2],36)),n.length>3&&1===ni(n[3])&&(t.consent=1),n.length>4&&ni(n[1])>1&&(t.dob=ni(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function ri(t){var e;if($r(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=ii(r[1]),o=i[0],u=i[1];o;)o=(e=ii(u))[0],u=e[1];return u}}}return null}function ii(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function oi(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||$r(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===Fr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(Fr=".".concat(c[s]).concat(Fr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(Fr),ri(t)===e))return;Fr=""}}catch(t){Fr=""}document.cookie=Fr?"".concat(u).concat(";").concat("domain=").concat(Fr):u}}var ui,ci=null;function si(){var t=Yr;ci={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 li(){ci=null}function di(t){return ci.start=ci.start+ci.duration,ci.duration=s()-ci.start,ci.sequence++,ci.upload=t&&"sendBeacon"in navigator?1:0,ci.end=t?1:0,[ci.version,ci.sequence,ci.start,ci.duration,ci.projectId,ci.userId,ci.sessionId,ci.pageNum,ci.upload,ci.end]}function fi(){ui=[]}function hi(t){if(ui&&-1===ui.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:ci.version,p:ci.projectId,u:ci.userId,s:ci.sessionId,n:ci.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)),ui.push(t.message)}}return t}function pi(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw hi(t)}var n=performance.now()-e;P(4,n),n>30&&(H(7),W(6,n))}}var vi=[];function gi(t,e,n,a){void 0===a&&(a=!1),n=pi(n);try{t[u("addEventListener")](e,n,a),vi.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function mi(){for(var t=0,e=vi;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}vi=[]}var bi=null,yi=null,wi=null,ki=0;function Ei(){return!(ki++>20)||(dr(4,0),!1)}function Oi(){ki=0,wi!==Ni()&&(Fi(),window.setTimeout(Si,250))}function Si(){Ui(),W(29,1)}function Ni(){return location.href?location.href.replace(location.hash,""):location.href}var Ti=!1;function Mi(){Ti=!0,c=performance.now()+performance.timeOrigin,ve(),mi(),fi(),wi=Ni(),ki=0,gi(window,"popstate",Oi),null===bi&&(bi=history.pushState,history.pushState=function(){bi.apply(this,arguments),_i()&&Ei()&&Oi()}),null===yi&&(yi=history.replaceState,history.replaceState=function(){yi.apply(this,arguments),_i()&&Ei()&&Oi()})}function xi(){wi=null,ki=0,fi(),mi(),ve(),c=0,Ti=!1}function _i(){return Ti}function Ii(t){if(null===t||Ti)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function Ci(){Ui(),A("clarity","restart")}var Di=Object.freeze({__proto__:null,start:function(){!function(){Ot=[],W(26,navigator.webdriver?1:0);try{W(31,window.top==window.self?1:2)}catch(t){W(31,0)}}(),gi(window,"error",ur),or={},lr={}},stop:function(){lr={}}});function ji(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),ye(e={id:Gr(),cost:3}),[4,ma(document,e,0)];case 1:return n.sent(),[4,qe(5,e,t)];case 2:return n.sent(),we(e),[2]}}))}))}var Ai=Object.freeze({__proto__:null,hashText:$t,start:function(){Te(),Me(),on(),Qe=null,Je=new WeakMap,Ge={},Ke=[],Ze=!!window.IntersectionObserver,Ut(),o.delayDom?gi(window,"load",(function(){_a()})):_a(),ge(ji,1).then((function(){pi(Me)(),pi(en)(),pi(Un)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Pe(),Xe(De,"play"),Xe(je,"pause"),Xe(Ae,"cancel"),Xe(Re,"finish"),null===Ce&&(Ce=Element.prototype.animate,Element.prototype.animate=function(){var t=Ce.apply(this,arguments);return Ye(t,"play"),t}))},stop:function(){on(),Je=null,Ge={},Ke=[],Qe&&(Qe.disconnect(),Qe=null),Ze=!1,Ft(),function(){for(var t=0,e=ba;t<e.length;t++){var n=e[t];n&&n.disconnect()}ba=[],xa={},ya=[],Na=[],Ma=0,Ta=null}(),Te(),Pe()}});var Ri,Li=null;function zi(){Li=null}function Hi(t){Li={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(Li.fetchStart),n.push(Li.connectStart),n.push(Li.connectEnd),n.push(Li.requestStart),n.push(Li.responseStart),n.push(Li.responseEnd),n.push(Li.domInteractive),n.push(Li.domComplete),n.push(Li.loadEventStart),n.push(Li.loadEventEnd),n.push(Li.redirectCount),n.push(Li.size),n.push(Li.type),n.push(Li.protocol),n.push(Li.encodedSize),n.push(Li.decodedSize),zi(),$a(n)),[2]}))}))}(29)}var Pi=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Wi(){try{Ri&&Ri.disconnect(),Ri=new PerformanceObserver(pi(Xi));for(var t=0,e=Pi;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&P(9,0),Ri.observe({type:n,buffered:!0}))}}catch(t){dr(3,1)}}function Xi(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":Hi(a);break;case"resource":var r=a.name;Pr(4,Yi(r)),r!==o.upload&&r!==o.fallback||W(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&W(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&P(9,1e3*a.value);break;case"largest-contentful-paint":e&&W(8,a.startTime)}}}(t.getEntries())}function Yi(t){var e=document.createElement("a");return e.href=t,e.host}var qi=[Di,Ai,ua,Object.freeze({__proto__:null,start:function(){zi(),function(){navigator&&"connection"in navigator&&Pr(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?gi(window,"load",X.bind(this,Wi,0)):Wi():dr(3,0)}()},stop:function(){Ri&&Ri.disconnect(),Ri=null,zi()}})];function Ui(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===Ti&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(Ii(t),Mi(),yt(),qi.forEach((function(t){return pi(t.start)()})),null===t&&Gi())}function Fi(){_i()&&(qi.slice().reverse().forEach((function(t){return pi(t.stop)()})),wt(),xi(),void 0!==Bi&&(Bi[Ji]=function(){(Bi[Ji].q=Bi[Ji].q||[]).push(arguments),"start"===arguments[0]&&Bi[Ji].q.unshift(Bi[Ji].q.pop())&&Gi()}))}var Vi=Object.freeze({__proto__:null,consent:Kr,event:A,hashText:$t,identify:ut,metadata:Jr,pause:function(){_i()&&(A("clarity","pause"),null===he&&(he=new Promise((function(t){pe=t}))))},resume:function(){_i()&&(he&&(pe(),he=null,null===fe&&me()),A("clarity","resume"))},set:ot,signal:function(t){gt=t},start:Ui,stop:Fi,upgrade:et,version:l}),Bi=window,Ji="clarity";function Gi(){if(void 0!==Bi){if(Bi[Ji]&&Bi[Ji].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Bi[Ji]&&Bi[Ji].q||[];for(Bi[Ji]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return Vi[t].apply(Vi,e)},Bi[Ji].v=l;t.length>0;)Bi[Ji].apply(Bi,t.shift())}}Gi()}();
@@ -161,7 +161,7 @@ function stop$F() {
161
161
  startTime = 0;
162
162
  }
163
163
 
164
- var version$1 = "0.7.40";
164
+ var version$1 = "0.7.42";
165
165
 
166
166
  // tslint:disable: no-bitwise
167
167
  function hash (input, precision) {
@@ -1235,7 +1235,10 @@ function privacy(node, value, parent) {
1235
1235
  case maskTags.indexOf(tag) >= 0:
1236
1236
  var type = attributes["type" /* Constant.Type */];
1237
1237
  var meta_1 = "" /* Constant.Empty */;
1238
- Object.keys(attributes).forEach(function (x) { return meta_1 += attributes[x].toLowerCase(); });
1238
+ var excludedPrivacyAttributes_1 = ["class" /* Constant.Class */, "style" /* Constant.Style */];
1239
+ Object.keys(attributes)
1240
+ .filter(function (x) { return !excludedPrivacyAttributes_1.includes(x); })
1241
+ .forEach(function (x) { return (meta_1 += attributes[x].toLowerCase()); });
1239
1242
  var exclude = maskExclude.some(function (x) { return meta_1.indexOf(x) >= 0; });
1240
1243
  // Regardless of privacy mode, always mask off user input from input boxes or drop downs with two exceptions:
1241
1244
  // (1) The node is detected to be one of the excluded fields, in which case we drop everything
@@ -3021,9 +3024,11 @@ function observe$2(root) {
3021
3024
  function getStyleValue(style) {
3022
3025
  // Call trim on the text content to ensure we do not process white spaces ( , \n, \r\n, \t, etc.)
3023
3026
  // Also, check if stylesheet has any data-* attribute, if so process rules instead of looking up text
3027
+ // Additionally, check if style node has an id - if so it's at a high risk to have experienced dynamic
3028
+ // style updates which would make the textContent out of date with its true style contribution.
3024
3029
  var value = style.textContent ? style.textContent.trim() : "" /* Constant.Empty */;
3025
3030
  var dataset = style.dataset ? Object.keys(style.dataset).length : 0;
3026
- if (value.length === 0 || dataset > 0) {
3031
+ if (value.length === 0 || dataset > 0 || style.id.length > 0) {
3027
3032
  value = getCssRules(style.sheet);
3028
3033
  }
3029
3034
  return value;
@@ -3108,6 +3113,8 @@ var mutations = [];
3108
3113
  var insertRule = null;
3109
3114
  var deleteRule = null;
3110
3115
  var attachShadow = null;
3116
+ var mediaInsertRule = null;
3117
+ var mediaDeleteRule = null;
3111
3118
  var queue$1 = [];
3112
3119
  var timeout$1 = null;
3113
3120
  var activePeriod = null;
@@ -3131,6 +3138,15 @@ function start$h() {
3131
3138
  return insertRule.apply(this, arguments);
3132
3139
  };
3133
3140
  }
3141
+ if (mediaInsertRule === null) {
3142
+ mediaInsertRule = CSSMediaRule.prototype.insertRule;
3143
+ CSSMediaRule.prototype.insertRule = function () {
3144
+ if (active()) {
3145
+ schedule(this.parentStyleSheet.ownerNode);
3146
+ }
3147
+ return mediaInsertRule.apply(this, arguments);
3148
+ };
3149
+ }
3134
3150
  if (deleteRule === null) {
3135
3151
  deleteRule = CSSStyleSheet.prototype.deleteRule;
3136
3152
  CSSStyleSheet.prototype.deleteRule = function () {
@@ -3140,6 +3156,15 @@ function start$h() {
3140
3156
  return deleteRule.apply(this, arguments);
3141
3157
  };
3142
3158
  }
3159
+ if (mediaDeleteRule === null) {
3160
+ mediaDeleteRule = CSSMediaRule.prototype.deleteRule;
3161
+ CSSMediaRule.prototype.deleteRule = function () {
3162
+ if (active()) {
3163
+ schedule(this.parentStyleSheet.ownerNode);
3164
+ }
3165
+ return mediaDeleteRule.apply(this, arguments);
3166
+ };
3167
+ }
3143
3168
  // Add a hook to attachShadow API calls
3144
3169
  // In case we are unable to add a hook and browser throws an exception,
3145
3170
  // reset attachShadow variable and resume processing like before