clarity-visualize 0.7.63 → 0.7.64
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.
|
@@ -176,9 +176,11 @@ var config$2 = {
|
|
|
176
176
|
delayDom: false,
|
|
177
177
|
throttleDom: true,
|
|
178
178
|
conversions: false,
|
|
179
|
-
longTask: 30,
|
|
180
179
|
includeSubdomains: true,
|
|
181
180
|
throttleMutations: false,
|
|
181
|
+
dropMutations: false,
|
|
182
|
+
criticalMs: 200,
|
|
183
|
+
discard: [],
|
|
182
184
|
};
|
|
183
185
|
|
|
184
186
|
function api(method) {
|
|
@@ -1157,7 +1159,7 @@ function state$a(timer) {
|
|
|
1157
1159
|
return 2 /* Task.Stop */;
|
|
1158
1160
|
}
|
|
1159
1161
|
function start$y(timer) {
|
|
1160
|
-
tracker[key(timer)] = { start: performance.now(), calls: 0, yield:
|
|
1162
|
+
tracker[key(timer)] = { start: performance.now(), calls: 0, yield: 30 /* Setting.LongTask */ };
|
|
1161
1163
|
}
|
|
1162
1164
|
function restart$2(timer) {
|
|
1163
1165
|
var id = key(timer);
|
|
@@ -1242,14 +1244,14 @@ function requestIdleCallbackPolyfill(callback, options) {
|
|
|
1242
1244
|
var currentTime = performance.now();
|
|
1243
1245
|
var elapsed = currentTime - startTime;
|
|
1244
1246
|
var duration = currentTime - event.data;
|
|
1245
|
-
if (duration >
|
|
1247
|
+
if (duration > 30 /* Setting.LongTask */ && elapsed < options.timeout) {
|
|
1246
1248
|
requestAnimationFrame(function () { outgoing.postMessage(currentTime); });
|
|
1247
1249
|
}
|
|
1248
1250
|
else {
|
|
1249
1251
|
var didTimeout_1 = elapsed > options.timeout;
|
|
1250
1252
|
callback({
|
|
1251
1253
|
didTimeout: didTimeout_1,
|
|
1252
|
-
timeRemaining: function () { return didTimeout_1 ?
|
|
1254
|
+
timeRemaining: function () { return didTimeout_1 ? 30 /* Setting.LongTask */ : Math.max(0, 30 /* Setting.LongTask */ - duration); }
|
|
1253
1255
|
});
|
|
1254
1256
|
}
|
|
1255
1257
|
};
|
|
@@ -2053,7 +2055,7 @@ function monitor(frame) {
|
|
|
2053
2055
|
}
|
|
2054
2056
|
function active$2() {
|
|
2055
2057
|
activePeriod = time$1() + 3000 /* Setting.MutationActivePeriod */;
|
|
2056
|
-
time$1() +
|
|
2058
|
+
time$1() + config$2.criticalMs;
|
|
2057
2059
|
}
|
|
2058
2060
|
function handle$1(m) {
|
|
2059
2061
|
// Queue up mutation records for asynchronous processing
|
|
@@ -2174,14 +2176,15 @@ function track$5(m, timer, instance, timestamp) {
|
|
|
2174
2176
|
// calculate inactive period based on the timestamp of the mutation not when the mutation is processed
|
|
2175
2177
|
var inactive = timestamp > activePeriod;
|
|
2176
2178
|
var target = get$2(m.target);
|
|
2177
|
-
var
|
|
2179
|
+
var element_1 = target && target.selector ? target.selector.join() : m.target.nodeName;
|
|
2178
2180
|
var parent_1 = value.selector ? value.selector.join() : "" /* Constant.Empty */;
|
|
2179
2181
|
// Check if its a low priority (e.g., ads related) element mutation happening during critical period
|
|
2182
|
+
// If the discard list is empty, we discard all mutations during critical period
|
|
2180
2183
|
var lowPriMutation = config$2.throttleMutations ;
|
|
2181
2184
|
// We use selector, instead of id, to determine the key (signature for the mutation) because in some cases
|
|
2182
2185
|
// repeated mutations can cause elements to be destroyed and then recreated as new DOM nodes
|
|
2183
2186
|
// In those cases, IDs will change however the selector (which is relative to DOM xPath) remains the same
|
|
2184
|
-
var key = [parent_1,
|
|
2187
|
+
var key = [parent_1, element_1, m.attributeName, names(m.addedNodes), names(m.removedNodes)].join();
|
|
2185
2188
|
// Initialize an entry if it doesn't already exist
|
|
2186
2189
|
history$4[key] = key in history$4 ? history$4[key] : [0, instance];
|
|
2187
2190
|
var h = history$4[key];
|
|
@@ -2202,8 +2205,10 @@ function track$5(m, timer, instance, timestamp) {
|
|
|
2202
2205
|
if (instance > timestamp + 3000 /* Setting.MutationActivePeriod */) {
|
|
2203
2206
|
return m.type;
|
|
2204
2207
|
}
|
|
2205
|
-
|
|
2206
|
-
|
|
2208
|
+
{
|
|
2209
|
+
// we only store the most recent mutation for a given key if it is being throttled
|
|
2210
|
+
throttledMutations[key] = { mutation: m, timestamp: timestamp };
|
|
2211
|
+
}
|
|
2207
2212
|
return "throttle" /* Constant.Throttle */;
|
|
2208
2213
|
}
|
|
2209
2214
|
}
|
|
@@ -3542,7 +3547,7 @@ function measure (method) {
|
|
|
3542
3547
|
}
|
|
3543
3548
|
var duration = performance.now() - start;
|
|
3544
3549
|
sum(4 /* Metric.TotalCost */, duration);
|
|
3545
|
-
if (duration >
|
|
3550
|
+
if (duration > 30 /* Setting.LongTask */) {
|
|
3546
3551
|
count$1(7 /* Metric.LongTaskCount */);
|
|
3547
3552
|
max(6 /* Metric.ThreadBlockedTime */, duration);
|
|
3548
3553
|
log$1(9 /* Code.FunctionExecutionTime */, 0 /* Severity.Info */, "".concat(method.dn || method.name, "-").concat(duration));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){"use strict";function t(t,e,n,a){return new(n||(n=Promise))((function(i,r){function o(t){try{c(a.next(t))}catch(t){r(t)}}function s(t){try{c(a.throw(t))}catch(t){r(t)}}function c(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,s)}c((a=a.apply(t,e||[])).next())}))}function e(t,e){var n,a,i,r,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return r={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(r[Symbol.iterator]=function(){return this}),r;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;r&&(r=0,s[0]&&(o=0)),o;)try{if(n=1,a&&(i=2&s[0]?a.return:s[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,s[1])).done)return i;switch(a=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,a=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=e.call(t,o)}catch(t){s=[6,t],a=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}var n,a=function(){function t(e){var n=this;this.regionMap={},this.regions={},this.metrics={},this.lean=!1,this.reset=function(){n.metrics={},n.lean=!1,n.regions={},n.regionMap={}},this.metric=function(e){var a;if(n.state.options.metadata){var i=[],r=[];for(var o in e.data){var s=typeof e.data[o];if("number"===s||1===e.event&&o===37..toString()){o in n.metrics||(n.metrics[o]=0);var c=parseInt(o,10),l="object"===s?Number(null===(a=e.data[o])||void 0===a?void 0:a[0]):e.data[o];!(o in t.METRIC_MAP)||"html-price"!==t.METRIC_MAP[o].unit&&"ld-price"!==t.METRIC_MAP[o].unit?n.metrics[o]+=l:n.metrics[o]=l,n.lean=1===c&&0===l||n.lean}}for(var u in n.metrics)if(u in t.METRIC_MAP){o=n.metrics[u];var d=t.METRIC_MAP[u],h="unit"in d?d.unit:"";i.push("<li><h2>".concat(n.value(o,h),"<span>").concat(n.key(h),"</span></h2>").concat(d.name,"</li>"))}for(var f in n.regions){var A=n.regions[f],p=10===A.visibility?"visible":20===A.interaction?"clicked":"";r.push('<span class="'.concat(p,'">').concat(f,"</span>"))}n.state.options.metadata.innerHTML="<ul>".concat(i.join(""),"</ul><div>").concat(r.join(""),"</div>")}},this.key=function(t){switch(t){case"html-price":case"ld-price":case"cls":return"";default:return t}},this.value=function(t,e){switch(e){case"KB":return Math.round(t/1024);case"s":return Math.round(t/10)/100;case"cls":return t/1e3;case"html-price":return t/100;default:return t}},this.state=e}return t.prototype.region=function(t){for(var e=0,n=t.data;e<n.length;e++){var a=n[e];a.name in this.regions||(this.regions[a.name]={interaction:a.interaction,visibility:a.visibility}),this.regionMap[a.id]=a.name}},t.METRIC_MAP=((n={})[2]={name:"Total Bytes",unit:"KB"},n[4]={name:"Total Cost",unit:"ms"},n[3]={name:"Layout Cost",unit:"ms"},n[8]={name:"LCP",unit:"s"},n[9]={name:"CLS",unit:"cls"},n[7]={name:"Long Tasks"},n[24]={name:"Cart Total",unit:"html-price"},n[13]={name:"Product Price",unit:"ld-price"},n[6]={name:"Thread Blocked",unit:"ms"},n[37]={name:"INP",unit:"ms"},n),t}(),i={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,longTask:30,includeSubdomains:!0,throttleMutations:!1};function r(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var o=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-o),0)}function c(t,e){void 0===e&&(e=null);for(var n,a=5381,i=a,r=0;r<t.length;r+=2){if(a=(a<<5)+a^t.charCodeAt(r),r+1<t.length)i=(i<<5)+i^t.charCodeAt(r+1)}return n=Math.abs(a+11579*i),(e?n%Math.pow(2,e):n).toString(36)}var l=/\S/gi,u=255,d=!0,h=null,f=null,A=null;function p(t,e,n,a,i){if(void 0===a&&(a=!1),t){if("input"==e&&("checkbox"===i||"radio"===i))return 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,i=!1,r=!1,o=null;b();for(var s=0;s<t.length;s++){var c=t.charCodeAt(s);if(a=a||c>=48&&c<=57,i=i||64===c,r=9===c||10===c||13===c||32===c,0===s||s===t.length-1||r){if(a||i){null===o&&(o=t.split(""));var l=t.substring(e+1,r?s:s+1);l=d&&null!==A?l.match(A)?l:y(l,"▪","▫"):g(l),o.splice(e+1-n,l.length,l),n+=l.length-1}r&&(a=!1,i=!1,e=s)}}return o?o.join(""):t}(t);case"input":case"change":return w(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?v(t):g(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return w(t);case"placeholder":return g(t)}break;case 4:switch(e){case"*T":case"data-":return a?v(t):g(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 y(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 m(t,e,n){void 0===e&&(e=!1),void 0===n&&(n=!1);var a=t;if(e)a="".concat("https://").concat("Electron");else{var r=i.drop;if(r&&r.length>0&&t&&t.indexOf("?")>0){var o=t.split("?"),s=o[0],c=o[1];a=s+"?"+c.split("&").map((function(t){return r.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}}return n&&(a=a.substring(0,u)),a}function v(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),i=t.substr(0,a),r=t.substr(a+e.length);return"".concat(i).concat(e.length.toString(36)).concat(r)}return t}function g(t){return t.replace(l,"•")}function y(t,e,n){return b(),t?t.replace(f,e).replace(h,n):t}function w(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 b(){if(d&&null===h)try{h=new RegExp("\\p{N}","gu"),f=new RegExp("\\p{L}","gu"),A=new RegExp("\\p{Sc}","gu")}catch(t){d=!1}}var x=null;function E(t,e,n,a){switch(t){case 8:x.docWidth=e,x.docHeight=n;break;case 11:x.screenWidth=e,x.screenHeight=n;break;case 10:x.scrollX=e,x.scrollY=n,x.scrollTime=a;break;default:x.pointerX=e,x.pointerY=n}}function k(t){x.activityTime=t}var S=null,M=null;function T(t){t in S||(S[t]=0),t in M||(M[t]=0),S[t]++,M[t]++}function C(t,e){null!==e&&(t in S||(S[t]=0),t in M||(M[t]=0),S[t]+=e,M[t]+=e)}function I(t,e){null!==e&&!1===isNaN(e)&&(t in S||(S[t]=0),(e>S[t]||0===S[t])&&(M[t]=e,S[t]=e))}function R(t,e,n){return window.setTimeout(Aa(t),e,n)}function O(t){return window.clearTimeout(t)}var N=null;function B(t,e,n,a){return new(n||(n=Promise))((function(i,r){function o(t){try{c(a.next(t))}catch(t){r(t)}}function s(t){try{c(a.throw(t))}catch(t){r(t)}}function c(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,s)}c((a=a.apply(t,e||[])).next())}))}function D(t,e){var n,a,i,r,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return r={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(r[Symbol.iterator]=function(){return this}),r;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;r&&(r=0,s[0]&&(o=0)),o;)try{if(n=1,a&&(i=2&s[0]?a.return:s[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,s[1])).done)return i;switch(a=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,a=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=e.call(t,o)}catch(t){s=[6,t],a=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}var Y,F=[];function U(t,e,n){null!==t&&n&&n.length>=5&&(Y={id:t,target:e,checksum:c(n,28)},F.indexOf(Y.checksum)<0&&(F.push(Y.checksum),Zn(41)))}var P="load,active,fixed,visible,focus,show,collaps,animat".split(","),L={};function z(){L={}}function Q(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,i=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 r="".concat(a).concat(t.tag).concat(i),o="id"in n&&n.id.length>0?n.id:null,s="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return H(t)})).join("."):null;if(s&&s.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("~"),i=e[n].indexOf(".");e[n]=e[n].substring(0,i>0?i:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(s);c in L||(L[c]=[]),L[c].indexOf(t.id)<0&&L[c].push(t.id),r="".concat(c).concat("~").concat(L[c].indexOf(t.id))}else r="".concat(a).concat(t.tag,".").concat(s).concat(i);return r=o&&H(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):r,r}}function H(t){if(!t)return!1;if(P.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 X=Object.freeze({__proto__:null,get:Q,reset:z}),j=1,V=null,W=[],q=[],G={},K=[],J=[],Z=[],_=[],$=[],tt=[],et=null,nt=null,at=null,it=null;function rt(){ot(),st(document,!0)}function ot(){j=1,W=[],q=[],G={},K=[],J=[],Z="address,password,contact".split(","),_="password,secret,pass,social,ssn,code,hidden".split(","),$="radio,checkbox,range,button,reset,submit".split(","),tt="INPUT,SELECT,TEXTAREA".split(","),V=new Map,et=new WeakMap,nt=new WeakMap,at=new WeakMap,it=new WeakMap,z()}function st(t,e){void 0===e&&(e=!1);try{e&&i.unmask.forEach((function(t){return t.indexOf("!")<0?J.push(t):K.push(t.substr(1))})),"querySelectorAll"in t&&(i.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Dn(t,"".concat(e[0]))}))})),i.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return at.set(t,3)}))})),i.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return it.set(t,e[0])}))})),J.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return at.set(t,0)}))})))}catch(t){ea(5,1,t?t.name:null)}}function ct(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=et.get(t);return!n&&e&&(n=j++,et.set(t,n)),n||null}function lt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(nt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function ut(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&nt.has(e)?nt.get(e):null}function dt(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 ht(t){var e=t.parent&&t.parent in W?W[t.parent]:null,n=e?e.selector:null,a=t.data,i=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=W[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),r={id:t.id,tag:a.tag,prefix:n,position:i,attributes:a.attributes};t.selector=[Q(r,0),Q(r,1)],t.hash=t.selector.map((function(t){return t?c(t):null})),t.hash.forEach((function(e){return G[e]=t.id}))}function ft(t){return V.has(t)?V.get(t):null}function At(t){var e=ct(t);return e in W?W[e]:null}function pt(t){return t in G?G[t]:null}function mt(t){return V.has(ct(t))}function vt(){for(var t=[],e=0,n=q;e<n.length;e++){var a=n[e];a in W&&t.push(W[a])}return q=[],t}function gt(t){if(V.get(t).nodeType!==Node.DOCUMENT_FRAGMENT_NODE){V.delete(t);var e=t in W?W[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){gt(a[n])}}}function yt(t){for(var e=null;null===e&&t.previousSibling;)e=ct(t.previousSibling),t=t.previousSibling;return e}function wt(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var i=q.indexOf(t);i>=0&&1===e&&a?(q.splice(i,1),q.push(t)):-1===i&&n&&q.push(t)}var bt=Object.freeze({__proto__:null,add:function(t,e,n,a){var i=e?ct(e):null;if(e&&i||null!=t.host||t.nodeType===Node.DOCUMENT_TYPE_NODE){var r=ct(t,!0),o=yt(t),s=null,c=Yn(t)?r:null,l=it.has(t)?it.get(t):null,u=1;i>=0&&W[i]&&((s=W[i]).children.push(r),c=null===c?s.region:c,l=null===l?s.metadata.fraud:l,u=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Dn(t,n.attributes["data-clarity-region"]),c=r),V.set(r,t),W[r]={id:r,parent:i,previous:o,children:[],data:n,selector:null,hash:null,region:c,metadata:{active:!0,suspend:!1,privacy:u,position:null,fraud:l,size:null}},function(t,e,n){var a,i=e.data,r=e.metadata,o=r.privacy,s=i.attributes||{},c=i.tag.toUpperCase();switch(!0){case tt.indexOf(c)>=0:var l=s.type,u="",d=["class","style"];Object.keys(s).filter((function(t){return!d.includes(t)})).forEach((function(t){return u+=s[t].toLowerCase()}));var h=_.some((function(t){return u.indexOf(t)>=0}));r.privacy="INPUT"===c&&$.indexOf(l)>=0?o:h?4:2;break;case"data-clarity-mask"in s:r.privacy=3;break;case"data-clarity-unmask"in s:r.privacy=0;break;case at.has(t):r.privacy=at.get(t);break;case it.has(t):r.privacy=2;break;case"*T"===c:var f=n&&n.data?n.data.tag:"",A=n&&n.selector?n.selector[1]:"",p=["STYLE","TITLE","svg:style"];r.privacy=p.includes(f)||K.some((function(t){return A.indexOf(t)>=0}))?0:o;break;case 1===o:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(s.class,Z,r);break;case"IMG"===c:(null===(a=s.src)||void 0===a?void 0:a.startsWith("blob:"))&&(r.privacy=3)}}(t,W[r],s),ht(W[r]),function(t){if("IMG"===t.data.tag&&3===t.metadata.privacy){var e=ft(t.id);!e||e.complete&&0!==e.naturalWidth||ma(e,"load",(function(){e.setAttribute("data-clarity-loaded","".concat(da()))})),t.metadata.size=[]}}(W[r]),wt(r,a)}},get:At,getId:ct,getNode:ft,getValue:function(t){return t in W?W[t]:null},has:mt,hashText:function(t){var e=ft(pt(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""},iframe:ut,lookup:pt,parse:st,sameorigin:lt,start:rt,stop:function(){ot()},update:function(t,e,n,a){var i=ct(t),r=e?ct(e):null,o=yt(t),s=!1,c=!1;if(i in W){var l=W[i];if(l.metadata.active=!0,l.previous!==o&&(s=!0,l.previous=o),l.parent!==r){s=!0;var u=l.parent;if(l.parent=r,null!==r&&r>=0){var d=null===o?0:W[r].children.indexOf(o)+1;W[r].children.splice(d,0,i),l.region=Yn(t)?i:W[r].region}else!function(t,e){if(t in W){var n=W[t];n.metadata.active=!1,n.parent=null,wt(t,e),gt(t)}}(i,a);if(null!==u&&u>=0){var h=W[u].children.indexOf(i);h>=0&&W[u].children.splice(h,1)}c=!0}for(var f in n)dt(l.data,n,f)&&(s=!0,l.data[f]=n[f]);ht(l),wt(i,a,s,c)}},updates:vt}),xt=5e3,Et={},kt=[],St=null,Mt=null;function Tt(t,e){return void 0===e&&(e=0),B(this,void 0,void 0,(function(){var n,a,i;return D(this,(function(r){for(n=0,a=kt;n<a.length;n++)if(a[n].task===t)return[2];return i=new Promise((function(n){kt[1===e?"unshift":"push"]({task:t,resolve:n,id:la()})})),null===St&&null===Mt&&Ct(),[2,i]}))}))}function Ct(){var t=kt.shift();t&&(St=t,t.task().then((function(){t.id===la()&&(t.resolve(),St=null,Ct())})).catch((function(e){t.id===la()&&(e&&ea(0,1,e.name,e.message,e.stack),St=null,Ct())})))}function It(t){var e=Bt(t);return e in Et?performance.now()-Et[e].start>Et[e].yield?0:1:2}function Rt(t){Et[Bt(t)]={start:performance.now(),calls:0,yield:i.longTask}}function Ot(t){var e=performance.now(),n=Bt(t),a=e-Et[n].start;C(t.cost,a),T(5),Et[n].calls>0&&C(4,a)}function Nt(t){return B(this,void 0,void 0,(function(){var e,n;return D(this,(function(a){switch(a.label){case 0:return(e=Bt(t))in Et?(Ot(t),n=Et[e],[4,Dt()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Bt(t);if(Et&&Et[e]){var n=Et[e].calls,a=Et[e].yield;Rt(t),Et[e].calls=n+1,Et[e].yield=a}}(t),a.label=2;case 2:return[2,e in Et?1:2]}}))}))}function Bt(t){return"".concat(t.id,".").concat(t.cost)}function Dt(){return B(this,void 0,void 0,(function(){return D(this,(function(t){switch(t.label){case 0:return[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Ft(t,{timeout:xt})}))]}}))}))}var Yt,Ft=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,o=a.port2;r.onmessage=function(a){var r=performance.now(),s=r-n,c=r-a.data;if(c>i.longTask&&s<e.timeout)requestAnimationFrame((function(){o.postMessage(r)}));else{var l=s>e.timeout;t({didTimeout:l,timeRemaining:function(){return l?i.longTask:Math.max(0,i.longTask-c)}})}},requestAnimationFrame((function(){o.postMessage(performance.now())}))};function Ut(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,i=t?t.offsetWidth:null,r=e?e.clientWidth:null,o=e?e.scrollWidth:null,s=e?e.offsetWidth:null,c=Math.max(n,a,i,r,o,s),l=t?t.clientHeight:null,u=t?t.scrollHeight:null,d=t?t.offsetHeight:null,h=e?e.clientHeight:null,f=e?e.scrollHeight:null,A=e?e.offsetHeight:null,p=Math.max(l,u,d,h,f,A);null!==Yt&&c===Yt.width&&p===Yt.height||null===c||null===p||(Yt={width:c,height:p},kn(8))}Ut.dn=19;var Pt=[];function Lt(t){var e=Qn(t);if(e){var n=e.value,a=n&&n.length>=5&&i.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?c(n,28):"";Pt.push({time:s(t),event:42,data:{target:Qn(t),type:e.type,value:n,checksum:a}}),Tt(Xn.bind(this,42))}}function zt(){Pt=[]}function Qt(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?ut(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}Lt.dn=5;var Ht=["input","textarea","radio","button","canvas"],Xt=[];function jt(t,e,n){var a=ut(e),i=a?a.contentDocument.documentElement:document.documentElement,r="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+i.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+i.scrollTop):null;if(a){var c=Qt(a);r=r?r+Math.round(c.x):r,o=o?o+Math.round(c.y):o}var l=Qn(n),u=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}(l),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}(l);0===n.detail&&d&&(r=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var h=d?Math.max(Math.floor((r-d.x)/d.w*32767),0):0,f=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==r&&null!==o&&(Xt.push({time:s(n),event:t,data:{target:l,x:r,y:o,eX:h,eY:f,button:n.button,reaction:Wt(l),context:qt(u),text:Vt(l),link:u?u.href:null,hash:null,trust:n.isTrusted?1:0}}),Tt(Xn.bind(this,t)))}function Vt(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 Wt(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(Ht.indexOf(e)>=0)return 0}return 1}function qt(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 Gt(){Xt=[]}jt.dn=6;var Kt=[];function Jt(t,e){Kt.push({time:s(e),event:38,data:{target:Qn(e),action:t}}),Tt(Xn.bind(this,38))}function Zt(){Kt=[]}Jt.dn=7;var _t=null,$t=[];function te(t){var e=Qn(t),n=At(e);if(e&&e.type&&n){var a=e.value,i=e.type;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a,type:i};$t.length>0&&$t[$t.length-1].data.target===r.target&&$t.pop(),$t.push({time:s(t),event:27,data:r}),O(_t),_t=R(ee,1e3,27)}}function ee(t){Tt(Xn.bind(this,t))}function ne(){$t=[]}te.dn=9;var ae,ie=[],re=null,oe=!1,se=0,ce=new Set;function le(t,e,n){var a=ut(e),i=a?a.contentDocument.documentElement:document.documentElement,r="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+i.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+i.scrollTop):null;if(a){var c=Qt(a);r=r?r+Math.round(c.x):r,o=o?o+Math.round(c.y):o}null!==r&&null!==o&&de({time:s(n),event:t,data:{target:Qn(n),x:r,y:o}})}function ue(t,e,n){var a=ut(e),i=a?a.contentDocument.documentElement:document.documentElement,r=n.changedTouches,o=s(n);if(r)for(var c=0;c<r.length;c++){var l=r[c],u="clientX"in l?Math.round(l.clientX+i.scrollLeft):null,d="clientY"in l?Math.round(l.clientY+i.scrollTop):null;u=u&&a?u+Math.round(a.offsetLeft):u,d=d&&a?d+Math.round(a.offsetTop):d;var h="identifier"in l?l.identifier:void 0;switch(t){case 17:0===ce.size&&(oe=!0,se=h),ce.add(h);break;case 18:case 20:ce.delete(h)}var f=oe&&se===h;null!==u&&null!==d&&de({time:o,event:t,data:{target:Qn(n),x:u,y:d,id:h,isPrimary:f}}),20!==t&&18!==t||se===h&&(oe=!1)}}function de(t){switch(t.event){case 12:case 15:case 19:var e=ie.length,n=e>1?ie[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,i=Math.sqrt(n*n+a*a),r=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&i<20&&r<25}(n,t)&&ie.pop(),ie.push(t),O(re),re=R(he,500,t.event);break;default:ie.push(t),he(t.event)}}function he(t){Tt(Xn.bind(this,t))}function fe(){ie=[]}le.dn=10,ue.dn=11;var Ae=null,pe=!1;function me(){var t=document.documentElement;ae={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},pe?(O(Ae),Ae=R(ve,500,11)):(Xn(11),pe=!0)}function ve(t){Tt(Xn.bind(this,t))}me.dn=12;var ge=[],ye=null,we=null,be=null;function xe(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?Qn(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var i=ut(a);e=i?i.contentWindow:e,a=n=a.documentElement}var r=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),c=window.innerWidth,l=window.innerHeight,u=c/3,d=c>l?.15*l:.2*l,h=l-d,f=Ee(u,d),A=Ee(u,h),p={time:s(t),event:10,data:{target:a,x:r,y:o,top:f,bottom:A}};if(null===t&&0===r&&0===o||null===r||null===o)return ye=f,void(we=A);var m=ge.length,v=m>1?ge[m-2]:null;v&&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}(v,p)&&ge.pop(),ge.push(p),O(be),be=R(ke,500,10)}function Ee(t,e){var n,a,i;return"caretPositionFromPoint"in document?i=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(i=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),i||(i=document.elementFromPoint(t,e)),i&&i.nodeType===Node.TEXT_NODE&&(i=i.parentNode),i}function ke(t){Tt(Xn.bind(this,t))}function Se(){var t,e;if(ye){var n=Hn(ye,null);oa(31,null===(t=null==n?void 0:n.hash)||void 0===t?void 0:t.join("."))}if(we){var a=Hn(we,null);oa(32,null===(e=null==a?void 0:a.hash)||void 0===e?void 0:e.join("."))}}xe.dn=13,Se.dn=14;var Me=null,Te=null,Ce=null;function Ie(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=Me.start?Me.start:null;null!==Te&&null!==Me.start&&n!==e.anchorNode&&(O(Ce),Re(21)),Me={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Te=e,O(Ce),Ce=R(Re,500,21)}}function Re(t){Tt(Xn.bind(this,t))}function Oe(){Te=null,Me={start:0,startOffset:0,end:0,endOffset:0}}Ie.dn=15;var Ne,Be,De=[];function Ye(t){De.push({time:s(t),event:39,data:{target:Qn(t)}}),Tt(Xn.bind(this,39))}function Fe(){De=[]}function Ue(t){Ne={name:t.type},Xn(26,s(t))}function Pe(t){void 0===t&&(t=null),Be={visible:"visibilityState"in document?document.visibilityState:"default"},Xn(28,s(t))}function Le(t){!function(t){var e=ut(t);ma(e?e.contentWindow:t===document?window:t,"scroll",xe,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(function(t){ma(t,"click",jt.bind(this,9,t),!0)}(t),function(t){ma(t,"cut",Jt.bind(this,0),!0),ma(t,"copy",Jt.bind(this,1),!0),ma(t,"paste",Jt.bind(this,2),!0)}(t),function(t){ma(t,"mousedown",le.bind(this,13,t),!0),ma(t,"mouseup",le.bind(this,14,t),!0),ma(t,"mousemove",le.bind(this,12,t),!0),ma(t,"wheel",le.bind(this,15,t),!0),ma(t,"dblclick",le.bind(this,16,t),!0),ma(t,"touchstart",ue.bind(this,17,t),!0),ma(t,"touchend",ue.bind(this,18,t),!0),ma(t,"touchmove",ue.bind(this,19,t),!0),ma(t,"touchcancel",ue.bind(this,20,t),!0)}(t),function(t){ma(t,"input",te,!0)}(t),function(t){ma(t,"selectstart",Ie.bind(this,t),!0),ma(t,"selectionchange",Ie.bind(this,t),!0)}(t),function(t){ma(t,"change",Lt,!0)}(t),function(t){ma(t,"submit",Ye,!0)}(t))}function ze(t,e,n,a){return B(this,void 0,void 0,(function(){var i,r,o,s,c;return D(this,(function(l){switch(l.label){case 0:i=[t],l.label=1;case 1:if(!(i.length>0))return[3,4];for(r=i.shift(),o=r.firstChild;o;)i.push(o),o=o.nextSibling;return 0!==(s=It(e))?[3,3]:[4,Nt(e)];case 2:s=l.sent(),l.label=3;case 3:return 2===s?[3,4]:((c=dn(r,n,a))&&i.push(c),[3,1]);case 4:return[2]}}))}))}Ye.dn=16,Ue.dn=17,Pe.dn=18;var Qe=[],He=[],Xe={},je=null,Ve=null,We=null,qe=null,Ge=null,Ke=null,Je=null,Ze={};function _e(){if(Qe=[],[],null,Je=0,Ze={},null===je&&(je=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return je.apply(this,arguments)}),"CSSMediaRule"in window&&null===qe&&(qe=CSSMediaRule.prototype.insertRule,CSSMediaRule.prototype.insertRule=function(){return qe.apply(this,arguments)}),null===Ve&&(Ve=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return Ve.apply(this,arguments)}),"CSSMediaRule"in window&&null===Ge&&(Ge=CSSMediaRule.prototype.deleteRule,CSSMediaRule.prototype.deleteRule=function(){return Ge.apply(this,arguments)}),null===We){We=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){if(!va)return We.apply(this,arguments)}}catch(t){We=null}}}function $e(t){var e=s();!function(t,e){if(t in N){var n=N[t],a=n[n.length-1];e-a[0]>100?N[t].push([e,0]):a[1]=e-a[0]}else N[t]=[[e,0]]}(6,e),He.push({time:e,mutations:t}),Tt(en,1).then((function(){R(Ut),Aa(Fn)()}))}function tn(t,e,n,a){return B(this,void 0,void 0,(function(){var r,o,s;return D(this,(function(c){switch(c.label){case 0:return 0!==(r=It(t))?[3,2]:[4,Nt(t)];case 1:r=c.sent(),c.label=2;case 2:if(2===r)return[2];switch(o=e.target,s=function(t,e,n,a){var r=t.target?At(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var o=a>Je,s=At(t.target),c=s&&s.selector?s.selector.join():t.target.nodeName,l=r.selector?r.selector.join():"",u=i.throttleMutations,d=[l,c,t.attributeName,nn(t.addedNodes),nn(t.removedNodes)].join();Ze[d]=d in Ze?Ze[d]:[0,n];var h=Ze[d];if(!1===o&&h[0]>=10&&an(h[2],2,e,a),h[0]=o||u?h[1]===n?h[0]:h[0]+1:1,h[1]=n,h[0]>=10||u)return h[2]=t.removedNodes,n>a+3e3?t.type:(Xe[d]={mutation:t,timestamp:a},"throttle")}return t.type}(e,t,n,a),s&&o&&o.ownerDocument&&st(o.ownerDocument),s&&o&&o.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&o.host&&st(o),s){case"attributes":dn(o,3,a);break;case"characterData":dn(o,4,a);break;case"childList":an(e.addedNodes,1,t,a),an(e.removedNodes,2,t,a)}return[2]}}))}))}function en(){return B(this,void 0,void 0,(function(){var t,e,n,a,i,r,o,c,l,u,d;return D(this,(function(h){switch(h.label){case 0:Rt(t={id:la(),cost:3}),h.label=1;case 1:if(!(He.length>0))return[3,3];for(e=He.shift(),n=s(),a=0,i=e.mutations;a<i.length;a++)r=i[a],tn(t,r,n,e.time);return[4,kn(6,t,e.time)];case 2:return h.sent(),[3,1];case 3:for(o=!1,c=0,l=Object.keys(Xe);c<l.length;c++)u=l[c],d=Xe[u],delete Xe[u],tn(t,d.mutation,s(),d.timestamp),o=!0;return Object.keys(Xe).length>0&&function(){Ke&&O(Ke);Ke=R((function(){Tt(en,1)}),33)}(),0===Object.keys(Xe).length&&o?[4,kn(6,t,s())]:[3,5];case 4:h.sent(),h.label=5;case 5:return function(){var t=s();Object.keys(Ze).length>1e4&&(Ze={},T(38));for(var e=0,n=Object.keys(Ze);e<n.length;e++){var a=n[e];t>Ze[a][1]+3e4&&delete Ze[a]}}(),Ot(t),[2]}}))}))}function nn(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function an(t,e,n,a){return B(this,void 0,void 0,(function(){var i,r,o,s;return D(this,(function(c){switch(c.label){case 0:i=t?t.length:0,r=0,c.label=1;case 1:return r<i?(o=t[r],1!==e?[3,2]:(ze(o,n,e,a),[3,5])):[3,6];case 2:return 0!==(s=It(n))?[3,4]:[4,Nt(n)];case 3:s=c.sent(),c.label=4;case 4:if(2===s)return[3,6];dn(o,e,a),c.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function rn(t,e){Aa($e)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}_e.dn=21,$e.dn=22,rn.dn=23;var on=/[^0-9\.]/g;function sn(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],i=t[a];if("@type"===a&&"string"==typeof i)switch(i=(i=i.toLowerCase()).indexOf("article")>=0||i.indexOf("posting")>=0?"article":i){case"article":case"recipe":oa(5,t[a]),oa(8,t.creator),oa(18,t.headline);break;case"product":oa(5,t[a]),oa(10,t.name),oa(12,t.sku),t.brand&&oa(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(I(11,cn(t.ratingValue,100)),I(18,cn(t.bestRating)),I(19,cn(t.worstRating))),I(12,cn(t.ratingCount)),I(17,cn(t.reviewCount));break;case"offer":oa(7,t.availability),oa(14,t.itemCondition),oa(13,t.priceCurrency),oa(12,t.sku),I(13,cn(t.price));break;case"brand":oa(6,t.name)}null!==i&&"object"==typeof i&&sn(i)}}function cn(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(on,""))*e)}return null}var ln=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last","aria-label"],un=/[\r\n]+/g;function dn(t,e,n){var a,i=null;if(2===e&&!1===mt(t))return i;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var r=!1===mt(t)?"add":"update",o=t.parentElement?t.parentElement:null,s=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=s&&t.parentNode?ut(t.parentNode):o;var c=t,l={tag:(s?"iframe:":"")+"*D",attributes:{name:c.name?c.name:"HTML",publicId:c.publicId,systemId:c.systemId}};bt[r](t,o,l,e);break;case Node.DOCUMENT_NODE:t===document&&st(document),wn(t,n),hn(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var u=t;if(u.host){if(st(u),"function"===typeof u.constructor&&u.constructor.toString().indexOf("[native code]")>=0){hn(u);var d={tag:"*S",attributes:{style:""}};bt[r](t,u.host,d,e)}else bt[r](t,u.host,{tag:"*P",attributes:{}},e);wn(t,n)}break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===r||o&&mt(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var h={tag:"*T",value:t.nodeValue};bt[r](t,o,h,e)}break;case Node.ELEMENT_NODE:var f=t,A=f.tagName,p=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var i=n[a].name;ln.indexOf(i)<0&&(e[i]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(f);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===f.namespaceURI&&(A="svg:"+A),A){case"HTML":o=s&&o?ut(o):o;var m={tag:(s?"iframe:":"")+A,attributes:p};bt[r](t,o,m,e);break;case"SCRIPT":if("type"in p&&"application/ld+json"===p.type)try{sn(JSON.parse(f.text.replace(un,"")))}catch(t){}break;case"NOSCRIPT":var v={tag:A,attributes:{},value:""};bt[r](t,o,v,e);break;case"META":var g="property"in p?"property":"name"in p?"name":null;if(g&&"content"in p){var y=p.content;switch(p[g]){case"og:title":oa(20,y);break;case"og:type":oa(19,y);break;case"generator":oa(21,y)}}break;case"HEAD":var w={tag:A,attributes:p},b=s&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=b.protocol+"//"+b.host+b.pathname,bt[r](t,o,w,e);break;case"BASE":var x=At(t.parentElement);if(x){var E=document.createElement("a");E.href=p.href,x.data.attributes["*B"]=E.protocol+"//"+E.host+E.pathname}break;case"STYLE":var k={tag:A,attributes:p,value:fn(f)};bt[r](t,o,k,e);break;case"IFRAME":var S=t,M={tag:A,attributes:p};lt(S)&&(!function(t){!1===mt(t)&&ma(t,"load",rn.bind(this,t,"childList"),!0)}(S),M.attributes["*O"]="true",S.contentDocument&&S.contentWindow&&"loading"!==S.contentDocument.readyState&&(i=S.contentDocument)),bt[r](t,o,M,e);break;case"LINK":var T={tag:A,attributes:p};bt[r](t,o,T,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in p&&p.src.startsWith("data:")&&(p.src="");var C={tag:A,attributes:p};bt[r](t,o,C,e);break;default:var I={tag:A,attributes:p};f.shadowRoot&&(i=f.shadowRoot),bt[r](t,o,I,e)}}return i}function hn(t){mt(t)||(!function(t){try{var e=r("MutationObserver"),n=e in window?new window[e](Aa($e)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),Qe.push(n))}catch(t){ea(2,0,t?t.name:null)}}(t),Le(t))}function fn(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=An(t.sheet)),e}function An(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(ea(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}var pn=[],mn=[],vn="claritySheetId",gn="claritySheetNum",yn={};function wn(t,e){if(e=e||s(),null==t?void 0:t.adoptedStyleSheets){I(36,1);for(var n=[],a=0,i=t.adoptedStyleSheets;a<i.length;a++){var r=i[a],o=sa.pageNum;r[gn]!==o&&(r[gn]=o,r[vn]=da(),bn(e,r[vn],0),bn(e,r[vn],2,An(r))),n.push(r[vn])}var c=ct(t,!0);yn[c]||(yn[c]=[]),function(t,e){if(t.length!==e.length)return!1;return t.every((function(t,n){return t===e[n]}))}(n,yn[c])||(!function(t,e,n,a){mn.push({time:t,event:45,data:{id:e,operation:n,newIds:a}}),kn(45)}(e,t==document?-1:ct(t),3,n),yn[c]=n)}}function bn(t,e,n,a){pn.push({time:t,event:46,data:{id:e,operation:n,cssRules:a}}),kn(46)}var xn=[];function En(){xn=[]}function kn(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),B(this,void 0,void 0,(function(){var a,i,r,o,c,l,u,d,h,f,A,m,v,g,y,w,b,x,S,M,T,C,I,R,O,N,B,Y,F;return D(this,(function(D){switch(D.label){case 0:switch(a=n||s(),i=[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 r=Yt,i.push(r.width),i.push(r.height),E(t,r.width,r.height),[3,12];case 2:for(o=0,c=Cn;o<c.length;o++)l=c[o],(i=[l.time,7]).push(l.data.id),i.push(l.data.interaction),i.push(l.data.visibility),i.push(l.data.name);return zn(),[3,12];case 3:for(u=0,d=mn;u<d.length;u++)v=d[u],(i=[v.time,v.event]).push(v.data.id),i.push(v.data.operation),i.push(v.data.newIds);for(h=0,f=pn;h<f.length;h++)v=f[h],(i=[v.time,v.event]).push(v.data.id),i.push(v.data.operation),i.push(v.data.cssRules);return mn=[],pn=[],[3,12];case 4:for(A=0,m=xn;A<m.length;A++)v=m[A],(i=[v.time,v.event]).push(v.data.id),i.push(v.data.operation),i.push(v.data.keyFrames),i.push(v.data.timing),i.push(v.data.timeline),i.push(v.data.targetId);return En(),[3,12];case 5:if(2===It(e))return[3,12];if(!((g=vt()).length>0))return[3,11];y=0,w=g,D.label=6;case 6:return y<w.length?(b=w[y],0!==(x=It(e))?[3,8]:[4,Nt(e)]):[3,10];case 7:x=D.sent(),D.label=8;case 8:if(2===x)return[3,10];for(S=b.data,M=b.metadata.active,T=b.metadata.suspend,C=b.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(b),R=0,O=M?["tag","attributes","value"]:["tag"];R<O.length;R++)if(S[N=O[R]])switch(N){case"tag":B=Sn(b),Y=I?-1:1,i.push(b.id*Y),b.parent&&M&&(i.push(b.parent),b.previous&&i.push(b.previous)),i.push(T?"*M":S[N]),B&&2===B.length&&i.push("".concat("#").concat(Mn(B[0]),".").concat(Mn(B[1])));break;case"attributes":for(F in S[N])void 0!==S[N][F]&&i.push(Tn(F,S[N][F],C));break;case"value":U(b.metadata.fraud,b.id,S[N]),i.push(p(S[N],S.tag,C,I))}D.label=9;case 9:return y++,[3,6];case 10:6===t&&k(a),function(t){for(var e=[],n={},a=0,i=null,r=0;r<t.length;r++)if("string"==typeof t[r]){var o=t[r],s=n[o]||-1;s>=0?i?i.push(s):(i=[s],e.push(i),a++):(i=null,e.push(o),n[o]=a++)}else i=null,e.push(t[r]),a++}(i),D.label=11;case 11:return[3,12];case 12:return[2]}}))}))}function Sn(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=ft(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Mn(t){return t.toString(36)}function Tn(t,e,n){return"".concat(t,"=").concat(p(e,0===t.indexOf("data-")?"data-":t,n))}var Cn=[],In=null,Rn={},On=[],Nn=!1,Bn=null;function Dn(t,e){!1===In.has(t)&&(In.set(t,e),(Bn=null===Bn&&Nn?new IntersectionObserver(Un,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Bn)&&t&&t.nodeType===Node.ELEMENT_NODE&&Bn.observe(t))}function Yn(t){return In&&In.has(t)}function Fn(){for(var t=[],e=0,n=On;e<n.length;e++){var a=n[e],i=ct(a.node);i?(a.state.data.id=i,Rn[i]=a.state.data,Cn.push(a.state)):t.push(a)}On=t,Cn.length>0&&kn(7)}function Un(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],i=a.target,r=a.boundingClientRect,o=a.intersectionRect,s=a.rootBounds;if(In.has(i)&&r.width+r.height>0&&s.width>0&&s.height>0){var c=i?ct(i):null,l=c in Rn?Rn[c]:{id:c,name:In.get(i),interaction:16,visibility:0},u=(o?o.width*o.height*1/(s.width*s.height):0)>.05||a.intersectionRatio>.8,d=(u||10==l.visibility)&&Math.abs(r.top)+s.height>r.height;Pn(i,l,l.interaction,d?13:u?10:0),l.visibility>=13&&Bn&&Bn.unobserve(i)}}Cn.length>0&&kn(7)}function Pn(t,e,n,a){var i=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 Rn&&i||!(e.id in Rn))&&(Rn[e.id]=e,Cn.push(Ln(e))):On.push({node:t,state:Ln(e)})}function Ln(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function zn(){Cn=[]}function Qn(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return Je=s()+3e3,s(),n&&n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Hn(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var i=At(t);if(null!==i){var r=i.metadata;a.id=i.id,a.hash=i.hash,a.privacy=r.privacy,i.region&&function(t,e){var n=ft(t),a=t in Rn?Rn[t]:{id:t,visibility:0,interaction:16,name:In.get(n)},i=16;switch(e){case 9:i=20;break;case 27:i=30}Pn(n,a,i,a.visibility)}(i.region,e),r.fraud&&U(r.fraud,i.id,n||i.data.value)}}return a}function Xn(t,e){return void 0===e&&(e=null),B(this,void 0,void 0,(function(){var n,a,i,r,o,c,l,u,d,h,f,A,v,g,y,w,b,S,M,T,C,I,R,N,B,Y,F,U,P,L,z,Q,H,X,j;return D(this,(function(D){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(i=0,r=ie;i<r.length;i++)X=r[i],(o=Hn(X.data.target,X.event)).id>0&&((a=[X.time,X.event]).push(o.id),a.push(X.data.x),a.push(X.data.y),void 0!==X.data.id&&(a.push(X.data.id),void 0!==X.data.isPrimary&&a.push(X.data.isPrimary.toString())),E(X.event,X.data.x,X.data.y));fe();break;case 9:for(c=0,l=Xt;c<l.length;c++)X=l[c],u=Hn(X.data.target,X.event,X.data.text),a=[X.time,X.event],d=u.hash?u.hash.join("."):"",a.push(u.id),a.push(X.data.x),a.push(X.data.y),a.push(X.data.eX),a.push(X.data.eY),a.push(X.data.button),a.push(X.data.reaction),a.push(X.data.context),a.push(p(X.data.text,"click",u.privacy)),a.push(m(X.data.link)),a.push(d),a.push(X.data.trust),qn(X.time,X.event,d,X.data.x,X.data.y,X.data.reaction,X.data.context);Gt();break;case 38:for(h=0,f=Kt;h<f.length;h++)X=f[h],a=[X.time,X.event],(z=Hn(X.data.target,X.event)).id>0&&(a.push(z.id),a.push(X.data.action));Zt();break;case 11:A=ae,a.push(A.width),a.push(A.height),E(t,A.width,A.height),ae=null,O(Ae);break;case 26:v=Ne,a.push(v.name),Ne=null;break;case 27:for(g=0,y=$t;g<y.length;g++)X=y[g],w=Hn(X.data.target,X.event,X.data.value),(a=[X.time,X.event]).push(w.id),a.push(p(X.data.value,"input",w.privacy,!1,X.data.type));ne();break;case 21:(b=Me)&&(S=Hn(b.start,t),M=Hn(b.end,t),a.push(S.id),a.push(b.startOffset),a.push(M.id),a.push(b.endOffset),Oe());break;case 10:for(T=0,C=ge;T<C.length;T++)X=C[T],I=Hn(X.data.target,X.event),R=Hn(X.data.top,X.event),N=Hn(X.data.bottom,X.event),B=(null==R?void 0:R.hash)?R.hash.join("."):"",Y=(null==N?void 0:N.hash)?N.hash.join("."):"",I.id>0&&((a=[X.time,X.event]).push(I.id),a.push(X.data.x),a.push(X.data.y),a.push(B),a.push(Y),E(X.event,X.data.x,X.data.y,X.time));ge=[],ye=null,we=null;break;case 42:for(F=0,U=Pt;F<U.length;F++)X=U[F],a=[X.time,X.event],(z=Hn(X.data.target,X.event)).id>0&&((a=[X.time,X.event]).push(z.id),a.push(X.data.type),a.push(p(X.data.value,"change",z.privacy)),a.push(p(X.data.checksum,"checksum",z.privacy)));zt();break;case 39:for(P=0,L=De;P<L.length;P++)X=L[P],a=[X.time,X.event],(z=Hn(X.data.target,X.event)).id>0&&a.push(z.id);Fe();break;case 22:for(Q=0,H=Vn;Q<H.length;Q++)X=H[Q],(a=[X.time,X.event]).push(X.data.type),a.push(X.data.hash),a.push(X.data.x),a.push(X.data.y),a.push(X.data.reaction),a.push(X.data.context);Wn();break;case 28:j=Be,a.push(j.visible),function(t,e){x.visible="visible"===e?1:0,x.visible||k(t)}(n,j.visible),Be=null}return[2]}))}))}Fn.dn=24;var jn=[],Vn=[];function Wn(){Vn=[]}function qn(t,e,n,a,i,r,o){void 0===r&&(r=1),void 0===o&&(o=0),jn.push({time:t,event:22,data:{type:e,hash:n,x:a,y:i,reaction:r,context:o}}),E(e,a,i)}var Gn,Kn={};function Jn(t){var e=t.error||t;return e.message in Kn||(Kn[e.message]=0),Kn[e.message]++>=5||e&&e.message&&(Gn={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Zn(31)),!0}function Zn(t){return B(this,void 0,void 0,(function(){var e;return D(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Gn.message),e.push(Gn.line),e.push(Gn.column),e.push(Gn.stack),e.push(m(Gn.source));break;case 33:_n&&(e.push(_n.code),e.push(_n.name),e.push(_n.message),e.push(_n.stack),e.push(_n.severity));break;case 41:Y&&(e.push(Y.id),e.push(Y.target),e.push(Y.checksum))}return[2]}))}))}Jn.dn=4;var _n,$n,ta={};function ea(t,e,n,a,i){void 0===n&&(n=null),void 0===a&&(a=null),void 0===i&&(i=null);var r=n?"".concat(n,"|").concat(a):"";t in ta&&ta[t].indexOf(r)>=0||(_n={code:t,name:n,message:a,stack:i,severity:e},t in ta?ta[t].push(r):ta[t]=[r],Zn(33))}function na(t){$n.check=t,5!==t&&function(t,e,n){if(navigator&&navigator.cookieEnabled||ua(document,"cookie")){var a=function(t){return encodeURIComponent(t)}(e),i=new Date;i.setDate(i.getDate()+n);var r=i?"expires="+i.toUTCString():"",o="".concat(t,"=").concat(a).concat(";").concat(r).concat(";path=/");try{if(null===ca){for(var s=location.hostname?location.hostname.split("."):[],c=s.length-1;c>=0;c--)if(ca=".".concat(s[c]).concat(ca||""),c<s.length-1&&(document.cookie="".concat(o).concat(";").concat("domain=").concat(ca),ha(t)===e))return;ca=""}}catch(t){ca=""}document.cookie=ca?"".concat(o).concat(";").concat("domain=").concat(ca):o}}("_clsk","",0)}var aa=null,ia=null,ra=!1;function oa(t,e){if(e&&(e="".concat(e),t in aa||(aa[t]=[]),aa[t].indexOf(e)<0)){if(aa[t].length>128)return void(ra||(ra=!0,na(5)));aa[t].push(e),t in ia||(ia[t]=[]),ia[t].push(e)}}var sa=null,ca=null;function la(){return sa?[sa.userId,sa.sessionId,sa.pageNum].join("."):""}function ua(t,e){try{return!!t[e]}catch(t){return!1}}function da(){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 ha(t,e){var n;if(void 0===e&&(e=!1),ua(document,"cookie")){var a=document.cookie.split(";");if(a)for(var i=0;i<a.length;i++){var r=a[i].split("=");if(r.length>1&&r[0]&&r[0].trim()===t){for(var o=fa(r[1]),s=o[0],c=o[1];s;)s=(n=fa(c))[0],c=n[1];return e?c.endsWith("".concat("~","1"))?c.substring(0,c.length-2):null:c}}}return null}function fa(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Aa(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw t}var n=performance.now()-e;C(4,n),n>i.longTask&&(T(7),I(6,n),ea(9,0,"".concat(t.dn||t.name,"-").concat(n)))}}var pa=[];function ma(t,e,n,a){void 0===a&&(a=!1),n=Aa(n);try{t[r("addEventListener")](e,n,a),pa.push({event:e,target:t,listener:n,capture:a})}catch(t){}}var va=!1;var ga=null;function ya(){ga=null}function wa(t){ga={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){B(this,void 0,void 0,(function(){var e,n;return D(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(ga.fetchStart),n.push(ga.connectStart),n.push(ga.connectEnd),n.push(ga.requestStart),n.push(ga.responseStart),n.push(ga.responseEnd),n.push(ga.domInteractive),n.push(ga.domComplete),n.push(ga.loadEventStart),n.push(ga.loadEventEnd),n.push(ga.redirectCount),n.push(ga.size),n.push(ga.type),n.push(ga.protocol),n.push(ga.encodedSize),n.push(ga.decodedSize),ya()),[2]}))}))}(29)}var ba,xa=0,Ea=1/0,ka=0,Sa=[],Ma=new Map,Ta=function(){return(xa||0)-0},Ca=function(){if(!Sa.length)return-1;var t=Math.min(Sa.length-1,Math.floor(Ta()/50));return Sa[t].latency},Ia=function(t){if(t.interactionId&&!(t.duration<40)){!function(t){"interactionCount"in performance?xa=performance.interactionCount:t.interactionId&&(Ea=Math.min(Ea,t.interactionId),ka=Math.max(ka,t.interactionId),xa=ka?(ka-Ea)/7+1:0)}(t);var e=Sa[Sa.length-1],n=Ma.get(t.interactionId);if(n||Sa.length<10||t.duration>(null==e?void 0:e.latency)){if(n)t.duration>n.latency&&(n.latency=t.duration);else{var a={id:t.interactionId,latency:t.duration};Ma.set(a.id,a),Sa.push(a)}Sa.sort((function(t,e){return e.latency-t.latency})),Sa.length>10&&Sa.splice(10).forEach((function(t){return Ma.delete(t.id)}))}}},Ra=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint","event"];function Oa(){try{ba&&ba.disconnect(),ba=new PerformanceObserver(Aa(Na));for(var t=0,e=Ra;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&C(9,0),ba.observe({type:n,buffered:!0}))}}catch(t){ea(3,1)}}function Na(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":wa(a);break;case"resource":var r=a.name;oa(4,Ba(r)),r!==i.upload&&r!==i.fallback||I(28,a.duration);break;case"longtask":T(7);break;case"first-input":e&&I(10,a.processingStart-a.startTime);break;case"event":e&&"PerformanceEventTiming"in window&&"interactionId"in PerformanceEventTiming.prototype&&(Ia(a),oa(37,Ca().toString()));break;case"layout-shift":e&&!a.hadRecentInput&&C(9,1e3*a.value);break;case"largest-contentful-paint":e&&I(8,a.startTime)}}}(t.getEntries())}function Ba(t){var e=document.createElement("a");return e.href=t,e.host}Oa.dn=26,Na.dn=27;var Da,Ya={hash:c,selector:X,get:At,getNode:ft,lookup:pt},Fa=function(){var t=this;this.reset=function(){t.children={},t.nodes={},Ya.selector.reset()},this.selectors=function(e){return e.data.forEach&&e.data.forEach((function(e){var n=t.nodes[e.parent],a=t.children[e.parent]||[],i=t.nodes[e.id]||{tag:e.tag,parent:e.parent,previous:e.previous},r=e.attributes||{};if(i.parent!==e.parent){var o=null===e.previous?0:a.indexOf(e.previous)+1;if(a.splice(o,0,e.id),i.parent!==e.parent){var s=t.children[i.parent],c=s?s.indexOf(e.id):-1;c>=0&&t.children[i.parent].splice(c,1)}i.parent=e.parent}else a.indexOf(e.id)<0&&a.push(e.id);i.position=t.position(e.id,e.tag,i,a,a.map((function(e){return t.nodes[e]})));var l={id:e.id,tag:e.tag,prefix:n?[n.alpha,n.beta]:null,position:i.position,attributes:r},u=Ya.selector.get(l,0);e.selectorAlpha=u.length>0?u:null,e.hashAlpha=u.length>0?Ya.hash(e.selectorAlpha):null;var d=Ya.selector.get(l,1);e.selectorBeta=d.length>0?d:null,e.hashBeta=d.length>0?Ya.hash(e.selectorBeta):null,i.alpha=u,i.beta=d,t.nodes[e.id]=i,e.parent&&(t.children[e.parent]=a)})),e},this.position=function(t,e,n,a,i){n.position=1;for(var r=a?a.indexOf(t):-1;r-- >0;)if(e===i[r].tag){n.position=i[r].position+1;break}return n.position},this.reset()},Ua=function(){function t(e,n){var a=this;this.data=null,this.scrollData=null,this.max=null,this.offscreenRing=null,this.gradientPixels=null,this.timeout=null,this.observer=null,this.state=null,this.layout=null,this.scrollAvgFold=null,this.addScrollMakers=!1,this.reset=function(){if(a.data=null,a.scrollData=null,a.max=null,a.offscreenRing=null,a.gradientPixels=null,a.timeout=null,a.observer&&(a.observer.disconnect(),a.observer=null),a.state&&a.state.window){var t=a.state.window;t.removeEventListener("scroll",a.redraw,!0),t.removeEventListener("resize",a.redraw,!0)}},this.clear=function(){var t=a.state.window.document,e=a.state.window,n=t.getElementById("clarity-heatmap-canvas"),i=t.documentElement;n&&(n.width=i.clientWidth,n.height=i.clientHeight,n.style.left=e.pageXOffset+"px",n.style.top=e.pageYOffset+"px",n.getContext("2d").clearRect(0,0,n.width,n.height)),a.reset()},this.scroll=function(t,e,n){a.scrollData=a.scrollData||t,a.scrollAvgFold=null!=e?e:a.scrollAvgFold,a.addScrollMakers=null!=n?n:a.addScrollMakers;var i=a.overlay(),r=i.getContext("2d"),o=a.state.window.document,s=o.body,c=o.documentElement,l=Math.max(s.scrollHeight,s.offsetHeight,c.clientHeight,c.scrollHeight,c.offsetHeight);if(i.height=Math.min(l,65535),i.style.top="0px",i.width>0&&i.height>0&&a.scrollData){for(var u=r.createLinearGradient(0,0,0,i.height),d=0,h=a.scrollData;d<h.length;d++){var f=h[d],A=1-f.cumulativeSum/a.scrollData[0].cumulativeSum,p=f.scrollReachY/100*(l/i.height),m=240*A;p<=1&&u.addColorStop(p,"hsla(".concat(m,", 100%, 50%, 0.6)"))}r.fillStyle=u,r.fillRect(0,0,i.width,i.height),a.addScrollMakers&&a.addInfoMarkers(r,a.scrollData,i.width,i.height,a.scrollAvgFold)}},this.addInfoMarkers=function(t,e,n,i,r){a.addMarker(t,n,"Average Fold",r,84);for(var o=function(r){var o=e.reduce((function(t,e){return Math.abs(e.percUsers-r)<Math.abs(t.percUsers-r)?e:t}));if(o.percUsers>=r-2&&o.percUsers<=r+2){var s=o.scrollReachY/100*i;a.addMarker(t,n,"".concat(r,"%"),s,35)}},s=0,c=[75,50,25];s<c.length;s++){o(c[s])}},this.addMarker=function(t,e,n,a,i){t.beginPath(),t.moveTo(0,a),t.lineTo(e,a),t.setLineDash([2,2]),t.lineWidth=1,t.strokeStyle="white",t.stroke(),t.fillStyle="#323130",t.fillRect(0,a-16,i,32),t.fillStyle="white",t.font="500 12px Segoe UI",t.fillText(n,5,a+5)},this.click=function(t){a.data=a.data||t;var e=a.transform(),n=a.overlay(),i=n.getContext("2d");if(n.width>0&&n.height>0){for(var r=a.getRing(),o=a.getGradient(),s=0,c=e;s<c.length;s++){var l=c[s];i.globalAlpha=l.a,i.drawImage(r,l.x-20,l.y-20)}for(var u=i.getImageData(0,0,n.width,n.height),d=0;d<u.data.length;d+=4){var h=u.data[d+3];if(h>0){var f=4*(h-1);u.data[d]=o.data[f],u.data[d+1]=o.data[f+1],u.data[d+2]=o.data[f+2]}}i.putImageData(u,0,0)}},this.overlay=function(){var t=a.state.window.document,e=a.state.window,n=t.documentElement,i=t.getElementById("clarity-heatmap-canvas");return null===i&&((i=t.createElement("CANVAS")).id="clarity-heatmap-canvas",i.width=0,i.height=0,i.style.position="absolute",i.style.zIndex="".concat(2147483647),n.appendChild(i),e.addEventListener("scroll",a.redraw,!0),e.addEventListener("resize",a.redraw,!0),a.observer=a.state.window.ResizeObserver?new ResizeObserver(a.redraw):null,a.observer&&a.observer.observe(t.body)),i.width=n.clientWidth,i.height=n.clientHeight,i.style.left=e.pageXOffset+"px",i.style.top=e.pageYOffset+"px",i.getContext("2d").clearRect(0,0,i.width,i.height),i},this.getRing=function(){if(null===a.offscreenRing){var t=a.state.window.document;a.offscreenRing=t.createElement("CANVAS"),a.offscreenRing.width=40,a.offscreenRing.height=40;var e=a.offscreenRing.getContext("2d");e.shadowOffsetX=40,e.shadowBlur=10,e.shadowColor="black",e.beginPath(),e.arc(-20,20,10,0,2*Math.PI,!0),e.closePath(),e.fill()}return a.offscreenRing},this.getGradient=function(){if(null===a.gradientPixels){var e=a.state.window.document.createElement("CANVAS");e.width=1,e.height=256;for(var n=e.getContext("2d"),i=n.createLinearGradient(0,0,0,256),r=1/t.COLORS.length,o=0;o<t.COLORS.length;o++)i.addColorStop(r*(o+1),t.COLORS[o]);n.fillStyle=i,n.fillRect(0,0,1,256),a.gradientPixels=n.getImageData(0,0,1,256)}return a.gradientPixels},this.redraw=function(t){a.data?(a.timeout&&clearTimeout(a.timeout),a.timeout=setTimeout(a.click,30)):a.scrollData&&"scroll"!=t.type&&(a.timeout&&clearTimeout(a.timeout),a.timeout=setTimeout(a.scroll,30))},this.transform=function(){for(var t=[],e={},n=0,i=a.state.window&&a.state.window.document?a.state.window.document.documentElement.clientHeight:0,r=0,o=a.data;r<o.length;r++){var s=o[r],c=a.layout.get(s.hash);if(c&&"function"==typeof c.getBoundingClientRect){var l=c.getBoundingClientRect(),u=a.visible(c,l,i);if(null===a.max||u)for(var d=0;d<s.points;d++){var h=Math.round(l.left+s.x[d]/32767*l.width),f=Math.round(l.top+s.y[d]/32767*l.height),A="".concat(h).concat("X").concat(f).concat("X").concat(u?1:0);e[A]=A in e?e[A]+s.clicks[d]:s.clicks[d],n=Math.max(e[A],n)}}}a.max=a.max?a.max:n;for(var p=0,m=Object.keys(e);p<m.length;p++){var v=m[p],g=v.split("X"),y=Math.min(e[v]/a.max+.15,1);"1"===g[2]&&t.push({x:parseInt(g[0],10),y:parseInt(g[1],10),a:y})}return t},this.visible=function(t,e,n){var i=a.state.window.document,r=e.height>n;if(!1===r&&e.width>0&&e.height>0)for(;!r&&i;){for(var o=null,s=0,c=i.elementsFromPoint(e.left+e.width/2,e.top+e.height/2);s<c.length;s++){var l=c[s];if(!("CANVAS"===l.tagName||l.id&&0===l.id.indexOf("clarity-"))){r=l===t,o=l.shadowRoot&&l.shadowRoot!=i?l.shadowRoot:null;break}}i=o}return r&&e.bottom>=0&&e.top<=n},this.state=e,this.layout=n}return t.COLORS=["blue","cyan","lime","yellow","red"],t}(),Pa=function(){function t(e,n){var a=this;this.hoverId=null,this.targetId=null,this.points=[],this.scrollPointIndex=0,this.clickAudio=null,this.reset=function(){a.points=[],a.scrollPointIndex=0,a.clickAudio=null,a.hoverId=null,a.targetId=null,a.layout.reset()},this.scroll=function(t){var e=t.data,n=a.state.window.document,i=n.documentElement,r=a.layout.element(e.target)||n.body,o=r.scrollHeight>r.clientHeight||r.scrollWidth>r.clientWidth;if(r&&o&&(r.scrollTo(e.x,e.y),r===i&&r.offsetTop!==e.y&&(r=n.body).scrollTo(e.x,e.y)),r===i||r===n.body){o||a.state.window.scrollTo(e.x,e.y);var s=a.overlay();s&&(s.style.left=e.x+"px",s.style.top=e.y+"px",s.width=i.clientWidth,s.height=i.clientHeight),a.scrollPointIndex=a.points.length}},this.resize=function(t){var e=t.data,n=e.width,i=e.height;a.state.options.onresize&&a.state.options.onresize(n,i)},this.visibility=function(t){var e=a.state.window.document;e&&e.documentElement&&"visible"!==t.data.visible?(e.documentElement.style.backgroundColor="black",e.documentElement.style.opacity="0.4"):(e.documentElement.style.backgroundColor="transparent",e.documentElement.style.opacity="1")},this.input=function(t){var e=t.data,n=a.layout.element(e.target);if(n)switch(n.type){case"checkbox":case"radio":n.checked="true"===e.value;break;default:n.value=e.value}},this.selection=function(t){var e=t.data,n=a.state.window.document.getSelection();try{n.setBaseAndExtent(a.layout.element(e.start),e.startOffset,a.layout.element(e.end),e.endOffset)}catch(t){console.warn("Exception encountered while trying to set selection: "+t)}},this.pointer=function(t){var e=t.data,n=t.event,i=a.state.window.document,r=i.documentElement,o=i.getElementById("clarity-pointer");if(null===o){(o=i.createElement("DIV")).id="clarity-pointer",r.appendChild(o);var s=i.createElement("STYLE");s.textContent="@keyframes pulsate-one { 0% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(3, 3); opacity: 0; } }@keyframes pulsate-two { 0% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(5, 5); opacity: 0; } }@keyframes pulsate-touch { 0% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(2, 2); opacity: 0; } }@keyframes disappear { 90% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(1.3, 1.3); opacity: 0; } }"+"#".concat("clarity-interaction-canvas"," { position: absolute; left: 0; top: 0; z-index: ").concat(2147483647,"; background: none; }")+"#".concat("clarity-pointer"," { position: absolute; z-index: ").concat(2147483647,"; url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAmCAYAAAA4LpBhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASDSURBVHgB7VdPTCNlFH8z0/+FFmRatnFNiDGR4O4mBk08smZvXjjIxRueNME9eHGNxoLxSNwr4WyigYToQRJLjXDzQtDNmnhR4kWWAJm20ymddtrx94bvI9NBWAptsod9ycvM92fe73vv/b73fUP0DIlCfRQ1AMTtjwcHB1+gPgOT67oK6+TkZBjNbxRF+X1gYCCDPpX6IKdGAaTu7++HuG9tbe1ONBr9GR7r+Xy+98DsIRuemJiIjI6OJgH+3e7urruzs+OOjIw8SiaTNwRwz8OtQWPpdHoYoKt///ar2/jxaw84k8k8gt5YWVnRqEfi90BrtVph0Uetx0V67d9fqFAo3G6324XZ2VldLK4noK4AVqvVaoh8YZTAxWLxdiwW20CoM70IdceWicfjSpCxfuBEIrGxsLCQZR7QNcQDwFaRRhRmcXCSL9S3kN8CtlP2Oqz2QoWt4Q4NDanHx8cy3HQBMIe6sLS0pF811B7I5uYmhUKh1nmAQWAOteM4xcXFxczMzEzXHp+u9PDwUBHvymWBmVzr6+t6t9tJhtPzEEYuFaoguebm5nTqJOXFoMxEVCO50tMFXBaYcwwbGwAfRagv5bEKthK2igdUr9epG/EDYw//xKGmzoLz/6BQd3t7m5i9dAUJsJoLSPZp5PIGp6amXHjsVSaEirqVALk8jy/axx2hwAcMTlcRH/Ad5LfA24kEZ4JzudbySSJzyqDnomq37pH14utH/iUrCA5HCeRwHYXc8dzNNs5jfXp6uoD+e/Pz8zzfDYIqq6urihg4NyTaK2/Rw8fNo0/euWvBWI3TwGAiHW2RnjY7LRVjX+7t7d3nSWL8FFSKIj46I0r2ZXr4R/PoQT5f1TTtU3Q5OAbbbAxtV4BwXx07wUI5raJdTaVS5vLysmYYhlyMDJBHJBoeHpbFwQ0CfmuP04P8V1VVVb9AVwXGy/xE6SyHw2FuW9Aa2jYAHVx1HAZh78bGxs44wYkm0zS9PPrC1QE4+8HcPwD8HONPYNzEkAU1UX+raFcYmPswzhu9ISLmShIdHBx0lFfVH2s+SyWR/IBofgYvnmCIPTQjkYiBk8mARwYWU4aW8F5uNpslXHkstBncxjcOeyqJ6vfUO9oQd2avlyeKJj3A9z/8yAOE7uHKUgGoiRQYMFZCdEq2bZfgpYFnmd9xzprlcrnCOdV13cbWaWKezGVnAUBOmVBpkOAlPH/AxuYJu/DoPQDcxfubeB/ncZCDL+IpaDKgiVwul8AzDo1BI3RC1HPLIg+mYPQmvPke+hdY+S68ehuevIHQvYpV5/i2KIxKg5pUUew1AaL6wM4cl4oPFJjxFMJ0H6BbIIgBwAbeLSzABLBVKpVszGvSCf27r5dCNE7h1tYWX1U0ECHUaDT+REhryKENrTFbwdLj+skRxIAeM+ka4rGV2QWv2vCIjVoAryC0Jk6MCk6fGvoY0OkFoF80UDsG8AG8j/BtD78YWRSMNNoJQbSe/1Zw0tmwBB6kE0ZG+wXI4v1ECYAIdbKzf/+povypEui6t/jnwvIf5FVJ1Cj/1+UAAAAASUVORK5CYII=",") no-repeat left center; width: ").concat(29,"px; height: ").concat(38,"px; }")+".".concat("clarity-click",", .").concat("clarity-click-ring",", .").concat("clarity-touch",", .").concat("clarity-touch-ring"," { position: absolute; z-index: ").concat(2147483647,"; border-radius: 50%; background: radial-gradient(rgba(0,90,158,0.8), transparent); width: ").concat(22,"px; height: ").concat(22,"px;}")+".".concat("clarity-click-ring"," { background: transparent; border: 1px solid rgba(0,90,158,0.8); }")+".".concat("clarity-touch"," { background: radial-gradient(rgba(242,97,12,1), transparent); }")+".".concat("clarity-touch-ring"," { background: transparent; border: 1px solid rgba(242,97,12,0.8); }")+".".concat("clarity-pointer-click"," { background-image: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAmCAYAAAA4LpBhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVoSURBVHgB7VdNTCRFGP2qe6aBGRhA5mfJ7kZcV0XQTQx68MYabl44yMWbetAY3IMX12gWMCZeSLwSEi/GiAHF1SjqMAhoshuTJbg/GkM0xMQIBMj8D/Nfvq+6enZmEtFdhsSDRT66q6qnXr33varqJvoPFUHHWIw6IK6/2tbWdg8dMzBJKQXHwMCAG9UPhBDXW1tbA2gz6BhKZVAAGTs7Oy5um5+fP9fU1LQExv6xsbHGAzNDHrivr88KhUJegH+0ubkp19fXZVdX1w2v13tCAzdcbhPR3N7e3gnQuY0ry3L7nRcUcCAQuIE4MTs7a1IDi9CgXuQxCNBPNq6uyF+HWuTO5IvVjEP6uSMXlk1qYCOVSnFOgYvRLUtmVmbp9HfvUSQSebS5uXkRwIFGSF2zZFpaWoTtWEHCcgvDclPm+4/p3qvvK2CPx7M4MTERZB/QEYoCxVJxBhHsYvwn0+2WKiyLslc+pfuufSjD4fAjyG+Y03AUVyupsDRkR0eHcXBwYMuNKQi3BaYIt5uYce6Hz8XZ63MMzFKHp6am/HcrtQJZWVkhl8tVIju/KqkmgBxAdQXr3LUv6exPl5XUxWIxMjk5GRgZGbljxpWZ7u3tCX3PPCuALDEYk2Ytij9+RQ9ufFEx18LCgv9Ol5PjXsUQg9hSsXubLA3IwC7JoVgjSjfD9PDm1xVzjY6O+qnWlIeDshOxGzkzVRNgeW2mdl6FfXVkxiQsKv/8LfX9sUScY4yxCPAQpP5XjA0GwFJRTLPZrG5mUFcln6Ytc+Uq0CdcLgAvyf4/lxUw1vA3LDVVpexQedfW1ojdW2m1N4cKM8PllqLKUMI0SRhCsuVKtyLUv7XsuJo3kOA/mUt1Dg4OsqRqZ4JUPJZtIttAaqMAMzQarH8NCzwqSzcjghlrcynGh63jGinwA5VP9efIaBr2vqgBnGeltH+nJonCjPts4HPIb5iXE2nP1IPyXssniZNTBhVq0RhC3p6QTd/oHxLpk4/t356yelQawijrecnek6fKOI/9w8PDYQw1ND4+zs/LelAxNzcndIdRLRwzs5kIYT7wJL17q7D/2tPn0+jIcDunRDMt6/SUmbQT6Htra2vrAj+k+yugFRT9I6qVEGxCZwCY3784dillmubr6CqWSqUyD4a61CDclsVKSGM7TaGe8vl8yenpaTMajTqTqeSUjUSdnZ3O5iCrYUXwDM1ke+ni2NspwzAuoTGBweN8xdYZd7vdXE8jMqjnAFjEq06RQZhdT08P1RdONCWTSaEFdeSyqQfvFzO5XnrupdHfAfgm+rcxeBJdaUQS+28K9QQDcxv6eaHntWLSMdHu7q6zxWorVGnNZ6nQVmVJmSEDovoGWGyjixkmLcuK4mSKglEUk4kjYriPFwqFGF550qgzeA6/KTJTx6jVTNXRBt3ZvSpP1OSlmYNeev7lVxQgYqtcLicAmkQKohgsBnViuVwuBpZRXON8j3M2GY/HE5xTv9+fw9Ip4DknlzXAnFM2VDtMcBrXz7Cw+YFNMHoWAOdx/wTue7kf5uAXcR/CWxee7u5uD64tiGaERbZR/3Zb5E4fBj0FNpcRv8GVz4DVU2DyOKR7CLPu5rdFPagzoOmE3uxNDWJUgYl6UFEFCswWH2S6ANBVGCQKwDzu05hAEsDpWCyWw3MFsu0v6S6LySlcXV3lVxUTRnDl8/lfIGkGOcwhMuxWuPQgax9BDKicSUcoyq3sLrAqgxEPmgZ4AtImcWIkcPpk0MaAxUYAVhcT1m4GeCvuu/htD58YQWwY7ah7tNEa/lnBSeeBHeA2sh3ZdFyAXNRHlAawqNadx/edqrc/wwE66lv8/4XLX3gjac6XP/Y1AAAAAElFTkSuQmCC","); }")+".".concat("clarity-pointer-none"," { background: none; }")+".".concat("clarity-pointer-move"," { background-image: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAmCAYAAAA4LpBhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASDSURBVHgB7VdPTCNlFH8z0/+FFmRatnFNiDGR4O4mBk08smZvXjjIxRueNME9eHGNxoLxSNwr4WyigYToQRJLjXDzQtDNmnhR4kWWAJm20ymddtrx94bvI9NBWAptsod9ycvM92fe73vv/b73fUP0DIlCfRQ1AMTtjwcHB1+gPgOT67oK6+TkZBjNbxRF+X1gYCCDPpX6IKdGAaTu7++HuG9tbe1ONBr9GR7r+Xy+98DsIRuemJiIjI6OJgH+3e7urruzs+OOjIw8SiaTNwRwz8OtQWPpdHoYoKt///ar2/jxaw84k8k8gt5YWVnRqEfi90BrtVph0Uetx0V67d9fqFAo3G6324XZ2VldLK4noK4AVqvVaoh8YZTAxWLxdiwW20CoM70IdceWicfjSpCxfuBEIrGxsLCQZR7QNcQDwFaRRhRmcXCSL9S3kN8CtlP2Oqz2QoWt4Q4NDanHx8cy3HQBMIe6sLS0pF811B7I5uYmhUKh1nmAQWAOteM4xcXFxczMzEzXHp+u9PDwUBHvymWBmVzr6+t6t9tJhtPzEEYuFaoguebm5nTqJOXFoMxEVCO50tMFXBaYcwwbGwAfRagv5bEKthK2igdUr9epG/EDYw//xKGmzoLz/6BQd3t7m5i9dAUJsJoLSPZp5PIGp6amXHjsVSaEirqVALk8jy/axx2hwAcMTlcRH/Ad5LfA24kEZ4JzudbySSJzyqDnomq37pH14utH/iUrCA5HCeRwHYXc8dzNNs5jfXp6uoD+e/Pz8zzfDYIqq6urihg4NyTaK2/Rw8fNo0/euWvBWI3TwGAiHW2RnjY7LRVjX+7t7d3nSWL8FFSKIj46I0r2ZXr4R/PoQT5f1TTtU3Q5OAbbbAxtV4BwXx07wUI5raJdTaVS5vLysmYYhlyMDJBHJBoeHpbFwQ0CfmuP04P8V1VVVb9AVwXGy/xE6SyHw2FuW9Aa2jYAHVx1HAZh78bGxs44wYkm0zS9PPrC1QE4+8HcPwD8HONPYNzEkAU1UX+raFcYmPswzhu9ISLmShIdHBx0lFfVH2s+SyWR/IBofgYvnmCIPTQjkYiBk8mARwYWU4aW8F5uNpslXHkstBncxjcOeyqJ6vfUO9oQd2avlyeKJj3A9z/8yAOE7uHKUgGoiRQYMFZCdEq2bZfgpYFnmd9xzprlcrnCOdV13cbWaWKezGVnAUBOmVBpkOAlPH/AxuYJu/DoPQDcxfubeB/ncZCDL+IpaDKgiVwul8AzDo1BI3RC1HPLIg+mYPQmvPke+hdY+S68ehuevIHQvYpV5/i2KIxKg5pUUew1AaL6wM4cl4oPFJjxFMJ0H6BbIIgBwAbeLSzABLBVKpVszGvSCf27r5dCNE7h1tYWX1U0ECHUaDT+REhryKENrTFbwdLj+skRxIAeM+ka4rGV2QWv2vCIjVoAryC0Jk6MCk6fGvoY0OkFoF80UDsG8AG8j/BtD78YWRSMNNoJQbSe/1Zw0tmwBB6kE0ZG+wXI4v1ECYAIdbKzf/+povypEui6t/jnwvIf5FVJ1Cj/1+UAAAAASUVORK5CYII=","); }"),o.appendChild(s)}o.style.left=e.x-4+"px",o.style.top=e.y-4+"px";var c="Pointer";switch(n){case 9:if(c="Click",a.drawClick(i,e.x,e.y,c),a.state.options.onclickMismatch){for(var l=a.layout.element(e.target),u=!1,d=0,h=i.elementsFromPoint(e.x,e.y);d<h.length;d++){l===h[d]&&(u=!0)}u||a.state.options.onclickMismatch({time:t.time,x:e.x,y:e.y,nodeId:e.target})}o.className="clarity-pointer-none";break;case 16:c="Click",a.drawClick(i,e.x,e.y,c),o.className="clarity-pointer-none";break;case 17:case 18:case 20:c="Touch",a.drawTouch(i,e.x,e.y,c),o.className="clarity-pointer-none";break;case 19:c="Touch Move",o.className="clarity-pointer-none";break;case 12:c="Mouse Move",o.className="clarity-pointer-move",a.addPoint({time:t.time,x:e.x,y:e.y}),a.targetId=e.target;break;default:o.className="clarity-pointer-move"}o.setAttribute("title","".concat(c," (").concat(e.x).concat("px",", ").concat(e.y).concat("px",")"))},this.hover=function(){if(a.targetId&&a.targetId!==a.hoverId){for(var t=0,e=a.hoverId?a.layout.element(a.hoverId):null;e&&t<7;)"removeAttribute"in e&&e.removeAttribute("clarity-hover"),e=e.parentElement,t++;t=0;for(var n=a.targetId?a.layout.element(a.targetId):null;n&&t<7;)"setAttribute"in n&&n.setAttribute("clarity-hover",""),n=n.parentElement,t++;a.hoverId=a.targetId}},this.addPoint=function(t){var e=a.points.length>0?a.points[a.points.length-1]:null;e&&t.x===e.x&&t.y===e.y?e.time=t.time:a.points.push(t)},this.drawTouch=function(t,e,n,a){var i=t.documentElement,r=t.createElement("DIV");r.className="clarity-touch",r.setAttribute("title","".concat(a," (").concat(e).concat("px",", ").concat(n).concat("px",")")),r.style.left=e-11+"px",r.style.top=n-11+"px",r.style.animation="disappear 1 1s",r.style.animationFillMode="forwards",i.appendChild(r);var o=r.cloneNode();o.className="clarity-touch-ring",o.style.left="-0.5px",o.style.top="-0.5px",o.style.animation="pulsate-touch 1 1s",o.style.animationFillMode="forwards",r.appendChild(o)},this.drawClick=function(t,e,n,i){var r=t.documentElement,o=t.createElement("DIV");o.className="clarity-click",o.setAttribute("title","".concat(i," (").concat(e).concat("px",", ").concat(n).concat("px",")")),o.style.left=e-11+"px",o.style.top=n-11+"px",r.appendChild(o);var s=o.cloneNode();s.className="clarity-click-ring",s.style.left="-0.5px",s.style.top="-0.5px",s.style.animation="pulsate-one 1 1s",s.style.animationFillMode="forwards",o.appendChild(s);var c=s.cloneNode();c.style.animation="pulsate-two 1 1s",o.appendChild(c),"undefined"!=typeof Audio&&(null===a.clickAudio&&(a.clickAudio=new Audio("data:video/webm;base64,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"),o.appendChild(a.clickAudio)),a.clickAudio.play())},this.overlay=function(){var t=a.state.window.document,e=t.documentElement,n=t.getElementById("clarity-interaction-canvas");return null===n&&((n=t.createElement("canvas")).id="clarity-interaction-canvas",n.width=0,n.height=0,e.appendChild(n)),n.width===e.clientWidth&&n.height===e.clientHeight||(n.width=e.clientWidth,n.height=e.clientHeight),n},this.match=function(t){for(var e=[],n=a.points.length-1;n>0&&(n>=a.scrollPointIndex&&t-a.points[n].time<3e3);n--)e.push(a.points[n]);return e.slice(0,75)},this.trail=function(t){var e=a.overlay();if(a.state.options.canvas&&e){var n=e.getContext("2d"),i=a.state.options.keyframes?a.curve(a.points.reverse()):a.curve(a.match(t));if(a.hover(),i.length>1){var r=i[0];n.clearRect(0,0,n.canvas.width,n.canvas.height);for(var o=i.length,s=e.offsetLeft,c=e.offsetTop,l=1;l<o;l++){var u=i[l],d=1-(l-1)/o,h=1-l/o,f=n.createLinearGradient(r.x,r.y,u.x,u.y);f.addColorStop(1,a.color(h)),f.addColorStop(0,a.color(d)),n.lineWidth=6*h,n.lineCap="round",n.lineJoin="round",n.strokeStyle=f,n.beginPath(),n.moveTo(r.x-s,r.y-c),n.lineTo(u.x-s,u.y-c),n.stroke(),n.closePath(),r=u}}a.state.options.keyframes&&(a.points=[])}},this.color=function(e){for(var n=t.TRAIL_START_COLOR,a=t.TRAIL_END_COLOR,i=[],r=0;r<3;r++)i[r]=Math.round(a[r]+e*(n[r]-a[r]));return"rgba(".concat(i[0],", ").concat(i[1],", ").concat(i[2],", ").concat(e,")")},this.curve=function(t){var e=.5,n=[],i=[];(n=t.slice(0)).unshift(t[0]),n.push(t[t.length-1]);for(var r=1;r<n.length-2;r++)for(var o=n[r].time,s=Math.max(Math.min(Math.round(a.distance(n[r],n[r-1])),10),1),c=0;c<=s;c++){var l={time:o,x:(n[r+1].x-n[r-1].x)*e,y:(n[r+1].y-n[r-1].y)*e},u={time:o,x:(n[r+2].x-n[r].x)*e,y:(n[r+2].y-n[r].y)*e},d=c/s,h=2*Math.pow(d,3)-3*Math.pow(d,2)+1,f=-2*Math.pow(d,3)+3*Math.pow(d,2),A=Math.pow(d,3)-2*Math.pow(d,2)+d,p=Math.pow(d,3)-Math.pow(d,2),m=h*n[r].x+f*n[r+1].x+A*l.x+p*u.x,v=h*n[r].y+f*n[r+1].y+A*l.y+p*u.y;i.push({time:o,x:m,y:v})}return i},this.distance=function(t,e){var n=t.x-e.x,a=t.y-e.y;return Math.sqrt(n*n+a*a)},this.state=e,this.layout=n}return t.TRAIL_START_COLOR=[242,97,12],t.TRAIL_END_COLOR=[249,220,209],t}(),La=function(){function n(a,i){void 0===i&&(i=!1);var r=this;this.primaryHtmlNodeId=null,this.stylesheets=[],this.fonts=[],this.nodes={},this.events={},this.hashMapAlpha={},this.hashMapBeta={},this.adoptedStyleSheets={},this.animations={},this.state=null,this.stylesToApply={},this.BackgroundImageEligibleElements=["DIV","SECTION","ARTICLE","HEADER","FOOTER","ASIDE","NAV","SPAN","P","MAIN"],this.MaskedBackgroundImageStyle='#CCC no-repeat center url("'.concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANvSURBVHgB7Ve9VhpREJ5dU6BNVqt0wS6dpEuX9QmiTyA+gfgE4BOgZSrJE4hlKvEJxDKVa2caoaSSfB87F4Z7dtmFhFTMOfcMe52Z+935u6PIhjb0dxTIihRFUQ2M6z0/dXuI9ay8PwTJklQaEADw0JMgCI4USFSkMx6Pe2BdrFtgS6QEFQICjirYGYDUc0AMcXCCvw8XAVVwHQD7IasAokfCMGzB0NmCA1o44N7T+wpwlwouT+80z2NbOWAaMHqDn7FuJcorapRATkej0bOvyz2s7zs7O2L0GbYXrCrscjUqlUoAuZ6vH3hAIr3diW4xHC3wW+w/KZhLgDmXEgRzbR6udvbBD/DdITB3UewfWm+FRpnIHwyYLo1A+Aq/vzkDWFdSni4krTjm1RnDOxgM9nFOS//OM++0YmeAFMydQw4gDSgeu7LVyprE3489je3u7t5waQFMifrQ6ehn7PZfX18v6BkFOwcq9MDQQKxeseRu0PXARJprBHxED2t7sPSol6p5YHs467OkXo8cqBA/rmXmmVO/atzZzk4G0Kond+DJJJLmStc3Sm+rpxLVbYcEoRu8xbWNp9U1B1rqyzzIRNQj5tAe84ZVKVmGZ6BoK5Vh2JADT1hjLny3rBL27nS/7RtUXZdDmb1H5Ug1rDgjrFMKrGGb2CzPt7e3C95gb2+vqeU/1Mor/UZpg21og50CsfYzATllsLY+E6TE60OTPoUqOV8EQNKKmuTTgifHAmO4GOokyDFah2BTTAOTNFcmIQFI3qyVoxurp+dIL3ZF72bYdzL1zKcDLb2P1n4rqUfcg/nB3Cre3t6uQeY3ZBOri72q87B7ULHY035CdmTs85H9BVlR23yWumVf+6YJo0/MK7qcI8al9RCqq9R4w4ICq9JDYZEwk44ly2TWFtGT+VKnF2PwB6cis8sUzkw+vSsrqNXQ0eUmxo+S5gEPfvQBSTpNLjU1rjzCLiKEYAAWMQRFA5m2GzdJxIUhW5H6yutFguhRToapcb8WQGwL5MwtDnt5cvQOZJuq0yHfkjUQWwHbAn5+AqgvKHGW/IsPRquR+ZdgcQIdrStkYh5tN1ocZYCpSto2Dqezl6yRMga/yQSpXToyYFzOrReQAcUhzp8E+E4eWzD/lTgxuPFGR5Wlm+Y/J3qL/7fJhja0RvoDR4Tn4Lo/zi8AAAAASUVORK5CYII=",'")'),this.reset=function(){r.nodes={},r.stylesheets=[],r.fonts=[],r.events={},r.hashMapAlpha={},r.hashMapBeta={},r.primaryHtmlNodeId=null},this.get=function(t){return t in r.hashMapBeta&&r.hashMapBeta[t].isConnected?r.hashMapBeta[t]:t in r.hashMapAlpha&&r.hashMapAlpha[t].isConnected?r.hashMapAlpha[t]:null},this.addToHashMap=function(t,e){r.hashMapAlpha[t.hashAlpha]=r.get(t.hashAlpha)||e,r.hashMapBeta[t.hashBeta]=r.get(t.hashBeta)||e},this.resize=function(t,e,n){t&&1===t.nodeType&&e&&n&&(t.style.width=e+"px",t.style.height=n+"px",t.style.boxSizing="border-box")},this.element=function(t){return null!==t&&t>0&&t in r.nodes?r.nodes[t]:null},this.animateChange=function(t){var e=r.animations[t.data.id];if(e||0===t.data.operation)switch(t.data.operation){case 0:var n=r.element(t.data.targetId);n&&(r.animations[t.data.id]=n.animate(JSON.parse(t.data.keyFrames),JSON.parse(t.data.timing)));break;case 3:e.cancel();break;case 4:e.finish();break;case 2:e.pause();break;case 1:e.play();break;case 5:e.commitStyles()}},this.dom=function(n,a){return t(r,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return n&&((t=this.state.window.document)&&t.documentElement)?(t.documentElement.style.visibility="hidden",this.markup(n,a),[4,Promise.all(this.stylesheets.concat(this.fonts))]):[3,2];case 1:e.sent(),t.documentElement.style.visibility="visible",e.label=2;case 2:return[2]}}))}))},this.styleChange=function(t){switch(t.event){case 46:var e=r.adoptedStyleSheets[t.data.id];if(!e&&0!==t.data.operation)return;switch(t.data.operation){case 0:r.adoptedStyleSheets[t.data.id]=new r.state.window.CSSStyleSheet;break;case 1:e.replace(t.data.cssRules);break;case 2:e.replaceSync(t.data.cssRules)}break;case 45:r.setDocumentStyles(t.data.id,t.data.newIds)}},this.exists=function(t){if(t){var e=r.get(t);if(e){var n=e.getBoundingClientRect();return n&&n.width>0&&n.height>0}}return!1},this.markup=function(t,e){for(var a,i,o,s,c,l=t.data,u=t.event,d=r.state.window.document,h={data:[],time:t.time,event:t.event},f=function(t){var l=r.element(t.parent),f=r.element(t.previous),A=r.insertAfter,p=t.tag;if(p&&0===p.indexOf("iframe:")&&(p=t.tag.substr("iframe:".length)),null===l&&null!==t.parent&&t.parent>-1&&"HTML"!==p)return h.data.push(t),"continue";switch(p){case"*D":var m=p!==t.tag?l?l.contentDocument:null:d;m&&m===d&&5===u&&r.reset(),"undefined"!=typeof XMLSerializer&&m&&(m.open(),m.write((new XMLSerializer).serializeToString(m.implementation.createDocumentType(t.attributes.name,t.attributes.publicId,t.attributes.systemId))),m.close());break;case"*P":r.nodes[t.id]=l,r.addToHashMap(t,l);break;case"*S":if(l){var v=r.element(t.id);v=v||l.attachShadow({mode:"open"}),r.nodes[t.id]=v,r.addToHashMap(t,v),r.addStyles(t.id)}break;case"*T":var g=r.element(t.id);(g=g||d.createTextNode(null)).nodeValue=t.value,A(t,l,g,f);break;case"*M":var y=r.element(t.id);y&&y.nodeType===Node.ELEMENT_NODE&&y.setAttribute("data-clarity-suspend","");break;case"HTML":null===r.primaryHtmlNodeId&&(r.primaryHtmlNodeId=t.id);var w=p!==t.tag;if(r.primaryHtmlNodeId!==t.id&&!w){r.insertDefaultElement(t,l,f,d,A);break}var b=w?l?l.contentDocument:null:d;if(null!==b){var x=r.element(t.id);if(null===x){x=b.implementation.createHTMLDocument("").documentElement;var E=b.importNode(x,!0);b.replaceChild(E,b.documentElement),b.head&&b.head.parentNode.removeChild(b.head),b.body&&b.body.parentNode.removeChild(b.body)}r.setAttributes(b.documentElement,t),5!==u||l||(b.documentElement.style.visibility="hidden"),r.nodes[t.id]=b.documentElement,r.addToHashMap(t,b.documentElement)}break;case"HEAD":var k=r.element(t.id);if(null===k){if(k=d.createElement(t.tag),t.attributes&&"*B"in t.attributes){var S=d.createElement("base");S.href=t.attributes["*B"],k.appendChild(S)}var M=d.createElement("style");M.setAttribute("clarity-custom-styles","true"),M.innerText=r.getCustomStyle(),k.appendChild(M)}r.setAttributes(k,t),A(t,l,k,f);break;case"LINK":var T=r.element(t.id);T=T||r.createElement(d,t.tag),t.attributes||(t.attributes={}),r.setAttributes(T,t),"rel"in t.attributes&&("stylesheet"===t.attributes.rel?r.stylesheets.push(new Promise((function(t){var a=null!=e?e:r.state.options.useproxy;a&&(T.integrity&&T.removeAttribute("integrity"),T.href=a(T.href,T.id,"stylesheet")),T.onload=T.onerror=r.style.bind(r,T,t),setTimeout(t,n.TIMEOUT)}))):!t.attributes.rel.includes("preload")&&!t.attributes.rel.includes("preconnect")||"style"!==(null===(a=t.attributes)||void 0===a?void 0:a.as)&&"font"!==(null===(i=t.attributes)||void 0===i?void 0:i.as)||r.fonts.push(new Promise((function(a){var i=null!=e?e:r.state.options.useproxy;T.href=i?i(T.href,T.id,t.attributes.as):T.href,T.onload=T.onerror=r.style.bind(r,T,a),setTimeout(a,n.TIMEOUT)})))),A(t,l,T,f);break;case"IMG":var C=null!==(o=r.element(t.id))&&void 0!==o?o:r.createElement(d,t.tag),I=null!=e?e:r.state.options.useproxy;I&&(null===(s=t.attributes)||void 0===s?void 0:s.src)&&(t.attributes.src=I(t.attributes.src,t.attributes.id,"IMG")),r.setAttributes(C,t),r.resize(C,t.width,t.height),A(t,l,C,f);break;case"STYLE":var R=null!==(c=r.element(t.id))&&void 0!==c?c:d.createElement(t.tag);r.setAttributes(R,t),R.textContent=t.value,A(t,l,R,f),r.style(R);break;case"IFRAME":var O=r.element(t.id);O=O||r.createElement(d,t.tag),t.attributes||(t.attributes={}),r.setAttributes(O,t),A(t,l,O,f);break;default:r.insertDefaultElement(t,l,f,d,A)}t.id&&(r.events[t.id]=t)},A=0,p=l;A<p.length;A++){f(p[A])}h.data.length>0&&h.data.length!==t.data.length&&r.markup(h,e)},this.insertDefaultElement=function(t,e,n,a,i){var o=r.element(t.id);o=o||r.createElement(a,t.tag),r.setAttributes(o,t),r.resize(o,t.width,t.height),i(t,e,o,n)},this.style=function(t,e){void 0===e&&(e=null);try{for(var n=t.sheet,a=n?n.cssRules:[],i=0;i<a.length;i++)if(a[i].cssText.indexOf(":hover")>=0){var o=a[i].cssText.replace(/:hover/g,"[".concat("clarity-hover","]"));n.removeRule(i),n.insertRule(o,i)}}catch(t){r.state.options.logerror&&r.state.options.logerror(t)}e&&e()},this.addStyles=function(t){var e=r.stylesToApply[t];e&&e.length>0&&(r.setDocumentStyles(t,r.stylesToApply[t]),delete r.stylesToApply[t])},this.createElement=function(t,e){if(e&&0===e.indexOf("svg:"))return t.createElementNS("http://www.w3.org/2000/svg",e.substr("svg:".length));try{return t.createElement(e)}catch(n){return console.warn("Exception encountered while creating element ".concat(e,": ").concat(n)),t.createElement("clarity-unknown")}},this.insertAfter=function(t,e,n,a){if(!r.events[t.id]||r.events[t.id].parent!==t.parent||r.events[t.id].previous!==t.previous){var i=!a||a.parentElement!==e&&a.parentNode!==e?null:a.nextSibling;i=null===a&&e?r.firstChild(e):i,r.insertBefore(t,e,n,i)}},this.firstChild=function(t){var e,n=t.firstChild;return n&&1===n.nodeType&&"BASE"===n.tagName?(null===(e=n.nextSibling)||void 0===e?void 0:e.hasAttribute("clarity-custom-styles"))?n.nextSibling.nextSibling:n.nextSibling:n},this.mask=function(t){var e,n,a;if(t&&r.BackgroundImageEligibleElements.includes(t.nodeName)&&"getComputedStyle"in window&&"closest"in t){var i=/url\(['"]?([^'")]+)['"]?\)/,o=window.getComputedStyle(t),s=(null===(e=o.backgroundImage)||void 0===e?void 0:e.match(i))||(null===(n=o.background)||void 0===n?void 0:n.match(i)),c=null===(a=t.closest)||void 0===a?void 0:a.call(t,"[".concat("data-clarity-mask","]"));s&&c&&(t.style.background=r.MaskedBackgroundImageStyle)}},this.insertBefore=function(t,e,n,a){if(null!==e){a=a&&a.parentElement!==e&&a.parentNode!==e?null:a;try{e.insertBefore(n,a),r.mask(n)}catch(a){console.warn("Node: "+n+" | Parent: "+e+" | Data: "+JSON.stringify(t)),console.warn("Exception encountered while inserting node: "+a)}}else null===e&&null!==n.parentElement?n.parentElement.removeChild(n):null===e&&null!==n.parentNode&&n.parentNode.removeChild(n);r.nodes[t.id]=n,r.addToHashMap(t,n)},this.setAttributes=function(t,e){var n=e.attributes||{},a=!1;n["data-clarity-id"]="".concat(e.id),n["data-clarity-hashalpha"]="".concat(e.hashAlpha),n["data-clarity-hashbeta"]="".concat(e.hashBeta);var i=1===t.nodeType?t.tagName.toLowerCase():null;if(t.attributes)for(var r=t.attributes.length;t.attributes&&r>0;)"clarity-hover"!==t.attributes[0].name&&t.removeAttribute(t.attributes[0].name),r--;for(var o in n)if(void 0!==n[o])try{var s=n[o];if(0===o.indexOf("xlink:"))t.setAttributeNS("http://www.w3.org/1999/xlink",o,s);else if(0===o.indexOf("*O"))a=!0;else if(0===o.indexOf("*"));else if("iframe"===i&&(0===o.indexOf("src")||0===o.indexOf("allow"))||"sandbox"===o)t.setAttribute("data-clarity-".concat(o),s);else if("img"!==i||0!==o.indexOf("src")||null!==s&&0!==s.length)t.setAttribute(o,s);else{t.setAttribute(o,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=");var c="l";e.width&&(c=e.width<=200?"m":e.width<=75?"s":c),t.setAttribute("data-clarity-hide",c)}}catch(e){console.warn("Node: "+t+" | "+JSON.stringify(n)),console.warn("Exception encountered while adding attributes: "+e)}!1===a&&"iframe"===i&&"function"==typeof t.setAttribute&&t.setAttribute("data-clarity-unavailable",""),"img"!==i||t.hasAttribute("alt")||t.setAttribute("alt",""),"form"!==i&&"input"!==i||(t.hasAttribute("autocomplete")&&t.removeAttribute("autocomplete"),t.setAttribute("autocomplete","new-password"))},this.getMobileCustomStyle=function(){return r.isMobile?"*{scrollbar-width: none; scrollbar-gutter: unset;};":""},this.getCustomStyle=function(){return"".concat("img","[").concat("data-clarity-hide","] { background-color: #CCC; background-image: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANvSURBVHgB7Ve9VhpREJ5dU6BNVqt0wS6dpEuX9QmiTyA+gfgE4BOgZSrJE4hlKvEJxDKVa2caoaSSfB87F4Z7dtmFhFTMOfcMe52Z+935u6PIhjb0dxTIihRFUQ2M6z0/dXuI9ay8PwTJklQaEADw0JMgCI4USFSkMx6Pe2BdrFtgS6QEFQICjirYGYDUc0AMcXCCvw8XAVVwHQD7IasAokfCMGzB0NmCA1o44N7T+wpwlwouT+80z2NbOWAaMHqDn7FuJcorapRATkej0bOvyz2s7zs7O2L0GbYXrCrscjUqlUoAuZ6vH3hAIr3diW4xHC3wW+w/KZhLgDmXEgRzbR6udvbBD/DdITB3UewfWm+FRpnIHwyYLo1A+Aq/vzkDWFdSni4krTjm1RnDOxgM9nFOS//OM++0YmeAFMydQw4gDSgeu7LVyprE3489je3u7t5waQFMifrQ6ehn7PZfX18v6BkFOwcq9MDQQKxeseRu0PXARJprBHxED2t7sPSol6p5YHs467OkXo8cqBA/rmXmmVO/atzZzk4G0Kond+DJJJLmStc3Sm+rpxLVbYcEoRu8xbWNp9U1B1rqyzzIRNQj5tAe84ZVKVmGZ6BoK5Vh2JADT1hjLny3rBL27nS/7RtUXZdDmb1H5Ug1rDgjrFMKrGGb2CzPt7e3C95gb2+vqeU/1Mor/UZpg21og50CsfYzATllsLY+E6TE60OTPoUqOV8EQNKKmuTTgifHAmO4GOokyDFah2BTTAOTNFcmIQFI3qyVoxurp+dIL3ZF72bYdzL1zKcDLb2P1n4rqUfcg/nB3Cre3t6uQeY3ZBOri72q87B7ULHY035CdmTs85H9BVlR23yWumVf+6YJo0/MK7qcI8al9RCqq9R4w4ICq9JDYZEwk44ly2TWFtGT+VKnF2PwB6cis8sUzkw+vSsrqNXQ0eUmxo+S5gEPfvQBSTpNLjU1rjzCLiKEYAAWMQRFA5m2GzdJxIUhW5H6yutFguhRToapcb8WQGwL5MwtDnt5cvQOZJuq0yHfkjUQWwHbAn5+AqgvKHGW/IsPRquR+ZdgcQIdrStkYh5tN1ocZYCpSto2Dqezl6yRMga/yQSpXToyYFzOrReQAcUhzp8E+E4eWzD/lTgxuPFGR5Wlm+Y/J3qL/7fJhja0RvoDR4Tn4Lo/zi8AAAAASUVORK5CYII=","); background-repeat:no-repeat; background-position: center; }")+"".concat("img","[").concat("data-clarity-hide","=").concat("s","] { background-size: 18px 18px; }")+"".concat("img","[").concat("data-clarity-hide","=").concat("m","] { background-size: 24px 24px; }")+"".concat("img","[").concat("data-clarity-hide","=").concat("l","] { background-size: 36px 36px; }")+"".concat("iframe","[").concat("data-clarity-unavailable","] { background: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAiCAYAAAAge+tMAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAU6SURBVHgBzVg7TyNJEG6bh5AIjpOQeCXj7LL18pDIdpztRYuzy7CjCzG/ADu8CO8vwEQXrgkvws6QeNiEFzEk4GznIFnxvO/zVntrhx6/kLxb0mh6uqurvq6urqqehHklra+ve3d3dx8SiUT6+fk5ja4ZtGf4tjzoD9AXoBmiXUsmk+cnJyc18wpKmCFodXXVx8t/enraBCDPDEchniqeg9PT06oZkAYCTsCw2A6afjc+8IQCjGR3oBtxR/bHx8crR0dHgemD+gIugPfQ9OJ4BGwF72qj0ajrsTQI7rEFcDnTndoLeHh4KDebzdAMC5z+e39/T8B+Nz6AbcJtslAWdOMDfg8LONTuJf7vRVgDPEW40H6crLG4AVi58Pj4+Deav0WUFIjBfDt8NYD+HaBbpge1Wq1wbm5uH+DXjewe5IXQ85buxAMurJS9sbi46IG/jnlforKS0Q7f92dWVlYOAXLXgqMb4CmcnZ2l8E5YpVwIlGZ7basm8nIO50qXNzY29g6y8+hP0RCKPYexBne+K3Ay3N7eNoxyDViziicFwR+la8uOwULFQUBr8LB6XgOU/gDukcGittUY3bUBY25oGR0fX1tbSwPgoVFWxquoAFufv5DxgDvgAsZdu7m52WR7cnLyIC5SAMxnqw+6PRzqSzvmOg9coPX7ZAzoAN9vNWgSQKfVpzP2yq5dQGGZD61F+S5e6KnYNkD6eozWBwZav6m6K1hs2yBJB2hGiIwrQmDsjfp8MS6L2zMqa7INebvGTedKthcdtODN90Yi+I2kCO0owsq3e4U1EqOBq98FwNWnxgKCgd66a5znAe6RjYDfGsdJzmtfgqBPWFE+Jg2HSmFcNuS8QqSv5mLkwQewiumDBKcn87JJ5UuB8BDQJ8TxYnQyFnep2ukYMCXzvXUY57ddvIOGUeIUNw47UQWneEYsrwFVJiYmSjYqkAdx9bOMMR6n4pSTF7J+0ZHCRVKwfaA7SXUZ0g3xNJn+j4+Pm655L1L+8vLyrmRHS4FR6ZfJyUichyKGy5IZgvot2EA1GC8fDanOWgXgCwBPodqPqxCwjQKIljmUPiaSTJxVuoAuCui+CXhKqOGLne84xpgEQKqoSwMpwIIy/ZajUdBytspSVV6KblaT79AsaP0afM+yFtbP4bXT48LAWqYEtymbHrIgZy/SnYurAsV4O7ocRjvD21Nf9bgIYMbK9VgAq8f2rYYHbHp6OqjVau3DK+UCXcw1P9ethI2cO9YzqYFuQLIA3/TegTYxpbPqE+UdazM7o82suWn6AC8Rr2F10upjZgBiPX19fd3E83F+fr5mviakKQiad/FDWfHq6upftlFbM0N7AvwP1kHoY5Fmzwrr7wCyzx16vywsLBDwe9s31GU5ShKz30gOmLGWQZwv2fIBYfRZ2JnCf7Vz0V8xyvIsaV1nReeQ9oXGjIDoYlB6IZ811tx6PAo+Gvoswd0urFGS5icgLCSHV8e/GS5dJYemUQHXxZnnYugFXtzRzg1HApz1jC3iqFzqkxfUDTxcTc9pDhRVXkOICrSYb78RPQ5cfOivRqKNv7S0lMAi/lTRqziSw0mSqMADauufbLdfb45ir032rjsyi0ssnlJWfw/Ltlxxm4T+fyR2+7qfi+GckQEXMHWA9c3XRDRl5KcPXOE/JKrA8vEvwezsLH8a5YwqEWDtMqz9F9sjcxVL4jJM/RuRoVB+iZjob2qSgO7cpEYO3BJrfry2etU8XAx4XtyBfxhwki3aAGyT9b39HS3/KJsoGSr4rLuuh/8DlPszm7LNbUUAAAAASUVORK5CYII=",") no-repeat center center, url('").concat('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%"><rect width="100%" height="100%" style="fill:rgb(204,204,204)"/><line stroke-dasharray="5, 5" x1="0" y1="100%" x2="100%" y2="0" style="stroke:rgb(119,119,119);stroke-width:1"/><line stroke-dasharray="5, 5" x1="0" y1="0" x2="100%" y2="100%" style="stroke:rgb(119,119,119);stroke-width:1"/><circle cx="50%" cy="50%" r="40" fill="rgb(204,204,204)"/></svg>',"'); }")+"*[".concat("data-clarity-suspend","] { filter: grayscale(100%); }")+"body { font-size: initial; }\n ".concat(r.getMobileCustomStyle())},this.state=a,this.isMobile=i}return n.prototype.setDocumentStyles=function(t,e){var n=-1===t?this.state.window.document:this.element(t);if(!n)return this.stylesToApply[t]||(this.stylesToApply[t]=[]),void(this.stylesToApply[t]=e);for(var a=[],i=0,r=e;i<r.length;i++){var o=r[i],s=this.adoptedStyleSheets[o];s&&a.push(s)}n.adoptedStyleSheets=a},n.TIMEOUT=3e3,n}(),za=function(){function n(){var n=this;this._state=null,this.renderTime=0,this.hashFoundTime=-1,this.dom=function(a){return t(n,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,this.layout.dom(a)];case 1:return t.sent(),[2]}}))}))},this.get=function(t){var e;return null===(e=n.layout)||void 0===e?void 0:e.get(t)},this.shortCircuitRendering=function(t,e,a){switch(t){case 1:return n.layout.exists(a);case 2:return-1===n.hashFoundTime&&n.layout.exists(a)&&(n.hashFoundTime=e.time),n.hashFoundTime>-1&&e.time>n.hashFoundTime+100;case 3:for(var i=0,r=e.data;i<r.length;i++){var o=r[i];if((o.hashAlpha===a||o.hashBeta===a)&&null===o.parent)return!0}return!1;default:return!1}},this.html=function(a,i,r,o,s,c){return void 0===r&&(r=null),void 0===c&&(c=0),t(n,void 0,void 0,(function(){var t,n,l,u;return e(this,(function(e){switch(e.label){case 0:if(!(a&&a.length>0&&i))return[3,10];e.label=1;case 1:return e.trys.push([1,9,,10]),t=this.merge(a),[4,this.setup(i,{version:a[0].envelope.version,dom:t.dom,useproxy:o})];case 2:e.sent(),e.label=3;case 3:if(!(t.events.length>0))return[3,8];switch(n=t.events.shift(),n.event){case 45:case 46:return[3,4];case 6:return[3,5]}return[3,7];case 4:return this.layout.styleChange(n),[3,7];case 5:return l=n,this.renderTime=l.time,this.shortCircuitRendering(c,l,r)?[3,7]:[4,this.layout.markup(l,o)];case 6:return e.sent(),[3,7];case 7:return[3,3];case 8:return[3,10];case 9:return u=e.sent(),s&&s(u),[3,10];case 10:return[2,this]}}))}))},this.time=function(){return n.renderTime},this.clickmap=function(t){if(null===n.state)throw new Error('Initialize heatmap by calling "html" or "setup" prior to making this call.');n.heatmap.click(t)},this.clearmap=function(){if(null===n.state)throw new Error('Initialize heatmap by calling "html" or "setup" prior to making this call.');n.heatmap.clear()},this.scrollmap=function(t,e,a){if(null===n.state)throw new Error('Initialize heatmap by calling "html" or "setup" prior to making this call.');n.heatmap.scroll(t,e,a)},this.merge=function(t){var e={timestamp:null,envelope:null,dom:null,events:[]};t=t.sort(n.sortPayloads),n.enrich=n.enrich||new Fa,n.enrich.reset();for(var a=0,i=t;a<i.length;a++){var r=i[a];e.timestamp=e.timestamp?e.timestamp:r.timestamp,e.envelope=r.envelope;for(var o=0,s=Object.keys(r);o<s.length;o++){var c=s[o],l=r[c];if(Array.isArray(l))for(var u=0,d=l;u<d.length;u++){var h=d[u];if("dom"===c){var f=n.enrich.selectors(h);5===h.event?e.dom=f:e.events.push(h)}else e.events.push(h)}}}return e.events=e.events.sort(n.sortEvents),e},this.setup=function(i,r){return t(n,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return this.reset(),r.canvas=!("canvas"in r)||r.canvas,r.keyframes="keyframes"in r&&r.keyframes,this._state={window:i,options:r},this.enrich=new Fa,this.data=new a(this.state),this.layout=new La(this.state,r.mobile),this.heatmap=new Ua(this.state,this.layout),this.interaction=new Pa(this.state,this.layout),r.dom?[4,this.layout.dom(r.dom,r.useproxy)]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,this]}}))}))},this.render=function(a){return t(n,void 0,void 0,(function(){var t,n,i,r;return e(this,(function(e){switch(e.label){case 0:if(null===this.state)throw new Error('Initialize visualization by calling "setup" prior to making this call.');t=0,n=0,i=a,e.label=1;case 1:if(!(n<i.length))return[3,16];switch(r=i[n],t=r.time,r.event){case 0:return[3,2];case 1:return[3,3];case 7:return[3,4];case 6:case 43:return[3,5];case 13:case 14:case 12:case 15:case 9:case 16:case 17:case 20:case 18:case 19:return[3,7];case 28:return[3,8];case 27:return[3,9];case 21:return[3,10];case 11:return[3,11];case 10:return[3,12];case 45:case 46:return[3,13];case 44:return[3,14]}return[3,15];case 2:return this.data.metric(r),[3,15];case 3:return r.data[37]&&this.data.metric(r),[3,15];case 4:return this.data.region(r),[3,15];case 5:return[4,this.layout.markup(r)];case 6:return e.sent(),[3,15];case 7:return this.interaction.pointer(r),[3,15];case 8:return this.interaction.visibility(r),[3,15];case 9:return this.interaction.input(r),[3,15];case 10:return this.interaction.selection(r),[3,15];case 11:return this.interaction.resize(r),[3,15];case 12:return this.interaction.scroll(r),[3,15];case 13:return this.layout.styleChange(r),[3,15];case 14:return this.layout.animateChange(r),[3,15];case 15:return n++,[3,1];case 16:return a.length>0&&this.interaction.trail(t),[2]}}))}))},this.reset=function(){var t,e,a,i,r;null===(t=n.data)||void 0===t||t.reset(),null===(e=n.interaction)||void 0===e||e.reset(),null===(a=n.layout)||void 0===a||a.reset(),null===(i=n.heatmap)||void 0===i||i.reset(),null===(r=n.enrich)||void 0===r||r.reset(),n._state=null,n.renderTime=0},this.sortEvents=function(t,e){return t.time-e.time},this.sortPayloads=function(t,e){return t.envelope.sequence-e.envelope.sequence}}return Object.defineProperty(n.prototype,"state",{get:function(){return this._state},enumerable:!1,configurable:!0}),n}(),Qa=(Da=new za).state,Ha=Da.dom,Xa=Da.get,ja=Da.html,Va=Da.time,Wa=Da.clickmap,qa=Da.clearmap,Ga=Da.scrollmap,Ka=Da.merge,Ja=Da.setup,Za=Da.render,_a=Object.freeze({__proto__:null,clearmap:qa,clickmap:Wa,dom:Ha,get:Xa,html:ja,merge:Ka,render:Za,scrollmap:Ga,setup:Ja,state:Qa,time:Va});"undefined"!=typeof window&&(void 0!==window.clarity&&null!==window.clarity||(window.clarity={}),window.clarity.visualize=_a)}();
|
|
1
|
+
!function(){"use strict";function t(t,e,n,a){return new(n||(n=Promise))((function(i,r){function o(t){try{c(a.next(t))}catch(t){r(t)}}function s(t){try{c(a.throw(t))}catch(t){r(t)}}function c(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,s)}c((a=a.apply(t,e||[])).next())}))}function e(t,e){var n,a,i,r,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return r={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(r[Symbol.iterator]=function(){return this}),r;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;r&&(r=0,s[0]&&(o=0)),o;)try{if(n=1,a&&(i=2&s[0]?a.return:s[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,s[1])).done)return i;switch(a=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,a=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=e.call(t,o)}catch(t){s=[6,t],a=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}var n,a=function(){function t(e){var n=this;this.regionMap={},this.regions={},this.metrics={},this.lean=!1,this.reset=function(){n.metrics={},n.lean=!1,n.regions={},n.regionMap={}},this.metric=function(e){var a;if(n.state.options.metadata){var i=[],r=[];for(var o in e.data){var s=typeof e.data[o];if("number"===s||1===e.event&&o===37..toString()){o in n.metrics||(n.metrics[o]=0);var c=parseInt(o,10),l="object"===s?Number(null===(a=e.data[o])||void 0===a?void 0:a[0]):e.data[o];!(o in t.METRIC_MAP)||"html-price"!==t.METRIC_MAP[o].unit&&"ld-price"!==t.METRIC_MAP[o].unit?n.metrics[o]+=l:n.metrics[o]=l,n.lean=1===c&&0===l||n.lean}}for(var u in n.metrics)if(u in t.METRIC_MAP){o=n.metrics[u];var d=t.METRIC_MAP[u],h="unit"in d?d.unit:"";i.push("<li><h2>".concat(n.value(o,h),"<span>").concat(n.key(h),"</span></h2>").concat(d.name,"</li>"))}for(var f in n.regions){var A=n.regions[f],p=10===A.visibility?"visible":20===A.interaction?"clicked":"";r.push('<span class="'.concat(p,'">').concat(f,"</span>"))}n.state.options.metadata.innerHTML="<ul>".concat(i.join(""),"</ul><div>").concat(r.join(""),"</div>")}},this.key=function(t){switch(t){case"html-price":case"ld-price":case"cls":return"";default:return t}},this.value=function(t,e){switch(e){case"KB":return Math.round(t/1024);case"s":return Math.round(t/10)/100;case"cls":return t/1e3;case"html-price":return t/100;default:return t}},this.state=e}return t.prototype.region=function(t){for(var e=0,n=t.data;e<n.length;e++){var a=n[e];a.name in this.regions||(this.regions[a.name]={interaction:a.interaction,visibility:a.visibility}),this.regionMap[a.id]=a.name}},t.METRIC_MAP=((n={})[2]={name:"Total Bytes",unit:"KB"},n[4]={name:"Total Cost",unit:"ms"},n[3]={name:"Layout Cost",unit:"ms"},n[8]={name:"LCP",unit:"s"},n[9]={name:"CLS",unit:"cls"},n[7]={name:"Long Tasks"},n[24]={name:"Cart Total",unit:"html-price"},n[13]={name:"Product Price",unit:"ld-price"},n[6]={name:"Thread Blocked",unit:"ms"},n[37]={name:"INP",unit:"ms"},n),t}(),i={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,includeSubdomains:!0,throttleMutations:!1,dropMutations:!1,criticalMs:200,discard:[]};function r(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var o=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-o),0)}function c(t,e){void 0===e&&(e=null);for(var n,a=5381,i=a,r=0;r<t.length;r+=2){if(a=(a<<5)+a^t.charCodeAt(r),r+1<t.length)i=(i<<5)+i^t.charCodeAt(r+1)}return n=Math.abs(a+11579*i),(e?n%Math.pow(2,e):n).toString(36)}var l=/\S/gi,u=255,d=!0,h=null,f=null,A=null;function p(t,e,n,a,i){if(void 0===a&&(a=!1),t){if("input"==e&&("checkbox"===i||"radio"===i))return 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,i=!1,r=!1,o=null;b();for(var s=0;s<t.length;s++){var c=t.charCodeAt(s);if(a=a||c>=48&&c<=57,i=i||64===c,r=9===c||10===c||13===c||32===c,0===s||s===t.length-1||r){if(a||i){null===o&&(o=t.split(""));var l=t.substring(e+1,r?s:s+1);l=d&&null!==A?l.match(A)?l:y(l,"▪","▫"):g(l),o.splice(e+1-n,l.length,l),n+=l.length-1}r&&(a=!1,i=!1,e=s)}}return o?o.join(""):t}(t);case"input":case"change":return w(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?v(t):g(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return w(t);case"placeholder":return g(t)}break;case 4:switch(e){case"*T":case"data-":return a?v(t):g(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 y(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 m(t,e,n){void 0===e&&(e=!1),void 0===n&&(n=!1);var a=t;if(e)a="".concat("https://").concat("Electron");else{var r=i.drop;if(r&&r.length>0&&t&&t.indexOf("?")>0){var o=t.split("?"),s=o[0],c=o[1];a=s+"?"+c.split("&").map((function(t){return r.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}}return n&&(a=a.substring(0,u)),a}function v(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),i=t.substr(0,a),r=t.substr(a+e.length);return"".concat(i).concat(e.length.toString(36)).concat(r)}return t}function g(t){return t.replace(l,"•")}function y(t,e,n){return b(),t?t.replace(f,e).replace(h,n):t}function w(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 b(){if(d&&null===h)try{h=new RegExp("\\p{N}","gu"),f=new RegExp("\\p{L}","gu"),A=new RegExp("\\p{Sc}","gu")}catch(t){d=!1}}var x=null;function E(t,e,n,a){switch(t){case 8:x.docWidth=e,x.docHeight=n;break;case 11:x.screenWidth=e,x.screenHeight=n;break;case 10:x.scrollX=e,x.scrollY=n,x.scrollTime=a;break;default:x.pointerX=e,x.pointerY=n}}function k(t){x.activityTime=t}var S=null,M=null;function C(t){t in S||(S[t]=0),t in M||(M[t]=0),S[t]++,M[t]++}function T(t,e){null!==e&&(t in S||(S[t]=0),t in M||(M[t]=0),S[t]+=e,M[t]+=e)}function I(t,e){null!==e&&!1===isNaN(e)&&(t in S||(S[t]=0),(e>S[t]||0===S[t])&&(M[t]=e,S[t]=e))}function R(t,e,n){return window.setTimeout(Aa(t),e,n)}function O(t){return window.clearTimeout(t)}var N=null;function B(t,e,n,a){return new(n||(n=Promise))((function(i,r){function o(t){try{c(a.next(t))}catch(t){r(t)}}function s(t){try{c(a.throw(t))}catch(t){r(t)}}function c(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,s)}c((a=a.apply(t,e||[])).next())}))}function D(t,e){var n,a,i,r,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return r={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(r[Symbol.iterator]=function(){return this}),r;function s(s){return function(c){return function(s){if(n)throw new TypeError("Generator is already executing.");for(;r&&(r=0,s[0]&&(o=0)),o;)try{if(n=1,a&&(i=2&s[0]?a.return:s[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,s[1])).done)return i;switch(a=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,a=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]<i[3])){o.label=s[1];break}if(6===s[0]&&o.label<i[1]){o.label=i[1],i=s;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(s);break}i[2]&&o.ops.pop(),o.trys.pop();continue}s=e.call(t,o)}catch(t){s=[6,t],a=0}finally{n=i=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,c])}}}var Y,F=[];function U(t,e,n){null!==t&&n&&n.length>=5&&(Y={id:t,target:e,checksum:c(n,28)},F.indexOf(Y.checksum)<0&&(F.push(Y.checksum),Zn(41)))}var P="load,active,fixed,visible,focus,show,collaps,animat".split(","),L={};function z(){L={}}function Q(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,i=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 r="".concat(a).concat(t.tag).concat(i),o="id"in n&&n.id.length>0?n.id:null,s="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return H(t)})).join("."):null;if(s&&s.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("~"),i=e[n].indexOf(".");e[n]=e[n].substring(0,i>0?i:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(s);c in L||(L[c]=[]),L[c].indexOf(t.id)<0&&L[c].push(t.id),r="".concat(c).concat("~").concat(L[c].indexOf(t.id))}else r="".concat(a).concat(t.tag,".").concat(s).concat(i);return r=o&&H(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):r,r}}function H(t){if(!t)return!1;if(P.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 X=Object.freeze({__proto__:null,get:Q,reset:z}),j=1,V=null,W=[],q=[],G={},K=[],J=[],Z=[],_=[],$=[],tt=[],et=null,nt=null,at=null,it=null;function rt(){ot(),st(document,!0)}function ot(){j=1,W=[],q=[],G={},K=[],J=[],Z="address,password,contact".split(","),_="password,secret,pass,social,ssn,code,hidden".split(","),$="radio,checkbox,range,button,reset,submit".split(","),tt="INPUT,SELECT,TEXTAREA".split(","),V=new Map,et=new WeakMap,nt=new WeakMap,at=new WeakMap,it=new WeakMap,z()}function st(t,e){void 0===e&&(e=!1);try{e&&i.unmask.forEach((function(t){return t.indexOf("!")<0?J.push(t):K.push(t.substr(1))})),"querySelectorAll"in t&&(i.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Dn(t,"".concat(e[0]))}))})),i.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return at.set(t,3)}))})),i.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return it.set(t,e[0])}))})),J.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return at.set(t,0)}))})))}catch(t){ea(5,1,t?t.name:null)}}function ct(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=et.get(t);return!n&&e&&(n=j++,et.set(t,n)),n||null}function lt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(nt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function ut(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&nt.has(e)?nt.get(e):null}function dt(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 ht(t){var e=t.parent&&t.parent in W?W[t.parent]:null,n=e?e.selector:null,a=t.data,i=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=W[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),r={id:t.id,tag:a.tag,prefix:n,position:i,attributes:a.attributes};t.selector=[Q(r,0),Q(r,1)],t.hash=t.selector.map((function(t){return t?c(t):null})),t.hash.forEach((function(e){return G[e]=t.id}))}function ft(t){return V.has(t)?V.get(t):null}function At(t){var e=ct(t);return e in W?W[e]:null}function pt(t){return t in G?G[t]:null}function mt(t){return V.has(ct(t))}function vt(){for(var t=[],e=0,n=q;e<n.length;e++){var a=n[e];a in W&&t.push(W[a])}return q=[],t}function gt(t){if(V.get(t).nodeType!==Node.DOCUMENT_FRAGMENT_NODE){V.delete(t);var e=t in W?W[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){gt(a[n])}}}function yt(t){for(var e=null;null===e&&t.previousSibling;)e=ct(t.previousSibling),t=t.previousSibling;return e}function wt(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var i=q.indexOf(t);i>=0&&1===e&&a?(q.splice(i,1),q.push(t)):-1===i&&n&&q.push(t)}var bt=Object.freeze({__proto__:null,add:function(t,e,n,a){var i=e?ct(e):null;if(e&&i||null!=t.host||t.nodeType===Node.DOCUMENT_TYPE_NODE){var r=ct(t,!0),o=yt(t),s=null,c=Yn(t)?r:null,l=it.has(t)?it.get(t):null,u=1;i>=0&&W[i]&&((s=W[i]).children.push(r),c=null===c?s.region:c,l=null===l?s.metadata.fraud:l,u=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Dn(t,n.attributes["data-clarity-region"]),c=r),V.set(r,t),W[r]={id:r,parent:i,previous:o,children:[],data:n,selector:null,hash:null,region:c,metadata:{active:!0,suspend:!1,privacy:u,position:null,fraud:l,size:null}},function(t,e,n){var a,i=e.data,r=e.metadata,o=r.privacy,s=i.attributes||{},c=i.tag.toUpperCase();switch(!0){case tt.indexOf(c)>=0:var l=s.type,u="",d=["class","style"];Object.keys(s).filter((function(t){return!d.includes(t)})).forEach((function(t){return u+=s[t].toLowerCase()}));var h=_.some((function(t){return u.indexOf(t)>=0}));r.privacy="INPUT"===c&&$.indexOf(l)>=0?o:h?4:2;break;case"data-clarity-mask"in s:r.privacy=3;break;case"data-clarity-unmask"in s:r.privacy=0;break;case at.has(t):r.privacy=at.get(t);break;case it.has(t):r.privacy=2;break;case"*T"===c:var f=n&&n.data?n.data.tag:"",A=n&&n.selector?n.selector[1]:"",p=["STYLE","TITLE","svg:style"];r.privacy=p.includes(f)||K.some((function(t){return A.indexOf(t)>=0}))?0:o;break;case 1===o:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(s.class,Z,r);break;case"IMG"===c:(null===(a=s.src)||void 0===a?void 0:a.startsWith("blob:"))&&(r.privacy=3)}}(t,W[r],s),ht(W[r]),function(t){if("IMG"===t.data.tag&&3===t.metadata.privacy){var e=ft(t.id);!e||e.complete&&0!==e.naturalWidth||ma(e,"load",(function(){e.setAttribute("data-clarity-loaded","".concat(da()))})),t.metadata.size=[]}}(W[r]),wt(r,a)}},get:At,getId:ct,getNode:ft,getValue:function(t){return t in W?W[t]:null},has:mt,hashText:function(t){var e=ft(pt(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""},iframe:ut,lookup:pt,parse:st,sameorigin:lt,start:rt,stop:function(){ot()},update:function(t,e,n,a){var i=ct(t),r=e?ct(e):null,o=yt(t),s=!1,c=!1;if(i in W){var l=W[i];if(l.metadata.active=!0,l.previous!==o&&(s=!0,l.previous=o),l.parent!==r){s=!0;var u=l.parent;if(l.parent=r,null!==r&&r>=0){var d=null===o?0:W[r].children.indexOf(o)+1;W[r].children.splice(d,0,i),l.region=Yn(t)?i:W[r].region}else!function(t,e){if(t in W){var n=W[t];n.metadata.active=!1,n.parent=null,wt(t,e),gt(t)}}(i,a);if(null!==u&&u>=0){var h=W[u].children.indexOf(i);h>=0&&W[u].children.splice(h,1)}c=!0}for(var f in n)dt(l.data,n,f)&&(s=!0,l.data[f]=n[f]);ht(l),wt(i,a,s,c)}},updates:vt}),xt=5e3,Et={},kt=[],St=null,Mt=null;function Ct(t,e){return void 0===e&&(e=0),B(this,void 0,void 0,(function(){var n,a,i;return D(this,(function(r){for(n=0,a=kt;n<a.length;n++)if(a[n].task===t)return[2];return i=new Promise((function(n){kt[1===e?"unshift":"push"]({task:t,resolve:n,id:la()})})),null===St&&null===Mt&&Tt(),[2,i]}))}))}function Tt(){var t=kt.shift();t&&(St=t,t.task().then((function(){t.id===la()&&(t.resolve(),St=null,Tt())})).catch((function(e){t.id===la()&&(e&&ea(0,1,e.name,e.message,e.stack),St=null,Tt())})))}function It(t){var e=Bt(t);return e in Et?performance.now()-Et[e].start>Et[e].yield?0:1:2}function Rt(t){Et[Bt(t)]={start:performance.now(),calls:0,yield:30}}function Ot(t){var e=performance.now(),n=Bt(t),a=e-Et[n].start;T(t.cost,a),C(5),Et[n].calls>0&&T(4,a)}function Nt(t){return B(this,void 0,void 0,(function(){var e,n;return D(this,(function(a){switch(a.label){case 0:return(e=Bt(t))in Et?(Ot(t),n=Et[e],[4,Dt()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Bt(t);if(Et&&Et[e]){var n=Et[e].calls,a=Et[e].yield;Rt(t),Et[e].calls=n+1,Et[e].yield=a}}(t),a.label=2;case 2:return[2,e in Et?1:2]}}))}))}function Bt(t){return"".concat(t.id,".").concat(t.cost)}function Dt(){return B(this,void 0,void 0,(function(){return D(this,(function(t){switch(t.label){case 0:return[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Ft(t,{timeout:xt})}))]}}))}))}var Yt,Ft=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,i=a.port1,r=a.port2;i.onmessage=function(a){var i=performance.now(),o=i-n,s=i-a.data;if(s>30&&o<e.timeout)requestAnimationFrame((function(){r.postMessage(i)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-s)}})}},requestAnimationFrame((function(){r.postMessage(performance.now())}))};function Ut(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,i=t?t.offsetWidth:null,r=e?e.clientWidth:null,o=e?e.scrollWidth:null,s=e?e.offsetWidth:null,c=Math.max(n,a,i,r,o,s),l=t?t.clientHeight:null,u=t?t.scrollHeight:null,d=t?t.offsetHeight:null,h=e?e.clientHeight:null,f=e?e.scrollHeight:null,A=e?e.offsetHeight:null,p=Math.max(l,u,d,h,f,A);null!==Yt&&c===Yt.width&&p===Yt.height||null===c||null===p||(Yt={width:c,height:p},kn(8))}Ut.dn=19;var Pt=[];function Lt(t){var e=Qn(t);if(e){var n=e.value,a=n&&n.length>=5&&i.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?c(n,28):"";Pt.push({time:s(t),event:42,data:{target:Qn(t),type:e.type,value:n,checksum:a}}),Ct(Xn.bind(this,42))}}function zt(){Pt=[]}function Qt(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?ut(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}Lt.dn=5;var Ht=["input","textarea","radio","button","canvas"],Xt=[];function jt(t,e,n){var a=ut(e),i=a?a.contentDocument.documentElement:document.documentElement,r="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+i.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+i.scrollTop):null;if(a){var c=Qt(a);r=r?r+Math.round(c.x):r,o=o?o+Math.round(c.y):o}var l=Qn(n),u=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}(l),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}(l);0===n.detail&&d&&(r=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var h=d?Math.max(Math.floor((r-d.x)/d.w*32767),0):0,f=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==r&&null!==o&&(Xt.push({time:s(n),event:t,data:{target:l,x:r,y:o,eX:h,eY:f,button:n.button,reaction:Wt(l),context:qt(u),text:Vt(l),link:u?u.href:null,hash:null,trust:n.isTrusted?1:0}}),Ct(Xn.bind(this,t)))}function Vt(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 Wt(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(Ht.indexOf(e)>=0)return 0}return 1}function qt(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 Gt(){Xt=[]}jt.dn=6;var Kt=[];function Jt(t,e){Kt.push({time:s(e),event:38,data:{target:Qn(e),action:t}}),Ct(Xn.bind(this,38))}function Zt(){Kt=[]}Jt.dn=7;var _t=null,$t=[];function te(t){var e=Qn(t),n=At(e);if(e&&e.type&&n){var a=e.value,i=e.type;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a,type:i};$t.length>0&&$t[$t.length-1].data.target===r.target&&$t.pop(),$t.push({time:s(t),event:27,data:r}),O(_t),_t=R(ee,1e3,27)}}function ee(t){Ct(Xn.bind(this,t))}function ne(){$t=[]}te.dn=9;var ae,ie=[],re=null,oe=!1,se=0,ce=new Set;function le(t,e,n){var a=ut(e),i=a?a.contentDocument.documentElement:document.documentElement,r="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+i.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+i.scrollTop):null;if(a){var c=Qt(a);r=r?r+Math.round(c.x):r,o=o?o+Math.round(c.y):o}null!==r&&null!==o&&de({time:s(n),event:t,data:{target:Qn(n),x:r,y:o}})}function ue(t,e,n){var a=ut(e),i=a?a.contentDocument.documentElement:document.documentElement,r=n.changedTouches,o=s(n);if(r)for(var c=0;c<r.length;c++){var l=r[c],u="clientX"in l?Math.round(l.clientX+i.scrollLeft):null,d="clientY"in l?Math.round(l.clientY+i.scrollTop):null;u=u&&a?u+Math.round(a.offsetLeft):u,d=d&&a?d+Math.round(a.offsetTop):d;var h="identifier"in l?l.identifier:void 0;switch(t){case 17:0===ce.size&&(oe=!0,se=h),ce.add(h);break;case 18:case 20:ce.delete(h)}var f=oe&&se===h;null!==u&&null!==d&&de({time:o,event:t,data:{target:Qn(n),x:u,y:d,id:h,isPrimary:f}}),20!==t&&18!==t||se===h&&(oe=!1)}}function de(t){switch(t.event){case 12:case 15:case 19:var e=ie.length,n=e>1?ie[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,i=Math.sqrt(n*n+a*a),r=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&i<20&&r<25}(n,t)&&ie.pop(),ie.push(t),O(re),re=R(he,500,t.event);break;default:ie.push(t),he(t.event)}}function he(t){Ct(Xn.bind(this,t))}function fe(){ie=[]}le.dn=10,ue.dn=11;var Ae=null,pe=!1;function me(){var t=document.documentElement;ae={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},pe?(O(Ae),Ae=R(ve,500,11)):(Xn(11),pe=!0)}function ve(t){Ct(Xn.bind(this,t))}me.dn=12;var ge=[],ye=null,we=null,be=null;function xe(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?Qn(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var i=ut(a);e=i?i.contentWindow:e,a=n=a.documentElement}var r=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),c=window.innerWidth,l=window.innerHeight,u=c/3,d=c>l?.15*l:.2*l,h=l-d,f=Ee(u,d),A=Ee(u,h),p={time:s(t),event:10,data:{target:a,x:r,y:o,top:f,bottom:A}};if(null===t&&0===r&&0===o||null===r||null===o)return ye=f,void(we=A);var m=ge.length,v=m>1?ge[m-2]:null;v&&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}(v,p)&&ge.pop(),ge.push(p),O(be),be=R(ke,500,10)}function Ee(t,e){var n,a,i;return"caretPositionFromPoint"in document?i=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(i=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),i||(i=document.elementFromPoint(t,e)),i&&i.nodeType===Node.TEXT_NODE&&(i=i.parentNode),i}function ke(t){Ct(Xn.bind(this,t))}function Se(){var t,e;if(ye){var n=Hn(ye,null);oa(31,null===(t=null==n?void 0:n.hash)||void 0===t?void 0:t.join("."))}if(we){var a=Hn(we,null);oa(32,null===(e=null==a?void 0:a.hash)||void 0===e?void 0:e.join("."))}}xe.dn=13,Se.dn=14;var Me=null,Ce=null,Te=null;function Ie(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=Me.start?Me.start:null;null!==Ce&&null!==Me.start&&n!==e.anchorNode&&(O(Te),Re(21)),Me={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Ce=e,O(Te),Te=R(Re,500,21)}}function Re(t){Ct(Xn.bind(this,t))}function Oe(){Ce=null,Me={start:0,startOffset:0,end:0,endOffset:0}}Ie.dn=15;var Ne,Be,De=[];function Ye(t){De.push({time:s(t),event:39,data:{target:Qn(t)}}),Ct(Xn.bind(this,39))}function Fe(){De=[]}function Ue(t){Ne={name:t.type},Xn(26,s(t))}function Pe(t){void 0===t&&(t=null),Be={visible:"visibilityState"in document?document.visibilityState:"default"},Xn(28,s(t))}function Le(t){!function(t){var e=ut(t);ma(e?e.contentWindow:t===document?window:t,"scroll",xe,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(function(t){ma(t,"click",jt.bind(this,9,t),!0)}(t),function(t){ma(t,"cut",Jt.bind(this,0),!0),ma(t,"copy",Jt.bind(this,1),!0),ma(t,"paste",Jt.bind(this,2),!0)}(t),function(t){ma(t,"mousedown",le.bind(this,13,t),!0),ma(t,"mouseup",le.bind(this,14,t),!0),ma(t,"mousemove",le.bind(this,12,t),!0),ma(t,"wheel",le.bind(this,15,t),!0),ma(t,"dblclick",le.bind(this,16,t),!0),ma(t,"touchstart",ue.bind(this,17,t),!0),ma(t,"touchend",ue.bind(this,18,t),!0),ma(t,"touchmove",ue.bind(this,19,t),!0),ma(t,"touchcancel",ue.bind(this,20,t),!0)}(t),function(t){ma(t,"input",te,!0)}(t),function(t){ma(t,"selectstart",Ie.bind(this,t),!0),ma(t,"selectionchange",Ie.bind(this,t),!0)}(t),function(t){ma(t,"change",Lt,!0)}(t),function(t){ma(t,"submit",Ye,!0)}(t))}function ze(t,e,n,a){return B(this,void 0,void 0,(function(){var i,r,o,s,c;return D(this,(function(l){switch(l.label){case 0:i=[t],l.label=1;case 1:if(!(i.length>0))return[3,4];for(r=i.shift(),o=r.firstChild;o;)i.push(o),o=o.nextSibling;return 0!==(s=It(e))?[3,3]:[4,Nt(e)];case 2:s=l.sent(),l.label=3;case 3:return 2===s?[3,4]:((c=dn(r,n,a))&&i.push(c),[3,1]);case 4:return[2]}}))}))}Ye.dn=16,Ue.dn=17,Pe.dn=18;var Qe=[],He=[],Xe={},je=null,Ve=null,We=null,qe=null,Ge=null,Ke=null,Je=null,Ze={};function _e(){if(Qe=[],[],null,Je=0,Ze={},null===je&&(je=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return je.apply(this,arguments)}),"CSSMediaRule"in window&&null===qe&&(qe=CSSMediaRule.prototype.insertRule,CSSMediaRule.prototype.insertRule=function(){return qe.apply(this,arguments)}),null===Ve&&(Ve=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return Ve.apply(this,arguments)}),"CSSMediaRule"in window&&null===Ge&&(Ge=CSSMediaRule.prototype.deleteRule,CSSMediaRule.prototype.deleteRule=function(){return Ge.apply(this,arguments)}),null===We){We=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){if(!va)return We.apply(this,arguments)}}catch(t){We=null}}}function $e(t){var e=s();!function(t,e){if(t in N){var n=N[t],a=n[n.length-1];e-a[0]>100?N[t].push([e,0]):a[1]=e-a[0]}else N[t]=[[e,0]]}(6,e),He.push({time:e,mutations:t}),Ct(en,1).then((function(){R(Ut),Aa(Fn)()}))}function tn(t,e,n,a){return B(this,void 0,void 0,(function(){var r,o,s;return D(this,(function(c){switch(c.label){case 0:return 0!==(r=It(t))?[3,2]:[4,Nt(t)];case 1:r=c.sent(),c.label=2;case 2:if(2===r)return[2];switch(o=e.target,s=function(t,e,n,a){var r=t.target?At(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var o=a>Je,s=At(t.target),c=s&&s.selector?s.selector.join():t.target.nodeName,l=r.selector?r.selector.join():"",u=i.throttleMutations,d=[l,c,t.attributeName,nn(t.addedNodes),nn(t.removedNodes)].join();Ze[d]=d in Ze?Ze[d]:[0,n];var h=Ze[d];if(!1===o&&h[0]>=10&&an(h[2],2,e,a),h[0]=o||u?h[1]===n?h[0]:h[0]+1:1,h[1]=n,h[0]>=10||u)return h[2]=t.removedNodes,n>a+3e3?t.type:(Xe[d]={mutation:t,timestamp:a},"throttle")}return t.type}(e,t,n,a),s&&o&&o.ownerDocument&&st(o.ownerDocument),s&&o&&o.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&o.host&&st(o),s){case"attributes":dn(o,3,a);break;case"characterData":dn(o,4,a);break;case"childList":an(e.addedNodes,1,t,a),an(e.removedNodes,2,t,a)}return[2]}}))}))}function en(){return B(this,void 0,void 0,(function(){var t,e,n,a,i,r,o,c,l,u,d;return D(this,(function(h){switch(h.label){case 0:Rt(t={id:la(),cost:3}),h.label=1;case 1:if(!(He.length>0))return[3,3];for(e=He.shift(),n=s(),a=0,i=e.mutations;a<i.length;a++)r=i[a],tn(t,r,n,e.time);return[4,kn(6,t,e.time)];case 2:return h.sent(),[3,1];case 3:for(o=!1,c=0,l=Object.keys(Xe);c<l.length;c++)u=l[c],d=Xe[u],delete Xe[u],tn(t,d.mutation,s(),d.timestamp),o=!0;return Object.keys(Xe).length>0&&function(){Ke&&O(Ke);Ke=R((function(){Ct(en,1)}),33)}(),0===Object.keys(Xe).length&&o?[4,kn(6,t,s())]:[3,5];case 4:h.sent(),h.label=5;case 5:return function(){var t=s();Object.keys(Ze).length>1e4&&(Ze={},C(38));for(var e=0,n=Object.keys(Ze);e<n.length;e++){var a=n[e];t>Ze[a][1]+3e4&&delete Ze[a]}}(),Ot(t),[2]}}))}))}function nn(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function an(t,e,n,a){return B(this,void 0,void 0,(function(){var i,r,o,s;return D(this,(function(c){switch(c.label){case 0:i=t?t.length:0,r=0,c.label=1;case 1:return r<i?(o=t[r],1!==e?[3,2]:(ze(o,n,e,a),[3,5])):[3,6];case 2:return 0!==(s=It(n))?[3,4]:[4,Nt(n)];case 3:s=c.sent(),c.label=4;case 4:if(2===s)return[3,6];dn(o,e,a),c.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function rn(t,e){Aa($e)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}_e.dn=21,$e.dn=22,rn.dn=23;var on=/[^0-9\.]/g;function sn(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],i=t[a];if("@type"===a&&"string"==typeof i)switch(i=(i=i.toLowerCase()).indexOf("article")>=0||i.indexOf("posting")>=0?"article":i){case"article":case"recipe":oa(5,t[a]),oa(8,t.creator),oa(18,t.headline);break;case"product":oa(5,t[a]),oa(10,t.name),oa(12,t.sku),t.brand&&oa(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(I(11,cn(t.ratingValue,100)),I(18,cn(t.bestRating)),I(19,cn(t.worstRating))),I(12,cn(t.ratingCount)),I(17,cn(t.reviewCount));break;case"offer":oa(7,t.availability),oa(14,t.itemCondition),oa(13,t.priceCurrency),oa(12,t.sku),I(13,cn(t.price));break;case"brand":oa(6,t.name)}null!==i&&"object"==typeof i&&sn(i)}}function cn(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(on,""))*e)}return null}var ln=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last","aria-label"],un=/[\r\n]+/g;function dn(t,e,n){var a,i=null;if(2===e&&!1===mt(t))return i;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var r=!1===mt(t)?"add":"update",o=t.parentElement?t.parentElement:null,s=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=s&&t.parentNode?ut(t.parentNode):o;var c=t,l={tag:(s?"iframe:":"")+"*D",attributes:{name:c.name?c.name:"HTML",publicId:c.publicId,systemId:c.systemId}};bt[r](t,o,l,e);break;case Node.DOCUMENT_NODE:t===document&&st(document),wn(t,n),hn(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var u=t;if(u.host){if(st(u),"function"===typeof u.constructor&&u.constructor.toString().indexOf("[native code]")>=0){hn(u);var d={tag:"*S",attributes:{style:""}};bt[r](t,u.host,d,e)}else bt[r](t,u.host,{tag:"*P",attributes:{}},e);wn(t,n)}break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===r||o&&mt(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var h={tag:"*T",value:t.nodeValue};bt[r](t,o,h,e)}break;case Node.ELEMENT_NODE:var f=t,A=f.tagName,p=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var i=n[a].name;ln.indexOf(i)<0&&(e[i]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(f);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===f.namespaceURI&&(A="svg:"+A),A){case"HTML":o=s&&o?ut(o):o;var m={tag:(s?"iframe:":"")+A,attributes:p};bt[r](t,o,m,e);break;case"SCRIPT":if("type"in p&&"application/ld+json"===p.type)try{sn(JSON.parse(f.text.replace(un,"")))}catch(t){}break;case"NOSCRIPT":var v={tag:A,attributes:{},value:""};bt[r](t,o,v,e);break;case"META":var g="property"in p?"property":"name"in p?"name":null;if(g&&"content"in p){var y=p.content;switch(p[g]){case"og:title":oa(20,y);break;case"og:type":oa(19,y);break;case"generator":oa(21,y)}}break;case"HEAD":var w={tag:A,attributes:p},b=s&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=b.protocol+"//"+b.host+b.pathname,bt[r](t,o,w,e);break;case"BASE":var x=At(t.parentElement);if(x){var E=document.createElement("a");E.href=p.href,x.data.attributes["*B"]=E.protocol+"//"+E.host+E.pathname}break;case"STYLE":var k={tag:A,attributes:p,value:fn(f)};bt[r](t,o,k,e);break;case"IFRAME":var S=t,M={tag:A,attributes:p};lt(S)&&(!function(t){!1===mt(t)&&ma(t,"load",rn.bind(this,t,"childList"),!0)}(S),M.attributes["*O"]="true",S.contentDocument&&S.contentWindow&&"loading"!==S.contentDocument.readyState&&(i=S.contentDocument)),bt[r](t,o,M,e);break;case"LINK":var C={tag:A,attributes:p};bt[r](t,o,C,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in p&&p.src.startsWith("data:")&&(p.src="");var T={tag:A,attributes:p};bt[r](t,o,T,e);break;default:var I={tag:A,attributes:p};f.shadowRoot&&(i=f.shadowRoot),bt[r](t,o,I,e)}}return i}function hn(t){mt(t)||(!function(t){try{var e=r("MutationObserver"),n=e in window?new window[e](Aa($e)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),Qe.push(n))}catch(t){ea(2,0,t?t.name:null)}}(t),Le(t))}function fn(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=An(t.sheet)),e}function An(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(ea(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}var pn=[],mn=[],vn="claritySheetId",gn="claritySheetNum",yn={};function wn(t,e){if(e=e||s(),null==t?void 0:t.adoptedStyleSheets){I(36,1);for(var n=[],a=0,i=t.adoptedStyleSheets;a<i.length;a++){var r=i[a],o=sa.pageNum;r[gn]!==o&&(r[gn]=o,r[vn]=da(),bn(e,r[vn],0),bn(e,r[vn],2,An(r))),n.push(r[vn])}var c=ct(t,!0);yn[c]||(yn[c]=[]),function(t,e){if(t.length!==e.length)return!1;return t.every((function(t,n){return t===e[n]}))}(n,yn[c])||(!function(t,e,n,a){mn.push({time:t,event:45,data:{id:e,operation:n,newIds:a}}),kn(45)}(e,t==document?-1:ct(t),3,n),yn[c]=n)}}function bn(t,e,n,a){pn.push({time:t,event:46,data:{id:e,operation:n,cssRules:a}}),kn(46)}var xn=[];function En(){xn=[]}function kn(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),B(this,void 0,void 0,(function(){var a,i,r,o,c,l,u,d,h,f,A,m,v,g,y,w,b,x,S,M,C,T,I,R,O,N,B,Y,F;return D(this,(function(D){switch(D.label){case 0:switch(a=n||s(),i=[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 r=Yt,i.push(r.width),i.push(r.height),E(t,r.width,r.height),[3,12];case 2:for(o=0,c=Tn;o<c.length;o++)l=c[o],(i=[l.time,7]).push(l.data.id),i.push(l.data.interaction),i.push(l.data.visibility),i.push(l.data.name);return zn(),[3,12];case 3:for(u=0,d=mn;u<d.length;u++)v=d[u],(i=[v.time,v.event]).push(v.data.id),i.push(v.data.operation),i.push(v.data.newIds);for(h=0,f=pn;h<f.length;h++)v=f[h],(i=[v.time,v.event]).push(v.data.id),i.push(v.data.operation),i.push(v.data.cssRules);return mn=[],pn=[],[3,12];case 4:for(A=0,m=xn;A<m.length;A++)v=m[A],(i=[v.time,v.event]).push(v.data.id),i.push(v.data.operation),i.push(v.data.keyFrames),i.push(v.data.timing),i.push(v.data.timeline),i.push(v.data.targetId);return En(),[3,12];case 5:if(2===It(e))return[3,12];if(!((g=vt()).length>0))return[3,11];y=0,w=g,D.label=6;case 6:return y<w.length?(b=w[y],0!==(x=It(e))?[3,8]:[4,Nt(e)]):[3,10];case 7:x=D.sent(),D.label=8;case 8:if(2===x)return[3,10];for(S=b.data,M=b.metadata.active,C=b.metadata.suspend,T=b.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(b),R=0,O=M?["tag","attributes","value"]:["tag"];R<O.length;R++)if(S[N=O[R]])switch(N){case"tag":B=Sn(b),Y=I?-1:1,i.push(b.id*Y),b.parent&&M&&(i.push(b.parent),b.previous&&i.push(b.previous)),i.push(C?"*M":S[N]),B&&2===B.length&&i.push("".concat("#").concat(Mn(B[0]),".").concat(Mn(B[1])));break;case"attributes":for(F in S[N])void 0!==S[N][F]&&i.push(Cn(F,S[N][F],T));break;case"value":U(b.metadata.fraud,b.id,S[N]),i.push(p(S[N],S.tag,T,I))}D.label=9;case 9:return y++,[3,6];case 10:6===t&&k(a),function(t){for(var e=[],n={},a=0,i=null,r=0;r<t.length;r++)if("string"==typeof t[r]){var o=t[r],s=n[o]||-1;s>=0?i?i.push(s):(i=[s],e.push(i),a++):(i=null,e.push(o),n[o]=a++)}else i=null,e.push(t[r]),a++}(i),D.label=11;case 11:return[3,12];case 12:return[2]}}))}))}function Sn(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=ft(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Mn(t){return t.toString(36)}function Cn(t,e,n){return"".concat(t,"=").concat(p(e,0===t.indexOf("data-")?"data-":t,n))}var Tn=[],In=null,Rn={},On=[],Nn=!1,Bn=null;function Dn(t,e){!1===In.has(t)&&(In.set(t,e),(Bn=null===Bn&&Nn?new IntersectionObserver(Un,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Bn)&&t&&t.nodeType===Node.ELEMENT_NODE&&Bn.observe(t))}function Yn(t){return In&&In.has(t)}function Fn(){for(var t=[],e=0,n=On;e<n.length;e++){var a=n[e],i=ct(a.node);i?(a.state.data.id=i,Rn[i]=a.state.data,Tn.push(a.state)):t.push(a)}On=t,Tn.length>0&&kn(7)}function Un(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],i=a.target,r=a.boundingClientRect,o=a.intersectionRect,s=a.rootBounds;if(In.has(i)&&r.width+r.height>0&&s.width>0&&s.height>0){var c=i?ct(i):null,l=c in Rn?Rn[c]:{id:c,name:In.get(i),interaction:16,visibility:0},u=(o?o.width*o.height*1/(s.width*s.height):0)>.05||a.intersectionRatio>.8,d=(u||10==l.visibility)&&Math.abs(r.top)+s.height>r.height;Pn(i,l,l.interaction,d?13:u?10:0),l.visibility>=13&&Bn&&Bn.unobserve(i)}}Tn.length>0&&kn(7)}function Pn(t,e,n,a){var i=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 Rn&&i||!(e.id in Rn))&&(Rn[e.id]=e,Tn.push(Ln(e))):On.push({node:t,state:Ln(e)})}function Ln(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function zn(){Tn=[]}function Qn(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return Je=s()+3e3,s(),i.criticalMs,n&&n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Hn(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var i=At(t);if(null!==i){var r=i.metadata;a.id=i.id,a.hash=i.hash,a.privacy=r.privacy,i.region&&function(t,e){var n=ft(t),a=t in Rn?Rn[t]:{id:t,visibility:0,interaction:16,name:In.get(n)},i=16;switch(e){case 9:i=20;break;case 27:i=30}Pn(n,a,i,a.visibility)}(i.region,e),r.fraud&&U(r.fraud,i.id,n||i.data.value)}}return a}function Xn(t,e){return void 0===e&&(e=null),B(this,void 0,void 0,(function(){var n,a,i,r,o,c,l,u,d,h,f,A,v,g,y,w,b,S,M,C,T,I,R,N,B,Y,F,U,P,L,z,Q,H,X,j;return D(this,(function(D){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(i=0,r=ie;i<r.length;i++)X=r[i],(o=Hn(X.data.target,X.event)).id>0&&((a=[X.time,X.event]).push(o.id),a.push(X.data.x),a.push(X.data.y),void 0!==X.data.id&&(a.push(X.data.id),void 0!==X.data.isPrimary&&a.push(X.data.isPrimary.toString())),E(X.event,X.data.x,X.data.y));fe();break;case 9:for(c=0,l=Xt;c<l.length;c++)X=l[c],u=Hn(X.data.target,X.event,X.data.text),a=[X.time,X.event],d=u.hash?u.hash.join("."):"",a.push(u.id),a.push(X.data.x),a.push(X.data.y),a.push(X.data.eX),a.push(X.data.eY),a.push(X.data.button),a.push(X.data.reaction),a.push(X.data.context),a.push(p(X.data.text,"click",u.privacy)),a.push(m(X.data.link)),a.push(d),a.push(X.data.trust),qn(X.time,X.event,d,X.data.x,X.data.y,X.data.reaction,X.data.context);Gt();break;case 38:for(h=0,f=Kt;h<f.length;h++)X=f[h],a=[X.time,X.event],(z=Hn(X.data.target,X.event)).id>0&&(a.push(z.id),a.push(X.data.action));Zt();break;case 11:A=ae,a.push(A.width),a.push(A.height),E(t,A.width,A.height),ae=null,O(Ae);break;case 26:v=Ne,a.push(v.name),Ne=null;break;case 27:for(g=0,y=$t;g<y.length;g++)X=y[g],w=Hn(X.data.target,X.event,X.data.value),(a=[X.time,X.event]).push(w.id),a.push(p(X.data.value,"input",w.privacy,!1,X.data.type));ne();break;case 21:(b=Me)&&(S=Hn(b.start,t),M=Hn(b.end,t),a.push(S.id),a.push(b.startOffset),a.push(M.id),a.push(b.endOffset),Oe());break;case 10:for(C=0,T=ge;C<T.length;C++)X=T[C],I=Hn(X.data.target,X.event),R=Hn(X.data.top,X.event),N=Hn(X.data.bottom,X.event),B=(null==R?void 0:R.hash)?R.hash.join("."):"",Y=(null==N?void 0:N.hash)?N.hash.join("."):"",I.id>0&&((a=[X.time,X.event]).push(I.id),a.push(X.data.x),a.push(X.data.y),a.push(B),a.push(Y),E(X.event,X.data.x,X.data.y,X.time));ge=[],ye=null,we=null;break;case 42:for(F=0,U=Pt;F<U.length;F++)X=U[F],a=[X.time,X.event],(z=Hn(X.data.target,X.event)).id>0&&((a=[X.time,X.event]).push(z.id),a.push(X.data.type),a.push(p(X.data.value,"change",z.privacy)),a.push(p(X.data.checksum,"checksum",z.privacy)));zt();break;case 39:for(P=0,L=De;P<L.length;P++)X=L[P],a=[X.time,X.event],(z=Hn(X.data.target,X.event)).id>0&&a.push(z.id);Fe();break;case 22:for(Q=0,H=Vn;Q<H.length;Q++)X=H[Q],(a=[X.time,X.event]).push(X.data.type),a.push(X.data.hash),a.push(X.data.x),a.push(X.data.y),a.push(X.data.reaction),a.push(X.data.context);Wn();break;case 28:j=Be,a.push(j.visible),function(t,e){x.visible="visible"===e?1:0,x.visible||k(t)}(n,j.visible),Be=null}return[2]}))}))}Fn.dn=24;var jn=[],Vn=[];function Wn(){Vn=[]}function qn(t,e,n,a,i,r,o){void 0===r&&(r=1),void 0===o&&(o=0),jn.push({time:t,event:22,data:{type:e,hash:n,x:a,y:i,reaction:r,context:o}}),E(e,a,i)}var Gn,Kn={};function Jn(t){var e=t.error||t;return e.message in Kn||(Kn[e.message]=0),Kn[e.message]++>=5||e&&e.message&&(Gn={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Zn(31)),!0}function Zn(t){return B(this,void 0,void 0,(function(){var e;return D(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Gn.message),e.push(Gn.line),e.push(Gn.column),e.push(Gn.stack),e.push(m(Gn.source));break;case 33:_n&&(e.push(_n.code),e.push(_n.name),e.push(_n.message),e.push(_n.stack),e.push(_n.severity));break;case 41:Y&&(e.push(Y.id),e.push(Y.target),e.push(Y.checksum))}return[2]}))}))}Jn.dn=4;var _n,$n,ta={};function ea(t,e,n,a,i){void 0===n&&(n=null),void 0===a&&(a=null),void 0===i&&(i=null);var r=n?"".concat(n,"|").concat(a):"";t in ta&&ta[t].indexOf(r)>=0||(_n={code:t,name:n,message:a,stack:i,severity:e},t in ta?ta[t].push(r):ta[t]=[r],Zn(33))}function na(t){$n.check=t,5!==t&&function(t,e,n){if(navigator&&navigator.cookieEnabled||ua(document,"cookie")){var a=function(t){return encodeURIComponent(t)}(e),i=new Date;i.setDate(i.getDate()+n);var r=i?"expires="+i.toUTCString():"",o="".concat(t,"=").concat(a).concat(";").concat(r).concat(";path=/");try{if(null===ca){for(var s=location.hostname?location.hostname.split("."):[],c=s.length-1;c>=0;c--)if(ca=".".concat(s[c]).concat(ca||""),c<s.length-1&&(document.cookie="".concat(o).concat(";").concat("domain=").concat(ca),ha(t)===e))return;ca=""}}catch(t){ca=""}document.cookie=ca?"".concat(o).concat(";").concat("domain=").concat(ca):o}}("_clsk","",0)}var aa=null,ia=null,ra=!1;function oa(t,e){if(e&&(e="".concat(e),t in aa||(aa[t]=[]),aa[t].indexOf(e)<0)){if(aa[t].length>128)return void(ra||(ra=!0,na(5)));aa[t].push(e),t in ia||(ia[t]=[]),ia[t].push(e)}}var sa=null,ca=null;function la(){return sa?[sa.userId,sa.sessionId,sa.pageNum].join("."):""}function ua(t,e){try{return!!t[e]}catch(t){return!1}}function da(){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 ha(t,e){var n;if(void 0===e&&(e=!1),ua(document,"cookie")){var a=document.cookie.split(";");if(a)for(var i=0;i<a.length;i++){var r=a[i].split("=");if(r.length>1&&r[0]&&r[0].trim()===t){for(var o=fa(r[1]),s=o[0],c=o[1];s;)s=(n=fa(c))[0],c=n[1];return e?c.endsWith("".concat("~","1"))?c.substring(0,c.length-2):null:c}}}return null}function fa(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Aa(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw t}var n=performance.now()-e;T(4,n),n>30&&(C(7),I(6,n),ea(9,0,"".concat(t.dn||t.name,"-").concat(n)))}}var pa=[];function ma(t,e,n,a){void 0===a&&(a=!1),n=Aa(n);try{t[r("addEventListener")](e,n,a),pa.push({event:e,target:t,listener:n,capture:a})}catch(t){}}var va=!1;var ga=null;function ya(){ga=null}function wa(t){ga={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){B(this,void 0,void 0,(function(){var e,n;return D(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(ga.fetchStart),n.push(ga.connectStart),n.push(ga.connectEnd),n.push(ga.requestStart),n.push(ga.responseStart),n.push(ga.responseEnd),n.push(ga.domInteractive),n.push(ga.domComplete),n.push(ga.loadEventStart),n.push(ga.loadEventEnd),n.push(ga.redirectCount),n.push(ga.size),n.push(ga.type),n.push(ga.protocol),n.push(ga.encodedSize),n.push(ga.decodedSize),ya()),[2]}))}))}(29)}var ba,xa=0,Ea=1/0,ka=0,Sa=[],Ma=new Map,Ca=function(){return(xa||0)-0},Ta=function(){if(!Sa.length)return-1;var t=Math.min(Sa.length-1,Math.floor(Ca()/50));return Sa[t].latency},Ia=function(t){if(t.interactionId&&!(t.duration<40)){!function(t){"interactionCount"in performance?xa=performance.interactionCount:t.interactionId&&(Ea=Math.min(Ea,t.interactionId),ka=Math.max(ka,t.interactionId),xa=ka?(ka-Ea)/7+1:0)}(t);var e=Sa[Sa.length-1],n=Ma.get(t.interactionId);if(n||Sa.length<10||t.duration>(null==e?void 0:e.latency)){if(n)t.duration>n.latency&&(n.latency=t.duration);else{var a={id:t.interactionId,latency:t.duration};Ma.set(a.id,a),Sa.push(a)}Sa.sort((function(t,e){return e.latency-t.latency})),Sa.length>10&&Sa.splice(10).forEach((function(t){return Ma.delete(t.id)}))}}},Ra=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint","event"];function Oa(){try{ba&&ba.disconnect(),ba=new PerformanceObserver(Aa(Na));for(var t=0,e=Ra;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&T(9,0),ba.observe({type:n,buffered:!0}))}}catch(t){ea(3,1)}}function Na(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":wa(a);break;case"resource":var r=a.name;oa(4,Ba(r)),r!==i.upload&&r!==i.fallback||I(28,a.duration);break;case"longtask":C(7);break;case"first-input":e&&I(10,a.processingStart-a.startTime);break;case"event":e&&"PerformanceEventTiming"in window&&"interactionId"in PerformanceEventTiming.prototype&&(Ia(a),oa(37,Ta().toString()));break;case"layout-shift":e&&!a.hadRecentInput&&T(9,1e3*a.value);break;case"largest-contentful-paint":e&&I(8,a.startTime)}}}(t.getEntries())}function Ba(t){var e=document.createElement("a");return e.href=t,e.host}Oa.dn=26,Na.dn=27;var Da,Ya={hash:c,selector:X,get:At,getNode:ft,lookup:pt},Fa=function(){var t=this;this.reset=function(){t.children={},t.nodes={},Ya.selector.reset()},this.selectors=function(e){return e.data.forEach&&e.data.forEach((function(e){var n=t.nodes[e.parent],a=t.children[e.parent]||[],i=t.nodes[e.id]||{tag:e.tag,parent:e.parent,previous:e.previous},r=e.attributes||{};if(i.parent!==e.parent){var o=null===e.previous?0:a.indexOf(e.previous)+1;if(a.splice(o,0,e.id),i.parent!==e.parent){var s=t.children[i.parent],c=s?s.indexOf(e.id):-1;c>=0&&t.children[i.parent].splice(c,1)}i.parent=e.parent}else a.indexOf(e.id)<0&&a.push(e.id);i.position=t.position(e.id,e.tag,i,a,a.map((function(e){return t.nodes[e]})));var l={id:e.id,tag:e.tag,prefix:n?[n.alpha,n.beta]:null,position:i.position,attributes:r},u=Ya.selector.get(l,0);e.selectorAlpha=u.length>0?u:null,e.hashAlpha=u.length>0?Ya.hash(e.selectorAlpha):null;var d=Ya.selector.get(l,1);e.selectorBeta=d.length>0?d:null,e.hashBeta=d.length>0?Ya.hash(e.selectorBeta):null,i.alpha=u,i.beta=d,t.nodes[e.id]=i,e.parent&&(t.children[e.parent]=a)})),e},this.position=function(t,e,n,a,i){n.position=1;for(var r=a?a.indexOf(t):-1;r-- >0;)if(e===i[r].tag){n.position=i[r].position+1;break}return n.position},this.reset()},Ua=function(){function t(e,n){var a=this;this.data=null,this.scrollData=null,this.max=null,this.offscreenRing=null,this.gradientPixels=null,this.timeout=null,this.observer=null,this.state=null,this.layout=null,this.scrollAvgFold=null,this.addScrollMakers=!1,this.reset=function(){if(a.data=null,a.scrollData=null,a.max=null,a.offscreenRing=null,a.gradientPixels=null,a.timeout=null,a.observer&&(a.observer.disconnect(),a.observer=null),a.state&&a.state.window){var t=a.state.window;t.removeEventListener("scroll",a.redraw,!0),t.removeEventListener("resize",a.redraw,!0)}},this.clear=function(){var t=a.state.window.document,e=a.state.window,n=t.getElementById("clarity-heatmap-canvas"),i=t.documentElement;n&&(n.width=i.clientWidth,n.height=i.clientHeight,n.style.left=e.pageXOffset+"px",n.style.top=e.pageYOffset+"px",n.getContext("2d").clearRect(0,0,n.width,n.height)),a.reset()},this.scroll=function(t,e,n){a.scrollData=a.scrollData||t,a.scrollAvgFold=null!=e?e:a.scrollAvgFold,a.addScrollMakers=null!=n?n:a.addScrollMakers;var i=a.overlay(),r=i.getContext("2d"),o=a.state.window.document,s=o.body,c=o.documentElement,l=Math.max(s.scrollHeight,s.offsetHeight,c.clientHeight,c.scrollHeight,c.offsetHeight);if(i.height=Math.min(l,65535),i.style.top="0px",i.width>0&&i.height>0&&a.scrollData){for(var u=r.createLinearGradient(0,0,0,i.height),d=0,h=a.scrollData;d<h.length;d++){var f=h[d],A=1-f.cumulativeSum/a.scrollData[0].cumulativeSum,p=f.scrollReachY/100*(l/i.height),m=240*A;p<=1&&u.addColorStop(p,"hsla(".concat(m,", 100%, 50%, 0.6)"))}r.fillStyle=u,r.fillRect(0,0,i.width,i.height),a.addScrollMakers&&a.addInfoMarkers(r,a.scrollData,i.width,i.height,a.scrollAvgFold)}},this.addInfoMarkers=function(t,e,n,i,r){a.addMarker(t,n,"Average Fold",r,84);for(var o=function(r){var o=e.reduce((function(t,e){return Math.abs(e.percUsers-r)<Math.abs(t.percUsers-r)?e:t}));if(o.percUsers>=r-2&&o.percUsers<=r+2){var s=o.scrollReachY/100*i;a.addMarker(t,n,"".concat(r,"%"),s,35)}},s=0,c=[75,50,25];s<c.length;s++){o(c[s])}},this.addMarker=function(t,e,n,a,i){t.beginPath(),t.moveTo(0,a),t.lineTo(e,a),t.setLineDash([2,2]),t.lineWidth=1,t.strokeStyle="white",t.stroke(),t.fillStyle="#323130",t.fillRect(0,a-16,i,32),t.fillStyle="white",t.font="500 12px Segoe UI",t.fillText(n,5,a+5)},this.click=function(t){a.data=a.data||t;var e=a.transform(),n=a.overlay(),i=n.getContext("2d");if(n.width>0&&n.height>0){for(var r=a.getRing(),o=a.getGradient(),s=0,c=e;s<c.length;s++){var l=c[s];i.globalAlpha=l.a,i.drawImage(r,l.x-20,l.y-20)}for(var u=i.getImageData(0,0,n.width,n.height),d=0;d<u.data.length;d+=4){var h=u.data[d+3];if(h>0){var f=4*(h-1);u.data[d]=o.data[f],u.data[d+1]=o.data[f+1],u.data[d+2]=o.data[f+2]}}i.putImageData(u,0,0)}},this.overlay=function(){var t=a.state.window.document,e=a.state.window,n=t.documentElement,i=t.getElementById("clarity-heatmap-canvas");return null===i&&((i=t.createElement("CANVAS")).id="clarity-heatmap-canvas",i.width=0,i.height=0,i.style.position="absolute",i.style.zIndex="".concat(2147483647),n.appendChild(i),e.addEventListener("scroll",a.redraw,!0),e.addEventListener("resize",a.redraw,!0),a.observer=a.state.window.ResizeObserver?new ResizeObserver(a.redraw):null,a.observer&&a.observer.observe(t.body)),i.width=n.clientWidth,i.height=n.clientHeight,i.style.left=e.pageXOffset+"px",i.style.top=e.pageYOffset+"px",i.getContext("2d").clearRect(0,0,i.width,i.height),i},this.getRing=function(){if(null===a.offscreenRing){var t=a.state.window.document;a.offscreenRing=t.createElement("CANVAS"),a.offscreenRing.width=40,a.offscreenRing.height=40;var e=a.offscreenRing.getContext("2d");e.shadowOffsetX=40,e.shadowBlur=10,e.shadowColor="black",e.beginPath(),e.arc(-20,20,10,0,2*Math.PI,!0),e.closePath(),e.fill()}return a.offscreenRing},this.getGradient=function(){if(null===a.gradientPixels){var e=a.state.window.document.createElement("CANVAS");e.width=1,e.height=256;for(var n=e.getContext("2d"),i=n.createLinearGradient(0,0,0,256),r=1/t.COLORS.length,o=0;o<t.COLORS.length;o++)i.addColorStop(r*(o+1),t.COLORS[o]);n.fillStyle=i,n.fillRect(0,0,1,256),a.gradientPixels=n.getImageData(0,0,1,256)}return a.gradientPixels},this.redraw=function(t){a.data?(a.timeout&&clearTimeout(a.timeout),a.timeout=setTimeout(a.click,30)):a.scrollData&&"scroll"!=t.type&&(a.timeout&&clearTimeout(a.timeout),a.timeout=setTimeout(a.scroll,30))},this.transform=function(){for(var t=[],e={},n=0,i=a.state.window&&a.state.window.document?a.state.window.document.documentElement.clientHeight:0,r=0,o=a.data;r<o.length;r++){var s=o[r],c=a.layout.get(s.hash);if(c&&"function"==typeof c.getBoundingClientRect){var l=c.getBoundingClientRect(),u=a.visible(c,l,i);if(null===a.max||u)for(var d=0;d<s.points;d++){var h=Math.round(l.left+s.x[d]/32767*l.width),f=Math.round(l.top+s.y[d]/32767*l.height),A="".concat(h).concat("X").concat(f).concat("X").concat(u?1:0);e[A]=A in e?e[A]+s.clicks[d]:s.clicks[d],n=Math.max(e[A],n)}}}a.max=a.max?a.max:n;for(var p=0,m=Object.keys(e);p<m.length;p++){var v=m[p],g=v.split("X"),y=Math.min(e[v]/a.max+.15,1);"1"===g[2]&&t.push({x:parseInt(g[0],10),y:parseInt(g[1],10),a:y})}return t},this.visible=function(t,e,n){var i=a.state.window.document,r=e.height>n;if(!1===r&&e.width>0&&e.height>0)for(;!r&&i;){for(var o=null,s=0,c=i.elementsFromPoint(e.left+e.width/2,e.top+e.height/2);s<c.length;s++){var l=c[s];if(!("CANVAS"===l.tagName||l.id&&0===l.id.indexOf("clarity-"))){r=l===t,o=l.shadowRoot&&l.shadowRoot!=i?l.shadowRoot:null;break}}i=o}return r&&e.bottom>=0&&e.top<=n},this.state=e,this.layout=n}return t.COLORS=["blue","cyan","lime","yellow","red"],t}(),Pa=function(){function t(e,n){var a=this;this.hoverId=null,this.targetId=null,this.points=[],this.scrollPointIndex=0,this.clickAudio=null,this.reset=function(){a.points=[],a.scrollPointIndex=0,a.clickAudio=null,a.hoverId=null,a.targetId=null,a.layout.reset()},this.scroll=function(t){var e=t.data,n=a.state.window.document,i=n.documentElement,r=a.layout.element(e.target)||n.body,o=r.scrollHeight>r.clientHeight||r.scrollWidth>r.clientWidth;if(r&&o&&(r.scrollTo(e.x,e.y),r===i&&r.offsetTop!==e.y&&(r=n.body).scrollTo(e.x,e.y)),r===i||r===n.body){o||a.state.window.scrollTo(e.x,e.y);var s=a.overlay();s&&(s.style.left=e.x+"px",s.style.top=e.y+"px",s.width=i.clientWidth,s.height=i.clientHeight),a.scrollPointIndex=a.points.length}},this.resize=function(t){var e=t.data,n=e.width,i=e.height;a.state.options.onresize&&a.state.options.onresize(n,i)},this.visibility=function(t){var e=a.state.window.document;e&&e.documentElement&&"visible"!==t.data.visible?(e.documentElement.style.backgroundColor="black",e.documentElement.style.opacity="0.4"):(e.documentElement.style.backgroundColor="transparent",e.documentElement.style.opacity="1")},this.input=function(t){var e=t.data,n=a.layout.element(e.target);if(n)switch(n.type){case"checkbox":case"radio":n.checked="true"===e.value;break;default:n.value=e.value}},this.selection=function(t){var e=t.data,n=a.state.window.document.getSelection();try{n.setBaseAndExtent(a.layout.element(e.start),e.startOffset,a.layout.element(e.end),e.endOffset)}catch(t){console.warn("Exception encountered while trying to set selection: "+t)}},this.pointer=function(t){var e=t.data,n=t.event,i=a.state.window.document,r=i.documentElement,o=i.getElementById("clarity-pointer");if(null===o){(o=i.createElement("DIV")).id="clarity-pointer",r.appendChild(o);var s=i.createElement("STYLE");s.textContent="@keyframes pulsate-one { 0% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(3, 3); opacity: 0; } }@keyframes pulsate-two { 0% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(5, 5); opacity: 0; } }@keyframes pulsate-touch { 0% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(2, 2); opacity: 0; } }@keyframes disappear { 90% { transform: scale(1, 1); opacity: 1; } 100% { transform: scale(1.3, 1.3); opacity: 0; } }"+"#".concat("clarity-interaction-canvas"," { position: absolute; left: 0; top: 0; z-index: ").concat(2147483647,"; background: none; }")+"#".concat("clarity-pointer"," { position: absolute; z-index: ").concat(2147483647,"; url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAmCAYAAAA4LpBhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASDSURBVHgB7VdPTCNlFH8z0/+FFmRatnFNiDGR4O4mBk08smZvXjjIxRueNME9eHGNxoLxSNwr4WyigYToQRJLjXDzQtDNmnhR4kWWAJm20ymddtrx94bvI9NBWAptsod9ycvM92fe73vv/b73fUP0DIlCfRQ1AMTtjwcHB1+gPgOT67oK6+TkZBjNbxRF+X1gYCCDPpX6IKdGAaTu7++HuG9tbe1ONBr9GR7r+Xy+98DsIRuemJiIjI6OJgH+3e7urruzs+OOjIw8SiaTNwRwz8OtQWPpdHoYoKt///ar2/jxaw84k8k8gt5YWVnRqEfi90BrtVph0Uetx0V67d9fqFAo3G6324XZ2VldLK4noK4AVqvVaoh8YZTAxWLxdiwW20CoM70IdceWicfjSpCxfuBEIrGxsLCQZR7QNcQDwFaRRhRmcXCSL9S3kN8CtlP2Oqz2QoWt4Q4NDanHx8cy3HQBMIe6sLS0pF811B7I5uYmhUKh1nmAQWAOteM4xcXFxczMzEzXHp+u9PDwUBHvymWBmVzr6+t6t9tJhtPzEEYuFaoguebm5nTqJOXFoMxEVCO50tMFXBaYcwwbGwAfRagv5bEKthK2igdUr9epG/EDYw//xKGmzoLz/6BQd3t7m5i9dAUJsJoLSPZp5PIGp6amXHjsVSaEirqVALk8jy/axx2hwAcMTlcRH/Ad5LfA24kEZ4JzudbySSJzyqDnomq37pH14utH/iUrCA5HCeRwHYXc8dzNNs5jfXp6uoD+e/Pz8zzfDYIqq6urihg4NyTaK2/Rw8fNo0/euWvBWI3TwGAiHW2RnjY7LRVjX+7t7d3nSWL8FFSKIj46I0r2ZXr4R/PoQT5f1TTtU3Q5OAbbbAxtV4BwXx07wUI5raJdTaVS5vLysmYYhlyMDJBHJBoeHpbFwQ0CfmuP04P8V1VVVb9AVwXGy/xE6SyHw2FuW9Aa2jYAHVx1HAZh78bGxs44wYkm0zS9PPrC1QE4+8HcPwD8HONPYNzEkAU1UX+raFcYmPswzhu9ISLmShIdHBx0lFfVH2s+SyWR/IBofgYvnmCIPTQjkYiBk8mARwYWU4aW8F5uNpslXHkstBncxjcOeyqJ6vfUO9oQd2avlyeKJj3A9z/8yAOE7uHKUgGoiRQYMFZCdEq2bZfgpYFnmd9xzprlcrnCOdV13cbWaWKezGVnAUBOmVBpkOAlPH/AxuYJu/DoPQDcxfubeB/ncZCDL+IpaDKgiVwul8AzDo1BI3RC1HPLIg+mYPQmvPke+hdY+S68ehuevIHQvYpV5/i2KIxKg5pUUew1AaL6wM4cl4oPFJjxFMJ0H6BbIIgBwAbeLSzABLBVKpVszGvSCf27r5dCNE7h1tYWX1U0ECHUaDT+REhryKENrTFbwdLj+skRxIAeM+ka4rGV2QWv2vCIjVoAryC0Jk6MCk6fGvoY0OkFoF80UDsG8AG8j/BtD78YWRSMNNoJQbSe/1Zw0tmwBB6kE0ZG+wXI4v1ECYAIdbKzf/+povypEui6t/jnwvIf5FVJ1Cj/1+UAAAAASUVORK5CYII=",") no-repeat left center; width: ").concat(29,"px; height: ").concat(38,"px; }")+".".concat("clarity-click",", .").concat("clarity-click-ring",", .").concat("clarity-touch",", .").concat("clarity-touch-ring"," { position: absolute; z-index: ").concat(2147483647,"; border-radius: 50%; background: radial-gradient(rgba(0,90,158,0.8), transparent); width: ").concat(22,"px; height: ").concat(22,"px;}")+".".concat("clarity-click-ring"," { background: transparent; border: 1px solid rgba(0,90,158,0.8); }")+".".concat("clarity-touch"," { background: radial-gradient(rgba(242,97,12,1), transparent); }")+".".concat("clarity-touch-ring"," { background: transparent; border: 1px solid rgba(242,97,12,0.8); }")+".".concat("clarity-pointer-click"," { background-image: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAmCAYAAAA4LpBhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAVoSURBVHgB7VdNTCRFGP2qe6aBGRhA5mfJ7kZcV0XQTQx68MYabl44yMWbetAY3IMX12gWMCZeSLwSEi/GiAHF1SjqMAhoshuTJbg/GkM0xMQIBMj8D/Nfvq+6enZmEtFdhsSDRT66q6qnXr33varqJvoPFUHHWIw6IK6/2tbWdg8dMzBJKQXHwMCAG9UPhBDXW1tbA2gz6BhKZVAAGTs7Oy5um5+fP9fU1LQExv6xsbHGAzNDHrivr88KhUJegH+0ubkp19fXZVdX1w2v13tCAzdcbhPR3N7e3gnQuY0ry3L7nRcUcCAQuIE4MTs7a1IDi9CgXuQxCNBPNq6uyF+HWuTO5IvVjEP6uSMXlk1qYCOVSnFOgYvRLUtmVmbp9HfvUSQSebS5uXkRwIFGSF2zZFpaWoTtWEHCcgvDclPm+4/p3qvvK2CPx7M4MTERZB/QEYoCxVJxBhHsYvwn0+2WKiyLslc+pfuufSjD4fAjyG+Y03AUVyupsDRkR0eHcXBwYMuNKQi3BaYIt5uYce6Hz8XZ63MMzFKHp6am/HcrtQJZWVkhl8tVIju/KqkmgBxAdQXr3LUv6exPl5XUxWIxMjk5GRgZGbljxpWZ7u3tCX3PPCuALDEYk2Ytij9+RQ9ufFEx18LCgv9Ol5PjXsUQg9hSsXubLA3IwC7JoVgjSjfD9PDm1xVzjY6O+qnWlIeDshOxGzkzVRNgeW2mdl6FfXVkxiQsKv/8LfX9sUScY4yxCPAQpP5XjA0GwFJRTLPZrG5mUFcln6Ytc+Uq0CdcLgAvyf4/lxUw1vA3LDVVpexQedfW1ojdW2m1N4cKM8PllqLKUMI0SRhCsuVKtyLUv7XsuJo3kOA/mUt1Dg4OsqRqZ4JUPJZtIttAaqMAMzQarH8NCzwqSzcjghlrcynGh63jGinwA5VP9efIaBr2vqgBnGeltH+nJonCjPts4HPIb5iXE2nP1IPyXssniZNTBhVq0RhC3p6QTd/oHxLpk4/t356yelQawijrecnek6fKOI/9w8PDYQw1ND4+zs/LelAxNzcndIdRLRwzs5kIYT7wJL17q7D/2tPn0+jIcDunRDMt6/SUmbQT6Htra2vrAj+k+yugFRT9I6qVEGxCZwCY3784dillmubr6CqWSqUyD4a61CDclsVKSGM7TaGe8vl8yenpaTMajTqTqeSUjUSdnZ3O5iCrYUXwDM1ke+ni2NspwzAuoTGBweN8xdYZd7vdXE8jMqjnAFjEq06RQZhdT08P1RdONCWTSaEFdeSyqQfvFzO5XnrupdHfAfgm+rcxeBJdaUQS+28K9QQDcxv6eaHntWLSMdHu7q6zxWorVGnNZ6nQVmVJmSEDovoGWGyjixkmLcuK4mSKglEUk4kjYriPFwqFGF550qgzeA6/KTJTx6jVTNXRBt3ZvSpP1OSlmYNeev7lVxQgYqtcLicAmkQKohgsBnViuVwuBpZRXON8j3M2GY/HE5xTv9+fw9Ip4DknlzXAnFM2VDtMcBrXz7Cw+YFNMHoWAOdx/wTue7kf5uAXcR/CWxee7u5uD64tiGaERbZR/3Zb5E4fBj0FNpcRv8GVz4DVU2DyOKR7CLPu5rdFPagzoOmE3uxNDWJUgYl6UFEFCswWH2S6ANBVGCQKwDzu05hAEsDpWCyWw3MFsu0v6S6LySlcXV3lVxUTRnDl8/lfIGkGOcwhMuxWuPQgax9BDKicSUcoyq3sLrAqgxEPmgZ4AtImcWIkcPpk0MaAxUYAVhcT1m4GeCvuu/htD58YQWwY7ah7tNEa/lnBSeeBHeA2sh3ZdFyAXNRHlAawqNadx/edqrc/wwE66lv8/4XLX3gjac6XP/Y1AAAAAElFTkSuQmCC","); }")+".".concat("clarity-pointer-none"," { background: none; }")+".".concat("clarity-pointer-move"," { background-image: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAmCAYAAAA4LpBhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASDSURBVHgB7VdPTCNlFH8z0/+FFmRatnFNiDGR4O4mBk08smZvXjjIxRueNME9eHGNxoLxSNwr4WyigYToQRJLjXDzQtDNmnhR4kWWAJm20ymddtrx94bvI9NBWAptsod9ycvM92fe73vv/b73fUP0DIlCfRQ1AMTtjwcHB1+gPgOT67oK6+TkZBjNbxRF+X1gYCCDPpX6IKdGAaTu7++HuG9tbe1ONBr9GR7r+Xy+98DsIRuemJiIjI6OJgH+3e7urruzs+OOjIw8SiaTNwRwz8OtQWPpdHoYoKt///ar2/jxaw84k8k8gt5YWVnRqEfi90BrtVph0Uetx0V67d9fqFAo3G6324XZ2VldLK4noK4AVqvVaoh8YZTAxWLxdiwW20CoM70IdceWicfjSpCxfuBEIrGxsLCQZR7QNcQDwFaRRhRmcXCSL9S3kN8CtlP2Oqz2QoWt4Q4NDanHx8cy3HQBMIe6sLS0pF811B7I5uYmhUKh1nmAQWAOteM4xcXFxczMzEzXHp+u9PDwUBHvymWBmVzr6+t6t9tJhtPzEEYuFaoguebm5nTqJOXFoMxEVCO50tMFXBaYcwwbGwAfRagv5bEKthK2igdUr9epG/EDYw//xKGmzoLz/6BQd3t7m5i9dAUJsJoLSPZp5PIGp6amXHjsVSaEirqVALk8jy/axx2hwAcMTlcRH/Ad5LfA24kEZ4JzudbySSJzyqDnomq37pH14utH/iUrCA5HCeRwHYXc8dzNNs5jfXp6uoD+e/Pz8zzfDYIqq6urihg4NyTaK2/Rw8fNo0/euWvBWI3TwGAiHW2RnjY7LRVjX+7t7d3nSWL8FFSKIj46I0r2ZXr4R/PoQT5f1TTtU3Q5OAbbbAxtV4BwXx07wUI5raJdTaVS5vLysmYYhlyMDJBHJBoeHpbFwQ0CfmuP04P8V1VVVb9AVwXGy/xE6SyHw2FuW9Aa2jYAHVx1HAZh78bGxs44wYkm0zS9PPrC1QE4+8HcPwD8HONPYNzEkAU1UX+raFcYmPswzhu9ISLmShIdHBx0lFfVH2s+SyWR/IBofgYvnmCIPTQjkYiBk8mARwYWU4aW8F5uNpslXHkstBncxjcOeyqJ6vfUO9oQd2avlyeKJj3A9z/8yAOE7uHKUgGoiRQYMFZCdEq2bZfgpYFnmd9xzprlcrnCOdV13cbWaWKezGVnAUBOmVBpkOAlPH/AxuYJu/DoPQDcxfubeB/ncZCDL+IpaDKgiVwul8AzDo1BI3RC1HPLIg+mYPQmvPke+hdY+S68ehuevIHQvYpV5/i2KIxKg5pUUew1AaL6wM4cl4oPFJjxFMJ0H6BbIIgBwAbeLSzABLBVKpVszGvSCf27r5dCNE7h1tYWX1U0ECHUaDT+REhryKENrTFbwdLj+skRxIAeM+ka4rGV2QWv2vCIjVoAryC0Jk6MCk6fGvoY0OkFoF80UDsG8AG8j/BtD78YWRSMNNoJQbSe/1Zw0tmwBB6kE0ZG+wXI4v1ECYAIdbKzf/+povypEui6t/jnwvIf5FVJ1Cj/1+UAAAAASUVORK5CYII=","); }"),o.appendChild(s)}o.style.left=e.x-4+"px",o.style.top=e.y-4+"px";var c="Pointer";switch(n){case 9:if(c="Click",a.drawClick(i,e.x,e.y,c),a.state.options.onclickMismatch){for(var l=a.layout.element(e.target),u=!1,d=0,h=i.elementsFromPoint(e.x,e.y);d<h.length;d++){l===h[d]&&(u=!0)}u||a.state.options.onclickMismatch({time:t.time,x:e.x,y:e.y,nodeId:e.target})}o.className="clarity-pointer-none";break;case 16:c="Click",a.drawClick(i,e.x,e.y,c),o.className="clarity-pointer-none";break;case 17:case 18:case 20:c="Touch",a.drawTouch(i,e.x,e.y,c),o.className="clarity-pointer-none";break;case 19:c="Touch Move",o.className="clarity-pointer-none";break;case 12:c="Mouse Move",o.className="clarity-pointer-move",a.addPoint({time:t.time,x:e.x,y:e.y}),a.targetId=e.target;break;default:o.className="clarity-pointer-move"}o.setAttribute("title","".concat(c," (").concat(e.x).concat("px",", ").concat(e.y).concat("px",")"))},this.hover=function(){if(a.targetId&&a.targetId!==a.hoverId){for(var t=0,e=a.hoverId?a.layout.element(a.hoverId):null;e&&t<7;)"removeAttribute"in e&&e.removeAttribute("clarity-hover"),e=e.parentElement,t++;t=0;for(var n=a.targetId?a.layout.element(a.targetId):null;n&&t<7;)"setAttribute"in n&&n.setAttribute("clarity-hover",""),n=n.parentElement,t++;a.hoverId=a.targetId}},this.addPoint=function(t){var e=a.points.length>0?a.points[a.points.length-1]:null;e&&t.x===e.x&&t.y===e.y?e.time=t.time:a.points.push(t)},this.drawTouch=function(t,e,n,a){var i=t.documentElement,r=t.createElement("DIV");r.className="clarity-touch",r.setAttribute("title","".concat(a," (").concat(e).concat("px",", ").concat(n).concat("px",")")),r.style.left=e-11+"px",r.style.top=n-11+"px",r.style.animation="disappear 1 1s",r.style.animationFillMode="forwards",i.appendChild(r);var o=r.cloneNode();o.className="clarity-touch-ring",o.style.left="-0.5px",o.style.top="-0.5px",o.style.animation="pulsate-touch 1 1s",o.style.animationFillMode="forwards",r.appendChild(o)},this.drawClick=function(t,e,n,i){var r=t.documentElement,o=t.createElement("DIV");o.className="clarity-click",o.setAttribute("title","".concat(i," (").concat(e).concat("px",", ").concat(n).concat("px",")")),o.style.left=e-11+"px",o.style.top=n-11+"px",r.appendChild(o);var s=o.cloneNode();s.className="clarity-click-ring",s.style.left="-0.5px",s.style.top="-0.5px",s.style.animation="pulsate-one 1 1s",s.style.animationFillMode="forwards",o.appendChild(s);var c=s.cloneNode();c.style.animation="pulsate-two 1 1s",o.appendChild(c),"undefined"!=typeof Audio&&(null===a.clickAudio&&(a.clickAudio=new Audio("data:video/webm;base64,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"),o.appendChild(a.clickAudio)),a.clickAudio.play())},this.overlay=function(){var t=a.state.window.document,e=t.documentElement,n=t.getElementById("clarity-interaction-canvas");return null===n&&((n=t.createElement("canvas")).id="clarity-interaction-canvas",n.width=0,n.height=0,e.appendChild(n)),n.width===e.clientWidth&&n.height===e.clientHeight||(n.width=e.clientWidth,n.height=e.clientHeight),n},this.match=function(t){for(var e=[],n=a.points.length-1;n>0&&(n>=a.scrollPointIndex&&t-a.points[n].time<3e3);n--)e.push(a.points[n]);return e.slice(0,75)},this.trail=function(t){var e=a.overlay();if(a.state.options.canvas&&e){var n=e.getContext("2d"),i=a.state.options.keyframes?a.curve(a.points.reverse()):a.curve(a.match(t));if(a.hover(),i.length>1){var r=i[0];n.clearRect(0,0,n.canvas.width,n.canvas.height);for(var o=i.length,s=e.offsetLeft,c=e.offsetTop,l=1;l<o;l++){var u=i[l],d=1-(l-1)/o,h=1-l/o,f=n.createLinearGradient(r.x,r.y,u.x,u.y);f.addColorStop(1,a.color(h)),f.addColorStop(0,a.color(d)),n.lineWidth=6*h,n.lineCap="round",n.lineJoin="round",n.strokeStyle=f,n.beginPath(),n.moveTo(r.x-s,r.y-c),n.lineTo(u.x-s,u.y-c),n.stroke(),n.closePath(),r=u}}a.state.options.keyframes&&(a.points=[])}},this.color=function(e){for(var n=t.TRAIL_START_COLOR,a=t.TRAIL_END_COLOR,i=[],r=0;r<3;r++)i[r]=Math.round(a[r]+e*(n[r]-a[r]));return"rgba(".concat(i[0],", ").concat(i[1],", ").concat(i[2],", ").concat(e,")")},this.curve=function(t){var e=.5,n=[],i=[];(n=t.slice(0)).unshift(t[0]),n.push(t[t.length-1]);for(var r=1;r<n.length-2;r++)for(var o=n[r].time,s=Math.max(Math.min(Math.round(a.distance(n[r],n[r-1])),10),1),c=0;c<=s;c++){var l={time:o,x:(n[r+1].x-n[r-1].x)*e,y:(n[r+1].y-n[r-1].y)*e},u={time:o,x:(n[r+2].x-n[r].x)*e,y:(n[r+2].y-n[r].y)*e},d=c/s,h=2*Math.pow(d,3)-3*Math.pow(d,2)+1,f=-2*Math.pow(d,3)+3*Math.pow(d,2),A=Math.pow(d,3)-2*Math.pow(d,2)+d,p=Math.pow(d,3)-Math.pow(d,2),m=h*n[r].x+f*n[r+1].x+A*l.x+p*u.x,v=h*n[r].y+f*n[r+1].y+A*l.y+p*u.y;i.push({time:o,x:m,y:v})}return i},this.distance=function(t,e){var n=t.x-e.x,a=t.y-e.y;return Math.sqrt(n*n+a*a)},this.state=e,this.layout=n}return t.TRAIL_START_COLOR=[242,97,12],t.TRAIL_END_COLOR=[249,220,209],t}(),La=function(){function n(a,i){void 0===i&&(i=!1);var r=this;this.primaryHtmlNodeId=null,this.stylesheets=[],this.fonts=[],this.nodes={},this.events={},this.hashMapAlpha={},this.hashMapBeta={},this.adoptedStyleSheets={},this.animations={},this.state=null,this.stylesToApply={},this.BackgroundImageEligibleElements=["DIV","SECTION","ARTICLE","HEADER","FOOTER","ASIDE","NAV","SPAN","P","MAIN"],this.MaskedBackgroundImageStyle='#CCC no-repeat center url("'.concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANvSURBVHgB7Ve9VhpREJ5dU6BNVqt0wS6dpEuX9QmiTyA+gfgE4BOgZSrJE4hlKvEJxDKVa2caoaSSfB87F4Z7dtmFhFTMOfcMe52Z+935u6PIhjb0dxTIihRFUQ2M6z0/dXuI9ay8PwTJklQaEADw0JMgCI4USFSkMx6Pe2BdrFtgS6QEFQICjirYGYDUc0AMcXCCvw8XAVVwHQD7IasAokfCMGzB0NmCA1o44N7T+wpwlwouT+80z2NbOWAaMHqDn7FuJcorapRATkej0bOvyz2s7zs7O2L0GbYXrCrscjUqlUoAuZ6vH3hAIr3diW4xHC3wW+w/KZhLgDmXEgRzbR6udvbBD/DdITB3UewfWm+FRpnIHwyYLo1A+Aq/vzkDWFdSni4krTjm1RnDOxgM9nFOS//OM++0YmeAFMydQw4gDSgeu7LVyprE3489je3u7t5waQFMifrQ6ehn7PZfX18v6BkFOwcq9MDQQKxeseRu0PXARJprBHxED2t7sPSol6p5YHs467OkXo8cqBA/rmXmmVO/atzZzk4G0Kond+DJJJLmStc3Sm+rpxLVbYcEoRu8xbWNp9U1B1rqyzzIRNQj5tAe84ZVKVmGZ6BoK5Vh2JADT1hjLny3rBL27nS/7RtUXZdDmb1H5Ug1rDgjrFMKrGGb2CzPt7e3C95gb2+vqeU/1Mor/UZpg21og50CsfYzATllsLY+E6TE60OTPoUqOV8EQNKKmuTTgifHAmO4GOokyDFah2BTTAOTNFcmIQFI3qyVoxurp+dIL3ZF72bYdzL1zKcDLb2P1n4rqUfcg/nB3Cre3t6uQeY3ZBOri72q87B7ULHY035CdmTs85H9BVlR23yWumVf+6YJo0/MK7qcI8al9RCqq9R4w4ICq9JDYZEwk44ly2TWFtGT+VKnF2PwB6cis8sUzkw+vSsrqNXQ0eUmxo+S5gEPfvQBSTpNLjU1rjzCLiKEYAAWMQRFA5m2GzdJxIUhW5H6yutFguhRToapcb8WQGwL5MwtDnt5cvQOZJuq0yHfkjUQWwHbAn5+AqgvKHGW/IsPRquR+ZdgcQIdrStkYh5tN1ocZYCpSto2Dqezl6yRMga/yQSpXToyYFzOrReQAcUhzp8E+E4eWzD/lTgxuPFGR5Wlm+Y/J3qL/7fJhja0RvoDR4Tn4Lo/zi8AAAAASUVORK5CYII=",'")'),this.reset=function(){r.nodes={},r.stylesheets=[],r.fonts=[],r.events={},r.hashMapAlpha={},r.hashMapBeta={},r.primaryHtmlNodeId=null},this.get=function(t){return t in r.hashMapBeta&&r.hashMapBeta[t].isConnected?r.hashMapBeta[t]:t in r.hashMapAlpha&&r.hashMapAlpha[t].isConnected?r.hashMapAlpha[t]:null},this.addToHashMap=function(t,e){r.hashMapAlpha[t.hashAlpha]=r.get(t.hashAlpha)||e,r.hashMapBeta[t.hashBeta]=r.get(t.hashBeta)||e},this.resize=function(t,e,n){t&&1===t.nodeType&&e&&n&&(t.style.width=e+"px",t.style.height=n+"px",t.style.boxSizing="border-box")},this.element=function(t){return null!==t&&t>0&&t in r.nodes?r.nodes[t]:null},this.animateChange=function(t){var e=r.animations[t.data.id];if(e||0===t.data.operation)switch(t.data.operation){case 0:var n=r.element(t.data.targetId);n&&(r.animations[t.data.id]=n.animate(JSON.parse(t.data.keyFrames),JSON.parse(t.data.timing)));break;case 3:e.cancel();break;case 4:e.finish();break;case 2:e.pause();break;case 1:e.play();break;case 5:e.commitStyles()}},this.dom=function(n,a){return t(r,void 0,void 0,(function(){var t;return e(this,(function(e){switch(e.label){case 0:return n&&((t=this.state.window.document)&&t.documentElement)?(t.documentElement.style.visibility="hidden",this.markup(n,a),[4,Promise.all(this.stylesheets.concat(this.fonts))]):[3,2];case 1:e.sent(),t.documentElement.style.visibility="visible",e.label=2;case 2:return[2]}}))}))},this.styleChange=function(t){switch(t.event){case 46:var e=r.adoptedStyleSheets[t.data.id];if(!e&&0!==t.data.operation)return;switch(t.data.operation){case 0:r.adoptedStyleSheets[t.data.id]=new r.state.window.CSSStyleSheet;break;case 1:e.replace(t.data.cssRules);break;case 2:e.replaceSync(t.data.cssRules)}break;case 45:r.setDocumentStyles(t.data.id,t.data.newIds)}},this.exists=function(t){if(t){var e=r.get(t);if(e){var n=e.getBoundingClientRect();return n&&n.width>0&&n.height>0}}return!1},this.markup=function(t,e){for(var a,i,o,s,c,l=t.data,u=t.event,d=r.state.window.document,h={data:[],time:t.time,event:t.event},f=function(t){var l=r.element(t.parent),f=r.element(t.previous),A=r.insertAfter,p=t.tag;if(p&&0===p.indexOf("iframe:")&&(p=t.tag.substr("iframe:".length)),null===l&&null!==t.parent&&t.parent>-1&&"HTML"!==p)return h.data.push(t),"continue";switch(p){case"*D":var m=p!==t.tag?l?l.contentDocument:null:d;m&&m===d&&5===u&&r.reset(),"undefined"!=typeof XMLSerializer&&m&&(m.open(),m.write((new XMLSerializer).serializeToString(m.implementation.createDocumentType(t.attributes.name,t.attributes.publicId,t.attributes.systemId))),m.close());break;case"*P":r.nodes[t.id]=l,r.addToHashMap(t,l);break;case"*S":if(l){var v=r.element(t.id);v=v||l.attachShadow({mode:"open"}),r.nodes[t.id]=v,r.addToHashMap(t,v),r.addStyles(t.id)}break;case"*T":var g=r.element(t.id);(g=g||d.createTextNode(null)).nodeValue=t.value,A(t,l,g,f);break;case"*M":var y=r.element(t.id);y&&y.nodeType===Node.ELEMENT_NODE&&y.setAttribute("data-clarity-suspend","");break;case"HTML":null===r.primaryHtmlNodeId&&(r.primaryHtmlNodeId=t.id);var w=p!==t.tag;if(r.primaryHtmlNodeId!==t.id&&!w){r.insertDefaultElement(t,l,f,d,A);break}var b=w?l?l.contentDocument:null:d;if(null!==b){var x=r.element(t.id);if(null===x){x=b.implementation.createHTMLDocument("").documentElement;var E=b.importNode(x,!0);b.replaceChild(E,b.documentElement),b.head&&b.head.parentNode.removeChild(b.head),b.body&&b.body.parentNode.removeChild(b.body)}r.setAttributes(b.documentElement,t),5!==u||l||(b.documentElement.style.visibility="hidden"),r.nodes[t.id]=b.documentElement,r.addToHashMap(t,b.documentElement)}break;case"HEAD":var k=r.element(t.id);if(null===k){if(k=d.createElement(t.tag),t.attributes&&"*B"in t.attributes){var S=d.createElement("base");S.href=t.attributes["*B"],k.appendChild(S)}var M=d.createElement("style");M.setAttribute("clarity-custom-styles","true"),M.innerText=r.getCustomStyle(),k.appendChild(M)}r.setAttributes(k,t),A(t,l,k,f);break;case"LINK":var C=r.element(t.id);C=C||r.createElement(d,t.tag),t.attributes||(t.attributes={}),r.setAttributes(C,t),"rel"in t.attributes&&("stylesheet"===t.attributes.rel?r.stylesheets.push(new Promise((function(t){var a=null!=e?e:r.state.options.useproxy;a&&(C.integrity&&C.removeAttribute("integrity"),C.href=a(C.href,C.id,"stylesheet")),C.onload=C.onerror=r.style.bind(r,C,t),setTimeout(t,n.TIMEOUT)}))):!t.attributes.rel.includes("preload")&&!t.attributes.rel.includes("preconnect")||"style"!==(null===(a=t.attributes)||void 0===a?void 0:a.as)&&"font"!==(null===(i=t.attributes)||void 0===i?void 0:i.as)||r.fonts.push(new Promise((function(a){var i=null!=e?e:r.state.options.useproxy;C.href=i?i(C.href,C.id,t.attributes.as):C.href,C.onload=C.onerror=r.style.bind(r,C,a),setTimeout(a,n.TIMEOUT)})))),A(t,l,C,f);break;case"IMG":var T=null!==(o=r.element(t.id))&&void 0!==o?o:r.createElement(d,t.tag),I=null!=e?e:r.state.options.useproxy;I&&(null===(s=t.attributes)||void 0===s?void 0:s.src)&&(t.attributes.src=I(t.attributes.src,t.attributes.id,"IMG")),r.setAttributes(T,t),r.resize(T,t.width,t.height),A(t,l,T,f);break;case"STYLE":var R=null!==(c=r.element(t.id))&&void 0!==c?c:d.createElement(t.tag);r.setAttributes(R,t),R.textContent=t.value,A(t,l,R,f),r.style(R);break;case"IFRAME":var O=r.element(t.id);O=O||r.createElement(d,t.tag),t.attributes||(t.attributes={}),r.setAttributes(O,t),A(t,l,O,f);break;default:r.insertDefaultElement(t,l,f,d,A)}t.id&&(r.events[t.id]=t)},A=0,p=l;A<p.length;A++){f(p[A])}h.data.length>0&&h.data.length!==t.data.length&&r.markup(h,e)},this.insertDefaultElement=function(t,e,n,a,i){var o=r.element(t.id);o=o||r.createElement(a,t.tag),r.setAttributes(o,t),r.resize(o,t.width,t.height),i(t,e,o,n)},this.style=function(t,e){void 0===e&&(e=null);try{for(var n=t.sheet,a=n?n.cssRules:[],i=0;i<a.length;i++)if(a[i].cssText.indexOf(":hover")>=0){var o=a[i].cssText.replace(/:hover/g,"[".concat("clarity-hover","]"));n.removeRule(i),n.insertRule(o,i)}}catch(t){r.state.options.logerror&&r.state.options.logerror(t)}e&&e()},this.addStyles=function(t){var e=r.stylesToApply[t];e&&e.length>0&&(r.setDocumentStyles(t,r.stylesToApply[t]),delete r.stylesToApply[t])},this.createElement=function(t,e){if(e&&0===e.indexOf("svg:"))return t.createElementNS("http://www.w3.org/2000/svg",e.substr("svg:".length));try{return t.createElement(e)}catch(n){return console.warn("Exception encountered while creating element ".concat(e,": ").concat(n)),t.createElement("clarity-unknown")}},this.insertAfter=function(t,e,n,a){if(!r.events[t.id]||r.events[t.id].parent!==t.parent||r.events[t.id].previous!==t.previous){var i=!a||a.parentElement!==e&&a.parentNode!==e?null:a.nextSibling;i=null===a&&e?r.firstChild(e):i,r.insertBefore(t,e,n,i)}},this.firstChild=function(t){var e,n=t.firstChild;return n&&1===n.nodeType&&"BASE"===n.tagName?(null===(e=n.nextSibling)||void 0===e?void 0:e.hasAttribute("clarity-custom-styles"))?n.nextSibling.nextSibling:n.nextSibling:n},this.mask=function(t){var e,n,a;if(t&&r.BackgroundImageEligibleElements.includes(t.nodeName)&&"getComputedStyle"in window&&"closest"in t){var i=/url\(['"]?([^'")]+)['"]?\)/,o=window.getComputedStyle(t),s=(null===(e=o.backgroundImage)||void 0===e?void 0:e.match(i))||(null===(n=o.background)||void 0===n?void 0:n.match(i)),c=null===(a=t.closest)||void 0===a?void 0:a.call(t,"[".concat("data-clarity-mask","]"));s&&c&&(t.style.background=r.MaskedBackgroundImageStyle)}},this.insertBefore=function(t,e,n,a){if(null!==e){a=a&&a.parentElement!==e&&a.parentNode!==e?null:a;try{e.insertBefore(n,a),r.mask(n)}catch(a){console.warn("Node: "+n+" | Parent: "+e+" | Data: "+JSON.stringify(t)),console.warn("Exception encountered while inserting node: "+a)}}else null===e&&null!==n.parentElement?n.parentElement.removeChild(n):null===e&&null!==n.parentNode&&n.parentNode.removeChild(n);r.nodes[t.id]=n,r.addToHashMap(t,n)},this.setAttributes=function(t,e){var n=e.attributes||{},a=!1;n["data-clarity-id"]="".concat(e.id),n["data-clarity-hashalpha"]="".concat(e.hashAlpha),n["data-clarity-hashbeta"]="".concat(e.hashBeta);var i=1===t.nodeType?t.tagName.toLowerCase():null;if(t.attributes)for(var r=t.attributes.length;t.attributes&&r>0;)"clarity-hover"!==t.attributes[0].name&&t.removeAttribute(t.attributes[0].name),r--;for(var o in n)if(void 0!==n[o])try{var s=n[o];if(0===o.indexOf("xlink:"))t.setAttributeNS("http://www.w3.org/1999/xlink",o,s);else if(0===o.indexOf("*O"))a=!0;else if(0===o.indexOf("*"));else if("iframe"===i&&(0===o.indexOf("src")||0===o.indexOf("allow"))||"sandbox"===o)t.setAttribute("data-clarity-".concat(o),s);else if("img"!==i||0!==o.indexOf("src")||null!==s&&0!==s.length)t.setAttribute(o,s);else{t.setAttribute(o,"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=");var c="l";e.width&&(c=e.width<=200?"m":e.width<=75?"s":c),t.setAttribute("data-clarity-hide",c)}}catch(e){console.warn("Node: "+t+" | "+JSON.stringify(n)),console.warn("Exception encountered while adding attributes: "+e)}!1===a&&"iframe"===i&&"function"==typeof t.setAttribute&&t.setAttribute("data-clarity-unavailable",""),"img"!==i||t.hasAttribute("alt")||t.setAttribute("alt",""),"form"!==i&&"input"!==i||(t.hasAttribute("autocomplete")&&t.removeAttribute("autocomplete"),t.setAttribute("autocomplete","new-password"))},this.getMobileCustomStyle=function(){return r.isMobile?"*{scrollbar-width: none; scrollbar-gutter: unset;};":""},this.getCustomStyle=function(){return"".concat("img","[").concat("data-clarity-hide","] { background-color: #CCC; background-image: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANvSURBVHgB7Ve9VhpREJ5dU6BNVqt0wS6dpEuX9QmiTyA+gfgE4BOgZSrJE4hlKvEJxDKVa2caoaSSfB87F4Z7dtmFhFTMOfcMe52Z+935u6PIhjb0dxTIihRFUQ2M6z0/dXuI9ay8PwTJklQaEADw0JMgCI4USFSkMx6Pe2BdrFtgS6QEFQICjirYGYDUc0AMcXCCvw8XAVVwHQD7IasAokfCMGzB0NmCA1o44N7T+wpwlwouT+80z2NbOWAaMHqDn7FuJcorapRATkej0bOvyz2s7zs7O2L0GbYXrCrscjUqlUoAuZ6vH3hAIr3diW4xHC3wW+w/KZhLgDmXEgRzbR6udvbBD/DdITB3UewfWm+FRpnIHwyYLo1A+Aq/vzkDWFdSni4krTjm1RnDOxgM9nFOS//OM++0YmeAFMydQw4gDSgeu7LVyprE3489je3u7t5waQFMifrQ6ehn7PZfX18v6BkFOwcq9MDQQKxeseRu0PXARJprBHxED2t7sPSol6p5YHs467OkXo8cqBA/rmXmmVO/atzZzk4G0Kond+DJJJLmStc3Sm+rpxLVbYcEoRu8xbWNp9U1B1rqyzzIRNQj5tAe84ZVKVmGZ6BoK5Vh2JADT1hjLny3rBL27nS/7RtUXZdDmb1H5Ug1rDgjrFMKrGGb2CzPt7e3C95gb2+vqeU/1Mor/UZpg21og50CsfYzATllsLY+E6TE60OTPoUqOV8EQNKKmuTTgifHAmO4GOokyDFah2BTTAOTNFcmIQFI3qyVoxurp+dIL3ZF72bYdzL1zKcDLb2P1n4rqUfcg/nB3Cre3t6uQeY3ZBOri72q87B7ULHY035CdmTs85H9BVlR23yWumVf+6YJo0/MK7qcI8al9RCqq9R4w4ICq9JDYZEwk44ly2TWFtGT+VKnF2PwB6cis8sUzkw+vSsrqNXQ0eUmxo+S5gEPfvQBSTpNLjU1rjzCLiKEYAAWMQRFA5m2GzdJxIUhW5H6yutFguhRToapcb8WQGwL5MwtDnt5cvQOZJuq0yHfkjUQWwHbAn5+AqgvKHGW/IsPRquR+ZdgcQIdrStkYh5tN1ocZYCpSto2Dqezl6yRMga/yQSpXToyYFzOrReQAcUhzp8E+E4eWzD/lTgxuPFGR5Wlm+Y/J3qL/7fJhja0RvoDR4Tn4Lo/zi8AAAAASUVORK5CYII=","); background-repeat:no-repeat; background-position: center; }")+"".concat("img","[").concat("data-clarity-hide","=").concat("s","] { background-size: 18px 18px; }")+"".concat("img","[").concat("data-clarity-hide","=").concat("m","] { background-size: 24px 24px; }")+"".concat("img","[").concat("data-clarity-hide","=").concat("l","] { background-size: 36px 36px; }")+"".concat("iframe","[").concat("data-clarity-unavailable","] { background: url(").concat("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC4AAAAiCAYAAAAge+tMAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAU6SURBVHgBzVg7TyNJEG6bh5AIjpOQeCXj7LL18pDIdpztRYuzy7CjCzG/ADu8CO8vwEQXrgkvws6QeNiEFzEk4GznIFnxvO/zVntrhx6/kLxb0mh6uqurvq6urqqehHklra+ve3d3dx8SiUT6+fk5ja4ZtGf4tjzoD9AXoBmiXUsmk+cnJyc18wpKmCFodXXVx8t/enraBCDPDEchniqeg9PT06oZkAYCTsCw2A6afjc+8IQCjGR3oBtxR/bHx8crR0dHgemD+gIugPfQ9OJ4BGwF72qj0ajrsTQI7rEFcDnTndoLeHh4KDebzdAMC5z+e39/T8B+Nz6AbcJtslAWdOMDfg8LONTuJf7vRVgDPEW40H6crLG4AVi58Pj4+Deav0WUFIjBfDt8NYD+HaBbpge1Wq1wbm5uH+DXjewe5IXQ85buxAMurJS9sbi46IG/jnlforKS0Q7f92dWVlYOAXLXgqMb4CmcnZ2l8E5YpVwIlGZ7basm8nIO50qXNzY29g6y8+hP0RCKPYexBne+K3Ay3N7eNoxyDViziicFwR+la8uOwULFQUBr8LB6XgOU/gDukcGittUY3bUBY25oGR0fX1tbSwPgoVFWxquoAFufv5DxgDvgAsZdu7m52WR7cnLyIC5SAMxnqw+6PRzqSzvmOg9coPX7ZAzoAN9vNWgSQKfVpzP2yq5dQGGZD61F+S5e6KnYNkD6eozWBwZav6m6K1hs2yBJB2hGiIwrQmDsjfp8MS6L2zMqa7INebvGTedKthcdtODN90Yi+I2kCO0owsq3e4U1EqOBq98FwNWnxgKCgd66a5znAe6RjYDfGsdJzmtfgqBPWFE+Jg2HSmFcNuS8QqSv5mLkwQewiumDBKcn87JJ5UuB8BDQJ8TxYnQyFnep2ukYMCXzvXUY57ddvIOGUeIUNw47UQWneEYsrwFVJiYmSjYqkAdx9bOMMR6n4pSTF7J+0ZHCRVKwfaA7SXUZ0g3xNJn+j4+Pm655L1L+8vLyrmRHS4FR6ZfJyUichyKGy5IZgvot2EA1GC8fDanOWgXgCwBPodqPqxCwjQKIljmUPiaSTJxVuoAuCui+CXhKqOGLne84xpgEQKqoSwMpwIIy/ZajUdBytspSVV6KblaT79AsaP0afM+yFtbP4bXT48LAWqYEtymbHrIgZy/SnYurAsV4O7ocRjvD21Nf9bgIYMbK9VgAq8f2rYYHbHp6OqjVau3DK+UCXcw1P9ethI2cO9YzqYFuQLIA3/TegTYxpbPqE+UdazM7o82suWn6AC8Rr2F10upjZgBiPX19fd3E83F+fr5mviakKQiad/FDWfHq6upftlFbM0N7AvwP1kHoY5Fmzwrr7wCyzx16vywsLBDwe9s31GU5ShKz30gOmLGWQZwv2fIBYfRZ2JnCf7Vz0V8xyvIsaV1nReeQ9oXGjIDoYlB6IZ811tx6PAo+Gvoswd0urFGS5icgLCSHV8e/GS5dJYemUQHXxZnnYugFXtzRzg1HApz1jC3iqFzqkxfUDTxcTc9pDhRVXkOICrSYb78RPQ5cfOivRqKNv7S0lMAi/lTRqziSw0mSqMADauufbLdfb45ir032rjsyi0ssnlJWfw/Ltlxxm4T+fyR2+7qfi+GckQEXMHWA9c3XRDRl5KcPXOE/JKrA8vEvwezsLH8a5YwqEWDtMqz9F9sjcxVL4jJM/RuRoVB+iZjob2qSgO7cpEYO3BJrfry2etU8XAx4XtyBfxhwki3aAGyT9b39HS3/KJsoGSr4rLuuh/8DlPszm7LNbUUAAAAASUVORK5CYII=",") no-repeat center center, url('").concat('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%"><rect width="100%" height="100%" style="fill:rgb(204,204,204)"/><line stroke-dasharray="5, 5" x1="0" y1="100%" x2="100%" y2="0" style="stroke:rgb(119,119,119);stroke-width:1"/><line stroke-dasharray="5, 5" x1="0" y1="0" x2="100%" y2="100%" style="stroke:rgb(119,119,119);stroke-width:1"/><circle cx="50%" cy="50%" r="40" fill="rgb(204,204,204)"/></svg>',"'); }")+"*[".concat("data-clarity-suspend","] { filter: grayscale(100%); }")+"body { font-size: initial; }\n ".concat(r.getMobileCustomStyle())},this.state=a,this.isMobile=i}return n.prototype.setDocumentStyles=function(t,e){var n=-1===t?this.state.window.document:this.element(t);if(!n)return this.stylesToApply[t]||(this.stylesToApply[t]=[]),void(this.stylesToApply[t]=e);for(var a=[],i=0,r=e;i<r.length;i++){var o=r[i],s=this.adoptedStyleSheets[o];s&&a.push(s)}n.adoptedStyleSheets=a},n.TIMEOUT=3e3,n}(),za=function(){function n(){var n=this;this._state=null,this.renderTime=0,this.hashFoundTime=-1,this.dom=function(a){return t(n,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return[4,this.layout.dom(a)];case 1:return t.sent(),[2]}}))}))},this.get=function(t){var e;return null===(e=n.layout)||void 0===e?void 0:e.get(t)},this.shortCircuitRendering=function(t,e,a){switch(t){case 1:return n.layout.exists(a);case 2:return-1===n.hashFoundTime&&n.layout.exists(a)&&(n.hashFoundTime=e.time),n.hashFoundTime>-1&&e.time>n.hashFoundTime+100;case 3:for(var i=0,r=e.data;i<r.length;i++){var o=r[i];if((o.hashAlpha===a||o.hashBeta===a)&&null===o.parent)return!0}return!1;default:return!1}},this.html=function(a,i,r,o,s,c){return void 0===r&&(r=null),void 0===c&&(c=0),t(n,void 0,void 0,(function(){var t,n,l,u;return e(this,(function(e){switch(e.label){case 0:if(!(a&&a.length>0&&i))return[3,10];e.label=1;case 1:return e.trys.push([1,9,,10]),t=this.merge(a),[4,this.setup(i,{version:a[0].envelope.version,dom:t.dom,useproxy:o})];case 2:e.sent(),e.label=3;case 3:if(!(t.events.length>0))return[3,8];switch(n=t.events.shift(),n.event){case 45:case 46:return[3,4];case 6:return[3,5]}return[3,7];case 4:return this.layout.styleChange(n),[3,7];case 5:return l=n,this.renderTime=l.time,this.shortCircuitRendering(c,l,r)?[3,7]:[4,this.layout.markup(l,o)];case 6:return e.sent(),[3,7];case 7:return[3,3];case 8:return[3,10];case 9:return u=e.sent(),s&&s(u),[3,10];case 10:return[2,this]}}))}))},this.time=function(){return n.renderTime},this.clickmap=function(t){if(null===n.state)throw new Error('Initialize heatmap by calling "html" or "setup" prior to making this call.');n.heatmap.click(t)},this.clearmap=function(){if(null===n.state)throw new Error('Initialize heatmap by calling "html" or "setup" prior to making this call.');n.heatmap.clear()},this.scrollmap=function(t,e,a){if(null===n.state)throw new Error('Initialize heatmap by calling "html" or "setup" prior to making this call.');n.heatmap.scroll(t,e,a)},this.merge=function(t){var e={timestamp:null,envelope:null,dom:null,events:[]};t=t.sort(n.sortPayloads),n.enrich=n.enrich||new Fa,n.enrich.reset();for(var a=0,i=t;a<i.length;a++){var r=i[a];e.timestamp=e.timestamp?e.timestamp:r.timestamp,e.envelope=r.envelope;for(var o=0,s=Object.keys(r);o<s.length;o++){var c=s[o],l=r[c];if(Array.isArray(l))for(var u=0,d=l;u<d.length;u++){var h=d[u];if("dom"===c){var f=n.enrich.selectors(h);5===h.event?e.dom=f:e.events.push(h)}else e.events.push(h)}}}return e.events=e.events.sort(n.sortEvents),e},this.setup=function(i,r){return t(n,void 0,void 0,(function(){return e(this,(function(t){switch(t.label){case 0:return this.reset(),r.canvas=!("canvas"in r)||r.canvas,r.keyframes="keyframes"in r&&r.keyframes,this._state={window:i,options:r},this.enrich=new Fa,this.data=new a(this.state),this.layout=new La(this.state,r.mobile),this.heatmap=new Ua(this.state,this.layout),this.interaction=new Pa(this.state,this.layout),r.dom?[4,this.layout.dom(r.dom,r.useproxy)]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,this]}}))}))},this.render=function(a){return t(n,void 0,void 0,(function(){var t,n,i,r;return e(this,(function(e){switch(e.label){case 0:if(null===this.state)throw new Error('Initialize visualization by calling "setup" prior to making this call.');t=0,n=0,i=a,e.label=1;case 1:if(!(n<i.length))return[3,16];switch(r=i[n],t=r.time,r.event){case 0:return[3,2];case 1:return[3,3];case 7:return[3,4];case 6:case 43:return[3,5];case 13:case 14:case 12:case 15:case 9:case 16:case 17:case 20:case 18:case 19:return[3,7];case 28:return[3,8];case 27:return[3,9];case 21:return[3,10];case 11:return[3,11];case 10:return[3,12];case 45:case 46:return[3,13];case 44:return[3,14]}return[3,15];case 2:return this.data.metric(r),[3,15];case 3:return r.data[37]&&this.data.metric(r),[3,15];case 4:return this.data.region(r),[3,15];case 5:return[4,this.layout.markup(r)];case 6:return e.sent(),[3,15];case 7:return this.interaction.pointer(r),[3,15];case 8:return this.interaction.visibility(r),[3,15];case 9:return this.interaction.input(r),[3,15];case 10:return this.interaction.selection(r),[3,15];case 11:return this.interaction.resize(r),[3,15];case 12:return this.interaction.scroll(r),[3,15];case 13:return this.layout.styleChange(r),[3,15];case 14:return this.layout.animateChange(r),[3,15];case 15:return n++,[3,1];case 16:return a.length>0&&this.interaction.trail(t),[2]}}))}))},this.reset=function(){var t,e,a,i,r;null===(t=n.data)||void 0===t||t.reset(),null===(e=n.interaction)||void 0===e||e.reset(),null===(a=n.layout)||void 0===a||a.reset(),null===(i=n.heatmap)||void 0===i||i.reset(),null===(r=n.enrich)||void 0===r||r.reset(),n._state=null,n.renderTime=0},this.sortEvents=function(t,e){return t.time-e.time},this.sortPayloads=function(t,e){return t.envelope.sequence-e.envelope.sequence}}return Object.defineProperty(n.prototype,"state",{get:function(){return this._state},enumerable:!1,configurable:!0}),n}(),Qa=(Da=new za).state,Ha=Da.dom,Xa=Da.get,ja=Da.html,Va=Da.time,Wa=Da.clickmap,qa=Da.clearmap,Ga=Da.scrollmap,Ka=Da.merge,Ja=Da.setup,Za=Da.render,_a=Object.freeze({__proto__:null,clearmap:qa,clickmap:Wa,dom:Ha,get:Xa,html:ja,merge:Ka,render:Za,scrollmap:Ga,setup:Ja,state:Qa,time:Va});"undefined"!=typeof window&&(void 0!==window.clarity&&null!==window.clarity||(window.clarity={}),window.clarity.visualize=_a)}();
|
|
@@ -174,9 +174,11 @@ var config$2 = {
|
|
|
174
174
|
delayDom: false,
|
|
175
175
|
throttleDom: true,
|
|
176
176
|
conversions: false,
|
|
177
|
-
longTask: 30,
|
|
178
177
|
includeSubdomains: true,
|
|
179
178
|
throttleMutations: false,
|
|
179
|
+
dropMutations: false,
|
|
180
|
+
criticalMs: 200,
|
|
181
|
+
discard: [],
|
|
180
182
|
};
|
|
181
183
|
|
|
182
184
|
function api(method) {
|
|
@@ -1155,7 +1157,7 @@ function state$a(timer) {
|
|
|
1155
1157
|
return 2 /* Task.Stop */;
|
|
1156
1158
|
}
|
|
1157
1159
|
function start$y(timer) {
|
|
1158
|
-
tracker[key(timer)] = { start: performance.now(), calls: 0, yield:
|
|
1160
|
+
tracker[key(timer)] = { start: performance.now(), calls: 0, yield: 30 /* Setting.LongTask */ };
|
|
1159
1161
|
}
|
|
1160
1162
|
function restart$2(timer) {
|
|
1161
1163
|
var id = key(timer);
|
|
@@ -1240,14 +1242,14 @@ function requestIdleCallbackPolyfill(callback, options) {
|
|
|
1240
1242
|
var currentTime = performance.now();
|
|
1241
1243
|
var elapsed = currentTime - startTime;
|
|
1242
1244
|
var duration = currentTime - event.data;
|
|
1243
|
-
if (duration >
|
|
1245
|
+
if (duration > 30 /* Setting.LongTask */ && elapsed < options.timeout) {
|
|
1244
1246
|
requestAnimationFrame(function () { outgoing.postMessage(currentTime); });
|
|
1245
1247
|
}
|
|
1246
1248
|
else {
|
|
1247
1249
|
var didTimeout_1 = elapsed > options.timeout;
|
|
1248
1250
|
callback({
|
|
1249
1251
|
didTimeout: didTimeout_1,
|
|
1250
|
-
timeRemaining: function () { return didTimeout_1 ?
|
|
1252
|
+
timeRemaining: function () { return didTimeout_1 ? 30 /* Setting.LongTask */ : Math.max(0, 30 /* Setting.LongTask */ - duration); }
|
|
1251
1253
|
});
|
|
1252
1254
|
}
|
|
1253
1255
|
};
|
|
@@ -2051,7 +2053,7 @@ function monitor(frame) {
|
|
|
2051
2053
|
}
|
|
2052
2054
|
function active$2() {
|
|
2053
2055
|
activePeriod = time$1() + 3000 /* Setting.MutationActivePeriod */;
|
|
2054
|
-
time$1() +
|
|
2056
|
+
time$1() + config$2.criticalMs;
|
|
2055
2057
|
}
|
|
2056
2058
|
function handle$1(m) {
|
|
2057
2059
|
// Queue up mutation records for asynchronous processing
|
|
@@ -2172,14 +2174,15 @@ function track$5(m, timer, instance, timestamp) {
|
|
|
2172
2174
|
// calculate inactive period based on the timestamp of the mutation not when the mutation is processed
|
|
2173
2175
|
var inactive = timestamp > activePeriod;
|
|
2174
2176
|
var target = get$2(m.target);
|
|
2175
|
-
var
|
|
2177
|
+
var element_1 = target && target.selector ? target.selector.join() : m.target.nodeName;
|
|
2176
2178
|
var parent_1 = value.selector ? value.selector.join() : "" /* Constant.Empty */;
|
|
2177
2179
|
// Check if its a low priority (e.g., ads related) element mutation happening during critical period
|
|
2180
|
+
// If the discard list is empty, we discard all mutations during critical period
|
|
2178
2181
|
var lowPriMutation = config$2.throttleMutations ;
|
|
2179
2182
|
// We use selector, instead of id, to determine the key (signature for the mutation) because in some cases
|
|
2180
2183
|
// repeated mutations can cause elements to be destroyed and then recreated as new DOM nodes
|
|
2181
2184
|
// In those cases, IDs will change however the selector (which is relative to DOM xPath) remains the same
|
|
2182
|
-
var key = [parent_1,
|
|
2185
|
+
var key = [parent_1, element_1, m.attributeName, names(m.addedNodes), names(m.removedNodes)].join();
|
|
2183
2186
|
// Initialize an entry if it doesn't already exist
|
|
2184
2187
|
history$4[key] = key in history$4 ? history$4[key] : [0, instance];
|
|
2185
2188
|
var h = history$4[key];
|
|
@@ -2200,8 +2203,10 @@ function track$5(m, timer, instance, timestamp) {
|
|
|
2200
2203
|
if (instance > timestamp + 3000 /* Setting.MutationActivePeriod */) {
|
|
2201
2204
|
return m.type;
|
|
2202
2205
|
}
|
|
2203
|
-
|
|
2204
|
-
|
|
2206
|
+
{
|
|
2207
|
+
// we only store the most recent mutation for a given key if it is being throttled
|
|
2208
|
+
throttledMutations[key] = { mutation: m, timestamp: timestamp };
|
|
2209
|
+
}
|
|
2205
2210
|
return "throttle" /* Constant.Throttle */;
|
|
2206
2211
|
}
|
|
2207
2212
|
}
|
|
@@ -3540,7 +3545,7 @@ function measure (method) {
|
|
|
3540
3545
|
}
|
|
3541
3546
|
var duration = performance.now() - start;
|
|
3542
3547
|
sum(4 /* Metric.TotalCost */, duration);
|
|
3543
|
-
if (duration >
|
|
3548
|
+
if (duration > 30 /* Setting.LongTask */) {
|
|
3544
3549
|
count$1(7 /* Metric.LongTaskCount */);
|
|
3545
3550
|
max(6 /* Metric.ThreadBlockedTime */, duration);
|
|
3546
3551
|
log$1(9 /* Code.FunctionExecutionTime */, 0 /* Severity.Info */, "".concat(method.dn || method.name, "-").concat(duration));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clarity-visualize",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.64",
|
|
4
4
|
"description": "An analytics library that uses web page interactions to generate aggregated insights",
|
|
5
5
|
"author": "Microsoft Corp.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"url": "https://github.com/Microsoft/clarity/issues"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"clarity-decode": "^0.7.
|
|
30
|
+
"clarity-decode": "^0.7.64"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@rollup/plugin-commonjs": "^24.0.0",
|