@solomei-ai/intent 2.1.0 → 2.1.1

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.
@@ -6,5 +6,5 @@
6
6
  * html2canvas-pro 2.3.9 <https://yorickshan.github.io/html2canvas-pro/>
7
7
  * Copyright (c) 2024-present yorickshan and html2canvas-pro contributors
8
8
  * Released under MIT License
9
- */var t=class A{constructor(A={}){const t=A.window||("undefined"!=typeof window?window:void 0);if(!t)throw new Error("Window object is required but not available");this.window=t,this.cspNonce=A.cspNonce,this.cache=A.cache}static fromElement(t,e={}){const r=t.ownerDocument;if(!r)throw new Error("Element is not attached to a document");const n=r.defaultView;if(!n)throw new Error("Document is not attached to a window");return new A({window:n,...e})}clone(t={}){return new A({window:t.window||this.window,cspNonce:t.cspNonce??this.cspNonce,cache:t.cache??this.cache})}},e=class{constructor(A={}){this.config={maxImageTimeout:3e5,allowDataUrls:!0,...A}}validateUrl(A,t="general"){if(!A||"string"!=typeof A)return{valid:!1,error:"URL must be a non-empty string"};if(A.startsWith("data:"))return this.config.allowDataUrls?{valid:!0,sanitized:A}:{valid:!1,error:"Data URLs are not allowed"};if(A.startsWith("blob:"))return{valid:!0,sanitized:A};try{const e=new URL(A);if(!["http:","https:"].includes(e.protocol))return{valid:!1,error:`Protocol ${e.protocol} is not allowed. Only http and https are permitted.`};if("proxy"===t&&this.config.allowedProxyDomains&&this.config.allowedProxyDomains.length>0){const A=e.hostname.toLowerCase();if(!this.config.allowedProxyDomains.some(t=>{const e=t.toLowerCase();return A===e||A.endsWith("."+e)}))return{valid:!1,error:`Proxy domain ${e.hostname} is not in the allowed list`}}if("proxy"===t){if(!this.config.allowLocalhostProxy){const A=e.hostname.toLowerCase();if("localhost"===A||"127.0.0.1"===A||"::1"===A)return{valid:!1,error:"Localhost is not allowed for proxy URLs"};if(this.isPrivateIP(A))return{valid:!1,error:"Private IP addresses are not allowed for proxy URLs"};if(A.startsWith("169.254.")||A.startsWith("fe80:"))return{valid:!1,error:"Link-local addresses are not allowed for proxy URLs"}}return{valid:!0,sanitized:A,requiresRuntimeCheck:!0}}return{valid:!0,sanitized:A}}catch(A){return{valid:!1,error:`Invalid URL format: ${A instanceof Error?A.message:"Unknown error"}`}}}isPrivateIP(A){return!![/^0\./,/^10\./,/^100\.(6[4-9]|[7-9][0-9]|1[0-1][0-9]|12[0-7])\./,/^127\./,/^169\.254\./,/^172\.(1[6-9]|2[0-9]|3[0-1])\./,/^192\.0\.0\./,/^192\.0\.2\./,/^192\.168\./,/^198\.(1[8-9])\./,/^198\.51\.100\./,/^203\.0\.113\./,/^2(2[4-9]|3[0-9])\./,/^24[0-9]\./,/^255\.255\.255\.255$/].some(t=>t.test(A))||!!A.includes(":")&&this.isPrivateIPv6(A)}isPrivateIPv6(A){const t=A.toLowerCase().trim().replace(/^\[|\]$/g,"").split("%")[0];if(/^(0:){7}1$/.test(t)||"::1"===t)return!0;if(/^(0:){7}0$/.test(t)||"::"===t)return!0;const e=this.expandIPv6(t);if(!e)return this.isPrivateIPv6Prefix(t);const r=parseInt(e.substring(0,2),16);if(r>=252&&r<=253)return!0;if(254===r){const A=parseInt(e.substring(2,4),16);if(A>=128&&A<=191)return!0}return 255===r}expandIPv6(A){try{if(A.includes("::")){const t=A.split("::");if(t.length>2)return null;const e=t[0]?t[0].split(":"):[],r=t[1]?t[1].split(":"):[],n=8-e.length-r.length;if(n<0)return null;const s=Array(n).fill("0000");return[...e,...s,...r].map(A=>A.padStart(4,"0")).join(":")}{const t=A.split(":");return 8!==t.length?null:t.map(A=>A.padStart(4,"0")).join(":")}}catch{return null}}isPrivateIPv6Prefix(A){return!!(/^fc[0-9a-f]{0,2}:?/i.test(A)||/^fd[0-9a-f]{0,2}:?/i.test(A)||/^fe[89ab][0-9a-f]:?/i.test(A)||/^ff[0-9a-f]{0,2}:?/i.test(A))}validateCspNonce(A){return A&&"string"==typeof A?A.length<16?{valid:!1,error:"CSP nonce is too short (minimum 16 characters recommended)"}:/^[A-Za-z0-9+/=_-]+$/.test(A)?{valid:!0,sanitized:A}:{valid:!1,error:"CSP nonce contains invalid characters"}:{valid:!1,error:"CSP nonce must be a non-empty string"}}validateImageTimeout(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Image timeout must be a number"}:A<0?{valid:!1,error:"Image timeout cannot be negative"}:this.config.maxImageTimeout&&A>this.config.maxImageTimeout?{valid:!1,error:`Image timeout ${A}ms exceeds maximum allowed ${this.config.maxImageTimeout}ms`}:{valid:!0,sanitized:A}}validateDimensions(A,t){if("number"!=typeof A||"number"!=typeof t)return{valid:!1,error:"Dimensions must be numbers"};if(isNaN(A)||isNaN(t))return{valid:!1,error:"Dimensions cannot be NaN"};if(A<=0||t<=0)return{valid:!1,error:"Dimensions must be positive"};return A>32767||t>32767?{valid:!1,error:"Dimensions exceed maximum allowed (32767px)"}:{valid:!0,sanitized:{width:A,height:t}}}validateScale(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Scale must be a number"}:A<=0?{valid:!1,error:"Scale must be positive"}:A>10?{valid:!1,error:"Scale factor too large (maximum 10x)"}:{valid:!0,sanitized:A}}validateElement(A){return A?"object"!=typeof A?{valid:!1,error:"Element must be an object"}:"undefined"!=typeof HTMLElement&&A instanceof HTMLElement?A.ownerDocument?{valid:!0}:{valid:!1,error:"Element must be attached to a document"}:A.ownerDocument?A.ownerDocument.defaultView?{valid:!0}:{valid:!1,error:"Document must be attached to a window (ownerDocument.defaultView required)"}:{valid:!1,error:"Element must be attached to a document (ownerDocument required)"}:{valid:!1,error:"Element is required"}}validateOptions(A){const t=[],e=A.proxy;if(null!=e&&"string"==typeof e&&e.length>0){const A=this.validateUrl(e,"proxy");A.valid||t.push(`Proxy: ${A.error}`)}if(void 0!==A.imageTimeout){const e=this.validateImageTimeout(A.imageTimeout);e.valid||t.push(`Image timeout: ${e.error}`)}if(void 0!==A.width||void 0!==A.height){const e=this.validateDimensions(A.width??800,A.height??600);e.valid||t.push(`Dimensions: ${e.error}`)}if(void 0!==A.scale){const e=this.validateScale(A.scale);e.valid||t.push(`Scale: ${e.error}`)}if(void 0!==A.cspNonce){const e=this.validateCspNonce(A.cspNonce);e.valid||t.push(`CSP nonce: ${e.error}`)}if(this.config.customValidator){const e=this.config.customValidator(A,"options");e.valid||t.push(`Custom validation: ${e.error}`)}return t.length>0?{valid:!1,error:t.join("; ")}:{valid:!0}}},r=class{constructor(A,t=!0){this.context=A,this.activeMetrics=new Map,this.completedMetrics=[],this.enabled=t,this.getTime="undefined"!=typeof performance&&"function"==typeof performance.now?()=>performance.now():()=>Date.now()}start(A,t){this.enabled&&(this.activeMetrics.has(A)&&this.context?.logger.warn(`Performance metric '${A}' already started. Overwriting.`),this.activeMetrics.set(A,{name:A,startTime:this.getTime(),metadata:t}))}end(A){if(!this.enabled)return;const t=this.activeMetrics.get(A);if(t)return t.endTime=this.getTime(),t.duration=t.endTime-t.startTime,this.completedMetrics.push(t),this.activeMetrics.delete(A),this.context?.logger.debug(`⏱️ ${A}: ${t.duration.toFixed(2)}ms`,t.metadata),t;this.context?.logger.warn(`Performance metric '${A}' not found. Was start() called?`)}measure(A,t,e){this.start(A,e);try{const e=t();return this.end(A),e}catch(t){throw this.end(A),t}}async measureAsync(A,t,e){this.start(A,e);try{const e=await t();return this.end(A),e}catch(t){throw this.end(A),t}}getMetrics(){return[...this.completedMetrics]}getMetric(A){return this.completedMetrics.find(t=>t.name===A)}getSummary(){const A=this.completedMetrics.reduce((A,t)=>A+(t.duration||0),0),t=this.completedMetrics.map(t=>({name:t.name,duration:t.duration||0,percentage:A>0?((t.duration||0)/A*100).toFixed(1)+"%":"0%"}));return{totalDuration:A,metrics:this.getMetrics(),breakdown:t}}logSummary(){if(!this.enabled||0===this.completedMetrics.length||!this.context)return;const A=this.getSummary();this.context.logger.info(`\n📊 Performance Summary (Total: ${A.totalDuration.toFixed(2)}ms):`),A.breakdown.sort((A,t)=>t.duration-A.duration).forEach(A=>{this.context.logger.info(` ${A.name.padEnd(20)} ${A.duration.toFixed(2).padStart(8)}ms ${A.percentage.padStart(6)}`)})}clear(){this.activeMetrics.clear(),this.completedMetrics.splice(0)}isEnabled(){return this.enabled}getActiveMetrics(){return Array.from(this.activeMetrics.keys())}},n=class A{constructor(A,t,e,r){this.left=A,this.top=t,this.width=e,this.height=r}add(t,e,r,n){return new A(this.left+t,this.top+e,this.width+r,this.height+n)}static fromClientRect(t,e){return new A(e.left+t.windowBounds.left,e.top+t.windowBounds.top,e.width,e.height)}static fromDOMRectList(t,e){const r=Array.from(e);let n=r.find(A=>0!==A.width);return n||(n=r.find(A=>0!==A.height)),!n&&r.length>0&&(n=r[0]),n?new A(n.left+t.windowBounds.left,n.top+t.windowBounds.top,n.width,n.height):A.EMPTY}static{this.EMPTY=new A(0,0,0,0)}};const s=(A,t)=>n.fromClientRect(A,t.getBoundingClientRect());for(var o=A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t},i=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},a="undefined"==typeof Uint8Array?[]:new Uint8Array(256),c=0;c<64;c++)a["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(c)]=c;for(var B="undefined"==typeof Uint8Array?[]:new Uint8Array(256),l=0;l<64;l++)B["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(l)]=l;for(var g=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),h=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),d="undefined"==typeof Uint8Array?[]:new Uint8Array(256),w=0;w<64;w++)d["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(w)]=w;var u,Q,p,C,U,f,F,m,y=10,I=13,H=15,E=17,b=18,x=19,v=20,K=21,L=22,S=24,D=25,M=26,T=27,k=28,O=30,R=32,V=33,N=34,G=35,P=37,X=38,J=39,W=40,Y=42,Z=[9001,65288],z="×",_="÷",q=(C=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),l=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=B[A.charCodeAt(t)],r=B[A.charCodeAt(t+1)],n=B[A.charCodeAt(t+2)],s=B[A.charCodeAt(t+3)],l[a++]=e<<2|r>>4,l[a++]=(15&r)<<4|n>>2,l[a++]=(3&n)<<6|63&s;return c})("KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),U=Array.isArray(C)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(C):new Uint32Array(C),f=Array.isArray(C)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(C):new Uint16Array(C),F=g(f,12,U[4]/2),m=2===U[5]?g(f,(24+U[4])/2):(u=U,Q=Math.ceil((24+U[4])/4),u.slice?u.slice(Q,p):new Uint32Array(Array.prototype.slice.call(u,Q,p))),new h(U[0],U[1],U[2],U[3],F,m)),j=[O,36],$=[1,2,3,5],AA=[y,8],tA=[T,M],eA=$.concat(AA),rA=[X,J,W,N,G],nA=[H,I],sA=(A,t,e,r)=>{var n=r[e];if(Array.isArray(A)?-1!==A.indexOf(n):A===n)for(var s=e;s<=r.length;){if((a=r[++s])===t)return!0;if(a!==y)break}if(n===y)for(s=e;s>0;){var o=r[--s];if(Array.isArray(A)?-1!==A.indexOf(o):A===o)for(var i=e;i<=r.length;){var a;if((a=r[++i])===t)return!0;if(a!==y)break}if(o!==y)break}return!1},oA=(A,t)=>{for(var e=A;e>=0;){var r=t[e];if(r!==y)return r;e--}return 0},iA=(A,t,e,r,n)=>{if(0===e[r])return z;var s=r-1;if(Array.isArray(n)&&!0===n[s])return z;var o=s-1,i=s+1,a=t[s],c=o>=0?t[o]:0,B=t[i];if(2===a&&3===B)return z;if(-1!==$.indexOf(a))return"!";if(-1!==$.indexOf(B))return z;if(-1!==AA.indexOf(B))return z;if(8===oA(s,t))return _;if(11===q.get(A[s]))return z;if((a===R||a===V)&&11===q.get(A[i]))return z;if(7===a||7===B)return z;if(9===a)return z;if(-1===[y,I,H].indexOf(a)&&9===B)return z;if(-1!==[E,b,x,S,k].indexOf(B))return z;if(oA(s,t)===L)return z;if(sA(23,L,s,t))return z;if(sA([E,b],K,s,t))return z;if(sA(12,12,s,t))return z;if(a===y)return _;if(23===a||23===B)return z;if(16===B||16===a)return _;if(-1!==[I,H,K].indexOf(B)||14===a)return z;if(36===c&&-1!==nA.indexOf(a))return z;if(a===k&&36===B)return z;if(B===v)return z;if(-1!==j.indexOf(B)&&a===D||-1!==j.indexOf(a)&&B===D)return z;if(a===T&&-1!==[P,R,V].indexOf(B)||-1!==[P,R,V].indexOf(a)&&B===M)return z;if(-1!==j.indexOf(a)&&-1!==tA.indexOf(B)||-1!==tA.indexOf(a)&&-1!==j.indexOf(B))return z;if(-1!==[T,M].indexOf(a)&&(B===D||-1!==[L,H].indexOf(B)&&t[i+1]===D)||-1!==[L,H].indexOf(a)&&B===D||a===D&&-1!==[D,k,S].indexOf(B))return z;if(-1!==[D,k,S,E,b].indexOf(B))for(var l=s;l>=0;){if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(-1!==[T,M].indexOf(B))for(l=-1!==[E,b].indexOf(a)?o:s;l>=0;){var g;if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(X===a&&-1!==[X,J,N,G].indexOf(B)||-1!==[J,N].indexOf(a)&&-1!==[J,W].indexOf(B)||-1!==[W,G].indexOf(a)&&B===W)return z;if(-1!==rA.indexOf(a)&&-1!==[v,M].indexOf(B)||-1!==rA.indexOf(B)&&a===T)return z;if(-1!==j.indexOf(a)&&-1!==j.indexOf(B))return z;if(a===S&&-1!==j.indexOf(B))return z;if(-1!==j.concat(D).indexOf(a)&&B===L&&-1===Z.indexOf(A[i])||-1!==j.concat(D).indexOf(B)&&a===b)return z;if(41===a&&41===B){for(var h=e[s],d=1;h>0&&41===t[--h];)d++;if(d%2!=0)return z}return a===R&&B===V?z:_},aA=function(){function A(A,t,e,r){this.codePoints=A,this.required="!"===t,this.start=e,this.end=r}return A.prototype.slice=function(){return i.apply(void 0,this.codePoints.slice(this.start,this.end))},A}();const cA=A=>A>=48&&A<=57,BA=A=>cA(A)||A>=65&&A<=70||A>=97&&A<=102,lA=A=>10===A||9===A||32===A,gA=A=>(A=>(A=>A>=97&&A<=122)(A)||(A=>A>=65&&A<=90)(A))(A)||(A=>A>=128)(A)||95===A,hA=A=>gA(A)||cA(A)||45===A,dA=A=>A>=0&&A<=8||11===A||A>=14&&A<=31||127===A,wA=(A,t)=>92===A&&10!==t,uA=(A,t,e)=>45===A?gA(t)||wA(t,e):!!gA(A)||!(92!==A||!wA(A,t)),QA=(A,t,e)=>43===A||45===A?!!cA(t)||46===t&&cA(e):cA(46===A?t:A),pA=A=>{let t=0,e=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(e=-1),t++);const r=[];for(;cA(A[t]);)r.push(A[t++]);const n=r.length?parseInt(i(...r),10):0;46===A[t]&&t++;const s=[];for(;cA(A[t]);)s.push(A[t++]);const o=s.length,a=o?parseInt(i(...s),10):0;69!==A[t]&&101!==A[t]||t++;let c=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(c=-1),t++);const B=[];for(;cA(A[t]);)B.push(A[t++]);const l=B.length?parseInt(i(...B),10):0;return e*(n+a*Math.pow(10,-o))*Math.pow(10,c*l)},CA={type:2},UA={type:3},fA={type:4},FA={type:13},mA={type:8},yA={type:21},IA={type:9},HA={type:10},EA={type:11},bA={type:12},xA={type:14},vA={type:23},KA={type:1},LA={type:25},SA={type:24},DA={type:26},MA={type:27},TA={type:28},kA={type:29},OA={type:31},RA={type:32};var VA=class A{static{this._pool=[]}static{this.MAX_POOL_SIZE=40}static get(){return A._pool.pop()||new A}static release(t){A._pool.length<A.MAX_POOL_SIZE&&(t._reset(),A._pool.push(t))}constructor(){this._value=[]}_reset(){this._value=[]}write(A){this._value=this._value.concat(o(A))}read(){const A=[];let t=this.consumeToken();for(;t!==RA;)A.push(t),t=this.consumeToken();return A}consumeToken(){const A=this.consumeCodePoint();switch(A){case 34:return this.consumeStringToken(34);case 35:{const A=this.peekCodePoint(0),t=this.peekCodePoint(1),e=this.peekCodePoint(2);if(hA(A)||wA(t,e)){const r=uA(A,t,e)?2:1;return{type:5,value:this.consumeName(),flags:r}}break}case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),FA;break;case 39:return this.consumeStringToken(39);case 40:return CA;case 41:return UA;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),xA;break;case 43:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 44:return fA;case 45:{const t=A,e=this.peekCodePoint(0),r=this.peekCodePoint(1);if(QA(t,e,r))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(uA(t,e,r))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===e&&62===r)return this.consumeCodePoint(),this.consumeCodePoint(),SA;break}case 46:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){let A=this.consumeCodePoint();if(42===A&&(A=this.consumeCodePoint(),47===A))return this.consumeToken();if(-1===A)return this.consumeToken()}break;case 58:return DA;case 59:return MA;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),LA;break;case 64:if(uA(this.peekCodePoint(0),this.peekCodePoint(1),this.peekCodePoint(2)))return{type:7,value:this.consumeName()};break;case 91:return TA;case 92:if(wA(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case 93:return kA;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),mA;break;case 123:return EA;case 125:return bA;case 117:case 85:{const t=this.peekCodePoint(0),e=this.peekCodePoint(1);return 43!==t||!BA(e)&&63!==e||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken()}case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),IA;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),yA;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),HA;break;case-1:return RA}return lA(A)?(this.consumeWhiteSpace(),OA):cA(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):gA(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:i(A)}}consumeCodePoint(){const A=this._value.shift();return void 0===A?-1:A}reconsumeCodePoint(A){this._value.unshift(A)}peekCodePoint(A){return A>=this._value.length?-1:this._value[A]}consumeUnicodeRangeToken(){const A=[];let t=this.consumeCodePoint();for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();let e=!1;for(;63===t&&A.length<6;)A.push(t),t=this.consumeCodePoint(),e=!0;if(e)return{type:30,start:parseInt(i(...A.map(A=>63===A?48:A)),16),end:parseInt(i(...A.map(A=>63===A?70:A)),16)};const r=parseInt(i(...A),16);if(45===this.peekCodePoint(0)&&BA(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();const A=[];for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();return{type:30,start:r,end:parseInt(i(...A),16)}}return{type:30,start:r,end:r}}consumeIdentLikeToken(){const A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}}consumeUrlToken(){const A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};const t=this.peekCodePoint(0);if(39===t||34===t){const A=this.consumeStringToken(this.consumeCodePoint());return 0===A.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:A.value}):(this.consumeBadUrlRemnants(),vA)}for(;;){const t=this.consumeCodePoint();if(-1===t||41===t)return{type:22,value:i(...A)};if(lA(t))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:i(...A)}):(this.consumeBadUrlRemnants(),vA);if(34===t||39===t||40===t||dA(t))return this.consumeBadUrlRemnants(),vA;if(92===t){if(!wA(t,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),vA;A.push(this.consumeEscapedCodePoint())}else A.push(t)}}consumeWhiteSpace(){for(;lA(this.peekCodePoint(0));)this.consumeCodePoint()}consumeBadUrlRemnants(){for(;;){const A=this.consumeCodePoint();if(41===A||-1===A)return;wA(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}}consumeStringSlice(A){let t="";for(;A>0;){const e=Math.min(5e4,A);t+=i(...this._value.splice(0,e)),A-=e}return this._value.shift(),t}consumeStringToken(A){let t="",e=0;for(;;){const r=this._value[e];if(-1===r||void 0===r||r===A)return t+=this.consumeStringSlice(e),{type:0,value:t};if(10===r)return this._value.splice(0,e),KA;if(92===r){const A=this._value[e+1];-1!==A&&void 0!==A&&(10===A?(t+=this.consumeStringSlice(e),e=-1,this._value.shift()):wA(r,A)&&(t+=this.consumeStringSlice(e),t+=i(this.consumeEscapedCodePoint()),e=-1))}e++}}consumeNumber(){const A=[];let t=4,e=this.peekCodePoint(0);for(43!==e&&45!==e||A.push(this.consumeCodePoint());cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);let r=this.peekCodePoint(1);if(46===e&&cA(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0),r=this.peekCodePoint(1);const n=this.peekCodePoint(2);if((69===e||101===e)&&((43===r||45===r)&&cA(n)||cA(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[pA(A),t]}consumeNumericToken(){const[A,t]=this.consumeNumber(),e=this.peekCodePoint(0);return uA(e,this.peekCodePoint(1),this.peekCodePoint(2))?{type:15,number:A,flags:t,unit:this.consumeName()}:37===e?(this.consumeCodePoint(),{type:16,number:A,flags:t}):{type:17,number:A,flags:t}}consumeEscapedCodePoint(){const A=this.consumeCodePoint();if(BA(A)){let t=i(A);for(;BA(this.peekCodePoint(0))&&t.length<6;)t+=i(this.consumeCodePoint());lA(this.peekCodePoint(0))&&this.consumeCodePoint();const e=parseInt(t,16);return 0===e||(A=>A>=55296&&A<=57343)(e)||e>1114111?65533:e}return-1===A?65533:A}consumeName(){let A="";for(;;){const t=this.consumeCodePoint();if(hA(t))A+=i(t);else{if(!wA(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=i(this.consumeEscapedCodePoint())}}}},NA=class A{constructor(A){this._tokens=A}static create(t){const e=new VA;return e.write(t),new A(e.read())}static parseValue(t){return A.create(t).parseComponentValue()}static parseValues(t){return A.create(t).parseComponentValues()}parseComponentValue(){let A=this.consumeToken();for(;31===A.type;)A=this.consumeToken();if(32===A.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);const t=this.consumeComponentValue();do{A=this.consumeToken()}while(31===A.type);if(32===A.type)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")}parseComponentValues(){const A=[];for(;;){const t=this.consumeComponentValue();if(32===t.type)return A;A.push(t)}}consumeComponentValue(){const A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A}consumeSimpleBlock(A){const t={type:A,values:[]};let e=this.consumeToken();for(;;){if(32===e.type||_A(e,A))return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue()),e=this.consumeToken()}}consumeFunction(A){const t={name:A.value,values:[],type:18};for(;;){const A=this.consumeToken();if(32===A.type||3===A.type)return t;this.reconsumeToken(A),t.values.push(this.consumeComponentValue())}}consumeToken(){const A=this._tokens.shift();return void 0===A?RA:A}reconsumeToken(A){this._tokens.unshift(A)}};const GA=A=>15===A.type,PA=A=>17===A.type,XA=A=>20===A.type,JA=A=>0===A.type,WA=(A,t)=>XA(A)&&A.value===t,YA=A=>31!==A.type,ZA=A=>31!==A.type&&4!==A.type,zA=A=>{const t=[];let e=[];return A.forEach(A=>{4!==A.type?31!==A.type&&e.push(A):e.length&&(t.push(e),e=[])}),e.length&&t.push(e),t},_A=(A,t)=>11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type,qA=/(\d+(?:\.\d+)?|[+\-*/()])/g,jA=A=>{const t=A.match(qA);if(!t)return NaN;const e=[],r=[],n={"+":1,"-":1,"*":2,"/":2};for(const A of t)if(/^\d+(?:\.\d+)?$/.test(A))e.push(parseFloat(A));else if("("===A)r.push(A);else if(")"===A){for(;r.length&&"("!==r[r.length-1];)e.push(r.pop());if(!r.length)return NaN;r.pop()}else{for(;r.length&&n[r[r.length-1]]>=n[A];)e.push(r.pop());r.push(A)}for(;r.length;){const A=r.pop();if("("===A)return NaN;e.push(A)}const s=[];for(const A of e)if("number"==typeof A)s.push(A);else{const t=s.pop(),e=s.pop();if(void 0===e||void 0===t)return NaN;switch(A){case"+":s.push(e+t);break;case"-":s.push(e-t);break;case"*":s.push(e*t);break;case"/":s.push(0===t?NaN:e/t);break;default:return NaN}}return 1===s.length?s[0]:NaN},$A=(A,t,e)=>Math.min(Math.max(A,t),e),At=(A,t)=>[A[0]*t[0]+A[1]*t[1]+A[2]*t[2],A[3]*t[0]+A[4]*t[1]+A[5]*t[2],A[6]*t[0]+A[7]*t[1]+A[8]*t[2]],tt=A=>At([3.2409699419045226,-1.537383177570094,-.4986107602930034,-.9692436362808796,1.8759675015077202,.04155505740717559,.05563007969699366,-.20397695888897652,1.0569715142428786],A),et=A=>At([.41239079926595934,.357584339383878,.1804807884018343,.21263900587151027,.715168678767756,.07219231536073371,.01933081871559182,.11919477979462598,.9505321522496607],A),rt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e>.0031308?t*(1.055*e**(1/2.4)-.055):12.92*A}),nt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e<=.04045?A/12.92:t*((e+.055)/1.055)**2.4}),st=A=>17===A.type||15===A.type,ot=A=>16===A.type||st(A)||it(A),it=A=>17===A.type&&void 0!==A._calcPercentage,at=A=>{return 18===(t=A).type&&"calc"===t.name?(A=>{const t=ct(A,0);if(!t)return null;const e=ct(A,100);if(!e)return null;const r=t.number,n=e.number-r;return 0===n?t:{type:17,number:r,flags:4,_calcPercentage:n,_calcPixelOffset:r}})(A):ot(A)?A:null;var t},ct=(A,t=0)=>{const e=A=>{let r="";for(const n of A)if(31!==n.type)if(18===n.type){if("calc"!==n.name)return null;{const A=e(n.values);if(null===A)return null;r+=`(${A})`}}else if(17===n.type)r+=n.number.toString();else if(15===n.type)r+="px"===n.unit?n.number.toString():"rem"===n.unit||"em"===n.unit?(16*n.number).toString():n.number.toString();else if(16===n.type)r+=(n.number/100*t).toString();else if(6===n.type){const A=n.value;"+"===A||"-"===A||"*"===A||"/"===A?r+=` ${A} `:"("===A?r+="(":")"===A&&(r+=")")}return r};try{const t=e(A.values);if(null===t||""===t.trim())return null;const r=jA(t);if("number"==typeof r&&!isNaN(r))return{type:17,number:r,flags:4}}catch(A){return null}return null},Bt=A=>A.length>1?[A[0],A[1]]:[A[0]],lt={type:17,number:0,flags:4},gt={type:16,number:50,flags:4},ht={type:16,number:100,flags:4},dt=(A,t,e)=>{const[r,n]=A;return[wt(r,t),wt(void 0!==n?n:r,e)]},wt=(A,t)=>{if(it(A))return A._calcPercentage/100*t+A._calcPixelOffset;if(16===A.type)return A.number/100*t;if(GA(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},ut="grad",Qt="turn",pt=(A,t)=>{if(15===t.type)switch(t.unit){case"deg":return Math.PI*t.number/180;case ut:return Math.PI/200*t.number;case"rad":return t.number;case Qt:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},Ct=A=>15===A.type&&("deg"===A.unit||A.unit===ut||"rad"===A.unit||A.unit===Qt),Ut=A=>{switch(A.filter(XA).map(A=>A.value).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[lt,lt];case"to top":case"bottom":return ft(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[lt,ht];case"to right":case"left":return ft(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[ht,ht];case"to bottom":case"top":return ft(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[ht,lt];case"to left":case"right":return ft(270)}return 0},ft=A=>Math.PI*A/180,Ft=A=>!(255&A),mt=A=>{const t=255&A,e=255&A>>8,r=255&A>>16,n=255&A>>24;return t<255?`rgba(${n},${r},${e},${t/255})`:`rgb(${n},${r},${e})`},yt=(A,t,e,r)=>(A<<24|t<<16|e<<8|Math.round(255*r))>>>0,It=(A,t)=>{if(17===A.type)return A.number;if(16===A.type){const e=3===t?1:255;return 3===t?A.number/100*e:Math.round(A.number/100*e)}return 0},Ht=A=>"from"===(20===A[0].type?A[0].value:"unknown"),Et=([A,t,e,r])=>{const n=rt([A,t,e]);return yt($A(Math.round(255*n[0]),0,255),$A(Math.round(255*n[1]),0,255),$A(Math.round(255*n[2]),0,255),r)},bt=A=>{const t=tt([A[0],A[1],A[2]]);return Et([t[0],t[1],t[2],A[3]])},xt=(A,t)=>{const[e,r,n,s]=t.filter(ZA);return[(17===e.type?ft(e.number):pt(0,e))/(2*Math.PI),ot(r)?r.number/100:0,ot(n)?n.number/100:0,void 0!==s&&ot(s)?wt(s,1):1]},vt=(A,t)=>{if(Ht(t))throw new Error("Relative color not supported for hsl()");const[e,r,n,s]=xt(0,t),o=kt([e,r,n]);return yt(255*o[0],255*o[1],255*o[2],0===r?1:s)},Kt=A=>{const t=A.filter(ZA);return[ot(t[0])?t[0].number:0,ot(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Lt=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},St=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Dt=A=>At([1.0479297925449969,.022946870601609652,-.05019226628920524,.02962780877005599,.9904344267538799,-.017073799063418826,-.009243040646204504,.015055191490298152,.7518742814281371],A),Mt=A=>At([.955473421488075,-.02309845494876471,.06325924320057072,-.0283697093338637,1.0099953980813041,.021041441191917323,.012314014864481998,-.020507649298898964,1.330365926242124],A),Tt=(A,t,e)=>(e<0&&(e+=1),e>=1&&(e-=1),e<1/6?(t-A)*e*6+A:e<.5?t:e<2/3?6*(t-A)*(2/3-e)+A:A),kt=([A,t,e])=>{if(0===t)return[255*e,255*e,255*e];const r=e<=.5?e*(t+1):e+t-e*t,n=2*e-r;return[Tt(n,r,A+1/3),Tt(n,r,A),Tt(n,r,A-1/3)]},Ot=([A,t,e])=>(t<0&&(t=0),isNaN(e)&&(e=0),[A,t*Math.cos(e*Math.PI/180),t*Math.sin(e*Math.PI/180)]),Rt=A=>At([1.2268798758459243,-.5578149944602171,.2813910456659647,-.0405757452148008,1.112286803280317,-.0717110580655164,-.0763729366746601,-.4214933324022432,1.5869240198367816],At([1,.3963377773761749,.2158037573099136,1,-.1055613458156586,-.0638541728258133,1,-.0894841775298119,-1.2914855480194092],A).map(A=>A**3)),Vt=A=>{const t=(A[0]+16)/116,e=A[1]/500+t,r=t-A[2]/200,n=24389/27,s=24/116,o=[.3457*(e>s?e**3:(116*e-16)/n)/.3585,A[0]>8?t**3:A[0]/n,.2958*(r>s?r**3:(116*r-16)/n)/.3585];return Mt([o[0],o[1],o[2]])},Nt=A=>A,Gt=A=>bt([A[0],A[1],A[2],A[3]]),Pt=1.09929682680944,Xt=.018053968510807,Jt=(A,t)=>{if(18===t.type){const e=qt[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported color function "${t.name}"`);return e(A,t.values)}if(5===t.type){const[A,e,r,n]=Wt(t);return yt(A,e,r,n)}if(20===t.type){const A=$t[t.value.toUpperCase()];if(void 0!==A)return A}return $t.TRANSPARENT},Wt=A=>{if(3===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),1]}if(4===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3),n=A.value.substring(3,4);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),parseInt(n+n,16)/255]}if(6===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),1]}if(8===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6),n=A.value.substring(6,8);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),parseInt(n,16)/255]}return[0,0,0,1]},Yt=(A,t)=>{const e=t.filter(ZA);if(Ht(e))throw new Error("Relative color not supported for rgb()");if(3===e.length){const[A,t,r]=e.map(It);return yt(A,t,r,1)}if(4===e.length){const[A,t,r,n]=e.map(It);return yt(A,t,r,n)}return 5===e.length&&6===e[3].type&&"/"===e[3].value?yt(It(e[0],0),It(e[1],1),It(e[2],2),It(e[4],3)):0},Zt={srgb:A=>yt($A(Math.round(255*A[0]),0,255),$A(Math.round(255*A[1]),0,255),$A(Math.round(255*A[2]),0,255),$A(A[3],0,1)),"srgb-linear":Et,"display-p3":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>{const t=A<0?-1:1;return A*t<=.04045?A/12.92:t*((A+.055)/1.055)**2.4||0});return At([.4865709486482162,.26566769316909306,.1982172852343625,.2289745640697488,.6917385218365064,.079286914093745,0,.04511338185890264,1.043944368900976],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"a98-rgb":A=>{const t=tt((e=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(563/256));return[t[0],t[1],t[2]]})([A[0],A[1],A[2]]),At([.5766690429101305,.1855582379065463,.1882286462349947,.29734497525053605,.6273635662554661,.0752914584939978,.02703136138641234,.07068885253582723,.9913375368376388],e)));var e;return Et([t[0],t[1],t[2],A[3]])},"prophoto-rgb":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>A<16/512?A/16:A**1.8);return Mt(At([.7977666449006423,.13518129740053308,.0313477341283922,.2880748288194013,.711835234241873,8993693872564e-17,0,0,.8251046025104602],[t[0],t[1],t[2]]))})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},xyz:Gt,"xyz-d50":A=>{const t=(A=>Mt([A[0],A[1],A[2]]))([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"xyz-d65":Gt,rec2020:A=>{const t=(A=>{const t=(A=>A.map(A=>A<4.5*Xt?A/4.5:Math.pow((A+Pt-1)/Pt,1/.45)))([A[0],A[1],A[2]]);return At([.6369580483012914,.14461690358620832,.1688809751641721,.2627002120112671,.6779980715188708,.05930171646986196,0,.028072693049087428,1.060985057710791],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])}},zt={rgb:(A,t)=>{const e=t.filter(ZA);if(3===e.length){const[A,t,r]=e.map(It),n=nt([A/255,t/255,r/255]),[s,o,i]=et([n[0],n[1],n[2]]);return[s,o,i,1]}if(4===e.length){const[A,t,r,n]=e.map(It),s=nt([A/255,t/255,r/255]),[o,i,a]=et([s[0],s[1],s[2]]);return[o,i,a,n]}return[0,0,0,1]},hsl:(A,t)=>{const[e,r,n,s]=xt(0,t),o=nt(kt([e,r,n])),[i,a,c]=et([o[0],o[1],o[2]]);return[i,a,c,s]},lab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Vt([e,r,n]);return[o,i,a,s]},lch:(A,t)=>{const[e,r,n,s]=Kt(t),[o,i,a]=Vt(Ot([e,r,n]));return[o,i,a,s]},oklab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Rt([e,r,n]);return[o,i,a,s]},oklch:(A,t)=>{const[e,r,n,s]=St(t),[o,i,a]=Rt(Ot([e,r,n]));return[o,i,a,s]}},_t={srgb:A=>{const[t,e,r]=rt(tt([A[0],A[1],A[2]]));return[t,e,r,A[3]]},"srgb-linear":A=>{const[t,e,r]=tt([A[0],A[1],A[2]]);return[$A(Math.round(255*t),0,255),$A(Math.round(255*e),0,255),$A(Math.round(255*r),0,255),A[3]]},"display-p3":A=>{const[t,e,r]=(n=At([2.493496911941425,-.9313836179191239,-.40271078445071684,-.8294889695615747,1.7626640603183463,.023624685841943577,.03584583024378447,-.07617238926804182,.9568845240076872],[A[0],A[1],A[2]]),rt(n));var n;return[t,e,r,A[3]]},"a98-rgb":A=>{const[t,e,r]=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(256/563));return[t[0],t[1],t[2]]})(At([2.0415879038107465,-.5650069742788596,-.34473135077832956,-.9692436362808795,1.8759675015077202,.04155505740717557,.013444280632031142,-.11836239223101838,1.0151749943912054],[A[0],A[1],A[2]]));return[t,e,r,A[3]]},"prophoto-rgb":A=>{const[t,e,r]=(n=Dt([A[0],A[1],A[2]]),At([1.3457868816471583,-.25557208737979464,-.05110186497554526,-.5446307051249019,1.5082477428451468,.02052744743642139,0,0,1.2119675456389452],n).map(A=>A>1/512?A**(1/1.8):16*A));var n;return[t,e,r,A[3]]},xyz:Nt,"xyz-d50":A=>{const[t,e,r]=Dt([A[0],A[2],A[3]]);return[t,e,r,A[3]]},"xyz-d65":Nt,rec2020:A=>{const[t,e,r]=(A=>A.map(A=>A>=Xt?Pt*Math.pow(A,.45)-(Pt-1):4.5*A))(At([1.716651187971268,-.355670783776392,-.25336628137366,-.666684351832489,1.616481236634939,.0157685458139111,.017639857445311,-.042770613257809,.942103121235474],[A[0],A[1],A[2]]));return[t,e,r,A[3]]}},qt={hsl:vt,hsla:vt,rgb:Yt,rgba:Yt,lch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lch()");const[e,r,n,s]=Kt(t),o=rt(tt(Vt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklch()");const[e,r,n,s]=St(t),o=rt(tt(Rt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklab()");const[e,r,n,s]=Lt(t),o=rt(tt(Rt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},lab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lab()");const[e,r,n,s]=Lt(t),o=rt(tt(Vt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},color:(A,t)=>{const e=t.filter(ZA),r=20===e[0].type?e[0].value:"unknown";if(Ht(e)){const t=(A,t)=>{if(PA(t))return t.number;if(XA(t))return A[e=t.value,"r"===e||"x"===e?0:"g"===e||"y"===e?1:2];var e;const r=A=>{const t=A.filter(ZA);let e="(";for(const A of t)e+=18===A.type&&"calc"===A.name?r(A.values):PA(A)?A.number:6===A.type||XA(A)?A.value:"";return e+=")",e};if(18===t.type){const e=t.values.filter(ZA);if("calc"===t.name)return jA(r(e).replace(/r|x/,A[0].toString()).replace(/g|y/,A[1].toString()).replace(/b|z/,A[2].toString()))}return null},r=18===e[1].type?e[1].name:XA(e[1])||5===e[1].type?"rgb":"unknown",n=XA(e[2])?e[2].value:"unknown";let s=18===e[1].type?e[1].values:XA(e[1])?[e[1]]:[];if(XA(e[1])){if(void 0===$t[e[1].value.toUpperCase()])throw new Error("Attempting to use unknown color in relative color 'from'");{const t=jt(A,e[1].value),r=255&t;s=[{type:17,number:255&t>>24,flags:1},{type:17,number:255&t>>16,flags:1},{type:17,number:255&t>>8,flags:1},{type:17,number:r>1?r/255:r,flags:1}]}}else if(5===e[1].type){const[A,t,r,n]=Wt(e[1]);s=[{type:17,number:A,flags:1},{type:17,number:t,flags:1},{type:17,number:r,flags:1},{type:17,number:n>1?n/255:n,flags:1}]}if(0===s.length)throw new Error("Attempting to use unknown color in relative color 'from'");if("unknown"===n)throw new Error("Attempting to use unknown colorspace in relative color 'to'");const o=zt[r],i=_t[n],a=Zt[n];if(void 0===o)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);if(void 0===i)throw new Error(`Attempting to parse an unsupported color space "${n}" for color() function`);const c=i(o(A,s)),B=t(c,e[3]),l=t(c,e[4]),g=t(c,e[5]),h=e.length>6&&6===e[6].type&&"/"===e[6].value&&PA(e[7])?e[7].number:1;if(null===B||null===l||null===g)throw new Error("Invalid relative color in color() function");return a([B,l,g,h])}{const A=Zt[r];if(void 0===A)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);return A([PA(e[1])?e[1].number:0,PA(e[2])?e[2].number:0,PA(e[3])?e[3].number:0,e.length>4&&6===e[4].type&&"/"===e[4].value&&PA(e[5])?e[5].number:1])}}},jt=(A,t)=>Jt(A,NA.create(t).parseComponentValue()),$t={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},Ae=A=>A.nodeType===Node.ELEMENT_NODE,te=A=>A.nodeType===Node.TEXT_NODE,ee=A=>"object"==typeof A.className,re=A=>Ae(A)&&void 0!==A.style&&!ee(A),ne=A=>"svg"===A.tagName,se=A=>"BODY"===A.tagName,oe=A=>"CANVAS"===A.tagName,ie=A=>"VIDEO"===A.tagName,ae=A=>"IMG"===A.tagName,ce=A=>"IFRAME"===A.tagName,Be=A=>"STYLE"===A.tagName,le=A=>"TEXTAREA"===A.tagName,ge=A=>"SELECT"===A.tagName,he=A=>"SLOT"===A.tagName,de=A=>!ee(A)&&A.tagName.indexOf("-")>0,we=new Set(["IMG","VIDEO","AUDIO","CANVAS","IFRAME","INPUT","TEXTAREA","SELECT","BR","HR","META","LINK","BASE","COL","SOURCE","TRACK","WBR","AREA","PARAM","EMBED","OBJECT"]),ue={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 52;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},Qe=(A,t)=>0!==(A&t);var pe=class{constructor(){this.counters={}}getCounterValue(A){const t=this.counters[A];return t&&t.length?t[t.length-1]:1}getCounterValues(A){return this.counters[A]||[]}pop(A){A.forEach(A=>this.counters[A].pop())}parse(A){const t=A.counterIncrement,e=A.counterReset;let r=!0;null!==t&&t.forEach(A=>{const t=this.counters[A.counter];t&&0!==A.increment&&(r=!1,t.length||t.push(1),t[Math.max(0,t.length-1)]+=A.increment)});const n=[];return r&&e.forEach(A=>{let t=this.counters[A.counter];n.push(A.counter),t||(t=this.counters[A.counter]=[]),t.push(A.reset)}),n}};const Ce={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Ue={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},Fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},me=(A,t,e,r,n,s)=>A<t||A>e?Le(A,n,s.length>0):r.integers.reduce((t,e,n)=>{for(;A>=e;)A-=e,t+=r.values[n];return t},"")+s,ye=(A,t,e,r)=>{let n="";do{e||A--,n=r(A)+n,A/=t}while(A*t>=t);return n},Ie=(A,t,e,r,n)=>{const s=e-t+1;return(A<0?"-":"")+(ye(Math.abs(A),s,r,A=>i(Math.floor(A%s)+t))+n)},He=(A,t,e=". ")=>{const r=t.length;return ye(Math.abs(A),r,!1,A=>t[Math.floor(A%r)])+e},Ee=(A,t,e,r,n,s)=>{if(A<-9999||A>9999)return Le(A,4,n.length>0);let o=Math.abs(A),i=n;if(0===o)return t[0]+i;for(let r=0;o>0&&r<=4;r++){const n=o%10;0===n&&Qe(s,1)&&""!==i?i=t[n]+i:n>1||1===n&&0===r||1===n&&1===r&&Qe(s,2)||1===n&&1===r&&Qe(s,4)&&A>100||1===n&&r>1&&Qe(s,8)?i=t[n]+(r>0?e[r-1]:"")+i:1===n&&r>0&&(i=e[r-1]+i),o=Math.floor(o/10)}return(A<0?r:"")+i},be="十百千萬",xe="拾佰仟萬",ve="マイナス",Ke="마이너스",Le=(A,t,e)=>{const r=e?". ":"",n=e?"、":"",s=e?", ":"",o=e?" ":"";switch(t){case 0:return"•"+o;case 1:return"◦"+o;case 2:return"◾"+o;case 5:const t=Ie(A,48,57,!0,r);return t.length<4?`0${t}`:t;case 4:return He(A,"〇一二三四五六七八九",n);case 6:return me(A,1,3999,Ce,3,r).toLowerCase();case 7:return me(A,1,3999,Ce,3,r);case 8:return Ie(A,945,969,!1,r);case 9:return Ie(A,97,122,!1,r);case 10:return Ie(A,65,90,!1,r);case 11:return Ie(A,1632,1641,!0,r);case 12:case 49:return me(A,1,9999,Ue,3,r);case 35:return me(A,1,9999,Ue,3,r).toLowerCase();case 13:return Ie(A,2534,2543,!0,r);case 14:case 30:return Ie(A,6112,6121,!0,r);case 15:return He(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return He(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return Ee(A,"零一二三四五六七八九",be,"負",n,14);case 47:return Ee(A,"零壹貳參肆伍陸柒捌玖",xe,"負",n,15);case 42:return Ee(A,"零一二三四五六七八九",be,"负",n,14);case 41:return Ee(A,"零壹贰叁肆伍陆柒捌玖",xe,"负",n,15);case 26:return Ee(A,"〇一二三四五六七八九","十百千万",ve,n,0);case 25:return Ee(A,"零壱弐参四伍六七八九","拾百千万",ve,n,7);case 31:return Ee(A,"영일이삼사오육칠팔구","십백천만",Ke,s,7);case 33:return Ee(A,"零一二三四五六七八九","十百千萬",Ke,s,0);case 32:return Ee(A,"零壹貳參四五六七八九","拾百千",Ke,s,7);case 18:return Ie(A,2406,2415,!0,r);case 20:return me(A,1,19999,Fe,3,r);case 21:return Ie(A,2790,2799,!0,r);case 22:return Ie(A,2662,2671,!0,r);case 52:return me(A,1,10999,fe,3,r);case 23:return He(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return He(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return Ie(A,3302,3311,!0,r);case 28:return He(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return He(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return Ie(A,3792,3801,!0,r);case 37:return Ie(A,6160,6169,!0,r);case 38:return Ie(A,4160,4169,!0,r);case 39:return Ie(A,2918,2927,!0,r);case 40:return Ie(A,1776,1785,!0,r);case 43:return Ie(A,3046,3055,!0,r);case 44:return Ie(A,3174,3183,!0,r);case 45:return Ie(A,3664,3673,!0,r);case 46:return Ie(A,3872,3881,!0,r);default:return Ie(A,48,57,!0,r)}},Se={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2;case"text":return 3}return 0})},De={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Me=(A,t)=>{const e=Jt(A,t[0]),r=t[1];return r&&ot(r)?{color:e,stop:r}:{color:e,stop:null}},Te=(A,t)=>{const e=A[0],r=A[A.length-1];null===e.stop&&(e.stop=lt),null===r.stop&&(r.stop=ht);const n=[];let s=0;for(let e=0;e<A.length;e++){const r=A[e].stop;if(null!==r){const A=wt(r,t);n.push(A>s?A:s),s=A}else n.push(null)}let o=null;for(let A=0;A<n.length;A++){const t=n[A];if(null===t)null===o&&(o=A);else if(null!==o){const e=A-o,r=(t-n[o-1])/(e+1);for(let A=1;A<=e;A++)n[o+A-1]=r*A;o=null}}return A.map(({color:A},e)=>({color:A,stop:Math.max(Math.min(1,n[e]/t),0)}))},ke=(A,t,e)=>{const r="number"==typeof A?A:((A,t,e)=>{const r=t/2,n=e/2,s=wt(A[0],t)-r,o=n-wt(A[1],e);return(Math.atan2(o,s)+2*Math.PI)%(2*Math.PI)})(A,t,e),n=Math.abs(t*Math.sin(r))+Math.abs(e*Math.cos(r)),s=t/2,o=e/2,i=n/2,a=Math.sin(r-Math.PI/2)*i,c=Math.cos(r-Math.PI/2)*i;return[n,s-c,s+c,o-a,o+a]},Oe=(A,t)=>Math.sqrt(A*A+t*t),Re=(A,t,e,r,n)=>[[0,0],[0,t],[A,0],[A,t]].reduce((A,t)=>{const[s,o]=t,i=Oe(e-s,r-o);return(n?i<A.optimumDistance:i>A.optimumDistance)?{optimumCorner:t,optimumDistance:i}:A},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner,Ve=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&"to"===A.value)return void(e=Ut(t));if(Ct(A))return void(e=pt(0,A))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ne=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&-1!==["top","left","right","bottom"].indexOf(A.value))return void(e=Ut(t));if(Ct(A))return void(e=(pt(0,A)+ft(270))%ft(360))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ge="closest-side",Pe="farthest-side",Xe="closest-corner",Je="farthest-corner",We="circle",Ye="ellipse",Ze="cover",ze="contain",_e=(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o?i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case"center":return s.push(gt),!1;case"top":case"left":return s.push(lt),!1;case"right":case"bottom":return s.push(ht),!1}else if(ot(t)||st(t))return s.push(t),!1;return A},i):1===o&&(i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case We:return e=0,!1;case Ye:return e=1,!1;case ze:case Ge:return r=0,!1;case Pe:return r=1,!1;case Xe:return r=2,!1;case Ze:case Je:return r=3,!1}else if(st(t)||ot(t))return Array.isArray(r)||(r=[]),r.push(t),!1;return A},i)),i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},qe=(A,t)=>({...Ve(A,t),type:3}),je=A=>1===A.type,$e=A=>2===A.type,Ar=A=>3===A.type,tr=(A,t)=>{if(22===t.type){const e={url:t.value,type:0};return A.cache.addImage(t.value),e}if(18===t.type){const e=rr[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported image function "${t.name}"`);return e(A,t.values)}throw new Error(`Unsupported image type ${t.type}`)};function er(A){return!(20===A.type&&"none"===A.value||18===A.type&&!rr[A.name])}const rr={"linear-gradient":Ve,"-moz-linear-gradient":Ne,"-ms-linear-gradient":Ne,"-o-linear-gradient":Ne,"-webkit-linear-gradient":Ne,"radial-gradient":(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o){let A=!1;i=t.reduce((t,n)=>{if(A)if(XA(n))switch(n.value){case"center":return s.push(gt),t;case"top":case"left":return s.push(lt),t;case"right":case"bottom":return s.push(ht),t}else(ot(n)||st(n))&&s.push(n);else if(XA(n))switch(n.value){case We:return e=0,!1;case Ye:return e=1,!1;case"at":return A=!0,!1;case Ge:return r=0,!1;case Ze:case Pe:return r=1,!1;case ze:case Xe:return r=2,!1;case Je:return r=3,!1}else if(st(n)||ot(n))return Array.isArray(r)||(r=[]),r.push(n),!1;return t},i)}if(i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},"-moz-radial-gradient":_e,"-ms-radial-gradient":_e,"-o-radial-gradient":_e,"-webkit-radial-gradient":_e,"-webkit-gradient":(A,t)=>{const e=ft(180),r=[];let n=1;return zA(t).forEach((t,e)=>{const s=t[0];if(0===e){if(XA(s)&&"linear"===s.value)return void(n=1);if(XA(s)&&"radial"===s.value)return void(n=2)}if(18===s.type)if("from"===s.name){const t=Jt(A,s.values[0]);r.push({stop:lt,color:t})}else if("to"===s.name){const t=Jt(A,s.values[0]);r.push({stop:ht,color:t})}else if("color-stop"===s.name){const t=s.values.filter(ZA);if(2===t.length){const e=Jt(A,t[1]),n=t[0];PA(n)&&r.push({stop:{type:16,number:100*n.number,flags:n.flags},color:e})}}}),1===n?{angle:(e+ft(180))%ft(360),stops:r,type:n}:{size:3,shape:0,stops:r,position:[],type:n}},"repeating-linear-gradient":qe,"-webkit-repeating-linear-gradient":qe,"-moz-repeating-linear-gradient":qe,"-ms-repeating-linear-gradient":qe,"-o-repeating-linear-gradient":qe},nr={name:"background-image",initialValue:"none",type:1,prefix:!1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t.filter(A=>ZA(A)&&er(A)).map(t=>tr(A,t))}},sr={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})},or={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:(A,t)=>zA(t).map(A=>A.map(at).filter(A=>null!==A)).map(Bt)},ir={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.filter(XA).map(A=>A.value).join(" ")).map(ar)},ar=A=>{switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},cr={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.map(A=>Br(A)?A:at(A)).filter(A=>null!==A))},Br=A=>XA(A)||ot(A),lr=A=>({name:`border-${A}-color`,initialValue:"transparent",prefix:!1,type:3,format:"color"}),gr=lr("top"),hr=lr("right"),dr=lr("bottom"),wr=lr("left"),ur=A=>({name:`border-${A}-radius`,initialValue:"0 0",prefix:!1,type:1,parse:(A,t)=>Bt(t.filter(ot))}),Qr=ur("top-left"),pr=ur("top-right"),Cr=ur("bottom-right"),Ur=ur("bottom-left"),fr=A=>({name:`border-${A}-style`,initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}),Fr=fr("top"),mr=fr("right"),yr=fr("bottom"),Ir=fr("left"),Hr=A=>({name:`border-${A}-width`,initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0}),Er=Hr("top"),br=Hr("right"),xr=Hr("bottom"),vr=Hr("left"),Kr={type:0},Lr=A=>{const[t]=A;return t?XA(t)?"farthest-side"===t.value?"farthest-side":"closest-side":ot(t)?t:"closest-side":"closest-side"},Sr=A=>{let t=null,e=null;for(const r of A)if(XA(r))switch(r.value){case"left":t=lt;break;case"right":t=ht;break;case"top":e=lt;break;case"bottom":e=ht;break;case"center":null===t?t=gt:null===e&&(e=gt)}else ot(r)&&(null===t?t=r:null===e&&(e=r));return{cx:t??gt,cy:e??gt}},Dr={name:"clip-path",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>{if(XA(t)&&"none"===t.value)return Kr;if(18===t.type)switch(t.name){case"inset":return(A=>{const t=[];for(const e of A)if(31!==e.type){if(XA(e)&&"round"===e.value)break;ot(e)&&t.push(e)}const e=t[0]??lt,r=t[1]??e;return{type:1,top:e,right:r,bottom:t[2]??e,left:t[3]??r}})(t.values);case"circle":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:2,radius:Lr(r),...Sr(n)}})(t.values);case"ellipse":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:3,rx:Lr(r.slice(0,1)),ry:Lr(r.slice(1,2)),...Sr(n)}})(t.values);case"polygon":return(A=>{const t=zA(A),e=[];for(const A of t){if(1===A.length&&XA(A[0]))continue;const t=A.filter(ot);t.length>=2&&e.push([t[0],t[1]])}return{type:4,points:e}})(t.values);case"path":return(A=>{const t=A.find(A=>0===A.type);return t?{type:5,d:t.value}:Kr})(t.values)}return Kr}},Mr={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Tr={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:(A,t)=>"rtl"===t?1:0},kr={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Or(t.value),0)},Or=A=>{switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},Rr={name:"float",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Vr={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"normal"===t.value?0:17===t.type||15===t.type?t.number:0},Nr={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"strict"===t?"strict":"normal"},Gr={name:"line-height",initialValue:"normal",prefix:!1,type:4},Pr=(A,t)=>XA(A)&&"normal"===A.value?1.2*t:17===A.type?t*A.number:ot(A)?wt(A,t):t,Xr={name:"list-style-image",initialValue:"none",type:0,prefix:!1,skipCache:!0,parse:(A,t)=>20===t.type&&"none"===t.value?null:tr(A,t)},Jr={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:(A,t)=>"inside"===t?0:1},Wr=A=>({name:`margin-${A}`,initialValue:"0",prefix:!1,type:4}),Yr=Wr("top"),Zr=Wr("right"),zr=Wr("bottom"),_r=Wr("left"),qr={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})},jr={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"break-word"===t?"break-word":"normal"},$r=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=$r("top"),tn=$r("right"),en=$r("bottom"),rn=$r("left"),nn={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},sn={name:"position",initialValue:"static",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},on={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:$t.TRANSPARENT,offsetX:lt,offsetY:lt,blur:lt};let r=0;for(let n=0;n<t.length;n++){const s=t[n];st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:e.blur=s,r++):e.color=Jt(A,s)}return e})},an={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},cn={name:"transform",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>{if(20===t.type&&"none"===t.value)return null;if(18===t.type){const e=Bn[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported transform function "${t.name}"`);return e(A,t.values)}return null}},Bn={matrix:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number);return 6===e.length?e:null},matrix3d:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number),[r,n,{},{},s,o,{},{},{},{},{},{},i,a]=e;return 16===e.length?[r,n,s,o,i,a]:null},rotate:(A,t)=>{if(1!==t.length)return null;const e=t[0];let r=0;if(17===e.type&&0===e.number)r=0;else{if(15!==e.type)return null;r=pt(0,e)}const n=Math.cos(r),s=Math.sin(r);return[n,s,-s,n,0,0]}},ln={type:16,number:50,flags:4},gn=[ln,ln],hn={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:(A,t)=>{const e=t.filter(ot);return 2!==e.length?gn:[e[0],e[1]]}},dn={name:"rotate",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?null:17===t.type&&0===t.number?0:15===t.type?180*pt(0,t)/Math.PI:null},wn={name:"visibility",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},un={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"break-all":return"break-all";case"keep-all":return"keep-all";default:return"normal"}}},Qn={name:"white-space",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"pre":return"pre";case"nowrap":return"nowrap";case"pre-wrap":return"pre-wrap";case"pre-line":return"pre-line";default:return"normal"}}},pn=A=>0!==A,Cn=A=>3===A||4===A,Un={name:"writing-mode",initialValue:"horizontal-tb",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"vertical-rl":return 1;case"vertical-lr":return 2;case"sideways-rl":return 3;case"sideways-lr":return 4;default:return 0}}},fn={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(20===t.type)return{auto:!0,order:0};if(PA(t))return{auto:!1,order:t.number};throw new Error("Invalid z-index number parsed")}},Fn=(A,t)=>{if(15===t.type)switch(t.unit.toLowerCase()){case"s":return 1e3*t.number;case"ms":return t.number}throw new Error("Unsupported time type")},mn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:1},yn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},In={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(A=>0!==A)},Hn={name:"text-decoration-style",initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"double":return 1;case"dotted":return 2;case"dashed":return 3;case"wavy":return 4;default:return 0}}},En={name:"text-decoration-thickness",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(XA(t))switch(t.value){case"auto":return"auto";case"from-font":return"from-font"}return GA(t)?t.number:"auto"}},bn={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":GA(t)?t.number:"auto"},xn={name:"font-family",initialValue:"",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=[];return t.forEach(A=>{switch(A.type){case 20:case 0:e.push(A.value);break;case 17:e.push(A.number.toString());break;case 4:r.push(e.join(" ")),e.length=0}}),e.length&&r.push(e.join(" ")),r.map(A=>-1===A.indexOf(" ")?A:`'${A}'`)}},vn={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Kn={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:XA(t)&&"bold"===t.value?700:400},Ln={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>t.filter(XA).map(A=>A.value)},Sn={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},Dn={name:"content",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t}},Mn=(A,t)=>{const e=[],r=A.filter(YA);for(let A=0;A<r.length;A++){const n=r[A],s=r[A+1];if(20===n.type){const A=s&&PA(s)?s.number:t;e.push([n.value,A])}}return e},Tn={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];return 20===e.type&&"none"===e.value?null:Mn(t,1).map(([A,t])=>({counter:A,increment:t}))}},kn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>0===t.length?[]:Mn(t,0).filter(([A])=>"none"!==A).map(([A,t])=>({counter:A,reset:t}))},On={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:(A,t)=>t.filter(GA).map(A=>Fn(0,A))},Rn={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];if(20===e.type&&"none"===e.value)return null;const r=[],n=t.filter(JA);if(n.length%2!=0)return null;for(let A=0;A<n.length;A+=2)r.push({open:n[A].value,close:n[A+1].value});return r}},Vn=(A,t,e)=>{if(!A)return"";const r=A[Math.min(t,A.length-1)];return r?e?r.open:r.close:""},Nn={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:255,offsetX:lt,offsetY:lt,blur:lt,spread:lt,inset:!1};let r=0;for(let n=0;n<t.length;n++){const s=t[n];WA(s,"inset")?e.inset=!0:st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:2===r?e.blur=s:e.spread=s,r++):e.color=Jt(A,s)}return e})},Gn={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[];return t.filter(XA).forEach(A=>{switch(A.value){case"stroke":e.push(1);break;case"fill":e.push(0);break;case"markers":e.push(2)}}),[0,1,2].forEach(A=>{-1===e.indexOf(A)&&e.push(A)}),e}},Pn={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Xn={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0},Jn={name:"-webkit-line-clamp",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?0:17===t.type?Math.max(0,Math.floor(t.number)):0},Wn={name:"object-fit",initialValue:"fill",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Yn(t.value),0)},Yn=A=>{switch(A){case"contain":return 2;case"cover":return 4;case"none":return 8;case"scale-down":return 16}return 0},Zn={name:"text-overflow",initialValue:"clip",prefix:!1,type:2,parse:(A,t)=>"ellipsis"===t?1:0},zn={name:"image-rendering",initialValue:"auto",prefix:!1,type:2,parse:(A,t)=>{switch(t.toLowerCase()){case"crisp-edges":case"-webkit-crisp-edges":case"-moz-crisp-edges":return 1;case"pixelated":case"-webkit-optimize-contrast":return 2;case"smooth":case"high-quality":return 3;default:return 0}}},_n={NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"},qn=new Set(Object.values(_n)),jn={name:"mix-blend-mode",initialValue:"normal",type:2,prefix:!1,parse:(A,t)=>qn.has(t)?t:_n.NORMAL},$n={name:"filter",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>{if(1===t.length&&20===t[0].type&&"none"===t[0].value)return null;const e=[];for(const A of t)if(18===A.type){const t=A,r=As(t.values);switch(t.name){case"blur":e.push(`blur(${r}px)`);break;case"brightness":case"contrast":case"invert":case"opacity":case"saturate":case"sepia":e.push(`${t.name}(${r})`);break;case"grayscale":e.push(`grayscale(${r})`);break;case"hue-rotate":e.push(`hue-rotate(${r}deg)`);break;case"drop-shadow":e.push(`drop-shadow(${r})`)}}return e.length>0?e.join(" "):null}},As=A=>{const t=[];for(const e of A)31!==e.type&&(15===e.type?t.push(`${e.number}${e.unit}`):17===e.type?t.push(`${e.number}`):16===e.type?t.push(`${e.number}%`):20===e.type?t.push(e.value):5===e.type&&t.push(`#${e.value}`));return t.join(" ")},ts={name:"font-variant-ligatures",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 1;case"common-ligatures":return 2;case"no-common-ligatures":return 3;case"discretionary-ligatures":return 4;case"no-discretionary-ligatures":return 5;case"historical-ligatures":return 6;case"no-historical-ligatures":return 7;case"contextual":return 8;case"no-contextual":return 9;default:return 0}}},es={name:"zoom",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>16===t.type?Math.max(0,t.number/100):17===t.type?Math.max(0,t.number):1},rs={name:"object-position",initialValue:"50% 50%",prefix:!1,type:1,parse:(A,t)=>{const e=[];let r=0;for(;r<t.length&&e.length<2;){const A=t[r];if(XA(A))switch(A.value){case"left":case"top":e.push(lt);break;case"center":e.push(gt);break;case"right":case"bottom":e.push(ht)}else ot(A)&&e.push(A);r++}for(;e.length<2;)e.push(gt);return[e[0],e[1]]}},ns=new Set(Object.values({NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"})),ss={name:"background-blend-mode",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=t.filter(ZA);for(const A of r)XA(A)&&ns.has(A.value)&&e.push(A.value);return e.length>0?e:["normal"]}},os={name:"border-image-source",initialValue:"none",prefix:!1,type:1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return null;const e=t.filter(A=>ZA(A)&&er(A));return 0===e.length?null:tr(A,e[0])}},is={name:"border-image-slice",initialValue:"100%",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];let n=!1,s="percent";for(const A of e)XA(A)&&"fill"===A.value?n=!0:17===A.type?(r.push(A.number),s="number"):16===A.type&&(r.push(A.number),s="percent");const[o,i,a,c]=(A=>{const t=[...A];return 1===t.length?t.push(t[0],t[0],t[0]):2===t.length?t.push(t[0],t[1]):3===t.length&&t.push(t[1]),t.slice(0,4)})(r.length>0?r:[100]);return{top:o,right:i,bottom:a,left:c,fill:n,unit:s}}},as=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},cs={name:"border-image-repeat",initialValue:"stretch",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];for(const A of e)XA(A)&&r.push(as(A.value));const n=r[0]??0;return{horizontal:n,vertical:r[1]??n}}},Bs={name:"box-decoration-break",initialValue:"slice",prefix:!1,type:2,parse:(A,t)=>"clone"===t?1:0};var ls=class{constructor(A){this.styles=A}get topColor(){return this.styles.borderTopColor}get rightColor(){return this.styles.borderRightColor}get bottomColor(){return this.styles.borderBottomColor}get leftColor(){return this.styles.borderLeftColor}get topStyle(){return this.styles.borderTopStyle}get rightStyle(){return this.styles.borderRightStyle}get bottomStyle(){return this.styles.borderBottomStyle}get leftStyle(){return this.styles.borderLeftStyle}get topWidth(){return this.styles.borderTopWidth}get rightWidth(){return this.styles.borderRightWidth}get bottomWidth(){return this.styles.borderBottomWidth}get leftWidth(){return this.styles.borderLeftWidth}get topLeftRadius(){return this.styles.borderTopLeftRadius}get topRightRadius(){return this.styles.borderTopRightRadius}get bottomRightRadius(){return this.styles.borderBottomRightRadius}get bottomLeftRadius(){return this.styles.borderBottomLeftRadius}get imageSource(){return this.styles.borderImageSource}get imageSlice(){return this.styles.borderImageSlice}get imageRepeat(){return this.styles.borderImageRepeat}get boxShadow(){return this.styles.boxShadow}},gs=class{constructor(A){this.styles=A}get color(){return this.styles.backgroundColor}get image(){return this.styles.backgroundImage}get clip(){return this.styles.backgroundClip}get origin(){return this.styles.backgroundOrigin}get position(){return this.styles.backgroundPosition}get repeat(){return this.styles.backgroundRepeat}get size(){return this.styles.backgroundSize}get blendMode(){return this.styles.backgroundBlendMode}},hs=class{constructor(A){this.styles=A}get family(){return this.styles.fontFamily}get size(){return this.styles.fontSize}get style(){return this.styles.fontStyle}get variant(){return this.styles.fontVariant}get weight(){return this.styles.fontWeight}get ligatures(){return this.styles.fontVariantLigatures}get color(){return this.styles.color}get letterSpacing(){return this.styles.letterSpacing}get lineHeight(){return this.styles.lineHeight}get textAlign(){return this.styles.textAlign}get textTransform(){return this.styles.textTransform}get textOverflow(){return this.styles.textOverflow}get textShadow(){return this.styles.textShadow}get textDecorationColor(){return this.styles.textDecorationColor}get textDecorationLine(){return this.styles.textDecorationLine}get textDecorationStyle(){return this.styles.textDecorationStyle}get textDecorationThickness(){return this.styles.textDecorationThickness}get textUnderlineOffset(){return this.styles.textUnderlineOffset}get wordBreak(){return this.styles.wordBreak}get lineBreak(){return this.styles.lineBreak}get overflowWrap(){return this.styles.overflowWrap}get writingMode(){return this.styles.writingMode}get direction(){return this.styles.direction}get webkitTextStrokeColor(){return this.styles.webkitTextStrokeColor}get webkitTextStrokeWidth(){return this.styles.webkitTextStrokeWidth}get webkitLineClamp(){return this.styles.webkitLineClamp}get paintOrder(){return this.styles.paintOrder}},ds=class{constructor(A){this.styles=A}get display(){return this.styles.display}get position(){return this.styles.position}get float(){return this.styles.float}get zIndex(){return this.styles.zIndex}get marginTop(){return this.styles.marginTop}get marginRight(){return this.styles.marginRight}get marginBottom(){return this.styles.marginBottom}get marginLeft(){return this.styles.marginLeft}get paddingTop(){return this.styles.paddingTop}get paddingRight(){return this.styles.paddingRight}get paddingBottom(){return this.styles.paddingBottom}get paddingLeft(){return this.styles.paddingLeft}get overflowX(){return this.styles.overflowX}get overflowY(){return this.styles.overflowY}get opacity(){return this.styles.opacity}get visibility(){return this.styles.visibility}get transform(){return this.styles.transform}get transformOrigin(){return this.styles.transformOrigin}get rotate(){return this.styles.rotate}get zoom(){return this.styles.zoom}get clipPath(){return this.styles.clipPath}get mixBlendMode(){return this.styles.mixBlendMode}get filter(){return this.styles.filter}get imageRendering(){return this.styles.imageRendering}get objectFit(){return this.styles.objectFit}get objectPosition(){return this.styles.objectPosition}get boxDecorationBreak(){return this.styles.boxDecorationBreak}get listStyleImage(){return this.styles.listStyleImage}get listStylePosition(){return this.styles.listStylePosition}get listStyleType(){return this.styles.listStyleType}get animationDuration(){return this.styles.animationDuration}isVisible(){return this.styles.isVisible()}isTransparent(){return this.styles.isTransparent()}isTransformed(){return this.styles.isTransformed()}isPositioned(){return this.styles.isPositioned()}isPositionedWithZIndex(){return this.styles.isPositionedWithZIndex()}isFloating(){return this.styles.isFloating()}isInlineLevel(){return this.styles.isInlineLevel()}},ws=class A{get border(){return this._border??(this._border=new ls(this))}get background(){return this._background??(this._background=new gs(this))}get font(){return this._font??(this._font=new hs(this))}get layout(){return this._layout??(this._layout=new ds(this))}static{this.standardProps=[["animationDuration",On,"animationDuration"],["backgroundClip",Se,"backgroundClip"],["backgroundColor",De,"backgroundColor"],["backgroundImage",nr,"backgroundImage"],["backgroundOrigin",sr,"backgroundOrigin"],["backgroundPosition",or,"backgroundPosition"],["backgroundRepeat",ir,"backgroundRepeat"],["backgroundSize",cr,"backgroundSize"],["borderTopColor",gr,"borderTopColor"],["borderRightColor",hr,"borderRightColor"],["borderBottomColor",dr,"borderBottomColor"],["borderLeftColor",wr,"borderLeftColor"],["borderTopLeftRadius",Qr,"borderTopLeftRadius"],["borderTopRightRadius",pr,"borderTopRightRadius"],["borderBottomRightRadius",Cr,"borderBottomRightRadius"],["borderBottomLeftRadius",Ur,"borderBottomLeftRadius"],["borderTopStyle",Fr,"borderTopStyle"],["borderRightStyle",mr,"borderRightStyle"],["borderBottomStyle",yr,"borderBottomStyle"],["borderLeftStyle",Ir,"borderLeftStyle"],["borderTopWidth",Er,"borderTopWidth"],["borderRightWidth",br,"borderRightWidth"],["borderBottomWidth",xr,"borderBottomWidth"],["borderLeftWidth",vr,"borderLeftWidth"],["boxShadow",Nn,"boxShadow"],["clipPath",Dr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",xn,"fontFamily"],["fontSize",vn,"fontSize"],["fontStyle",Sn,"fontStyle"],["fontVariant",Ln,"fontVariant"],["fontWeight",Kn,"fontWeight"],["letterSpacing",Vr,"letterSpacing"],["lineBreak",Nr,"lineBreak"],["lineHeight",Gr,"lineHeight"],["listStyleImage",Xr,"listStyleImage"],["listStylePosition",Jr,"listStylePosition"],["listStyleType",ue,"listStyleType"],["marginTop",Yr,"marginTop"],["marginRight",Zr,"marginRight"],["marginBottom",zr,"marginBottom"],["marginLeft",_r,"marginLeft"],["opacity",mn,"opacity"],["overflowWrap",jr,"overflowWrap"],["paddingTop",An,"paddingTop"],["paddingRight",tn,"paddingRight"],["paddingBottom",en,"paddingBottom"],["paddingLeft",rn,"paddingLeft"],["paintOrder",Gn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",Hn,"textDecorationStyle"],["textDecorationThickness",En,"textDecorationThickness"],["textUnderlineOffset",bn,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Zn,"textOverflow"],["transform",cn,"transform"],["transformOrigin",hn,"transformOrigin"],["rotate",dn,"rotate"],["visibility",wn,"visibility"],["webkitTextStrokeColor",Pn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Xn,"webkitTextStrokeWidth"],["webkitLineClamp",Jn,"webkitLineClamp"],["wordBreak",un,"wordBreak"],["whiteSpace",Qn,"whiteSpace"],["writingMode",Un,"writingMode"],["zIndex",fn,"zIndex"],["objectFit",Wn,"objectFit"],["imageRendering",zn,"imageRendering"],["mixBlendMode",jn,"mixBlendMode"],["filter",$n,"filter"],["fontVariantLigatures",ts,"fontVariantLigatures"],["zoom",es,"zoom"],["objectPosition",rs,"objectPosition"],["backgroundBlendMode",ss,"backgroundBlendMode"],["borderImageSource",os,"borderImageSource"],["borderImageSlice",is,"borderImageSlice"],["borderImageRepeat",cs,"borderImageRepeat"],["boxDecorationBreak",Bs,"boxDecorationBreak"]]}constructor(t,e){const r=A.standardProps;if("none"===e.display){this.display=0;for(const[A,e]of r)"display"!==A&&(this[A]=Cs(t,e,void 0));this.float=Cs(t,Rr,void 0),this.textDecorationColor=Cs(t,yn,void 0),this.textDecorationLine=Cs(t,In,void 0);const A=Cs(t,qr,void 0);return this.overflowX=A[0],void(this.overflowY=A[A.length>1?1:0])}for(const[A,n,s]of r)this[A]=Cs(t,n,e[s]);this.float=Cs(t,Rr,e.cssFloat),this.textDecorationColor=Cs(t,yn,e.textDecorationColor??e.color),this.textDecorationLine=Cs(t,In,e.textDecorationLine??e.textDecoration);const n=Cs(t,qr,e.overflow);this.overflowX=n[0],this.overflowY=n[n.length>1?1:0]}isVisible(){return this.display>0&&this.opacity>0&&0===this.visibility}isTransparent(){return Ft(this.backgroundColor)}isTransformed(){return null!==this.transform||null!==this.rotate}isPositioned(){return 0!==this.position}isPositionedWithZIndex(){return this.isPositioned()&&!this.zIndex.auto}isFloating(){return 0!==this.float}isInlineLevel(){return Qe(this.display,4)||Qe(this.display,33554432)||Qe(this.display,268435456)||Qe(this.display,536870912)||Qe(this.display,67108864)||Qe(this.display,134217728)}},us=class{constructor(A,t){this.content=Cs(A,Dn,t.content),this.quotes=Cs(A,Rn,t.quotes)}},Qs=class{constructor(A,t){this.counterIncrement=Cs(A,Tn,t.counterIncrement),this.counterReset=Cs(A,kn,t.counterReset)}};const ps=new Map,Cs=(A,t,e)=>{let r=null!=e?e.toString():t.initialValue;""===r.trim()&&(r=t.initialValue);let n=ps.get(t);if(n){const A=n.get(r);if(void 0!==A)return n.delete(r),n.set(r,A),A}const s=VA.get();s.write(r);const o=new NA(s.read());VA.release(s);const i=(()=>{switch(t.type){case 2:{const e=o.parseComponentValue();return t.parse(A,XA(e)?e.value:t.initialValue)}case 0:return t.parse(A,o.parseComponentValue());case 1:return t.parse(A,o.parseComponentValues());case 4:return o.parseComponentValue();case 3:switch(t.format){case"angle":return pt(0,o.parseComponentValue());case"color":return Jt(A,o.parseComponentValue());case"image":return tr(A,o.parseComponentValue());case"length":{const A=o.parseComponentValue();return st(A)?A:lt}case"length-percentage":{const A=o.parseComponentValue();return ot(A)?A:lt}case"time":return Fn(0,o.parseComponentValue())}}})();if(n||(n=new Map,ps.set(t,n)),!(t.skipCache||3===t.type&&"image"===t.format)){if(n.size>=200){const A=n.keys().next().value;n.delete(A)}n.set(r,i)}return i},Us=(A,t)=>{const e=(A=>{if("function"!=typeof A.getAttribute)return 0;switch(A.getAttribute("data-html2canvas-debug")){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}})(A);return 1===e||t===e};var fs=class{constructor(A,t,e){this.cloneNodeFn=A,this.options=t,this.context=e}appendChildNode(A,t,e){this.safeAppendClonedChild(A,t,e)}cloneChildNodes(A,t,e){A.shadowRoot&&t.shadowRoot?(this.cloneShadowDOMChildren(A.shadowRoot,t.shadowRoot,e),this.cloneLightDOMChildren(A,t,e)):A.shadowRoot&&!t.shadowRoot?this.cloneShadowDOMAsLightDOM(A.shadowRoot,t,e):this.cloneLightDOMChildren(A,t,e)}shouldCloneChild(A){return!(Ae(A)&&(t=A,"SCRIPT"===t.tagName||A.hasAttribute("data-html2canvas-ignore")||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(A)));var t}shouldCloneStyleElement(A){return!this.options.copyStyles||!Ae(A)||!Be(A)}safeAppendClonedChild(A,t,e){this.shouldCloneChild(t)&&this.shouldCloneStyleElement(t)&&A.appendChild(this.cloneNodeFn(t,e))}cloneAssignedNodes(A,t,e){A.forEach(A=>{this.safeAppendClonedChild(t,A,e)})}cloneSlotFallbackContent(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.safeAppendClonedChild(t,r,e)}cloneSlotElement(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes)return this.context.logger.warn("HTMLSlotElement.assignedNodes is not available",A),void this.cloneSlotFallbackContent(A,t,e);const n=r.assignedNodes();if(!n||!Array.isArray(n))return this.context.logger.warn("assignedNodes() did not return a valid array",A),void this.cloneSlotFallbackContent(A,t,e);n.length>0?this.cloneAssignedNodes(n,t,e):this.cloneSlotFallbackContent(A,t,e)}cloneShadowDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElement(r,t,e):this.safeAppendClonedChild(t,r,e)}cloneLightDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneSlotElementAsLightDOM(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e);return}const n=r.assignedNodes();if(n&&Array.isArray(n)&&n.length>0)n.forEach(A=>this.appendChildNode(t,A,e));else for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneShadowDOMAsLightDOM(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElementAsLightDOM(r,t,e):this.appendChildNode(t,r,e)}},Fs=class{constructor(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new pe,this.quoteDepth=0,this.slotCloner=new fs((A,t)=>this.cloneNode(A,t),{ignoreElements:e.ignoreElements,copyStyles:e.copyStyles??!0},A),!t.ownerDocument)throw new Error("Cloned element does not have an owner document");if(!this.options.iframeContainer){const A=(A=>{let t=A;for(;t;){if(t.parentNode&&t.parentNode.host)return t.parentNode;const A=t.getRootNode();if(A&&A!==t.ownerDocument&&A.host)return A;t=t.parentNode}return null})(t);A&&(this.options.iframeContainer=A)}this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}toIFrame(A,t){const e=ms(A,t,this.options.iframeContainer);if(!e.contentWindow)throw new Error("Unable to find iframe window");const r=A.defaultView.pageXOffset,n=A.defaultView.pageYOffset,s=e.contentWindow,o=s.document,i=Hs(e).then(async()=>{this.scrolledElements.forEach(Ks),s&&(s.scrollTo(t.left,t.top),!/AppleWebKit/g.test(navigator.userAgent)||s.scrollY===t.top&&s.scrollX===t.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(s.scrollX-t.left,s.scrollY-t.top,0,0)));const A=this.options.onclone,r=this.clonedReferenceElement;if(void 0===r)throw new Error(`Error finding the ${this.referenceElement.nodeName} in the cloned document`);return o.fonts&&o.fonts.ready&&await o.fonts.ready,/(AppleWebKit)/g.test(navigator.userAgent)&&await Is(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const c=xs(document.doctype)+"<html></html>";try{const A=this.referenceElement.ownerDocument?.defaultView,t=A&&A.trustedTypes;let e=t?.getPolicy?.("html2canvas-pro");!e&&t&&(e=t.createPolicy("html2canvas-pro",{createHTML:A=>A}));const r=e?e.createHTML(c):c;o.write(r)}catch(A){o.write(c)}vs(this.referenceElement.ownerDocument,r,n),o.close();const B=o.adoptNode(this.documentElement);return ks(B,a),o.replaceChild(B,o.documentElement),i}createElementClone(A){if(Us(A,2),oe(A))return this.createCanvasClone(A);if(ie(A))return this.createVideoClone(A);if(Be(A))return this.createStyleClone(A);const t=A.cloneNode(!1);return ae(t)&&(ae(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),"lazy"===t.loading&&(t.loading="eager")),de(t)&&!ee(t)?this.createCustomElementClone(A,t):t}createCustomElementClone(A,t){const e=document.createElement("div");e.className=t.className,bs(t.style,e);const r=t.attributes;for(let A=0;A<r.length;A++){const t=r[A];"class"!==t.name&&"style"!==t.name&&e.setAttribute(t.name,t.value)}if(A.shadowRoot)try{e.attachShadow({mode:"open"})}catch(A){this.context.logger.error("Failed to attach shadow root to custom element clone:",A)}return e}createStyleClone(A){try{const t=A.sheet;if(t&&t.cssRules){const e=[].slice.call(t.cssRules,0).reduce((A,t)=>t&&"string"==typeof t.cssText?A+t.cssText:A,""),r=A.cloneNode(!1);return r.textContent=e,this.options.cspNonce&&(r.nonce=this.options.cspNonce),r}}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}const t=A.cloneNode(!1);return this.options.cspNonce&&(t.nonce=this.options.cspNonce),t}createCanvasClone(A){if(this.options.inlineImages&&A.ownerDocument){const t=A.ownerDocument.createElement("img");try{return t.src=A.toDataURL(),t}catch(t){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",A)}}const t=A.cloneNode(!1);try{t.width=A.width,t.height=A.height;const e=A.getContext("2d"),r=t.getContext("2d",{willReadFrequently:!0});if(r)if(!this.options.allowTaint&&e)r.putImageData(e.getImageData(0,0,A.width,A.height),0,0);else{const t=A.getContext("webgl2")??A.getContext("webgl");t&&!1===t.getContextAttributes()?.preserveDrawingBuffer&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",A),r.drawImage(A,0,0)}return t}catch(t){this.context.logger.info("Unable to clone canvas as it is tainted",A)}return t}createVideoClone(A){const t=A.ownerDocument.createElement("canvas");t.width=A.offsetWidth,t.height=A.offsetHeight;const e=t.getContext("2d");try{return e&&(e.drawImage(A,0,0,t.width,t.height),this.options.allowTaint||e.getImageData(0,0,t.width,t.height)),t}catch(t){this.context.logger.info("Unable to clone video as it is tainted",A)}const r=A.ownerDocument.createElement("canvas");return r.width=A.offsetWidth,r.height=A.offsetHeight,r}appendChildNode(A,t,e){this.slotCloner.appendChildNode(A,t,e)}cloneChildNodes(A,t,e){this.slotCloner.cloneChildNodes(A,t,e)}cloneNode(A,t){if(te(A))return document.createTextNode(A.data);if(!A.ownerDocument)return A.cloneNode(!1);const e=A.ownerDocument.defaultView;if(e&&Ae(A)&&(re(A)||ee(A))){const n=this.createElementClone(A);n.style.transitionProperty="none";const s=e.getComputedStyle(A),o=!ee(r=A)&&!we.has(r.tagName);this.referenceElement===A&&re(n)&&(this.clonedReferenceElement=n),se(n)&&Ms(n,this.options.cspNonce);const i=this.counters.parse(new Qs(this.context,s));if(o){const t=e.getComputedStyle(A,":before"),r=this.resolvePseudoContent(A,n,t,0);r&&n.insertBefore(r,n.firstChild);const s=e.getComputedStyle(A,":after"),o=this.resolvePseudoContent(A,n,s,1);o&&n.appendChild(o)}return de(A)&&(t=!0),ie(A)||this.cloneChildNodes(A,n,t),this.counters.pop(i),(s&&(this.options.copyStyles||ee(A))&&!ce(A)||t)&&bs(s,n),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([n,A.scrollLeft,A.scrollTop]),(le(A)||ge(A))&&(le(n)||ge(n))&&(n.value=A.value),n}var r;return A.cloneNode(!1)}resolvePseudoContent(A,t,e,r){if(!e)return;const n=e.content,s=t.ownerDocument;if(!s||!n||"none"===n||"-moz-alt-content"===n||"none"===e.display)return;this.counters.parse(new Qs(this.context,e));const o=new us(this.context,e),i=s.createElement("html2canvaspseudoelement");bs(e,i),o.content.forEach(t=>{if(0===t.type)i.appendChild(s.createTextNode(t.value));else if(22===t.type){const A=s.createElement("img");A.src=t.value,A.style.opacity="1",i.appendChild(A)}else if(18===t.type){if("attr"===t.name){const e=t.values.filter(XA);e.length&&i.appendChild(s.createTextNode(A.getAttribute(e[0].value)||""))}else if("counter"===t.name){const[A,e]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValue(A.value),r=e&&XA(e)?ue.parse(this.context,e.value):3;i.appendChild(s.createTextNode(Le(t,r,!1)))}}else if("counters"===t.name){const[A,e,r]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValues(A.value),n=r&&XA(r)?ue.parse(this.context,r.value):3,o=e&&0===e.type?e.value:"",a=t.map(A=>Le(A,n,!1)).join(o);i.appendChild(s.createTextNode(a))}}}else if(20===t.type)switch(t.value){case"open-quote":i.appendChild(s.createTextNode(Vn(o.quotes,this.quoteDepth++,!0)));break;case"close-quote":i.appendChild(s.createTextNode(Vn(o.quotes,--this.quoteDepth,!1)));break;default:i.appendChild(s.createTextNode(t.value))}}),i.className=`${Ls} ${Ss}`;const a=0===r?` ${Ls}`:` ${Ss}`;return ee(t)?t.className.baseValue+=a:t.className+=a,i}static destroy(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)}};const ms=(A,t,e)=>{const r=A.createElement("iframe");return r.className="html2canvas-container",r.style.visibility="hidden",r.style.position="fixed",r.style.left="-10000px",r.style.top="0px",r.style.border="0",r.width=t.width.toString(),r.height=t.height.toString(),r.scrolling="no",r.setAttribute("data-html2canvas-ignore","true"),(e||A.body).appendChild(r),r},ys=A=>new Promise(t=>{A.complete?t():A.src?(A.onload=t,A.onerror=t):t()}),Is=A=>Promise.all([].slice.call(A.images,0).map(ys)),Hs=A=>new Promise((t,e)=>{const r=A.contentWindow;if(!r)return e("No window assigned for iframe");const n=r.document;r.onload=A.onload=()=>{r.onload=A.onload=null;let e=0;const s=setInterval(()=>{e++,(n.body.childNodes.length>0&&"complete"===n.readyState||e>=600)&&(clearInterval(s),t(A))},50)}}),Es=["all","d","content"],bs=(A,t)=>{const e=[];for(let t=A.length-1;t>=0;t--){const r=A.item(t);if(-1===Es.indexOf(r)&&!r.startsWith("--")){const t=A.getPropertyValue(r);if(t){const n=A.getPropertyPriority(r);e.push(n?`${r}:${t} !${n}`:`${r}:${t}`)}}}return e.length>0&&(t.style.cssText=e.join(";")+";"),t},xs=A=>{let t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=" "+A.internalSubset.replace(/"/g,"&quot;").replace(/>/g,"&gt;")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,"&quot;")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,"&quot;")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,"&quot;")+'"'),t+=">"),t},vs=(A,t,e)=>{A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},Ks=([A,t,e])=>{A.scrollLeft=t,A.scrollTop=e},Ls="___html2canvas___pseudoelement_before",Ss="___html2canvas___pseudoelement_after",Ds='{\n content: "" !important;\n display: none !important;\n}',Ms=(A,t)=>{Ts(A,`.${Ls}:before${Ds}\n .${Ss}:after${Ds}`,t)},Ts=(A,t,e)=>{const r=A.ownerDocument;if(r){const n=r.createElement("style");n.textContent=t,e&&(n.nonce=e),A.appendChild(n)}},ks=(A,t)=>{const e=A.ownerDocument.createElement("base");e.href=t;const r=A.getElementsByTagName("head").item(0);r?.insertBefore(e,r?.firstChild??null)};for(var Os=class{static normalizeElement(A,t){const e={};return re(A)?(t.animationDuration.some(A=>A>0)&&(e.animationDuration=A.style.animationDuration,A.style.animationDuration="0s"),null!==t.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)"),null!==t.rotate&&(e.rotate=A.style.rotate,A.style.rotate="0deg",void 0===e.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)")),e):e}static restoreElement(A,t){re(A)&&(void 0!==t.animationDuration&&(A.style.animationDuration=t.animationDuration),void 0!==t.transform&&(A.style.transform=t.transform),void 0!==t.rotate&&(A.style.rotate=t.rotate))}},Rs=class{constructor(A,t,e={}){if(this.context=A,this.textNodes=[],this.elements=[],this.createsStackingContext=!1,this.createsRealStackingContext=!1,this.isListOwner=!1,this.debugRender=!1,Us(t,3),this.styles=new ws(A,A.config.window.getComputedStyle(t,null)),!1!==e.normalizeDom&&re(t)&&(this.originalStyles=Os.normalizeElement(t,this.styles),this.originalElement=t),this.bounds=s(this.context,t),"FIELDSET"===t.tagName){const A=t.querySelector(":scope > legend");if(A){const t=s(this.context,A);this.legendBounds=t;const e=t.top+t.height/2-this.styles.borderTopWidth/2;this.bounds=new n(this.bounds.left,e,this.bounds.width,this.bounds.height-(e-this.bounds.top))}}Us(t,4)&&(this.debugRender=!0)}restore(){this.originalStyles&&this.originalElement&&(Os.restoreElement(this.originalElement,this.originalStyles),this.originalStyles=void 0,this.originalElement=void 0)}restoreTree(){this.restore();for(const A of this.elements)A.restoreTree()}},Vs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Ns=0;Ns<64;Ns++)Vs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Ns)]=Ns;for(var Gs=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),Ps=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),Xs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Js=0;Js<64;Js++)Xs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Js)]=Js;var Ws=8,Ys=9,Zs=11,zs=12,_s=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},qs=(()=>{var A,t,e,r=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),B=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=Vs[A.charCodeAt(t)],r=Vs[A.charCodeAt(t+1)],n=Vs[A.charCodeAt(t+2)],s=Vs[A.charCodeAt(t+3)],B[a++]=e<<2|r>>4,B[a++]=(15&r)<<4|n>>2,B[a++]=(3&n)<<6|63&s;return c})("AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),n=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(r):new Uint32Array(r),s=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(r):new Uint16Array(r),o=Gs(s,12,n[4]/2),i=2===n[5]?Gs(s,(24+n[4])/2):(A=n,t=Math.ceil((24+n[4])/4),A.slice?A.slice(t,e):new Uint32Array(Array.prototype.slice.call(A,t,e)));return new Ps(n[0],n[1],n[2],n[3],o,i)})(),js="×",$s=A=>qs.get(A),Ao=(A,t,e)=>{var r=e-2,n=t[r],s=t[e-1],o=t[e];if(2===s&&3===o)return js;if(2===s||3===s||4===s)return"÷";if(2===o||3===o||4===o)return"÷";if(s===Ws&&-1!==[Ws,Ys,Zs,zs].indexOf(o))return js;if(!(s!==Zs&&s!==Ys||o!==Ys&&10!==o))return js;if((s===zs||10===s)&&10===o)return js;if(13===o||5===o)return js;if(7===o)return js;if(1===s)return js;if(13===s&&14===o){for(;5===n;)n=t[--r];if(14===n)return js}if(15===s&&15===o){for(var i=0;15===n;)i++,n=t[--r];if(i%2==0)return js}return"÷"};const to=A=>0===A[0]&&255===A[1]&&0===A[2]&&255===A[3],eo=(A,t,e,r,n)=>{const s="http://www.w3.org/2000/svg",o=document.createElementNS(s,"svg"),i=document.createElementNS(s,"foreignObject");return o.setAttributeNS(null,"width",A.toString()),o.setAttributeNS(null,"height",t.toString()),i.setAttributeNS(null,"width","100%"),i.setAttributeNS(null,"height","100%"),i.setAttributeNS(null,"x",e.toString()),i.setAttributeNS(null,"y",r.toString()),i.setAttributeNS(null,"externalResourcesRequired","true"),o.appendChild(i),i.appendChild(n),o},ro=A=>new Promise((t,e)=>{const r=new Image;r.onload=()=>t(r),r.onerror=e,r.src=`data:image/svg+xml;charset=utf-8,${encodeURIComponent((new XMLSerializer).serializeToString(A))}`}),no={get SUPPORT_RANGE_BOUNDS(){const A=(A=>{if(A.createRange){const t=A.createRange();if(t.getBoundingClientRect){const e=A.createElement("boundtest");e.style.height="123px",e.style.display="block",A.body.appendChild(e),t.selectNode(e);const r=t.getBoundingClientRect(),n=Math.round(r.height);if(A.body.removeChild(e),123===n)return!0}}return!1})(document);return Object.defineProperty(no,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){const A=no.SUPPORT_RANGE_BOUNDS&&(A=>{const t=A.createElement("boundtest");t.style.width="50px",t.style.display="block",t.style.fontSize="12px",t.style.letterSpacing="0px",t.style.wordSpacing="0px",A.body.appendChild(t);const e=A.createRange();t.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const c=n.every((A,t)=>{e.setStart(r,s),e.setEnd(r,s+A.length);const n=e.getBoundingClientRect();s+=A.length;const o=n.x>a.x||n.y>a.y;return a=n,0===t||o});return A.body.removeChild(t),c})(document);return Object.defineProperty(no,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){const A=(A=>{const t=new Image,e=A.createElement("canvas"),r=e.getContext("2d");if(!r)return!1;t.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(t,0,0),e.toDataURL()}catch(A){return!1}return!0})(document);return Object.defineProperty(no,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){const A="function"==typeof Array.from&&"function"==typeof window.fetch?(A=>{const t=A.createElement("canvas"),e=100;t.width=e,t.height=e;const r=t.getContext("2d");if(!r)return Promise.reject(new Error("Failed to get 2D rendering context"));r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,e,e);const n=new Image,s=t.toDataURL();n.src=s;const o=eo(e,e,0,0,n);return r.fillStyle="red",r.fillRect(0,0,e,e),ro(o).then(t=>{r.drawImage(t,0,0);const n=r.getImageData(0,0,e,e).data;r.fillStyle="red",r.fillRect(0,0,e,e);const o=A.createElement("div");return o.style.backgroundImage=`url(${s})`,o.style.height="100px",to(n)?ro(eo(e,e,0,0,o)):Promise.reject(new Error("ForeignObject rendering not supported"))}).then(A=>(r.drawImage(A,0,0),to(r.getImageData(0,0,e,e).data))).catch(()=>!1)})(document):Promise.resolve(!1);return Object.defineProperty(no,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){const A=void 0!==(new Image).crossOrigin;return Object.defineProperty(no,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){const A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(no,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){const A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(no,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){const A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(no,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}};var so=class{constructor(A,t){this.text=A,this.bounds=t}};const oo=(A,t,e)=>{const r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");const n=r.createRange();return n.setStart(A,t),n.setEnd(A,t+e),n},io=A=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(t.segment(A)).map(A=>A.segment)}return(A=>{for(var t,e=(A=>{var t=(A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t})(A),e=t.length,r=0,n=0,s=t.map($s);return{next:()=>{if(r>=e)return{done:!0,value:null};for(var A=js;r<e&&(A=Ao(0,s,++r))===js;);if(A!==js||r===e){var o=_s.apply(null,t.slice(n,r));return n=r,{value:o,done:!1}}return{done:!0,value:null}}}})(A),r=[];!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r})(A)},ao=[32,160,4961,65792,65793,4153,4241],co=(A,t)=>{const e=((A,t)=>{var e=o(A),r=((A,t)=>{t||(t={lineBreak:"normal",wordBreak:"normal"});var e=((A,t)=>{void 0===t&&(t="strict");var e=[],r=[],n=[];return A.forEach((A,s)=>{var o=q.get(A);if(o>50?(n.push(!0),o-=50):n.push(!1),-1!==["normal","auto","loose"].indexOf(t)&&-1!==[8208,8211,12316,12448].indexOf(A))return r.push(s),e.push(16);if(4===o||11===o){if(0===s)return r.push(s),e.push(O);var i=e[s-1];return-1===eA.indexOf(i)?(r.push(r[s-1]),e.push(i)):(r.push(s),e.push(O))}return r.push(s),31===o?e.push("strict"===t?K:P):o===Y||29===o?e.push(O):43===o?e.push(A>=131072&&A<=196605||A>=196608&&A<=262141?P:O):void e.push(o)}),[r,e,n]})(A,t.lineBreak),r=e[0],n=e[1],s=e[2];"break-all"!==t.wordBreak&&"break-word"!==t.wordBreak||(n=n.map(A=>-1!==[D,O,Y].indexOf(A)?P:A));var o="keep-all"===t.wordBreak?s.map((t,e)=>t&&A[e]>=19968&&A[e]<=40959):void 0;return[r,n,o]})(e,t),n=r[0],s=r[1],i=r[2],a=e.length,c=0,B=0;return{next:()=>{if(B>=a)return{done:!0,value:null};for(var A=z;B<a&&(A=iA(e,s,n,++B,i))===z;);if(A!==z||B===a){var t=new aA(e,A,c,B);return c=B,{value:t,done:!1}}return{done:!0,value:null}}}})(A,{lineBreak:t.lineBreak,wordBreak:"break-word"===t.overflowWrap?"break-word":t.wordBreak}),r=[];let n;for(;!(n=e.next()).done;)if(n.value){const A=o(n.value.slice());let t="";A.forEach(A=>{-1===ao.indexOf(A)?t+=i(A):(t.length&&r.push(t),r.push(i(A)),t="")}),t.length&&r.push(t)}return r};var Bo=class{constructor(A,t,e){this.text=lo(t.data,e.textTransform),this.text.length!==t.data.length&&(t.data=this.text),this.textBounds=((A,t,e,r)=>{const o=((A,t)=>pn(t.writingMode)||0!==t.letterSpacing?io(A):((A,t)=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(A=>A.segment)}return co(A,t)})(A,t))(this.text,e),i=[];let a=0;return o.forEach(t=>{if(e.textDecorationLine.length||t.trim().length>0)if(no.SUPPORT_RANGE_BOUNDS){const e=oo(r,a,t.length).getClientRects();if(e.length>1){const e=io(t);let s=0;e.forEach(t=>{i.push(new so(t,n.fromDOMRectList(A,oo(r,s+a,t.length).getClientRects()))),s+=t.length})}else i.push(new so(t,n.fromDOMRectList(A,e)))}else{const e=r.splitText(t.length);i.push(new so(t,((A,t)=>{const e=t.ownerDocument;if(e){const r=e.createElement("html2canvaswrapper");r.appendChild(t.cloneNode(!0));const n=t.parentNode;if(n){n.replaceChild(r,t);const e=s(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),e}}return n.EMPTY})(A,r))),r=e}else no.SUPPORT_RANGE_BOUNDS||(r=r.splitText(t.length));a+=t.length}),i})(A,0,e,t)}};const lo=(A,t)=>{switch(t){case 1:return A.toLowerCase();case 3:return A.replace(go,ho);case 2:return A.toUpperCase();default:return A}},go=/(^|\s|:|-|\(|\))([a-z])/g,ho=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var wo=class extends Rs{constructor(A,t){super(A,t),this.src=t.currentSrc||t.src,this.intrinsicWidth=t.naturalWidth,this.intrinsicHeight=t.naturalHeight,this.context.cache.addImage(this.src)}},uo=class extends Rs{constructor(A,t){super(A,t),this.canvas=t,this.intrinsicWidth=t.width,this.intrinsicHeight=t.height}},Qo=class extends Rs{constructor(A,t){super(A,t);const e=new XMLSerializer,r=s(A,t);t.setAttribute("width",`${r.width}px`),t.setAttribute("height",`${r.height}px`),this.svg=`data:image/svg+xml,${encodeURIComponent(e.serializeToString(t))}`,this.intrinsicWidth=t.width.baseVal.value,this.intrinsicHeight=t.height.baseVal.value,this.context.cache.addImage(this.svg)}},po=class extends Rs{constructor(A,t){super(A,t),this.value=t.value}},Co=class extends Rs{constructor(A,t){super(A,t),this.start=t.start,this.reversed="boolean"==typeof t.reversed&&!0===t.reversed}};const Uo=[{type:15,flags:0,unit:"px",number:3}],fo=[{type:16,flags:0,number:50}],Fo=707406591;var mo=class extends Rs{constructor(A,t){var e,r;switch(super(A,t),this.type=t.type.toLowerCase(),this.checked=t.checked,this.value=(A=>{const t="password"===A.type?new Array(A.value.length+1).join("•"):A.value;return 0===t.length?A.placeholder||"":t})(t),this.isPlaceholder=0===(e=t).value.length&&!!e.placeholder,"checkbox"!==this.type&&"radio"!==this.type||(this.styles.backgroundColor=3739148031,this.styles.borderTopColor=this.styles.borderRightColor=this.styles.borderBottomColor=this.styles.borderLeftColor=2779096575,this.styles.borderTopWidth=this.styles.borderRightWidth=this.styles.borderBottomWidth=this.styles.borderLeftWidth=1,this.styles.borderTopStyle=this.styles.borderRightStyle=this.styles.borderBottomStyle=this.styles.borderLeftStyle=1,this.styles.backgroundClip=[0],this.styles.backgroundOrigin=[0],this.bounds=(r=this.bounds).width>r.height?new n(r.left+(r.width-r.height)/2,r.top,r.height,r.height):r.width<r.height?new n(r.left,r.top+(r.height-r.width)/2,r.width,r.width):r),this.type){case"checkbox":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=Uo;break;case"radio":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=fo}}},yo=class extends Rs{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},Io=class extends Rs{constructor(A,t){super(A,t),this.value=t.value}},Ho=class extends Rs{constructor(A,t,e){super(A,t),this.src=t.src,this.width=parseInt(t.width,10)||0,this.height=parseInt(t.height,10)||0,this.backgroundColor=this.styles.backgroundColor,this.parseTreeFn=e;try{if(t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement&&this.parseTreeFn){this.tree=this.parseTreeFn(A,t.contentWindow.document.documentElement);const e=t.contentWindow.document.documentElement?jt(A,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):$t.TRANSPARENT,r=t.contentWindow.document.body?jt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):$t.TRANSPARENT;this.backgroundColor=Ft(e)?Ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Eo=["OL","UL","MENU"],bo=(A,t,e,r)=>{for(let n,s=t.firstChild;s;s=n)n=s.nextSibling,xo(A,s,e,r)},xo=(A,t,e,r)=>{if(te(t)&&t.data.length>0)e.textNodes.push(new Bo(A,t,e.styles));else if(Ae(t))if(he(t)&&t.assignedNodes)t.assignedNodes().forEach(t=>xo(A,t,e,r));else{const n=vo(A,t);n.styles.isVisible()&&(Lo(t,n,r)?n.createsRealStackingContext=!0:So(n.styles)&&(n.createsStackingContext=!0),-1!==Eo.indexOf(t.tagName)&&(n.isListOwner=!0),e.elements.push(n),t.shadowRoot?bo(A,t.shadowRoot,n,r):le(t)||ne(t)||ge(t)||bo(A,t,n,r))}},vo=(A,t)=>ae(t)?new wo(A,t):oe(t)?new uo(A,t):ne(t)?new Qo(A,t):"LI"===t.tagName?new po(A,t):"OL"===t.tagName?new Co(A,t):(A=>"INPUT"===A.tagName)(t)?new mo(A,t):ge(t)?new yo(A,t):le(t)?new Io(A,t):ce(t)?new Ho(A,t,Ko):new Rs(A,t),Ko=(A,t)=>{const e=vo(A,t);return e.createsRealStackingContext=!0,bo(A,t,e,e),e},Lo=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),So=A=>!(!A.isPositioned()&&!A.isFloating())||Qe(A.display,268435456)||Qe(A.display,33554432)||Qe(A.display,536870912)||Qe(A.display,134217728),Do=(A,t)=>A.length===t.length&&A.some((A,e)=>A===t[e]);var Mo=class A{constructor(A,t){this.type=0,this.x=A,this.y=t}add(t,e){return new A(this.x+t,this.y+e)}};const To=(A,t,e)=>new Mo(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e);var ko=class A{constructor(A,t,e,r){this.type=1,this.start=A,this.startControl=t,this.endControl=e,this.end=r}subdivide(t,e){const r=To(this.start,this.startControl,t),n=To(this.startControl,this.endControl,t),s=To(this.endControl,this.end,t),o=To(r,n,t),i=To(n,s,t),a=To(o,i,t);return e?new A(this.start,r,o,a):new A(a,i,s,this.end)}add(t,e){return new A(this.start.add(t,e),this.startControl.add(t,e),this.endControl.add(t,e),this.end.add(t,e))}reverse(){return new A(this.end,this.endControl,this.startControl,this.start)}};const Oo=A=>1===A.type;var Ro=class{constructor(A){const t=A.styles,e=A.bounds;let[r,n]=dt(t.borderTopLeftRadius,e.width,e.height),[s,o]=dt(t.borderTopRightRadius,e.width,e.height),[i,a]=dt(t.borderBottomRightRadius,e.width,e.height),[c,B]=dt(t.borderBottomLeftRadius,e.width,e.height);const l=[];l.push((r+s)/e.width),l.push((c+i)/e.width),l.push((n+B)/e.height),l.push((o+a)/e.height);const g=Math.max(...l);g>1&&(r/=g,n/=g,s/=g,o/=g,i/=g,a/=g,c/=g,B/=g);const h=e.width-s,d=e.height-a,w=e.width-i,u=e.height-B,Q=t.borderTopWidth,p=t.borderRightWidth,C=t.borderBottomWidth,U=t.borderLeftWidth,f=wt(t.paddingTop,A.bounds.width),F=wt(t.paddingRight,A.bounds.width),m=wt(t.paddingBottom,A.bounds.width),y=wt(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||n>0?Vo(e.left+U/3,e.top+Q/3,r-U/3,n-Q/3,0):new Mo(e.left+U/3,e.top+Q/3),this.topRightBorderDoubleOuterBox=r>0||n>0?Vo(e.left+h,e.top+Q/3,s-p/3,o-Q/3,1):new Mo(e.left+e.width-p/3,e.top+Q/3),this.bottomRightBorderDoubleOuterBox=i>0||a>0?Vo(e.left+w,e.top+d,i-p/3,a-C/3,2):new Mo(e.left+e.width-p/3,e.top+e.height-C/3),this.bottomLeftBorderDoubleOuterBox=c>0||B>0?Vo(e.left+U/3,e.top+u,c-U/3,B-C/3,3):new Mo(e.left+U/3,e.top+e.height-C/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?Vo(e.left+2*U/3,e.top+2*Q/3,r-2*U/3,n-2*Q/3,0):new Mo(e.left+2*U/3,e.top+2*Q/3),this.topRightBorderDoubleInnerBox=r>0||n>0?Vo(e.left+h,e.top+2*Q/3,s-2*p/3,o-2*Q/3,1):new Mo(e.left+e.width-2*p/3,e.top+2*Q/3),this.bottomRightBorderDoubleInnerBox=i>0||a>0?Vo(e.left+w,e.top+d,i-2*p/3,a-2*C/3,2):new Mo(e.left+e.width-2*p/3,e.top+e.height-2*C/3),this.bottomLeftBorderDoubleInnerBox=c>0||B>0?Vo(e.left+2*U/3,e.top+u,c-2*U/3,B-2*C/3,3):new Mo(e.left+2*U/3,e.top+e.height-2*C/3),this.topLeftBorderStroke=r>0||n>0?Vo(e.left+U/2,e.top+Q/2,r-U/2,n-Q/2,0):new Mo(e.left+U/2,e.top+Q/2),this.topRightBorderStroke=r>0||n>0?Vo(e.left+h,e.top+Q/2,s-p/2,o-Q/2,1):new Mo(e.left+e.width-p/2,e.top+Q/2),this.bottomRightBorderStroke=i>0||a>0?Vo(e.left+w,e.top+d,i-p/2,a-C/2,2):new Mo(e.left+e.width-p/2,e.top+e.height-C/2),this.bottomLeftBorderStroke=c>0||B>0?Vo(e.left+U/2,e.top+u,c-U/2,B-C/2,3):new Mo(e.left+U/2,e.top+e.height-C/2),this.topLeftBorderBox=r>0||n>0?Vo(e.left,e.top,r,n,0):new Mo(e.left,e.top),this.topRightBorderBox=s>0||o>0?Vo(e.left+h,e.top,s,o,1):new Mo(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?Vo(e.left+w,e.top+d,i,a,2):new Mo(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=c>0||B>0?Vo(e.left,e.top+u,c,B,3):new Mo(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?Vo(e.left+U,e.top+Q,Math.max(0,r-U),Math.max(0,n-Q),0):new Mo(e.left+U,e.top+Q),this.topRightPaddingBox=s>0||o>0?Vo(e.left+Math.min(h,e.width-p),e.top+Q,h>e.width+p?0:Math.max(0,s-p),Math.max(0,o-Q),1):new Mo(e.left+e.width-p,e.top+Q),this.bottomRightPaddingBox=i>0||a>0?Vo(e.left+Math.min(w,e.width-U),e.top+Math.min(d,e.height-C),Math.max(0,i-p),Math.max(0,a-C),2):new Mo(e.left+e.width-p,e.top+e.height-C),this.bottomLeftPaddingBox=c>0||B>0?Vo(e.left+U,e.top+Math.min(u,e.height-C),Math.max(0,c-U),Math.max(0,B-C),3):new Mo(e.left+U,e.top+e.height-C),this.topLeftContentBox=r>0||n>0?Vo(e.left+U+y,e.top+Q+f,Math.max(0,r-(U+y)),Math.max(0,n-(Q+f)),0):new Mo(e.left+U+y,e.top+Q+f),this.topRightContentBox=s>0||o>0?Vo(e.left+Math.min(h,e.width+U+y),e.top+Q+f,h>e.width+U+y?0:s-U+y,o-(Q+f),1):new Mo(e.left+e.width-(p+F),e.top+Q+f),this.bottomRightContentBox=i>0||a>0?Vo(e.left+Math.min(w,e.width-(U+y)),e.top+Math.min(d,e.height+Q+f),Math.max(0,i-(p+F)),a-(C+m),2):new Mo(e.left+e.width-(p+F),e.top+e.height-(C+m)),this.bottomLeftContentBox=c>0||B>0?Vo(e.left+U+y,e.top+u,Math.max(0,c-(U+y)),B-(C+m),3):new Mo(e.left+U+y,e.top+e.height-(C+m))}};const Vo=(A,t,e,r,n)=>{const s=(Math.sqrt(2)-1)/3*4,o=e*s,i=r*s,a=A+e,c=t+r;switch(n){case 0:return new ko(new Mo(A,c),new Mo(A,c-i),new Mo(a-o,t),new Mo(a,t));case 1:return new ko(new Mo(A,t),new Mo(A+o,t),new Mo(a,c-i),new Mo(a,c));case 2:return new ko(new Mo(a,t),new Mo(a,t+i),new Mo(A+o,c),new Mo(A,c));default:return new ko(new Mo(a,c),new Mo(a-o,c),new Mo(A,t+i),new Mo(A,t))}},No=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],Go=A=>[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox];var Po=class{constructor(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6}},Xo=class{constructor(A,t){this.path=A,this.target=t,this.type=1}},Jo=class{constructor(A){this.opacity=A,this.type=2,this.target=6}},Wo=class{constructor(A){this.applyClip=A,this.type=3,this.target=6}};const Yo={[_n.NORMAL]:"source-over",[_n.MULTIPLY]:"multiply",[_n.SCREEN]:"screen",[_n.OVERLAY]:"overlay",[_n.DARKEN]:"darken",[_n.LIGHTEN]:"lighten",[_n.COLOR_DODGE]:"color-dodge",[_n.COLOR_BURN]:"color-burn",[_n.HARD_LIGHT]:"hard-light",[_n.SOFT_LIGHT]:"soft-light",[_n.DIFFERENCE]:"difference",[_n.EXCLUSION]:"exclusion",[_n.HUE]:"hue",[_n.SATURATION]:"saturation",[_n.COLOR]:"color",[_n.LUMINOSITY]:"luminosity"};var Zo=class{constructor(A){this.mixBlendMode=A,this.type=4,this.target=6,this.compositeOperation=Yo[A]}},zo=class A{constructor(t){this.type=5,this.target=6;const e=A.parseDropShadow(t);this.shadow=e.shadow,this.safeFilterString=e.safeFilterString}static parseDropShadow(t){if(!t)return{safeFilterString:""};const e=A.findDropShadows(t);if(0===e.length)return{safeFilterString:t};const r=A.parseDropShadowBody(e[0].body);let n="",s=0;for(const A of e)n+=t.slice(s,A.start),s=A.end;return n+=t.slice(s),{shadow:r,safeFilterString:n.replace(/\s+/g," ").trim()}}static findDropShadows(A){const t=[],e=/drop-shadow\(/gi;let r;for(;null!==(r=e.exec(A));){const e=r.index+12-1,n=r.index;let s=1,o=e+1;for(;o<A.length&&s>0;){const t=A[o];"("===t?s++:")"===t&&s--,o++}if(0!==s)break;const i=A.slice(e+1,o-1);t.push({body:i,start:n,end:o})}return t}static parseDropShadowBody(t){const e=A.tokenizeFilterArgs(t.trim()),r=[];let n;for(const t of e)A.isCSSLength(t)?r.push(parseFloat(t)):t&&(n=t);if(!(r.length<2||r.length>3))return{offsetX:r[0],offsetY:r[1],blur:r[2]??0,color:n??"rgba(0,0,0,1)"}}static tokenizeFilterArgs(A){const t=[];let e="",r=0;for(let n=0;n<A.length;n++){const s=A[n];"("===s?(r++,e+=s):")"===s?(r--,e+=s):/\s/.test(s)?r>0?e+=s:e&&(t.push(e),e=""):e+=s}return e&&t.push(e),t}static isCSSLength(A){return/^-?[\d.]+(px|em|rem|pt|cm|mm|in|pc|ex|ch|vw|vh|vmin|vmax|%)?$/i.test(A)}};const _o=A=>0===A.type,qo=A=>1===A.type,jo=A=>3===A.type;var $o=class{constructor(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}},Ai=class{constructor(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new Ro(this.container),this.container.styles.opacity<1&&this.effects.push(new Jo(this.container.styles.opacity)),null!==this.container.styles.rotate){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.rotate*Math.PI/180,n=Math.cos(r),s=Math.sin(r);this.effects.push(new Po(t,e,[n,s,-s,n,0,0]))}if(null!==this.container.styles.transform){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height);this.effects.push(new Po(t,e,this.container.styles.transform))}if(ti(this.container.styles)){const A=No(this.curves),t=Go(this.curves);Do(A,t)?this.effects.push(new Xo(A,6)):(this.effects.push(new Xo(A,2)),this.effects.push(new Xo(t,4)))}if(0!==this.container.styles.clipPath.type){const A=ri(this.container.styles.clipPath,this.container.bounds);A&&this.effects.push(A)}if(this.container.styles.mixBlendMode!==_n.NORMAL&&this.effects.push(new Zo(this.container.styles.mixBlendMode)),null!==this.container.styles.filter&&this.effects.push(new zo(this.container.styles.filter)),1!==this.container.styles.zoom){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.zoom;this.effects.push(new Po(t,e,[r,0,0,r,0,0]))}}getEffects(A){let t=-1===[2,3].indexOf(this.container.styles.position),e=this.parent;const r=this.effects.slice(0);for(;e;){const A=e.effects.filter(A=>!qo(A));if(t||0!==e.container.styles.position||!e.parent){if(t=-1===[2,3].indexOf(e.container.styles.position),ti(e.container.styles)){const A=No(e.curves),t=Go(e.curves);Do(A,t)||r.unshift(new Xo(t,6))}r.unshift(...A)}else r.unshift(...A);e=e.parent}return r.filter(t=>Qe(t.target,A))}};const ti=A=>0!==A.overflowX||0!==A.overflowY,ei=(A,t,e,r,n)=>"closest-side"===A?Math.min(t-e,r-t):"farthest-side"===A?Math.max(t-e,r-t):wt(A,n),ri=(A,t)=>{const{left:e,top:r,width:n,height:s}=t;switch(A.type){case 1:{const t=wt(A.left,n),o=wt(A.top,s),i=e+t,a=r+o,c=Math.max(0,n-t-wt(A.right,n)),B=Math.max(0,s-o-wt(A.bottom,s));return new Wo(A=>{A.beginPath(),A.rect(i,a,c,B),A.clip()})}case 2:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s);let i;return i="closest-side"===A.radius?Math.min(t-e,o-r,e+n-t,r+s-o):"farthest-side"===A.radius?Math.max(t-e,o-r,e+n-t,r+s-o):wt(A.radius,Math.sqrt(n*n+s*s)/Math.SQRT2),new Wo(A=>{A.beginPath(),A.arc(t,o,Math.max(0,i),0,2*Math.PI),A.clip()})}case 3:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s),i=ei(A.rx,t,e,e+n,n),a=ei(A.ry,o,r,r+s,s);return new Wo(A=>{A.beginPath(),A.ellipse(t,o,Math.max(0,i),Math.max(0,a),0,0,2*Math.PI),A.clip()})}case 4:{const t=A.points.map(([A,t])=>[e+wt(A,n),r+wt(t,s)]);return new Wo(A=>{if(A.beginPath(),t.length>0){A.moveTo(t[0][0],t[0][1]);for(let e=1;e<t.length;e++)A.lineTo(t[e][0],t[e][1]);A.closePath()}A.clip()})}case 5:{const{d:t}=A;let n=null;return new Wo(A=>{try{n||(n=new Path2D(t));const s=A.getTransform();A.translate(e,r),A.clip(n),A.setTransform(s)}catch(A){}})}default:return null}},ni=(A,t,e,r)=>{A.container.elements.forEach(n=>{const s=n.createsRealStackingContext,o=n.createsStackingContext,i=new Ai(n,A);Qe(n.styles.display,2048)&&r.push(i);const a=n.isListOwner?[]:r;if(s||o){const A=s||n.styles.isPositioned()?e:t,r=new $o(i);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){const t=n.styles.zIndex.order;if(t<0){let e=0;A.negativeZIndex.some((A,r)=>t>A.element.container.styles.zIndex.order?(e=r,!1):e>0),A.negativeZIndex.splice(e,0,r)}else if(t>0){let e=0;A.positiveZIndex.some((A,r)=>t>=A.element.container.styles.zIndex.order?(e=r+1,!1):e>0),A.positiveZIndex.splice(e,0,r)}else A.zeroOrAutoZIndexOrTransformedOrOpacity.push(r)}else n.styles.isFloating()?A.nonPositionedFloats.push(r):A.nonPositionedInlineLevel.push(r);ni(i,r,s?r:e,a)}else n.styles.isInlineLevel()?t.inlineLevel.push(i):t.nonInlineLevel.push(i),ni(i,t,e,a);n.isListOwner&&si(n,a)})},si=(A,t)=>{let e=A instanceof Co?A.start:1;const r=A instanceof Co&&A.reversed;for(let A=0;A<t.length;A++){const n=t[A];n.container instanceof po&&"number"==typeof n.container.value&&0!==n.container.value&&(e=n.container.value),n.listValue=Le(e,n.container.styles.listStyleType,!0),e+=r?-1:1}},oi=A=>{const t=A.styles;return A.bounds.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},ii=A=>{const t=A.styles,e=A.bounds,r=wt(t.paddingLeft,e.width),n=wt(t.paddingRight,e.width),s=wt(t.paddingTop,e.width),o=wt(t.paddingBottom,e.width);return e.add(r+t.borderLeftWidth,s+t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth+r+n),-(t.borderTopWidth+t.borderBottomWidth+s+o))},ai=(A,t,e)=>{const r=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundOrigin,t),A),n=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundClip,t),A),s=li(gi(A.styles.backgroundSize,t),e,r);let[o,i]=s;const a=dt(gi(A.styles.backgroundPosition,t),r.width-o,r.height-i),c=hi(gi(A.styles.backgroundRepeat,t),a,s,r,n),B=Math.round(r.left+a[0]),l=Math.round(r.top+a[1]);return o=Math.max(1,o),i=Math.max(1,i),[c,B,l,o,i]},ci=A=>XA(A)&&"auto"===A.value,Bi=A=>"number"==typeof A,li=(A,[t,e,r],n)=>{const[s,o]=A;if(!s)return[0,0];if(ot(s)&&o&&ot(o))return[wt(s,n.width),wt(o,n.height)];const i=Bi(r);if(XA(s)&&("contain"===s.value||"cover"===s.value))return Bi(r)?n.width/n.height<r!=("cover"===s.value)?[n.width,n.width/r]:[n.height*r,n.height]:[n.width,n.height];const a=Bi(t),c=Bi(e),B=a||c;if(ci(s)&&(!o||ci(o)))return a&&c?[t,e]:i||B?B&&i?[a?t:e*r,c?e:t/r]:[a?t:n.width,c?e:n.height]:[n.width,n.height];if(i){let A=0,t=0;return ot(s)?A=wt(s,n.width):ot(o)&&(t=wt(o,n.height)),ci(s)?A=t*r:o&&!ci(o)||(t=A/r),[A,t]}let l=null,g=null;if(ot(s)?l=wt(s,n.width):o&&ot(o)&&(g=wt(o,n.height)),null===l||o&&!ci(o)||(g=a&&c?l/t*e:n.height),null!==g&&ci(s)&&(l=a&&c?g/e*t:n.width),null!==l&&null!==g)return[l,g];throw new Error("Unable to calculate background-size for element")},gi=(A,t)=>{const e=A[t];return void 0===e?A[0]:e},hi=(A,[t,e],[r,n],s,o)=>{switch(A){case 2:return[new Mo(Math.round(s.left),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(n+s.top+e)),new Mo(Math.round(s.left),Math.round(n+s.top+e))];case 3:return[new Mo(Math.round(s.left+t),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.height+s.top)),new Mo(Math.round(s.left+t),Math.round(s.height+s.top))];case 1:return[new Mo(Math.round(s.left+t),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e+n)),new Mo(Math.round(s.left+t),Math.round(s.top+e+n))];default:return[new Mo(Math.round(o.left),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.height+o.top)),new Mo(Math.round(o.left),Math.round(o.height+o.top))]}};var di=class{constructor(A){this.ctx=A}render(A,t){this.ctx.fillStyle=mt(t.textDecorationColor||t.color);let e=1;"number"==typeof t.textDecorationThickness?e=t.textDecorationThickness:"from-font"===t.textDecorationThickness&&(e=Math.max(1,Math.floor(.05*t.fontSize.number)));let r=0;"number"==typeof t.textUnderlineOffset&&(r=t.textUnderlineOffset);const n=t.textDecorationStyle;t.textDecorationLine.forEach(t=>{let s=0;switch(t){case 1:s=A.top+A.height-e+r;break;case 2:s=A.top;break;case 3:s=A.top+(A.height/2-e/2);break;default:return}this.draw(A.left,s,A.width,e,n)})}draw(A,t,e,r,n){switch(n){case 0:default:this.ctx.fillRect(A,t,e,r);break;case 1:{const n=Math.max(1,r);this.ctx.fillRect(A,t,e,r),this.ctx.fillRect(A,t+r+n,e,r);break}case 2:this.drawPattern(A,t,e,r,[r,2*r]);break;case 3:this.drawPattern(A,t,e,r,[3*r,2*r]);break;case 4:this.drawWavy(A,t,e,r)}}drawPattern(A,t,e,r,n){this.ctx.save(),this.ctx.beginPath(),this.ctx.setLineDash(n),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle,this.ctx.moveTo(A,t+r/2),this.ctx.lineTo(A+e,t+r/2),this.ctx.stroke(),this.ctx.restore()}drawWavy(A,t,e,r){this.ctx.save(),this.ctx.beginPath(),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle;const n=2*r,s=4*r;let o=A;for(this.ctx.moveTo(o,t+r/2);o<A+e;){const i=Math.min(o+s/2,A+e);if(this.ctx.quadraticCurveTo(o+s/4,t+r/2-n,i,t+r/2),o=i,o<A+e){const i=Math.min(o+s/2,A+e);this.ctx.quadraticCurveTo(o+s/4,t+r/2+n,i,t+r/2),o=i}}this.ctx.stroke(),this.ctx.restore()}};const wi=(A,t)=>{const e=A.measureText("Mg"),r=e.fontBoundingBoxAscent,n=void 0===r||Number.isNaN(r)?e.actualBoundingBoxAscent:r;return void 0===n||Number.isNaN(n)?t:n},ui=["-apple-system","system-ui"],Qi=/[\u2E80-\u2FFF\u3000-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uAC00-\uD7AF\uF900-\uFAFF\uFF01-\uFFEF]/,pi=A=>Qi.test(A);var Ci=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new di(A.ctx)}cachedMeasureText(A,t){let e=this.glyphWidthCache;e||(e=new Map,this.glyphWidthCache=e);const r=A+t;let n=e.get(r);return void 0===n&&(n=this.ctx.measureText(A).width,e.set(r,n)),n}iterateLettersWithLetterSpacing(A,t,e,r,n){if(pn(r))return void this.iterateVerticalGlyphs(A,t,e,r,n);const s=io(A.text),o=A.bounds.top+e,i=this.ctx.font;let a=A.bounds.left;for(const A of s){if(pi(A)){const t=this.ctx.textBaseline;this.ctx.textBaseline="ideographic",n(A,a,o),this.ctx.textBaseline=t}else n(A,a,o);a+=this.cachedMeasureText(A,i)+t}}iterateVerticalGlyphs(A,t,e,r,n){const s=io(A.text),o=this.ctx.font,i=4===r?-Math.PI/2:Math.PI/2;let a=A.bounds.top;for(let c=0;c<s.length;){const B=s[c];if(!(Cn(r)||!pi(B)&&B.trim().length>0)){const r=this.ctx.textBaseline;pi(B)&&(this.ctx.textBaseline="ideographic"),n(B,A.bounds.left,a+e),this.ctx.textBaseline=r,a+=this.cachedMeasureText(B,o)+t,c++;continue}const l=c;for(;c<s.length;){const A=s[c];if(!Cn(r)&&!pi(A)&&0===A.trim().length)break;if(!(Cn(r)||!pi(A)&&A.trim().length>0))break;c++}this.ctx.save(),this.ctx.translate(A.bounds.left+e,a),this.ctx.rotate(i);let g=0;for(let A=l;A<c;A++)n(s[A],0,g),g+=this.cachedMeasureText(s[A],o)+t;this.ctx.restore(),a+=g}}renderTextWithLetterSpacing(A,t,e,r=0){this.renderFillText(A,t,e,r)}canRenderWholeText(A,t){return 0===A&&!pn(t)}renderFillText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.fillText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.fillText(A,t,e)})}renderStrokeText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.strokeText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.strokeText(A,t,e)})}renderTextStrokeWithStyle(A,t,e){t.webkitTextStrokeWidth&&A.text.trim().length&&(this.ctx.strokeStyle=mt(t.webkitTextStrokeColor),this.ctx.lineWidth=t.webkitTextStrokeWidth,this.ctx.lineJoin=("undefined"!=typeof window?window:void 0)?.chrome?"miter":"round",this.renderStrokeText(A,t.letterSpacing,e,t.writingMode),this.ctx.strokeStyle="",this.ctx.lineWidth=0,this.ctx.lineJoin="miter")}renderTextFillWithShadows(A,t,e){this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode);const r=t.textShadow;r.length&&A.text.trim().length&&(r.slice(0).reverse().forEach(r=>{this.ctx.shadowColor=mt(r.color),this.ctx.shadowOffsetX=r.offsetX.number*this.options.scale,this.ctx.shadowOffsetY=r.offsetY.number*this.options.scale,this.ctx.shadowBlur=r.blur.number,this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode)}),this.ctx.shadowColor="",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0)}renderTextBoundWithPaintOrder(A,t,e,r){e.forEach(e=>{switch(e){case 0:this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,r,t.writingMode);break;case 1:this.renderTextStrokeWithStyle(A,t,r)}})}renderTextDecoration(A,t){this.decorationRenderer.render(A,t)}truncateTextWithEllipsis(A,t,e){const r=this.ctx.measureText("…").width,n=io(A);if(0===e){const A=A=>this.ctx.measureText(n.slice(0,A).join("")).width+r<=t;let e=0,s=n.length;for(;e<s;){const t=e+s+1>>1;A(t)?e=t:s=t-1}return n.slice(0,e).join("")+"…"}{const A=this.ctx.font;let s=r;const o=[];for(const r of n){const n=this.cachedMeasureText(r,A);if(s+n>t)break;o.push(r),s+=n+e}return o.join("")+"…"}}createFontStyle(A){const t=A.fontVariant.filter(A=>"normal"===A||"small-caps"===A).join(""),e=(A=>{const t=(()=>{if("undefined"==typeof navigator)return null;const A=navigator.userAgent,t=/iPhone|iPad|iPod/.test(A),e=/Macintosh/.test(A)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>1;if(!t&&!e)return null;for(const t of[/(?:iPhone|CPU(?:\siPhone)?)\sOS\s(\d+)[\._](\d+)/,/Version\/(\d+)\.(\d+)/]){const e=A.match(t);if(e&&e[1])return parseInt(e[1],10)}return null})();return null!==t&&t>=15&&t<17?A.map(A=>-1!==ui.indexOf(A)?'-apple-system, "Helvetica Neue", Arial, sans-serif':A):A})(A.fontFamily).join(", "),r=GA(A.fontSize)?`${A.fontSize.number}${A.fontSize.unit}`:`${A.fontSize.number}px`;return[[A.fontStyle,t,A.fontWeight,r,e].join(" "),e,r]}renderLineClampedText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=[];let i=[],a=A.textBounds[0].bounds.top;A.textBounds.forEach(A=>{Math.abs(A.bounds.top-a)>=.5*s?(i.length>0&&o.push(i),i=[A],a=A.bounds.top):i.push(A)}),i.length>0&&o.push(i);const c=t.webkitLineClamp;if(o.length<=c)return!1;for(let A=0;A<c-1;A++)o[A].forEach(A=>this.renderTextBoundWithPaintOrder(A,t,e,r));const B=o[c-1];if(B?.length&&n){const A=B.map(A=>A.text).join(""),s=B[0],o=new so(this.truncateTextWithEllipsis(A,n.width-(s.bounds.left-n.left),t.letterSpacing),s.bounds);for(const A of e)0===A?(this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(o,t.letterSpacing,r,t.writingMode)):1===A&&this.renderTextStrokeWithStyle(o,t,r)}return!0}renderEllipsisText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=A.textBounds[0].bounds.top;if(!A.textBounds.every(A=>Math.abs(A.bounds.top-o)<.5*s))return!1;let i=A.textBounds.map(A=>A.text).join("").replace(/\s+/g," ").trim();if(this.ctx.measureText(i).width<=n.width+1)return!1;const a=new so(this.truncateTextWithEllipsis(i,n.width,t.letterSpacing),A.textBounds[0].bounds);for(const A of e)0===A?this.renderTextFillWithShadows(a,t,r):1===A&&this.renderTextStrokeWithStyle(a,t,r);return!0}async renderTextNode(A,t,e){this.glyphWidthCache=null;const[r]=this.createFontStyle(t);this.ctx.font=r,this.ctx.direction=1===t.direction?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic";const n=t.paintOrder,s=wi(this.ctx,t.fontSize.number);t.webkitLineClamp>0&&2&t.display&&1===t.overflowY&&A.textBounds.length>0&&this.renderLineClampedText(A,t,n,s,e)||1===t.textOverflow&&e&&1===t.overflowX&&A.textBounds.length>0&&this.renderEllipsisText(A,t,n,s,e)||A.textBounds.forEach(A=>{n.forEach(e=>{0===e?(this.renderTextFillWithShadows(A,t,s),t.textDecorationLine.length&&this.renderTextDecoration(A.bounds,t)):1===e&&this.renderTextStrokeWithStyle(A,t,s)})})}};const Ui=(A,t)=>{t.forEach((t,e)=>{const r=Oo(t)?t.start:t;0===e?A.moveTo(r.x,r.y):A.lineTo(r.x,r.y),Oo(t)&&A.bezierCurveTo(t.startControl.x,t.startControl.y,t.endControl.x,t.endControl.y,t.end.x,t.end.y)})},fi=(A,t)=>{A.beginPath(),Ui(A,t),A.closePath()};var Fi=class{constructor(A){this.maxSize=A,this._map=new Map}get(A){if(!this._map.has(A))return;const t=this._map.get(A);return this._map.delete(A),this._map.set(A,t),t}set(A,t){if(this._map.has(A))this._map.delete(A);else if(this._map.size>=this.maxSize){const A=this._map.keys().next().value;void 0!==A&&this._map.delete(A)}this._map.set(A,t)}get size(){return this._map.size}clear(){this._map.clear()}},mi=class{constructor(A){this.patternCache=new Fi(50),this.ctx=A.ctx,this.context=A.context,this.canvas=A.canvas}async renderBackgroundImage(A){let t=A.styles.backgroundImage.length-1;const e=A.styles.backgroundBlendMode;let r=0;for(const n of A.styles.backgroundImage.slice(0).reverse()){if(r>0){const A=e[r]??e[0]??"normal";"normal"!==A&&(this.ctx.save(),this.ctx.globalCompositeOperation=A)}0===n.type?await this.renderBackgroundURLImage(A,n,t):je(n)?this.renderLinearGradient(A,n,t):Ar(n)?this.renderRepeatingLinearGradient(A,n,t):$e(n)&&this.renderRadialGradient(A,n,t),r>0&&"normal"!==(e[r]??e[0]??"normal")&&this.ctx.restore(),t--,r++}}async renderBackgroundURLImage(A,t,e){let r;const n=t.url;try{r=await this.context.cache.match(n)}catch(A){this.context.logger.error(`Error loading background-image ${n}`),this.context.onError?.(A instanceof Error?A:new Error(String(A)))}if(r){const t=isNaN(r.width)||0===r.width?1:r.width,s=isNaN(r.height)||0===r.height?1:r.height,[o,i,a,c,B]=ai(A,e,[t,s,t/s]),l=gi(A.styles.backgroundRepeat,e),g=1===l?"no-repeat":2===l?"repeat-x":3===l?"repeat-y":"repeat",h=`${n}|${Math.round(c)}x${Math.round(B)}|${A.styles.imageRendering}|${g}`;let d=this.patternCache.get(h);if(!d){const t=this.resizeImage(r,c,B,A.styles.imageRendering);d=this.ctx.createPattern(t,g),this.patternCache.set(h,d)}this.renderRepeat(o,d,i,a)}}renderRepeatingLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=Te(t.stops,a||1),d=h[0],w=h[h.length-1].stop-d.stop;if(w<=0)return void this.renderLinearGradient(A,t,e);const u=B-c,Q=g-l,p=w/(Math.sqrt(u*u+Q*Q)||1),C=c,U=l,f=c+u*p,F=l+Q*p,m=this.canvas.ownerDocument??document,y=`rlg|${t.angle}|${Math.round(w)}|${JSON.stringify(t.stops)}`;let I=this.patternCache.get(y);if(!I){const A=m.createElement("canvas"),t=Math.max(1,Math.ceil(w));A.width=t,A.height=t;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(C-n,U-s,f-n,F-s);h.forEach(A=>{r.addColorStop((A.stop-d.stop)/w,mt(A.color))}),e.fillStyle=r,e.fillRect(0,0,t,t),t>0&&(I=this.ctx.createPattern(A,"repeat"),this.patternCache.set(y,I))}I&&this.renderRepeat(r,I,n,s)}renderLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=`lg|${t.angle}|${Math.round(o)}x${Math.round(i)}|${JSON.stringify(t.stops)}`;let d=this.patternCache.get(h);if(!d){const A=(this.canvas.ownerDocument??document).createElement("canvas");A.width=o,A.height=i;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(c,l,B,g);Te(t.stops,a||1).forEach(A=>r.addColorStop(A.stop,mt(A.color))),e.fillStyle=r,e.fillRect(0,0,o,i),o>0&&i>0&&(d=this.ctx.createPattern(A,"repeat"),this.patternCache.set(h,d))}d&&this.renderRepeat(r,d,n,s)}renderRadialGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),a=0===t.position.length?[gt]:t.position,c=wt(a[0],o),B=wt(a[a.length-1],i);let[l,g]=((A,t,e,r,n)=>{let s=0,o=0;switch(A.size){case 0:0===A.shape?s=o=Math.min(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.min(Math.abs(t),Math.abs(t-r)),o=Math.min(Math.abs(e),Math.abs(e-n)));break;case 2:if(0===A.shape)s=o=Math.min(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.min(Math.abs(e),Math.abs(e-n))/Math.min(Math.abs(t),Math.abs(t-r)),[i,a]=Re(r,n,t,e,!0);s=Oe(i-t,(a-e)/A),o=A*s}break;case 1:0===A.shape?s=o=Math.max(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.max(Math.abs(t),Math.abs(t-r)),o=Math.max(Math.abs(e),Math.abs(e-n)));break;case 3:if(0===A.shape)s=o=Math.max(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.max(Math.abs(e),Math.abs(e-n))/Math.max(Math.abs(t),Math.abs(t-r)),[i,a]=Re(r,n,t,e,!1);s=Oe(i-t,(a-e)/A),o=A*s}}return Array.isArray(A.size)&&(s=wt(A.size[0],r),o=2===A.size.length?wt(A.size[1],n):s),[s,o]})(t,c,B,o,i);if(0!==l&&0!==g||(l=Math.max(l,.01),g=Math.max(g,.01)),l>0&&g>0){const A=`rg|${Math.round(c)}x${Math.round(B)}|${Math.round(l)}x${Math.round(g)}|${JSON.stringify(t.stops)}`;let e=this.patternCache.get(A);if(!e){const r=this.canvas.ownerDocument??document,n=Math.ceil(2*Math.max(l,g)),s=r.createElement("canvas");s.width=n,s.height=n;const o=s.getContext("2d");if(o){const r=Math.max(l,g),n=o.createRadialGradient(r,r,0,r,r,r);Te(t.stops,2*r).forEach(A=>n.addColorStop(A.stop,mt(A.color))),o.fillStyle=n,l!==g&&o.scale(1,g/l),o.fillRect(0,0,2*r,2*r),e=this.ctx.createPattern(s,"no-repeat"),this.patternCache.set(A,e)}}e&&(this.path(r),this.ctx.save(),this.ctx.clip(),this.ctx.translate(n+c-Math.max(l,g),s+B-Math.max(l,g)),this.ctx.fillStyle=e,this.ctx.fillRect(0,0,2*Math.max(l,g),2*Math.max(l,g)),this.ctx.restore())}}renderRepeat(A,t,e,r){this.path(A),this.ctx.fillStyle=t,this.ctx.translate(e,r),this.ctx.fill(),this.ctx.translate(-e,-r)}resizeImage(A,t,e,r){const n=(this.canvas.ownerDocument??document).createElement("canvas");n.width=Math.max(1,t),n.height=Math.max(1,e);const s=n.getContext("2d");return s?(2===r||1===r?(this.context.logger.debug("Disabling image smoothing for background image due to CSS image-rendering"),s.imageSmoothingEnabled=!1):3===r?(this.context.logger.debug("Enabling image smoothing for background image due to CSS image-rendering: smooth"),s.imageSmoothingEnabled=!0):s.imageSmoothingEnabled=this.ctx.imageSmoothingEnabled,this.ctx.imageSmoothingQuality&&(s.imageSmoothingQuality=this.ctx.imageSmoothingQuality),s.drawImage(A,0,0,A.width,A.height,0,0,t,e),n):A}path(A){fi(this.ctx,A)}};const yi=(A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Ii=(A,t)=>{const e=[];return Oo(A)?e.push(A.subdivide(.5,!1)):e.push(A),Oo(t)?e.push(t.subdivide(.5,!0)):e.push(t),e},Hi=(A,t,e,r)=>{const n=[];return Oo(A)?n.push(A.subdivide(.5,!1)):n.push(A),Oo(e)?n.push(e.subdivide(.5,!0)):n.push(e),Oo(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),Oo(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n};var Ei=class{constructor(A,t){this.ctx=A.ctx,this.pathCallbacks=t}async renderSolidBorder(A,t,e){this.pathCallbacks.path(yi(e,t)),this.ctx.fillStyle=mt(A),this.ctx.fill()}async renderDoubleBorder(A,t,e,r){if(t<3)return void await this.renderSolidBorder(A,e,r);const n=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return Hi(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}})(r,e);this.pathCallbacks.path(n),this.ctx.fillStyle=mt(A),this.ctx.fill();const s=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}})(r,e);this.pathCallbacks.path(s),this.ctx.fill()}async renderDashedDottedBorder(A,t,e,r,n){this.ctx.save();const s=((A,t)=>{switch(t){case 0:return Ii(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return Ii(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return Ii(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return Ii(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=yi(r,e);let i,a,c,B,l;2===n&&(this.pathCallbacks.path(o),this.ctx.clip()),Oo(o[0])?(i=o[0].start.x,a=o[0].start.y):(i=o[0].x,a=o[0].y),Oo(o[1])?(c=o[1].end.x,B=o[1].end.y):(c=o[1].x,B=o[1].y),l=0===e||2===e?Math.abs(i-c):Math.abs(a-B),this.ctx.beginPath(),this.pathCallbacks.formatPath(3===n?s:o.slice(0,2));let g=t<3?3*t:2*t,h=t<3?2*t:t;3===n&&(g=t,h=t);let d=!0;if(l<=2*g)d=!1;else if(l<=2*g+h){const A=l/(2*g+h);g*=A,h*=A}else{const A=Math.floor((l+h)/(g+h)),t=(l-A*g)/(A-1),e=(l-(A+1)*g)/A;h=e<=0||Math.abs(h-t)<Math.abs(h-e)?t:e}if(d&&this.ctx.setLineDash(3===n?[0,g+h]:[g,h]),3===n?(this.ctx.lineCap="round",this.ctx.lineWidth=t):this.ctx.lineWidth=2*t+1.1,this.ctx.strokeStyle=mt(A),this.ctx.stroke(),this.ctx.setLineDash([]),2===n){if(Oo(o[0])){const A=o[3],t=o[0];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}if(Oo(o[1])){const A=o[1],t=o[2];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}}this.ctx.restore()}},bi=class{constructor(A){this.ctx=A}renderBorderImage(A,t,e,r,n,s,o,i){const a=t.naturalWidth||t.width,c=t.naturalHeight||t.height;if(a<=0||c<=0)return;const B=Math.min("percent"===e.unit?e.top/100*c:Math.min(e.top,c),c),l=Math.min("percent"===e.unit?e.right/100*a:Math.min(e.right,a),a),g=Math.min("percent"===e.unit?e.bottom/100*c:Math.min(e.bottom,c),c),h=Math.min("percent"===e.unit?e.left/100*a:Math.min(e.left,a),a),{left:d,top:w,width:u,height:Q}=A;if(u<=0||Q<=0)return;const p=Math.min(n,Q),C=Math.min(s,u),U=Math.min(o,Q-p),f=Math.min(i,u-C);this.drawRegion(t,0,0,h,B,d,w,f,p),this.drawRegion(t,a-l,0,l,B,d+u-C,w,C,p),this.drawRegion(t,a-l,c-g,l,g,d+u-C,w+Q-U,C,U),this.drawRegion(t,0,c-g,h,g,d,w+Q-U,f,U);const F=[{sx:h,sy:0,sw:a-h-l,sh:B,dx:d+f,dy:w,dw:u-f-C,dh:p,repeat:r.horizontal},{sx:a-l,sy:B,sw:l,sh:c-B-g,dx:d+u-C,dy:w+p,dw:C,dh:Q-p-U,repeat:r.vertical},{sx:h,sy:c-g,sw:a-h-l,sh:g,dx:d+f,dy:w+Q-U,dw:u-f-C,dh:U,repeat:r.horizontal},{sx:0,sy:B,sw:h,sh:c-B-g,dx:d,dy:w+p,dw:f,dh:Q-p-U,repeat:r.vertical}];for(const A of F){if(A.sw<=0||A.sh<=0||A.dw<=0||A.dh<=0)continue;const e=A.dw>=A.dh;0===A.repeat?this.ctx.drawImage(t,A.sx,A.sy,A.sw,A.sh,A.dx,A.dy,A.dw,A.dh):1!==A.repeat&&2!==A.repeat||this.drawRepeatedEdge(t,A,e,2===A.repeat)}e.fill&&this.drawRegion(t,h,B,a-h-l,c-B-g,d+f,w+p,u-f-C,Q-p-U)}drawRegion(A,t,e,r,n,s,o,i,a){r>0&&n>0&&i>0&&a>0&&this.ctx.drawImage(A,t,e,r,n,s,o,i,a)}drawRepeatedEdge(A,t,e,r){const n=e?t.sw:t.sh,s=e?t.dw:t.dh;if(n<=0||s<=0)return;let o,i;r?(i=Math.max(1,Math.round(s/n)),o=s/i):(o=n,i=Math.ceil(s/o)),this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.dx,t.dy,t.dw,t.dh),this.ctx.clip();for(let r=0;r<i;r++){const n=r*o,i=Math.min(o,s-n);if(i<=0)break;e?this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx+n,t.dy,i,t.dh):this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx,t.dy+n,t.dw,i)}this.ctx.restore()}},xi=class{constructor(A,t){this.activeEffects=[],this.didSave=!1,this.saveAtDepth=-1,this.ctx=A.ctx,this.pathCallback=t}applyEffects(A){for(;this.activeEffects.length;)this.popEffect();this.didSave=!1,this.saveAtDepth=-1;const t=A=>_o(A)||qo(A)||jo(A),e=A.reduceRight((A,e,r)=>-1!==A?A:t(e)?r:-1,-1);for(let r=0;r<A.length;r++){const n=A[r];t(n)&&(this.didSave||(this.ctx.save(),this.didSave=!0),r===e&&(this.saveAtDepth=this.activeEffects.length)),this.applyEffect(n)}}applyEffect(A){_o(A)?(this.ctx.translate(A.offsetX,A.offsetY),this.ctx.transform(A.matrix[0],A.matrix[1],A.matrix[2],A.matrix[3],A.matrix[4],A.matrix[5]),this.ctx.translate(-A.offsetX,-A.offsetY)):qo(A)?(this.pathCallback.path(A.path),this.ctx.clip()):jo(A)?A.applyClip(this.ctx):(A=>2===A.type)(A)?this.ctx.globalAlpha*=A.opacity:(A=>4===A.type)(A)?this.ctx.globalCompositeOperation=A.compositeOperation:(A=>5===A.type)(A)&&(this.ctx.filter=A.safeFilterString||"none",A.shadow&&(this.ctx.shadowOffsetX=A.shadow.offsetX,this.ctx.shadowOffsetY=A.shadow.offsetY,this.ctx.shadowBlur=A.shadow.blur,this.ctx.shadowColor=A.shadow.color)),this.activeEffects.push(A)}popEffect(){0!==this.activeEffects.length&&(this.didSave&&this.activeEffects.length-1===this.saveAtDepth&&(this.ctx.restore(),this.didSave=!1,this.saveAtDepth=-1),this.activeEffects.pop(),this.didSave||0!==this.activeEffects.length||(this.ctx.globalAlpha=1,this.ctx.globalCompositeOperation="source-over",this.ctx.filter="none",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0,this.ctx.shadowColor="rgba(0, 0, 0, 0)"))}getActiveEffectCount(){return this.activeEffects.length}hasActiveEffects(){return this.activeEffects.length>0}};var vi=class A{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,t.canvas||(this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`),this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.ctx.textBaseline="bottom",void 0!==t.imageSmoothing&&(this.ctx.imageSmoothingEnabled=t.imageSmoothing),t.imageSmoothingQuality&&(this.ctx.imageSmoothingQuality=t.imageSmoothingQuality),this.backgroundRenderer=new mi({ctx:this.ctx,context:this.context,canvas:this.canvas,options:{width:t.width,height:t.height,scale:t.scale}}),this.borderRenderer=new Ei({ctx:this.ctx},{path:A=>this.path(A),formatPath:A=>this.formatPath(A)}),this.borderImageRenderer=new bi(this.ctx),this.effectsRenderer=new xi({ctx:this.ctx},{path:A=>this.path(A)}),this.textRenderer=new Ci({ctx:this.ctx,options:{scale:t.scale}}),this.context.logger.debug(`Canvas renderer initialized (${t.width}x${t.height}) with scale ${t.scale}`)}async renderStack(A){A.element.container.styles.isVisible()&&await this.renderStackContent(A)}async renderNode(A){A.container.styles.isVisible()&&(await this.renderNodeBackgroundAndBorders(A),await this.renderNodeContent(A))}renderReplacedElement(A,t,e){const r=e.naturalWidth||A.intrinsicWidth,n=e.naturalHeight||A.intrinsicHeight;if(e&&r>0&&n>0){const s=ii(A),o=Go(t);this.path(o),this.ctx.save(),this.ctx.clip();const{sx:i,sy:a,sw:c,sh:B,dx:l,dy:g,dw:h,dh:d}=((A,t,e,r,n)=>{let s=0,o=0,i=A,a=t,c=e.left,B=e.top,l=e.width,g=e.height;const h=l/g,d=i/a,w=n?wt(n[0],1):.5,u=n?wt(n[1],1):.5;return 2===r?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):4===r?d>h?(i=a*h,s+=(A-i)*w):(a=i/h,o+=(t-a)*u):8===r?(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a)):16===r&&((d>h?l:g*d)<(i>l?i:l)?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a))),{sx:s,sy:o,sw:i,sh:a,dx:c,dy:B,dw:l,dh:g}})(r,n,s,A.styles.objectFit,A.styles.objectPosition);this.ctx.drawImage(e,i,a,c,B,l,g,h,d),this.ctx.restore()}}async renderNodeContent(t){this.effectsRenderer.applyEffects(t.getEffects(4));const e=t.container,r=t.curves,s=e.styles,o=ii(e);for(const A of e.textNodes)await this.textRenderer.renderTextNode(A,s,o);await(async(t,e,r,n,s,o,i,a)=>{if(s instanceof wo)try{const A=await e.cache.match(s.src),r=t.imageSmoothingEnabled;2===i.imageRendering||1===i.imageRendering?t.imageSmoothingEnabled=!1:3===i.imageRendering&&(t.imageSmoothingEnabled=!0),a(s,o,A),t.imageSmoothingEnabled=r}catch(A){e.logger.error(`Error loading image ${s.src}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof uo&&a(s,o,s.canvas),s instanceof Qo)try{a(s,o,await e.cache.match(s.svg))}catch(A){e.logger.error(`Error loading svg ${s.svg.substring(0,255)}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof Ho&&s.tree){const n=await((t,e)=>new A(t,e))(e,{scale:r.scale,backgroundColor:s.backgroundColor,x:0,y:0,width:s.width,height:s.height}).render(s.tree);s.width&&s.height&&t.drawImage(n,0,0,s.width,s.height,s.bounds.left,s.bounds.top,s.bounds.width,s.bounds.height)}})(this.ctx,this.context,{scale:this.options.scale,backgroundColor:this.options.backgroundColor,x:this.options.x,y:this.options.y,width:this.options.width,height:this.options.height},0,e,r,s,(A,t,e)=>this.renderReplacedElement(A,t,e)),((A,t,e,r,s)=>{if(r instanceof mo){const t=Math.min(r.bounds.width,r.bounds.height);"checkbox"===r.type&&r.checked?(A.save(),e([new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t),new Mo(r.bounds.left+.16*t,r.bounds.top+.5549*t),new Mo(r.bounds.left+.27347*t,r.bounds.top+.44071*t),new Mo(r.bounds.left+.39694*t,r.bounds.top+.5649*t),new Mo(r.bounds.left+.72983*t,r.bounds.top+.23*t),new Mo(r.bounds.left+.84*t,r.bounds.top+.34085*t),new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t)]),A.fillStyle=mt(Fo),A.fill(),A.restore()):"radio"===r.type&&r.checked&&(A.save(),A.beginPath(),A.arc(r.bounds.left+t/2,r.bounds.top+t/2,t/4,0,2*Math.PI,!0),A.fillStyle=mt(Fo),A.fill(),A.restore())}if((A=>A instanceof Io||A instanceof yo||A instanceof mo&&"radio"!==A.type&&"checkbox"!==A.type)(r)&&r.value.length){const[o]=t.createFontStyle(s);A.font=o;const i=wi(A,wt(s.fontSize,0));A.fillStyle=mt(r instanceof mo&&r.isPlaceholder?1970632191:s.color),A.textBaseline="alphabetic",A.textAlign=(A=>{switch(A){case 1:return"center";case 2:return"right";default:return"left"}})(r.styles.textAlign);const a=ii(r);let c=0;switch(r.styles.textAlign){case 1:c+=a.width/2;break;case 2:c+=a.width}let B=0;if(r instanceof mo){const A=wt(s.fontSize,0);B=(a.height-A)/2}const l=a.add(c,B,0,0);A.save(),e([new Mo(a.left,a.top),new Mo(a.left+a.width,a.top),new Mo(a.left+a.width,a.top+a.height),new Mo(a.left,a.top+a.height)]),A.clip();const g=((A,t,e,r)=>{const n=[],s=t.split("\n");for(const t of s){if(r){n.push(t);continue}const s=t.split(/(\s+)/);let o="";for(const t of s){const r=o+t;A.measureText(r).width<=e||""===o?o=r:(n.push(o),o=t)}n.push(o)}return n})(A,r.value,a.width,"pre"===s.whiteSpace||"nowrap"===s.whiteSpace),h=wt(s.fontSize,0),d=Pr(s.lineHeight,h);g.forEach((e,r)=>{let o=l.left;const c=A.measureText(e).width;switch(s.textAlign){case 1:o+=(a.width-c)/2;break;case 2:o+=a.width-c}const B=new n(o,l.top+r*d,0,0);t.renderTextWithLetterSpacing(new so(e,B),s.letterSpacing,i,s.writingMode)}),A.restore(),A.textBaseline="alphabetic",A.textAlign="left"}})(this.ctx,this.textRenderer,this.path.bind(this),e,s),await(async(A,t,e,r,s,o)=>{if(Qe(s.styles.display,2048))if(null!==s.styles.listStyleImage){const e=s.styles.listStyleImage;if(0===e.type){const r=e.url;try{const e=await t.cache.match(r);A.drawImage(e,s.bounds.left-(e.width+10),s.bounds.top)}catch(A){t.logger.error(`Error loading list-style-image ${r}`),t.onError?.(A instanceof Error?A:new Error(String(A)))}}}else if(r.listValue&&-1!==s.styles.listStyleType){const[t]=e.createFontStyle(o);A.font=t,A.fillStyle=mt(o.color),A.textBaseline="middle",A.textAlign="right";const i=new n(s.bounds.left,s.bounds.top+wt(s.styles.paddingTop,s.bounds.width),s.bounds.width,Pr(o.lineHeight,o.fontSize.number)/2+1);e.renderTextWithLetterSpacing(new so(r.listValue,i),o.letterSpacing,Pr(o.lineHeight,o.fontSize.number)/2+2,o.writingMode),A.textBaseline="bottom",A.textAlign="left"}})(this.ctx,this.context,this.textRenderer,t,e,s)}async renderStackContent(A){const t=this.options.signal;await this.renderNodeBackgroundAndBorders(A.element);for(const e of A.negativeZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderNodeContent(A.element);for(const t of A.nonInlineLevel)await this.renderNode(t);for(const e of A.nonPositionedFloats){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.nonPositionedInlineLevel){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const t of A.inlineLevel)await this.renderNode(t);for(const e of A.zeroOrAutoZIndexOrTransformedOrOpacity){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.positiveZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}}mask(A){this.ctx.beginPath();const t=this.options.x,e=this.options.y;this.ctx.moveTo(t,e),this.ctx.lineTo(t+this.options.width,e),this.ctx.lineTo(t+this.options.width,e+this.options.height),this.ctx.lineTo(t,e+this.options.height),this.ctx.lineTo(t,e),this.formatPath(A.slice(0).reverse()),this.ctx.closePath()}path(A){fi(this.ctx,A)}formatPath(A){Ui(this.ctx,A)}async renderNodeBackgroundAndBorders(A){this.effectsRenderer.applyEffects(A.getEffects(2));const t=A.container.styles,e=!Ft(t.backgroundColor)||t.backgroundImage.length,r=Li(t),n=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],s=gi(t.backgroundClip,0),o=Ki(s,A.curves);if((e||t.boxShadow.length)&&(r&&A.container.textNodes.length>0?await this.renderTextClippedBackground(A):(this.ctx.save(),this.path(o),this.ctx.clip(),Ft(t.backgroundColor)||(this.ctx.fillStyle=mt(t.backgroundColor),this.ctx.fill()),await this.backgroundRenderer.renderBackgroundImage(A.container),this.ctx.restore()),t.boxShadow.slice(0).reverse().forEach(t=>{this.ctx.save();const e=No(A.curves),r=t.inset?0:1e4,n=(s=(t.inset?1:-1)*t.spread.number-r,o=(t.inset?1:-1)*t.spread.number,i=t.spread.number*(t.inset?-2:2),a=t.spread.number*(t.inset?-2:2),e.map((A,t)=>{switch(t){case 0:return A.add(s,o);case 1:return A.add(s+i,o);case 2:return A.add(s+i,o+a);case 3:return A.add(s,o+a)}return A}));var s,o,i,a;t.inset?(this.path(e),this.ctx.clip(),this.mask(n)):(this.mask(e),this.ctx.clip(),this.path(n)),this.ctx.shadowOffsetX=t.offsetX.number+r,this.ctx.shadowOffsetY=t.offsetY.number,this.ctx.shadowColor=mt(t.color),this.ctx.shadowBlur=t.blur.number,this.ctx.fillStyle=t.inset?mt(t.color):"rgba(0,0,0,1)",this.ctx.fill(),this.ctx.restore()})),t.borderImageSource){const e=t.borderImageSource;if(0===e.type){const r=e.url;try{const e=await this.context.cache.match(r);e&&this.borderImageRenderer.renderBorderImage(A.container.bounds,e,t.borderImageSlice,t.borderImageRepeat,Math.max(0,t.borderTopWidth),Math.max(0,t.borderRightWidth),Math.max(0,t.borderBottomWidth),Math.max(0,t.borderLeftWidth))}catch(A){this.context.logger.error(`Error loading border-image ${r}`)}}return}let i=0;for(const t of n){if(0!==t.style&&!Ft(t.color)&&t.width>0){const e=async()=>{2===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,2):3===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,3):4===t.style?await this.borderRenderer.renderDoubleBorder(t.color,t.width,i,A.curves):await this.borderRenderer.renderSolidBorder(t.color,i,A.curves)},r=A.container.legendBounds;if(0===i&&r){const t=A.container.bounds,n=r.left-t.left,s=r.left+r.width-t.left;n>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.left,t.top,n,t.height),this.ctx.clip(),await e(),this.ctx.restore());const o=t.left+s,i=t.width-s;i>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(o,t.top,i,t.height),this.ctx.clip(),await e(),this.ctx.restore())}else await e()}i++}}async render(A){this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height));const t=(A=>{const t=new Ai(A,null),e=new $o(t),r=[];return ni(t,e,e,r),si(t.container,r),e})(A);return await this.renderStack(t),this.effectsRenderer.applyEffects([]),this.canvas}async renderTextClippedBackground(A){const t=A.container,e=t.styles,r=t.bounds;if(r.width<=0||r.height<=0)return;const n=(this.canvas.ownerDocument??document).createElement("canvas"),s=Math.ceil(r.width),o=Math.ceil(r.height);n.width=s,n.height=o;const i=n.getContext("2d");if(!i)return;const[a]=this.textRenderer.createFontStyle(e);i.font=a,i.textBaseline="alphabetic",i.textAlign="left",i.direction=1===e.direction?"rtl":"ltr";const c=wi(i,e.fontSize.number),B=new mi({ctx:i,context:this.context,canvas:n,options:{width:s,height:o,scale:1}});Ft(e.backgroundColor)||(i.fillStyle=mt(e.backgroundColor),i.fillRect(0,0,s,o)),i.save(),i.translate(-r.left,-r.top),await B.renderBackgroundImage(t),i.restore(),i.globalCompositeOperation="destination-in",i.fillStyle="#000";const l=e.writingMode,g=e.letterSpacing;for(const A of t.textNodes)for(const t of A.textBounds){const A=t.bounds.left-r.left,e=t.bounds.top-r.top+c;g>0?this.renderTextMaskWithLetterSpacing(i,t,g,A,e,l):i.fillText(t.text,A,e)}this.ctx.drawImage(n,r.left,r.top)}renderTextMaskWithLetterSpacing(A,t,e,r,n,s){const o=io(t.text);let i=r;for(const a of o){if(pn(s))return void A.fillText(t.text,r,n);A.fillText(a,i,n),i+=A.measureText(a).width+e}}};const Ki=(A,t)=>{switch(A){case 0:return No(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return Go(t)}},Li=A=>A.backgroundClip.some(A=>3===A);var Si=class{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`,this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.context.logger.debug(`EXPERIMENTAL ForeignObject renderer initialized (${t.width}x${t.height} at ${t.x},${t.y}) with scale ${t.scale}`)}async render(A){if(this.options.signal?.aborted)throw new DOMException("The operation was aborted.","AbortError");const t=await ro(eo(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,A));return this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(t,-this.options.x*this.options.scale,-this.options.y*this.options.scale),this.canvas}},Di=class{static{this.instances={}}constructor({id:A,enabled:t}){this.id=A,this.enabled=t,this.start=Date.now()}debug(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug(this.id,`${this.getTime()}ms`,...A):this.info(...A))}getTime(){return Date.now()-this.start}info(...A){this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info(this.id,`${this.getTime()}ms`,...A)}warn(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn(this.id,`${this.getTime()}ms`,...A):this.info(...A))}error(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error(this.id,`${this.getTime()}ms`,...A):this.info(...A))}},Mi=class{constructor(A,t){if(this.context=A,this._options=t,this._cache=new Map,this._pendingOperations=new Map,this._deferMode=!1,this._collectedUrls=new Set,this.maxSize=t.maxCacheSize??100,this.maxSize<1)throw new Error("Cache maxSize must be at least 1");this.maxSize>1e4&&this.context.logger.warn(`Cache maxSize ${this.maxSize} is very large and may cause memory issues. Consider using a smaller value (recommended: 100-1000).`)}startDefer(){this._deferMode=!0}async preloadAll(A=10){this._deferMode=!1;const t=Array.from(this._collectedUrls);if(this._collectedUrls.clear(),0===t.length)return;const e=Math.max(1,Math.min(A,100));this.context.logger.debug(`Preloading ${t.length} image(s) with concurrency ${e}`);for(let A=0;A<t.length;A+=e){const r=t.slice(A,A+e).map(A=>this._addImageWithPending(A));await Promise.allSettled(r)}}addImage(A){if(this._deferMode)return this.has(A)||!Gi(A)&&!Ri(A)||this._collectedUrls.add(A),Promise.resolve();const t=this._pendingOperations.get(A);if(t)return t;if(this.has(A)){const t=this._cache.get(A);return this._cache.delete(A),this._cache.set(A,t),Promise.resolve()}return Gi(A)||Ri(A)?this._addImageWithPending(A):Promise.resolve()}_addImageWithPending(A){const t=this._pendingOperations.get(A);if(t)return t;const e=this._addImageInternal(A);return this._pendingOperations.set(A,e),e.finally(()=>{this._pendingOperations.delete(A)}),e}async _addImageInternal(A){const t=this._options.imageTimeout??15e3,e=this.withTimeout(this.loadImage(A),t,`Timed out (${t}ms) loading image`);e.catch(t=>{this.context.logger.error(`Failed to load image ${A}: ${t instanceof Error?t.message:"Unknown error"}`)}),this.set(A,e)}withTimeout(A,t,e){if(t<=0)return A;let r;const n=new Promise((A,n)=>{r=setTimeout(()=>n(new Error(e)),t)});return Promise.race([A,n]).finally(()=>{void 0!==r&&clearTimeout(r)})}match(A){const t=this._cache.get(A);if(t)return this._cache.delete(A),this._cache.set(A,t),t.value}set(A,t){if(this._cache.has(A))this._cache.delete(A);else if(this._cache.size>=this.maxSize){const A=this._cache.keys().next().value;void 0!==A&&(this._cache.delete(A),this.context.logger.debug(`Cache: Evicted LRU entry: ${A}`))}this._cache.set(A,{value:t})}size(){return this._cache.size}getMaxSize(){return this.maxSize}clear(){this._cache.clear()}async loadImage(A){const t=this.context.originChecker,e=A=>t.isSameOrigin(A),r="function"==typeof this._options.customIsSameOrigin?await this._options.customIsSameOrigin(A,e):e(A),n=!r&&!1===this._options.allowTaint&&!Vi(A)&&!Gi(A)&&"string"!=typeof this._options.proxy,s=!Vi(A)&&(!0===this._options.useCORS||n)&&no.SUPPORT_CORS_IMAGES&&!r,o=!Vi(A)&&!r&&!Gi(A)&&"string"==typeof this._options.proxy&&no.SUPPORT_CORS_XHR&&!s;if(!(r||!1!==this._options.allowTaint||Vi(A)||Gi(A)||o||s))return;let i=A;return o&&(i=await this.proxy(i)),this.context.logger.debug(`Added image ${A.substring(0,256)}`),await new Promise((A,t)=>{const e=new Image;e.onload=()=>A(e),e.onerror=t,(Ni(i)||s)&&(e.crossOrigin="anonymous"),e.src=i,!0===e.complete&&setTimeout(()=>A(e),500)})}has(A){return this._cache.has(A)}keys(){return Promise.resolve(Array.from(this._cache.keys()))}proxy(A){const t=this._options.proxy;if(!t)throw new Error("No proxy defined");const e=A.substring(0,256);return new Promise((r,n)=>{const s=no.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=()=>{if(200===o.status)if("text"===s)r(o.response);else{const A=new FileReader;A.addEventListener("load",()=>r(A.result),!1),A.addEventListener("error",A=>n(A),!1),A.readAsDataURL(o.response)}else n(`Failed to proxy resource ${e} with status code ${o.status}`)},o.onerror=n;const i=t.indexOf("?")>-1?"&":"?";if(o.open("GET",`${t}${i}url=${encodeURIComponent(A)}&responseType=${s}`),"text"!==s&&o instanceof XMLHttpRequest&&(o.responseType=s),this._options.imageTimeout){const A=this._options.imageTimeout;o.timeout=A,o.ontimeout=()=>n(`Timed out (${A}ms) proxying ${e}`)}o.send()})}};const Ti=/^data:image\/svg\+xml/i,ki=/^data:image\/.*;base64,/i,Oi=/^data:image\/.*/i,Ri=A=>no.SUPPORT_SVG_DRAWING||!Pi(A),Vi=A=>Oi.test(A),Ni=A=>ki.test(A),Gi=A=>"blob"===A.substring(0,4),Pi=A=>"svg"===A.slice(-3).toLowerCase()||Ti.test(A);var Xi=class{constructor(A){if(!A||!A.document)throw new Error("Valid window object required for OriginChecker");if(!A.location||!A.location.href)throw new Error("Window object must have valid location");this.link=A.document.createElement("a"),this.origin=this.getOrigin(A.location.href)}getOrigin(A){return this.link.href=A,this.link.href=this.link.href,this.link.protocol+this.link.hostname+this.link.port}isSameOrigin(A){return this.getOrigin(A)===this.origin}getContextOrigin(){return this.origin}},Ji=class A{static{this.instanceCount=1}constructor(t,e,r){this.windowBounds=e,this.instanceName="#"+A.instanceCount++,this.config=r,this.logger=new Di({id:this.instanceName,enabled:t.logging}),this.originChecker=new Xi(r.window),this.cache=t.cache??r.cache??new Mi(this,t),this.onError=t.onError}};const Wi=A=>{if(A?.aborted)throw new DOMException("The operation was aborted.","AbortError")};function Yi(){const A=["availWidth","some","User agent: ","encodedBodySize","language","getEntriesByType","Timezone: ","inferred","Device geolocation: enabled","deviceorientation","onLine","DeviceOrientationEvent","addEventListener","14340007yUiHuo","type","°, γ ","saveData","platform","rtt","filter","slice","768002xFKfMW","122122yGykUY","toFixed","referrer","Local time: ","userAgentData","upright","1261320oFHlHl","enabled","charging","TTFB ~","cookieEnabled","width","padStart","TTFB","join","requestStart","21UqYoSM","12szMMsV","gamma","responseStart","yes"," | ","effectiveType","push","Languages: ",", maxTouchPoints ","Tilt: ","SW-controlled","Pointer/Touch: ","version","colorDepth","navigation","transferSize","Online: ","(display-mode: standalone)","number","no SW","rttMs","devicePixelRatio","fine","browser API"," ms","timeZone","mobile","undefined","Language: ","intent:geo","level","function","coarse","downlinkMbps","isFinite","abs","resource","maxTouchPoints","resolvedOptions","innerWidth","connection","startsWith","brand"," (β ",", orientation ","orientation","beta","userAgent","38615BviJVz","toString","Platform: ","n/a","84vtMRlC","getBattery","max","DateTimeFormat","8SwPgjg","Screen: ","entryType","356ZwYimR","isSecureContext","duration","; DNT: ","173878DMmKCE","Network: ","(pointer: fine)","round"," cores","downlink","removeEventListener","Viewport: ","hardwareConcurrency","CPU: "," (UTC","matches"," (mobile)","512361Ncohsm"," Mbps","controller","innerHeight","find","length","brands"];return(Yi=()=>A)()}function Zi(A,t){return A-=324,Yi()[A]}async function zi(){const A=Zi,t=(new(Intl[A(359)]))[A(342)]()[A(329)],e=(A=>{const t=Zi,e=A<=0?"+":"-",r=Math[t(339)](A);return""+e+String(Math.floor(r/60))[t(421)](2,"0")+":"+String(r%60)[t(421)](2,"0")})((new Date).getTimezoneOffset()),r=[];r.push(A(332)+navigator[A(391)]),navigator.languages?.[A(385)]&&r[A(432)](A(433)+navigator.languages[A(423)](", ")),r[A(432)](A(389)+navigator[A(351)]);const n=function(){const A=Zi;if(!(A=>{const t=Zi;return t(413)in A&&typeof A[t(413)]!==t(331)})(navigator))return;const t=navigator.userAgentData,e=Array.isArray(t[A(386)])?t[A(386)].map(t=>t[A(346)]+" "+t[A(438)])[A(423)](", "):void 0,r=t[A(404)]?""+t.platform+(t[A(330)]?A(379):""):void 0;return[e&&"UA brands: "+e,r&&A(354)+r][A(406)](Boolean)[A(423)](A(430))||void 0}();n&&r[A(432)](n),r[A(432)](A(393)+t+A(377)+e+")"),r[A(432)](A(412)+(new Date)[A(353)]());const s=window[A(325)]||1;r[A(432)](A(361)+screen[A(420)]+"x"+screen.height+" @"+s+"x (avail "+screen[A(387)]+"x"+screen.availHeight+", "+screen[A(439)]+"-bit)");const o=screen[A(349)]&&A(401)in screen[A(349)]?screen[A(349)][A(401)]:void 0;r[A(432)](A(374)+window[A(343)]+"x"+window[A(383)]+(o?A(348)+o:"")),r[A(432)](A(376)+navigator[A(375)]+A(371));const i=await async function(){const A=Zi,t=[];let e=A(327);if((A=>{const t=Zi;return"connection"in A&&typeof A[t(344)]!==t(331)})(navigator)){const e=navigator[A(344)];e?.effectiveType&&t[A(432)](e[A(431)]),typeof e?.[A(372)]===A(444)&&t[A(432)]("~"+e.downlink+" Mbps"),typeof e?.[A(405)]===A(444)&&t[A(432)](e.rtt+A(328)),e?.[A(403)]&&t.push("saveData")}else{const r=((A=20)=>{const t=Zi,e=performance[t(392)](t(440))[t(384)](A=>"navigation"===A[t(362)]),r=e?Math[t(358)](0,e[t(428)]-e[t(424)]):void 0,n=performance[t(392)](t(340))[t(406)](A=>A.entryType===t(340));let s=0,o=0;for(const e of n[t(407)](0,Math[t(358)](0,A))){const A=e[t(390)]>0?e[t(390)]:e[t(441)]>0?e[t(441)]:0,r=e[t(365)];A>0&&r>0&&Number[t(338)](r)&&(s+=A,o+=r)}const i=o>0?8*s/o:void 0;return{downlinkMbps:"number"==typeof i?i/1e3:void 0,rttMs:r}})();typeof r[A(337)]===A(444)&&t[A(432)]("~"+r[A(337)][A(410)](1)+A(381)),"number"==typeof r.rttMs&&t[A(432)](A(418)+Math[A(370)](r[A(324)])+" ms"),e=A(394)}const r=performance[A(392)]("navigation")[A(384)](A=>"navigation"===A.entryType);if(r){const e=Math[A(358)](0,r[A(428)]-r.requestStart);!t[A(388)](t=>t[A(345)](A(422)))&&t[A(432)](A(418)+Math[A(370)](e)+A(328))}return t[A(385)]?A(368)+t[A(423)](", ")+" ("+e+")":void 0}();i&&r[A(432)](i),r.push((()=>{const A=Zi,t="function"==typeof matchMedia&&matchMedia("(pointer: coarse)")[A(378)],e=typeof matchMedia===A(335)&&matchMedia(A(369))[A(378)],r=t?A(336):e?A(326):"unknown",n=navigator[A(341)];return A(437)+r+A(434)+n})());const a=await async function(){const A=Zi;var t;if("getBattery"in(t=navigator)&&typeof t.getBattery===Zi(335))try{const t=await navigator[A(357)](),e=Math[A(370)](100*t[A(334)]);return"Battery: "+[(Number[A(338)](e)?e:0)+"%",t[A(417)]?"charging":"not charging"].join(", ")}catch{}}();a&&r.push(a),r.push("CookiesEnabled: "+(navigator[A(419)]?A(429):"no")+A(366)+(navigator.doNotTrack??A(355))),r[A(432)](A(442)+(navigator[A(397)]?"yes":"no")),document[A(411)]&&r[A(432)]("Referrer: "+document[A(411)]),r.push((()=>{const A=Zi,t=typeof matchMedia===A(335)&&matchMedia(A(443))[A(378)],e=Boolean(navigator.serviceWorker?.[A(382)]);return"PWA: "+A(e?436:445)+", display-mode standalone: "+(t?"yes":"no")})());const c=await async function(A=400){const t=Zi;if(t(398)in window&&window[t(364)])return new Promise(e=>{const r=t;let n=!1;const s=A=>{const t=Zi,r=typeof A[t(350)]===t(444)?A[t(350)]:void 0,o=typeof A[t(427)]===t(444)?A[t(427)]:void 0;if(void 0===r||void 0===o)return;if(n)return;n=!0,window.removeEventListener(t(396),s);const i=((A,t)=>{const e=Zi,r=Math.abs(A),n=Math[e(339)](t);return r<15&&n<15?"flat":r>=60?e(414):"reclined"})(r,o);e(t(435)+i+t(347)+Math[t(370)](r)+t(402)+Math[t(370)](o)+"°)")};window.setTimeout(()=>{const A=Zi;n||(n=!0,window[A(373)](A(396),s),e(void 0))},A),window[r(399)]("deviceorientation",s,{passive:!0})})}();c&&r[A(432)](c);const B=localStorage.getItem(A(333))===A(416);return r.push(B?A(395):"Device geolocation: disabled"),r[A(423)](" | ")}function _i(){const A=["1915740npShRi","intent:data-base-url","intent:debug","1988382xdaUNK","https://intent.callimacus.ai","intent:data-capture-mode","1124426EBbYfo","intent:consent","intent:data-sid-max-age","intent:debug-panel","6702435JSTpGq","intent:data-ip","22825754yvpgxo","2855070sIMXhW","704132DxqxoD"];return(_i=()=>A)()}(A=>{const t=Zi,e=A();for(;;)try{if(935326==parseInt(t(408))/1+parseInt(t(367))/2*(parseInt(t(425))/3)+parseInt(t(363))/4*(parseInt(t(352))/5)+-parseInt(t(356))/6*(-parseInt(t(409))/7)+-parseInt(t(360))/8*(-parseInt(t(380))/9)+-parseInt(t(415))/10+-parseInt(t(400))/11*(parseInt(t(426))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Yi);const qi=oa;(A=>{const t=oa,e=A();for(;;)try{if(760112==parseInt(t(152))/1+-parseInt(t(149))/2+-parseInt(t(146))/3+-parseInt(t(145))/4+-parseInt(t(141))/5+-parseInt(t(144))/6+parseInt(t(143))/7)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(_i);const ji=qi(138),$i="intent:geo",Aa=qi(148),ta=qi(140),ea="intent:data-client-id",ra=qi(142),na=qi(147),sa=qi(139);function oa(A,t){return A-=138,_i()[A]}const ia=qi(151),aa=qi(150);(A=>{const t=Ba,e=A();for(;;)try{if(464283==-parseInt(t(458))/1*(parseInt(t(459))/2)+-parseInt(t(461))/3+parseInt(t(455))/4*(parseInt(t(457))/5)+-parseInt(t(450))/6*(parseInt(t(453))/7)+parseInt(t(462))/8+parseInt(t(451))/9+parseInt(t(449))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(la);const ca=2166136261;function Ba(A,t){return A-=449,la()[A]}function la(){const A=["4124800EuWEfH","8778610chSnli","24342DSlZwk","4821786QdqJwZ","length","1589Ypqpdx","imul","15116cdDrSl","toString","545oLomuA","664822UGAqdm","2BQxaMT","charCodeAt","873246xqsvxT"];return(la=()=>A)()}const ga=16777619;function ha(A,t){const e=Ba;let r=A;for(let A=0;A<t[e(452)];A++)r^=t[e(460)](A),r=Math[e(454)](r,ga);return r>>>0}function da(A,t){return Math[Ba(454)](A^t,ga)>>>0}const wa=[{seed:2166136261,prime:16777619},{seed:2654435761,prime:2246822507},{seed:3266489909,prime:668265263},{seed:374761393,prime:3266489955}];function ua(){const A=["now","postTask","innerText","map","enabled","1890315ELZIPq","3aSDBib","body","combobox","getAttribute","select","input",'[role="',"6632976vDZdNY","tagName","contenteditable","8wFTDKc","&gt;","textbox","clearTimeout","&lt;","has","true","string","10bIBQlt","toLowerCase","1834172NcRsBE","freeze","role","1846747MVWIfb","928518vIMbhO","1YqCaUg","replace","SELECT","textarea","plaintext-only","3426426cqEPEX","setTimeout","function","background","6ESsqjx","log","875941BMlalJ","undefined","TEXTAREA","searchbox","parentElement","host"];return(ua=()=>A)()}const Qa=Ia;function pa(A,t){let e=0;return(...r)=>{const n=Date[Ia(419)]();n-e>=t&&(e=n,A(...r))}}function Ca(...A){const t=Ia;try{typeof localStorage!==t(414)&&localStorage.getItem(Aa)===t(423)&&console[t(412)](...A)}catch{}}(A=>{const t=Ia,e=A();for(;;)try{if(365493==parseInt(t(450))/1*(-parseInt(t(449))/2)+-parseInt(t(425))/3*(-parseInt(t(445))/4)+-parseInt(t(424))/5+parseInt(t(411))/6*(-parseInt(t(448))/7)+parseInt(t(435))/8*(parseInt(t(407))/9)+parseInt(t(443))/10*(parseInt(t(413))/11)+parseInt(t(432))/12)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ua);const Ua=Object[Qa(446)](new Set([Qa(437),Qa(427),Qa(416)])),fa=[Qa(430),Qa(453),Qa(429),"[contenteditable]",...[...Ua][Qa(422)](A=>Qa(431)+A+'"]')].join(", ");function Fa(A){const t=Qa,e=A[t(433)];return"INPUT"===e||e===t(415)||e===t(452)}function ma(A){const t=Qa;if(Fa(A))return!0;const e=A[t(428)](t(434));if(""===e||e===t(441)||"plaintext-only"===e)return!0;const r=A[t(428)](t(447))?.[t(444)]();return!(!r||!Ua[t(440)](r))}function ya(A){const t=Qa,e=A[t(417)];if(e)return e;const{parentNode:r}=A;return r instanceof ShadowRoot&&r[t(418)]instanceof Element?r[t(418)]:void 0}function Ia(A,t){return A-=407,ua()[A]}function Ha(A){const t=Qa;if(Fa(A))return A.value;const e=A[t(421)];return typeof e===t(442)?e:A.textContent??""}function Ea(A){const t=Qa;return A[t(451)](/&/g,"&amp;")[t(451)](/</g,t(439))[t(451)](/>/g,t(436))[t(451)](/"/g,"&quot;")[t(451)](/'/g,"&#039;")}const ba=xa;function xa(A,t){return A-=339,La()[A]}(A=>{const t=xa,e=A();for(;;)try{if(696165==parseInt(t(437))/1+parseInt(t(389))/2+-parseInt(t(340))/3*(parseInt(t(383))/4)+parseInt(t(423))/5*(-parseInt(t(386))/6)+-parseInt(t(417))/7+-parseInt(t(436))/8*(-parseInt(t(358))/9)+parseInt(t(369))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(La);const va=ba(395),Ka=ba(416);function La(){const A=["birthdate-year","Cardholder name","address-line2","honorific-prefix","Redacted","5057381ckbyQp","cc-csc","bday-month","family-name","Name","cc-exp-month","412245dqxWbq","bday-day","Middle initial","postal-address-extended-postal-code","password-new","Postal code","postal-address-extended","Country code","name-middle-initial","cc-given-name","bday-year","name-given","Expiration date","392sshLVz","773021EnulOJ","Middle name","Birth day","cc-name","sms-otp","username","Expiration day","name-family","Username","15ZmkRiW","searchbox","cc-number","current-password","Address line 1","birthdate-full","cc-exp-day","First name","Expiration year","Address line 3","search","postal-address-locality","birthdate-month","address-level4","cc-family-name","Birthday","Job title","one-time-code","148734ZQmPLG","country-name","Security code","address-line3","given-name","District","username-new","Organization","password","Password","tel-national","10738090KngFer","trim","Name prefix","Address line 2","Last name","Birth year","Cardholder first name","gender","Sex","email","country","tel","Name suffix","address-level1","479152uztKOo","cc-middle-name","cc-exp","84amHuBi","Country name","Phone","1030540rxQDSY","name-suffix","birthdate-day","get","Nickname","address-line1","Sensitive","One-time code","Email","cc-exp-year","freeze","State/Province","name-prefix","Neighborhood","webauthn","nickname","address-level2","split","postal-code","Cardholder middle name","Birth month","cc-additional-name","City"];return(La=()=>A)()}Object[ba(399)](new Set([ba(341),ba(350)]));const Sa=new Map([["name",ba(421)],[ba(362),ba(347)],[ba(420),ba(373)],["additional-name","Middle name"],[ba(404),ba(393)],[ba(442),ba(339)],[ba(434),ba(347)],[ba(444),ba(373)],["name-middle",ba(438)],[ba(431),ba(425)],[ba(401),ba(371)],[ba(390),ba(381)],[ba(415),ba(371)],["honorific-suffix",ba(381)],[ba(364),ba(339)],[ba(366),ba(367)],[ba(427),ba(367)],[ba(343),"Password"],["new-password","Password"],[ba(357),ba(396)],[ba(441),ba(396)],[ba(403),"WebAuthn"],[ba(378),ba(397)],[ba(380),ba(388)],["tel-country-code","Phone country code"],[ba(368),ba(388)],["tel-device",ba(388)],["street-address","Street address"],[ba(394),ba(344)],[ba(414),ba(372)],[ba(361),ba(349)],[ba(382),ba(400)],[ba(405),ba(411)],["address-level3",ba(363)],[ba(353),ba(402)],[ba(407),"Postal code"],[ba(379),ba(430)],[ba(359),"Country name"],["postal-address","Street address"],["postal-address-country",ba(387)],[ba(429),ba(372)],[ba(426),ba(428)],[ba(351),ba(411)],["postal-address-region",ba(400)],[ba(440),ba(413)],[ba(432),ba(375)],[ba(354),"Cardholder last name"],[ba(410),ba(408)],[ba(384),ba(408)],[ba(342),"Card number"],[ba(385),ba(435)],[ba(346),ba(443)],[ba(422),"Expiration month"],[ba(398),ba(348)],[ba(418),ba(360)],["cc-type","Card type"],["bday",ba(355)],[ba(424),ba(439)],[ba(419),ba(409)],[ba(433),ba(374)],[ba(345),ba(355)],[ba(391),ba(439)],[ba(352),ba(409)],[ba(412),"Birth year"],["organization",ba(365)],["organization-title",ba(356)],["sex",ba(377)],[ba(376),ba(377)]]),Da=Object[ba(399)](new Set(Sa.keys()));function Ma(A){const t=ba;return A?A.toLowerCase()[t(370)]()[t(406)](/\s+/).filter(Boolean):[]}function Ta(A){return A.some(A=>Da.has(A))}function ka(A){const t=ba;for(const e of A){const A=Sa[t(392)](e);if(A)return A}}const Oa=_a;(A=>{const t=_a,e=A();for(;;)try{if(941426==parseInt(t(472))/1*(-parseInt(t(470))/2)+parseInt(t(487))/3*(parseInt(t(499))/4)+-parseInt(t(495))/5+-parseInt(t(479))/6*(-parseInt(t(471))/7)+parseInt(t(494))/8+-parseInt(t(507))/9*(parseInt(t(465))/10)+parseInt(t(467))/11*(parseInt(t(501))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Va);const Ra=Oa(481);function Va(){const A=["textContent","iframe","toLowerCase","ownerDocument","SELECT","setAttribute","ignore","search","14282390hekAvd","pop","6886CmsxbQ","date","Password","266DWXwtW","7vuWQPT","13173iXISxn","trim","contentDocument","has","stringify","matches","email","7862436UvidmX","length","data-intent-redact","time","hasAttribute","includes","tagName","clear","3mWmUtc","password","body","month","datetime-local","searchbox","get","4691576yURfHk","9384675aXxrKW","add","role","tel","2201832gMUKTP","querySelectorAll","68076TlHiEq","mask","autocomplete","getAttribute","data-html2canvas-ignore","type","9skaRGH","INPUT","shadowRoot","IFRAME","push","warn"];return(Va=()=>A)()}function Na(A){return"<"+(A=>{const t=Oa,e=(A[t(504)]?.("data-intent-redact-label")??"")[t(473)]();if(e)return e;const r=ma(A)?Ma(A[t(504)]?.(t(503))):[];if("INPUT"===A[t(485)]&&A.type===t(488))return t(469);const n=ka(r);if(n)return n;const s="INPUT"===A[t(485)]?ja[t(493)](A[t(506)]):void 0,o=s?ka([s]):void 0;if(o)return o;const i=A[t(504)]?.(Ra)?.[t(515)]();return i===t(502)?Ka:va})(A)+">"}function Ga(A){const t=Oa;return A[t(483)](t(505))||A[t(504)](Ra)?.[t(515)]()===t(463)}const Pa=new Set;function Xa(A){const t=Oa,e=A[t(504)](Ra);if(null===e)return!1;const r=e[t(515)]();return r!==t(463)&&(""!==e&&r!==t(502)&&(A=>{const t=Oa;if(Pa[t(475)](A))return;Pa[t(496)](A);const e="[intent] Unsupported data-intent-redact value "+JSON[t(476)](A)+'. Supported values are "" or "mask" (redact), "ignore" (exclude from capture). Treating as "mask" to prevent data leaks.';try{console[t(512)](e)}catch{}})(e),!0)}function Ja(A){const t=Oa;let e=A;for(;e&&e!==document[t(489)];){if(Ga(e))return!0;e=ya(e)}return!1}function Wa(A){const t=Oa;let e=A;for(;e&&e!==document[t(489)];){if(Xa(e))return e;e=ya(e)}}function Ya(A){return void 0!==Wa(A)}function Za(A){return Xa(A)||$a(A)?Na(A):Na(Wa(A)??A)}function za(A){return!Ja(A)&&(Ya(A)||$a(A))}function _a(A,t){return A-=460,Va()[A]}const qa=Object.freeze(new Set([Oa(492)])),ja=new Map([[Oa(478),"email"],["tel",Oa(498)]]);function $a(A){const t=Oa,e=A[t(485)],r=A[t(504)](t(497))?.[t(515)]();if(e===t(508)){const e=A;return e[t(506)]===t(488)||!(e[t(506)]===t(464)||r&&qa[t(475)](r))&&(!!ja[t(475)](e.type)||Ta(Ma(e[t(503)])))}return"TEXTAREA"===e||e===t(461)?Ta(Ma(A[t(503)])):!(!ma(A)||Fa(A))&&(!r||!qa[t(475)](r))&&Ta(Ma(A[t(504)](t(503))))}function Ac(A){return!(Ga(A)||!Xa(A)&&!$a(A))}function tc(A){const t=Oa;if(!Ja(A))if(Fa(A)){if(Ac(A)){if(A[t(485)]===t(508)){const e=A;[t(468),t(491),t(490),t(482),"week"][t(484)](e[t(506)])&&(e[t(506)]="text")}const e=Na(A);A.value=e,A[t(462)]("value",e)}}else ma(A)?Ac(A)&&(A[t(513)]=Na(A)):A.hasAttribute(Ra)&&Xa(A)&&(A[t(513)]=Na(A))}function ec(A,t){const e=Oa,r=[],n=[A];for(A instanceof Element&&A[e(509)]&&n[e(511)](A[e(509)]);n[e(480)]>0;){const A=n[e(466)]()[e(500)]("*");for(const s of A)s[e(477)](t)&&r[e(511)](s),s[e(509)]&&n[e(511)](s[e(509)])}return r}function rc(A,t=new Set){const e=Oa,r=A instanceof Document?A:A[e(460)];if(r){if(t[e(475)](r))return;t[e(496)](r)}A instanceof Element&&tc(A);for(const t of ec(A,fa))tc(t);for(const t of ec(A,"["+Ra+"]"))tc(t);for(const r of ec(A,e(514)))if(r[e(485)]===e(510))try{const A=r[e(474)];A&&rc(A,t)}catch{}}
10
- /*! js-cookie v3.0.8 | MIT */function nc(A){for(var t=1;t<arguments.length;t++){var e=arguments[t];for(var r in e)"__proto__"!==r&&(A[r]=e[r])}return A}var sc=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=nc({},e,n)).expires&&(n.expires=new Date(Date.now()+864e5*n.expires)),n.expires&&(n.expires=n.expires.toUTCString()),A=encodeURIComponent(A).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var o in n)n[o]&&(s+="; "+o,!0!==n[o]&&(s+="="+n[o].split(";")[0]));return document.cookie=A+"="+t.write(r,A)+s}}return Object.create({set:r,get:function(A){if("undefined"!=typeof document&&(!arguments.length||A)){for(var e=document.cookie?document.cookie.split("; "):[],r={},n=0;n<e.length;n++){var s=e[n].split("="),o=s.slice(1).join("=");try{var i=decodeURIComponent(s[0]);if(i in r||(r[i]=t.read(o,i)),A===i)break}catch(A){}}return A?r[A]:r}},remove:(A,t)=>{r(A,"",nc({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,nc({},this.attributes,t))},withConverter:function(t){return A(nc({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(e)},converter:{value:Object.freeze(t)}})}({read:A=>('"'===A[0]&&(A=A.slice(1,-1)),A.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)),write:A=>encodeURIComponent(A).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)},{path:"/"});(A=>{const t=cc,e=A();for(;;)try{if(297301==parseInt(t(311))/1+-parseInt(t(313))/2+parseInt(t(310))/3*(parseInt(t(316))/4)+-parseInt(t(323))/5*(-parseInt(t(320))/6)+-parseInt(t(312))/7*(-parseInt(t(314))/8)+parseInt(t(325))/9*(-parseInt(t(329))/10)+-parseInt(t(326))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(lc);let oc="";function ic(){return oc}function ac(A){return sc[cc(321)](A)}function cc(A,t){return A-=310,lc()[A]}function Bc(A,t){const e=cc,r=localStorage.getItem(sa),n=null===r?void 0:Number(r),s=typeof t===e(315)&&Number.isFinite(t)?t:typeof n===e(315)&&Number.isFinite(n)?n:2592e3,o=window.location.protocol===e(319);sc[e(322)](e(318),A,{expires:s/86400,path:"/",sameSite:e(327),...o&&{secure:!0}})}function lc(){const A=["remove","1557jnJFiV","3501344ZekLcB","Lax","randomUUID","12490TKGUcT","1049223nLSUSy","83387urTeoS","1131214OPQLrX","865018eKGUpa","24SxVmWG","number","4WVBzsN","granted","intent_sid","https:","230838joekHL","get","set","45kOfoqW"];return(lc=()=>A)()}function gc(){const A=cc;sc[A(324)](A(318),{path:"/"})}function hc(){const A=cc,t=ac(A(318));if(!(()=>{const A=cc;return localStorage.getItem(ji)===A(317)})())return t&&gc(),void(oc="");t?oc=t:(oc=crypto[A(328)](),Bc(oc))}(A=>{const t=Uc,e=A();for(;;)try{if(938707==-parseInt(t(499))/1+-parseInt(t(509))/2*(parseInt(t(487))/3)+parseInt(t(505))/4*(-parseInt(t(498))/5)+parseInt(t(510))/6*(parseInt(t(492))/7)+-parseInt(t(500))/8*(parseInt(t(496))/9)+-parseInt(t(481))/10+-parseInt(t(473))/11*(-parseInt(t(471))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(fc);let dc=!1,wc=!1,uc=!1,Qc=!1,pc=!1;function Cc(){return"enabled"===localStorage[Uc(501)]($i)}function Uc(A,t){return A-=468,fc()[A]}function fc(){const A=["4032300sbqggy","hostname","coords","now","number","addEventListener","201dGSkkT","heading","TIMEOUT","message","longitude","648998NKvGPm","canRequest","removeEventListener","code","621moqwST","deviceGeoSent","2273505sLUpwb","754286Dbpvgc","147272DcZeti","getItem","isFinite","speed","altitude","8GaUZSe","hasFocus","geolocation","query","1060wQnQkH","36oMsSxv","UNKNOWN","isSecureContext","timestamp","96mXdDPw","PERMISSION_DENIED","5163224cVNSqs","geoEnabled","latitude","getCurrentPosition","pointerdown","altitudeAccuracy","protocol","permissions"];return(fc=()=>A)()}function Fc(){dc=!1,uc=!1,pc=!1}function mc(){return!dc&&Cc()&&!Qc&&pc}const yc=bc;(A=>{const t=bc,e=A();for(;;)try{if(638030==-parseInt(t(164))/1*(-parseInt(t(170))/2)+-parseInt(t(131))/3+-parseInt(t(212))/4*(parseInt(t(165))/5)+-parseInt(t(143))/6+-parseInt(t(209))/7*(-parseInt(t(124))/8)+-parseInt(t(136))/9+parseInt(t(163))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(xc);let Ic,Hc=[],Ec=!1;function bc(A,t){return A-=120,xc()[A]}function xc(){const A=["5675299oUwukX","target","stopPropagation","2103476fpmavU","none","display",'\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Bounding Box:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">',"html","querySelector","\n\t\tmax-width: 100%;\n\t\tmax-height: calc(95vh - 60px);\n\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.2));\n\t","toLocaleTimeString","#intent-debug-close","textContent","#intent-debug-header","8KlVgfT","Click anywhere or press ESC to close","setAttribute","ignore","event","readyState","</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t","2021727IiNMBG",'\n\t\t<div style="\n\t\t\tbackground: var(--solomei-color-card, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tpadding: 10px;\n\t\t\tmargin-bottom: 8px;\n\t\t">\n\t\t\t<div style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tmargin-bottom: 8px;\n\t\t\t\tpadding-bottom: 8px;\n\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t">',"style","enabled","random","6672708zrukZx","createElement","addEventListener","200px","innerWidth","bbox",'\n\t\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>HTML:</strong></div>\n\t\t\t\t\t\t<pre style="\n\t\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t">',"3357726HOBIYx","body",'" \n\t\t\t\t\t\tclass="intent-debug-screenshot" \n\t\t\t\t\t\tstyle="\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t" \n\t\t\t\t\t\ttitle="Click to view fullscreen"/>\n\t\t\t\t\t<div style="\n\t\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tmargin-top: 4px;\n\t\t\t\t\t">Screenshot (~',"clientY",'\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="',"mouseup","loading","push","flex","length","timestamp","button","cssText","div","DOMContentLoaded","getBoundingClientRect","classList","img","innerHTML","right","20921880rVUgEq","24aXrSHz","5BzkfrQ"," KB)</div>\n\t\t\t\t</div>\n\t\t\t","#intent-debug-minimize","max","tagName","19658uRVxRg","left","join","#intent-debug-count","mousedown","now","#intent-debug-content","stringify","src","clientX","click","</pre>\n\t\t\t\t\t","intent-debug-screenshot","removeEventListener","appendChild","offsetHeight","#intent-debug-events","min","data:image/","innerHeight"," event","key","firstElementChild","BUTTON","undefined","width","map","randomUUID","contains","props","getItem",'\n\t\t<div id="intent-debug-panel" data-intent-redact="ignore" style="\n\t\t\tposition: fixed;\n\t\t\ttop: 20px;\n\t\t\tright: 20px;\n\t\t\twidth: 400px;\n\t\t\tmax-height: 80vh;\n\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t\t\tz-index: 2147483647;\n\t\t\tfont-family: var(--solomei-font-primary, -apple-system, BlinkMacSystemFont, \'Segoe UI\', sans-serif);\n\t\t\tfont-size: var(--solomei-font-size-base, 15px);\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t">\n\t\t\t<div id="intent-debug-header" style="\n\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\tpadding: 12px 15px;\n\t\t\t\tborder-radius: var(--solomei-radius-lg, 10px) var(--solomei-radius-lg, 10px) 0 0;\n\t\t\t\tcursor: move;\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tuser-select: none;\n\t\t\t">\n\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); font-size: 14px;">Intent SDK Debug</div>\n\t\t\t\t<div style="display: flex; gap: 8px;">\n\t\t\t\t\t<button id="intent-debug-minimize" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">−</button>\n\t\t\t\t\t<button id="intent-debug-close" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">×</button>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div id="intent-debug-content" style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\toverflow: hidden;\n\t\t\t\tflex: 1;\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tpadding: 12px 15px;\n\t\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t">\n\t\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); color: var(--solomei-color-foreground, #212121); margin-bottom: 8px;">Event Log</div>\n\t\t\t\t\t<div style="display: flex; gap: 8px; align-items: center;">\n\t\t\t\t\t\t<button id="intent-debug-clear" style="\n\t\t\t\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\t\tpadding: 6px 12px;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\t\t">Clear</button>\n\t\t\t\t\t\t<span id="intent-debug-count" style="color: var(--solomei-color-text-secondary, #979797); font-size: 12px;">0 events</span>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div id="intent-debug-events" style="\n\t\t\t\t\tflex: 1;\n\t\t\t\t\toverflow-y: auto;\n\t\t\t\t\tpadding: 10px;\n\t\t\t\t">\n\t\t\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t',"Escape","top","intent-debug-fullscreen-modal","0 events","disabled","round","data-intent-redact"];return(xc=()=>A)()}function vc(){const A=bc;if(!Ic)return;const t=Ic[A(217)](A(186)),e=Ic[A(217)](A(173));if(!t||!e)return;if(0===Hc[A(152)])return t[A(161)]='\n\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t</div>\n\t\t',void(e.textContent=A(205));const r=[...Hc].reverse();t[A(161)]=r[A(196)](A=>(A=>{const t=bc,e=new Date(A[t(153)])[t(120)](),r=A[t(160)]&&A[t(160)].length>0,n=r?Math[t(207)](.75*A[t(160)][t(152)]/1024):0,s=Ea(A[t(128)]),o=Ea(JSON[t(177)](A[t(199)],null,2)),i=Ea(A[t(216)]),a=Ea(JSON.stringify(A[t(141)],null,2));return t(132)+s+'</div>\n\t\t\t\t<div style="\n\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t">'+e+"</div>\n\t\t\t</div>\n\t\t\t"+(r?t(147)+A.img+t(145)+n+t(166):"")+'\n\t\t\t<details style="margin-top: 8px;">\n\t\t\t\t<summary style="\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\tuser-select: none;\n\t\t\t\t">View Details</summary>\n\t\t\t\t<div style="\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t\tpadding: 8px;\n\t\t\t\t\tbackground: var(--solomei-color-secondary, #fafaf9);\n\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t">\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Properties:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">'+o+"</pre>\n\t\t\t\t\t"+(A.html?t(142)+i+t(181):"")+t(215)+a+t(130)})(A))[A(172)](""),e[A(122)]=Hc[A(152)]+A(190)+(1===Hc[A(152)]?"":"s")}function Kc(){const A=bc;if(Ic)return void(Ic[A(133)][A(214)]=A(151));const t=document[A(137)](A(156));t[A(161)]=bc(201),Ic=t[A(192)],document[A(144)][A(184)](Ic);const e=Ic.querySelector(A(121)),r=Ic[A(217)](A(167)),n=Ic[A(217)]("#intent-debug-clear");e?.[A(138)]("click",()=>{!function(A){const t=bc;try{localStorage.setItem(ta,A?"enabled":t(206)),A?Kc():(()=>{const A=bc;Ic&&(Ic[A(133)][A(214)]="none")})()}catch{}}(!1)}),r?.addEventListener(A(180),()=>{(()=>{const A=bc;if(!Ic)return;const t=Ic.querySelector(A(176)),e=Ic[A(217)]("#intent-debug-minimize");t&&e&&(Ec=!Ec,Ec?(t[A(133)][A(214)]=A(213),Ic.style[A(195)]=A(139),e[A(122)]="+"):(t[A(133)][A(214)]="flex",Ic.style.width="400px",e.textContent="−"))})()}),n?.[A(138)](A(180),()=>{Hc=[],vc()}),(()=>{const A=bc;if(!Ic)return;const t=Ic.querySelector(A(123));if(!t)return;let e=!1,r=0,n=0,s=0,o=0;t[A(138)](A(174),t=>{const r=A;if(t[r(210)][r(169)]===r(193))return;e=!0;const n=Ic[r(158)]();s=t[r(179)]-n[r(171)],o=t[r(146)]-n[r(203)]}),document[A(138)]("mousemove",t=>{const i=A;if(!e||!Ic)return;t.preventDefault(),r=t[i(179)]-s,n=t[i(146)]-o;const a=window[i(140)]-Ic.offsetWidth,c=window[i(189)]-Ic[i(185)];r=Math[i(168)](0,Math.min(r,a)),n=Math.max(0,Math[i(187)](n,c)),Ic[i(133)][i(171)]=r+"px",Ic.style.top=n+"px",Ic[i(133)][i(162)]="auto"}),document.addEventListener(A(148),()=>{e=!1})})(),Ic[A(138)](A(180),t=>{const e=A,r=t[e(210)];if(r[e(159)][e(198)](e(182))){const A=r;A.src&&A[e(178)].startsWith(e(188))&&(A=>{const t=bc,e=document[t(137)]("div");e.id=t(204),e[t(126)](t(208),t(127)),e.style[t(155)]="\n\t\tposition: fixed;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tbackground: rgba(0, 0, 0, 0.95);\n\t\tz-index: 2147483646;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\tcursor: zoom-out;\n\t";const r=document.createElement("div");r[t(133)][t(155)]="\n\t\tmax-width: 95%;\n\t\tmax-height: 95%;\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t";const n=document[t(137)](t(160));n[t(178)]=A,n.style.cssText=t(218);const s=document[t(137)](t(156));s[t(133)][t(155)]="\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t";const o=document[t(137)](t(154));o[t(122)]="✕ Close",o.style.cssText="\n\t\tpadding: 12px 24px;\n\t\tbackground: var(--solomei-color-primary-button-background, #262626);\n\t\tcolor: var(--solomei-color-primary-button-color, white);\n\t\tborder: none;\n\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\tfont-size: 14px;\n\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\tcursor: pointer;\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t";const i=document.createElement("div");i.textContent=t(125),i[t(133)][t(155)]="\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t",s.appendChild(o),s[t(184)](i),r[t(184)](n),r[t(184)](s),e[t(184)](r);const a=()=>{const A=t;e.remove(),document[A(183)]("keydown",c)};e[t(138)](t(180),a),o.addEventListener(t(180),A=>{A[t(211)](),a()}),n[t(138)](t(180),A=>{A.stopPropagation()});const c=A=>{const e=t;A[e(191)]===e(202)&&a()};document[t(138)]("keydown",c),document[t(144)].appendChild(e)})(A[e(178)])}}),vc()}function Lc(){var A=["3083514feeZqZ","292458kkESQy","undefined","Use the debug build variant: @solomei-ai/intent/debug or intent.debug.umd.min.js","710932dJOaVh","104xQTjXi","1336977NtronN","logEventToDebugPanel","warn","493598wtlzpI","2sAwmeg","5VplAwJ","568030WZwBnG","319rmpNaY","715172sPxthA"];return(Lc=()=>A)()}function Sc(A,t){return A-=239,Lc()[A]}function Dc(){const A=["delete","1180180XeoLgA","kind","visibleSince","size","intersecting","now","generation","124kZraso","reconcile","[Ledger] abandoned an extraction pass the ledger was cleared under","rect","603720VMnQZu","632PQwaDO","[Ledger] extraction failed for ","dwellMs","node","visible","fingerprint","entries","ref","round","scheduleIdle","registered","closeDwell","2096658BQfPon","getOnScreen","has","options","ratio","registerVisible","log","digest","7136LMYjWu","set","length","[Ledger] dropped ","3699LTINrH","322QdNbEA","[Ledger] ","extract","push","values","get","25430aujicx","add","237560IItbqM","clear","pendingRegistrations"," registrations the ledger no longer describes"];return(Dc=()=>A)()}"undefined"!=typeof window&&function(){const A=bc;try{return localStorage[A(200)](ta)===A(134)}catch{return!1}}()&&(document[yc(129)]===yc(149)?document[yc(138)](yc(157),()=>{Kc()}):Kc()),Symbol,(A=>{for(var t=Sc,e=A();;)try{if(632076==parseInt(t(247))/1+parseInt(t(253))/2*(parseInt(t(243))/3)+-parseInt(t(242))/4*(parseInt(t(239))/5)+-parseInt(t(244))/6+parseInt(t(252))/7*(parseInt(t(248))/8)+-parseInt(t(249))/9+parseInt(t(240))/10*(-parseInt(t(241))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Lc);const Mc=Tc;function Tc(A,t){return A-=269,Dc()[A]}(A=>{const t=Tc,e=A();for(;;)try{if(212926==parseInt(t(313))/1+parseInt(t(280))/2*(parseInt(t(304))/3)+-parseInt(t(275))/4*(parseInt(t(311))/5)+-parseInt(t(279))/6+parseInt(t(305))/7*(-parseInt(t(300))/8)+-parseInt(t(292))/9+parseInt(t(318))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Dc);const kc={x:0,y:0,w:0,h:0};class Oc{[Mc(295)];[Mc(286)]=new Map;[Mc(315)]=[];[Mc(274)]=0;constructor(A){this[Mc(295)]=A}get size(){return this[Mc(286)].size}[Mc(310)](A){const t=Mc;return this[t(286)][t(310)](A)}[Mc(309)](){const A=Mc;return this[A(286)][A(309)]()}[Mc(276)](A,t){const e=Mc,r=new Set,n=[],s=[];for(const{node:t,kind:s,fingerprint:o}of A){r[e(312)](t);const A=this.entries.get(t);A?A.fingerprint!==o&&(A[e(285)]=o,A[e(269)]=s,A[e(290)]=!1,A[e(299)]=void 0):(this.entries[e(301)](t,{node:t,kind:s,intersecting:!1,visible:!1,ratio:0,rect:{...kc},dwellMs:0,registered:!1,fingerprint:o}),n[e(308)](t))}for(const[A,n]of this[e(286)])r[e(294)](A)&&(t?.(A)??1)||(this[e(291)](n),this[e(286)][e(317)](A),s[e(308)](A));return this[e(295)][e(298)]?.(e(306)+this[e(286)][e(271)]+" segments tracked"),{added:n,removed:s}}setGeometry(A,t){const e=Mc,r=this[e(286)].get(A);r&&(r.intersecting=t[e(272)],r[e(296)]=t[e(296)],r[e(278)]=t.rect)}refreshVisibility(A){const t=Mc,e=this[t(295)].now();for(const r of this.entries.values()){if(!r.intersecting){this[t(291)](r,e),r[t(284)]=!1;continue}const n=A?.(r[t(283)])??!0;n&&void 0===r.visibleSince?r.visibleSince=e:!n&&this.closeDwell(r,e),r[t(284)]=n}}async[Mc(297)](){const A=Mc,t=this[A(274)],e=[];for(const t of this[A(286)].values())t.visible&&!t[A(290)]&&e[A(308)](t);if(0===e[A(302)])return;for(const t of e)t[A(290)]=!0;let r,n=0;for(const s of e)try{if(await this.options[A(289)](),t!==this.generation)return void this[A(295)].log?.(A(277));const e=this.options[A(307)](s[A(283)],s[A(269)]);e&&(s[A(299)]=e,this[A(315)][A(308)](e))}catch(t){s[A(290)]=!1,n++,r=t}n>0&&this.options[A(298)]?.(A(281)+n+"/"+e[A(302)]+" segments: "+String(r))}[Mc(293)](){const A=Mc,t=this[A(295)][A(273)](),e=new Map;for(const r of this.entries.values()){if(!r[A(284)]||!r[A(299)])continue;const n=void 0===r[A(270)]?0:t-r[A(270)],s={ref:r[A(299)][A(287)],ratio:Math[A(288)](100*r[A(296)])/100,dwellMs:Math[A(288)](r[A(282)]+n),rect:r.rect},o=e.get(s[A(287)]);(!o||s[A(282)]>o[A(282)])&&e[A(301)](s.ref,s)}return[...e[A(309)]()]}drainRegistrations(){const A=Mc,t=new Set;for(const e of this[A(286)].values())e[A(299)]&&t[A(312)](e.digest.ref);const e=new Set,r=[];let n=0;for(const s of this[A(315)])e[A(294)](s[A(287)])||(t[A(294)](s.ref)?(e[A(312)](s[A(287)]),r.push(s)):n++);return this[A(315)]=[],n>0&&this.options.log?.(A(303)+n+A(316)),r}getCoverage(){const A=Mc;let t=0,e=0;for(const r of this[A(286)][A(309)]())r[A(284)]&&t++,r.digest&&e++;return{segments:this.entries[A(271)],onScreen:t,registered:e}}[Mc(314)](){const A=Mc;this.entries[A(314)](),this[A(315)]=[],this[A(274)]++}[Mc(291)](A,t=this[Mc(295)][Mc(273)]()){const e=Mc;void 0!==A.visibleSince&&(A[e(282)]+=t-A.visibleSince,A[e(270)]=void 0)}}function Rc(A,t){return A-=408,Nc()[A]}(A=>{const t=Rc,e=A();for(;;)try{if(140905==-parseInt(t(427))/1+parseInt(t(438))/2+-parseInt(t(408))/3+parseInt(t(439))/4+-parseInt(t(416))/5*(-parseInt(t(414))/6)+-parseInt(t(411))/7*(-parseInt(t(415))/8)+-parseInt(t(413))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Nc);const Vc={maxSegments:300,maxDepth:24,maxTextLength:1200,maxHeadings:1,maxInteractives:8,minTextLength:12,minDescentCoverage:.67};function Nc(){const A=["ownText","leaf","parent","marked","isUnit","isInteractive","interactives","length","textLength","contentHash","403404vZyLnw","1034284hWkPUm","children","heading","772638TVUtis","isSkipped","maxInteractives","29897BsStSO","maxTextLength","1798965jkEGrg","198EavRyZ","376nhXGvs","14285hQPauj","unit","maxHeadings","repeated","headings","get","mixDigestAttributes","minTextLength","set","push","signature","156955IhrwLs"];return(Nc=()=>A)()}const Gc=Pc;function Pc(A,t){return A-=473,Xc()[A]}function Xc(){const A=["row","startsWith","BLOCKQUOTE","option","155YiNZDN","gridcell","data-intent-redact","onclick","role","type","has","LABEL","aria-label","data:","hidden","searchbox","contenteditable:","children","IFRAME","redact:","tab","hasAttribute","SELECT","join","length","4923BIMDEq","menuitem","treeitem","slider","TEMPLATE","5943820XywBnT","aria-labelledby","TITLE","AREA","TEXTAREA","SUMMARY","data-html2canvas-ignore","12lwUUvT","14071431OioYfQ","href","291szfgHh","textbox","4HvOfBj","META","SCRIPT","toLowerCase","2768idiBBv","getAttribute","data-intent-redact-label","radio","from","BUTTON","AUDIO","redact:ignore-legacy","checkbox","currentSrc","FIGURE","12748tpxdfA","true","NOSCRIPT","STYLE","switch","DETAILS","VIDEO","listitem","SECTION","IMG","svg","HEAD","contenteditable","ARTICLE","37482ypGIHh","3667664EOqSUd","116078cQypwJ","combobox","nodeType","src","tagName"];return(Xc=()=>A)()}(A=>{const t=Pc,e=A();for(;;)try{if(299015==-parseInt(t(478))/1*(parseInt(t(509))/2)+-parseInt(t(476))/3*(-parseInt(t(493))/4)+-parseInt(t(518))/5*(-parseInt(t(507))/6)+parseInt(t(508))/7+parseInt(t(482))/8*(parseInt(t(539))/9)+parseInt(t(544))/10+-parseInt(t(474))/11*(parseInt(t(473))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Xc);const Jc=new Set([Gc(480),Gc(496),Gc(495),Gc(543),Gc(504),Gc(479),"LINK",Gc(546),"BR","HR",Gc(532),"CANVAS",Gc(503)]),Wc=new Set([Gc(506),Gc(501),"LI",Gc(492),Gc(516),"TR","DD",Gc(498)]),Yc=new Set(["article",Gc(500),Gc(517),Gc(514),Gc(519),Gc(534),Gc(541),"card"]),Zc=new Set(["H1","H2","H3","H4","H5","H6"]),zc=new Set(["A",Gc(487),"INPUT",Gc(536),"TEXTAREA",Gc(549),Gc(525),Gc(499),Gc(488)]),_c=new Set(["button","link","option",Gc(534),Gc(490),Gc(485),Gc(497),Gc(540),Gc(477),Gc(510),Gc(529),Gc(542)]),qc=[Gc(526),Gc(545),"title",Gc(522)],jc=Gc(520),$c=Gc(484),AB=Gc(550),tB=[Gc(523),"autocomplete"],eB={children:A=>A[Gc(531)],parent:A=>A.parentElement??void 0,ownText(A){const t=Gc;let e="";for(const r of A.childNodes)if(3===r[t(511)]){const A=(r.textContent??"").trim();A&&(e+=A)}return e},kind:A=>A[Gc(513)],isSkipped(A){const t=Gc;return!!Jc.has(A[t(513)])||A.hasAttribute(t(528))||A.getAttribute("aria-hidden")===t(494)},isUnit(A){const t=Gc;if(Wc.has(A[t(513)]))return!0;const e=A.getAttribute("role")?.[t(481)]();return Boolean(e&&Yc[t(524)](e))},isHeading:A=>Zc.has(A[Gc(513)]),isInteractive(A){const t=Gc;if(zc[t(524)](A[t(513)]))return!0;const e=A[t(483)](t(522))?.[t(481)]();return!(!e||!_c[t(524)](e))||A[t(535)](t(521))||A[t(535)](t(475))},isMarked:A=>A.hasAttribute("data-intent-item"),signature(A){const t=Gc,e=Array[t(486)](A.classList).sort()[t(537)](".");return A[t(513)]+"#"+e},mixDigestAttributes(A,t){const e=Gc;let r=A;const n=t.tagName;for(const A of qc){const n=t[e(483)](A);n&&(r=ha(r,A+":"+n))}const s=t[e(483)](jc);if(null!==s){r=ha(r,e(533)+s);const A=t[e(483)]($c);A&&(r=ha(r,A))}t[e(535)](AB)&&(r=ha(r,e(489)));const o=t[e(483)](e(505));if(null!==o&&(r=ha(r,e(530)+o)),"INPUT"===n||n===e(548)||n===e(536))for(const A of tB){const n=t[e(483)](A);null!==n&&(r=ha(r,A+":"+n))}if("A"===n||n===e(547)){const A=t[e(483)](e(475));A&&(r=ha(r,A))}else if(n===e(502)){const A=t[e(483)]("alt");A&&(r=ha(r,A));const n=t[e(491)]||t[e(483)](e(512));n&&(r=n[e(515)](e(527))?da(r,n[e(538)]):ha(r,n))}return r}};function rB(){const A=["39387NjqskY","30BvnAgR","1098970jePybg","map","name","length","actions","974611YtSBYN","kind","trim","fieldValue","label","push","68QfhMNL","alt","66hyohGz","type","heading","role","href","27mcOBgw","src","value","104038RfCqwu","35273riWAJR","83656edtPjn","643630TBnsuu","slice","images"];return(rB=()=>A)()}(A=>{const t=aB,e=A();for(;;)try{if(180709==parseInt(t(377))/1+parseInt(t(380))/2+parseInt(t(383))/3*(-parseInt(t(367))/4)+parseInt(t(385))/5+parseInt(t(369))/6*(parseInt(t(378))/7)+-parseInt(t(379))/8*(parseInt(t(374))/9)+parseInt(t(384))/10*(-parseInt(t(390))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(rB);const nB={text:400,actions:12,images:6,label:80,heading:120,fields:30,fieldValue:300};function sB(A,t){const e=aB;return A?A.replace(/\s+/g," ")[e(392)]()[e(381)](0,t):""}function oB(...A){const t=aB;let e="";for(const r of A)e+=r[t(388)]+":"+r;return e}function iB(A,t,e,r,n){const s=aB,o=oB(...r.map(A=>oB(A.label,A[s(372)]??"",A[s(373)]??""))),i=oB(...n[s(386)](A=>oB(A[s(368)]??"",A[s(375)]??"")));return(A=>{const t=Ba;let e="";for(const{seed:r,prime:n}of wa){let s=r>>>0;for(let e=0;e<A.length;e++){const r=A[t(460)](e);s=Math.imul(s^255&r,n)>>>0,s=Math[t(454)](s^r>>>8,n)>>>0}e+=s[t(456)](36).padStart(7,"0")}return e})(oB(A,t,e,o,i))}function aB(A,t){return A-=366,rB()[A]}const cB=pB;(A=>{const t=pB,e=A();for(;;)try{if(556267==-parseInt(t(493))/1*(parseInt(t(521))/2)+parseInt(t(510))/3+-parseInt(t(461))/4+-parseInt(t(472))/5*(-parseInt(t(476))/6)+-parseInt(t(463))/7+-parseInt(t(516))/8*(parseInt(t(514))/9)+parseInt(t(466))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(wB);const BB=cB(500),lB=cB(518);function gB(A,t=nB.text){const e=cB;if(Ja(A))return"";if(Ya(A))return sB(Za(A),t);const r=[];let n=t;const s=A=>{const t=pB;r.at(-1)!==A&&(r[t(467)](A),n-=A[t(486)])},o=A=>{const t=pB;if(!(n<=0||Ga(A))){if(ma(A)){const e=sB(Ac(A)?Na(A):Ha(A),n);return void(e&&(r[t(467)](e),n-=e.length))}if(Xa(A)){const e=sB(Na(A),n);return void(e&&(r[t(467)](e),n-=e[t(486)]))}for(const e of A[t(458)]){if(n<=0)return;if(e[t(513)]===Node.TEXT_NODE){const A=sB(e[t(512)],n);A&&s(A)}else e.nodeType===Node[t(455)]&&o(e)}}};return o(A),r[e(484)](" ")[e(523)](0,t)}const hB=new Set([cB(496),cB(509),cB(473),cB(494),cB(470),"file"]);function dB(A){const t=cB,e=A[t(507)](!0);for(const A of e[t(482)]("input, textarea, select, button, option"))A[t(505)]();return sB(e[t(512)],nB[t(483)])}function wB(){const A=["labels","href","remove","map","cloneNode","INPUT","button","23547RzRwKp","value","textContent","nodeType","54LOWWiO","text","478096Qggxqc","querySelector",'a[href], button, [role="button"], [role="link"], [role="option"], [role="tab"], input[type="submit"], input[type="button"]',"startsWith","from","838eVNJfd","toLowerCase","slice","ELEMENT_NODE","TEXTAREA","checkbox","childNodes","src","images","2180028IKLJlX","BUTTON","5414073jiASoG","closest","filter","23110630RBgLAz","push","alt","checked","hidden","matches","2065QaYAFP","reset","type","blob:","5598saImdn","tagName","name","actions","radio","disabled","querySelectorAll","label","join","link","length","aria-labelledby","role","getAttribute","aria-label","ownerDocument","SELECT","1124AhDCbs","image","find","submit","placeholder","has","trim",'h1, h2, h3, h4, h5, h6, [role="heading"]',"elements","heading"];return(wB=()=>A)()}function uB(A){const t=cB,e=sB(A.getAttribute("aria-label"),nB[t(483)]);if(e)return e;const r=A[t(503)]?.[0];if(r){const A=dB(r);if(A)return A}const n=A[t(464)](t(483));if(n){const A=dB(n);if(A)return A}return sB(A[t(489)](t(497)),nB[t(483)])}function QB(A,t){const e=cB;if(za(A))return Za(A);if(t===e(457)||t===e(480))return A[e(469)]?"checked":"unchecked";if("SELECT"===A[e(477)]){const t=A;return t.selectedOptions?.[0]?.textContent??t[e(511)]}return Ha(A)}function pB(A,t){return A-=455,wB()[A]}function CB(A){const t=cB;if(Ja(A))return"";if(Ya(A))return Za(A);const e=sB(A[t(489)](t(490)),nB[t(483)]);if(e)return e;const r=A.getAttribute(t(487));if(r){const e=r.split(/\s+/)[t(506)](e=>A[t(491)].getElementById(e))[t(465)](Boolean)[t(506)](A=>gB(A,nB[t(483)]))[t(484)](" ");if(e[t(499)]())return sB(e,nB.label)}const n=sB(A[t(489)]("title"),nB.label);if(n)return n;const s=gB(A,nB[t(483)]);if(s)return s;const o=A[t(517)]("img[alt]");return sB(o?.[t(489)]("alt"),nB[t(483)])}function UB(A){const t=cB,e=A.currentSrc||A[t(459)]||"";if(e&&!e.startsWith("data:")&&!e[t(519)](t(475)))return e[t(486)]>512?void 0:e}function fB(A){const t=cB,e=A[t(489)](t(488))?.[t(522)]();return e||("A"===A[t(477)]?t(485):A[t(477)]===t(462)||A[t(477)]===t(508)?t(509):A.tagName[t(522)]())}function FB(A,t){return A-=217,IB()[A]}let mB;function yB(){if(!mB)throw new Error("[intent] No platform host installed. Import @solomei-ai/intent (web) or @solomei-ai/intent/native before use.");return mB}function IB(){const A=["2377773vPbCsw","8CrdBqD","920OZnYjC","1411362ElorYu","386474QIfADx","2513154fsKAZS","8903708wYVnuT","556890vNmdJT","10oWjvEf","2tkyzUB","2764LFSopB"];return(IB=()=>A)()}(A=>{const t=FB,e=A();for(;;)try{if(224066==-parseInt(t(221))/1+-parseInt(t(226))/2*(parseInt(t(224))/3)+parseInt(t(227))/4*(parseInt(t(219))/5)+-parseInt(t(220))/6+parseInt(t(222))/7+-parseInt(t(218))/8*(parseInt(t(217))/9)+parseInt(t(225))/10*(parseInt(t(223))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(IB);const HB=xB;(A=>{const t=xB,e=A();for(;;)try{if(868497==-parseInt(t(386))/1*(parseInt(t(385))/2)+-parseInt(t(368))/3+parseInt(t(370))/4*(-parseInt(t(387))/5)+-parseInt(t(366))/6+parseInt(t(372))/7*(parseInt(t(383))/8)+-parseInt(t(388))/9*(-parseInt(t(369))/10)+parseInt(t(374))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(LB);let EB=!1;const bB={get(A){const t=xB;try{return localStorage[t(367)](A)??void 0}catch{return}},set(A,t){const e=xB;try{localStorage[e(365)](A,t)}catch{}},remove(A){const t=xB;try{localStorage[t(379)](A)}catch{}}};function xB(A,t){return A-=362,LB()[A]}const vB={platform:"web",now:()=>performance[HB(378)](),wallClock:()=>Date[HB(378)](),storage:bB,send:async(A,t,{beacon:e,byteLength:r})=>{const n=xB;if(e)return((A,t)=>{const e=xB;if(typeof navigator.sendBeacon!==e(384))return!1;try{return navigator[e(380)](A,new Blob([t],{type:e(364)}))}catch{return!1}})(A,t);const s=await(async A=>{const t=xB,e=globalThis[t(363)];if(EB&&typeof e===t(384))try{const r=new Blob([A])[t(373)]()[t(390)](new e(t(377)));return await new Response(r)[t(375)]()}catch{return}})(t),o={"Content-Type":n(364)},i=bB[n(362)](ea);i&&(o[n(389)]=i);const a=ic();a&&(o["x-intent-sid"]=a),s&&(o[n(381)]=n(377));const c=await fetch(A,{method:"POST",headers:o,body:s??t,keepalive:r<=6e4,credentials:"omit"});return!c.ok&&vB[n(371)]("[Transport] batch rejected with "+c.status),c.ok},scheduleIdle:async()=>{const A=Ia,{scheduler:t}=globalThis;if(t&&"function"==typeof t[A(420)])try{return void await t[A(420)](()=>{},{priority:A(410)})}catch{}typeof requestIdleCallback!==A(409)?await new Promise(A=>{setTimeout(A,0)}):await new Promise(A=>{requestIdleCallback(()=>{A()},{timeout:200})})},log(...A){const t=HB;try{typeof localStorage!==t(382)&&localStorage[t(367)](Aa)===t(376)&&console.log(...A)}catch{}}};function KB(){void 0===mB&&(mB=vB)}function LB(){const A=["40885YbYfvL","1314WnYVZg","x-sl-access-token","pipeThrough","get","CompressionStream","application/json","setItem","8609670udroIU","getItem","3400686ATlIIB","71810cBvlQm","12GpvoNV","log","7nqgkeR","stream","23431628JvtQHI","blob","enabled","gzip","now","removeItem","sendBeacon","Content-Encoding","undefined","5216984BWXSSx","function","738324KEHcHR","1JGdSbO"];return(LB=()=>A)()}const SB=Al;function DB(){const A=["parentElement","contenteditable","alt","3304bfVWWM","setGeometry","data-intent-redact-label","registerVisible","56645tRchbk","addEventListener","729372ylIXvv","round","29CqxPmH","scheduleIdle","then","unobserve","srcset","1323196SyUyWT","checkVisibility","clear","target","getOnScreen","25991810nXuqZa","isConnected","reconcile","title","removeEventListener","boundingClientRect","1625508eVKBJr","resegmentDebounceMs","resegmentMaxDelayMs","log","16584vEJCYg","aria-labelledby","resize","race","data-intent-redact","DOMContentLoaded","getCoverage","role","segmentOptions","src","map","observe","isIntersecting","type","now","20178UrYzOr","body","disconnect","function","intersectionRatio","prototype","336Kzqunr"];return(DB=()=>A)()}(A=>{const t=Al,e=A();for(;;)try{if(691502==-parseInt(t(298))/1*(parseInt(t(318))/2)+-parseInt(t(314))/3+parseInt(t(303))/4+-parseInt(t(294))/5*(parseInt(t(339))/6)+parseInt(t(296))/7+-parseInt(t(290))/8*(parseInt(t(333))/9)+parseInt(t(308))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(DB);const MB={visibilityIntervalMs:500,resegmentDebounceMs:700,resegmentMaxDelayMs:1500,segmentOptions:{}},TB=new Oc({now:()=>performance[SB(332)](),extract:(A,t)=>function(A,t){const e=cB;if(Ja(A))return;const r=Ya(A)?void 0:A.matches(BB)?A:[...A[e(482)](BB)][e(495)](A=>!Ja(A)&&!Ya(A)),n=r?sB(gB(r,nB[e(502)]),nB[e(502)]):"",s=[],o=A[e(471)](lB)?[A]:[...A.querySelectorAll(lB)];for(const A of o){if(s[e(486)]>=nB[e(479)])break;if(Ja(A))continue;if(Ya(A)){s[e(467)]({label:Za(A),role:fB(A)});continue}const t=CB(A);if(!t)continue;const r=A[e(489)](e(504))??void 0;s.push({label:t,role:fB(A),...r?{href:r}:{}})}const i=[];for(const t of A[e(482)]("img")){if(i[e(486)]>=nB[e(460)])break;if(Ja(t)||Ya(t))continue;const A=sB(t.getAttribute(e(468)),nB[e(483)]),r=UB(t);(A||r)&&i[e(467)]({...A?{alt:A}:{},...r?{src:r}:{}})}return(A=>{const t=aB,e=sB(A[t(371)],nB[t(371)]),r=sB(A.text,nB.text),n=[];for(const e of A.actions??[]){if(n[t(388)]>=nB[t(389)])break;const A=sB(e.label,nB[t(394)]);A&&n[t(366)]({label:A,role:e[t(372)],...e[t(373)]?{href:e[t(373)]}:{}})}const s=[];for(const e of A[t(382)]??[]){if(s[t(388)]>=nB.images)break;const A=sB(e[t(368)],nB[t(394)]),{src:r}=e;(A||r)&&s[t(366)]({...A?{alt:A}:{},...r?{src:r}:{}})}if(r||e||0!==n[t(388)]||0!==s.length)return{ref:iB(A[t(391)],e,r,n,s),kind:A[t(391)],...e?{heading:e}:{},text:r,actions:n,images:s}})({kind:t,heading:n,text:gB(A),actions:s,images:i})}(A,t),scheduleIdle:()=>vB[SB(299)](),log:A=>{vB[SB(317)](A)}});let kB,OB,RB,VB,NB,GB,PB,XB=MB,JB=!1;function WB(){GB?.(),GB=void 0}async function YB(A=2e3){const t=SB;PB&&await Promise[t(321)]([PB,new Promise(t=>{setTimeout(t,A)})])}function ZB(){const A=SB,t=(()=>{const A=SB;return typeof Element[A(338)][A(304)]===A(336)})();TB.refreshVisibility(e=>!t||e[A(304)]({opacityProperty:!0,visibilityProperty:!0,contentVisibilityAuto:!0}))}function zB(){const A=SB;ZB(),TB.registerVisible()[A(300)](WB)}function _B(A){const t=SB;for(const e of A){const{x:A,y:r,width:n,height:s}=e[t(313)];TB[t(291)](e[t(306)],{intersecting:e[t(330)],ratio:e[t(337)],rect:{x:Math[t(297)](A),y:Math[t(297)](r),w:Math[t(297)](n),h:Math[t(297)](s)}})}zB()}function qB(){const A=SB;if(!kB)return;const t=((A,t={})=>function(A,t,e={}){const r=Rc,n={...Vc,...e},s=((A,t)=>{const e=new Map,r=A=>{const n=Rc,s=t[n(428)](A),o={textLength:s[n(435)],headings:t.isHeading(A)?1:0,interactives:t[n(433)](A)?1:0,contentHash:t[n(422)](ha(ha(ca,s),t.kind(A)),A)};for(const e of t[n(440)](A)){if(t[n(409)](e))continue;const A=r(e);o[n(436)]+=A.textLength,o.headings+=A[n(420)],o[n(434)]+=A[n(434)],o.contentHash=da(o[n(437)],A[n(437)])}return e[n(424)](A,o),o};return r(A),e})(A,t),o=[],i=A=>s[r(421)](A)??{textLength:0,headings:0,interactives:0,contentHash:ca},a=(A,t)=>{const e=r,n=i(A);o[e(425)]({node:A,reason:t,textLength:n[e(436)],interactives:n.interactives,headings:n[e(420)],contentHash:n[e(437)]})},c=A=>{const t=r,e=i(A);return e[t(434)]>0||e[t(436)]>=n[t(423)]},B=(A,e)=>{const s=r;if(o[s(435)]>=n.maxSegments||t[s(409)](A))return!1;if(t.isMarked(A))return a(A,s(431)),!0;const l=i(A);if(e>=n.maxDepth)return!!c(A)&&(a(A,"depth"),!0);if(l[s(436)]<=n[s(412)]&&l[s(420)]<=n[s(418)]&&l.interactives<=n[s(410)]&&c(A)){if(t[s(432)](A))return a(A,s(417)),!0;if(((A,t)=>{const e=Rc,r=t[e(430)](A);if(void 0===r)return!1;const n=t[e(426)](A);let s=0;for(const A of t[e(440)](r))if(t[e(426)](A)===n&&(s++,s>=3))return!0;return!1})(A,t))return a(A,s(419)),!0;if(l[s(420)]>0)return a(A,s(441)),!0}const g=o.length;let h=!1;for(const r of t[s(440)](A))h=B(r,e+1)||h;return!h&&c(A)?(a(A,s(429)),!0):h&&l[s(436)]>0&&o.slice(g).reduce((A,t)=>A+t[s(436)],0)/l.textLength<n.minDescentCoverage&&c(A)?(o.length=g,a(A,"unit"),!0):h};for(const e of t[r(440)](A))B(e,0);return o}(A,eB,t))(document[A(334)],XB[A(326)]),{added:e,removed:r}=TB[A(310)](t[A(328)](({node:A,reason:t,contentHash:e})=>({node:A,kind:t,fingerprint:e})),t=>t[A(309)]);for(const t of e)kB[A(329)](t);for(const t of r)kB[A(301)](t)}function jB(){const A=SB;return void 0!==VB&&(clearTimeout(VB),VB=void 0),NB=void 0,vB[A(299)]()[A(300)](qB)}function $B(){const A=SB,t=performance[A(332)]();NB??=t,t-NB>=XB.resegmentMaxDelayMs?jB():(void 0!==VB&&clearTimeout(VB),VB=setTimeout(jB,XB[A(315)]))}function Al(A,t){return A-=290,DB()[A]}function tl(){return JB&&void 0!==NB?jB():Promise.resolve()}function el(A={}){const t=SB;JB||"undefined"==typeof IntersectionObserver||(document[t(334)]?(JB=!0,KB(),XB={...MB,...A},PB=new Promise(A=>{GB=A}),kB=new IntersectionObserver(_B,{threshold:[0,.25,.75]}),vB.scheduleIdle()[t(300)](qB),OB=new MutationObserver($B),OB.observe(document[t(334)],{childList:!0,subtree:!0,attributes:!0,attributeFilter:["href",t(327),t(302),"sizes",t(342),"aria-label",t(319),t(311),t(325),t(322),t(292),"data-html2canvas-ignore",t(331),"autocomplete",t(341)],characterData:!0}),window[t(295)](t(320),$B,{passive:!0}),RB=setInterval(zB,XB.visibilityIntervalMs)):document.addEventListener(t(323),()=>{el(A)},{once:!0}))}function rl(){return TB[SB(307)]()}const nl=()=>TB.drainRegistrations();function sl(){return TB[SB(324)]()}const ol=il;function il(A,t){return A-=204,ll()[A]}(A=>{const t=il,e=A();for(;;)try{if(605208==-parseInt(t(254))/1*(-parseInt(t(208))/2)+-parseInt(t(215))/3*(-parseInt(t(232))/4)+-parseInt(t(247))/5*(-parseInt(t(260))/6)+parseInt(t(220))/7*(-parseInt(t(205))/8)+-parseInt(t(250))/9+-parseInt(t(233))/10*(parseInt(t(229))/11)+parseInt(t(207))/12)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ll);const al={batchSize:20,flushIntervalMs:5e3,maxBuffered:200},cl=Object.freeze(new Set([ol(251),"input-submit",ol(211)]));function Bl(A){const t=ol;let e=0;for(let r=0;r<A[t(230)];r++){const t=A.charCodeAt(r);t<128?e+=1:t<2048?e+=2:t>=55296&&t<=56319?(e+=4,r++):e+=3}return e}function ll(){const A=["stats","has","event","attach","splice","flushIntervalMs","5iqleRF"," events undelivered (","stringify","747144LBIfqn","click","wallClock"," oldest events","11621UmUWMv","set","sent","flush","send","[Transport] took custody of a batch still in flight at teardown","3570222RWZryp","start","join","147040FYgoxa","maxBuffered","4872792wFJehR","206wxseMJ","dropped","generation","form-submit","[Transport] buffer full, dropped ","extras","entries","1994469PduQAT","schedule","flushOn","[Transport] dropped an in-flight batch discarded mid-request","inFlight","385sIcaEc","cancelTimer","persistInFlight","[Transport] replay failed","onTeardownBatch","replay","buffer","options","release","12801415qRSrfX","length","log","4vWehMn","10fgzHTZ","stop"," events failed to send","endpoint"," bytes, beacon=","failed","push","[Transport] "];return(ll=()=>A)()}class gl{[ol(227)];[ol(217)];[ol(226)]=[];extras={};[ol(221)];generation=0;inFlight=new Map;[ol(241)]={sent:0,failed:0,dropped:0};constructor(A){const t=ol;this[t(227)]=A,this[t(217)]=A[t(217)]??cl}getStats(){const A=ol;return{...this[A(241)],buffered:this[A(226)][A(230)]}}[ol(261)](){const A=ol;this[A(221)]??=this.options[A(216)](()=>{this[A(257)]()},this[A(227)][A(246)])}[ol(234)](){const A=ol;this.cancelTimer?.(),this[A(221)]=void 0,this.buffer=[],this.extras={},this[A(210)]++}discard(){const A=ol;this.buffer=[],this.extras={},this[A(210)]++}enqueue(A){const t=ol;if(this[t(226)].push(A),this[t(226)].length>this[t(227)][t(206)]){const A=this[t(226)][t(230)]-this[t(227)][t(206)];this[t(226)].splice(0,A),this[t(241)][t(209)]+=A,yB().log(t(212)+A+t(253))}(this[t(226)][t(230)]>=this[t(227)].batchSize||this[t(217)][t(242)](A[t(243)]))&&this[t(257)]()}[ol(244)](A,t){const e=ol;0!==t[e(230)]&&(this.extras[A]=[...this[e(213)][A]??[],...t])}async flush({beacon:A=!1}={}){const t=ol;if(A&&this.persistInFlight(),0===this.buffer[t(230)]&&0===Object.keys(this[t(213)])[t(230)])return;const e=yB(),r=this[t(226)],n=this[t(213)],s=this.generation;let o;try{o=JSON[t(249)]({...this[t(227)].context(),sentAt:e[t(252)](),events:r,...n})}catch(A){return this[t(226)]=[],this[t(213)]={},this.stats.failed+=r[t(230)],void e.log(t(240)+r.length+" events dropped, batch could not be serialised",A)}this[t(226)]=[],this[t(213)]={};const i=Bl(o);this[t(219)][t(255)](o,{generation:s,...A?{release:this[t(227)][t(224)]?.(o)}:{}});let a=!1;try{a=await e[t(258)](this[t(227)][t(236)](),o,{beacon:A,byteLength:i})}catch(A){e[t(231)](t(240)+r[t(230)]+t(235),A)}const c=this[t(219)].get(o)?.release;return this[t(219)].delete(o),a?(this[t(241)][t(256)]+=r[t(230)],void c?.()):(this[t(241)][t(238)]+=r[t(230)],e.log(t(240)+r[t(230)]+t(248)+i+t(237)+A+")"),s!==this[t(210)]?(e[t(231)](t(218)),void c?.()):void(A||this.restore(r,n)))}[ol(222)](){const A=ol;if(this[A(227)][A(224)])for(const[t,e]of this[A(219)])e[A(228)]||e.generation!==this[A(210)]||(e[A(228)]=this[A(227)][A(224)](t),yB()[A(231)](A(259)))}restore(A,t){const e=ol;for(const[A,r]of Object[e(214)](t))this.extras[A]=[...r,...this[e(213)][A]??[]];this[e(226)]=[...A,...this[e(226)]];const r=this[e(226)].length-this[e(227)][e(206)];r>0&&(this.buffer[e(245)](0,r),this[e(241)][e(209)]+=r,yB()[e(231)]("[Transport] buffer full after retry, dropped "+r+e(253)))}async[ol(225)](A){const t=ol,e=yB();try{return await e[t(258)](this[t(227)][t(236)](),A,{beacon:!1,byteLength:Bl(A)})}catch(A){return e[t(231)](t(223),A),!1}}}(A=>{const t=Ul,e=A();for(;;)try{if(639536==parseInt(t(244))/1+parseInt(t(247))/2*(-parseInt(t(256))/3)+parseInt(t(236))/4+-parseInt(t(235))/5*(-parseInt(t(241))/6)+-parseInt(t(237))/7*(parseInt(t(234))/8)+parseInt(t(245))/9*(parseInt(t(251))/10)+-parseInt(t(231))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(yl);const hl={...al,compress:!1};function dl(){const A=Ul;return(vB.storage[A(242)](na)??aa)+A(246)}function wl(){const A=Ul;return{clientId:vB[A(232)][A(242)](ea),sid:ic(),platform:A(252)}}function ul(A,t){const e=setInterval(A,t);return()=>{clearInterval(e)}}let Ql,pl=!1;function Cl(){return KB(),Ql??=new gl({...al,endpoint:dl,context:wl,schedule:ul}),Ql}function Ul(A,t){return A-=231,yl()[A]}async function fl(A={}){return Cl().flush(A)}function Fl(A){const t=Ul;Cl()[t(239)](A)}function ml(A,t){const e=Ul;Cl()[e(240)](A,t)}function yl(){const A=["1165gRHPiR","511772hhwSRi","569177paphMj","stop","enqueue","attach","24342QxJyKc","get","addEventListener","665605LrRHmA","270svpsvZ","/v2/events","1504974lNqHYu","discard","start","visibilitychange","422890PxkJDu","web","hidden","pagehide","getStats","3QQHGlw","15981394HsRXOp","storage","removeEventListener","16BeMwRo"];return(yl=()=>A)()}function Il(){document.visibilityState===Ul(253)&&fl({beacon:!0})}function Hl(){fl({beacon:!0})}const El=kl;(A=>{const t=kl,e=A();for(;;)try{if(156133==-parseInt(t(345))/1+-parseInt(t(311))/2*(-parseInt(t(388))/3)+parseInt(t(366))/4*(-parseInt(t(376))/5)+-parseInt(t(286))/6*(parseInt(t(356))/7)+-parseInt(t(386))/8+parseInt(t(374))/9+parseInt(t(365))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Vl);let bl,xl=0,vl=0;function Kl(A){const t=kl;try{return new Blob([A])[t(367)]}catch{return A[t(341)]}}let Ll,Sl=!1;const Dl="__intent__sdk__initialized__",Ml=[El(276),El(319),"a",El(313),El(337),El(312),El(348),"[onclick]"][El(328)](",");function Tl(){const A=El;return localStorage[A(305)](ji)===A(361)}function kl(A,t){return A-=260,Vl()[A]}function Ol(){return hc(),Tl()&&Boolean(ic())&&(()=>{const A=El;return Boolean(localStorage[A(305)](ea)?.[A(323)]().length)})()}function Rl(){return!Ol()||wc}function Vl(){const A=["getBoundingClientRect","textContent","has","status","number","getItem","page-focus","resize","input-submit","replaceState","hasAttribute","38DiPMVB",'[role="button"]','input[type="submit"]',"right"," — nothing new on screen","tagName","name"," newly on screen","a[href]","SELECT","toISOString","segments","trim","no-store","width","pathname","target","join","event","form-submit","/p.gif","filter","forEach","lat","height","html",'input[type="button"]',"hidden","documentElement","complete","length","page-blur","now","storage","169418VyqiFe","CONTENTEDITABLE","bottom",'[role="link"]',"hostname","innerHTML","pageview","search","map","newline","innerWidth","1029UjiMzR","docH","then","innerHeight","location","granted","intentEnter","img"," — ","4337730kpKzxA","691792iPUAbi","size","data-intent-redact","scrollX","pixel body fallback failed with ","top","/events","intent","2433996DxdKel","screenshot","5cmYbru","absolute","hasFocus","readyState","pointerdown","left","scrollY","digest","Enter","closest","2242088BBOvfh","entries","43638RvHvqQ","INPUT","[Timing] jpeg-encoding: ","querySelector","[Transmit] ","ref","TEXTAREA","blur","stringify","x-intent-sid","localhost","events endpoint returned ","context","scroll","dataset","key","image/jpeg","addEventListener","POST","setAttribute","toFixed","scrollHeight","href","attributes","role","[Transmit] DROPPED ","load","click","round","cloneNode","isSecureContext","value","referrer","button"," bytes), ","popstate","bbox","apply","input, textarea, select, [data-intent-redact]","device"," bytes) failed on /events, trying /p.gif","omit","visibilitychange","8238mnFoxh","lon","defineProperty","body","application/json","[Timing] html2canvas-pro: ","toLowerCase","[Digest] settled after ","getAttribute","title","contenteditable","toDataURL","<no visible label>","focus"];return(Vl=()=>A)()}async function Nl(A){for(;Ll;)await Ll;return Ll=(async()=>{const o=kl;try{const i=performance[o(343)](),a=performance[o(343)](),c=(A=>{const t=El;if(Ga(A))return"";const e=A[t(272)](!1);return Array.from(A[t(266)])[t(333)](({name:A,value:r})=>{e[t(262)](A,r)}),Fa(A)?Fa(e)&&(e[t(274)]=A[t(274)]):ma(A)?e[t(350)]=A.innerHTML:e[t(301)]=A[t(301)],rc(e),Fa(e)&&e[t(262)](t(274),e.value),e.outerHTML})(A);Ca("[Timing] serialize: "+(performance[o(343)]()-a).toFixed(2)+"ms");const B=A[o(300)](),l=performance[o(343)](),g={left:window[o(369)],top:window.scrollY,right:window[o(369)]+window[o(355)],bottom:window.scrollY+window[o(359)]},h=await((A,o={})=>(async(A,t,o)=>{if((A=>{["scale","width","height","imageTimeout","x","y","windowWidth","windowHeight","scrollX","scrollY"].forEach(t=>{const e=A[t];if(null!=e&&"number"!=typeof e){const r=Number(e);Number.isNaN(r)||(A[t]=r)}})})(t),!t.skipValidation){const r=t.validator||((A={})=>new e({allowDataUrls:!0,maxImageTimeout:3e5,...A}))(),n=r.validateElement(A);if(!n.valid)throw new Error(n.error);const s=r.validateOptions(t);if(!s.valid)throw new Error(`Invalid options: ${s.error}`)}if(!A||"object"!=typeof A)throw new Error("Invalid element provided as first argument");const i=A.ownerDocument;if(!i)throw new Error("Element is not attached to a Document");const a=i.defaultView;if(!a)throw new Error("Document is not attached to a Window");const c=((A,t,e)=>({logging:A.logging??!0,cache:A.cache??t.cache,...e}))(t,o,(A=>({allowTaint:A.allowTaint??!1,imageTimeout:A.imageTimeout??15e3,proxy:A.proxy,useCORS:A.useCORS??!1,customIsSameOrigin:A.customIsSameOrigin,maxCacheSize:A.maxCacheSize}))(t)),B=((A,t)=>({windowWidth:A.windowWidth??t.innerWidth??800,windowHeight:A.windowHeight??t.innerHeight??600,scrollX:A.scrollX??t.pageXOffset??0,scrollY:A.scrollY??t.pageYOffset??0}))(t,a),l=new n(B.scrollX,B.scrollY,B.windowWidth,B.windowHeight),g=new Ji(c,l,o),h=t.enablePerformanceMonitoring??t.logging??!1,d=new r(g,h);d.start("total",{width:B.windowWidth,height:B.windowHeight});const w=t.signal;Wi(w);const u=t.foreignObjectRendering??!1,Q=((A,t,e)=>({allowTaint:A.allowTaint??!1,onclone:A.onclone,ignoreElements:A.ignoreElements,iframeContainer:A.iframeContainer,inlineImages:e,copyStyles:e,cspNonce:A.cspNonce??t.cspNonce}))(t,o,u);g.logger.debug(`Starting document clone with size ${l.width}x${l.height} scrolled to ${-l.left},${-l.top}`),d.start("clone");const p=new Fs(g,A,Q),C=p.clonedReferenceElement;if(!C)throw new Error("Unable to find element in cloned iframe");const U=await p.toIFrame(i,l);d.end("clone"),w?.aborted&&((t.removeContainer??1)&&Fs.destroy(U),Wi(w));const{width:f,height:F,left:m,top:y}=se(C)||"HTML"===C.tagName?(A=>{const t=A.body,e=A.documentElement;if(!t||!e)throw new Error("Unable to get document size");return new n(0,0,Math.max(Math.max(t.scrollWidth,e.scrollWidth),Math.max(t.offsetWidth,e.offsetWidth),Math.max(t.clientWidth,e.clientWidth)),Math.max(Math.max(t.scrollHeight,e.scrollHeight),Math.max(t.offsetHeight,e.offsetHeight),Math.max(t.clientHeight,e.clientHeight)))})(C.ownerDocument):s(g,C),I=((A,t,e)=>{const r=t.ownerDocument,n=r.documentElement?jt(A,getComputedStyle(r.documentElement).backgroundColor):$t.TRANSPARENT,s=r.body?jt(A,getComputedStyle(r.body).backgroundColor):$t.TRANSPARENT,o="string"==typeof e?jt(A,e):null===e?$t.TRANSPARENT:4294967295;return t===r.documentElement?Ft(n)?Ft(s)?o:s:n:o})(g,C,t.backgroundColor),H=((A,t,e,r,n,s,o)=>({canvas:A.canvas,backgroundColor:t,signal:A.signal,scale:A.scale??o??1,x:(A.x??0)+e,y:(A.y??0)+r,width:A.width??Math.ceil(n),height:A.height??Math.ceil(s),imageSmoothing:A.imageSmoothing,imageSmoothingQuality:A.imageSmoothingQuality}))(t,I,m,y,f,F,a.devicePixelRatio??1);let E,b;try{return u?(g.logger.debug("Document cloned, using foreign object rendering"),d.start("render-foreignobject"),E=await new Si(g,H).render(C),d.end("render-foreignobject")):(g.logger.debug(`Document cloned, element located at ${m},${y} with size ${f}x${F} using computed rendering`),g.logger.debug("Starting DOM parsing"),d.start("parse"),Wi(w),g.cache.startDefer(),b=Ko(g,C),d.end("parse"),d.start("preload"),await g.cache.preloadAll(),d.end("preload"),I===b.styles.backgroundColor&&(b.styles.backgroundColor=$t.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${H.x},${H.y} with size ${H.width}x${H.height}`),d.start("render"),Wi(w),E=await new vi(g,H).render(b),d.end("render")),d.start("cleanup"),(t.removeContainer??1)&&(Fs.destroy(U)||g.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),d.end("cleanup"),d.end("total"),g.logger.debug("Finished rendering"),h&&d.logSummary(),E}finally{b&&b.restoreTree()}})(A,o,t.fromElement(A,{cspNonce:o.cspNonce,cache:o.cache})))(document[o(289)],{useCORS:!0,x:window[o(369)],y:window[o(382)],width:window.innerWidth,height:window[o(359)],scale:.6,logging:!1,onclone(A){rc(A)},ignoreElements(A){const t=o;if(!(A instanceof Element))return!1;if(Ja(A))return!0;const e=A[t(300)](),r={left:e.left+window[t(369)],top:e.top+window[t(382)],right:e[t(314)]+window.scrollX,bottom:e[t(347)]+window[t(382)]},n=100,s=r[t(347)]<g.top-n,i=r[t(371)]>g[t(347)]+n,a=r[t(314)]<g[t(381)]-n,c=r.left>g[t(314)]+n;if(!(a||c||s||i))return!1;const{position:B}=window.getComputedStyle(A);let l;if("fixed"===B||B===t(377)){const A=500;l=r[t(314)]<g.left-A||r[t(381)]>g[t(314)]+A||r[t(347)]<g[t(371)]-A||r[t(371)]>g.bottom+A}else l=i;return!!l&&!(A.tagName===t(389)||"TEXTAREA"===A[t(316)]||A[t(316)]===t(320)||A[t(310)](t(368))||A[t(391)](t(281)))}}),d=performance.now()-l;Ca(o(291)+d[o(263)](2)+"ms");const w=performance[o(343)](),u=h[o(297)](o(404),.8),Q=performance[o(343)]()-w;Ca(o(390)+Q.toFixed(2)+"ms");return Ca("[Timing] capture-total: "+(performance[o(343)]()-i)[o(263)](2)+"ms"),{html:c,bbox:{x:B.x,y:B.y,w:B[o(325)],h:B[o(335)]},img:u,fullCanvas:h}}finally{Ll=void 0}})(),Ll}function Gl(){const A=El,t=localStorage.getItem(ea),e={"Content-Type":A(290)};t&&(e["x-sl-access-token"]=t);const r=ic();return r&&(e[A(397)]=r),e}function Pl(){const A=El;return localStorage.getItem(ia)!==A(375)}const Xl={w:0,h:0,scrollY:0,docH:0};function Jl(){const A=El;Xl.w=window[A(355)],Xl.h=window[A(359)],Xl.scrollY=Math[A(271)](window[A(382)]),Xl[A(357)]=document[A(339)][A(264)]}function Wl(){return{...Xl}}function Yl(A,t,e){const r=El;if(!Ol())return;const n=rl(),s=e instanceof HTMLFormElement?function(A){const t=cB;if(Ja(A))return;const e=[];for(const r of Array[t(520)](A[t(501)])){if(!ma(r)||r[t(481)])continue;const A=r[t(477)]===t(456)||r[t(477)]===t(492)?r[t(477)].toLowerCase():(r[t(489)](t(474))??t(515))[t(522)]();hB[t(498)](A)||Ja(r)||e[t(467)]({name:r[t(489)]("name")??r.id,label:uB(r),type:A,value:QB(r,A)})}return((A,t)=>{const e=aB,r=[];let n=!1;for(const A of t){if(r[e(388)]>=nB.fields){n=!0;break}const t=sB(A[e(387)],nB[e(394)]),s=sB(A[e(394)],nB.label),o=t||s;o&&r.push({name:o,...s&&s!==o?{label:s}:{},...A[e(370)]?{type:A[e(370)]}:{},value:sB(A[e(376)],nB[e(393)])})}if(0===r[e(388)])return;const s=sB(A,nB[e(394)]);return{...s?{name:s}:{},fields:r,...n?{truncated:!0}:{}}})(A.getAttribute(t(478))??A[t(489)](t(490))??(A.id||void 0)??void 0,e)}(e):void 0;let o;if(e!==document.body&&e!==document[r(339)]&&!Ja(e)){const A=(A=>{const t=SB;let e=A;for(;e;){const A=TB.get(e);if(A)return A;e=e[t(340)]??void 0}})(e);o={tag:e.tagName,label:e instanceof HTMLFormElement?s?.[r(317)]??"":CB(e),role:e[r(294)]("role")??void 0,ref:A?.[r(383)]?.[r(393)]},ma(e)&&(o.value=za(e)?Za(e):Ha(e))}Ca("[Digest] "+A+r(364)+n[r(341)]+" segments on screen"),ml(r(322),nl()),tl(),Fl({ts:Date[r(343)](),event:A,url:window.location[r(265)],props:{...t,localTime:(new Date)[r(321)]()},...o?{chosen:o}:{},...s?{form:s}:{},onScreen:n,viewport:Wl(),coverage:sl()}),cl[r(302)](A)&&((A,t,e)=>{const r=El;void 0!==_l&&clearTimeout(_l);const n=new Set(e[r(353)](A=>A.ref)),s=XB[SB(316)]+Zl,o=e=>{_l=void 0,(async()=>{const r=kl;if(!Ol())return;await(async()=>{const A=SB;JB&&(await tl(),ZB(),await TB[A(293)]())})();const s=rl()[r(332)](A=>!n[r(302)](A[r(393)]));if(0===s.length)return 0===e?void(_l=setTimeout(()=>o(1),zl)):void Ca(r(293)+A+r(315));Ca(r(293)+A+r(364)+s[r(341)]+r(318)),ml(r(322),nl()),Fl({ts:Date.now(),event:"settled",url:window[r(360)].href,props:{after:A,label:t,localTime:(new Date)[r(321)]()},onScreen:s,viewport:Wl(),coverage:sl()})})()};_l=setTimeout(()=>o(0),s)})(A,o?.label,n)}const Zl=400,zl=900;let _l;function ql(A,t,e,r){Pl()?Yl(A,t,e):jl(A,t,e,r)}async function jl(A,t,e,r){const n=El;if(!Ol())return;const s={...t,localTime:(new Date)[n(321)]()};ma(e)&&!Ja(e)&&(s[n(274)]=za(e)?Za(e):Ha(e));let o="",i={x:0,y:0,w:0,h:0},a="";const c=!(A===n(401)||A===n(342)||A===n(306)),B=Date.now(),l=B-xl>=300;let g=r;const h="click"===A||"input-submit"===A||A===n(351);c&&(h&&!g||!g&&l)&&(g=await Nl(e),xl=B),g&&(o=g[n(336)],i=g[n(279)],a=g[n(363)]);const d=A===n(342)||"page-focus"===A||A===n(351),w={ts:Date[n(343)](),event:A,url:window[n(360)][n(265)],props:s,html:d?"":o,bbox:i,img:a};await async function(A){const t=El,e=(localStorage[t(305)](na)??aa)+t(372),r=localStorage[t(305)](ea)??void 0,n=JSON[t(396)]({...A,clientId:r}),s=Kl(n);let o;try{const A=await fetch(e,{method:t(261),headers:Gl(),body:n,keepalive:s<=6e4,credentials:t(284)});if(A.ok)return;o=new Error(t(399)+A.status)}catch(A){o=A}Ca(t(392)+A[t(329)]+" ("+s+t(283),o);try{await(async A=>{const t=El,e=(localStorage.getItem(na)??aa)+t(331),r=JSON[t(396)](A),n=await fetch(e,{method:t(261),headers:Gl(),body:r,keepalive:Kl(r)<=6e4,credentials:t(284),cache:t(324)});if(!n.ok)throw new Error(t(370)+n[t(303)])})(A)}catch(e){vl++,Ca(t(268)+A[t(329)]+" ("+s+t(277)+vl+" total",e)}}(w)}hc();let $l=!1;function Ag(){$l&&Pl()&&Tl()&&(function(A={}){const t=Ul;if(pl)return;pl=!0,KB();const{compress:e,...r}={...hl,...A};EB=e,Ql=new gl({...r,endpoint:dl,context:wl,schedule:ul}),Ql[t(249)](),window[t(243)](t(254),Hl),document[t(243)](t(250),Il)}(),el())}let tg=!1;function eg(){const A=El;!tg&&Ol()&&(tg=!0,ql(A(351),{url:window[A(360)][A(265)],title:document.title,ref:document[A(275)]},document.body))}function rg(){void 0!==_l&&(clearTimeout(_l),_l=void 0),tg=!1,hc(),(()=>{const A=SB;kB?.[A(335)](),OB?.disconnect(),window[A(312)](A(320),$B),void 0!==RB&&clearInterval(RB),void 0!==VB&&clearTimeout(VB),kB=void 0,OB=void 0,RB=void 0,VB=void 0,NB=void 0,TB[A(305)](),WB(),PB=void 0,JB=!1})(),(()=>{const A=Ul;Ql?.[A(248)]()})()}function ng(){const A=El;hc(),Ag(),Pl()?YB()[A(358)](eg):eg()}async function sg(A={}){const t=El;if(!Ol())return;const e=typeof A[t(334)]===t(304)&&"number"==typeof A[t(287)];if(e&&dc)return;if(!e&&Sl)return;const r=localStorage[t(305)](ra),n={context:await zi()};r&&(n.ip=r);for(const[e,r]of Object[t(387)](A))n[e]=r;await jl(t(400),n,document[t(289)],{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),!e&&(Sl=!0)}async function og(){await(async(A,t)=>{const e=Uc,r={canRequest:t(),geoEnabled:Cc(),deviceGeoSent:dc};if(!r[e(493)]||!r[e(474)]||r[e(497)])return;if(!("geolocation"in navigator))return;if(Qc)return;Qc=!0,wc=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};Date[e(484)]();try{await(navigator[e(480)]?.[e(508)]({name:e(507)}))}catch(A){}await new Promise(A=>{let t=!1;const r=async(e,r,n)=>{const s=Uc;t||(t=!0,Number[s(502)](e)&&Number[s(502)](r)&&(await(async(A,t,e)=>{const r=kl;await sg({lat:A,lon:t,source:r(282),...e})})(e,r,n),dc=!0),Qc=!1,wc=!1,pc=!0,A())};navigator.geolocation[e(476)](A=>{const t=Uc,e=A[t(483)];r(e[t(475)],e[t(491)],{accuracy:e.accuracy,altitude:typeof e[t(504)]===t(485)?e.altitude:void 0,altitudeAccuracy:typeof e[t(478)]===t(485)?e[t(478)]:void 0,heading:typeof e[t(488)]===t(485)?e.heading:void 0,speed:typeof e[t(503)]===t(485)?e.speed:void 0,timestamp:A[t(470)],visibility:document.visibilityState,focused:document[t(506)]()})},A=>{const t=Uc,e=A?.[t(495)],n={error:{code:e,name:1===e?t(472):2===e?"POSITION_UNAVAILABLE":t(3===e?489:468),message:A?.[t(490)]??""},online:navigator.onLine,visibility:document.visibilityState,focused:document.hasFocus(),secure:window[t(469)],proto:location[t(479)],host:location[t(482)]};r(void 0,void 0,n)},n)})})(0,Ol)}function ig(){(A=>{const t=Uc;if(uc||!Cc()||dc)return;uc=!0;const e=()=>{const t=Uc;window[t(494)](t(477),e,!0),window[t(494)]("keydown",e,!0),A()};window[t(486)](t(477),e,!0),window[t(486)]("keydown",e,!0)})(og)}let ag=!document[El(338)]&&document[El(378)](),cg=document[El(378)]();function Bg(){const A=El;if(Rl())return;const t=!document[A(338)]&&document[A(378)]();t&&(cg=!0),cg||t?t!==ag&&(ag=t,ql(A(t?306:342),{},document[A(289)])):ag=t}function lg(A){const t=El;let e=!1;const r=()=>{e||(e=!0,A())};document[t(379)]!==t(340)?window.addEventListener(t(269),r,{once:!0}):r()}function gg(){const A=El;(()=>{const A=globalThis;return!A[Dl]&&(Object[El(288)](A,Dl,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(Jl(),window[A(260)](A(307),pa(Jl,200),{passive:!0}),window[A(260)]("scroll",pa(Jl,100),{passive:!0}),Pl()&&(function(){const A=El,t=()=>""+window[A(360)][A(326)]+window[A(360)][A(352)];let e=t();const r=()=>{const r=A;t()===e||Rl()||(e=t(),Jl(),tg=!0,ql("pageview",{url:window.location.href,title:document.title,ref:document[r(275)],spa:!0},document.body))};for(const t of["pushState",A(309)]){const e=history[t];history[t]=function(...t){const n=e[A(280)](this,t);return r(),n}}window.addEventListener(A(278),r)}(),$l=!0,Ag()),lg(()=>{const t=A;Ol()&&(sg(),(window[t(273)]||location[t(349)]===t(398))&&(Cc()&&ig(),window.addEventListener("focus",()=>{mc()&&og()}),document.addEventListener(t(285),()=>{!document[t(338)]&&mc()&&og()})))}),window.addEventListener(A(344),t=>{const e=A;t[e(403)]===ji&&((()=>{const A=El;return localStorage[A(305)](ji)===A(361)})()?(Sl=!1,ng(),sg(),Cc()&&ig()):(Sl=!1,Fc(),rg())),t[e(403)]===$i&&(Cc()?ig():Fc())}),lg(()=>{const t=A;Pl()?YB()[t(358)](eg):eg()}),addEventListener(A(380),pa(t=>{const e=A;if(Pl()||Rl())return;const r=t[e(327)]instanceof Element?t[e(327)].closest(Ml):null;if(!(r instanceof HTMLElement))return;const n=Date.now();n-xl<300?bl=void 0:(xl=n,bl=Nl(r))},50),{capture:!0,passive:!0}),addEventListener("click",async t=>{const e=A;if(Rl())return;if(!(t[e(327)]instanceof Element))return;const r=t[e(327)][e(385)](Ml);if(!(r instanceof HTMLElement))return;const n=Ja(s=r)?"":Ya(s)?Za(s):(A=>{const t=El,e=A.getAttribute("aria-label")?.[t(323)]();if(e)return e;const r=A[t(295)][t(323)]();if(r)return r;const n=A[t(301)]?.[t(323)]();return n||t(298)})(s);var s;Pl()?ql(e(270),{tag:r[e(316)],label:n},r):(async()=>{const A=e,t=bl?await bl:void 0;bl=void 0,ql(A(270),{tag:r[A(316)],label:n},r,t)})()},!0),addEventListener("keydown",t=>{const e=A;if(!Rl()&&t[e(403)]===e(384)){const A=t[e(327)];if(!(A instanceof HTMLElement))return;const r=A.tagName,n=Ja(A);if("INPUT"===r||r===e(394)){const t=A instanceof HTMLInputElement?A[e(317)]:void 0,s=A.id||void 0;ql(e(308),{tag:r,name:n?void 0:t??s},A)}else if(ma(A)){const t=(A=>{const t=Qa;let e=A;for(;e&&e!==document[t(426)];){const A=e.getAttribute(t(434));if(A===t(441)||""===A||A===t(454))return e;e=e.parentElement}return null})(A)??A;if(t[e(402)][e(362)]===e(354))return;const r=t[e(294)](e(267))?.[e(292)](),n=t.id||void 0,s=t[e(294)](e(317))||t.getAttribute("aria-label")||n;ql(e(308),{tag:e(346),role:r??e(296),name:Ja(t)?void 0:s},t)}}},{capture:!0}),addEventListener("submit",t=>{const e=A;!Rl()&&Pl()&&t.target instanceof HTMLFormElement&&ql(e(330),{},t[e(327)])},{capture:!0}),[A(299),A(395)][A(333)](t=>{window[A(260)](t,Bg)}),document[A(260)](A(285),Bg),window.addEventListener(A(401),(()=>{let t;return(...e)=>{const r=Ia;void 0!==t&&window[r(438)](t),t=window[r(408)](()=>{t=void 0,(()=>{const t=A;Rl()||ql(t(401),{scrollX:window[t(369)],scrollY:window[t(382)]},document[t(289)])})(...e)},250)}})(),{passive:!0}),window[A(373)]??={send(t,e){const r=A;Ol()&&ql(t,e,document[r(289)])}})}function hg(A,t){const e=dg;try{if(void 0===t)return;localStorage[e(275)](A,t?A===e(283)?e(288):e(278):e(259))}catch{}}function dg(A,t){return A-=259,wg()[A]}function wg(){const A=["67310PDTMYe","intent:debug","intent:consent","2692588yRhXhX","clientId","15347541UkHSvV","490568hAEGcV","granted","intent_sid","68232rfbRba","intent:data-ip","413GnUqHX","5POapnj","sidMaxAgeSeconds","undefined","geo","disabled","debugPanel","It exposes internal SDK behavior and should only be used during development.","intent:data-sid-max-age","80927lYBGbn","number","randomUUID","isFinite","589614qcOEYi","function","baseUrl","3foYxtu","warn","now","consent","intent:geo","setItem","intent:data-base-url","882AYnUgD","enabled","intent:data-client-id","[Intent SDK] ⚠️ Debug panel is enabled. This feature is NOT recommended for production use. "];return(wg=()=>A)()}(A=>{const t=dg,e=A();for(;;)try{if(337715==-parseInt(t(263))/1+-parseInt(t(287))/2+parseInt(t(270))/3*(-parseInt(t(284))/4)+-parseInt(t(293))/5*(-parseInt(t(267))/6)+parseInt(t(292))/7*(parseInt(t(290))/8)+-parseInt(t(277))/9*(parseInt(t(281))/10)+parseInt(t(286))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(wg),A.clearIntentSessionId=()=>{gc()},A.ensureIntentSessionId=()=>{hc()},A.getIntentSessionId=()=>ac(dg(289)),A.initIntent=(A={})=>{const t=dg;localStorage[t(275)](t(279),A[t(285)]??""),localStorage[t(275)](t(291),A.ip??""),localStorage[t(275)](t(276),A[t(269)]??"https://intent.callimacus.ai"),typeof A[t(294)]===t(264)&&localStorage.setItem(t(262),String(A[t(294)])),hg(t(283),A[t(273)]),hg("intent:geo",A[t(296)]),hg("intent:debug",A.debug),t(260),A[t(273)]&&(ac(t(289))||Bc(typeof crypto!==t(295)&&typeof crypto[t(265)]===t(268)?crypto[t(265)]():Date[t(272)]()+"-"+Math.random(),A[t(294)])),gg()},A.setConsent=A=>{hg(dg(283),A),A?ng():rg()},A.setDebug=A=>{hg(dg(282),A)},A.setDebugPanel=function(A){},A.setGeo=A=>{hg(dg(274),A)},A.setIntentSessionMaxAge=A=>{const t=dg;Number[t(266)](A)&&localStorage.setItem(t(262),String(A));const e=ac(t(289));e&&Bc(e,A)},Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});
9
+ */var t=class A{constructor(A={}){const t=A.window||("undefined"!=typeof window?window:void 0);if(!t)throw new Error("Window object is required but not available");this.window=t,this.cspNonce=A.cspNonce,this.cache=A.cache}static fromElement(t,e={}){const r=t.ownerDocument;if(!r)throw new Error("Element is not attached to a document");const n=r.defaultView;if(!n)throw new Error("Document is not attached to a window");return new A({window:n,...e})}clone(t={}){return new A({window:t.window||this.window,cspNonce:t.cspNonce??this.cspNonce,cache:t.cache??this.cache})}},e=class{constructor(A={}){this.config={maxImageTimeout:3e5,allowDataUrls:!0,...A}}validateUrl(A,t="general"){if(!A||"string"!=typeof A)return{valid:!1,error:"URL must be a non-empty string"};if(A.startsWith("data:"))return this.config.allowDataUrls?{valid:!0,sanitized:A}:{valid:!1,error:"Data URLs are not allowed"};if(A.startsWith("blob:"))return{valid:!0,sanitized:A};try{const e=new URL(A);if(!["http:","https:"].includes(e.protocol))return{valid:!1,error:`Protocol ${e.protocol} is not allowed. Only http and https are permitted.`};if("proxy"===t&&this.config.allowedProxyDomains&&this.config.allowedProxyDomains.length>0){const A=e.hostname.toLowerCase();if(!this.config.allowedProxyDomains.some(t=>{const e=t.toLowerCase();return A===e||A.endsWith("."+e)}))return{valid:!1,error:`Proxy domain ${e.hostname} is not in the allowed list`}}if("proxy"===t){if(!this.config.allowLocalhostProxy){const A=e.hostname.toLowerCase();if("localhost"===A||"127.0.0.1"===A||"::1"===A)return{valid:!1,error:"Localhost is not allowed for proxy URLs"};if(this.isPrivateIP(A))return{valid:!1,error:"Private IP addresses are not allowed for proxy URLs"};if(A.startsWith("169.254.")||A.startsWith("fe80:"))return{valid:!1,error:"Link-local addresses are not allowed for proxy URLs"}}return{valid:!0,sanitized:A,requiresRuntimeCheck:!0}}return{valid:!0,sanitized:A}}catch(A){return{valid:!1,error:`Invalid URL format: ${A instanceof Error?A.message:"Unknown error"}`}}}isPrivateIP(A){return!![/^0\./,/^10\./,/^100\.(6[4-9]|[7-9][0-9]|1[0-1][0-9]|12[0-7])\./,/^127\./,/^169\.254\./,/^172\.(1[6-9]|2[0-9]|3[0-1])\./,/^192\.0\.0\./,/^192\.0\.2\./,/^192\.168\./,/^198\.(1[8-9])\./,/^198\.51\.100\./,/^203\.0\.113\./,/^2(2[4-9]|3[0-9])\./,/^24[0-9]\./,/^255\.255\.255\.255$/].some(t=>t.test(A))||!!A.includes(":")&&this.isPrivateIPv6(A)}isPrivateIPv6(A){const t=A.toLowerCase().trim().replace(/^\[|\]$/g,"").split("%")[0];if(/^(0:){7}1$/.test(t)||"::1"===t)return!0;if(/^(0:){7}0$/.test(t)||"::"===t)return!0;const e=this.expandIPv6(t);if(!e)return this.isPrivateIPv6Prefix(t);const r=parseInt(e.substring(0,2),16);if(r>=252&&r<=253)return!0;if(254===r){const A=parseInt(e.substring(2,4),16);if(A>=128&&A<=191)return!0}return 255===r}expandIPv6(A){try{if(A.includes("::")){const t=A.split("::");if(t.length>2)return null;const e=t[0]?t[0].split(":"):[],r=t[1]?t[1].split(":"):[],n=8-e.length-r.length;if(n<0)return null;const s=Array(n).fill("0000");return[...e,...s,...r].map(A=>A.padStart(4,"0")).join(":")}{const t=A.split(":");return 8!==t.length?null:t.map(A=>A.padStart(4,"0")).join(":")}}catch{return null}}isPrivateIPv6Prefix(A){return!!(/^fc[0-9a-f]{0,2}:?/i.test(A)||/^fd[0-9a-f]{0,2}:?/i.test(A)||/^fe[89ab][0-9a-f]:?/i.test(A)||/^ff[0-9a-f]{0,2}:?/i.test(A))}validateCspNonce(A){return A&&"string"==typeof A?A.length<16?{valid:!1,error:"CSP nonce is too short (minimum 16 characters recommended)"}:/^[A-Za-z0-9+/=_-]+$/.test(A)?{valid:!0,sanitized:A}:{valid:!1,error:"CSP nonce contains invalid characters"}:{valid:!1,error:"CSP nonce must be a non-empty string"}}validateImageTimeout(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Image timeout must be a number"}:A<0?{valid:!1,error:"Image timeout cannot be negative"}:this.config.maxImageTimeout&&A>this.config.maxImageTimeout?{valid:!1,error:`Image timeout ${A}ms exceeds maximum allowed ${this.config.maxImageTimeout}ms`}:{valid:!0,sanitized:A}}validateDimensions(A,t){if("number"!=typeof A||"number"!=typeof t)return{valid:!1,error:"Dimensions must be numbers"};if(isNaN(A)||isNaN(t))return{valid:!1,error:"Dimensions cannot be NaN"};if(A<=0||t<=0)return{valid:!1,error:"Dimensions must be positive"};return A>32767||t>32767?{valid:!1,error:"Dimensions exceed maximum allowed (32767px)"}:{valid:!0,sanitized:{width:A,height:t}}}validateScale(A){return"number"!=typeof A||isNaN(A)?{valid:!1,error:"Scale must be a number"}:A<=0?{valid:!1,error:"Scale must be positive"}:A>10?{valid:!1,error:"Scale factor too large (maximum 10x)"}:{valid:!0,sanitized:A}}validateElement(A){return A?"object"!=typeof A?{valid:!1,error:"Element must be an object"}:"undefined"!=typeof HTMLElement&&A instanceof HTMLElement?A.ownerDocument?{valid:!0}:{valid:!1,error:"Element must be attached to a document"}:A.ownerDocument?A.ownerDocument.defaultView?{valid:!0}:{valid:!1,error:"Document must be attached to a window (ownerDocument.defaultView required)"}:{valid:!1,error:"Element must be attached to a document (ownerDocument required)"}:{valid:!1,error:"Element is required"}}validateOptions(A){const t=[],e=A.proxy;if(null!=e&&"string"==typeof e&&e.length>0){const A=this.validateUrl(e,"proxy");A.valid||t.push(`Proxy: ${A.error}`)}if(void 0!==A.imageTimeout){const e=this.validateImageTimeout(A.imageTimeout);e.valid||t.push(`Image timeout: ${e.error}`)}if(void 0!==A.width||void 0!==A.height){const e=this.validateDimensions(A.width??800,A.height??600);e.valid||t.push(`Dimensions: ${e.error}`)}if(void 0!==A.scale){const e=this.validateScale(A.scale);e.valid||t.push(`Scale: ${e.error}`)}if(void 0!==A.cspNonce){const e=this.validateCspNonce(A.cspNonce);e.valid||t.push(`CSP nonce: ${e.error}`)}if(this.config.customValidator){const e=this.config.customValidator(A,"options");e.valid||t.push(`Custom validation: ${e.error}`)}return t.length>0?{valid:!1,error:t.join("; ")}:{valid:!0}}},r=class{constructor(A,t=!0){this.context=A,this.activeMetrics=new Map,this.completedMetrics=[],this.enabled=t,this.getTime="undefined"!=typeof performance&&"function"==typeof performance.now?()=>performance.now():()=>Date.now()}start(A,t){this.enabled&&(this.activeMetrics.has(A)&&this.context?.logger.warn(`Performance metric '${A}' already started. Overwriting.`),this.activeMetrics.set(A,{name:A,startTime:this.getTime(),metadata:t}))}end(A){if(!this.enabled)return;const t=this.activeMetrics.get(A);if(t)return t.endTime=this.getTime(),t.duration=t.endTime-t.startTime,this.completedMetrics.push(t),this.activeMetrics.delete(A),this.context?.logger.debug(`⏱️ ${A}: ${t.duration.toFixed(2)}ms`,t.metadata),t;this.context?.logger.warn(`Performance metric '${A}' not found. Was start() called?`)}measure(A,t,e){this.start(A,e);try{const e=t();return this.end(A),e}catch(t){throw this.end(A),t}}async measureAsync(A,t,e){this.start(A,e);try{const e=await t();return this.end(A),e}catch(t){throw this.end(A),t}}getMetrics(){return[...this.completedMetrics]}getMetric(A){return this.completedMetrics.find(t=>t.name===A)}getSummary(){const A=this.completedMetrics.reduce((A,t)=>A+(t.duration||0),0),t=this.completedMetrics.map(t=>({name:t.name,duration:t.duration||0,percentage:A>0?((t.duration||0)/A*100).toFixed(1)+"%":"0%"}));return{totalDuration:A,metrics:this.getMetrics(),breakdown:t}}logSummary(){if(!this.enabled||0===this.completedMetrics.length||!this.context)return;const A=this.getSummary();this.context.logger.info(`\n📊 Performance Summary (Total: ${A.totalDuration.toFixed(2)}ms):`),A.breakdown.sort((A,t)=>t.duration-A.duration).forEach(A=>{this.context.logger.info(` ${A.name.padEnd(20)} ${A.duration.toFixed(2).padStart(8)}ms ${A.percentage.padStart(6)}`)})}clear(){this.activeMetrics.clear(),this.completedMetrics.splice(0)}isEnabled(){return this.enabled}getActiveMetrics(){return Array.from(this.activeMetrics.keys())}},n=class A{constructor(A,t,e,r){this.left=A,this.top=t,this.width=e,this.height=r}add(t,e,r,n){return new A(this.left+t,this.top+e,this.width+r,this.height+n)}static fromClientRect(t,e){return new A(e.left+t.windowBounds.left,e.top+t.windowBounds.top,e.width,e.height)}static fromDOMRectList(t,e){const r=Array.from(e);let n=r.find(A=>0!==A.width);return n||(n=r.find(A=>0!==A.height)),!n&&r.length>0&&(n=r[0]),n?new A(n.left+t.windowBounds.left,n.top+t.windowBounds.top,n.width,n.height):A.EMPTY}static{this.EMPTY=new A(0,0,0,0)}};const s=(A,t)=>n.fromClientRect(A,t.getBoundingClientRect());for(var o=A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t},i=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},a="undefined"==typeof Uint8Array?[]:new Uint8Array(256),c=0;c<64;c++)a["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(c)]=c;for(var B="undefined"==typeof Uint8Array?[]:new Uint8Array(256),l=0;l<64;l++)B["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(l)]=l;for(var g=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),h=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),d="undefined"==typeof Uint8Array?[]:new Uint8Array(256),w=0;w<64;w++)d["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(w)]=w;var u,Q,C,p,U,f,F,m,y=10,I=13,H=15,E=17,b=18,x=19,v=20,K=21,L=22,S=24,D=25,M=26,T=27,k=28,O=30,V=32,R=33,N=34,G=35,P=37,X=38,J=39,W=40,Y=42,Z=[9001,65288],z="×",_="÷",j=(p=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),l=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=B[A.charCodeAt(t)],r=B[A.charCodeAt(t+1)],n=B[A.charCodeAt(t+2)],s=B[A.charCodeAt(t+3)],l[a++]=e<<2|r>>4,l[a++]=(15&r)<<4|n>>2,l[a++]=(3&n)<<6|63&s;return c})("KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),U=Array.isArray(p)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(p):new Uint32Array(p),f=Array.isArray(p)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(p):new Uint16Array(p),F=g(f,12,U[4]/2),m=2===U[5]?g(f,(24+U[4])/2):(u=U,Q=Math.ceil((24+U[4])/4),u.slice?u.slice(Q,C):new Uint32Array(Array.prototype.slice.call(u,Q,C))),new h(U[0],U[1],U[2],U[3],F,m)),q=[O,36],$=[1,2,3,5],AA=[y,8],tA=[T,M],eA=$.concat(AA),rA=[X,J,W,N,G],nA=[H,I],sA=(A,t,e,r)=>{var n=r[e];if(Array.isArray(A)?-1!==A.indexOf(n):A===n)for(var s=e;s<=r.length;){if((a=r[++s])===t)return!0;if(a!==y)break}if(n===y)for(s=e;s>0;){var o=r[--s];if(Array.isArray(A)?-1!==A.indexOf(o):A===o)for(var i=e;i<=r.length;){var a;if((a=r[++i])===t)return!0;if(a!==y)break}if(o!==y)break}return!1},oA=(A,t)=>{for(var e=A;e>=0;){var r=t[e];if(r!==y)return r;e--}return 0},iA=(A,t,e,r,n)=>{if(0===e[r])return z;var s=r-1;if(Array.isArray(n)&&!0===n[s])return z;var o=s-1,i=s+1,a=t[s],c=o>=0?t[o]:0,B=t[i];if(2===a&&3===B)return z;if(-1!==$.indexOf(a))return"!";if(-1!==$.indexOf(B))return z;if(-1!==AA.indexOf(B))return z;if(8===oA(s,t))return _;if(11===j.get(A[s]))return z;if((a===V||a===R)&&11===j.get(A[i]))return z;if(7===a||7===B)return z;if(9===a)return z;if(-1===[y,I,H].indexOf(a)&&9===B)return z;if(-1!==[E,b,x,S,k].indexOf(B))return z;if(oA(s,t)===L)return z;if(sA(23,L,s,t))return z;if(sA([E,b],K,s,t))return z;if(sA(12,12,s,t))return z;if(a===y)return _;if(23===a||23===B)return z;if(16===B||16===a)return _;if(-1!==[I,H,K].indexOf(B)||14===a)return z;if(36===c&&-1!==nA.indexOf(a))return z;if(a===k&&36===B)return z;if(B===v)return z;if(-1!==q.indexOf(B)&&a===D||-1!==q.indexOf(a)&&B===D)return z;if(a===T&&-1!==[P,V,R].indexOf(B)||-1!==[P,V,R].indexOf(a)&&B===M)return z;if(-1!==q.indexOf(a)&&-1!==tA.indexOf(B)||-1!==tA.indexOf(a)&&-1!==q.indexOf(B))return z;if(-1!==[T,M].indexOf(a)&&(B===D||-1!==[L,H].indexOf(B)&&t[i+1]===D)||-1!==[L,H].indexOf(a)&&B===D||a===D&&-1!==[D,k,S].indexOf(B))return z;if(-1!==[D,k,S,E,b].indexOf(B))for(var l=s;l>=0;){if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(-1!==[T,M].indexOf(B))for(l=-1!==[E,b].indexOf(a)?o:s;l>=0;){var g;if((g=t[l])===D)return z;if(-1===[k,S].indexOf(g))break;l--}if(X===a&&-1!==[X,J,N,G].indexOf(B)||-1!==[J,N].indexOf(a)&&-1!==[J,W].indexOf(B)||-1!==[W,G].indexOf(a)&&B===W)return z;if(-1!==rA.indexOf(a)&&-1!==[v,M].indexOf(B)||-1!==rA.indexOf(B)&&a===T)return z;if(-1!==q.indexOf(a)&&-1!==q.indexOf(B))return z;if(a===S&&-1!==q.indexOf(B))return z;if(-1!==q.concat(D).indexOf(a)&&B===L&&-1===Z.indexOf(A[i])||-1!==q.concat(D).indexOf(B)&&a===b)return z;if(41===a&&41===B){for(var h=e[s],d=1;h>0&&41===t[--h];)d++;if(d%2!=0)return z}return a===V&&B===R?z:_},aA=function(){function A(A,t,e,r){this.codePoints=A,this.required="!"===t,this.start=e,this.end=r}return A.prototype.slice=function(){return i.apply(void 0,this.codePoints.slice(this.start,this.end))},A}();const cA=A=>A>=48&&A<=57,BA=A=>cA(A)||A>=65&&A<=70||A>=97&&A<=102,lA=A=>10===A||9===A||32===A,gA=A=>(A=>(A=>A>=97&&A<=122)(A)||(A=>A>=65&&A<=90)(A))(A)||(A=>A>=128)(A)||95===A,hA=A=>gA(A)||cA(A)||45===A,dA=A=>A>=0&&A<=8||11===A||A>=14&&A<=31||127===A,wA=(A,t)=>92===A&&10!==t,uA=(A,t,e)=>45===A?gA(t)||wA(t,e):!!gA(A)||!(92!==A||!wA(A,t)),QA=(A,t,e)=>43===A||45===A?!!cA(t)||46===t&&cA(e):cA(46===A?t:A),CA=A=>{let t=0,e=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(e=-1),t++);const r=[];for(;cA(A[t]);)r.push(A[t++]);const n=r.length?parseInt(i(...r),10):0;46===A[t]&&t++;const s=[];for(;cA(A[t]);)s.push(A[t++]);const o=s.length,a=o?parseInt(i(...s),10):0;69!==A[t]&&101!==A[t]||t++;let c=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(c=-1),t++);const B=[];for(;cA(A[t]);)B.push(A[t++]);const l=B.length?parseInt(i(...B),10):0;return e*(n+a*Math.pow(10,-o))*Math.pow(10,c*l)},pA={type:2},UA={type:3},fA={type:4},FA={type:13},mA={type:8},yA={type:21},IA={type:9},HA={type:10},EA={type:11},bA={type:12},xA={type:14},vA={type:23},KA={type:1},LA={type:25},SA={type:24},DA={type:26},MA={type:27},TA={type:28},kA={type:29},OA={type:31},VA={type:32};var RA=class A{static{this._pool=[]}static{this.MAX_POOL_SIZE=40}static get(){return A._pool.pop()||new A}static release(t){A._pool.length<A.MAX_POOL_SIZE&&(t._reset(),A._pool.push(t))}constructor(){this._value=[]}_reset(){this._value=[]}write(A){this._value=this._value.concat(o(A))}read(){const A=[];let t=this.consumeToken();for(;t!==VA;)A.push(t),t=this.consumeToken();return A}consumeToken(){const A=this.consumeCodePoint();switch(A){case 34:return this.consumeStringToken(34);case 35:{const A=this.peekCodePoint(0),t=this.peekCodePoint(1),e=this.peekCodePoint(2);if(hA(A)||wA(t,e)){const r=uA(A,t,e)?2:1;return{type:5,value:this.consumeName(),flags:r}}break}case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),FA;break;case 39:return this.consumeStringToken(39);case 40:return pA;case 41:return UA;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),xA;break;case 43:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 44:return fA;case 45:{const t=A,e=this.peekCodePoint(0),r=this.peekCodePoint(1);if(QA(t,e,r))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(uA(t,e,r))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===e&&62===r)return this.consumeCodePoint(),this.consumeCodePoint(),SA;break}case 46:if(QA(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){let A=this.consumeCodePoint();if(42===A&&(A=this.consumeCodePoint(),47===A))return this.consumeToken();if(-1===A)return this.consumeToken()}break;case 58:return DA;case 59:return MA;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),LA;break;case 64:if(uA(this.peekCodePoint(0),this.peekCodePoint(1),this.peekCodePoint(2)))return{type:7,value:this.consumeName()};break;case 91:return TA;case 92:if(wA(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case 93:return kA;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),mA;break;case 123:return EA;case 125:return bA;case 117:case 85:{const t=this.peekCodePoint(0),e=this.peekCodePoint(1);return 43!==t||!BA(e)&&63!==e||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken()}case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),IA;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),yA;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),HA;break;case-1:return VA}return lA(A)?(this.consumeWhiteSpace(),OA):cA(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):gA(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:i(A)}}consumeCodePoint(){const A=this._value.shift();return void 0===A?-1:A}reconsumeCodePoint(A){this._value.unshift(A)}peekCodePoint(A){return A>=this._value.length?-1:this._value[A]}consumeUnicodeRangeToken(){const A=[];let t=this.consumeCodePoint();for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();let e=!1;for(;63===t&&A.length<6;)A.push(t),t=this.consumeCodePoint(),e=!0;if(e)return{type:30,start:parseInt(i(...A.map(A=>63===A?48:A)),16),end:parseInt(i(...A.map(A=>63===A?70:A)),16)};const r=parseInt(i(...A),16);if(45===this.peekCodePoint(0)&&BA(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();const A=[];for(;BA(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();return{type:30,start:r,end:parseInt(i(...A),16)}}return{type:30,start:r,end:r}}consumeIdentLikeToken(){const A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}}consumeUrlToken(){const A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};const t=this.peekCodePoint(0);if(39===t||34===t){const A=this.consumeStringToken(this.consumeCodePoint());return 0===A.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:A.value}):(this.consumeBadUrlRemnants(),vA)}for(;;){const t=this.consumeCodePoint();if(-1===t||41===t)return{type:22,value:i(...A)};if(lA(t))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:i(...A)}):(this.consumeBadUrlRemnants(),vA);if(34===t||39===t||40===t||dA(t))return this.consumeBadUrlRemnants(),vA;if(92===t){if(!wA(t,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),vA;A.push(this.consumeEscapedCodePoint())}else A.push(t)}}consumeWhiteSpace(){for(;lA(this.peekCodePoint(0));)this.consumeCodePoint()}consumeBadUrlRemnants(){for(;;){const A=this.consumeCodePoint();if(41===A||-1===A)return;wA(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}}consumeStringSlice(A){let t="";for(;A>0;){const e=Math.min(5e4,A);t+=i(...this._value.splice(0,e)),A-=e}return this._value.shift(),t}consumeStringToken(A){let t="",e=0;for(;;){const r=this._value[e];if(-1===r||void 0===r||r===A)return t+=this.consumeStringSlice(e),{type:0,value:t};if(10===r)return this._value.splice(0,e),KA;if(92===r){const A=this._value[e+1];-1!==A&&void 0!==A&&(10===A?(t+=this.consumeStringSlice(e),e=-1,this._value.shift()):wA(r,A)&&(t+=this.consumeStringSlice(e),t+=i(this.consumeEscapedCodePoint()),e=-1))}e++}}consumeNumber(){const A=[];let t=4,e=this.peekCodePoint(0);for(43!==e&&45!==e||A.push(this.consumeCodePoint());cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);let r=this.peekCodePoint(1);if(46===e&&cA(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0),r=this.peekCodePoint(1);const n=this.peekCodePoint(2);if((69===e||101===e)&&((43===r||45===r)&&cA(n)||cA(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;cA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[CA(A),t]}consumeNumericToken(){const[A,t]=this.consumeNumber(),e=this.peekCodePoint(0);return uA(e,this.peekCodePoint(1),this.peekCodePoint(2))?{type:15,number:A,flags:t,unit:this.consumeName()}:37===e?(this.consumeCodePoint(),{type:16,number:A,flags:t}):{type:17,number:A,flags:t}}consumeEscapedCodePoint(){const A=this.consumeCodePoint();if(BA(A)){let t=i(A);for(;BA(this.peekCodePoint(0))&&t.length<6;)t+=i(this.consumeCodePoint());lA(this.peekCodePoint(0))&&this.consumeCodePoint();const e=parseInt(t,16);return 0===e||(A=>A>=55296&&A<=57343)(e)||e>1114111?65533:e}return-1===A?65533:A}consumeName(){let A="";for(;;){const t=this.consumeCodePoint();if(hA(t))A+=i(t);else{if(!wA(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=i(this.consumeEscapedCodePoint())}}}},NA=class A{constructor(A){this._tokens=A}static create(t){const e=new RA;return e.write(t),new A(e.read())}static parseValue(t){return A.create(t).parseComponentValue()}static parseValues(t){return A.create(t).parseComponentValues()}parseComponentValue(){let A=this.consumeToken();for(;31===A.type;)A=this.consumeToken();if(32===A.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);const t=this.consumeComponentValue();do{A=this.consumeToken()}while(31===A.type);if(32===A.type)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")}parseComponentValues(){const A=[];for(;;){const t=this.consumeComponentValue();if(32===t.type)return A;A.push(t)}}consumeComponentValue(){const A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A}consumeSimpleBlock(A){const t={type:A,values:[]};let e=this.consumeToken();for(;;){if(32===e.type||_A(e,A))return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue()),e=this.consumeToken()}}consumeFunction(A){const t={name:A.value,values:[],type:18};for(;;){const A=this.consumeToken();if(32===A.type||3===A.type)return t;this.reconsumeToken(A),t.values.push(this.consumeComponentValue())}}consumeToken(){const A=this._tokens.shift();return void 0===A?VA:A}reconsumeToken(A){this._tokens.unshift(A)}};const GA=A=>15===A.type,PA=A=>17===A.type,XA=A=>20===A.type,JA=A=>0===A.type,WA=(A,t)=>XA(A)&&A.value===t,YA=A=>31!==A.type,ZA=A=>31!==A.type&&4!==A.type,zA=A=>{const t=[];let e=[];return A.forEach(A=>{4!==A.type?31!==A.type&&e.push(A):e.length&&(t.push(e),e=[])}),e.length&&t.push(e),t},_A=(A,t)=>11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type,jA=/(\d+(?:\.\d+)?|[+\-*/()])/g,qA=A=>{const t=A.match(jA);if(!t)return NaN;const e=[],r=[],n={"+":1,"-":1,"*":2,"/":2};for(const A of t)if(/^\d+(?:\.\d+)?$/.test(A))e.push(parseFloat(A));else if("("===A)r.push(A);else if(")"===A){for(;r.length&&"("!==r[r.length-1];)e.push(r.pop());if(!r.length)return NaN;r.pop()}else{for(;r.length&&n[r[r.length-1]]>=n[A];)e.push(r.pop());r.push(A)}for(;r.length;){const A=r.pop();if("("===A)return NaN;e.push(A)}const s=[];for(const A of e)if("number"==typeof A)s.push(A);else{const t=s.pop(),e=s.pop();if(void 0===e||void 0===t)return NaN;switch(A){case"+":s.push(e+t);break;case"-":s.push(e-t);break;case"*":s.push(e*t);break;case"/":s.push(0===t?NaN:e/t);break;default:return NaN}}return 1===s.length?s[0]:NaN},$A=(A,t,e)=>Math.min(Math.max(A,t),e),At=(A,t)=>[A[0]*t[0]+A[1]*t[1]+A[2]*t[2],A[3]*t[0]+A[4]*t[1]+A[5]*t[2],A[6]*t[0]+A[7]*t[1]+A[8]*t[2]],tt=A=>At([3.2409699419045226,-1.537383177570094,-.4986107602930034,-.9692436362808796,1.8759675015077202,.04155505740717559,.05563007969699366,-.20397695888897652,1.0569715142428786],A),et=A=>At([.41239079926595934,.357584339383878,.1804807884018343,.21263900587151027,.715168678767756,.07219231536073371,.01933081871559182,.11919477979462598,.9505321522496607],A),rt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e>.0031308?t*(1.055*e**(1/2.4)-.055):12.92*A}),nt=A=>A.map(A=>{const t=A<0?-1:1,e=Math.abs(A);return e<=.04045?A/12.92:t*((e+.055)/1.055)**2.4}),st=A=>17===A.type||15===A.type,ot=A=>16===A.type||st(A)||it(A),it=A=>17===A.type&&void 0!==A._calcPercentage,at=A=>{return 18===(t=A).type&&"calc"===t.name?(A=>{const t=ct(A,0);if(!t)return null;const e=ct(A,100);if(!e)return null;const r=t.number,n=e.number-r;return 0===n?t:{type:17,number:r,flags:4,_calcPercentage:n,_calcPixelOffset:r}})(A):ot(A)?A:null;var t},ct=(A,t=0)=>{const e=A=>{let r="";for(const n of A)if(31!==n.type)if(18===n.type){if("calc"!==n.name)return null;{const A=e(n.values);if(null===A)return null;r+=`(${A})`}}else if(17===n.type)r+=n.number.toString();else if(15===n.type)r+="px"===n.unit?n.number.toString():"rem"===n.unit||"em"===n.unit?(16*n.number).toString():n.number.toString();else if(16===n.type)r+=(n.number/100*t).toString();else if(6===n.type){const A=n.value;"+"===A||"-"===A||"*"===A||"/"===A?r+=` ${A} `:"("===A?r+="(":")"===A&&(r+=")")}return r};try{const t=e(A.values);if(null===t||""===t.trim())return null;const r=qA(t);if("number"==typeof r&&!isNaN(r))return{type:17,number:r,flags:4}}catch(A){return null}return null},Bt=A=>A.length>1?[A[0],A[1]]:[A[0]],lt={type:17,number:0,flags:4},gt={type:16,number:50,flags:4},ht={type:16,number:100,flags:4},dt=(A,t,e)=>{const[r,n]=A;return[wt(r,t),wt(void 0!==n?n:r,e)]},wt=(A,t)=>{if(it(A))return A._calcPercentage/100*t+A._calcPixelOffset;if(16===A.type)return A.number/100*t;if(GA(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},ut="grad",Qt="turn",Ct=(A,t)=>{if(15===t.type)switch(t.unit){case"deg":return Math.PI*t.number/180;case ut:return Math.PI/200*t.number;case"rad":return t.number;case Qt:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},pt=A=>15===A.type&&("deg"===A.unit||A.unit===ut||"rad"===A.unit||A.unit===Qt),Ut=A=>{switch(A.filter(XA).map(A=>A.value).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[lt,lt];case"to top":case"bottom":return ft(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[lt,ht];case"to right":case"left":return ft(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[ht,ht];case"to bottom":case"top":return ft(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[ht,lt];case"to left":case"right":return ft(270)}return 0},ft=A=>Math.PI*A/180,Ft=A=>!(255&A),mt=A=>{const t=255&A,e=255&A>>8,r=255&A>>16,n=255&A>>24;return t<255?`rgba(${n},${r},${e},${t/255})`:`rgb(${n},${r},${e})`},yt=(A,t,e,r)=>(A<<24|t<<16|e<<8|Math.round(255*r))>>>0,It=(A,t)=>{if(17===A.type)return A.number;if(16===A.type){const e=3===t?1:255;return 3===t?A.number/100*e:Math.round(A.number/100*e)}return 0},Ht=A=>"from"===(20===A[0].type?A[0].value:"unknown"),Et=([A,t,e,r])=>{const n=rt([A,t,e]);return yt($A(Math.round(255*n[0]),0,255),$A(Math.round(255*n[1]),0,255),$A(Math.round(255*n[2]),0,255),r)},bt=A=>{const t=tt([A[0],A[1],A[2]]);return Et([t[0],t[1],t[2],A[3]])},xt=(A,t)=>{const[e,r,n,s]=t.filter(ZA);return[(17===e.type?ft(e.number):Ct(0,e))/(2*Math.PI),ot(r)?r.number/100:0,ot(n)?n.number/100:0,void 0!==s&&ot(s)?wt(s,1):1]},vt=(A,t)=>{if(Ht(t))throw new Error("Relative color not supported for hsl()");const[e,r,n,s]=xt(0,t),o=kt([e,r,n]);return yt(255*o[0],255*o[1],255*o[2],0===r?1:s)},Kt=A=>{const t=A.filter(ZA);return[ot(t[0])?t[0].number:0,ot(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Lt=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},St=A=>{const t=A.filter(ZA);return[16===t[0].type?t[0].number/100:PA(t[0])?t[0].number:0,16===t[1].type?t[1].number/100:PA(t[1])?t[1].number:0,PA(t[2])||GA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?wt(t[4],1):1]},Dt=A=>At([1.0479297925449969,.022946870601609652,-.05019226628920524,.02962780877005599,.9904344267538799,-.017073799063418826,-.009243040646204504,.015055191490298152,.7518742814281371],A),Mt=A=>At([.955473421488075,-.02309845494876471,.06325924320057072,-.0283697093338637,1.0099953980813041,.021041441191917323,.012314014864481998,-.020507649298898964,1.330365926242124],A),Tt=(A,t,e)=>(e<0&&(e+=1),e>=1&&(e-=1),e<1/6?(t-A)*e*6+A:e<.5?t:e<2/3?6*(t-A)*(2/3-e)+A:A),kt=([A,t,e])=>{if(0===t)return[255*e,255*e,255*e];const r=e<=.5?e*(t+1):e+t-e*t,n=2*e-r;return[Tt(n,r,A+1/3),Tt(n,r,A),Tt(n,r,A-1/3)]},Ot=([A,t,e])=>(t<0&&(t=0),isNaN(e)&&(e=0),[A,t*Math.cos(e*Math.PI/180),t*Math.sin(e*Math.PI/180)]),Vt=A=>At([1.2268798758459243,-.5578149944602171,.2813910456659647,-.0405757452148008,1.112286803280317,-.0717110580655164,-.0763729366746601,-.4214933324022432,1.5869240198367816],At([1,.3963377773761749,.2158037573099136,1,-.1055613458156586,-.0638541728258133,1,-.0894841775298119,-1.2914855480194092],A).map(A=>A**3)),Rt=A=>{const t=(A[0]+16)/116,e=A[1]/500+t,r=t-A[2]/200,n=24389/27,s=24/116,o=[.3457*(e>s?e**3:(116*e-16)/n)/.3585,A[0]>8?t**3:A[0]/n,.2958*(r>s?r**3:(116*r-16)/n)/.3585];return Mt([o[0],o[1],o[2]])},Nt=A=>A,Gt=A=>bt([A[0],A[1],A[2],A[3]]),Pt=1.09929682680944,Xt=.018053968510807,Jt=(A,t)=>{if(18===t.type){const e=jt[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported color function "${t.name}"`);return e(A,t.values)}if(5===t.type){const[A,e,r,n]=Wt(t);return yt(A,e,r,n)}if(20===t.type){const A=$t[t.value.toUpperCase()];if(void 0!==A)return A}return $t.TRANSPARENT},Wt=A=>{if(3===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),1]}if(4===A.value.length){const t=A.value.substring(0,1),e=A.value.substring(1,2),r=A.value.substring(2,3),n=A.value.substring(3,4);return[parseInt(t+t,16),parseInt(e+e,16),parseInt(r+r,16),parseInt(n+n,16)/255]}if(6===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),1]}if(8===A.value.length){const t=A.value.substring(0,2),e=A.value.substring(2,4),r=A.value.substring(4,6),n=A.value.substring(6,8);return[parseInt(t,16),parseInt(e,16),parseInt(r,16),parseInt(n,16)/255]}return[0,0,0,1]},Yt=(A,t)=>{const e=t.filter(ZA);if(Ht(e))throw new Error("Relative color not supported for rgb()");if(3===e.length){const[A,t,r]=e.map(It);return yt(A,t,r,1)}if(4===e.length){const[A,t,r,n]=e.map(It);return yt(A,t,r,n)}return 5===e.length&&6===e[3].type&&"/"===e[3].value?yt(It(e[0],0),It(e[1],1),It(e[2],2),It(e[4],3)):0},Zt={srgb:A=>yt($A(Math.round(255*A[0]),0,255),$A(Math.round(255*A[1]),0,255),$A(Math.round(255*A[2]),0,255),$A(A[3],0,1)),"srgb-linear":Et,"display-p3":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>{const t=A<0?-1:1;return A*t<=.04045?A/12.92:t*((A+.055)/1.055)**2.4||0});return At([.4865709486482162,.26566769316909306,.1982172852343625,.2289745640697488,.6917385218365064,.079286914093745,0,.04511338185890264,1.043944368900976],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"a98-rgb":A=>{const t=tt((e=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(563/256));return[t[0],t[1],t[2]]})([A[0],A[1],A[2]]),At([.5766690429101305,.1855582379065463,.1882286462349947,.29734497525053605,.6273635662554661,.0752914584939978,.02703136138641234,.07068885253582723,.9913375368376388],e)));var e;return Et([t[0],t[1],t[2],A[3]])},"prophoto-rgb":A=>{const t=(A=>{const t=[A[0],A[1],A[2]].map(A=>A<16/512?A/16:A**1.8);return Mt(At([.7977666449006423,.13518129740053308,.0313477341283922,.2880748288194013,.711835234241873,8993693872564e-17,0,0,.8251046025104602],[t[0],t[1],t[2]]))})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},xyz:Gt,"xyz-d50":A=>{const t=(A=>Mt([A[0],A[1],A[2]]))([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])},"xyz-d65":Gt,rec2020:A=>{const t=(A=>{const t=(A=>A.map(A=>A<4.5*Xt?A/4.5:Math.pow((A+Pt-1)/Pt,1/.45)))([A[0],A[1],A[2]]);return At([.6369580483012914,.14461690358620832,.1688809751641721,.2627002120112671,.6779980715188708,.05930171646986196,0,.028072693049087428,1.060985057710791],[t[0],t[1],t[2]])})([A[0],A[1],A[2]]);return bt([t[0],t[1],t[2],A[3]])}},zt={rgb:(A,t)=>{const e=t.filter(ZA);if(3===e.length){const[A,t,r]=e.map(It),n=nt([A/255,t/255,r/255]),[s,o,i]=et([n[0],n[1],n[2]]);return[s,o,i,1]}if(4===e.length){const[A,t,r,n]=e.map(It),s=nt([A/255,t/255,r/255]),[o,i,a]=et([s[0],s[1],s[2]]);return[o,i,a,n]}return[0,0,0,1]},hsl:(A,t)=>{const[e,r,n,s]=xt(0,t),o=nt(kt([e,r,n])),[i,a,c]=et([o[0],o[1],o[2]]);return[i,a,c,s]},lab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Rt([e,r,n]);return[o,i,a,s]},lch:(A,t)=>{const[e,r,n,s]=Kt(t),[o,i,a]=Rt(Ot([e,r,n]));return[o,i,a,s]},oklab:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Vt([e,r,n]);return[o,i,a,s]},oklch:(A,t)=>{const[e,r,n,s]=St(t),[o,i,a]=Vt(Ot([e,r,n]));return[o,i,a,s]}},_t={srgb:A=>{const[t,e,r]=rt(tt([A[0],A[1],A[2]]));return[t,e,r,A[3]]},"srgb-linear":A=>{const[t,e,r]=tt([A[0],A[1],A[2]]);return[$A(Math.round(255*t),0,255),$A(Math.round(255*e),0,255),$A(Math.round(255*r),0,255),A[3]]},"display-p3":A=>{const[t,e,r]=(n=At([2.493496911941425,-.9313836179191239,-.40271078445071684,-.8294889695615747,1.7626640603183463,.023624685841943577,.03584583024378447,-.07617238926804182,.9568845240076872],[A[0],A[1],A[2]]),rt(n));var n;return[t,e,r,A[3]]},"a98-rgb":A=>{const[t,e,r]=(A=>{const t=A.map(A=>(A<0?-1:1)*Math.abs(A)**(256/563));return[t[0],t[1],t[2]]})(At([2.0415879038107465,-.5650069742788596,-.34473135077832956,-.9692436362808795,1.8759675015077202,.04155505740717557,.013444280632031142,-.11836239223101838,1.0151749943912054],[A[0],A[1],A[2]]));return[t,e,r,A[3]]},"prophoto-rgb":A=>{const[t,e,r]=(n=Dt([A[0],A[1],A[2]]),At([1.3457868816471583,-.25557208737979464,-.05110186497554526,-.5446307051249019,1.5082477428451468,.02052744743642139,0,0,1.2119675456389452],n).map(A=>A>1/512?A**(1/1.8):16*A));var n;return[t,e,r,A[3]]},xyz:Nt,"xyz-d50":A=>{const[t,e,r]=Dt([A[0],A[2],A[3]]);return[t,e,r,A[3]]},"xyz-d65":Nt,rec2020:A=>{const[t,e,r]=(A=>A.map(A=>A>=Xt?Pt*Math.pow(A,.45)-(Pt-1):4.5*A))(At([1.716651187971268,-.355670783776392,-.25336628137366,-.666684351832489,1.616481236634939,.0157685458139111,.017639857445311,-.042770613257809,.942103121235474],[A[0],A[1],A[2]]));return[t,e,r,A[3]]}},jt={hsl:vt,hsla:vt,rgb:Yt,rgba:Yt,lch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lch()");const[e,r,n,s]=Kt(t),o=rt(tt(Rt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklch:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklch()");const[e,r,n,s]=St(t),o=rt(tt(Vt(Ot([e,r,n]))));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},oklab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for oklab()");const[e,r,n,s]=Lt(t),o=rt(tt(Vt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},lab:(A,t)=>{if(Ht(t.filter(ZA)))throw new Error("Relative color not supported for lab()");const[e,r,n,s]=Lt(t),o=rt(tt(Rt([e,r,n])));return yt($A(Math.round(255*o[0]),0,255),$A(Math.round(255*o[1]),0,255),$A(Math.round(255*o[2]),0,255),s)},color:(A,t)=>{const e=t.filter(ZA),r=20===e[0].type?e[0].value:"unknown";if(Ht(e)){const t=(A,t)=>{if(PA(t))return t.number;if(XA(t))return A[e=t.value,"r"===e||"x"===e?0:"g"===e||"y"===e?1:2];var e;const r=A=>{const t=A.filter(ZA);let e="(";for(const A of t)e+=18===A.type&&"calc"===A.name?r(A.values):PA(A)?A.number:6===A.type||XA(A)?A.value:"";return e+=")",e};if(18===t.type){const e=t.values.filter(ZA);if("calc"===t.name)return qA(r(e).replace(/r|x/,A[0].toString()).replace(/g|y/,A[1].toString()).replace(/b|z/,A[2].toString()))}return null},r=18===e[1].type?e[1].name:XA(e[1])||5===e[1].type?"rgb":"unknown",n=XA(e[2])?e[2].value:"unknown";let s=18===e[1].type?e[1].values:XA(e[1])?[e[1]]:[];if(XA(e[1])){if(void 0===$t[e[1].value.toUpperCase()])throw new Error("Attempting to use unknown color in relative color 'from'");{const t=qt(A,e[1].value),r=255&t;s=[{type:17,number:255&t>>24,flags:1},{type:17,number:255&t>>16,flags:1},{type:17,number:255&t>>8,flags:1},{type:17,number:r>1?r/255:r,flags:1}]}}else if(5===e[1].type){const[A,t,r,n]=Wt(e[1]);s=[{type:17,number:A,flags:1},{type:17,number:t,flags:1},{type:17,number:r,flags:1},{type:17,number:n>1?n/255:n,flags:1}]}if(0===s.length)throw new Error("Attempting to use unknown color in relative color 'from'");if("unknown"===n)throw new Error("Attempting to use unknown colorspace in relative color 'to'");const o=zt[r],i=_t[n],a=Zt[n];if(void 0===o)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);if(void 0===i)throw new Error(`Attempting to parse an unsupported color space "${n}" for color() function`);const c=i(o(A,s)),B=t(c,e[3]),l=t(c,e[4]),g=t(c,e[5]),h=e.length>6&&6===e[6].type&&"/"===e[6].value&&PA(e[7])?e[7].number:1;if(null===B||null===l||null===g)throw new Error("Invalid relative color in color() function");return a([B,l,g,h])}{const A=Zt[r];if(void 0===A)throw new Error(`Attempting to parse an unsupported color space "${r}" for color() function`);return A([PA(e[1])?e[1].number:0,PA(e[2])?e[2].number:0,PA(e[3])?e[3].number:0,e.length>4&&6===e[4].type&&"/"===e[4].value&&PA(e[5])?e[5].number:1])}}},qt=(A,t)=>Jt(A,NA.create(t).parseComponentValue()),$t={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},Ae=A=>A.nodeType===Node.ELEMENT_NODE,te=A=>A.nodeType===Node.TEXT_NODE,ee=A=>"object"==typeof A.className,re=A=>Ae(A)&&void 0!==A.style&&!ee(A),ne=A=>"svg"===A.tagName,se=A=>"BODY"===A.tagName,oe=A=>"CANVAS"===A.tagName,ie=A=>"VIDEO"===A.tagName,ae=A=>"IMG"===A.tagName,ce=A=>"IFRAME"===A.tagName,Be=A=>"STYLE"===A.tagName,le=A=>"TEXTAREA"===A.tagName,ge=A=>"SELECT"===A.tagName,he=A=>"SLOT"===A.tagName,de=A=>!ee(A)&&A.tagName.indexOf("-")>0,we=new Set(["IMG","VIDEO","AUDIO","CANVAS","IFRAME","INPUT","TEXTAREA","SELECT","BR","HR","META","LINK","BASE","COL","SOURCE","TRACK","WBR","AREA","PARAM","EMBED","OBJECT"]),ue={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":return 22;case"hebrew":return 52;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},Qe=(A,t)=>0!==(A&t);var Ce=class{constructor(){this.counters={}}getCounterValue(A){const t=this.counters[A];return t&&t.length?t[t.length-1]:1}getCounterValues(A){return this.counters[A]||[]}pop(A){A.forEach(A=>this.counters[A].pop())}parse(A){const t=A.counterIncrement,e=A.counterReset;let r=!0;null!==t&&t.forEach(A=>{const t=this.counters[A.counter];t&&0!==A.increment&&(r=!1,t.length||t.push(1),t[Math.max(0,t.length-1)]+=A.increment)});const n=[];return r&&e.forEach(A=>{let t=this.counters[A.counter];n.push(A.counter),t||(t=this.counters[A.counter]=[]),t.push(A.reset)}),n}};const pe={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Ue={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},Fe={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},me=(A,t,e,r,n,s)=>A<t||A>e?Le(A,n,s.length>0):r.integers.reduce((t,e,n)=>{for(;A>=e;)A-=e,t+=r.values[n];return t},"")+s,ye=(A,t,e,r)=>{let n="";do{e||A--,n=r(A)+n,A/=t}while(A*t>=t);return n},Ie=(A,t,e,r,n)=>{const s=e-t+1;return(A<0?"-":"")+(ye(Math.abs(A),s,r,A=>i(Math.floor(A%s)+t))+n)},He=(A,t,e=". ")=>{const r=t.length;return ye(Math.abs(A),r,!1,A=>t[Math.floor(A%r)])+e},Ee=(A,t,e,r,n,s)=>{if(A<-9999||A>9999)return Le(A,4,n.length>0);let o=Math.abs(A),i=n;if(0===o)return t[0]+i;for(let r=0;o>0&&r<=4;r++){const n=o%10;0===n&&Qe(s,1)&&""!==i?i=t[n]+i:n>1||1===n&&0===r||1===n&&1===r&&Qe(s,2)||1===n&&1===r&&Qe(s,4)&&A>100||1===n&&r>1&&Qe(s,8)?i=t[n]+(r>0?e[r-1]:"")+i:1===n&&r>0&&(i=e[r-1]+i),o=Math.floor(o/10)}return(A<0?r:"")+i},be="十百千萬",xe="拾佰仟萬",ve="マイナス",Ke="마이너스",Le=(A,t,e)=>{const r=e?". ":"",n=e?"、":"",s=e?", ":"",o=e?" ":"";switch(t){case 0:return"•"+o;case 1:return"◦"+o;case 2:return"◾"+o;case 5:const t=Ie(A,48,57,!0,r);return t.length<4?`0${t}`:t;case 4:return He(A,"〇一二三四五六七八九",n);case 6:return me(A,1,3999,pe,3,r).toLowerCase();case 7:return me(A,1,3999,pe,3,r);case 8:return Ie(A,945,969,!1,r);case 9:return Ie(A,97,122,!1,r);case 10:return Ie(A,65,90,!1,r);case 11:return Ie(A,1632,1641,!0,r);case 12:case 49:return me(A,1,9999,Ue,3,r);case 35:return me(A,1,9999,Ue,3,r).toLowerCase();case 13:return Ie(A,2534,2543,!0,r);case 14:case 30:return Ie(A,6112,6121,!0,r);case 15:return He(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return He(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return Ee(A,"零一二三四五六七八九",be,"負",n,14);case 47:return Ee(A,"零壹貳參肆伍陸柒捌玖",xe,"負",n,15);case 42:return Ee(A,"零一二三四五六七八九",be,"负",n,14);case 41:return Ee(A,"零壹贰叁肆伍陆柒捌玖",xe,"负",n,15);case 26:return Ee(A,"〇一二三四五六七八九","十百千万",ve,n,0);case 25:return Ee(A,"零壱弐参四伍六七八九","拾百千万",ve,n,7);case 31:return Ee(A,"영일이삼사오육칠팔구","십백천만",Ke,s,7);case 33:return Ee(A,"零一二三四五六七八九","十百千萬",Ke,s,0);case 32:return Ee(A,"零壹貳參四五六七八九","拾百千",Ke,s,7);case 18:return Ie(A,2406,2415,!0,r);case 20:return me(A,1,19999,Fe,3,r);case 21:return Ie(A,2790,2799,!0,r);case 22:return Ie(A,2662,2671,!0,r);case 52:return me(A,1,10999,fe,3,r);case 23:return He(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return He(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return Ie(A,3302,3311,!0,r);case 28:return He(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return He(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return Ie(A,3792,3801,!0,r);case 37:return Ie(A,6160,6169,!0,r);case 38:return Ie(A,4160,4169,!0,r);case 39:return Ie(A,2918,2927,!0,r);case 40:return Ie(A,1776,1785,!0,r);case 43:return Ie(A,3046,3055,!0,r);case 44:return Ie(A,3174,3183,!0,r);case 45:return Ie(A,3664,3673,!0,r);case 46:return Ie(A,3872,3881,!0,r);default:return Ie(A,48,57,!0,r)}},Se={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2;case"text":return 3}return 0})},De={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Me=(A,t)=>{const e=Jt(A,t[0]),r=t[1];return r&&ot(r)?{color:e,stop:r}:{color:e,stop:null}},Te=(A,t)=>{const e=A[0],r=A[A.length-1];null===e.stop&&(e.stop=lt),null===r.stop&&(r.stop=ht);const n=[];let s=0;for(let e=0;e<A.length;e++){const r=A[e].stop;if(null!==r){const A=wt(r,t);n.push(A>s?A:s),s=A}else n.push(null)}let o=null;for(let A=0;A<n.length;A++){const t=n[A];if(null===t)null===o&&(o=A);else if(null!==o){const e=A-o,r=(t-n[o-1])/(e+1);for(let A=1;A<=e;A++)n[o+A-1]=r*A;o=null}}return A.map(({color:A},e)=>({color:A,stop:Math.max(Math.min(1,n[e]/t),0)}))},ke=(A,t,e)=>{const r="number"==typeof A?A:((A,t,e)=>{const r=t/2,n=e/2,s=wt(A[0],t)-r,o=n-wt(A[1],e);return(Math.atan2(o,s)+2*Math.PI)%(2*Math.PI)})(A,t,e),n=Math.abs(t*Math.sin(r))+Math.abs(e*Math.cos(r)),s=t/2,o=e/2,i=n/2,a=Math.sin(r-Math.PI/2)*i,c=Math.cos(r-Math.PI/2)*i;return[n,s-c,s+c,o-a,o+a]},Oe=(A,t)=>Math.sqrt(A*A+t*t),Ve=(A,t,e,r,n)=>[[0,0],[0,t],[A,0],[A,t]].reduce((A,t)=>{const[s,o]=t,i=Oe(e-s,r-o);return(n?i<A.optimumDistance:i>A.optimumDistance)?{optimumCorner:t,optimumDistance:i}:A},{optimumDistance:n?1/0:-1/0,optimumCorner:null}).optimumCorner,Re=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&"to"===A.value)return void(e=Ut(t));if(pt(A))return void(e=Ct(0,A))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ne=(A,t)=>{let e=ft(180);const r=[];return zA(t).forEach((t,n)=>{if(0===n){const A=t[0];if(20===A.type&&-1!==["top","left","right","bottom"].indexOf(A.value))return void(e=Ut(t));if(pt(A))return void(e=(Ct(0,A)+ft(270))%ft(360))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ge="closest-side",Pe="farthest-side",Xe="closest-corner",Je="farthest-corner",We="circle",Ye="ellipse",Ze="cover",ze="contain",_e=(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o?i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case"center":return s.push(gt),!1;case"top":case"left":return s.push(lt),!1;case"right":case"bottom":return s.push(ht),!1}else if(ot(t)||st(t))return s.push(t),!1;return A},i):1===o&&(i=t.reduce((A,t)=>{if(XA(t))switch(t.value){case We:return e=0,!1;case Ye:return e=1,!1;case ze:case Ge:return r=0,!1;case Pe:return r=1,!1;case Xe:return r=2,!1;case Ze:case Je:return r=3,!1}else if(st(t)||ot(t))return Array.isArray(r)||(r=[]),r.push(t),!1;return A},i)),i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},je=(A,t)=>({...Re(A,t),type:3}),qe=A=>1===A.type,$e=A=>2===A.type,Ar=A=>3===A.type,tr=(A,t)=>{if(22===t.type){const e={url:t.value,type:0};return A.cache.addImage(t.value),e}if(18===t.type){const e=rr[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported image function "${t.name}"`);return e(A,t.values)}throw new Error(`Unsupported image type ${t.type}`)};function er(A){return!(20===A.type&&"none"===A.value||18===A.type&&!rr[A.name])}const rr={"linear-gradient":Re,"-moz-linear-gradient":Ne,"-ms-linear-gradient":Ne,"-o-linear-gradient":Ne,"-webkit-linear-gradient":Ne,"radial-gradient":(A,t)=>{let e=0,r=3;const n=[],s=[];return zA(t).forEach((t,o)=>{let i=!0;if(0===o){let A=!1;i=t.reduce((t,n)=>{if(A)if(XA(n))switch(n.value){case"center":return s.push(gt),t;case"top":case"left":return s.push(lt),t;case"right":case"bottom":return s.push(ht),t}else(ot(n)||st(n))&&s.push(n);else if(XA(n))switch(n.value){case We:return e=0,!1;case Ye:return e=1,!1;case"at":return A=!0,!1;case Ge:return r=0,!1;case Ze:case Pe:return r=1,!1;case ze:case Xe:return r=2,!1;case Je:return r=3,!1}else if(st(n)||ot(n))return Array.isArray(r)||(r=[]),r.push(n),!1;return t},i)}if(i){const e=Me(A,t);n.push(e)}}),{size:r,shape:e,stops:n,position:s,type:2}},"-moz-radial-gradient":_e,"-ms-radial-gradient":_e,"-o-radial-gradient":_e,"-webkit-radial-gradient":_e,"-webkit-gradient":(A,t)=>{const e=ft(180),r=[];let n=1;return zA(t).forEach((t,e)=>{const s=t[0];if(0===e){if(XA(s)&&"linear"===s.value)return void(n=1);if(XA(s)&&"radial"===s.value)return void(n=2)}if(18===s.type)if("from"===s.name){const t=Jt(A,s.values[0]);r.push({stop:lt,color:t})}else if("to"===s.name){const t=Jt(A,s.values[0]);r.push({stop:ht,color:t})}else if("color-stop"===s.name){const t=s.values.filter(ZA);if(2===t.length){const e=Jt(A,t[1]),n=t[0];PA(n)&&r.push({stop:{type:16,number:100*n.number,flags:n.flags},color:e})}}}),1===n?{angle:(e+ft(180))%ft(360),stops:r,type:n}:{size:3,shape:0,stops:r,position:[],type:n}},"repeating-linear-gradient":je,"-webkit-repeating-linear-gradient":je,"-moz-repeating-linear-gradient":je,"-ms-repeating-linear-gradient":je,"-o-repeating-linear-gradient":je},nr={name:"background-image",initialValue:"none",type:1,prefix:!1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t.filter(A=>ZA(A)&&er(A)).map(t=>tr(A,t))}},sr={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:(A,t)=>t.map(A=>{if(XA(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})},or={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:(A,t)=>zA(t).map(A=>A.map(at).filter(A=>null!==A)).map(Bt)},ir={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.filter(XA).map(A=>A.value).join(" ")).map(ar)},ar=A=>{switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},cr={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.map(A=>Br(A)?A:at(A)).filter(A=>null!==A))},Br=A=>XA(A)||ot(A),lr=A=>({name:`border-${A}-color`,initialValue:"transparent",prefix:!1,type:3,format:"color"}),gr=lr("top"),hr=lr("right"),dr=lr("bottom"),wr=lr("left"),ur=A=>({name:`border-${A}-radius`,initialValue:"0 0",prefix:!1,type:1,parse:(A,t)=>Bt(t.filter(ot))}),Qr=ur("top-left"),Cr=ur("top-right"),pr=ur("bottom-right"),Ur=ur("bottom-left"),fr=A=>({name:`border-${A}-style`,initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}),Fr=fr("top"),mr=fr("right"),yr=fr("bottom"),Ir=fr("left"),Hr=A=>({name:`border-${A}-width`,initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0}),Er=Hr("top"),br=Hr("right"),xr=Hr("bottom"),vr=Hr("left"),Kr={type:0},Lr=A=>{const[t]=A;return t?XA(t)?"farthest-side"===t.value?"farthest-side":"closest-side":ot(t)?t:"closest-side":"closest-side"},Sr=A=>{let t=null,e=null;for(const r of A)if(XA(r))switch(r.value){case"left":t=lt;break;case"right":t=ht;break;case"top":e=lt;break;case"bottom":e=ht;break;case"center":null===t?t=gt:null===e&&(e=gt)}else ot(r)&&(null===t?t=r:null===e&&(e=r));return{cx:t??gt,cy:e??gt}},Dr={name:"clip-path",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>{if(XA(t)&&"none"===t.value)return Kr;if(18===t.type)switch(t.name){case"inset":return(A=>{const t=[];for(const e of A)if(31!==e.type){if(XA(e)&&"round"===e.value)break;ot(e)&&t.push(e)}const e=t[0]??lt,r=t[1]??e;return{type:1,top:e,right:r,bottom:t[2]??e,left:t[3]??r}})(t.values);case"circle":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:2,radius:Lr(r),...Sr(n)}})(t.values);case"ellipse":return(A=>{const t=A.filter(YA),e=t.findIndex(A=>WA(A,"at")),r=-1===e?t:t.slice(0,e),n=-1===e?[]:t.slice(e+1);return{type:3,rx:Lr(r.slice(0,1)),ry:Lr(r.slice(1,2)),...Sr(n)}})(t.values);case"polygon":return(A=>{const t=zA(A),e=[];for(const A of t){if(1===A.length&&XA(A[0]))continue;const t=A.filter(ot);t.length>=2&&e.push([t[0],t[1]])}return{type:4,points:e}})(t.values);case"path":return(A=>{const t=A.find(A=>0===A.type);return t?{type:5,d:t.value}:Kr})(t.values)}return Kr}},Mr={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Tr={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:(A,t)=>"rtl"===t?1:0},kr={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Or(t.value),0)},Or=A=>{switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},Vr={name:"float",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Rr={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"normal"===t.value?0:17===t.type||15===t.type?t.number:0},Nr={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"strict"===t?"strict":"normal"},Gr={name:"line-height",initialValue:"normal",prefix:!1,type:4},Pr=(A,t)=>XA(A)&&"normal"===A.value?1.2*t:17===A.type?t*A.number:ot(A)?wt(A,t):t,Xr={name:"list-style-image",initialValue:"none",type:0,prefix:!1,skipCache:!0,parse:(A,t)=>20===t.type&&"none"===t.value?null:tr(A,t)},Jr={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:(A,t)=>"inside"===t?0:1},Wr=A=>({name:`margin-${A}`,initialValue:"0",prefix:!1,type:4}),Yr=Wr("top"),Zr=Wr("right"),zr=Wr("bottom"),_r=Wr("left"),jr={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})},qr={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"break-word"===t?"break-word":"normal"},$r=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=$r("top"),tn=$r("right"),en=$r("bottom"),rn=$r("left"),nn={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},sn={name:"position",initialValue:"static",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},on={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:$t.TRANSPARENT,offsetX:lt,offsetY:lt,blur:lt};let r=0;for(let n=0;n<t.length;n++){const s=t[n];st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:e.blur=s,r++):e.color=Jt(A,s)}return e})},an={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},cn={name:"transform",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>{if(20===t.type&&"none"===t.value)return null;if(18===t.type){const e=Bn[t.name];if(void 0===e)throw new Error(`Attempting to parse an unsupported transform function "${t.name}"`);return e(A,t.values)}return null}},Bn={matrix:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number);return 6===e.length?e:null},matrix3d:(A,t)=>{const e=t.filter(A=>17===A.type).map(A=>A.number),[r,n,{},{},s,o,{},{},{},{},{},{},i,a]=e;return 16===e.length?[r,n,s,o,i,a]:null},rotate:(A,t)=>{if(1!==t.length)return null;const e=t[0];let r=0;if(17===e.type&&0===e.number)r=0;else{if(15!==e.type)return null;r=Ct(0,e)}const n=Math.cos(r),s=Math.sin(r);return[n,s,-s,n,0,0]}},ln={type:16,number:50,flags:4},gn=[ln,ln],hn={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:(A,t)=>{const e=t.filter(ot);return 2!==e.length?gn:[e[0],e[1]]}},dn={name:"rotate",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?null:17===t.type&&0===t.number?0:15===t.type?180*Ct(0,t)/Math.PI:null},wn={name:"visibility",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},un={name:"word-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"break-all":return"break-all";case"keep-all":return"keep-all";default:return"normal"}}},Qn={name:"white-space",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"pre":return"pre";case"nowrap":return"nowrap";case"pre-wrap":return"pre-wrap";case"pre-line":return"pre-line";default:return"normal"}}},Cn=A=>0!==A,pn=A=>3===A||4===A,Un={name:"writing-mode",initialValue:"horizontal-tb",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"vertical-rl":return 1;case"vertical-lr":return 2;case"sideways-rl":return 3;case"sideways-lr":return 4;default:return 0}}},fn={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(20===t.type)return{auto:!0,order:0};if(PA(t))return{auto:!1,order:t.number};throw new Error("Invalid z-index number parsed")}},Fn=(A,t)=>{if(15===t.type)switch(t.unit.toLowerCase()){case"s":return 1e3*t.number;case"ms":return t.number}throw new Error("Unsupported time type")},mn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:1},yn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},In={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).map(A=>{switch(A.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(A=>0!==A)},Hn={name:"text-decoration-style",initialValue:"solid",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"double":return 1;case"dotted":return 2;case"dashed":return 3;case"wavy":return 4;default:return 0}}},En={name:"text-decoration-thickness",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>{if(XA(t))switch(t.value){case"auto":return"auto";case"from-font":return"from-font"}return GA(t)?t.number:"auto"}},bn={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":GA(t)?t.number:"auto"},xn={name:"font-family",initialValue:"",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=[];return t.forEach(A=>{switch(A.type){case 20:case 0:e.push(A.value);break;case 17:e.push(A.number.toString());break;case 4:r.push(e.join(" ")),e.length=0}}),e.length&&r.push(e.join(" ")),r.map(A=>-1===A.indexOf(" ")?A:`'${A}'`)}},vn={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Kn={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:XA(t)&&"bold"===t.value?700:400},Ln={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>t.filter(XA).map(A=>A.value)},Sn={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},Dn={name:"content",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>{if(0===t.length)return[];const e=t[0];return 20===e.type&&"none"===e.value?[]:t}},Mn=(A,t)=>{const e=[],r=A.filter(YA);for(let A=0;A<r.length;A++){const n=r[A],s=r[A+1];if(20===n.type){const A=s&&PA(s)?s.number:t;e.push([n.value,A])}}return e},Tn={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];return 20===e.type&&"none"===e.value?null:Mn(t,1).map(([A,t])=>({counter:A,increment:t}))}},kn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>0===t.length?[]:Mn(t,0).filter(([A])=>"none"!==A).map(([A,t])=>({counter:A,reset:t}))},On={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:(A,t)=>t.filter(GA).map(A=>Fn(0,A))},Vn={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>{if(0===t.length)return null;const e=t[0];if(20===e.type&&"none"===e.value)return null;const r=[],n=t.filter(JA);if(n.length%2!=0)return null;for(let A=0;A<n.length;A+=2)r.push({open:n[A].value,close:n[A+1].value});return r}},Rn=(A,t,e)=>{if(!A)return"";const r=A[Math.min(t,A.length-1)];return r?e?r.open:r.close:""},Nn={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:zA(t).map(t=>{const e={color:255,offsetX:lt,offsetY:lt,blur:lt,spread:lt,inset:!1};let r=0;for(let n=0;n<t.length;n++){const s=t[n];WA(s,"inset")?e.inset=!0:st(s)?(0===r?e.offsetX=s:1===r?e.offsetY=s:2===r?e.blur=s:e.spread=s,r++):e.color=Jt(A,s)}return e})},Gn={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[];return t.filter(XA).forEach(A=>{switch(A.value){case"stroke":e.push(1);break;case"fill":e.push(0);break;case"markers":e.push(2)}}),[0,1,2].forEach(A=>{-1===e.indexOf(A)&&e.push(A)}),e}},Pn={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Xn={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:(A,t)=>GA(t)?t.number:0},Jn={name:"-webkit-line-clamp",initialValue:"none",prefix:!0,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?0:17===t.type?Math.max(0,Math.floor(t.number)):0},Wn={name:"object-fit",initialValue:"fill",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Yn(t.value),0)},Yn=A=>{switch(A){case"contain":return 2;case"cover":return 4;case"none":return 8;case"scale-down":return 16}return 0},Zn={name:"text-overflow",initialValue:"clip",prefix:!1,type:2,parse:(A,t)=>"ellipsis"===t?1:0},zn={name:"image-rendering",initialValue:"auto",prefix:!1,type:2,parse:(A,t)=>{switch(t.toLowerCase()){case"crisp-edges":case"-webkit-crisp-edges":case"-moz-crisp-edges":return 1;case"pixelated":case"-webkit-optimize-contrast":return 2;case"smooth":case"high-quality":return 3;default:return 0}}},_n={NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"},jn=new Set(Object.values(_n)),qn={name:"mix-blend-mode",initialValue:"normal",type:2,prefix:!1,parse:(A,t)=>jn.has(t)?t:_n.NORMAL},$n={name:"filter",initialValue:"none",prefix:!1,type:1,parse:(A,t)=>{if(1===t.length&&20===t[0].type&&"none"===t[0].value)return null;const e=[];for(const A of t)if(18===A.type){const t=A,r=As(t.values);switch(t.name){case"blur":e.push(`blur(${r}px)`);break;case"brightness":case"contrast":case"invert":case"opacity":case"saturate":case"sepia":e.push(`${t.name}(${r})`);break;case"grayscale":e.push(`grayscale(${r})`);break;case"hue-rotate":e.push(`hue-rotate(${r}deg)`);break;case"drop-shadow":e.push(`drop-shadow(${r})`)}}return e.length>0?e.join(" "):null}},As=A=>{const t=[];for(const e of A)31!==e.type&&(15===e.type?t.push(`${e.number}${e.unit}`):17===e.type?t.push(`${e.number}`):16===e.type?t.push(`${e.number}%`):20===e.type?t.push(e.value):5===e.type&&t.push(`#${e.value}`));return t.join(" ")},ts={name:"font-variant-ligatures",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"none":return 1;case"common-ligatures":return 2;case"no-common-ligatures":return 3;case"discretionary-ligatures":return 4;case"no-discretionary-ligatures":return 5;case"historical-ligatures":return 6;case"no-historical-ligatures":return 7;case"contextual":return 8;case"no-contextual":return 9;default:return 0}}},es={name:"zoom",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>16===t.type?Math.max(0,t.number/100):17===t.type?Math.max(0,t.number):1},rs={name:"object-position",initialValue:"50% 50%",prefix:!1,type:1,parse:(A,t)=>{const e=[];let r=0;for(;r<t.length&&e.length<2;){const A=t[r];if(XA(A))switch(A.value){case"left":case"top":e.push(lt);break;case"center":e.push(gt);break;case"right":case"bottom":e.push(ht)}else ot(A)&&e.push(A);r++}for(;e.length<2;)e.push(gt);return[e[0],e[1]]}},ns=new Set(Object.values({NORMAL:"normal",MULTIPLY:"multiply",SCREEN:"screen",OVERLAY:"overlay",DARKEN:"darken",LIGHTEN:"lighten",COLOR_DODGE:"color-dodge",COLOR_BURN:"color-burn",HARD_LIGHT:"hard-light",SOFT_LIGHT:"soft-light",DIFFERENCE:"difference",EXCLUSION:"exclusion",HUE:"hue",SATURATION:"saturation",COLOR:"color",LUMINOSITY:"luminosity"})),ss={name:"background-blend-mode",initialValue:"normal",prefix:!1,type:1,parse:(A,t)=>{const e=[],r=t.filter(ZA);for(const A of r)XA(A)&&ns.has(A.value)&&e.push(A.value);return e.length>0?e:["normal"]}},os={name:"border-image-source",initialValue:"none",prefix:!1,type:1,skipCache:!0,parse:(A,t)=>{if(0===t.length)return null;const e=t.filter(A=>ZA(A)&&er(A));return 0===e.length?null:tr(A,e[0])}},is={name:"border-image-slice",initialValue:"100%",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];let n=!1,s="percent";for(const A of e)XA(A)&&"fill"===A.value?n=!0:17===A.type?(r.push(A.number),s="number"):16===A.type&&(r.push(A.number),s="percent");const[o,i,a,c]=(A=>{const t=[...A];return 1===t.length?t.push(t[0],t[0],t[0]):2===t.length?t.push(t[0],t[1]):3===t.length&&t.push(t[1]),t.slice(0,4)})(r.length>0?r:[100]);return{top:o,right:i,bottom:a,left:c,fill:n,unit:s}}},as=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},cs={name:"border-image-repeat",initialValue:"stretch",prefix:!1,type:1,parse:(A,t)=>{const e=t.filter(YA),r=[];for(const A of e)XA(A)&&r.push(as(A.value));const n=r[0]??0;return{horizontal:n,vertical:r[1]??n}}},Bs={name:"box-decoration-break",initialValue:"slice",prefix:!1,type:2,parse:(A,t)=>"clone"===t?1:0};var ls=class{constructor(A){this.styles=A}get topColor(){return this.styles.borderTopColor}get rightColor(){return this.styles.borderRightColor}get bottomColor(){return this.styles.borderBottomColor}get leftColor(){return this.styles.borderLeftColor}get topStyle(){return this.styles.borderTopStyle}get rightStyle(){return this.styles.borderRightStyle}get bottomStyle(){return this.styles.borderBottomStyle}get leftStyle(){return this.styles.borderLeftStyle}get topWidth(){return this.styles.borderTopWidth}get rightWidth(){return this.styles.borderRightWidth}get bottomWidth(){return this.styles.borderBottomWidth}get leftWidth(){return this.styles.borderLeftWidth}get topLeftRadius(){return this.styles.borderTopLeftRadius}get topRightRadius(){return this.styles.borderTopRightRadius}get bottomRightRadius(){return this.styles.borderBottomRightRadius}get bottomLeftRadius(){return this.styles.borderBottomLeftRadius}get imageSource(){return this.styles.borderImageSource}get imageSlice(){return this.styles.borderImageSlice}get imageRepeat(){return this.styles.borderImageRepeat}get boxShadow(){return this.styles.boxShadow}},gs=class{constructor(A){this.styles=A}get color(){return this.styles.backgroundColor}get image(){return this.styles.backgroundImage}get clip(){return this.styles.backgroundClip}get origin(){return this.styles.backgroundOrigin}get position(){return this.styles.backgroundPosition}get repeat(){return this.styles.backgroundRepeat}get size(){return this.styles.backgroundSize}get blendMode(){return this.styles.backgroundBlendMode}},hs=class{constructor(A){this.styles=A}get family(){return this.styles.fontFamily}get size(){return this.styles.fontSize}get style(){return this.styles.fontStyle}get variant(){return this.styles.fontVariant}get weight(){return this.styles.fontWeight}get ligatures(){return this.styles.fontVariantLigatures}get color(){return this.styles.color}get letterSpacing(){return this.styles.letterSpacing}get lineHeight(){return this.styles.lineHeight}get textAlign(){return this.styles.textAlign}get textTransform(){return this.styles.textTransform}get textOverflow(){return this.styles.textOverflow}get textShadow(){return this.styles.textShadow}get textDecorationColor(){return this.styles.textDecorationColor}get textDecorationLine(){return this.styles.textDecorationLine}get textDecorationStyle(){return this.styles.textDecorationStyle}get textDecorationThickness(){return this.styles.textDecorationThickness}get textUnderlineOffset(){return this.styles.textUnderlineOffset}get wordBreak(){return this.styles.wordBreak}get lineBreak(){return this.styles.lineBreak}get overflowWrap(){return this.styles.overflowWrap}get writingMode(){return this.styles.writingMode}get direction(){return this.styles.direction}get webkitTextStrokeColor(){return this.styles.webkitTextStrokeColor}get webkitTextStrokeWidth(){return this.styles.webkitTextStrokeWidth}get webkitLineClamp(){return this.styles.webkitLineClamp}get paintOrder(){return this.styles.paintOrder}},ds=class{constructor(A){this.styles=A}get display(){return this.styles.display}get position(){return this.styles.position}get float(){return this.styles.float}get zIndex(){return this.styles.zIndex}get marginTop(){return this.styles.marginTop}get marginRight(){return this.styles.marginRight}get marginBottom(){return this.styles.marginBottom}get marginLeft(){return this.styles.marginLeft}get paddingTop(){return this.styles.paddingTop}get paddingRight(){return this.styles.paddingRight}get paddingBottom(){return this.styles.paddingBottom}get paddingLeft(){return this.styles.paddingLeft}get overflowX(){return this.styles.overflowX}get overflowY(){return this.styles.overflowY}get opacity(){return this.styles.opacity}get visibility(){return this.styles.visibility}get transform(){return this.styles.transform}get transformOrigin(){return this.styles.transformOrigin}get rotate(){return this.styles.rotate}get zoom(){return this.styles.zoom}get clipPath(){return this.styles.clipPath}get mixBlendMode(){return this.styles.mixBlendMode}get filter(){return this.styles.filter}get imageRendering(){return this.styles.imageRendering}get objectFit(){return this.styles.objectFit}get objectPosition(){return this.styles.objectPosition}get boxDecorationBreak(){return this.styles.boxDecorationBreak}get listStyleImage(){return this.styles.listStyleImage}get listStylePosition(){return this.styles.listStylePosition}get listStyleType(){return this.styles.listStyleType}get animationDuration(){return this.styles.animationDuration}isVisible(){return this.styles.isVisible()}isTransparent(){return this.styles.isTransparent()}isTransformed(){return this.styles.isTransformed()}isPositioned(){return this.styles.isPositioned()}isPositionedWithZIndex(){return this.styles.isPositionedWithZIndex()}isFloating(){return this.styles.isFloating()}isInlineLevel(){return this.styles.isInlineLevel()}},ws=class A{get border(){return this._border??(this._border=new ls(this))}get background(){return this._background??(this._background=new gs(this))}get font(){return this._font??(this._font=new hs(this))}get layout(){return this._layout??(this._layout=new ds(this))}static{this.standardProps=[["animationDuration",On,"animationDuration"],["backgroundClip",Se,"backgroundClip"],["backgroundColor",De,"backgroundColor"],["backgroundImage",nr,"backgroundImage"],["backgroundOrigin",sr,"backgroundOrigin"],["backgroundPosition",or,"backgroundPosition"],["backgroundRepeat",ir,"backgroundRepeat"],["backgroundSize",cr,"backgroundSize"],["borderTopColor",gr,"borderTopColor"],["borderRightColor",hr,"borderRightColor"],["borderBottomColor",dr,"borderBottomColor"],["borderLeftColor",wr,"borderLeftColor"],["borderTopLeftRadius",Qr,"borderTopLeftRadius"],["borderTopRightRadius",Cr,"borderTopRightRadius"],["borderBottomRightRadius",pr,"borderBottomRightRadius"],["borderBottomLeftRadius",Ur,"borderBottomLeftRadius"],["borderTopStyle",Fr,"borderTopStyle"],["borderRightStyle",mr,"borderRightStyle"],["borderBottomStyle",yr,"borderBottomStyle"],["borderLeftStyle",Ir,"borderLeftStyle"],["borderTopWidth",Er,"borderTopWidth"],["borderRightWidth",br,"borderRightWidth"],["borderBottomWidth",xr,"borderBottomWidth"],["borderLeftWidth",vr,"borderLeftWidth"],["boxShadow",Nn,"boxShadow"],["clipPath",Dr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",xn,"fontFamily"],["fontSize",vn,"fontSize"],["fontStyle",Sn,"fontStyle"],["fontVariant",Ln,"fontVariant"],["fontWeight",Kn,"fontWeight"],["letterSpacing",Rr,"letterSpacing"],["lineBreak",Nr,"lineBreak"],["lineHeight",Gr,"lineHeight"],["listStyleImage",Xr,"listStyleImage"],["listStylePosition",Jr,"listStylePosition"],["listStyleType",ue,"listStyleType"],["marginTop",Yr,"marginTop"],["marginRight",Zr,"marginRight"],["marginBottom",zr,"marginBottom"],["marginLeft",_r,"marginLeft"],["opacity",mn,"opacity"],["overflowWrap",qr,"overflowWrap"],["paddingTop",An,"paddingTop"],["paddingRight",tn,"paddingRight"],["paddingBottom",en,"paddingBottom"],["paddingLeft",rn,"paddingLeft"],["paintOrder",Gn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",Hn,"textDecorationStyle"],["textDecorationThickness",En,"textDecorationThickness"],["textUnderlineOffset",bn,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Zn,"textOverflow"],["transform",cn,"transform"],["transformOrigin",hn,"transformOrigin"],["rotate",dn,"rotate"],["visibility",wn,"visibility"],["webkitTextStrokeColor",Pn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Xn,"webkitTextStrokeWidth"],["webkitLineClamp",Jn,"webkitLineClamp"],["wordBreak",un,"wordBreak"],["whiteSpace",Qn,"whiteSpace"],["writingMode",Un,"writingMode"],["zIndex",fn,"zIndex"],["objectFit",Wn,"objectFit"],["imageRendering",zn,"imageRendering"],["mixBlendMode",qn,"mixBlendMode"],["filter",$n,"filter"],["fontVariantLigatures",ts,"fontVariantLigatures"],["zoom",es,"zoom"],["objectPosition",rs,"objectPosition"],["backgroundBlendMode",ss,"backgroundBlendMode"],["borderImageSource",os,"borderImageSource"],["borderImageSlice",is,"borderImageSlice"],["borderImageRepeat",cs,"borderImageRepeat"],["boxDecorationBreak",Bs,"boxDecorationBreak"]]}constructor(t,e){const r=A.standardProps;if("none"===e.display){this.display=0;for(const[A,e]of r)"display"!==A&&(this[A]=ps(t,e,void 0));this.float=ps(t,Vr,void 0),this.textDecorationColor=ps(t,yn,void 0),this.textDecorationLine=ps(t,In,void 0);const A=ps(t,jr,void 0);return this.overflowX=A[0],void(this.overflowY=A[A.length>1?1:0])}for(const[A,n,s]of r)this[A]=ps(t,n,e[s]);this.float=ps(t,Vr,e.cssFloat),this.textDecorationColor=ps(t,yn,e.textDecorationColor??e.color),this.textDecorationLine=ps(t,In,e.textDecorationLine??e.textDecoration);const n=ps(t,jr,e.overflow);this.overflowX=n[0],this.overflowY=n[n.length>1?1:0]}isVisible(){return this.display>0&&this.opacity>0&&0===this.visibility}isTransparent(){return Ft(this.backgroundColor)}isTransformed(){return null!==this.transform||null!==this.rotate}isPositioned(){return 0!==this.position}isPositionedWithZIndex(){return this.isPositioned()&&!this.zIndex.auto}isFloating(){return 0!==this.float}isInlineLevel(){return Qe(this.display,4)||Qe(this.display,33554432)||Qe(this.display,268435456)||Qe(this.display,536870912)||Qe(this.display,67108864)||Qe(this.display,134217728)}},us=class{constructor(A,t){this.content=ps(A,Dn,t.content),this.quotes=ps(A,Vn,t.quotes)}},Qs=class{constructor(A,t){this.counterIncrement=ps(A,Tn,t.counterIncrement),this.counterReset=ps(A,kn,t.counterReset)}};const Cs=new Map,ps=(A,t,e)=>{let r=null!=e?e.toString():t.initialValue;""===r.trim()&&(r=t.initialValue);let n=Cs.get(t);if(n){const A=n.get(r);if(void 0!==A)return n.delete(r),n.set(r,A),A}const s=RA.get();s.write(r);const o=new NA(s.read());RA.release(s);const i=(()=>{switch(t.type){case 2:{const e=o.parseComponentValue();return t.parse(A,XA(e)?e.value:t.initialValue)}case 0:return t.parse(A,o.parseComponentValue());case 1:return t.parse(A,o.parseComponentValues());case 4:return o.parseComponentValue();case 3:switch(t.format){case"angle":return Ct(0,o.parseComponentValue());case"color":return Jt(A,o.parseComponentValue());case"image":return tr(A,o.parseComponentValue());case"length":{const A=o.parseComponentValue();return st(A)?A:lt}case"length-percentage":{const A=o.parseComponentValue();return ot(A)?A:lt}case"time":return Fn(0,o.parseComponentValue())}}})();if(n||(n=new Map,Cs.set(t,n)),!(t.skipCache||3===t.type&&"image"===t.format)){if(n.size>=200){const A=n.keys().next().value;n.delete(A)}n.set(r,i)}return i},Us=(A,t)=>{const e=(A=>{if("function"!=typeof A.getAttribute)return 0;switch(A.getAttribute("data-html2canvas-debug")){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}})(A);return 1===e||t===e};var fs=class{constructor(A,t,e){this.cloneNodeFn=A,this.options=t,this.context=e}appendChildNode(A,t,e){this.safeAppendClonedChild(A,t,e)}cloneChildNodes(A,t,e){A.shadowRoot&&t.shadowRoot?(this.cloneShadowDOMChildren(A.shadowRoot,t.shadowRoot,e),this.cloneLightDOMChildren(A,t,e)):A.shadowRoot&&!t.shadowRoot?this.cloneShadowDOMAsLightDOM(A.shadowRoot,t,e):this.cloneLightDOMChildren(A,t,e)}shouldCloneChild(A){return!(Ae(A)&&(t=A,"SCRIPT"===t.tagName||A.hasAttribute("data-html2canvas-ignore")||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(A)));var t}shouldCloneStyleElement(A){return!this.options.copyStyles||!Ae(A)||!Be(A)}safeAppendClonedChild(A,t,e){this.shouldCloneChild(t)&&this.shouldCloneStyleElement(t)&&A.appendChild(this.cloneNodeFn(t,e))}cloneAssignedNodes(A,t,e){A.forEach(A=>{this.safeAppendClonedChild(t,A,e)})}cloneSlotFallbackContent(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.safeAppendClonedChild(t,r,e)}cloneSlotElement(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes)return this.context.logger.warn("HTMLSlotElement.assignedNodes is not available",A),void this.cloneSlotFallbackContent(A,t,e);const n=r.assignedNodes();if(!n||!Array.isArray(n))return this.context.logger.warn("assignedNodes() did not return a valid array",A),void this.cloneSlotFallbackContent(A,t,e);n.length>0?this.cloneAssignedNodes(n,t,e):this.cloneSlotFallbackContent(A,t,e)}cloneShadowDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElement(r,t,e):this.safeAppendClonedChild(t,r,e)}cloneLightDOMChildren(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneSlotElementAsLightDOM(A,t,e){if(!he(A))return;const r=A;if("function"!=typeof r.assignedNodes){for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e);return}const n=r.assignedNodes();if(n&&Array.isArray(n)&&n.length>0)n.forEach(A=>this.appendChildNode(t,A,e));else for(let r=A.firstChild;r;r=r.nextSibling)this.appendChildNode(t,r,e)}cloneShadowDOMAsLightDOM(A,t,e){for(let r=A.firstChild;r;r=r.nextSibling)Ae(r)&&he(r)?this.cloneSlotElementAsLightDOM(r,t,e):this.appendChildNode(t,r,e)}},Fs=class{constructor(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new Ce,this.quoteDepth=0,this.slotCloner=new fs((A,t)=>this.cloneNode(A,t),{ignoreElements:e.ignoreElements,copyStyles:e.copyStyles??!0},A),!t.ownerDocument)throw new Error("Cloned element does not have an owner document");if(!this.options.iframeContainer){const A=(A=>{let t=A;for(;t;){if(t.parentNode&&t.parentNode.host)return t.parentNode;const A=t.getRootNode();if(A&&A!==t.ownerDocument&&A.host)return A;t=t.parentNode}return null})(t);A&&(this.options.iframeContainer=A)}this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}toIFrame(A,t){const e=ms(A,t,this.options.iframeContainer);if(!e.contentWindow)throw new Error("Unable to find iframe window");const r=A.defaultView.pageXOffset,n=A.defaultView.pageYOffset,s=e.contentWindow,o=s.document,i=Hs(e).then(async()=>{this.scrolledElements.forEach(Ks),s&&(s.scrollTo(t.left,t.top),!/AppleWebKit/g.test(navigator.userAgent)||s.scrollY===t.top&&s.scrollX===t.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(s.scrollX-t.left,s.scrollY-t.top,0,0)));const A=this.options.onclone,r=this.clonedReferenceElement;if(void 0===r)throw new Error(`Error finding the ${this.referenceElement.nodeName} in the cloned document`);return o.fonts&&o.fonts.ready&&await o.fonts.ready,/(AppleWebKit)/g.test(navigator.userAgent)&&await Is(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const c=xs(document.doctype)+"<html></html>";try{const A=this.referenceElement.ownerDocument?.defaultView,t=A&&A.trustedTypes;let e=t?.getPolicy?.("html2canvas-pro");!e&&t&&(e=t.createPolicy("html2canvas-pro",{createHTML:A=>A}));const r=e?e.createHTML(c):c;o.write(r)}catch(A){o.write(c)}vs(this.referenceElement.ownerDocument,r,n),o.close();const B=o.adoptNode(this.documentElement);return ks(B,a),o.replaceChild(B,o.documentElement),i}createElementClone(A){if(Us(A,2),oe(A))return this.createCanvasClone(A);if(ie(A))return this.createVideoClone(A);if(Be(A))return this.createStyleClone(A);const t=A.cloneNode(!1);return ae(t)&&(ae(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),"lazy"===t.loading&&(t.loading="eager")),de(t)&&!ee(t)?this.createCustomElementClone(A,t):t}createCustomElementClone(A,t){const e=document.createElement("div");e.className=t.className,bs(t.style,e);const r=t.attributes;for(let A=0;A<r.length;A++){const t=r[A];"class"!==t.name&&"style"!==t.name&&e.setAttribute(t.name,t.value)}if(A.shadowRoot)try{e.attachShadow({mode:"open"})}catch(A){this.context.logger.error("Failed to attach shadow root to custom element clone:",A)}return e}createStyleClone(A){try{const t=A.sheet;if(t&&t.cssRules){const e=[].slice.call(t.cssRules,0).reduce((A,t)=>t&&"string"==typeof t.cssText?A+t.cssText:A,""),r=A.cloneNode(!1);return r.textContent=e,this.options.cspNonce&&(r.nonce=this.options.cspNonce),r}}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}const t=A.cloneNode(!1);return this.options.cspNonce&&(t.nonce=this.options.cspNonce),t}createCanvasClone(A){if(this.options.inlineImages&&A.ownerDocument){const t=A.ownerDocument.createElement("img");try{return t.src=A.toDataURL(),t}catch(t){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",A)}}const t=A.cloneNode(!1);try{t.width=A.width,t.height=A.height;const e=A.getContext("2d"),r=t.getContext("2d",{willReadFrequently:!0});if(r)if(!this.options.allowTaint&&e)r.putImageData(e.getImageData(0,0,A.width,A.height),0,0);else{const t=A.getContext("webgl2")??A.getContext("webgl");t&&!1===t.getContextAttributes()?.preserveDrawingBuffer&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",A),r.drawImage(A,0,0)}return t}catch(t){this.context.logger.info("Unable to clone canvas as it is tainted",A)}return t}createVideoClone(A){const t=A.ownerDocument.createElement("canvas");t.width=A.offsetWidth,t.height=A.offsetHeight;const e=t.getContext("2d");try{return e&&(e.drawImage(A,0,0,t.width,t.height),this.options.allowTaint||e.getImageData(0,0,t.width,t.height)),t}catch(t){this.context.logger.info("Unable to clone video as it is tainted",A)}const r=A.ownerDocument.createElement("canvas");return r.width=A.offsetWidth,r.height=A.offsetHeight,r}appendChildNode(A,t,e){this.slotCloner.appendChildNode(A,t,e)}cloneChildNodes(A,t,e){this.slotCloner.cloneChildNodes(A,t,e)}cloneNode(A,t){if(te(A))return document.createTextNode(A.data);if(!A.ownerDocument)return A.cloneNode(!1);const e=A.ownerDocument.defaultView;if(e&&Ae(A)&&(re(A)||ee(A))){const n=this.createElementClone(A);n.style.transitionProperty="none";const s=e.getComputedStyle(A),o=!ee(r=A)&&!we.has(r.tagName);this.referenceElement===A&&re(n)&&(this.clonedReferenceElement=n),se(n)&&Ms(n,this.options.cspNonce);const i=this.counters.parse(new Qs(this.context,s));if(o){const t=e.getComputedStyle(A,":before"),r=this.resolvePseudoContent(A,n,t,0);r&&n.insertBefore(r,n.firstChild);const s=e.getComputedStyle(A,":after"),o=this.resolvePseudoContent(A,n,s,1);o&&n.appendChild(o)}return de(A)&&(t=!0),ie(A)||this.cloneChildNodes(A,n,t),this.counters.pop(i),(s&&(this.options.copyStyles||ee(A))&&!ce(A)||t)&&bs(s,n),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([n,A.scrollLeft,A.scrollTop]),(le(A)||ge(A))&&(le(n)||ge(n))&&(n.value=A.value),n}var r;return A.cloneNode(!1)}resolvePseudoContent(A,t,e,r){if(!e)return;const n=e.content,s=t.ownerDocument;if(!s||!n||"none"===n||"-moz-alt-content"===n||"none"===e.display)return;this.counters.parse(new Qs(this.context,e));const o=new us(this.context,e),i=s.createElement("html2canvaspseudoelement");bs(e,i),o.content.forEach(t=>{if(0===t.type)i.appendChild(s.createTextNode(t.value));else if(22===t.type){const A=s.createElement("img");A.src=t.value,A.style.opacity="1",i.appendChild(A)}else if(18===t.type){if("attr"===t.name){const e=t.values.filter(XA);e.length&&i.appendChild(s.createTextNode(A.getAttribute(e[0].value)||""))}else if("counter"===t.name){const[A,e]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValue(A.value),r=e&&XA(e)?ue.parse(this.context,e.value):3;i.appendChild(s.createTextNode(Le(t,r,!1)))}}else if("counters"===t.name){const[A,e,r]=t.values.filter(ZA);if(A&&XA(A)){const t=this.counters.getCounterValues(A.value),n=r&&XA(r)?ue.parse(this.context,r.value):3,o=e&&0===e.type?e.value:"",a=t.map(A=>Le(A,n,!1)).join(o);i.appendChild(s.createTextNode(a))}}}else if(20===t.type)switch(t.value){case"open-quote":i.appendChild(s.createTextNode(Rn(o.quotes,this.quoteDepth++,!0)));break;case"close-quote":i.appendChild(s.createTextNode(Rn(o.quotes,--this.quoteDepth,!1)));break;default:i.appendChild(s.createTextNode(t.value))}}),i.className=`${Ls} ${Ss}`;const a=0===r?` ${Ls}`:` ${Ss}`;return ee(t)?t.className.baseValue+=a:t.className+=a,i}static destroy(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)}};const ms=(A,t,e)=>{const r=A.createElement("iframe");return r.className="html2canvas-container",r.style.visibility="hidden",r.style.position="fixed",r.style.left="-10000px",r.style.top="0px",r.style.border="0",r.width=t.width.toString(),r.height=t.height.toString(),r.scrolling="no",r.setAttribute("data-html2canvas-ignore","true"),(e||A.body).appendChild(r),r},ys=A=>new Promise(t=>{A.complete?t():A.src?(A.onload=t,A.onerror=t):t()}),Is=A=>Promise.all([].slice.call(A.images,0).map(ys)),Hs=A=>new Promise((t,e)=>{const r=A.contentWindow;if(!r)return e("No window assigned for iframe");const n=r.document;r.onload=A.onload=()=>{r.onload=A.onload=null;let e=0;const s=setInterval(()=>{e++,(n.body.childNodes.length>0&&"complete"===n.readyState||e>=600)&&(clearInterval(s),t(A))},50)}}),Es=["all","d","content"],bs=(A,t)=>{const e=[];for(let t=A.length-1;t>=0;t--){const r=A.item(t);if(-1===Es.indexOf(r)&&!r.startsWith("--")){const t=A.getPropertyValue(r);if(t){const n=A.getPropertyPriority(r);e.push(n?`${r}:${t} !${n}`:`${r}:${t}`)}}}return e.length>0&&(t.style.cssText=e.join(";")+";"),t},xs=A=>{let t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=" "+A.internalSubset.replace(/"/g,"&quot;").replace(/>/g,"&gt;")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,"&quot;")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,"&quot;")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,"&quot;")+'"'),t+=">"),t},vs=(A,t,e)=>{A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},Ks=([A,t,e])=>{A.scrollLeft=t,A.scrollTop=e},Ls="___html2canvas___pseudoelement_before",Ss="___html2canvas___pseudoelement_after",Ds='{\n content: "" !important;\n display: none !important;\n}',Ms=(A,t)=>{Ts(A,`.${Ls}:before${Ds}\n .${Ss}:after${Ds}`,t)},Ts=(A,t,e)=>{const r=A.ownerDocument;if(r){const n=r.createElement("style");n.textContent=t,e&&(n.nonce=e),A.appendChild(n)}},ks=(A,t)=>{const e=A.ownerDocument.createElement("base");e.href=t;const r=A.getElementsByTagName("head").item(0);r?.insertBefore(e,r?.firstChild??null)};for(var Os=class{static normalizeElement(A,t){const e={};return re(A)?(t.animationDuration.some(A=>A>0)&&(e.animationDuration=A.style.animationDuration,A.style.animationDuration="0s"),null!==t.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)"),null!==t.rotate&&(e.rotate=A.style.rotate,A.style.rotate="0deg",void 0===e.transform&&(e.transform=A.style.transform,A.style.transform="translate(0, 0)")),e):e}static restoreElement(A,t){re(A)&&(void 0!==t.animationDuration&&(A.style.animationDuration=t.animationDuration),void 0!==t.transform&&(A.style.transform=t.transform),void 0!==t.rotate&&(A.style.rotate=t.rotate))}},Vs=class{constructor(A,t,e={}){if(this.context=A,this.textNodes=[],this.elements=[],this.createsStackingContext=!1,this.createsRealStackingContext=!1,this.isListOwner=!1,this.debugRender=!1,Us(t,3),this.styles=new ws(A,A.config.window.getComputedStyle(t,null)),!1!==e.normalizeDom&&re(t)&&(this.originalStyles=Os.normalizeElement(t,this.styles),this.originalElement=t),this.bounds=s(this.context,t),"FIELDSET"===t.tagName){const A=t.querySelector(":scope > legend");if(A){const t=s(this.context,A);this.legendBounds=t;const e=t.top+t.height/2-this.styles.borderTopWidth/2;this.bounds=new n(this.bounds.left,e,this.bounds.width,this.bounds.height-(e-this.bounds.top))}}Us(t,4)&&(this.debugRender=!0)}restore(){this.originalStyles&&this.originalElement&&(Os.restoreElement(this.originalElement,this.originalStyles),this.originalStyles=void 0,this.originalElement=void 0)}restoreTree(){this.restore();for(const A of this.elements)A.restoreTree()}},Rs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Ns=0;Ns<64;Ns++)Rs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Ns)]=Ns;for(var Gs=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),Ps=function(){function A(A,t,e,r,n,s){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=s}return A.prototype.get=function(A){var t;if(A>=0){if(A<55296||A>56319&&A<=65535)return this.data[t=((t=this.index[A>>5])<<2)+(31&A)];if(A<=65535)return this.data[t=((t=this.index[2048+(A-55296>>5)])<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],this.data[t=((t=this.index[t+=A>>5&63])<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue},A}(),Xs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Js=0;Js<64;Js++)Xs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Js)]=Js;var Ws=8,Ys=9,Zs=11,zs=12,_s=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,s="";++n<e;){var o=A[n];o<=65535?r.push(o):r.push(55296+((o-=65536)>>10),o%1024+56320),(n+1===e||r.length>16384)&&(s+=String.fromCharCode.apply(String,r),r.length=0)}return s},js=(()=>{var A,t,e,r=(A=>{var t,e,r,n,s,o=.75*A.length,i=A.length,a=0;"="===A[A.length-1]&&(o--,"="===A[A.length-2]&&o--);var c="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),B=Array.isArray(c)?c:new Uint8Array(c);for(t=0;t<i;t+=4)e=Rs[A.charCodeAt(t)],r=Rs[A.charCodeAt(t+1)],n=Rs[A.charCodeAt(t+2)],s=Rs[A.charCodeAt(t+3)],B[a++]=e<<2|r>>4,B[a++]=(15&r)<<4|n>>2,B[a++]=(3&n)<<6|63&s;return c})("AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),n=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(r):new Uint32Array(r),s=Array.isArray(r)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(r):new Uint16Array(r),o=Gs(s,12,n[4]/2),i=2===n[5]?Gs(s,(24+n[4])/2):(A=n,t=Math.ceil((24+n[4])/4),A.slice?A.slice(t,e):new Uint32Array(Array.prototype.slice.call(A,t,e)));return new Ps(n[0],n[1],n[2],n[3],o,i)})(),qs="×",$s=A=>js.get(A),Ao=(A,t,e)=>{var r=e-2,n=t[r],s=t[e-1],o=t[e];if(2===s&&3===o)return qs;if(2===s||3===s||4===s)return"÷";if(2===o||3===o||4===o)return"÷";if(s===Ws&&-1!==[Ws,Ys,Zs,zs].indexOf(o))return qs;if(!(s!==Zs&&s!==Ys||o!==Ys&&10!==o))return qs;if((s===zs||10===s)&&10===o)return qs;if(13===o||5===o)return qs;if(7===o)return qs;if(1===s)return qs;if(13===s&&14===o){for(;5===n;)n=t[--r];if(14===n)return qs}if(15===s&&15===o){for(var i=0;15===n;)i++,n=t[--r];if(i%2==0)return qs}return"÷"};const to=A=>0===A[0]&&255===A[1]&&0===A[2]&&255===A[3],eo=(A,t,e,r,n)=>{const s="http://www.w3.org/2000/svg",o=document.createElementNS(s,"svg"),i=document.createElementNS(s,"foreignObject");return o.setAttributeNS(null,"width",A.toString()),o.setAttributeNS(null,"height",t.toString()),i.setAttributeNS(null,"width","100%"),i.setAttributeNS(null,"height","100%"),i.setAttributeNS(null,"x",e.toString()),i.setAttributeNS(null,"y",r.toString()),i.setAttributeNS(null,"externalResourcesRequired","true"),o.appendChild(i),i.appendChild(n),o},ro=A=>new Promise((t,e)=>{const r=new Image;r.onload=()=>t(r),r.onerror=e,r.src=`data:image/svg+xml;charset=utf-8,${encodeURIComponent((new XMLSerializer).serializeToString(A))}`}),no={get SUPPORT_RANGE_BOUNDS(){const A=(A=>{if(A.createRange){const t=A.createRange();if(t.getBoundingClientRect){const e=A.createElement("boundtest");e.style.height="123px",e.style.display="block",A.body.appendChild(e),t.selectNode(e);const r=t.getBoundingClientRect(),n=Math.round(r.height);if(A.body.removeChild(e),123===n)return!0}}return!1})(document);return Object.defineProperty(no,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){const A=no.SUPPORT_RANGE_BOUNDS&&(A=>{const t=A.createElement("boundtest");t.style.width="50px",t.style.display="block",t.style.fontSize="12px",t.style.letterSpacing="0px",t.style.wordSpacing="0px",A.body.appendChild(t);const e=A.createRange();t.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const c=n.every((A,t)=>{e.setStart(r,s),e.setEnd(r,s+A.length);const n=e.getBoundingClientRect();s+=A.length;const o=n.x>a.x||n.y>a.y;return a=n,0===t||o});return A.body.removeChild(t),c})(document);return Object.defineProperty(no,"SUPPORT_WORD_BREAKING",{value:A}),A},get SUPPORT_SVG_DRAWING(){const A=(A=>{const t=new Image,e=A.createElement("canvas"),r=e.getContext("2d");if(!r)return!1;t.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{r.drawImage(t,0,0),e.toDataURL()}catch(A){return!1}return!0})(document);return Object.defineProperty(no,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){const A="function"==typeof Array.from&&"function"==typeof window.fetch?(A=>{const t=A.createElement("canvas"),e=100;t.width=e,t.height=e;const r=t.getContext("2d");if(!r)return Promise.reject(new Error("Failed to get 2D rendering context"));r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,e,e);const n=new Image,s=t.toDataURL();n.src=s;const o=eo(e,e,0,0,n);return r.fillStyle="red",r.fillRect(0,0,e,e),ro(o).then(t=>{r.drawImage(t,0,0);const n=r.getImageData(0,0,e,e).data;r.fillStyle="red",r.fillRect(0,0,e,e);const o=A.createElement("div");return o.style.backgroundImage=`url(${s})`,o.style.height="100px",to(n)?ro(eo(e,e,0,0,o)):Promise.reject(new Error("ForeignObject rendering not supported"))}).then(A=>(r.drawImage(A,0,0),to(r.getImageData(0,0,e,e).data))).catch(()=>!1)})(document):Promise.resolve(!1);return Object.defineProperty(no,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){const A=void 0!==(new Image).crossOrigin;return Object.defineProperty(no,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){const A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(no,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){const A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(no,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){const A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(no,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}};var so=class{constructor(A,t){this.text=A,this.bounds=t}};const oo=(A,t,e)=>{const r=A.ownerDocument;if(!r)throw new Error("Node has no owner document");const n=r.createRange();return n.setStart(A,t),n.setEnd(A,t+e),n},io=A=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"grapheme"});return Array.from(t.segment(A)).map(A=>A.segment)}return(A=>{for(var t,e=(A=>{var t=(A=>{for(var t=[],e=0,r=A.length;e<r;){var n=A.charCodeAt(e++);if(n>=55296&&n<=56319&&e<r){var s=A.charCodeAt(e++);56320==(64512&s)?t.push(((1023&n)<<10)+(1023&s)+65536):(t.push(n),e--)}else t.push(n)}return t})(A),e=t.length,r=0,n=0,s=t.map($s);return{next:()=>{if(r>=e)return{done:!0,value:null};for(var A=qs;r<e&&(A=Ao(0,s,++r))===qs;);if(A!==qs||r===e){var o=_s.apply(null,t.slice(n,r));return n=r,{value:o,done:!1}}return{done:!0,value:null}}}})(A),r=[];!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r})(A)},ao=[32,160,4961,65792,65793,4153,4241],co=(A,t)=>{const e=((A,t)=>{var e=o(A),r=((A,t)=>{t||(t={lineBreak:"normal",wordBreak:"normal"});var e=((A,t)=>{void 0===t&&(t="strict");var e=[],r=[],n=[];return A.forEach((A,s)=>{var o=j.get(A);if(o>50?(n.push(!0),o-=50):n.push(!1),-1!==["normal","auto","loose"].indexOf(t)&&-1!==[8208,8211,12316,12448].indexOf(A))return r.push(s),e.push(16);if(4===o||11===o){if(0===s)return r.push(s),e.push(O);var i=e[s-1];return-1===eA.indexOf(i)?(r.push(r[s-1]),e.push(i)):(r.push(s),e.push(O))}return r.push(s),31===o?e.push("strict"===t?K:P):o===Y||29===o?e.push(O):43===o?e.push(A>=131072&&A<=196605||A>=196608&&A<=262141?P:O):void e.push(o)}),[r,e,n]})(A,t.lineBreak),r=e[0],n=e[1],s=e[2];"break-all"!==t.wordBreak&&"break-word"!==t.wordBreak||(n=n.map(A=>-1!==[D,O,Y].indexOf(A)?P:A));var o="keep-all"===t.wordBreak?s.map((t,e)=>t&&A[e]>=19968&&A[e]<=40959):void 0;return[r,n,o]})(e,t),n=r[0],s=r[1],i=r[2],a=e.length,c=0,B=0;return{next:()=>{if(B>=a)return{done:!0,value:null};for(var A=z;B<a&&(A=iA(e,s,n,++B,i))===z;);if(A!==z||B===a){var t=new aA(e,A,c,B);return c=B,{value:t,done:!1}}return{done:!0,value:null}}}})(A,{lineBreak:t.lineBreak,wordBreak:"break-word"===t.overflowWrap?"break-word":t.wordBreak}),r=[];let n;for(;!(n=e.next()).done;)if(n.value){const A=o(n.value.slice());let t="";A.forEach(A=>{-1===ao.indexOf(A)?t+=i(A):(t.length&&r.push(t),r.push(i(A)),t="")}),t.length&&r.push(t)}return r};var Bo=class{constructor(A,t,e){this.text=lo(t.data,e.textTransform),this.text.length!==t.data.length&&(t.data=this.text),this.textBounds=((A,t,e,r)=>{const o=((A,t)=>Cn(t.writingMode)||0!==t.letterSpacing?io(A):((A,t)=>{if(no.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(A=>A.segment)}return co(A,t)})(A,t))(this.text,e),i=[];let a=0;return o.forEach(t=>{if(e.textDecorationLine.length||t.trim().length>0)if(no.SUPPORT_RANGE_BOUNDS){const e=oo(r,a,t.length).getClientRects();if(e.length>1){const e=io(t);let s=0;e.forEach(t=>{i.push(new so(t,n.fromDOMRectList(A,oo(r,s+a,t.length).getClientRects()))),s+=t.length})}else i.push(new so(t,n.fromDOMRectList(A,e)))}else{const e=r.splitText(t.length);i.push(new so(t,((A,t)=>{const e=t.ownerDocument;if(e){const r=e.createElement("html2canvaswrapper");r.appendChild(t.cloneNode(!0));const n=t.parentNode;if(n){n.replaceChild(r,t);const e=s(A,r);return r.firstChild&&n.replaceChild(r.firstChild,r),e}}return n.EMPTY})(A,r))),r=e}else no.SUPPORT_RANGE_BOUNDS||(r=r.splitText(t.length));a+=t.length}),i})(A,0,e,t)}};const lo=(A,t)=>{switch(t){case 1:return A.toLowerCase();case 3:return A.replace(go,ho);case 2:return A.toUpperCase();default:return A}},go=/(^|\s|:|-|\(|\))([a-z])/g,ho=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var wo=class extends Vs{constructor(A,t){super(A,t),this.src=t.currentSrc||t.src,this.intrinsicWidth=t.naturalWidth,this.intrinsicHeight=t.naturalHeight,this.context.cache.addImage(this.src)}},uo=class extends Vs{constructor(A,t){super(A,t),this.canvas=t,this.intrinsicWidth=t.width,this.intrinsicHeight=t.height}},Qo=class extends Vs{constructor(A,t){super(A,t);const e=new XMLSerializer,r=s(A,t);t.setAttribute("width",`${r.width}px`),t.setAttribute("height",`${r.height}px`),this.svg=`data:image/svg+xml,${encodeURIComponent(e.serializeToString(t))}`,this.intrinsicWidth=t.width.baseVal.value,this.intrinsicHeight=t.height.baseVal.value,this.context.cache.addImage(this.svg)}},Co=class extends Vs{constructor(A,t){super(A,t),this.value=t.value}},po=class extends Vs{constructor(A,t){super(A,t),this.start=t.start,this.reversed="boolean"==typeof t.reversed&&!0===t.reversed}};const Uo=[{type:15,flags:0,unit:"px",number:3}],fo=[{type:16,flags:0,number:50}],Fo=707406591;var mo=class extends Vs{constructor(A,t){var e,r;switch(super(A,t),this.type=t.type.toLowerCase(),this.checked=t.checked,this.value=(A=>{const t="password"===A.type?new Array(A.value.length+1).join("•"):A.value;return 0===t.length?A.placeholder||"":t})(t),this.isPlaceholder=0===(e=t).value.length&&!!e.placeholder,"checkbox"!==this.type&&"radio"!==this.type||(this.styles.backgroundColor=3739148031,this.styles.borderTopColor=this.styles.borderRightColor=this.styles.borderBottomColor=this.styles.borderLeftColor=2779096575,this.styles.borderTopWidth=this.styles.borderRightWidth=this.styles.borderBottomWidth=this.styles.borderLeftWidth=1,this.styles.borderTopStyle=this.styles.borderRightStyle=this.styles.borderBottomStyle=this.styles.borderLeftStyle=1,this.styles.backgroundClip=[0],this.styles.backgroundOrigin=[0],this.bounds=(r=this.bounds).width>r.height?new n(r.left+(r.width-r.height)/2,r.top,r.height,r.height):r.width<r.height?new n(r.left,r.top+(r.height-r.width)/2,r.width,r.width):r),this.type){case"checkbox":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=Uo;break;case"radio":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=fo}}},yo=class extends Vs{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},Io=class extends Vs{constructor(A,t){super(A,t),this.value=t.value}},Ho=class extends Vs{constructor(A,t,e){super(A,t),this.src=t.src,this.width=parseInt(t.width,10)||0,this.height=parseInt(t.height,10)||0,this.backgroundColor=this.styles.backgroundColor,this.parseTreeFn=e;try{if(t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement&&this.parseTreeFn){this.tree=this.parseTreeFn(A,t.contentWindow.document.documentElement);const e=t.contentWindow.document.documentElement?qt(A,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):$t.TRANSPARENT,r=t.contentWindow.document.body?qt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):$t.TRANSPARENT;this.backgroundColor=Ft(e)?Ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Eo=["OL","UL","MENU"],bo=(A,t,e,r)=>{for(let n,s=t.firstChild;s;s=n)n=s.nextSibling,xo(A,s,e,r)},xo=(A,t,e,r)=>{if(te(t)&&t.data.length>0)e.textNodes.push(new Bo(A,t,e.styles));else if(Ae(t))if(he(t)&&t.assignedNodes)t.assignedNodes().forEach(t=>xo(A,t,e,r));else{const n=vo(A,t);n.styles.isVisible()&&(Lo(t,n,r)?n.createsRealStackingContext=!0:So(n.styles)&&(n.createsStackingContext=!0),-1!==Eo.indexOf(t.tagName)&&(n.isListOwner=!0),e.elements.push(n),t.shadowRoot?bo(A,t.shadowRoot,n,r):le(t)||ne(t)||ge(t)||bo(A,t,n,r))}},vo=(A,t)=>ae(t)?new wo(A,t):oe(t)?new uo(A,t):ne(t)?new Qo(A,t):"LI"===t.tagName?new Co(A,t):"OL"===t.tagName?new po(A,t):(A=>"INPUT"===A.tagName)(t)?new mo(A,t):ge(t)?new yo(A,t):le(t)?new Io(A,t):ce(t)?new Ho(A,t,Ko):new Vs(A,t),Ko=(A,t)=>{const e=vo(A,t);return e.createsRealStackingContext=!0,bo(A,t,e,e),e},Lo=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),So=A=>!(!A.isPositioned()&&!A.isFloating())||Qe(A.display,268435456)||Qe(A.display,33554432)||Qe(A.display,536870912)||Qe(A.display,134217728),Do=(A,t)=>A.length===t.length&&A.some((A,e)=>A===t[e]);var Mo=class A{constructor(A,t){this.type=0,this.x=A,this.y=t}add(t,e){return new A(this.x+t,this.y+e)}};const To=(A,t,e)=>new Mo(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e);var ko=class A{constructor(A,t,e,r){this.type=1,this.start=A,this.startControl=t,this.endControl=e,this.end=r}subdivide(t,e){const r=To(this.start,this.startControl,t),n=To(this.startControl,this.endControl,t),s=To(this.endControl,this.end,t),o=To(r,n,t),i=To(n,s,t),a=To(o,i,t);return e?new A(this.start,r,o,a):new A(a,i,s,this.end)}add(t,e){return new A(this.start.add(t,e),this.startControl.add(t,e),this.endControl.add(t,e),this.end.add(t,e))}reverse(){return new A(this.end,this.endControl,this.startControl,this.start)}};const Oo=A=>1===A.type;var Vo=class{constructor(A){const t=A.styles,e=A.bounds;let[r,n]=dt(t.borderTopLeftRadius,e.width,e.height),[s,o]=dt(t.borderTopRightRadius,e.width,e.height),[i,a]=dt(t.borderBottomRightRadius,e.width,e.height),[c,B]=dt(t.borderBottomLeftRadius,e.width,e.height);const l=[];l.push((r+s)/e.width),l.push((c+i)/e.width),l.push((n+B)/e.height),l.push((o+a)/e.height);const g=Math.max(...l);g>1&&(r/=g,n/=g,s/=g,o/=g,i/=g,a/=g,c/=g,B/=g);const h=e.width-s,d=e.height-a,w=e.width-i,u=e.height-B,Q=t.borderTopWidth,C=t.borderRightWidth,p=t.borderBottomWidth,U=t.borderLeftWidth,f=wt(t.paddingTop,A.bounds.width),F=wt(t.paddingRight,A.bounds.width),m=wt(t.paddingBottom,A.bounds.width),y=wt(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||n>0?Ro(e.left+U/3,e.top+Q/3,r-U/3,n-Q/3,0):new Mo(e.left+U/3,e.top+Q/3),this.topRightBorderDoubleOuterBox=r>0||n>0?Ro(e.left+h,e.top+Q/3,s-C/3,o-Q/3,1):new Mo(e.left+e.width-C/3,e.top+Q/3),this.bottomRightBorderDoubleOuterBox=i>0||a>0?Ro(e.left+w,e.top+d,i-C/3,a-p/3,2):new Mo(e.left+e.width-C/3,e.top+e.height-p/3),this.bottomLeftBorderDoubleOuterBox=c>0||B>0?Ro(e.left+U/3,e.top+u,c-U/3,B-p/3,3):new Mo(e.left+U/3,e.top+e.height-p/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?Ro(e.left+2*U/3,e.top+2*Q/3,r-2*U/3,n-2*Q/3,0):new Mo(e.left+2*U/3,e.top+2*Q/3),this.topRightBorderDoubleInnerBox=r>0||n>0?Ro(e.left+h,e.top+2*Q/3,s-2*C/3,o-2*Q/3,1):new Mo(e.left+e.width-2*C/3,e.top+2*Q/3),this.bottomRightBorderDoubleInnerBox=i>0||a>0?Ro(e.left+w,e.top+d,i-2*C/3,a-2*p/3,2):new Mo(e.left+e.width-2*C/3,e.top+e.height-2*p/3),this.bottomLeftBorderDoubleInnerBox=c>0||B>0?Ro(e.left+2*U/3,e.top+u,c-2*U/3,B-2*p/3,3):new Mo(e.left+2*U/3,e.top+e.height-2*p/3),this.topLeftBorderStroke=r>0||n>0?Ro(e.left+U/2,e.top+Q/2,r-U/2,n-Q/2,0):new Mo(e.left+U/2,e.top+Q/2),this.topRightBorderStroke=r>0||n>0?Ro(e.left+h,e.top+Q/2,s-C/2,o-Q/2,1):new Mo(e.left+e.width-C/2,e.top+Q/2),this.bottomRightBorderStroke=i>0||a>0?Ro(e.left+w,e.top+d,i-C/2,a-p/2,2):new Mo(e.left+e.width-C/2,e.top+e.height-p/2),this.bottomLeftBorderStroke=c>0||B>0?Ro(e.left+U/2,e.top+u,c-U/2,B-p/2,3):new Mo(e.left+U/2,e.top+e.height-p/2),this.topLeftBorderBox=r>0||n>0?Ro(e.left,e.top,r,n,0):new Mo(e.left,e.top),this.topRightBorderBox=s>0||o>0?Ro(e.left+h,e.top,s,o,1):new Mo(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?Ro(e.left+w,e.top+d,i,a,2):new Mo(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=c>0||B>0?Ro(e.left,e.top+u,c,B,3):new Mo(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?Ro(e.left+U,e.top+Q,Math.max(0,r-U),Math.max(0,n-Q),0):new Mo(e.left+U,e.top+Q),this.topRightPaddingBox=s>0||o>0?Ro(e.left+Math.min(h,e.width-C),e.top+Q,h>e.width+C?0:Math.max(0,s-C),Math.max(0,o-Q),1):new Mo(e.left+e.width-C,e.top+Q),this.bottomRightPaddingBox=i>0||a>0?Ro(e.left+Math.min(w,e.width-U),e.top+Math.min(d,e.height-p),Math.max(0,i-C),Math.max(0,a-p),2):new Mo(e.left+e.width-C,e.top+e.height-p),this.bottomLeftPaddingBox=c>0||B>0?Ro(e.left+U,e.top+Math.min(u,e.height-p),Math.max(0,c-U),Math.max(0,B-p),3):new Mo(e.left+U,e.top+e.height-p),this.topLeftContentBox=r>0||n>0?Ro(e.left+U+y,e.top+Q+f,Math.max(0,r-(U+y)),Math.max(0,n-(Q+f)),0):new Mo(e.left+U+y,e.top+Q+f),this.topRightContentBox=s>0||o>0?Ro(e.left+Math.min(h,e.width+U+y),e.top+Q+f,h>e.width+U+y?0:s-U+y,o-(Q+f),1):new Mo(e.left+e.width-(C+F),e.top+Q+f),this.bottomRightContentBox=i>0||a>0?Ro(e.left+Math.min(w,e.width-(U+y)),e.top+Math.min(d,e.height+Q+f),Math.max(0,i-(C+F)),a-(p+m),2):new Mo(e.left+e.width-(C+F),e.top+e.height-(p+m)),this.bottomLeftContentBox=c>0||B>0?Ro(e.left+U+y,e.top+u,Math.max(0,c-(U+y)),B-(p+m),3):new Mo(e.left+U+y,e.top+e.height-(p+m))}};const Ro=(A,t,e,r,n)=>{const s=(Math.sqrt(2)-1)/3*4,o=e*s,i=r*s,a=A+e,c=t+r;switch(n){case 0:return new ko(new Mo(A,c),new Mo(A,c-i),new Mo(a-o,t),new Mo(a,t));case 1:return new ko(new Mo(A,t),new Mo(A+o,t),new Mo(a,c-i),new Mo(a,c));case 2:return new ko(new Mo(a,t),new Mo(a,t+i),new Mo(A+o,c),new Mo(A,c));default:return new ko(new Mo(a,c),new Mo(a-o,c),new Mo(A,t+i),new Mo(A,t))}},No=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],Go=A=>[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox];var Po=class{constructor(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6}},Xo=class{constructor(A,t){this.path=A,this.target=t,this.type=1}},Jo=class{constructor(A){this.opacity=A,this.type=2,this.target=6}},Wo=class{constructor(A){this.applyClip=A,this.type=3,this.target=6}};const Yo={[_n.NORMAL]:"source-over",[_n.MULTIPLY]:"multiply",[_n.SCREEN]:"screen",[_n.OVERLAY]:"overlay",[_n.DARKEN]:"darken",[_n.LIGHTEN]:"lighten",[_n.COLOR_DODGE]:"color-dodge",[_n.COLOR_BURN]:"color-burn",[_n.HARD_LIGHT]:"hard-light",[_n.SOFT_LIGHT]:"soft-light",[_n.DIFFERENCE]:"difference",[_n.EXCLUSION]:"exclusion",[_n.HUE]:"hue",[_n.SATURATION]:"saturation",[_n.COLOR]:"color",[_n.LUMINOSITY]:"luminosity"};var Zo=class{constructor(A){this.mixBlendMode=A,this.type=4,this.target=6,this.compositeOperation=Yo[A]}},zo=class A{constructor(t){this.type=5,this.target=6;const e=A.parseDropShadow(t);this.shadow=e.shadow,this.safeFilterString=e.safeFilterString}static parseDropShadow(t){if(!t)return{safeFilterString:""};const e=A.findDropShadows(t);if(0===e.length)return{safeFilterString:t};const r=A.parseDropShadowBody(e[0].body);let n="",s=0;for(const A of e)n+=t.slice(s,A.start),s=A.end;return n+=t.slice(s),{shadow:r,safeFilterString:n.replace(/\s+/g," ").trim()}}static findDropShadows(A){const t=[],e=/drop-shadow\(/gi;let r;for(;null!==(r=e.exec(A));){const e=r.index+12-1,n=r.index;let s=1,o=e+1;for(;o<A.length&&s>0;){const t=A[o];"("===t?s++:")"===t&&s--,o++}if(0!==s)break;const i=A.slice(e+1,o-1);t.push({body:i,start:n,end:o})}return t}static parseDropShadowBody(t){const e=A.tokenizeFilterArgs(t.trim()),r=[];let n;for(const t of e)A.isCSSLength(t)?r.push(parseFloat(t)):t&&(n=t);if(!(r.length<2||r.length>3))return{offsetX:r[0],offsetY:r[1],blur:r[2]??0,color:n??"rgba(0,0,0,1)"}}static tokenizeFilterArgs(A){const t=[];let e="",r=0;for(let n=0;n<A.length;n++){const s=A[n];"("===s?(r++,e+=s):")"===s?(r--,e+=s):/\s/.test(s)?r>0?e+=s:e&&(t.push(e),e=""):e+=s}return e&&t.push(e),t}static isCSSLength(A){return/^-?[\d.]+(px|em|rem|pt|cm|mm|in|pc|ex|ch|vw|vh|vmin|vmax|%)?$/i.test(A)}};const _o=A=>0===A.type,jo=A=>1===A.type,qo=A=>3===A.type;var $o=class{constructor(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}},Ai=class{constructor(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new Vo(this.container),this.container.styles.opacity<1&&this.effects.push(new Jo(this.container.styles.opacity)),null!==this.container.styles.rotate){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.rotate*Math.PI/180,n=Math.cos(r),s=Math.sin(r);this.effects.push(new Po(t,e,[n,s,-s,n,0,0]))}if(null!==this.container.styles.transform){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height);this.effects.push(new Po(t,e,this.container.styles.transform))}if(ti(this.container.styles)){const A=No(this.curves),t=Go(this.curves);Do(A,t)?this.effects.push(new Xo(A,6)):(this.effects.push(new Xo(A,2)),this.effects.push(new Xo(t,4)))}if(0!==this.container.styles.clipPath.type){const A=ri(this.container.styles.clipPath,this.container.bounds);A&&this.effects.push(A)}if(this.container.styles.mixBlendMode!==_n.NORMAL&&this.effects.push(new Zo(this.container.styles.mixBlendMode)),null!==this.container.styles.filter&&this.effects.push(new zo(this.container.styles.filter)),1!==this.container.styles.zoom){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+wt(A[0],this.container.bounds.width),e=this.container.bounds.top+wt(A[1],this.container.bounds.height),r=this.container.styles.zoom;this.effects.push(new Po(t,e,[r,0,0,r,0,0]))}}getEffects(A){let t=-1===[2,3].indexOf(this.container.styles.position),e=this.parent;const r=this.effects.slice(0);for(;e;){const A=e.effects.filter(A=>!jo(A));if(t||0!==e.container.styles.position||!e.parent){if(t=-1===[2,3].indexOf(e.container.styles.position),ti(e.container.styles)){const A=No(e.curves),t=Go(e.curves);Do(A,t)||r.unshift(new Xo(t,6))}r.unshift(...A)}else r.unshift(...A);e=e.parent}return r.filter(t=>Qe(t.target,A))}};const ti=A=>0!==A.overflowX||0!==A.overflowY,ei=(A,t,e,r,n)=>"closest-side"===A?Math.min(t-e,r-t):"farthest-side"===A?Math.max(t-e,r-t):wt(A,n),ri=(A,t)=>{const{left:e,top:r,width:n,height:s}=t;switch(A.type){case 1:{const t=wt(A.left,n),o=wt(A.top,s),i=e+t,a=r+o,c=Math.max(0,n-t-wt(A.right,n)),B=Math.max(0,s-o-wt(A.bottom,s));return new Wo(A=>{A.beginPath(),A.rect(i,a,c,B),A.clip()})}case 2:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s);let i;return i="closest-side"===A.radius?Math.min(t-e,o-r,e+n-t,r+s-o):"farthest-side"===A.radius?Math.max(t-e,o-r,e+n-t,r+s-o):wt(A.radius,Math.sqrt(n*n+s*s)/Math.SQRT2),new Wo(A=>{A.beginPath(),A.arc(t,o,Math.max(0,i),0,2*Math.PI),A.clip()})}case 3:{const t=e+wt(A.cx,n),o=r+wt(A.cy,s),i=ei(A.rx,t,e,e+n,n),a=ei(A.ry,o,r,r+s,s);return new Wo(A=>{A.beginPath(),A.ellipse(t,o,Math.max(0,i),Math.max(0,a),0,0,2*Math.PI),A.clip()})}case 4:{const t=A.points.map(([A,t])=>[e+wt(A,n),r+wt(t,s)]);return new Wo(A=>{if(A.beginPath(),t.length>0){A.moveTo(t[0][0],t[0][1]);for(let e=1;e<t.length;e++)A.lineTo(t[e][0],t[e][1]);A.closePath()}A.clip()})}case 5:{const{d:t}=A;let n=null;return new Wo(A=>{try{n||(n=new Path2D(t));const s=A.getTransform();A.translate(e,r),A.clip(n),A.setTransform(s)}catch(A){}})}default:return null}},ni=(A,t,e,r)=>{A.container.elements.forEach(n=>{const s=n.createsRealStackingContext,o=n.createsStackingContext,i=new Ai(n,A);Qe(n.styles.display,2048)&&r.push(i);const a=n.isListOwner?[]:r;if(s||o){const A=s||n.styles.isPositioned()?e:t,r=new $o(i);if(n.styles.isPositioned()||n.styles.opacity<1||n.styles.isTransformed()){const t=n.styles.zIndex.order;if(t<0){let e=0;A.negativeZIndex.some((A,r)=>t>A.element.container.styles.zIndex.order?(e=r,!1):e>0),A.negativeZIndex.splice(e,0,r)}else if(t>0){let e=0;A.positiveZIndex.some((A,r)=>t>=A.element.container.styles.zIndex.order?(e=r+1,!1):e>0),A.positiveZIndex.splice(e,0,r)}else A.zeroOrAutoZIndexOrTransformedOrOpacity.push(r)}else n.styles.isFloating()?A.nonPositionedFloats.push(r):A.nonPositionedInlineLevel.push(r);ni(i,r,s?r:e,a)}else n.styles.isInlineLevel()?t.inlineLevel.push(i):t.nonInlineLevel.push(i),ni(i,t,e,a);n.isListOwner&&si(n,a)})},si=(A,t)=>{let e=A instanceof po?A.start:1;const r=A instanceof po&&A.reversed;for(let A=0;A<t.length;A++){const n=t[A];n.container instanceof Co&&"number"==typeof n.container.value&&0!==n.container.value&&(e=n.container.value),n.listValue=Le(e,n.container.styles.listStyleType,!0),e+=r?-1:1}},oi=A=>{const t=A.styles;return A.bounds.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},ii=A=>{const t=A.styles,e=A.bounds,r=wt(t.paddingLeft,e.width),n=wt(t.paddingRight,e.width),s=wt(t.paddingTop,e.width),o=wt(t.paddingBottom,e.width);return e.add(r+t.borderLeftWidth,s+t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth+r+n),-(t.borderTopWidth+t.borderBottomWidth+s+o))},ai=(A,t,e)=>{const r=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundOrigin,t),A),n=((A,t)=>0===A?t.bounds:2===A?ii(t):oi(t))(gi(A.styles.backgroundClip,t),A),s=li(gi(A.styles.backgroundSize,t),e,r);let[o,i]=s;const a=dt(gi(A.styles.backgroundPosition,t),r.width-o,r.height-i),c=hi(gi(A.styles.backgroundRepeat,t),a,s,r,n),B=Math.round(r.left+a[0]),l=Math.round(r.top+a[1]);return o=Math.max(1,o),i=Math.max(1,i),[c,B,l,o,i]},ci=A=>XA(A)&&"auto"===A.value,Bi=A=>"number"==typeof A,li=(A,[t,e,r],n)=>{const[s,o]=A;if(!s)return[0,0];if(ot(s)&&o&&ot(o))return[wt(s,n.width),wt(o,n.height)];const i=Bi(r);if(XA(s)&&("contain"===s.value||"cover"===s.value))return Bi(r)?n.width/n.height<r!=("cover"===s.value)?[n.width,n.width/r]:[n.height*r,n.height]:[n.width,n.height];const a=Bi(t),c=Bi(e),B=a||c;if(ci(s)&&(!o||ci(o)))return a&&c?[t,e]:i||B?B&&i?[a?t:e*r,c?e:t/r]:[a?t:n.width,c?e:n.height]:[n.width,n.height];if(i){let A=0,t=0;return ot(s)?A=wt(s,n.width):ot(o)&&(t=wt(o,n.height)),ci(s)?A=t*r:o&&!ci(o)||(t=A/r),[A,t]}let l=null,g=null;if(ot(s)?l=wt(s,n.width):o&&ot(o)&&(g=wt(o,n.height)),null===l||o&&!ci(o)||(g=a&&c?l/t*e:n.height),null!==g&&ci(s)&&(l=a&&c?g/e*t:n.width),null!==l&&null!==g)return[l,g];throw new Error("Unable to calculate background-size for element")},gi=(A,t)=>{const e=A[t];return void 0===e?A[0]:e},hi=(A,[t,e],[r,n],s,o)=>{switch(A){case 2:return[new Mo(Math.round(s.left),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(s.top+e)),new Mo(Math.round(s.left+s.width),Math.round(n+s.top+e)),new Mo(Math.round(s.left),Math.round(n+s.top+e))];case 3:return[new Mo(Math.round(s.left+t),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.top)),new Mo(Math.round(s.left+t+r),Math.round(s.height+s.top)),new Mo(Math.round(s.left+t),Math.round(s.height+s.top))];case 1:return[new Mo(Math.round(s.left+t),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e)),new Mo(Math.round(s.left+t+r),Math.round(s.top+e+n)),new Mo(Math.round(s.left+t),Math.round(s.top+e+n))];default:return[new Mo(Math.round(o.left),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.top)),new Mo(Math.round(o.left+o.width),Math.round(o.height+o.top)),new Mo(Math.round(o.left),Math.round(o.height+o.top))]}};var di=class{constructor(A){this.ctx=A}render(A,t){this.ctx.fillStyle=mt(t.textDecorationColor||t.color);let e=1;"number"==typeof t.textDecorationThickness?e=t.textDecorationThickness:"from-font"===t.textDecorationThickness&&(e=Math.max(1,Math.floor(.05*t.fontSize.number)));let r=0;"number"==typeof t.textUnderlineOffset&&(r=t.textUnderlineOffset);const n=t.textDecorationStyle;t.textDecorationLine.forEach(t=>{let s=0;switch(t){case 1:s=A.top+A.height-e+r;break;case 2:s=A.top;break;case 3:s=A.top+(A.height/2-e/2);break;default:return}this.draw(A.left,s,A.width,e,n)})}draw(A,t,e,r,n){switch(n){case 0:default:this.ctx.fillRect(A,t,e,r);break;case 1:{const n=Math.max(1,r);this.ctx.fillRect(A,t,e,r),this.ctx.fillRect(A,t+r+n,e,r);break}case 2:this.drawPattern(A,t,e,r,[r,2*r]);break;case 3:this.drawPattern(A,t,e,r,[3*r,2*r]);break;case 4:this.drawWavy(A,t,e,r)}}drawPattern(A,t,e,r,n){this.ctx.save(),this.ctx.beginPath(),this.ctx.setLineDash(n),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle,this.ctx.moveTo(A,t+r/2),this.ctx.lineTo(A+e,t+r/2),this.ctx.stroke(),this.ctx.restore()}drawWavy(A,t,e,r){this.ctx.save(),this.ctx.beginPath(),this.ctx.lineWidth=r,this.ctx.strokeStyle=this.ctx.fillStyle;const n=2*r,s=4*r;let o=A;for(this.ctx.moveTo(o,t+r/2);o<A+e;){const i=Math.min(o+s/2,A+e);if(this.ctx.quadraticCurveTo(o+s/4,t+r/2-n,i,t+r/2),o=i,o<A+e){const i=Math.min(o+s/2,A+e);this.ctx.quadraticCurveTo(o+s/4,t+r/2+n,i,t+r/2),o=i}}this.ctx.stroke(),this.ctx.restore()}};const wi=(A,t)=>{const e=A.measureText("Mg"),r=e.fontBoundingBoxAscent,n=void 0===r||Number.isNaN(r)?e.actualBoundingBoxAscent:r;return void 0===n||Number.isNaN(n)?t:n},ui=["-apple-system","system-ui"],Qi=/[\u2E80-\u2FFF\u3000-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uAC00-\uD7AF\uF900-\uFAFF\uFF01-\uFFEF]/,Ci=A=>Qi.test(A);var pi=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new di(A.ctx)}cachedMeasureText(A,t){let e=this.glyphWidthCache;e||(e=new Map,this.glyphWidthCache=e);const r=A+t;let n=e.get(r);return void 0===n&&(n=this.ctx.measureText(A).width,e.set(r,n)),n}iterateLettersWithLetterSpacing(A,t,e,r,n){if(Cn(r))return void this.iterateVerticalGlyphs(A,t,e,r,n);const s=io(A.text),o=A.bounds.top+e,i=this.ctx.font;let a=A.bounds.left;for(const A of s){if(Ci(A)){const t=this.ctx.textBaseline;this.ctx.textBaseline="ideographic",n(A,a,o),this.ctx.textBaseline=t}else n(A,a,o);a+=this.cachedMeasureText(A,i)+t}}iterateVerticalGlyphs(A,t,e,r,n){const s=io(A.text),o=this.ctx.font,i=4===r?-Math.PI/2:Math.PI/2;let a=A.bounds.top;for(let c=0;c<s.length;){const B=s[c];if(!(pn(r)||!Ci(B)&&B.trim().length>0)){const r=this.ctx.textBaseline;Ci(B)&&(this.ctx.textBaseline="ideographic"),n(B,A.bounds.left,a+e),this.ctx.textBaseline=r,a+=this.cachedMeasureText(B,o)+t,c++;continue}const l=c;for(;c<s.length;){const A=s[c];if(!pn(r)&&!Ci(A)&&0===A.trim().length)break;if(!(pn(r)||!Ci(A)&&A.trim().length>0))break;c++}this.ctx.save(),this.ctx.translate(A.bounds.left+e,a),this.ctx.rotate(i);let g=0;for(let A=l;A<c;A++)n(s[A],0,g),g+=this.cachedMeasureText(s[A],o)+t;this.ctx.restore(),a+=g}}renderTextWithLetterSpacing(A,t,e,r=0){this.renderFillText(A,t,e,r)}canRenderWholeText(A,t){return 0===A&&!Cn(t)}renderFillText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.fillText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.fillText(A,t,e)})}renderStrokeText(A,t,e,r){this.canRenderWholeText(t,r)?this.ctx.strokeText(A.text,A.bounds.left,A.bounds.top+e):this.iterateLettersWithLetterSpacing(A,t,e,r,(A,t,e)=>{this.ctx.strokeText(A,t,e)})}renderTextStrokeWithStyle(A,t,e){t.webkitTextStrokeWidth&&A.text.trim().length&&(this.ctx.strokeStyle=mt(t.webkitTextStrokeColor),this.ctx.lineWidth=t.webkitTextStrokeWidth,this.ctx.lineJoin=("undefined"!=typeof window?window:void 0)?.chrome?"miter":"round",this.renderStrokeText(A,t.letterSpacing,e,t.writingMode),this.ctx.strokeStyle="",this.ctx.lineWidth=0,this.ctx.lineJoin="miter")}renderTextFillWithShadows(A,t,e){this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode);const r=t.textShadow;r.length&&A.text.trim().length&&(r.slice(0).reverse().forEach(r=>{this.ctx.shadowColor=mt(r.color),this.ctx.shadowOffsetX=r.offsetX.number*this.options.scale,this.ctx.shadowOffsetY=r.offsetY.number*this.options.scale,this.ctx.shadowBlur=r.blur.number,this.renderTextWithLetterSpacing(A,t.letterSpacing,e,t.writingMode)}),this.ctx.shadowColor="",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0)}renderTextBoundWithPaintOrder(A,t,e,r){e.forEach(e=>{switch(e){case 0:this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(A,t.letterSpacing,r,t.writingMode);break;case 1:this.renderTextStrokeWithStyle(A,t,r)}})}renderTextDecoration(A,t){this.decorationRenderer.render(A,t)}truncateTextWithEllipsis(A,t,e){const r=this.ctx.measureText("…").width,n=io(A);if(0===e){const A=A=>this.ctx.measureText(n.slice(0,A).join("")).width+r<=t;let e=0,s=n.length;for(;e<s;){const t=e+s+1>>1;A(t)?e=t:s=t-1}return n.slice(0,e).join("")+"…"}{const A=this.ctx.font;let s=r;const o=[];for(const r of n){const n=this.cachedMeasureText(r,A);if(s+n>t)break;o.push(r),s+=n+e}return o.join("")+"…"}}createFontStyle(A){const t=A.fontVariant.filter(A=>"normal"===A||"small-caps"===A).join(""),e=(A=>{const t=(()=>{if("undefined"==typeof navigator)return null;const A=navigator.userAgent,t=/iPhone|iPad|iPod/.test(A),e=/Macintosh/.test(A)&&navigator.maxTouchPoints&&navigator.maxTouchPoints>1;if(!t&&!e)return null;for(const t of[/(?:iPhone|CPU(?:\siPhone)?)\sOS\s(\d+)[\._](\d+)/,/Version\/(\d+)\.(\d+)/]){const e=A.match(t);if(e&&e[1])return parseInt(e[1],10)}return null})();return null!==t&&t>=15&&t<17?A.map(A=>-1!==ui.indexOf(A)?'-apple-system, "Helvetica Neue", Arial, sans-serif':A):A})(A.fontFamily).join(", "),r=GA(A.fontSize)?`${A.fontSize.number}${A.fontSize.unit}`:`${A.fontSize.number}px`;return[[A.fontStyle,t,A.fontWeight,r,e].join(" "),e,r]}renderLineClampedText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=[];let i=[],a=A.textBounds[0].bounds.top;A.textBounds.forEach(A=>{Math.abs(A.bounds.top-a)>=.5*s?(i.length>0&&o.push(i),i=[A],a=A.bounds.top):i.push(A)}),i.length>0&&o.push(i);const c=t.webkitLineClamp;if(o.length<=c)return!1;for(let A=0;A<c-1;A++)o[A].forEach(A=>this.renderTextBoundWithPaintOrder(A,t,e,r));const B=o[c-1];if(B?.length&&n){const A=B.map(A=>A.text).join(""),s=B[0],o=new so(this.truncateTextWithEllipsis(A,n.width-(s.bounds.left-n.left),t.letterSpacing),s.bounds);for(const A of e)0===A?(this.ctx.fillStyle=mt(t.color),this.renderTextWithLetterSpacing(o,t.letterSpacing,r,t.writingMode)):1===A&&this.renderTextStrokeWithStyle(o,t,r)}return!0}renderEllipsisText(A,t,e,r,n){const s=1.5*t.fontSize.number,o=A.textBounds[0].bounds.top;if(!A.textBounds.every(A=>Math.abs(A.bounds.top-o)<.5*s))return!1;let i=A.textBounds.map(A=>A.text).join("").replace(/\s+/g," ").trim();if(this.ctx.measureText(i).width<=n.width+1)return!1;const a=new so(this.truncateTextWithEllipsis(i,n.width,t.letterSpacing),A.textBounds[0].bounds);for(const A of e)0===A?this.renderTextFillWithShadows(a,t,r):1===A&&this.renderTextStrokeWithStyle(a,t,r);return!0}async renderTextNode(A,t,e){this.glyphWidthCache=null;const[r]=this.createFontStyle(t);this.ctx.font=r,this.ctx.direction=1===t.direction?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic";const n=t.paintOrder,s=wi(this.ctx,t.fontSize.number);t.webkitLineClamp>0&&2&t.display&&1===t.overflowY&&A.textBounds.length>0&&this.renderLineClampedText(A,t,n,s,e)||1===t.textOverflow&&e&&1===t.overflowX&&A.textBounds.length>0&&this.renderEllipsisText(A,t,n,s,e)||A.textBounds.forEach(A=>{n.forEach(e=>{0===e?(this.renderTextFillWithShadows(A,t,s),t.textDecorationLine.length&&this.renderTextDecoration(A.bounds,t)):1===e&&this.renderTextStrokeWithStyle(A,t,s)})})}};const Ui=(A,t)=>{t.forEach((t,e)=>{const r=Oo(t)?t.start:t;0===e?A.moveTo(r.x,r.y):A.lineTo(r.x,r.y),Oo(t)&&A.bezierCurveTo(t.startControl.x,t.startControl.y,t.endControl.x,t.endControl.y,t.end.x,t.end.y)})},fi=(A,t)=>{A.beginPath(),Ui(A,t),A.closePath()};var Fi=class{constructor(A){this.maxSize=A,this._map=new Map}get(A){if(!this._map.has(A))return;const t=this._map.get(A);return this._map.delete(A),this._map.set(A,t),t}set(A,t){if(this._map.has(A))this._map.delete(A);else if(this._map.size>=this.maxSize){const A=this._map.keys().next().value;void 0!==A&&this._map.delete(A)}this._map.set(A,t)}get size(){return this._map.size}clear(){this._map.clear()}},mi=class{constructor(A){this.patternCache=new Fi(50),this.ctx=A.ctx,this.context=A.context,this.canvas=A.canvas}async renderBackgroundImage(A){let t=A.styles.backgroundImage.length-1;const e=A.styles.backgroundBlendMode;let r=0;for(const n of A.styles.backgroundImage.slice(0).reverse()){if(r>0){const A=e[r]??e[0]??"normal";"normal"!==A&&(this.ctx.save(),this.ctx.globalCompositeOperation=A)}0===n.type?await this.renderBackgroundURLImage(A,n,t):qe(n)?this.renderLinearGradient(A,n,t):Ar(n)?this.renderRepeatingLinearGradient(A,n,t):$e(n)&&this.renderRadialGradient(A,n,t),r>0&&"normal"!==(e[r]??e[0]??"normal")&&this.ctx.restore(),t--,r++}}async renderBackgroundURLImage(A,t,e){let r;const n=t.url;try{r=await this.context.cache.match(n)}catch(A){this.context.logger.error(`Error loading background-image ${n}`),this.context.onError?.(A instanceof Error?A:new Error(String(A)))}if(r){const t=isNaN(r.width)||0===r.width?1:r.width,s=isNaN(r.height)||0===r.height?1:r.height,[o,i,a,c,B]=ai(A,e,[t,s,t/s]),l=gi(A.styles.backgroundRepeat,e),g=1===l?"no-repeat":2===l?"repeat-x":3===l?"repeat-y":"repeat",h=`${n}|${Math.round(c)}x${Math.round(B)}|${A.styles.imageRendering}|${g}`;let d=this.patternCache.get(h);if(!d){const t=this.resizeImage(r,c,B,A.styles.imageRendering);d=this.ctx.createPattern(t,g),this.patternCache.set(h,d)}this.renderRepeat(o,d,i,a)}}renderRepeatingLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=Te(t.stops,a||1),d=h[0],w=h[h.length-1].stop-d.stop;if(w<=0)return void this.renderLinearGradient(A,t,e);const u=B-c,Q=g-l,C=w/(Math.sqrt(u*u+Q*Q)||1),p=c,U=l,f=c+u*C,F=l+Q*C,m=this.canvas.ownerDocument??document,y=`rlg|${t.angle}|${Math.round(w)}|${JSON.stringify(t.stops)}`;let I=this.patternCache.get(y);if(!I){const A=m.createElement("canvas"),t=Math.max(1,Math.ceil(w));A.width=t,A.height=t;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(p-n,U-s,f-n,F-s);h.forEach(A=>{r.addColorStop((A.stop-d.stop)/w,mt(A.color))}),e.fillStyle=r,e.fillRect(0,0,t,t),t>0&&(I=this.ctx.createPattern(A,"repeat"),this.patternCache.set(y,I))}I&&this.renderRepeat(r,I,n,s)}renderLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,c,B,l,g]=ke(t.angle,o,i),h=`lg|${t.angle}|${Math.round(o)}x${Math.round(i)}|${JSON.stringify(t.stops)}`;let d=this.patternCache.get(h);if(!d){const A=(this.canvas.ownerDocument??document).createElement("canvas");A.width=o,A.height=i;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(c,l,B,g);Te(t.stops,a||1).forEach(A=>r.addColorStop(A.stop,mt(A.color))),e.fillStyle=r,e.fillRect(0,0,o,i),o>0&&i>0&&(d=this.ctx.createPattern(A,"repeat"),this.patternCache.set(h,d))}d&&this.renderRepeat(r,d,n,s)}renderRadialGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),a=0===t.position.length?[gt]:t.position,c=wt(a[0],o),B=wt(a[a.length-1],i);let[l,g]=((A,t,e,r,n)=>{let s=0,o=0;switch(A.size){case 0:0===A.shape?s=o=Math.min(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.min(Math.abs(t),Math.abs(t-r)),o=Math.min(Math.abs(e),Math.abs(e-n)));break;case 2:if(0===A.shape)s=o=Math.min(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.min(Math.abs(e),Math.abs(e-n))/Math.min(Math.abs(t),Math.abs(t-r)),[i,a]=Ve(r,n,t,e,!0);s=Oe(i-t,(a-e)/A),o=A*s}break;case 1:0===A.shape?s=o=Math.max(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(s=Math.max(Math.abs(t),Math.abs(t-r)),o=Math.max(Math.abs(e),Math.abs(e-n)));break;case 3:if(0===A.shape)s=o=Math.max(Oe(t,e),Oe(t,e-n),Oe(t-r,e),Oe(t-r,e-n));else if(1===A.shape){const A=Math.max(Math.abs(e),Math.abs(e-n))/Math.max(Math.abs(t),Math.abs(t-r)),[i,a]=Ve(r,n,t,e,!1);s=Oe(i-t,(a-e)/A),o=A*s}}return Array.isArray(A.size)&&(s=wt(A.size[0],r),o=2===A.size.length?wt(A.size[1],n):s),[s,o]})(t,c,B,o,i);if(0!==l&&0!==g||(l=Math.max(l,.01),g=Math.max(g,.01)),l>0&&g>0){const A=`rg|${Math.round(c)}x${Math.round(B)}|${Math.round(l)}x${Math.round(g)}|${JSON.stringify(t.stops)}`;let e=this.patternCache.get(A);if(!e){const r=this.canvas.ownerDocument??document,n=Math.ceil(2*Math.max(l,g)),s=r.createElement("canvas");s.width=n,s.height=n;const o=s.getContext("2d");if(o){const r=Math.max(l,g),n=o.createRadialGradient(r,r,0,r,r,r);Te(t.stops,2*r).forEach(A=>n.addColorStop(A.stop,mt(A.color))),o.fillStyle=n,l!==g&&o.scale(1,g/l),o.fillRect(0,0,2*r,2*r),e=this.ctx.createPattern(s,"no-repeat"),this.patternCache.set(A,e)}}e&&(this.path(r),this.ctx.save(),this.ctx.clip(),this.ctx.translate(n+c-Math.max(l,g),s+B-Math.max(l,g)),this.ctx.fillStyle=e,this.ctx.fillRect(0,0,2*Math.max(l,g),2*Math.max(l,g)),this.ctx.restore())}}renderRepeat(A,t,e,r){this.path(A),this.ctx.fillStyle=t,this.ctx.translate(e,r),this.ctx.fill(),this.ctx.translate(-e,-r)}resizeImage(A,t,e,r){const n=(this.canvas.ownerDocument??document).createElement("canvas");n.width=Math.max(1,t),n.height=Math.max(1,e);const s=n.getContext("2d");return s?(2===r||1===r?(this.context.logger.debug("Disabling image smoothing for background image due to CSS image-rendering"),s.imageSmoothingEnabled=!1):3===r?(this.context.logger.debug("Enabling image smoothing for background image due to CSS image-rendering: smooth"),s.imageSmoothingEnabled=!0):s.imageSmoothingEnabled=this.ctx.imageSmoothingEnabled,this.ctx.imageSmoothingQuality&&(s.imageSmoothingQuality=this.ctx.imageSmoothingQuality),s.drawImage(A,0,0,A.width,A.height,0,0,t,e),n):A}path(A){fi(this.ctx,A)}};const yi=(A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Ii=(A,t)=>{const e=[];return Oo(A)?e.push(A.subdivide(.5,!1)):e.push(A),Oo(t)?e.push(t.subdivide(.5,!0)):e.push(t),e},Hi=(A,t,e,r)=>{const n=[];return Oo(A)?n.push(A.subdivide(.5,!1)):n.push(A),Oo(e)?n.push(e.subdivide(.5,!0)):n.push(e),Oo(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),Oo(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n};var Ei=class{constructor(A,t){this.ctx=A.ctx,this.pathCallbacks=t}async renderSolidBorder(A,t,e){this.pathCallbacks.path(yi(e,t)),this.ctx.fillStyle=mt(A),this.ctx.fill()}async renderDoubleBorder(A,t,e,r){if(t<3)return void await this.renderSolidBorder(A,e,r);const n=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return Hi(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return Hi(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return Hi(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}})(r,e);this.pathCallbacks.path(n),this.ctx.fillStyle=mt(A),this.ctx.fill();const s=((A,t)=>{switch(t){case 0:return Hi(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return Hi(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return Hi(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return Hi(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}})(r,e);this.pathCallbacks.path(s),this.ctx.fill()}async renderDashedDottedBorder(A,t,e,r,n){this.ctx.save();const s=((A,t)=>{switch(t){case 0:return Ii(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return Ii(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return Ii(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return Ii(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=yi(r,e);let i,a,c,B,l;2===n&&(this.pathCallbacks.path(o),this.ctx.clip()),Oo(o[0])?(i=o[0].start.x,a=o[0].start.y):(i=o[0].x,a=o[0].y),Oo(o[1])?(c=o[1].end.x,B=o[1].end.y):(c=o[1].x,B=o[1].y),l=0===e||2===e?Math.abs(i-c):Math.abs(a-B),this.ctx.beginPath(),this.pathCallbacks.formatPath(3===n?s:o.slice(0,2));let g=t<3?3*t:2*t,h=t<3?2*t:t;3===n&&(g=t,h=t);let d=!0;if(l<=2*g)d=!1;else if(l<=2*g+h){const A=l/(2*g+h);g*=A,h*=A}else{const A=Math.floor((l+h)/(g+h)),t=(l-A*g)/(A-1),e=(l-(A+1)*g)/A;h=e<=0||Math.abs(h-t)<Math.abs(h-e)?t:e}if(d&&this.ctx.setLineDash(3===n?[0,g+h]:[g,h]),3===n?(this.ctx.lineCap="round",this.ctx.lineWidth=t):this.ctx.lineWidth=2*t+1.1,this.ctx.strokeStyle=mt(A),this.ctx.stroke(),this.ctx.setLineDash([]),2===n){if(Oo(o[0])){const A=o[3],t=o[0];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}if(Oo(o[1])){const A=o[1],t=o[2];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Mo(A.end.x,A.end.y),new Mo(t.start.x,t.start.y)]),this.ctx.stroke()}}this.ctx.restore()}},bi=class{constructor(A){this.ctx=A}renderBorderImage(A,t,e,r,n,s,o,i){const a=t.naturalWidth||t.width,c=t.naturalHeight||t.height;if(a<=0||c<=0)return;const B=Math.min("percent"===e.unit?e.top/100*c:Math.min(e.top,c),c),l=Math.min("percent"===e.unit?e.right/100*a:Math.min(e.right,a),a),g=Math.min("percent"===e.unit?e.bottom/100*c:Math.min(e.bottom,c),c),h=Math.min("percent"===e.unit?e.left/100*a:Math.min(e.left,a),a),{left:d,top:w,width:u,height:Q}=A;if(u<=0||Q<=0)return;const C=Math.min(n,Q),p=Math.min(s,u),U=Math.min(o,Q-C),f=Math.min(i,u-p);this.drawRegion(t,0,0,h,B,d,w,f,C),this.drawRegion(t,a-l,0,l,B,d+u-p,w,p,C),this.drawRegion(t,a-l,c-g,l,g,d+u-p,w+Q-U,p,U),this.drawRegion(t,0,c-g,h,g,d,w+Q-U,f,U);const F=[{sx:h,sy:0,sw:a-h-l,sh:B,dx:d+f,dy:w,dw:u-f-p,dh:C,repeat:r.horizontal},{sx:a-l,sy:B,sw:l,sh:c-B-g,dx:d+u-p,dy:w+C,dw:p,dh:Q-C-U,repeat:r.vertical},{sx:h,sy:c-g,sw:a-h-l,sh:g,dx:d+f,dy:w+Q-U,dw:u-f-p,dh:U,repeat:r.horizontal},{sx:0,sy:B,sw:h,sh:c-B-g,dx:d,dy:w+C,dw:f,dh:Q-C-U,repeat:r.vertical}];for(const A of F){if(A.sw<=0||A.sh<=0||A.dw<=0||A.dh<=0)continue;const e=A.dw>=A.dh;0===A.repeat?this.ctx.drawImage(t,A.sx,A.sy,A.sw,A.sh,A.dx,A.dy,A.dw,A.dh):1!==A.repeat&&2!==A.repeat||this.drawRepeatedEdge(t,A,e,2===A.repeat)}e.fill&&this.drawRegion(t,h,B,a-h-l,c-B-g,d+f,w+C,u-f-p,Q-C-U)}drawRegion(A,t,e,r,n,s,o,i,a){r>0&&n>0&&i>0&&a>0&&this.ctx.drawImage(A,t,e,r,n,s,o,i,a)}drawRepeatedEdge(A,t,e,r){const n=e?t.sw:t.sh,s=e?t.dw:t.dh;if(n<=0||s<=0)return;let o,i;r?(i=Math.max(1,Math.round(s/n)),o=s/i):(o=n,i=Math.ceil(s/o)),this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.dx,t.dy,t.dw,t.dh),this.ctx.clip();for(let r=0;r<i;r++){const n=r*o,i=Math.min(o,s-n);if(i<=0)break;e?this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx+n,t.dy,i,t.dh):this.ctx.drawImage(A,t.sx,t.sy,t.sw,t.sh,t.dx,t.dy+n,t.dw,i)}this.ctx.restore()}},xi=class{constructor(A,t){this.activeEffects=[],this.didSave=!1,this.saveAtDepth=-1,this.ctx=A.ctx,this.pathCallback=t}applyEffects(A){for(;this.activeEffects.length;)this.popEffect();this.didSave=!1,this.saveAtDepth=-1;const t=A=>_o(A)||jo(A)||qo(A),e=A.reduceRight((A,e,r)=>-1!==A?A:t(e)?r:-1,-1);for(let r=0;r<A.length;r++){const n=A[r];t(n)&&(this.didSave||(this.ctx.save(),this.didSave=!0),r===e&&(this.saveAtDepth=this.activeEffects.length)),this.applyEffect(n)}}applyEffect(A){_o(A)?(this.ctx.translate(A.offsetX,A.offsetY),this.ctx.transform(A.matrix[0],A.matrix[1],A.matrix[2],A.matrix[3],A.matrix[4],A.matrix[5]),this.ctx.translate(-A.offsetX,-A.offsetY)):jo(A)?(this.pathCallback.path(A.path),this.ctx.clip()):qo(A)?A.applyClip(this.ctx):(A=>2===A.type)(A)?this.ctx.globalAlpha*=A.opacity:(A=>4===A.type)(A)?this.ctx.globalCompositeOperation=A.compositeOperation:(A=>5===A.type)(A)&&(this.ctx.filter=A.safeFilterString||"none",A.shadow&&(this.ctx.shadowOffsetX=A.shadow.offsetX,this.ctx.shadowOffsetY=A.shadow.offsetY,this.ctx.shadowBlur=A.shadow.blur,this.ctx.shadowColor=A.shadow.color)),this.activeEffects.push(A)}popEffect(){0!==this.activeEffects.length&&(this.didSave&&this.activeEffects.length-1===this.saveAtDepth&&(this.ctx.restore(),this.didSave=!1,this.saveAtDepth=-1),this.activeEffects.pop(),this.didSave||0!==this.activeEffects.length||(this.ctx.globalAlpha=1,this.ctx.globalCompositeOperation="source-over",this.ctx.filter="none",this.ctx.shadowOffsetX=0,this.ctx.shadowOffsetY=0,this.ctx.shadowBlur=0,this.ctx.shadowColor="rgba(0, 0, 0, 0)"))}getActiveEffectCount(){return this.activeEffects.length}hasActiveEffects(){return this.activeEffects.length>0}};var vi=class A{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,t.canvas||(this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`),this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.ctx.textBaseline="bottom",void 0!==t.imageSmoothing&&(this.ctx.imageSmoothingEnabled=t.imageSmoothing),t.imageSmoothingQuality&&(this.ctx.imageSmoothingQuality=t.imageSmoothingQuality),this.backgroundRenderer=new mi({ctx:this.ctx,context:this.context,canvas:this.canvas,options:{width:t.width,height:t.height,scale:t.scale}}),this.borderRenderer=new Ei({ctx:this.ctx},{path:A=>this.path(A),formatPath:A=>this.formatPath(A)}),this.borderImageRenderer=new bi(this.ctx),this.effectsRenderer=new xi({ctx:this.ctx},{path:A=>this.path(A)}),this.textRenderer=new pi({ctx:this.ctx,options:{scale:t.scale}}),this.context.logger.debug(`Canvas renderer initialized (${t.width}x${t.height}) with scale ${t.scale}`)}async renderStack(A){A.element.container.styles.isVisible()&&await this.renderStackContent(A)}async renderNode(A){A.container.styles.isVisible()&&(await this.renderNodeBackgroundAndBorders(A),await this.renderNodeContent(A))}renderReplacedElement(A,t,e){const r=e.naturalWidth||A.intrinsicWidth,n=e.naturalHeight||A.intrinsicHeight;if(e&&r>0&&n>0){const s=ii(A),o=Go(t);this.path(o),this.ctx.save(),this.ctx.clip();const{sx:i,sy:a,sw:c,sh:B,dx:l,dy:g,dw:h,dh:d}=((A,t,e,r,n)=>{let s=0,o=0,i=A,a=t,c=e.left,B=e.top,l=e.width,g=e.height;const h=l/g,d=i/a,w=n?wt(n[0],1):.5,u=n?wt(n[1],1):.5;return 2===r?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):4===r?d>h?(i=a*h,s+=(A-i)*w):(a=i/h,o+=(t-a)*u):8===r?(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a)):16===r&&((d>h?l:g*d)<(i>l?i:l)?d>h?(g=l/d,B+=(e.height-g)*u):(l=g*d,c+=(e.width-l)*w):(i>l?(s+=(i-l)*w,i=l):(c+=(l-i)*w,l=i),a>g?(o+=(a-g)*u,a=g):(B+=(g-a)*u,g=a))),{sx:s,sy:o,sw:i,sh:a,dx:c,dy:B,dw:l,dh:g}})(r,n,s,A.styles.objectFit,A.styles.objectPosition);this.ctx.drawImage(e,i,a,c,B,l,g,h,d),this.ctx.restore()}}async renderNodeContent(t){this.effectsRenderer.applyEffects(t.getEffects(4));const e=t.container,r=t.curves,s=e.styles,o=ii(e);for(const A of e.textNodes)await this.textRenderer.renderTextNode(A,s,o);await(async(t,e,r,n,s,o,i,a)=>{if(s instanceof wo)try{const A=await e.cache.match(s.src),r=t.imageSmoothingEnabled;2===i.imageRendering||1===i.imageRendering?t.imageSmoothingEnabled=!1:3===i.imageRendering&&(t.imageSmoothingEnabled=!0),a(s,o,A),t.imageSmoothingEnabled=r}catch(A){e.logger.error(`Error loading image ${s.src}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof uo&&a(s,o,s.canvas),s instanceof Qo)try{a(s,o,await e.cache.match(s.svg))}catch(A){e.logger.error(`Error loading svg ${s.svg.substring(0,255)}`),e.onError?.(A instanceof Error?A:new Error(String(A)))}if(s instanceof Ho&&s.tree){const n=await((t,e)=>new A(t,e))(e,{scale:r.scale,backgroundColor:s.backgroundColor,x:0,y:0,width:s.width,height:s.height}).render(s.tree);s.width&&s.height&&t.drawImage(n,0,0,s.width,s.height,s.bounds.left,s.bounds.top,s.bounds.width,s.bounds.height)}})(this.ctx,this.context,{scale:this.options.scale,backgroundColor:this.options.backgroundColor,x:this.options.x,y:this.options.y,width:this.options.width,height:this.options.height},0,e,r,s,(A,t,e)=>this.renderReplacedElement(A,t,e)),((A,t,e,r,s)=>{if(r instanceof mo){const t=Math.min(r.bounds.width,r.bounds.height);"checkbox"===r.type&&r.checked?(A.save(),e([new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t),new Mo(r.bounds.left+.16*t,r.bounds.top+.5549*t),new Mo(r.bounds.left+.27347*t,r.bounds.top+.44071*t),new Mo(r.bounds.left+.39694*t,r.bounds.top+.5649*t),new Mo(r.bounds.left+.72983*t,r.bounds.top+.23*t),new Mo(r.bounds.left+.84*t,r.bounds.top+.34085*t),new Mo(r.bounds.left+.39363*t,r.bounds.top+.79*t)]),A.fillStyle=mt(Fo),A.fill(),A.restore()):"radio"===r.type&&r.checked&&(A.save(),A.beginPath(),A.arc(r.bounds.left+t/2,r.bounds.top+t/2,t/4,0,2*Math.PI,!0),A.fillStyle=mt(Fo),A.fill(),A.restore())}if((A=>A instanceof Io||A instanceof yo||A instanceof mo&&"radio"!==A.type&&"checkbox"!==A.type)(r)&&r.value.length){const[o]=t.createFontStyle(s);A.font=o;const i=wi(A,wt(s.fontSize,0));A.fillStyle=mt(r instanceof mo&&r.isPlaceholder?1970632191:s.color),A.textBaseline="alphabetic",A.textAlign=(A=>{switch(A){case 1:return"center";case 2:return"right";default:return"left"}})(r.styles.textAlign);const a=ii(r);let c=0;switch(r.styles.textAlign){case 1:c+=a.width/2;break;case 2:c+=a.width}let B=0;if(r instanceof mo){const A=wt(s.fontSize,0);B=(a.height-A)/2}const l=a.add(c,B,0,0);A.save(),e([new Mo(a.left,a.top),new Mo(a.left+a.width,a.top),new Mo(a.left+a.width,a.top+a.height),new Mo(a.left,a.top+a.height)]),A.clip();const g=((A,t,e,r)=>{const n=[],s=t.split("\n");for(const t of s){if(r){n.push(t);continue}const s=t.split(/(\s+)/);let o="";for(const t of s){const r=o+t;A.measureText(r).width<=e||""===o?o=r:(n.push(o),o=t)}n.push(o)}return n})(A,r.value,a.width,"pre"===s.whiteSpace||"nowrap"===s.whiteSpace),h=wt(s.fontSize,0),d=Pr(s.lineHeight,h);g.forEach((e,r)=>{let o=l.left;const c=A.measureText(e).width;switch(s.textAlign){case 1:o+=(a.width-c)/2;break;case 2:o+=a.width-c}const B=new n(o,l.top+r*d,0,0);t.renderTextWithLetterSpacing(new so(e,B),s.letterSpacing,i,s.writingMode)}),A.restore(),A.textBaseline="alphabetic",A.textAlign="left"}})(this.ctx,this.textRenderer,this.path.bind(this),e,s),await(async(A,t,e,r,s,o)=>{if(Qe(s.styles.display,2048))if(null!==s.styles.listStyleImage){const e=s.styles.listStyleImage;if(0===e.type){const r=e.url;try{const e=await t.cache.match(r);A.drawImage(e,s.bounds.left-(e.width+10),s.bounds.top)}catch(A){t.logger.error(`Error loading list-style-image ${r}`),t.onError?.(A instanceof Error?A:new Error(String(A)))}}}else if(r.listValue&&-1!==s.styles.listStyleType){const[t]=e.createFontStyle(o);A.font=t,A.fillStyle=mt(o.color),A.textBaseline="middle",A.textAlign="right";const i=new n(s.bounds.left,s.bounds.top+wt(s.styles.paddingTop,s.bounds.width),s.bounds.width,Pr(o.lineHeight,o.fontSize.number)/2+1);e.renderTextWithLetterSpacing(new so(r.listValue,i),o.letterSpacing,Pr(o.lineHeight,o.fontSize.number)/2+2,o.writingMode),A.textBaseline="bottom",A.textAlign="left"}})(this.ctx,this.context,this.textRenderer,t,e,s)}async renderStackContent(A){const t=this.options.signal;await this.renderNodeBackgroundAndBorders(A.element);for(const e of A.negativeZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderNodeContent(A.element);for(const t of A.nonInlineLevel)await this.renderNode(t);for(const e of A.nonPositionedFloats){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.nonPositionedInlineLevel){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const t of A.inlineLevel)await this.renderNode(t);for(const e of A.zeroOrAutoZIndexOrTransformedOrOpacity){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}for(const e of A.positiveZIndex){if(t?.aborted)throw new DOMException("The operation was aborted.","AbortError");await this.renderStack(e)}}mask(A){this.ctx.beginPath();const t=this.options.x,e=this.options.y;this.ctx.moveTo(t,e),this.ctx.lineTo(t+this.options.width,e),this.ctx.lineTo(t+this.options.width,e+this.options.height),this.ctx.lineTo(t,e+this.options.height),this.ctx.lineTo(t,e),this.formatPath(A.slice(0).reverse()),this.ctx.closePath()}path(A){fi(this.ctx,A)}formatPath(A){Ui(this.ctx,A)}async renderNodeBackgroundAndBorders(A){this.effectsRenderer.applyEffects(A.getEffects(2));const t=A.container.styles,e=!Ft(t.backgroundColor)||t.backgroundImage.length,r=Li(t),n=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],s=gi(t.backgroundClip,0),o=Ki(s,A.curves);if((e||t.boxShadow.length)&&(r&&A.container.textNodes.length>0?await this.renderTextClippedBackground(A):(this.ctx.save(),this.path(o),this.ctx.clip(),Ft(t.backgroundColor)||(this.ctx.fillStyle=mt(t.backgroundColor),this.ctx.fill()),await this.backgroundRenderer.renderBackgroundImage(A.container),this.ctx.restore()),t.boxShadow.slice(0).reverse().forEach(t=>{this.ctx.save();const e=No(A.curves),r=t.inset?0:1e4,n=(s=(t.inset?1:-1)*t.spread.number-r,o=(t.inset?1:-1)*t.spread.number,i=t.spread.number*(t.inset?-2:2),a=t.spread.number*(t.inset?-2:2),e.map((A,t)=>{switch(t){case 0:return A.add(s,o);case 1:return A.add(s+i,o);case 2:return A.add(s+i,o+a);case 3:return A.add(s,o+a)}return A}));var s,o,i,a;t.inset?(this.path(e),this.ctx.clip(),this.mask(n)):(this.mask(e),this.ctx.clip(),this.path(n)),this.ctx.shadowOffsetX=t.offsetX.number+r,this.ctx.shadowOffsetY=t.offsetY.number,this.ctx.shadowColor=mt(t.color),this.ctx.shadowBlur=t.blur.number,this.ctx.fillStyle=t.inset?mt(t.color):"rgba(0,0,0,1)",this.ctx.fill(),this.ctx.restore()})),t.borderImageSource){const e=t.borderImageSource;if(0===e.type){const r=e.url;try{const e=await this.context.cache.match(r);e&&this.borderImageRenderer.renderBorderImage(A.container.bounds,e,t.borderImageSlice,t.borderImageRepeat,Math.max(0,t.borderTopWidth),Math.max(0,t.borderRightWidth),Math.max(0,t.borderBottomWidth),Math.max(0,t.borderLeftWidth))}catch(A){this.context.logger.error(`Error loading border-image ${r}`)}}return}let i=0;for(const t of n){if(0!==t.style&&!Ft(t.color)&&t.width>0){const e=async()=>{2===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,2):3===t.style?await this.borderRenderer.renderDashedDottedBorder(t.color,t.width,i,A.curves,3):4===t.style?await this.borderRenderer.renderDoubleBorder(t.color,t.width,i,A.curves):await this.borderRenderer.renderSolidBorder(t.color,i,A.curves)},r=A.container.legendBounds;if(0===i&&r){const t=A.container.bounds,n=r.left-t.left,s=r.left+r.width-t.left;n>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(t.left,t.top,n,t.height),this.ctx.clip(),await e(),this.ctx.restore());const o=t.left+s,i=t.width-s;i>0&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.rect(o,t.top,i,t.height),this.ctx.clip(),await e(),this.ctx.restore())}else await e()}i++}}async render(A){this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height));const t=(A=>{const t=new Ai(A,null),e=new $o(t),r=[];return ni(t,e,e,r),si(t.container,r),e})(A);return await this.renderStack(t),this.effectsRenderer.applyEffects([]),this.canvas}async renderTextClippedBackground(A){const t=A.container,e=t.styles,r=t.bounds;if(r.width<=0||r.height<=0)return;const n=(this.canvas.ownerDocument??document).createElement("canvas"),s=Math.ceil(r.width),o=Math.ceil(r.height);n.width=s,n.height=o;const i=n.getContext("2d");if(!i)return;const[a]=this.textRenderer.createFontStyle(e);i.font=a,i.textBaseline="alphabetic",i.textAlign="left",i.direction=1===e.direction?"rtl":"ltr";const c=wi(i,e.fontSize.number),B=new mi({ctx:i,context:this.context,canvas:n,options:{width:s,height:o,scale:1}});Ft(e.backgroundColor)||(i.fillStyle=mt(e.backgroundColor),i.fillRect(0,0,s,o)),i.save(),i.translate(-r.left,-r.top),await B.renderBackgroundImage(t),i.restore(),i.globalCompositeOperation="destination-in",i.fillStyle="#000";const l=e.writingMode,g=e.letterSpacing;for(const A of t.textNodes)for(const t of A.textBounds){const A=t.bounds.left-r.left,e=t.bounds.top-r.top+c;g>0?this.renderTextMaskWithLetterSpacing(i,t,g,A,e,l):i.fillText(t.text,A,e)}this.ctx.drawImage(n,r.left,r.top)}renderTextMaskWithLetterSpacing(A,t,e,r,n,s){const o=io(t.text);let i=r;for(const a of o){if(Cn(s))return void A.fillText(t.text,r,n);A.fillText(a,i,n),i+=A.measureText(a).width+e}}};const Ki=(A,t)=>{switch(A){case 0:return No(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return Go(t)}},Li=A=>A.backgroundClip.some(A=>3===A);var Si=class{constructor(A,t){this.context=A,this.options=t,this.canvas=t.canvas?t.canvas:document.createElement("canvas");const e=this.canvas.getContext("2d");if(!e)throw new Error("Failed to get 2D rendering context from canvas");this.ctx=e,this.canvas.width=Math.floor(t.width*t.scale),this.canvas.height=Math.floor(t.height*t.scale),this.canvas.style.width=`${t.width}px`,this.canvas.style.height=`${t.height}px`,this.ctx.scale(this.options.scale,this.options.scale),this.ctx.translate(-t.x,-t.y),this.context.logger.debug(`EXPERIMENTAL ForeignObject renderer initialized (${t.width}x${t.height} at ${t.x},${t.y}) with scale ${t.scale}`)}async render(A){if(this.options.signal?.aborted)throw new DOMException("The operation was aborted.","AbortError");const t=await ro(eo(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,A));return this.options.backgroundColor&&(this.ctx.fillStyle=mt(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(t,-this.options.x*this.options.scale,-this.options.y*this.options.scale),this.canvas}},Di=class{static{this.instances={}}constructor({id:A,enabled:t}){this.id=A,this.enabled=t,this.start=Date.now()}debug(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug(this.id,`${this.getTime()}ms`,...A):this.info(...A))}getTime(){return Date.now()-this.start}info(...A){this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info(this.id,`${this.getTime()}ms`,...A)}warn(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn(this.id,`${this.getTime()}ms`,...A):this.info(...A))}error(...A){this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error(this.id,`${this.getTime()}ms`,...A):this.info(...A))}},Mi=class{constructor(A,t){if(this.context=A,this._options=t,this._cache=new Map,this._pendingOperations=new Map,this._deferMode=!1,this._collectedUrls=new Set,this.maxSize=t.maxCacheSize??100,this.maxSize<1)throw new Error("Cache maxSize must be at least 1");this.maxSize>1e4&&this.context.logger.warn(`Cache maxSize ${this.maxSize} is very large and may cause memory issues. Consider using a smaller value (recommended: 100-1000).`)}startDefer(){this._deferMode=!0}async preloadAll(A=10){this._deferMode=!1;const t=Array.from(this._collectedUrls);if(this._collectedUrls.clear(),0===t.length)return;const e=Math.max(1,Math.min(A,100));this.context.logger.debug(`Preloading ${t.length} image(s) with concurrency ${e}`);for(let A=0;A<t.length;A+=e){const r=t.slice(A,A+e).map(A=>this._addImageWithPending(A));await Promise.allSettled(r)}}addImage(A){if(this._deferMode)return this.has(A)||!Gi(A)&&!Vi(A)||this._collectedUrls.add(A),Promise.resolve();const t=this._pendingOperations.get(A);if(t)return t;if(this.has(A)){const t=this._cache.get(A);return this._cache.delete(A),this._cache.set(A,t),Promise.resolve()}return Gi(A)||Vi(A)?this._addImageWithPending(A):Promise.resolve()}_addImageWithPending(A){const t=this._pendingOperations.get(A);if(t)return t;const e=this._addImageInternal(A);return this._pendingOperations.set(A,e),e.finally(()=>{this._pendingOperations.delete(A)}),e}async _addImageInternal(A){const t=this._options.imageTimeout??15e3,e=this.withTimeout(this.loadImage(A),t,`Timed out (${t}ms) loading image`);e.catch(t=>{this.context.logger.error(`Failed to load image ${A}: ${t instanceof Error?t.message:"Unknown error"}`)}),this.set(A,e)}withTimeout(A,t,e){if(t<=0)return A;let r;const n=new Promise((A,n)=>{r=setTimeout(()=>n(new Error(e)),t)});return Promise.race([A,n]).finally(()=>{void 0!==r&&clearTimeout(r)})}match(A){const t=this._cache.get(A);if(t)return this._cache.delete(A),this._cache.set(A,t),t.value}set(A,t){if(this._cache.has(A))this._cache.delete(A);else if(this._cache.size>=this.maxSize){const A=this._cache.keys().next().value;void 0!==A&&(this._cache.delete(A),this.context.logger.debug(`Cache: Evicted LRU entry: ${A}`))}this._cache.set(A,{value:t})}size(){return this._cache.size}getMaxSize(){return this.maxSize}clear(){this._cache.clear()}async loadImage(A){const t=this.context.originChecker,e=A=>t.isSameOrigin(A),r="function"==typeof this._options.customIsSameOrigin?await this._options.customIsSameOrigin(A,e):e(A),n=!r&&!1===this._options.allowTaint&&!Ri(A)&&!Gi(A)&&"string"!=typeof this._options.proxy,s=!Ri(A)&&(!0===this._options.useCORS||n)&&no.SUPPORT_CORS_IMAGES&&!r,o=!Ri(A)&&!r&&!Gi(A)&&"string"==typeof this._options.proxy&&no.SUPPORT_CORS_XHR&&!s;if(!(r||!1!==this._options.allowTaint||Ri(A)||Gi(A)||o||s))return;let i=A;return o&&(i=await this.proxy(i)),this.context.logger.debug(`Added image ${A.substring(0,256)}`),await new Promise((A,t)=>{const e=new Image;e.onload=()=>A(e),e.onerror=t,(Ni(i)||s)&&(e.crossOrigin="anonymous"),e.src=i,!0===e.complete&&setTimeout(()=>A(e),500)})}has(A){return this._cache.has(A)}keys(){return Promise.resolve(Array.from(this._cache.keys()))}proxy(A){const t=this._options.proxy;if(!t)throw new Error("No proxy defined");const e=A.substring(0,256);return new Promise((r,n)=>{const s=no.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=()=>{if(200===o.status)if("text"===s)r(o.response);else{const A=new FileReader;A.addEventListener("load",()=>r(A.result),!1),A.addEventListener("error",A=>n(A),!1),A.readAsDataURL(o.response)}else n(`Failed to proxy resource ${e} with status code ${o.status}`)},o.onerror=n;const i=t.indexOf("?")>-1?"&":"?";if(o.open("GET",`${t}${i}url=${encodeURIComponent(A)}&responseType=${s}`),"text"!==s&&o instanceof XMLHttpRequest&&(o.responseType=s),this._options.imageTimeout){const A=this._options.imageTimeout;o.timeout=A,o.ontimeout=()=>n(`Timed out (${A}ms) proxying ${e}`)}o.send()})}};const Ti=/^data:image\/svg\+xml/i,ki=/^data:image\/.*;base64,/i,Oi=/^data:image\/.*/i,Vi=A=>no.SUPPORT_SVG_DRAWING||!Pi(A),Ri=A=>Oi.test(A),Ni=A=>ki.test(A),Gi=A=>"blob"===A.substring(0,4),Pi=A=>"svg"===A.slice(-3).toLowerCase()||Ti.test(A);var Xi=class{constructor(A){if(!A||!A.document)throw new Error("Valid window object required for OriginChecker");if(!A.location||!A.location.href)throw new Error("Window object must have valid location");this.link=A.document.createElement("a"),this.origin=this.getOrigin(A.location.href)}getOrigin(A){return this.link.href=A,this.link.href=this.link.href,this.link.protocol+this.link.hostname+this.link.port}isSameOrigin(A){return this.getOrigin(A)===this.origin}getContextOrigin(){return this.origin}},Ji=class A{static{this.instanceCount=1}constructor(t,e,r){this.windowBounds=e,this.instanceName="#"+A.instanceCount++,this.config=r,this.logger=new Di({id:this.instanceName,enabled:t.logging}),this.originChecker=new Xi(r.window),this.cache=t.cache??r.cache??new Mi(this,t),this.onError=t.onError}};const Wi=A=>{if(A?.aborted)throw new DOMException("The operation was aborted.","AbortError")};function Yi(A,t){return A-=331,Zi()[A]}function Zi(){const A=["flat","number","CPU: ",", orientation "," ms","serviceWorker","max","230VDlvQl","hardwareConcurrency","808mGgHkR","Tilt: ","isFinite","innerHeight","referrer","toFixed","matches","reclined","1222jhUClv"," (β ","saveData","padStart","upright","SW-controlled","width","72984jqYhSX","transferSize","UA brands: ","devicePixelRatio","doNotTrack","resource","; DNT: ","Timezone: ","yes","inferred","duration","startsWith","-bit)","Battery: ",", display-mode standalone: ","responseStart","79410TgdswZ","brand","getBattery","addEventListener","filter","platform","type","getEntriesByType","getTimezoneOffset","unknown","205946TJhjoP","entryType","DeviceOrientationEvent","isArray","12CgPkDN","toString","1179WGkdsG","Device geolocation: disabled","height","TTFB ~","Language: "," (mobile)","Referrer: ","orientation","resolvedOptions","isSecureContext","mobile","gamma","controller","Local time: ","beta","intent:geo"," | ","fine","5akwaRe","connection","TTFB","encodedBodySize","Viewport: ","n/a","Pointer/Touch: ","brands","charging","find","some"," (UTC","push","languages","abs","Device geolocation: enabled","timeZone","length","x (avail ","User agent: ","undefined","downlink","2361708iccevZ","availWidth","enabled","453266YlokxK","rtt","requestStart","browser API","deviceorientation","downlinkMbps","Online: ","rttMs","userAgentData","(pointer: fine)","786fyIrEU","effectiveType","function","not charging","round","(pointer: coarse)","PWA: ","coarse","availHeight","version","join"," cores","level","cookieEnabled","24080TXUEQI","setTimeout","navigation"," Mbps","userAgent","Network: "];return(Zi=()=>A)()}async function zi(){const A=Yi,t=(new Intl.DateTimeFormat)[A(381)]()[A(407)],e=(A=>{const t=Yi,e=A<=0?"+":"-",r=Math[t(405)](A);return""+e+String(Math.floor(r/60))[t(337)](2,"0")+":"+String(r%60).padStart(2,"0")})((new Date)[A(365)]()),r=[];r[A(403)](A(377)+navigator.language),navigator[A(404)]?.[A(408)]&&r.push("Languages: "+navigator[A(404)][A(436)](", ")),r[A(403)](A(410)+navigator[A(444)]);const n=function(){const A=Yi;if(!(A=>{const t=Yi;return t(424)in A&&typeof A.userAgentData!==t(411)})(navigator))return;const t=navigator[A(424)],e=Array[A(370)](t.brands)?t[A(398)].map(t=>t[A(358)]+" "+t[A(435)])[A(436)](", "):void 0,r=t[A(362)]?""+t[A(362)]+(t[A(383)]?A(378):""):void 0;return[e&&A(343)+e,r&&"Platform: "+r][A(361)](Boolean)[A(436)](A(389))||void 0}();n&&r[A(403)](n),r.push(A(348)+t+A(402)+e+")"),r[A(403)](A(386)+(new Date)[A(372)]());const s=window[A(344)]||1;r[A(403)]("Screen: "+screen[A(340)]+"x"+screen[A(375)]+" @"+s+A(409)+screen[A(414)]+"x"+screen[A(434)]+", "+screen.colorDepth+A(353));const o=screen[A(380)]&&A(363)in screen[A(380)]?screen[A(380)].type:void 0;r[A(403)](A(395)+window.innerWidth+"x"+window[A(458)]+(o?A(449)+o:"")),r[A(403)](A(448)+navigator[A(454)]+A(437));const i=await async function(){const A=Yi,t=[];let e=A(419);if((A=>{const t=Yi;return"connection"in A&&typeof A[t(392)]!==t(411)})(navigator)){const e=navigator.connection;e?.[A(427)]&&t[A(403)](e[A(427)]),typeof e?.[A(412)]===A(447)&&t[A(403)]("~"+e[A(412)]+" Mbps"),typeof e?.[A(417)]===A(447)&&t.push(e.rtt+A(450)),e?.[A(336)]&&t[A(403)]("saveData")}else{const r=((A=20)=>{const t=Yi,e=performance[t(364)](t(442)).find(A=>"navigation"===A.entryType),r=e?Math[t(452)](0,e.responseStart-e.requestStart):void 0,n=performance.getEntriesByType("resource")[t(361)](A=>A[t(368)]===t(346));let s=0,o=0;for(const e of n.slice(0,Math[t(452)](0,A))){const A=e[t(394)]>0?e[t(394)]:e[t(342)]>0?e[t(342)]:0,r=e[t(351)];A>0&&r>0&&Number.isFinite(r)&&(s+=A,o+=r)}const i=o>0?8*s/o:void 0;return{downlinkMbps:"number"==typeof i?i/1e3:void 0,rttMs:r}})();"number"==typeof r.downlinkMbps&&t.push("~"+r[A(421)][A(331)](1)+A(443)),typeof r.rttMs===A(447)&&t.push(A(376)+Math[A(430)](r[A(423)])+A(450)),e=A(350)}const r=performance[A(364)](A(442))[A(400)](t=>"navigation"===t[A(368)]);if(r){const e=Math[A(452)](0,r[A(356)]-r[A(418)]);!t[A(401)](t=>t[A(352)](A(393)))&&t.push("TTFB ~"+Math[A(430)](e)+A(450))}return t.length?A(445)+t[A(436)](", ")+" ("+e+")":void 0}();i&&r[A(403)](i),r.push((()=>{const A=Yi,t="function"==typeof matchMedia&&matchMedia(A(431)).matches,e="function"==typeof matchMedia&&matchMedia(A(425)).matches,r=A(t?433:e?390:366),n=navigator.maxTouchPoints;return A(397)+r+", maxTouchPoints "+n})());const a=await async function(){const A=Yi;if((A=>{const t=Yi;return t(359)in A&&typeof A.getBattery===t(428)})(navigator))try{const t=await navigator[A(359)](),e=Math[A(430)](100*t[A(438)]),r=[(Number[A(457)](e)?e:0)+"%",t[A(399)]?A(399):A(429)];return A(354)+r[A(436)](", ")}catch{}}();a&&r[A(403)](a),r[A(403)]("CookiesEnabled: "+(navigator[A(439)]?A(349):"no")+A(347)+(navigator[A(345)]??A(396))),r[A(403)](A(422)+(navigator.onLine?"yes":"no")),document[A(459)]&&r[A(403)](A(379)+document[A(459)]),r[A(403)]((()=>{const A=Yi,t=typeof matchMedia===A(428)&&matchMedia("(display-mode: standalone)")[A(332)],e=Boolean(navigator[A(451)]?.[A(385)]);return A(432)+(e?A(339):"no SW")+A(355)+(t?"yes":"no")})());const c=await async function(A=400){const t=Yi;if(t(369)in window&&window[t(382)])return new Promise(e=>{const r=t;let n=!1;const s=A=>{const t=Yi,r=typeof A.beta===t(447)?A[t(387)]:void 0,o="number"==typeof A[t(384)]?A[t(384)]:void 0;if(void 0===r||void 0===o)return;if(n)return;n=!0,window.removeEventListener(t(420),s);const i=((A,t)=>{const e=Yi,r=Math.abs(A),n=Math.abs(t);return e(r<15&&n<15?446:r>=60?338:333)})(r,o);e(t(456)+i+t(335)+Math[t(430)](r)+"°, γ "+Math[t(430)](o)+"°)")};window[r(441)](()=>{n||(n=!0,window.removeEventListener("deviceorientation",s),e(void 0))},A),window[r(360)]("deviceorientation",s,{passive:!0})})}();c&&r[A(403)](c);const B=localStorage.getItem(A(388))===A(415);return r[A(403)](A(B?406:374)),r.join(A(389))}function _i(){const A=["29935PNhdRI","intent:data-capture-mode","3341070nEOcRu","intent:data-sid-max-age","625724NiRbxM","3252564uHOozp","intent:data-ip","19979560VhCVso","8uMQmxc","intent:consent","60veqKpp","465013lWNowg","132DIwpaq","42652xPLruC"];return(_i=()=>A)()}(A=>{const t=Yi,e=A();for(;;)try{if(643588==-parseInt(t(455))/1*(-parseInt(t(334))/2)+parseInt(t(357))/3+parseInt(t(413))/4*(-parseInt(t(391))/5)+parseInt(t(426))/6*(parseInt(t(440))/7)+parseInt(t(341))/8*(parseInt(t(373))/9)+parseInt(t(453))/10*(-parseInt(t(416))/11)+-parseInt(t(371))/12*(-parseInt(t(367))/13))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Zi);const ji=ta;(A=>{const t=ta,e=A();for(;;)try{if(302653==-parseInt(t(322))/1+-parseInt(t(315))/2+parseInt(t(321))/3*(-parseInt(t(310))/4)+parseInt(t(311))/5*(parseInt(t(309))/6)+-parseInt(t(316))/7+-parseInt(t(319))/8*(parseInt(t(313))/9)+parseInt(t(318))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(_i);const qi=ji(320),$i="intent:geo",Aa="intent:debug";function ta(A,t){return A-=309,_i()[A]}const ea="intent:debug-panel",ra="intent:data-client-id",na=ji(317),sa="intent:data-base-url",oa=ji(314),ia=ji(312),aa="https://intent.callimacus.ai";function ca(){const A=["139110OIXDxv","245064AxEfUU","42OYOXMw","198XkKXnD","1593109bqOCFW","23772452ArDrWg","32XkmYyl","padStart","2003408YJqJWN","285LECxMb","imul","toString","891737bvbrqT","length","21220ZBQhIu"];return(ca=()=>A)()}function Ba(A,t){return A-=211,ca()[A]}(A=>{const t=Ba,e=A();for(;;)try{if(667534==-parseInt(t(224))/1+-parseInt(t(220))/2+-parseInt(t(214))/3*(-parseInt(t(213))/4)+-parseInt(t(221))/5*(parseInt(t(212))/6)+parseInt(t(216))/7*(parseInt(t(218))/8)+parseInt(t(215))/9*(-parseInt(t(211))/10)+parseInt(t(217))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ca);const la=2166136261,ga=16777619;function ha(A,t){const e=Ba;let r=A;for(let A=0;A<t[e(225)];A++)r^=t.charCodeAt(A),r=Math[e(222)](r,ga);return r>>>0}function da(A,t){return Math[Ba(222)](A^t,ga)>>>0}const wa=[{seed:2166136261,prime:16777619},{seed:2654435761,prime:2246822507},{seed:3266489909,prime:668265263},{seed:374761393,prime:3266489955}];function ua(){const A=["&gt;","40733559YLwPtc","3536865bDCShX","&#039;","[contenteditable]","contenteditable","INPUT","log","textbox","map","replace","&quot;","searchbox",'[role="',"postTask","plaintext-only","2nvyDsD","TEXTAREA","undefined","true","5340684rFUSMP","30045VocsnA","textContent","host","enabled","3412885ZhnSYn","getAttribute","&lt;","select","value","setTimeout","getItem","join","parentElement","textarea","innerText","body","string","now","700591yjSDQl","460TGMGFf","freeze","6618424RJyXaL"];return(ua=()=>A)()}const Qa=Ca;function Ca(A,t){return A-=457,ua()[A]}function pa(A,t){let e=0;return(...r)=>{const n=Date[Ca(489)]();n-e>=t&&(e=n,A(...r))}}function Ua(...A){const t=Ca;try{typeof localStorage!==t(469)&&localStorage[t(482)](Aa)===t(475)&&console[t(458)](...A)}catch{}}(A=>{const t=Ca,e=A();for(;;)try{if(725508==-parseInt(t(490))/1+-parseInt(t(467))/2*(parseInt(t(496))/3)+-parseInt(t(491))/4*(parseInt(t(472))/5)+-parseInt(t(471))/6+parseInt(t(476))/7+-parseInt(t(493))/8+parseInt(t(495))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ua);const fa=Object[Qa(492)](new Set([Qa(459),"combobox",Qa(463)])),Fa=["input",Qa(485),Qa(479),Qa(498),...[...fa][Qa(460)](A=>Qa(464)+A+'"]')][Qa(483)](", ");function ma(A){const t=Qa,e=A.tagName;return e===t(457)||e===t(468)||"SELECT"===e}function ya(A){const t=Qa;if(ma(A))return!0;const e=A[t(477)](t(499));if(""===e||e===t(470)||e===t(466))return!0;const r=A.getAttribute("role")?.toLowerCase();return!(!r||!fa.has(r))}function Ia(A){const t=Qa,e=A.parentElement;if(e)return e;const{parentNode:r}=A;return r instanceof ShadowRoot&&r.host instanceof Element?r[t(474)]:void 0}function Ha(A){const t=Qa;if(ma(A))return A[t(480)];const e=A[t(486)];return typeof e===t(488)?e:A[t(473)]??""}function Ea(A){const t=Qa;return A[t(461)](/&/g,"&amp;").replace(/</g,t(478))[t(461)](/>/g,t(494))[t(461)](/"/g,t(462))[t(461)](/'/g,t(497))}const ba=Ta;(A=>{const t=Ta,e=A();for(;;)try{if(562202==-parseInt(t(127))/1*(parseInt(t(179))/2)+parseInt(t(118))/3*(-parseInt(t(104))/4)+-parseInt(t(116))/5*(parseInt(t(130))/6)+-parseInt(t(165))/7+-parseInt(t(203))/8*(parseInt(t(122))/9)+parseInt(t(126))/10*(parseInt(t(131))/11)+parseInt(t(195))/12)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Sa);const xa=ba(105);Object.freeze(new Set([ba(147),"search"]));const va=new Map([[ba(202),ba(113)],["given-name",ba(161)],["family-name","Last name"],[ba(198),ba(112)],["nickname",ba(145)],["username",ba(194)],[ba(139),ba(161)],["name-family",ba(150)],["name-middle",ba(112)],["name-middle-initial",ba(199)],[ba(166),ba(163)],["name-suffix",ba(175)],[ba(132),ba(163)],[ba(187),ba(175)],[ba(143),"Username"],[ba(121),ba(178)],["password-new","Password"],[ba(206),ba(178)],[ba(128),"Password"],["one-time-code","One-time code"],[ba(110),ba(171)],[ba(193),"WebAuthn"],[ba(119),ba(174)],[ba(155),ba(200)],[ba(141),ba(191)],["tel-national","Phone"],[ba(204),ba(200)],[ba(181),"Street address"],["address-line1",ba(137)],[ba(135),ba(117)],[ba(201),"Address line 3"],[ba(157),ba(115)],[ba(186),"City"],["address-level3",ba(164)],[ba(180),ba(152)],[ba(192),"Postal code"],["country",ba(111)],[ba(108),ba(109)],[ba(210),ba(114)],[ba(149),ba(109)],[ba(167),ba(117)],[ba(182),"Postal code"],[ba(159),ba(177)],["postal-address-region",ba(115)],["cc-name",ba(173)],["cc-given-name",ba(207)],[ba(172),ba(168)],[ba(146),ba(136)],[ba(106),ba(136)],[ba(156),ba(185)],[ba(205),"Expiration date"],[ba(196),ba(148)],[ba(120),"Expiration month"],[ba(140),ba(107)],[ba(134),ba(151)],[ba(190),ba(170)],["bday",ba(158)],["bday-day","Birth day"],[ba(211),"Birth month"],[ba(162),ba(124)],[ba(138),ba(158)],[ba(142),ba(188)],["birthdate-month",ba(169)],[ba(183),ba(124)],[ba(123),ba(208)],[ba(103),ba(176)],[ba(154),ba(209)],[ba(189),ba(209)]]),Ka=Object[ba(160)](new Set(va[ba(133)]()));function La(A){const t=ba;return A?A.toLowerCase()[t(184)]()[t(153)](/\s+/)[t(125)](Boolean):[]}function Sa(){const A=["Expiration day","postal-address-country","Last name","Security code","Neighborhood","split","sex","tel","cc-number","address-level1","Birthday","postal-address-locality","freeze","First name","bday-year","Name prefix","District","7110985UxztKF","name-prefix","postal-address-extended","Cardholder last name","Birth month","Card type","One-time code","cc-family-name","Cardholder name","Email","Name suffix","Job title","City","Password","2TYVaLX","address-level4","street-address","postal-address-extended-postal-code","birthdate-year","trim","Card number","address-level2","honorific-suffix","Birth day","gender","cc-type","Phone country code","postal-code","webauthn","Username","53133264DsiKfl","cc-exp-day","get","additional-name","Middle initial","Phone","address-line3","name","856QlCLeC","tel-device","cc-exp","current-password","Cardholder first name","Organization","Sex","postal-address","bday-month","organization-title","245324DRxzwW","Redacted","cc-middle-name","Expiration year","country-name","Country name","sms-otp","Country code","Middle name","Name","Street address","State/Province","5XHMQRd","Address line 2","33mavTbR","email","cc-exp-month","password","28242BtGEeA","organization","Birth year","filter","1290foBCZa","989555xpumEV","new-password","some","6121746iQJmVF","14542birVYU","honorific-prefix","keys","cc-csc","address-line2","Cardholder middle name","Address line 1","birthdate-full","name-given","cc-exp-year","tel-country-code","birthdate-day","username-new","has","Nickname","cc-additional-name","searchbox"];return(Sa=()=>A)()}function Da(A){const t=ba;return A[t(129)](A=>Ka[t(144)](A))}function Ma(A){const t=ba;for(const e of A){const A=va[t(197)](e);if(A)return A}}function Ta(A,t){return A-=103,Sa()[A]}const ka=za;(A=>{const t=za,e=A();for(;;)try{if(971326==-parseInt(t(426))/1+parseInt(t(413))/2+parseInt(t(414))/3+-parseInt(t(403))/4*(-parseInt(t(396))/5)+parseInt(t(425))/6*(-parseInt(t(393))/7)+parseInt(t(431))/8*(-parseInt(t(435))/9)+parseInt(t(399))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(rc);const Oa=ka(409),Va=ka(411);function Ra(A){return"<"+(A=>{const t=ka,e=(A[t(438)]?.(Va)??"")[t(408)]();if(e)return e;const r=ya(A)?La(A[t(438)]?.(t(440))):[];if(A[t(436)]===t(417)&&A[t(412)]===t(392))return t(423);const n=Ma(r);if(n)return n;const s=A[t(436)]===t(417)?ja.get(A.type):void 0,o=s?Ma([s]):void 0;if(o)return o;const i=A[t(438)]?.(Oa)?.toLowerCase();return i===t(416)?xa:"Sensitive"})(A)+">"}function Na(A){const t=ka;return A[t(433)](t(391))||A[t(438)](Oa)?.[t(429)]()===t(389)}const Ga=new Set;function Pa(A){const t=ka,e=A[t(438)](Oa);if(null===e)return!1;const r=e[t(429)]();return r!==t(389)&&(""!==e&&"mask"!==r&&(A=>{const t=ka;if(Ga[t(432)](A))return;Ga[t(387)](A);const e=JSON[t(422)](A),r=t(404),n="[intent] Unsupported data-intent-redact value "+e+t(421)+r+'. Treating as "mask" to prevent data leaks.';try{console[t(418)](n)}catch{}})(e),!0)}function Xa(A){let t=A;for(;t&&t!==document.body;){if(Na(t))return!0;t=Ia(t)}return!1}function Ja(A){const t=ka;let e=A;for(;e&&e!==document[t(424)];){if(Pa(e))return e;e=Ia(e)}}function Wa(A){return void 0!==Ja(A)}function Ya(A){return Pa(A)||qa(A)?Ra(A):Ra(Ja(A)??A)}function Za(A){return!Xa(A)&&(Wa(A)||qa(A))}function za(A,t){return A-=387,rc()[A]}const _a=Object.freeze(new Set([ka(407)])),ja=new Map([["email",ka(419)],["tel",ka(388)]]);function qa(A){const t=ka,e=A[t(436)],r=A[t(438)]("role")?.toLowerCase();if("INPUT"===e){const e=A;return e[t(412)]===t(392)||!(e[t(412)]===t(406)||r&&_a.has(r))&&(!!ja.has(e[t(412)])||Da(La(e[t(440)])))}return e===t(437)||"SELECT"===e?Da(La(A.autocomplete)):!(!ya(A)||ma(A))&&(!r||!_a.has(r))&&Da(La(A[t(438)](t(440))))}function $a(A){return!(Na(A)||!Pa(A)&&!qa(A))}function Ac(A){const t=ka;if(!Xa(A))if(ma(A)){if($a(A)){if(A[t(436)]===t(417)){const e=A;[t(428),t(395),"month",t(390),t(410)][t(398)](e[t(412)])&&(e[t(412)]="text")}const e=Ra(A);A[t(434)]=e,A[t(401)]("value",e)}}else ya(A)?$a(A)&&(A[t(415)]=Ra(A)):A[t(433)](Oa)&&Pa(A)&&(A.textContent=Ra(A))}function tc(A,t){const e=ka,r=[],n=[A];for(A instanceof Element&&A[e(400)]&&n.push(A[e(400)]);n[e(402)]>0;){const A=n[e(405)]()[e(420)]("*");for(const s of A)s[e(394)](t)&&r[e(439)](s),s[e(400)]&&n[e(439)](s.shadowRoot)}return r}function ec(A,t=new Set){const e=ka,r=A instanceof Document?A:A.ownerDocument;if(r){if(t.has(r))return;t.add(r)}A instanceof Element&&Ac(A);for(const t of tc(A,Fa))Ac(t);for(const t of tc(A,"["+Oa+"]"))Ac(t);for(const r of tc(A,e(427)))if(r[e(436)]===e(397))try{const A=r[e(430)];A&&ec(A,t)}catch{}}function rc(){const A=["email","querySelectorAll",". Supported values are ","stringify","Password","body","7226526MzsFNY","842851LsqCrG","iframe","date","toLowerCase","contentDocument","16ZHKFzM","has","hasAttribute","value","4650525qZGBJE","tagName","TEXTAREA","getAttribute","push","autocomplete","add","tel","ignore","time","data-html2canvas-ignore","password","7Kdpyht","matches","datetime-local","15ZpoqJJ","IFRAME","includes","21303300PfGqCi","shadowRoot","setAttribute","length","795440PqifKB",'"" or "mask" (redact), "ignore" (exclude from capture)',"pop","search","searchbox","trim","data-intent-redact","week","data-intent-redact-label","type","1819768zytDcM","1245762UUNFSr","textContent","mask","INPUT","warn"];return(rc=()=>A)()}
10
+ /*! js-cookie v3.0.8 | MIT */function nc(A){for(var t=1;t<arguments.length;t++){var e=arguments[t];for(var r in e)"__proto__"!==r&&(A[r]=e[r])}return A}var sc=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=nc({},e,n)).expires&&(n.expires=new Date(Date.now()+864e5*n.expires)),n.expires&&(n.expires=n.expires.toUTCString()),A=encodeURIComponent(A).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var s="";for(var o in n)n[o]&&(s+="; "+o,!0!==n[o]&&(s+="="+n[o].split(";")[0]));return document.cookie=A+"="+t.write(r,A)+s}}return Object.create({set:r,get:function(A){if("undefined"!=typeof document&&(!arguments.length||A)){for(var e=document.cookie?document.cookie.split("; "):[],r={},n=0;n<e.length;n++){var s=e[n].split("="),o=s.slice(1).join("=");try{var i=decodeURIComponent(s[0]);if(i in r||(r[i]=t.read(o,i)),A===i)break}catch(A){}}return A?r[A]:r}},remove:(A,t)=>{r(A,"",nc({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,nc({},this.attributes,t))},withConverter:function(t){return A(nc({},this.converter,t),this.attributes)}},{attributes:{value:Object.freeze(e)},converter:{value:Object.freeze(t)}})}({read:A=>('"'===A[0]&&(A=A.slice(1,-1)),A.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)),write:A=>encodeURIComponent(A).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)},{path:"/"});(A=>{const t=gc,e=A();for(;;)try{if(651954==-parseInt(t(468))/1+-parseInt(t(462))/2*(-parseInt(t(451))/3)+-parseInt(t(457))/4*(parseInt(t(456))/5)+parseInt(t(464))/6+parseInt(t(455))/7+-parseInt(t(467))/8*(-parseInt(t(460))/9)+-parseInt(t(453))/10*(parseInt(t(449))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ac);let oc="";function ic(){return oc}function ac(){const A=["protocol","get","8dqPXHI","217246egvRWA","11oNuAXZ","isFinite","3458814RoiiBm","set","12581390WEhJMM","number","2624055mSvtPB","10oQFVpz","829352atORAI","granted","intent_sid","4067181MVGPOs","location","2PuJwKJ","getItem","3373818jrZIOm"];return(ac=()=>A)()}function cc(A){return sc[gc(466)](A)}function Bc(A,t){const e=gc,r=localStorage.getItem(oa),n=null===r?void 0:Number(r),s=typeof t===e(454)&&Number[e(450)](t)?t:typeof n===e(454)&&Number[e(450)](n)?n:2592e3,o="https:"===window[e(461)][e(465)];sc[e(452)](e(459),A,{expires:s/86400,path:"/",sameSite:"Lax",...o&&{secure:!0}})}function lc(){sc.remove(gc(459),{path:"/"})}function gc(A,t){return A-=449,ac()[A]}function hc(){const A=cc(gc(459));if(!(()=>{const A=gc;return localStorage[A(463)](qi)===A(458)})())return A&&lc(),void(oc="");A?oc=A:(oc=crypto.randomUUID(),Bc(oc))}function dc(A,t){return A-=416,fc()[A]}(A=>{const t=dc,e=A();for(;;)try{if(145804==-parseInt(t(425))/1*(parseInt(t(428))/2)+-parseInt(t(432))/3+parseInt(t(416))/4*(parseInt(t(452))/5)+-parseInt(t(423))/6*(-parseInt(t(440))/7)+-parseInt(t(437))/8+parseInt(t(420))/9*(-parseInt(t(424))/10)+parseInt(t(417))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(fc);let wc=!1,uc=!1,Qc=!1,Cc=!1,pc=!1;function Uc(){const A=dc;return localStorage[A(431)]($i)===A(427)}function fc(){const A=["deviceGeoSent","getItem","554682qRVwhC","getCurrentPosition","isFinite","geoEnabled","permissions","1670760WCnIEK","POSITION_UNAVAILABLE","protocol","42jwbwrN","UNKNOWN","hostname","geolocation","code","addEventListener","PERMISSION_DENIED","TIMEOUT","keydown","pointerdown","query","altitudeAccuracy","77135YYvVxs","speed","16JdbRKH","4996937kLdyVc","longitude","altitude","37998jKEzsa","visibilityState","number","190986AylCLX","130VyJYkc","8038gOWhJJ","removeEventListener","enabled","28WCCWnj","hasFocus"];return(fc=()=>A)()}function Fc(){wc=!1,Qc=!1,pc=!1}function mc(){return!wc&&Uc()&&!Cc&&pc}function yc(){const A=["now","mousedown","src","data-intent-redact","button","210uYzoPZ","textContent","\n\t\tmax-width: 100%;\n\t\tmax-height: calc(95vh - 60px);\n\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.2));\n\t","remove","#intent-debug-events","</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t","\n\t\tmax-width: 95%;\n\t\tmax-height: 95%;\n\t\tdisplay: flex;\n\t\tflex-direction: column;\n\t\talign-items: center;\n\t","addEventListener","innerHTML","#intent-debug-minimize","200px","#intent-debug-content","loading"," event",'</div>\n\t\t\t\t<div style="\n\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t">',"Click anywhere or press ESC to close","img","top","removeEventListener","join","style","click","1362135DVSAIA","Escape","auto","innerWidth","mousemove",'\n\t\t<div style="\n\t\t\tbackground: var(--solomei-color-card, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tpadding: 10px;\n\t\t\tmargin-bottom: 8px;\n\t\t">\n\t\t\t<div style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tmargin-bottom: 8px;\n\t\t\t\tpadding-bottom: 8px;\n\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t">',"400px","width","bbox","</pre>\n\t\t\t\t\t","none","intent-debug-screenshot","\n\t\tposition: fixed;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tbackground: rgba(0, 0, 0, 0.95);\n\t\tz-index: 2147483646;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t\tcursor: zoom-out;\n\t","tagName","117738RsOpwZ","#intent-debug-header",'\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="',"cssText","length","max","data:image/","querySelector","push","shift","DOMContentLoaded","div","offsetWidth","function","4971380nDrVTd","setItem","setAttribute","timestamp",'\n\t\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>HTML:</strong></div>\n\t\t\t\t\t\t<pre style="\n\t\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t">',"map","disabled","appendChild","left","startsWith","contains","readyState","clientY","#intent-debug-count","display","1350523lRohlV","randomUUID",'\n\t\t\t<details style="margin-top: 8px;">\n\t\t\t\t<summary style="\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\tuser-select: none;\n\t\t\t\t">View Details</summary>\n\t\t\t\t<div style="\n\t\t\t\t\tmargin-top: 8px;\n\t\t\t\t\tpadding: 8px;\n\t\t\t\t\tbackground: var(--solomei-color-secondary, #fafaf9);\n\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\tcolor: var(--solomei-color-foreground, #212121);\n\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t">\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Properties:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0 0 8px 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\twhite-space: pre-wrap;\n\t\t\t\t\t\tword-break: break-word;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">',"flex","enabled","preventDefault","innerHeight","firstElementChild","target"," KB)</div>\n\t\t\t\t</div>\n\t\t\t","classList","2502064mQqDaF","15645352zhABgm","body","html","330400iaxwQS","event","stopPropagation","getBoundingClientRect","createElement","offsetHeight","\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t","keydown","stringify"];return(yc=()=>A)()}const Ic=Hc;function Hc(A,t){return A-=471,yc()[A]}(A=>{const t=Hc,e=A();for(;;)try{if(728452==parseInt(t(486))/1+parseInt(t(497))/2+parseInt(t(537))/3+-parseInt(t(471))/4+-parseInt(t(515))/5*(-parseInt(t(551))/6)+parseInt(t(501))/7+-parseInt(t(498))/8)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(yc);let Ec,bc=[],xc=!1;function vc(){const A=Hc;if(!Ec)return;const t=Ec[A(558)](A(519)),e=Ec.querySelector(A(484));if(!t||!e)return;if(0===bc[A(555)])return t[A(523)]='\n\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t</div>\n\t\t',void(e[A(516)]="0 events");const r=[...bc].reverse();t.innerHTML=r[A(476)](A=>(A=>{const t=Hc,e=new Date(A[t(474)]).toLocaleTimeString(),r=A[t(531)]&&A[t(531)][t(555)]>0,n=r?Math.round(.75*A[t(531)][t(555)]/1024):0,s=Ea(A[t(502)]),o=Ea(JSON.stringify(A.props,null,2)),i=Ea(A[t(500)]),a=Ea(JSON[t(509)](A[t(545)],null,2));return t(542)+s+t(529)+e+"</div>\n\t\t\t</div>\n\t\t\t"+(r?t(553)+A[t(531)]+'" \n\t\t\t\t\t\tclass="intent-debug-screenshot" \n\t\t\t\t\t\tstyle="\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t" \n\t\t\t\t\t\ttitle="Click to view fullscreen"/>\n\t\t\t\t\t<div style="\n\t\t\t\t\t\tcolor: var(--solomei-color-text-secondary, #979797);\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t\tmargin-top: 4px;\n\t\t\t\t\t">Screenshot (~'+n+t(495):"")+t(488)+o+t(546)+(A[t(500)]?t(475)+i+"</pre>\n\t\t\t\t\t":"")+'\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Bounding Box:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">'+a+t(520)})(A))[A(534)](""),e[A(516)]=bc[A(555)]+A(528)+(1===bc[A(555)]?"":"s")}function Kc(){const A=Hc;if(Ec)return void(Ec[A(535)][A(485)]=A(489));const t=document[A(505)](A(562));t[A(523)]='\n\t\t<div id="intent-debug-panel" data-intent-redact="ignore" style="\n\t\t\tposition: fixed;\n\t\t\ttop: 20px;\n\t\t\tright: 20px;\n\t\t\twidth: 400px;\n\t\t\tmax-height: 80vh;\n\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\tborder-radius: var(--solomei-radius-lg, 10px);\n\t\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t\t\tz-index: 2147483647;\n\t\t\tfont-family: var(--solomei-font-primary, -apple-system, BlinkMacSystemFont, \'Segoe UI\', sans-serif);\n\t\t\tfont-size: var(--solomei-font-size-base, 15px);\n\t\t\tdisplay: flex;\n\t\t\tflex-direction: column;\n\t\t">\n\t\t\t<div id="intent-debug-header" style="\n\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\tpadding: 12px 15px;\n\t\t\t\tborder-radius: var(--solomei-radius-lg, 10px) var(--solomei-radius-lg, 10px) 0 0;\n\t\t\t\tcursor: move;\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\talign-items: center;\n\t\t\t\tuser-select: none;\n\t\t\t">\n\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); font-size: 14px;">Intent SDK Debug</div>\n\t\t\t\t<div style="display: flex; gap: 8px;">\n\t\t\t\t\t<button id="intent-debug-minimize" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">−</button>\n\t\t\t\t\t<button id="intent-debug-close" style="\n\t\t\t\t\t\tbackground: transparent;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\twidth: 24px;\n\t\t\t\t\t\theight: 24px;\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 4px);\n\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\tjustify-content: center;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t">×</button>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div id="intent-debug-content" style="\n\t\t\t\tdisplay: flex;\n\t\t\t\tflex-direction: column;\n\t\t\t\toverflow: hidden;\n\t\t\t\tflex: 1;\n\t\t\t">\n\t\t\t\t<div style="\n\t\t\t\t\tpadding: 12px 15px;\n\t\t\t\t\tborder-bottom: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t">\n\t\t\t\t\t<div style="font-weight: var(--solomei-font-weight-semibold, 600); color: var(--solomei-color-foreground, #212121); margin-bottom: 8px;">Event Log</div>\n\t\t\t\t\t<div style="display: flex; gap: 8px; align-items: center;">\n\t\t\t\t\t\t<button id="intent-debug-clear" style="\n\t\t\t\t\t\t\tbackground: var(--solomei-color-primary, #262626);\n\t\t\t\t\t\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\t\t\t\t\t\tborder: none;\n\t\t\t\t\t\t\tpadding: 6px 12px;\n\t\t\t\t\t\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\t\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t\t\tfont-weight: var(--solomei-font-weight-regular, 500);\n\t\t\t\t\t\t">Clear</button>\n\t\t\t\t\t\t<span id="intent-debug-count" style="color: var(--solomei-color-text-secondary, #979797); font-size: 12px;">0 events</span>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div id="intent-debug-events" style="\n\t\t\t\t\tflex: 1;\n\t\t\t\t\toverflow-y: auto;\n\t\t\t\t\tpadding: 10px;\n\t\t\t\t">\n\t\t\t\t\t<div style="color: var(--solomei-color-muted-foreground, #979797); text-align: center; padding: 20px;">\n\t\t\t\t\t\tNo events captured yet. Interact with the page to see events.\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t',Ec=t[A(493)],document[A(499)][A(478)](Ec);const e=Ec[A(558)]("#intent-debug-close"),r=Ec[A(558)]("#intent-debug-minimize"),n=Ec[A(558)]("#intent-debug-clear");e?.[A(522)](A(536),()=>{!function(A){const t=Hc;try{localStorage[t(472)](ea,A?"enabled":t(477)),A?Kc():(()=>{const A=Hc;Ec&&(Ec[A(535)].display=A(547))})()}catch{}}(!1)}),r?.[A(522)](A(536),()=>{(()=>{const A=Hc;if(!Ec)return;const t=Ec[A(558)](A(526)),e=Ec.querySelector(A(524));t&&e&&(xc=!xc,xc?(t[A(535)][A(485)]=A(547),Ec[A(535)][A(544)]=A(525),e[A(516)]="+"):(t.style.display=A(489),Ec[A(535)][A(544)]=A(543),e[A(516)]="−"))})()}),n?.[A(522)](A(536),()=>{bc=[],vc()}),(()=>{const A=Hc;if(!Ec)return;const t=Ec[A(558)](A(552));if(!t)return;let e=!1,r=0,n=0,s=0,o=0;t[A(522)](A(511),t=>{const r=A;if("BUTTON"===t.target[r(550)])return;e=!0;const n=Ec[r(504)]();s=t.clientX-n.left,o=t[r(483)]-n[r(532)]}),document.addEventListener(A(541),t=>{const i=A;if(!e||!Ec)return;t[i(491)](),r=t.clientX-s,n=t.clientY-o;const a=window[i(540)]-Ec[i(563)],c=window[i(492)]-Ec[i(506)];r=Math.max(0,Math.min(r,a)),n=Math[i(556)](0,Math.min(n,c)),Ec[i(535)][i(479)]=r+"px",Ec[i(535)][i(532)]=n+"px",Ec.style.right=i(539)}),document[A(522)]("mouseup",()=>{e=!1})})(),Ec.addEventListener(A(536),t=>{const e=A,r=t[e(494)];if(r[e(496)][e(481)](e(548))){const A=r;A[e(512)]&&A[e(512)][e(480)](e(557))&&(A=>{const t=Hc,e=document[t(505)](t(562));e.id="intent-debug-fullscreen-modal",e[t(473)](t(513),"ignore"),e[t(535)][t(554)]=t(549);const r=document[t(505)](t(562));r.style[t(554)]=t(521);const n=document.createElement("img");n[t(512)]=A,n[t(535)][t(554)]=t(517);const s=document[t(505)](t(562));s[t(535)].cssText="\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t";const o=document.createElement(t(514));o[t(516)]="✕ Close",o.style.cssText="\n\t\tpadding: 12px 24px;\n\t\tbackground: var(--solomei-color-primary-button-background, #262626);\n\t\tcolor: var(--solomei-color-primary-button-color, white);\n\t\tborder: none;\n\t\tborder-radius: var(--solomei-radius-button, 20px);\n\t\tfont-size: 14px;\n\t\tfont-weight: var(--solomei-font-weight-semibold, 600);\n\t\tcursor: pointer;\n\t\tbox-shadow: var(--solomei-shadow-box, 0 2px 10px rgba(0, 0, 0, 0.15));\n\t";const i=document[t(505)](t(562));i[t(516)]=t(530),i[t(535)].cssText=t(507),s[t(478)](o),s[t(478)](i),r[t(478)](n),r[t(478)](s),e[t(478)](r);const a=()=>{const A=t;e[A(518)](),document[A(533)](A(508),c)};e[t(522)](t(536),a),o[t(522)]("click",A=>{A[t(503)](),a()}),n.addEventListener("click",A=>{A[t(503)]()});const c=A=>{A.key===t(538)&&a()};document[t(522)](t(508),c),document[t(499)][t(478)](e)})(A[e(512)])}}),vc()}function Lc(){var A=["744951uzXfXK","264845uRaRAV","Use the debug build variant: @solomei-ai/intent/debug or intent.debug.umd.min.js","6969618UbZiJZ","1650664loUgKM","setDebugPanel","[Intent SDK] Debug panel is not available in this build. ","786590SZhJsV","4TnRFRo","11oKHZsQ","955128mIhOyV","40666cNQmKe","warn","logEventToDebugPanel"];return(Lc=()=>A)()}function Sc(A,t){return A-=376,Lc()[A]}"undefined"!=typeof window&&function(){const A=Hc;try{return localStorage.getItem(ea)===A(490)}catch{return!1}}()&&(document[Ic(482)]===Ic(527)?document.addEventListener(Ic(561),()=>{Kc()}):Kc()),Symbol,(A=>{for(var t=Sc,e=A();;)try{if(132054==-parseInt(t(377))/1*(parseInt(t(379))/2)+-parseInt(t(382))/3*(parseInt(t(376))/4)+parseInt(t(389))/5+-parseInt(t(378))/6+parseInt(t(383))/7+-parseInt(t(386))/8+parseInt(t(385))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Lc);const Dc=Mc;function Mc(A,t){return A-=309,Oc()[A]}(A=>{const t=Mc,e=A();for(;;)try{if(868590==parseInt(t(347))/1*(parseInt(t(332))/2)+-parseInt(t(351))/3*(-parseInt(t(356))/4)+-parseInt(t(328))/5+parseInt(t(320))/6+parseInt(t(352))/7*(parseInt(t(319))/8)+parseInt(t(345))/9+-parseInt(t(342))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Oc);const Tc={x:0,y:0,w:0,h:0};class kc{[Dc(318)];[Dc(312)]=new Map;[Dc(315)]=[];[Dc(329)]=0;constructor(A){this[Dc(318)]=A}get[Dc(335)](){return this[Dc(312)].size}[Dc(309)](A){const t=Dc;return this[t(312)][t(309)](A)}[Dc(338)](){return this[Dc(312)].values()}[Dc(343)](A,t){const e=Dc,r=new Set,n=[],s=[];for(const{node:t,kind:s,fingerprint:o}of A){r[e(326)](t);const A=this[e(312)][e(309)](t);A?A.fingerprint!==o&&(A[e(349)]=o,A[e(311)]=s,A[e(325)]=!1,A[e(358)]=void 0):(this[e(312)].set(t,{node:t,kind:s,intersecting:!1,visible:!1,ratio:0,rect:{...Tc},dwellMs:0,registered:!1,fingerprint:o}),n[e(344)](t))}for(const[A,n]of this[e(312)])r[e(348)](A)&&(t?.(A)??1)||(this[e(346)](n),this.entries.delete(A),s[e(344)](A));return this[e(318)][e(322)]?.(e(317)+this.entries.size+e(310)),{added:n,removed:s}}setGeometry(A,t){const e=Dc,r=this[e(312)].get(A);r&&(r[e(337)]=t[e(337)],r[e(353)]=t[e(353)],r[e(357)]=t.rect)}[Dc(354)](A){const t=Dc,e=this[t(318)][t(324)]();for(const r of this[t(312)].values()){if(!r[t(337)]){this[t(346)](r,e),r[t(333)]=!1;continue}const n=A?.(r[t(360)])??!0;n&&void 0===r[t(340)]?r.visibleSince=e:!n&&this.closeDwell(r,e),r[t(333)]=n}}async[Dc(341)](){const A=Dc,t=this[A(329)],e=[];for(const t of this[A(312)].values())t.visible&&!t.registered&&e[A(344)](t);if(0===e.length)return;for(const A of e)A.registered=!0;let r,n=0;for(const s of e)try{if(await this[A(318)][A(355)](),t!==this[A(329)])return void this[A(318)][A(322)]?.(A(321));const e=this.options[A(314)](s[A(360)],s[A(311)]);e&&(s[A(358)]=e,this[A(315)].push(e))}catch(t){s[A(325)]=!1,n++,r=t}n>0&&this[A(318)][A(322)]?.(A(323)+n+"/"+e[A(334)]+A(330)+String(r))}getOnScreen(){const A=Dc,t=this[A(318)][A(324)](),e=new Map;for(const r of this[A(312)][A(338)]()){if(!r.visible||!r[A(358)])continue;const n=void 0===r.visibleSince?0:t-r[A(340)],s={ref:r[A(358)][A(331)],ratio:Math[A(359)](100*r[A(353)])/100,dwellMs:Math[A(359)](r[A(313)]+n),rect:r.rect},o=e[A(309)](s[A(331)]);(!o||s[A(313)]>o[A(313)])&&e[A(350)](s[A(331)],s)}return[...e.values()]}[Dc(316)](){const A=Dc,t=new Set;for(const e of this.entries.values())e.digest&&t[A(326)](e[A(358)].ref);const e=new Set,r=[];let n=0;for(const s of this[A(315)])e.has(s[A(331)])||(t.has(s[A(331)])?(e.add(s[A(331)]),r[A(344)](s)):n++);return this[A(315)]=[],n>0&&this[A(318)].log?.(A(327)+n+A(361)),r}[Dc(339)](){const A=Dc;let t=0,e=0;for(const r of this.entries[A(338)]())r[A(333)]&&t++,r[A(358)]&&e++;return{segments:this[A(312)][A(335)],onScreen:t,registered:e}}[Dc(336)](){const A=Dc;this[A(312)][A(336)](),this.pendingRegistrations=[],this.generation++}[Dc(346)](A,t=this[Dc(318)][Dc(324)]()){const e=Dc;void 0!==A[e(340)]&&(A[e(313)]+=t-A[e(340)],A[e(340)]=void 0)}}function Oc(){const A=["152rWRFSH","rect","digest","round","node"," registrations the ledger no longer describes","get"," segments tracked","kind","entries","dwellMs","extract","pendingRegistrations","drainRegistrations","[Ledger] ","options","136Yxvrim","4608210PIxiaT","[Ledger] abandoned an extraction pass the ledger was cleared under","log","[Ledger] extraction failed for ","now","registered","add","[Ledger] dropped ","1838895kfAEiG","generation"," segments: ","ref","2gUHRNE","visible","length","size","clear","intersecting","values","getCoverage","visibleSince","registerVisible","17512990MJvrSB","reconcile","push","5395563SgvbTf","closeDwell","58019MYqcJk","has","fingerprint","set","86466bVTLQD","192241elRzvn","ratio","refreshVisibility","scheduleIdle"];return(Oc=()=>A)()}(A=>{const t=Rc,e=A();for(;;)try{if(697566==parseInt(t(464))/1*(parseInt(t(463))/2)+-parseInt(t(457))/3+-parseInt(t(447))/4*(-parseInt(t(442))/5)+-parseInt(t(468))/6+parseInt(t(453))/7*(-parseInt(t(474))/8)+parseInt(t(462))/9+-parseInt(t(461))/10*(parseInt(t(450))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Nc);const Vc={maxSegments:300,maxDepth:24,maxTextLength:1200,maxHeadings:1,maxInteractives:8,minTextLength:12,minDescentCoverage:.67};function Rc(A,t){return A-=435,Nc()[A]}function Nc(){const A=["maxTextLength","marked","leaf","signature","maxDepth","8JZmywk","minDescentCoverage","maxInteractives","get","mixDigestAttributes","textLength","kind","length","3515785WvmIFC","parent","heading","isMarked","isUnit","4cKBxyl","unit","headings","33uAysHS","maxHeadings","contentHash","2877266ylAFSg","isHeading","push","isSkipped","790665EspxyK","reduce","interactives","isInteractive","98250edydTc","11395836qzRqjr","908wpxPYl","529dgKxgz","children","repeated","slice","4847358tvYQTM"];return(Nc=()=>A)()}const Gc=Xc;function Pc(){const A=["aria-label","500264lPFUma","src","contenteditable","3588040zTUDjM","searchbox","true","SUMMARY","HEAD","5gVrteO","option","parentElement","hasAttribute","tab","442968TMGMmo","gridcell","data-intent-redact","SELECT","data:","2707590aWHaZh","slider","toLowerCase","aria-hidden","aria-labelledby","14755581hflCdV","2ogzgku","currentSrc","join","META","article","radio","title","TEMPLATE","checkbox","length","nodeType","treeitem","SECTION","IFRAME","BUTTON","INPUT","data-intent-redact-label","STYLE","childNodes","54075fIMJLb","tagName","getAttribute","4827172Lzkuxu","switch","role","row","href","AREA","ARTICLE","LABEL","contenteditable:","autocomplete","data-html2canvas-ignore","IMG","from","classList","combobox","FIGURE","redact:","CANVAS","textbox","type","TEXTAREA","card","TITLE","DETAILS","menuitem","has","hidden","link"];return(Pc=()=>A)()}function Xc(A,t){return A-=421,Pc()[A]}(A=>{const t=Xc,e=A();for(;;)try{if(361094==-parseInt(t(485))/1*(parseInt(t(474))/2)+-parseInt(t(429))/3+-parseInt(t(461))/4+parseInt(t(469))/5*(-parseInt(t(479))/6)+-parseInt(t(432))/7+parseInt(t(464))/8+parseInt(t(484))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Pc);const Jc=new Set(["SCRIPT",Gc(427),"NOSCRIPT",Gc(492),Gc(468),Gc(488),"LINK",Gc(454),"BR","HR",Gc(423),Gc(449),"svg"]),Wc=new Set([Gc(438),Gc(422),"LI",Gc(447),"BLOCKQUOTE","TR","DD",Gc(455)]),Yc=new Set([Gc(489),"listitem","option",Gc(435),Gc(475),Gc(473),Gc(421),Gc(453)]),Zc=new Set(["H1","H2","H3","H4","H5","H6"]),zc=new Set(["A",Gc(424),Gc(425),Gc(477),Gc(452),Gc(467),Gc(439),"VIDEO","AUDIO"]),_c=new Set(["button",Gc(459),Gc(470),Gc(473),Gc(493),Gc(490),Gc(433),Gc(456),Gc(450),Gc(446),Gc(465),Gc(480)]),jc=[Gc(460),Gc(483),Gc(491),Gc(434)],qc=Gc(476),$c=Gc(426),AB=Gc(442),tB=[Gc(451),Gc(441)],eB={children:A=>A.children,parent:A=>A[Gc(471)]??void 0,ownText(A){const t=Gc;let e="";for(const r of A[t(428)])if(3===r[t(495)]){const A=(r.textContent??"").trim();A&&(e+=A)}return e},kind:A=>A[Gc(430)],isSkipped(A){const t=Gc;return!!Jc[t(457)](A[t(430)])||A[t(472)](t(458))||A[t(431)](t(482))===t(466)},isUnit(A){const t=Gc;if(Wc.has(A.tagName))return!0;const e=A.getAttribute(t(434))?.[t(481)]();return Boolean(e&&Yc[t(457)](e))},isHeading(A){const t=Gc;return Zc[t(457)](A[t(430)])},isInteractive(A){const t=Gc;if(zc[t(457)](A[t(430)]))return!0;const e=A[t(431)]("role")?.[t(481)]();return!(!e||!_c.has(e))||A[t(472)]("onclick")||A.hasAttribute(t(436))},isMarked:A=>A[Gc(472)]("data-intent-item"),signature(A){const t=Gc,e=Array[t(444)](A[t(445)]).sort()[t(487)](".");return A[t(430)]+"#"+e},mixDigestAttributes(A,t){const e=Gc;let r=A;const n=t.tagName;for(const A of jc){const e=t.getAttribute(A);e&&(r=ha(r,A+":"+e))}const s=t[e(431)](qc);if(null!==s){r=ha(r,e(448)+s);const A=t.getAttribute($c);A&&(r=ha(r,A))}t[e(472)](AB)&&(r=ha(r,"redact:ignore-legacy"));const o=t.getAttribute(e(463));if(null!==o&&(r=ha(r,e(440)+o)),"INPUT"===n||n===e(452)||n===e(477))for(const A of tB){const n=t[e(431)](A);null!==n&&(r=ha(r,A+":"+n))}if("A"===n||n===e(437)){const A=t.getAttribute(e(436));A&&(r=ha(r,A))}else if(n===e(443)){const A=t.getAttribute("alt");A&&(r=ha(r,A));const n=t[e(486)]||t[e(431)](e(462));n&&(r=n.startsWith(e(478))?da(r,n[e(494)]):ha(r,n))}return r}},rB=lB;function nB(){const A=["heading","startsWith","1160810mPUeoH","471560ofHPxm","images","toLowerCase","push","slice","alt","text","length","replace","some","22157ZSoywc","54kHQCOf","326750DGkPPX","type","label","role","trim","actions","fieldValue","10028776pWYarv","929496SiFFTM","263610jdqjoG","value","javascript:","href","fields","src","kind"];return(nB=()=>A)()}(A=>{const t=lB,e=A();for(;;)try{if(395162==-parseInt(t(332))/1*(parseInt(t(333))/2)+-parseInt(t(343))/3+-parseInt(t(322))/4+-parseInt(t(334))/5+-parseInt(t(342))/6+parseInt(t(321))/7+parseInt(t(341))/8)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(nB);const sB={text:400,actions:12,images:6,label:80,heading:120,fields:30,fieldValue:300};function oB(A,t){const e=lB;return A?A[e(330)](/\s+/g," ")[e(338)]()[e(326)](0,t):""}function iB(...A){const t=lB;let e="";for(const r of A)e+=r[t(329)]+":"+r;return e}const aB=[rB(314),"vbscript:","data:","about:"];function cB(A){const t=rB;if(!A)return;const e=A[t(330)](/[\t\n\r]/g,"")[t(330)](/^[\u0000-\u0020]+|[\u0000-\u0020]+$/g,"");if(!e||"#"===e)return;const r=e[t(324)]();return aB[t(331)](A=>r[t(320)](A))?void 0:A}function BB(A,t,e,r,n){const s=rB,o=iB(...r.map(A=>iB(A[s(336)],A[s(337)]??"",A[s(315)]??""))),i=iB(...n.map(A=>iB(A.alt??"",A[s(317)]??"")));return(A=>{const t=Ba;let e="";for(const{seed:r,prime:n}of wa){let s=r>>>0;for(let e=0;e<A[t(225)];e++){const r=A.charCodeAt(e);s=Math[t(222)](s^255&r,n)>>>0,s=Math[t(222)](s^r>>>8,n)>>>0}e+=s[t(223)](36)[t(219)](7,"0")}return e})(iB(A,t,e,o,i))}function lB(A,t){return A-=313,nB()[A]}const gB=FB;function hB(){const A=["70336QeVVHD","title","reset","398478eiRHFr","actions",'h1, h2, h3, h4, h5, h6, [role="heading"]',"367210dtsScX","remove","type","matches","role","link","alt","checked","6734035pWCNiE","from","nodeType","INPUT","img","startsWith","hidden","text","href","name","currentSrc","data:","has","checkbox","6pOozvM","find","input, textarea, select, button, option","map","join","116GhrVRK","img[alt]","heading","elements","textContent","submit","length","closest","src","getAttribute","431455IjqdmH","label","36RFXdrE","getElementById","aria-label","radio","labels","push","ownerDocument","ELEMENT_NODE","querySelectorAll","childNodes","1843191nUvpZa","image","2841sWINWf","1iECClK","SELECT","placeholder","trim","images","TEXT_NODE","cloneNode","selectedOptions","value","button","tagName","blob:","toLowerCase"];return(hB=()=>A)()}(A=>{const t=FB,e=A();for(;;)try{if(136572==-parseInt(t(364))/1*(parseInt(t(380))/2)+-parseInt(t(363))/3*(parseInt(t(339))/4)+parseInt(t(349))/5*(parseInt(t(334))/6)+-parseInt(t(361))/7+-parseInt(t(377))/8*(parseInt(t(351))/9)+-parseInt(t(383))/10+parseInt(t(391))/11)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(hB);const dB=gB(382),wB='a[href], button, [role="button"], [role="link"], [role="option"], [role="tab"], input[type="submit"], input[type="button"]';function uB(A,t=sB[gB(327)]){if(Xa(A))return"";if(Wa(A))return oB(Ya(A),t);const e=[];let r=t;const n=A=>{const t=FB;e.at(-1)!==A&&(e[t(356)](A),r-=A[t(345)])},s=A=>{const t=FB;if(!(r<=0||Na(A))){if(ya(A)){const n=oB($a(A)?Ra(A):Ha(A),r);return void(n&&(e.push(n),r-=n[t(345)]))}if(Pa(A)){const n=oB(Ra(A),r);return void(n&&(e.push(n),r-=n[t(345)]))}for(const e of A[t(360)]){if(r<=0)return;if(e[t(393)]===Node[t(369)]){const A=oB(e[t(343)],r);A&&n(A)}else e[t(393)]===Node[t(358)]&&s(e)}}};return s(A),e.join(" ").slice(0,t)}const QB=new Set([gB(344),"button",gB(379),gB(362),gB(326),"file"]);function CB(A){const t=gB,e=A[t(370)](!0);for(const A of e[t(359)](t(336)))A[t(384)]();return oB(e[t(343)],sB[t(350)])}function pB(A){const t=gB,e=oB(A[t(348)](t(353)),sB[t(350)]);if(e)return e;const r=A[t(355)]?.[0];if(r){const A=CB(r);if(A)return A}const n=A[t(346)]("label");if(n){const A=CB(n);if(A)return A}return oB(A[t(348)](t(366)),sB.label)}function UB(A,t){const e=gB;if(Za(A))return Ya(A);if(t===e(333)||t===e(354))return A[e(390)]?"checked":"unchecked";if(A[e(374)]===e(365)){const t=A;return t[e(371)]?.[0]?.[e(343)]??t[e(372)]}return Ha(A)}function fB(A){const t=gB;if(Xa(A))return"";if(Wa(A))return Ya(A);const e=oB(A[t(348)]("aria-label"),sB[t(350)]);if(e)return e;const r=A.getAttribute("aria-labelledby");if(r){const e=r.split(/\s+/)[t(337)](e=>A[t(357)][t(352)](e)).filter(Boolean).map(A=>uB(A,sB[t(350)]))[t(338)](" ");if(e[t(367)]())return oB(e,sB[t(350)])}const n=oB(A[t(348)](t(378)),sB[t(350)]);if(n)return n;const s=uB(A,sB[t(350)]);if(s)return s;const o=A.querySelector(t(340));return oB(o?.[t(348)](t(389)),sB[t(350)])}function FB(A,t){return A-=323,hB()[A]}function mB(A){const t=gB,e=A[t(330)]||A[t(347)]||"";if(e&&!e[t(325)](t(331))&&!e[t(325)](t(375)))return e[t(345)]>512?void 0:e}function yB(A){const t=gB,e=A[t(348)](t(387))?.[t(376)]();return e||("A"===A[t(374)]?t(388):"BUTTON"===A.tagName||A[t(374)]===t(323)?t(373):A[t(374)].toLowerCase())}function IB(){const A=["389905mZBONh","7735NMzEIi","268SCNgUf","[intent] No platform host installed. Import @solomei-ai/intent (web) or @solomei-ai/intent/native before use.","2632630GpXxoB","4348008tlooDj","10pdTWXz","6vqTFKu","3512139eObAMb","18jZqIgY","8790460UKWIbm","29702717veHBRz"];return(IB=()=>A)()}let HB;function EB(A,t){return A-=430,IB()[A]}function bB(){if(!HB)throw new Error(EB(438));return HB}(A=>{const t=EB,e=A();for(;;)try{if(705417==parseInt(t(435))/1+-parseInt(t(439))/2+parseInt(t(431))/3+parseInt(t(437))/4*(parseInt(t(436))/5)+-parseInt(t(430))/6*(parseInt(t(433))/7)+-parseInt(t(440))/8*(parseInt(t(432))/9)+parseInt(t(441))/10*(parseInt(t(434))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(IB);const xB=vB;function vB(A,t){return A-=179,KB()[A]}function KB(){const A=["1128534DYNrEN","x-sl-access-token","975365iMKtzF","application/json","getItem","8MbSSBQ","sendBeacon","stream","1510803onMXHw","blob","omit","173224gWTsjM","[Transport] batch rejected with ","Content-Encoding","x-intent-sid","function","web","status","1343839wuwyHb","CompressionStream","gzip","845514hMATsN","POST","now","setItem","4CRtVGL","log","469682eMQGbV"];return(KB=()=>A)()}(A=>{const t=vB,e=A();for(;;)try{if(149545==parseInt(t(189))/1+parseInt(t(205))/2+-parseInt(t(199))/3+-parseInt(t(203))/4*(-parseInt(t(180))/5)+parseInt(t(206))/6+-parseInt(t(196))/7*(parseInt(t(183))/8)+-parseInt(t(186))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(KB);let LB=!1;const SB={get(A){const t=vB;try{return localStorage[t(182)](A)??void 0}catch{return}},set(A,t){const e=vB;try{localStorage[e(202)](A,t)}catch{}},remove(A){try{localStorage.removeItem(A)}catch{}}},DB={platform:xB(194),now:()=>performance.now(),wallClock:()=>Date[xB(201)](),storage:SB,send:async(A,t,{beacon:e,byteLength:r})=>{const n=vB;if(e)return((A,t)=>{const e=vB;if(typeof navigator[e(184)]!==e(193))return!1;try{return navigator[e(184)](A,new Blob([t],{type:e(181)}))}catch{return!1}})(A,t);const s=await(async A=>{const t=vB,e=globalThis[t(197)];if(LB&&"function"==typeof e)try{const r=new Blob([A])[t(185)]().pipeThrough(new e(t(198)));return await new Response(r)[t(187)]()}catch{return}})(t),o={"Content-Type":n(181)},i=SB.get(ra);i&&(o[n(179)]=i);const a=ic();a&&(o[n(192)]=a),s&&(o[n(191)]=n(198));const c=await fetch(A,{method:n(200),headers:o,body:s??t,keepalive:r<=6e4,credentials:n(188)});return!c.ok&&DB[n(204)](n(190)+c[n(195)]),c.ok},scheduleIdle:async()=>{const A=Ca,{scheduler:t}=globalThis;if(t&&"function"==typeof t[A(465)])try{return void await t[A(465)](()=>{},{priority:"background"})}catch{}"function"!=typeof requestIdleCallback?await new Promise(A=>{setTimeout(A,0)}):await new Promise(A=>{requestIdleCallback(()=>{A()},{timeout:200})})},log(...A){const t=xB;try{"undefined"!=typeof localStorage&&"enabled"===localStorage[t(182)](Aa)&&console.log(...A)}catch{}}};function MB(){void 0===HB&&(HB=DB)}const TB=_B;(A=>{const t=_B,e=A();for(;;)try{if(942889==parseInt(t(415))/1+-parseInt(t(405))/2+-parseInt(t(377))/3*(-parseInt(t(404))/4)+parseInt(t(412))/5*(-parseInt(t(393))/6)+-parseInt(t(417))/7*(parseInt(t(388))/8)+-parseInt(t(402))/9+-parseInt(t(378))/10*(-parseInt(t(395))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(il);const kB={visibilityIntervalMs:500,resegmentDebounceMs:700,resegmentMaxDelayMs:1500,segmentOptions:{}},OB=new kc({now:()=>performance[TB(372)](),extract:(A,t)=>function(A,t){const e=gB;if(Xa(A))return;const r=Wa(A)?void 0:A.matches(dB)?A:[...A[e(359)](dB)][e(335)](A=>!Xa(A)&&!Wa(A)),n=r?oB(uB(r,sB[e(341)]),sB[e(341)]):"",s=[],o=A[e(386)](wB)?[A]:[...A[e(359)](wB)];for(const A of o){if(s.length>=sB[e(381)])break;if(Xa(A))continue;if(Wa(A)){s[e(356)]({label:Ya(A),role:yB(A)});continue}const t=fB(A);if(!t)continue;const r=A[e(348)](e(328))??void 0;s.push({label:t,role:yB(A),...r?{href:r}:{}})}const i=[];for(const t of A.querySelectorAll(e(324))){if(i.length>=sB[e(368)])break;if(Xa(t)||Wa(t))continue;const A=oB(t[e(348)](e(389)),sB[e(350)]),r=mB(t);(A||r)&&i[e(356)]({...A?{alt:A}:{},...r?{src:r}:{}})}return(A=>{const t=rB,e=oB(A[t(319)],sB[t(319)]),r=oB(A[t(328)],sB[t(328)]),n=[];for(const e of A[t(339)]??[]){if(n[t(329)]>=sB[t(339)])break;const A=oB(e[t(336)],sB.label);if(!A)continue;const r=cB(e[t(315)]);n.push({label:A,role:e[t(337)],...r?{href:r}:{}})}const s=[];for(const e of A[t(323)]??[]){if(s.length>=sB[t(323)])break;const A=oB(e[t(327)],sB.label),{src:r}=e;(A||r)&&s[t(325)]({...A?{alt:A}:{},...r?{src:r}:{}})}if(r||e||0!==n[t(329)]||0!==s[t(329)])return{ref:BB(A[t(318)],e,r,n,s),kind:A[t(318)],...e?{heading:e}:{},text:r,actions:n,images:s}})({kind:t,heading:n,text:uB(A),actions:s,images:i})}(A,t),scheduleIdle:()=>DB[TB(419)](),log:A=>{DB.log(A)}});let VB,RB,NB,GB,PB,XB,JB,WB=kB,YB=!1;function ZB(){XB?.(),XB=void 0}async function zB(A=2e3){const t=TB;JB&&await Promise[t(369)]([JB,new Promise(t=>{setTimeout(t,A)})])}function _B(A,t){return A-=369,il()[A]}function jB(){const A=TB,t=(()=>{const A=TB;return typeof Element[A(409)][A(407)]===A(416)})();OB[A(420)](e=>!t||e[A(407)]({opacityProperty:!0,visibilityProperty:!0,contentVisibilityAuto:!0}))}function qB(){const A=TB;jB(),OB[A(384)]().then(ZB)}function $B(A){const t=TB;for(const e of A){const{x:A,y:r,width:n,height:s}=e[t(411)];OB[t(386)](e[t(392)],{intersecting:e.isIntersecting,ratio:e[t(418)],rect:{x:Math[t(391)](A),y:Math[t(391)](r),w:Math[t(391)](n),h:Math.round(s)}})}qB()}function Al(){const A=TB;if(!VB)return;const t=((A,t={})=>function(A,t,e={}){const r=Rc,n={...Vc,...e},s=((A,t)=>{const e=new Map,r=A=>{const n=Rc,s=t.ownText(A),o={textLength:s[n(441)],headings:t[n(454)](A)?1:0,interactives:t[n(460)](A)?1:0,contentHash:t[n(438)](ha(ha(la,s),t[n(440)](A)),A)};for(const e of t[n(465)](A)){if(t.isSkipped(e))continue;const A=r(e);o[n(439)]+=A[n(439)],o.headings+=A[n(449)],o[n(459)]+=A[n(459)],o[n(452)]=da(o[n(452)],A[n(452)])}return e.set(A,o),o};return r(A),e})(A,t),o=[],i=A=>s[r(437)](A)??{textLength:0,headings:0,interactives:0,contentHash:la},a=(A,t)=>{const e=r,n=i(A);o[e(455)]({node:A,reason:t,textLength:n[e(439)],interactives:n[e(459)],headings:n.headings,contentHash:n[e(452)]})},c=A=>{const t=r,e=i(A);return e[t(459)]>0||e.textLength>=n.minTextLength},B=(A,e)=>{const s=r;if(o[s(441)]>=n.maxSegments||t[s(456)](A))return!1;if(t[s(445)](A))return a(A,s(470)),!0;const l=i(A);if(e>=n[s(473)])return!!c(A)&&(a(A,"depth"),!0);if(l[s(439)]<=n[s(469)]&&l.headings<=n[s(451)]&&l[s(459)]<=n[s(436)]&&c(A)){if(t[s(446)](A))return a(A,s(448)),!0;if(((A,t)=>{const e=Rc,r=t[e(443)](A);if(void 0===r)return!1;const n=t.signature(A);let s=0;for(const A of t[e(465)](r))if(t[e(472)](A)===n&&(s++,s>=3))return!0;return!1})(A,t))return a(A,s(466)),!0;if(l[s(449)]>0)return a(A,s(444)),!0}const g=o[s(441)];let h=!1;for(const r of t.children(A))h=B(r,e+1)||h;return!h&&c(A)?(a(A,s(471)),!0):h&&l[s(439)]>0&&o[s(467)](g)[s(458)]((A,t)=>A+t.textLength,0)/l[s(439)]<n[s(435)]&&c(A)?(o[s(441)]=g,a(A,s(448)),!0):h};for(const e of t[r(465)](A))B(e,0);return o}(A,eB,t))(document[A(376)],WB.segmentOptions),{added:e,removed:r}=OB[A(375)](t.map(({node:A,reason:t,contentHash:e})=>({node:A,kind:t,fingerprint:e})),t=>t[A(410)]);for(const t of e)VB[A(389)](t);for(const t of r)VB[A(387)](t)}function tl(){return void 0!==GB&&(clearTimeout(GB),GB=void 0),PB=void 0,DB.scheduleIdle().then(Al)}function el(){const A=TB,t=performance[A(372)]();PB??=t,t-PB>=WB[A(381)]?tl():(void 0!==GB&&clearTimeout(GB),GB=setTimeout(tl,WB[A(403)]))}function rl(){const A=TB;return YB&&void 0!==PB?tl():Promise[A(374)]()}function nl(A={}){const t=TB;YB||typeof IntersectionObserver===t(380)||(document[t(376)]?(YB=!0,MB(),WB={...kB,...A},JB=new Promise(A=>{XB=A}),VB=new IntersectionObserver($B,{threshold:[0,.25,.75]}),DB[t(419)]()[t(385)](Al),RB=new MutationObserver(el),RB[t(389)](document.body,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["href",t(423),t(383),t(398),t(382),"aria-label",t(371),t(396),t(373),t(422),"data-intent-redact-label","data-html2canvas-ignore",t(397),t(406),t(394)],characterData:!0}),window[t(399)](t(370),el,{passive:!0}),NB=setInterval(qB,WB[t(414)])):document[t(399)](t(421),()=>{nl(A)},{once:!0}))}function sl(){return OB[TB(413)]()}const ol=()=>OB[TB(379)]();function il(){const A=["undefined","resegmentMaxDelayMs","alt","srcset","registerVisible","then","setGeometry","unobserve","8bDyGvT","observe","parentElement","round","target","2347674JITCzA","contenteditable","11rFdPSI","title","type","sizes","addEventListener","clear","size","15163263XNAuHc","resegmentDebounceMs","4hlXmjk","2072064lirjaM","autocomplete","checkVisibility","get","prototype","isConnected","boundingClientRect","20zJJMNK","getOnScreen","visibilityIntervalMs","921611iXabMs","function","3500763cfEaIJ","intersectionRatio","scheduleIdle","refreshVisibility","DOMContentLoaded","data-intent-redact","src","disconnect","race","resize","aria-labelledby","now","role","resolve","reconcile","body","2973783xOlzKn","38160810YiqOSO","drainRegistrations"];return(il=()=>A)()}function al(){return OB.getCoverage()}const cl=ll;function Bl(){const A=["stop","batchSize","context","[Transport] dropped an in-flight batch discarded mid-request","[Transport] replay failed","[Transport] took custody of a batch still in flight at teardown","355aEAzOE","replay","dropped","72KxLGct","[Transport] buffer full after retry, dropped ","click","[Transport] ","cancelTimer","charCodeAt","endpoint","2124212IwCasF","start","options","log","splice","getStats","failed","1600760ohnxeA","generation","[Transport] dropped props that cannot be serialised: ","event","flushOn","send","672056umNPez","restore"," events dropped, batch could not be serialised","delete","set","sent","flush"," events failed to send","[Transport] buffer full, dropped ","extras","stringify","push","2276655txGcjm","261236sQnitd","onTeardownBatch","792201lLGLDP","release","5694AHvnHx","inFlight","buffer","length"," events undelivered (","persistInFlight","entries","freeze","stats"," oldest events","maxBuffered","form-submit"];return(Bl=()=>A)()}function ll(A,t){return A-=157,Bl()[A]}(A=>{const t=ll,e=A();for(;;)try{if(608650==parseInt(t(186))/1+-parseInt(t(158))/2+-parseInt(t(183))/3+parseInt(t(184))/4+parseInt(t(206))/5*(parseInt(t(188))/6)+-parseInt(t(171))/7+parseInt(t(165))/8*(parseInt(t(209))/9))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Bl);const gl={batchSize:20,flushIntervalMs:5e3,maxBuffered:200},hl=Object[cl(195)](new Set([cl(211),"input-submit",cl(199)]));function dl(A){const t=cl;let e=0;for(let r=0;r<A.length;r++){const n=A[t(214)](r);n<128?e+=1:n<2048?e+=2:n>=55296&&n<=56319?(e+=4,r++):e+=3}return e}class wl{[cl(160)];[cl(169)];[cl(190)]=[];[cl(180)]={};[cl(213)];generation=0;inFlight=new Map;[cl(196)]={sent:0,failed:0,dropped:0};constructor(A){const t=cl;this.options=A,this[t(169)]=A.flushOn??hl}[cl(163)](){const A=cl;return{...this[A(196)],buffered:this[A(190)][A(191)]}}[cl(159)](){const A=cl;this[A(213)]??=this[A(160)].schedule(()=>{this.flush()},this[A(160)].flushIntervalMs)}[cl(200)](){const A=cl;this[A(213)]?.(),this[A(213)]=void 0,this[A(190)]=[],this[A(180)]={},this[A(166)]++}discard(){const A=cl;this.buffer=[],this[A(180)]={},this[A(166)]++}enqueue(A){const t=cl;if(this[t(190)][t(182)](A),this[t(190)][t(191)]>this[t(160)][t(198)]){const A=this[t(190)][t(191)]-this[t(160)][t(198)];this[t(190)][t(162)](0,A),this.stats[t(208)]+=A,bB()[t(161)](t(179)+A+t(197))}(this[t(190)].length>=this[t(160)][t(201)]||this[t(169)].has(A[t(168)]))&&this[t(177)]()}attach(A,t){const e=cl;0!==t[e(191)]&&(this[e(180)][A]=[...this[e(180)][A]??[],...t])}async flush({beacon:A=!1}={}){const t=cl;if(A&&this[t(193)](),0===this[t(190)][t(191)]&&0===Object.keys(this[t(180)])[t(191)])return;const e=bB(),r=this[t(190)],n=this[t(180)],s=this[t(166)];let o;try{o=JSON[t(181)]({...this.options[t(202)](),sentAt:e.wallClock(),events:r,...n})}catch(A){return this.buffer=[],this[t(180)]={},this.stats[t(164)]+=r[t(191)],void e[t(161)](t(212)+r[t(191)]+t(173),A)}this[t(190)]=[],this[t(180)]={};const i=dl(o);this[t(189)][t(175)](o,{generation:s,...A?{release:this[t(160)][t(185)]?.(o)}:{}});let a=!1;try{a=await e.send(this[t(160)][t(157)](),o,{beacon:A,byteLength:i})}catch(A){e[t(161)](t(212)+r[t(191)]+t(178),A)}const c=this.inFlight.get(o)?.[t(187)];return this[t(189)][t(174)](o),a?(this[t(196)][t(176)]+=r.length,void c?.()):(this[t(196)][t(164)]+=r[t(191)],e[t(161)](t(212)+r[t(191)]+t(192)+i+" bytes, beacon="+A+")"),s!==this.generation?(e[t(161)](t(203)),void c?.()):void(A||this.restore(r,n)))}[cl(193)](){const A=cl;if(this[A(160)].onTeardownBatch)for(const[t,e]of this[A(189)])e.release||e[A(166)]!==this.generation||(e[A(187)]=this.options[A(185)](t),bB()[A(161)](A(205)))}[cl(172)](A,t){const e=cl;for(const[A,r]of Object[e(194)](t))this.extras[A]=[...r,...this[e(180)][A]??[]];this[e(190)]=[...A,...this.buffer];const r=this[e(190)][e(191)]-this.options[e(198)];r>0&&(this[e(190)].splice(0,r),this.stats.dropped+=r,bB()[e(161)](e(210)+r+" oldest events"))}async[cl(207)](A){const t=cl,e=bB();try{return await e[t(170)](this[t(160)][t(157)](),A,{beacon:!1,byteLength:dl(A)})}catch(A){return e[t(161)](t(204),A),!1}}}(A=>{const t=xl,e=A();for(;;)try{if(376398==parseInt(t(195))/1+-parseInt(t(178))/2*(-parseInt(t(182))/3)+parseInt(t(173))/4*(parseInt(t(194))/5)+-parseInt(t(176))/6*(parseInt(t(174))/7)+parseInt(t(188))/8*(-parseInt(t(189))/9)+parseInt(t(177))/10+-parseInt(t(183))/11*(parseInt(t(192))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(El);const ul={...gl,compress:!1};function Ql(){const A=xl;return(DB.storage.get(sa)??aa)+A(193)}function Cl(){const A=xl;return{clientId:DB[A(185)][A(175)](ra),sid:ic(),platform:"web"}}function pl(A,t){const e=setInterval(A,t);return()=>{clearInterval(e)}}let Ul,fl=!1;function Fl(){return MB(),Ul??=new wl({...gl,endpoint:Ql,context:Cl,schedule:pl}),Ul}async function ml(A={}){const t=xl;return Fl()[t(186)](A)}function yl(A){const t=xl;Fl()[t(190)](A)}function Il(A,t){const e=xl;Fl()[e(179)](A,t)}function Hl(){const A=xl;document[A(187)]===A(184)&&ml({beacon:!0})}function El(){const A=["addEventListener","111GXsTKO","1067yKyEvS","hidden","storage","flush","visibilityState","51208yirUID","891HDAAEJ","enqueue","stop","158064jYiWDM","/v2/events","95jxdoJr","463207wODnah","start","removeEventListener","visibilitychange","155224nRXFXV","14GMsHmi","get","294990pfOSOJ","4996470sWWWJj","37078cMsKPy","attach","pagehide"];return(El=()=>A)()}function bl(){ml({beacon:!0})}function xl(A,t){return A-=170,El()[A]}const vl=_l;(A=>{const t=_l,e=A();for(;;)try{if(913147==-parseInt(t(509))/1+-parseInt(t(586))/2+-parseInt(t(487))/3+-parseInt(t(567))/4+-parseInt(t(547))/5+parseInt(t(515))/6*(parseInt(t(594))/7)+parseInt(t(606))/8*(parseInt(t(516))/9))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Dl);let Kl,Ll=0,Sl=0;function Dl(){const A=["submit","fixed","textContent","scrollY","referrer","settled","segments","left","resize","[Transmit] ","page-blur","localhost","dataset","focus","number"," — nothing new on screen","top","925946VYwTus","location","granted","/events","key",'input[type="submit"]',"6nzvwVC","6919713wrWomZ","getComputedStyle","newline","events endpoint returned ","contenteditable"," — ","label","innerHeight","forEach","innerHTML",'[role="button"]'," bytes) failed on /events, trying /p.gif","size","image/jpeg","complete","closest","has","hasFocus","/p.gif","getAttribute","POST","<no visible label>","page-focus","[Timing] serialize: ","bbox","[Timing] jpeg-encoding: ",'[role="link"]',"outerHTML",'input[type="button"]',"absolute","pageview","4094595pyxYSJ","digest","TEXTAREA"," newly on screen","visibilitychange","isSecureContext","getBoundingClientRect","click","querySelector","name","ref","from","documentElement","aria-label","now","input, textarea, select, [data-intent-redact]","hidden","filter","setAttribute","pixel body fallback failed with ","3268956MCgDfD","addEventListener","status","[Digest] ","tagName","docH","getItem","img","blur","[Timing] capture-total: ","bottom","INPUT","toFixed","right","intent","[Transmit] DROPPED ","CONTENTEDITABLE","round","scroll","1568822KjZtVm","target","load","join","entries","pointerdown","event","html","6798911CgYNhp","scrollX","popstate","[Digest] settled after ","value","keydown","[Timing] html2canvas-pro: ","intentEnter","href","input-submit","context","role","40BvtQVU","omit","screenshot","title","height","no-store","length","toISOString","stringify","body","apply","trim","1667688lInUcF"," segments on screen","replaceState","innerWidth","x-sl-access-token"];return(Dl=()=>A)()}function Ml(A){const t=_l;try{return new Blob([A])[t(528)]}catch{return A[t(612)]}}let Tl,kl=!1;const Ol="__intent__sdk__initialized__",Vl=["button","a[href]","a",vl(514),vl(544),vl(526),vl(542),"[onclick]"][vl(589)](",");function Rl(){const A=vl;return localStorage[A(573)](qi)===A(511)}function Nl(){return hc(),Rl()&&Boolean(ic())&&(()=>{const A=vl;return Boolean(localStorage[A(573)](ra)?.[A(486)]().length)})()}function Gl(){return!Nl()||uc}async function Pl(A){for(;Tl;)await Tl;return Tl=(async()=>{const o=_l;try{const i=performance[o(561)](),a=performance[o(561)](),c=(A=>{const t=vl;if(Na(A))return"";const e=A.cloneNode(!1);return Array[t(558)](A.attributes)[t(524)](({name:A,value:r})=>{e[t(565)](A,r)}),ma(A)?ma(e)&&(e[t(598)]=A[t(598)]):ya(A)?e[t(525)]=A[t(525)]:e[t(494)]=A[t(494)],ec(e),ma(e)&&e[t(565)](t(598),e.value),e[t(543)]})(A),B=performance[o(561)]()-a;Ua(o(539)+B[o(579)](2)+"ms");const l=A[o(553)](),g=performance[o(561)](),h={left:window[o(595)],top:window[o(495)],right:window.scrollX+window[o(490)],bottom:window[o(495)]+window[o(523)]},d=await((A,o={})=>(async(A,t,o)=>{if((A=>{["scale","width","height","imageTimeout","x","y","windowWidth","windowHeight","scrollX","scrollY"].forEach(t=>{const e=A[t];if(null!=e&&"number"!=typeof e){const r=Number(e);Number.isNaN(r)||(A[t]=r)}})})(t),!t.skipValidation){const r=t.validator||((A={})=>new e({allowDataUrls:!0,maxImageTimeout:3e5,...A}))(),n=r.validateElement(A);if(!n.valid)throw new Error(n.error);const s=r.validateOptions(t);if(!s.valid)throw new Error(`Invalid options: ${s.error}`)}if(!A||"object"!=typeof A)throw new Error("Invalid element provided as first argument");const i=A.ownerDocument;if(!i)throw new Error("Element is not attached to a Document");const a=i.defaultView;if(!a)throw new Error("Document is not attached to a Window");const c=((A,t,e)=>({logging:A.logging??!0,cache:A.cache??t.cache,...e}))(t,o,(A=>({allowTaint:A.allowTaint??!1,imageTimeout:A.imageTimeout??15e3,proxy:A.proxy,useCORS:A.useCORS??!1,customIsSameOrigin:A.customIsSameOrigin,maxCacheSize:A.maxCacheSize}))(t)),B=((A,t)=>({windowWidth:A.windowWidth??t.innerWidth??800,windowHeight:A.windowHeight??t.innerHeight??600,scrollX:A.scrollX??t.pageXOffset??0,scrollY:A.scrollY??t.pageYOffset??0}))(t,a),l=new n(B.scrollX,B.scrollY,B.windowWidth,B.windowHeight),g=new Ji(c,l,o),h=t.enablePerformanceMonitoring??t.logging??!1,d=new r(g,h);d.start("total",{width:B.windowWidth,height:B.windowHeight});const w=t.signal;Wi(w);const u=t.foreignObjectRendering??!1,Q=((A,t,e)=>({allowTaint:A.allowTaint??!1,onclone:A.onclone,ignoreElements:A.ignoreElements,iframeContainer:A.iframeContainer,inlineImages:e,copyStyles:e,cspNonce:A.cspNonce??t.cspNonce}))(t,o,u);g.logger.debug(`Starting document clone with size ${l.width}x${l.height} scrolled to ${-l.left},${-l.top}`),d.start("clone");const C=new Fs(g,A,Q),p=C.clonedReferenceElement;if(!p)throw new Error("Unable to find element in cloned iframe");const U=await C.toIFrame(i,l);d.end("clone"),w?.aborted&&((t.removeContainer??1)&&Fs.destroy(U),Wi(w));const{width:f,height:F,left:m,top:y}=se(p)||"HTML"===p.tagName?(A=>{const t=A.body,e=A.documentElement;if(!t||!e)throw new Error("Unable to get document size");return new n(0,0,Math.max(Math.max(t.scrollWidth,e.scrollWidth),Math.max(t.offsetWidth,e.offsetWidth),Math.max(t.clientWidth,e.clientWidth)),Math.max(Math.max(t.scrollHeight,e.scrollHeight),Math.max(t.offsetHeight,e.offsetHeight),Math.max(t.clientHeight,e.clientHeight)))})(p.ownerDocument):s(g,p),I=((A,t,e)=>{const r=t.ownerDocument,n=r.documentElement?qt(A,getComputedStyle(r.documentElement).backgroundColor):$t.TRANSPARENT,s=r.body?qt(A,getComputedStyle(r.body).backgroundColor):$t.TRANSPARENT,o="string"==typeof e?qt(A,e):null===e?$t.TRANSPARENT:4294967295;return t===r.documentElement?Ft(n)?Ft(s)?o:s:n:o})(g,p,t.backgroundColor),H=((A,t,e,r,n,s,o)=>({canvas:A.canvas,backgroundColor:t,signal:A.signal,scale:A.scale??o??1,x:(A.x??0)+e,y:(A.y??0)+r,width:A.width??Math.ceil(n),height:A.height??Math.ceil(s),imageSmoothing:A.imageSmoothing,imageSmoothingQuality:A.imageSmoothingQuality}))(t,I,m,y,f,F,a.devicePixelRatio??1);let E,b;try{return u?(g.logger.debug("Document cloned, using foreign object rendering"),d.start("render-foreignobject"),E=await new Si(g,H).render(p),d.end("render-foreignobject")):(g.logger.debug(`Document cloned, element located at ${m},${y} with size ${f}x${F} using computed rendering`),g.logger.debug("Starting DOM parsing"),d.start("parse"),Wi(w),g.cache.startDefer(),b=Ko(g,p),d.end("parse"),d.start("preload"),await g.cache.preloadAll(),d.end("preload"),I===b.styles.backgroundColor&&(b.styles.backgroundColor=$t.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${H.x},${H.y} with size ${H.width}x${H.height}`),d.start("render"),Wi(w),E=await new vi(g,H).render(b),d.end("render")),d.start("cleanup"),(t.removeContainer??1)&&(Fs.destroy(U)||g.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),d.end("cleanup"),d.end("total"),g.logger.debug("Finished rendering"),h&&d.logSummary(),E}finally{b&&b.restoreTree()}})(A,o,t.fromElement(A,{cspNonce:o.cspNonce,cache:o.cache})))(document.body,{useCORS:!0,x:window[o(595)],y:window[o(495)],width:window[o(490)],height:window[o(523)],scale:.6,logging:!1,onclone(A){ec(A)},ignoreElements(A){const t=o;if(!(A instanceof Element))return!1;if(Xa(A))return!0;const e=A[t(553)](),r={left:e[t(499)]+window.scrollX,top:e[t(508)]+window[t(495)],right:e[t(580)]+window[t(595)],bottom:e[t(577)]+window[t(495)]},n=100,s=r.bottom<h[t(508)]-n,i=r[t(508)]>h[t(577)]+n,a=r[t(580)]<h.left-n,c=r.left>h[t(580)]+n;if(!(a||c||s||i))return!1;const{position:B}=window[t(517)](A);let l;if(B===t(493)||B===t(545)){const A=500;l=r[t(580)]<h[t(499)]-A||r[t(499)]>h.right+A||r[t(577)]<h[t(508)]-A||r[t(508)]>h[t(577)]+A}else l=i;return!!l&&!("INPUT"===A[t(571)]||A[t(571)]===t(549)||"SELECT"===A[t(571)]||A.hasAttribute("data-intent-redact")||A[t(555)](t(562)))}}),w=performance.now()-g;Ua(o(600)+w.toFixed(2)+"ms");const u=performance[o(561)](),Q=d.toDataURL(o(529),.8),C=performance[o(561)]()-u;Ua(o(541)+C[o(579)](2)+"ms");const p=performance[o(561)]()-i;return Ua(o(576)+p[o(579)](2)+"ms"),{html:c,bbox:{x:l.x,y:l.y,w:l.width,h:l[o(610)]},img:Q,fullCanvas:d}}finally{Tl=void 0}})(),Tl}function Xl(){const A=vl,t=localStorage[A(573)](ra),e={"Content-Type":"application/json"};t&&(e[A(491)]=t);const r=ic();return r&&(e["x-intent-sid"]=r),e}function Jl(){const A=vl;return localStorage[A(573)](ia)!==A(608)}const Wl={w:0,h:0,scrollY:0,docH:0};function Yl(){const A=vl;Wl.w=window[A(490)],Wl.h=window[A(523)],Wl[A(495)]=Math[A(584)](window[A(495)]),Wl[A(572)]=document.documentElement.scrollHeight}function Zl(){return{...Wl}}function zl(A,t,e){const r=vl;if(!Nl())return;const n=sl(),s=e instanceof HTMLFormElement?function(A){const t=gB;if(Xa(A))return;const e=[];for(const r of Array[t(392)](A[t(342)])){if(!ya(r)||r.disabled)continue;const A="TEXTAREA"===r.tagName||r.tagName===t(365)?r.tagName[t(376)]():(r[t(348)](t(385))??t(327))[t(376)]();QB[t(332)](A)||Xa(r)||e.push({name:r[t(348)]("name")??r.id,label:pB(r),type:A,value:UB(r,A)})}return((A,t)=>{const e=rB,r=[];let n=!1;for(const A of t){if(r[e(329)]>=sB[e(316)]){n=!0;break}const t=oB(A.name,sB[e(336)]),s=oB(A[e(336)],sB[e(336)]),o=t||s;o&&r.push({name:o,...s&&s!==o?{label:s}:{},...A[e(335)]?{type:A.type}:{},value:oB(A[e(313)],sB[e(340)])})}if(0===r.length)return;const s=oB(A,sB[e(336)]);return{...s?{name:s}:{},fields:r,...n?{truncated:!0}:{}}})(A.getAttribute(t(329))??A.getAttribute(t(353))??(A.id||void 0)??void 0,e)}(e):void 0;let o;if(e!==document[r(484)]&&e!==document[r(559)]&&!Xa(e)){const A=(A=>{const t=TB;let e=A;for(;e;){const A=OB[t(408)](e);if(A)return A;e=e[t(390)]??void 0}})(e);o={tag:e[r(571)],label:e instanceof HTMLFormElement?s?.[r(556)]??"":fB(e),role:e[r(535)](r(605))??void 0,ref:A?.[r(548)]?.ref},ya(e)&&(o[r(598)]=Za(e)?Ya(e):Ha(e))}Ua(r(570)+A+r(521)+n[r(612)]+r(488)),Il(r(498),ol()),rl(),yl({ts:Date[r(561)](),event:A,url:window[r(510)][r(602)],props:{...t,localTime:(new Date)[r(613)]()},...o?{chosen:o}:{},...s?{form:s}:{},onScreen:n,viewport:Zl(),coverage:al()}),hl[r(532)](A)&&((A,t,e)=>{void 0!==$l&&clearTimeout($l);const r=new Set(e.map(A=>A.ref)),n=WB[TB(381)]+jl,s=e=>{$l=void 0,(async()=>{const n=_l;if(!Nl())return;await(async()=>{const A=TB;YB&&(await rl(),jB(),await OB[A(384)]())})();const o=sl()[n(564)](A=>!r[n(532)](A[n(557)]));if(0===o.length)return 0===e?void($l=setTimeout(()=>s(1),ql)):void Ua("[Digest] settled after "+A+n(507));Ua(n(597)+A+n(521)+o[n(612)]+n(550)),Il(n(498),ol()),yl({ts:Date[n(561)](),event:n(497),url:window[n(510)][n(602)],props:{after:A,label:t,localTime:(new Date)[n(613)]()},onScreen:o,viewport:Zl(),coverage:al()})})()};$l=setTimeout(()=>s(0),n)})(A,o?.[r(522)],n)}function _l(A,t){return A-=484,Dl()[A]}const jl=400,ql=900;let $l;function Ag(A,t,e,r){Jl()?zl(A,t,e):tg(A,t,e,r)}async function tg(A,t,e,r){const n=vl;if(!Nl())return;const s={...t,localTime:(new Date)[n(613)]()};ya(e)&&!Xa(e)&&(s.value=Za(e)?Ya(e):Ha(e));let o="",i={x:0,y:0,w:0,h:0},a="";const c=!("scroll"===A||A===n(502)||A===n(538)),B=Date.now(),l=B-Ll>=300;let g=r;const h=A===n(554)||A===n(603)||A===n(546);c&&(h&&!g||!g&&l)&&(g=await Pl(e),Ll=B),g&&(o=g[n(593)],i=g[n(540)],a=g[n(574)]);const d=A===n(502)||A===n(538)||A===n(546),w={ts:Date[n(561)](),event:A,url:window.location[n(602)],props:s,html:d?"":o,bbox:i,img:a};await async function(A){const t=vl,e=(localStorage[t(573)](sa)??aa)+t(512),r=localStorage[t(573)](ra)??void 0,n=JSON[t(614)]({...A,clientId:r}),s=Ml(n);let o;try{const A=await fetch(e,{method:t(536),headers:Xl(),body:n,keepalive:s<=6e4,credentials:"omit"});if(A.ok)return;o=new Error(t(519)+A[t(569)])}catch(A){o=A}Ua(t(501)+A[t(592)]+" ("+s+t(527),o);try{await(async A=>{const t=vl,e=(localStorage.getItem(sa)??aa)+t(534),r=JSON[t(614)](A),n=await fetch(e,{method:t(536),headers:Xl(),body:r,keepalive:Ml(r)<=6e4,credentials:t(607),cache:t(611)});if(!n.ok)throw new Error(t(566)+n[t(569)])})(A)}catch(e){Sl++,Ua(t(582)+A[t(592)]+" ("+s+" bytes), "+Sl+" total",e)}}(w)}hc();let eg=!1;function rg(){eg&&Jl()&&Rl()&&(function(A={}){const t=xl;if(fl)return;fl=!0,MB();const{compress:e,...r}={...ul,...A};LB=e,Ul=new wl({...r,endpoint:Ql,context:Cl,schedule:pl}),Ul[t(170)](),window[t(181)](t(180),bl),document.addEventListener(t(172),Hl)}(),nl())}let ng=!1;function sg(){const A=vl;!ng&&Nl()&&(ng=!0,Ag(A(546),{url:window[A(510)].href,title:document[A(609)],ref:document.referrer},document[A(484)]))}function og(){void 0!==$l&&(clearTimeout($l),$l=void 0),ng=!1,hc(),(()=>{const A=TB;VB?.[A(424)](),RB?.[A(424)](),window.removeEventListener(A(370),el),void 0!==NB&&clearInterval(NB),void 0!==GB&&clearTimeout(GB),VB=void 0,RB=void 0,NB=void 0,GB=void 0,PB=void 0,OB[A(400)](),ZB(),JB=void 0,YB=!1})(),Ul?.discard()}function ig(){hc(),rg(),Jl()?zB().then(sg):sg()}async function ag(A={}){const t=vl;if(!Nl())return;const e=typeof A.lat===t(506)&&typeof A.lon===t(506);if(e&&wc)return;if(!e&&kl)return;const r=localStorage[t(573)](na),n={context:await zi()};r&&(n.ip=r);for(const[e,r]of Object[t(590)](A))n[e]=r;await tg(t(604),n,document[t(484)],{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),!e&&(kl=!0)}async function cg(){await(async(A,t)=>{const e=dc,r={canRequest:t(),geoEnabled:Uc(),deviceGeoSent:wc};if(!r.canRequest||!r[e(435)]||r[e(430)])return;if(!(e(443)in navigator))return;if(Cc)return;Cc=!0,uc=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};try{await(navigator[e(436)]?.[e(450)]({name:e(443)}))}catch(A){}await new Promise(A=>{const t=e;let r=!1;const s=async(t,e,n)=>{const s=dc;r||(r=!0,Number[s(434)](t)&&Number[s(434)](e)&&(await(async(A,t,e)=>{await ag({lat:A,lon:t,source:"device",...e})})(t,e,n),wc=!0),Cc=!1,uc=!1,pc=!0,A())};navigator[t(443)][t(433)](A=>{const t=dc,e=A.coords;s(e.latitude,e[t(418)],{accuracy:e.accuracy,altitude:typeof e[t(419)]===t(422)?e.altitude:void 0,altitudeAccuracy:"number"==typeof e[t(451)]?e[t(451)]:void 0,heading:typeof e.heading===t(422)?e.heading:void 0,speed:typeof e.speed===t(422)?e[t(453)]:void 0,timestamp:A.timestamp,visibility:document[t(421)],focused:document[t(429)]()})},A=>{const t=dc,e=A?.[t(444)],r={error:{code:e,name:t(1===e?446:2===e?438:3===e?447:441),message:A?.message??""},online:navigator.onLine,visibility:document[t(421)],focused:document.hasFocus(),secure:window.isSecureContext,proto:location[t(439)],host:location[t(442)]};s(void 0,void 0,r)},n)})})(0,Nl)}function Bg(){(A=>{const t=dc;if(Qc||!Uc()||wc)return;Qc=!0;const e=()=>{const t=dc;window.removeEventListener(t(449),e,!0),window[t(426)](t(448),e,!0),A()};window[t(445)](t(449),e,!0),window[t(445)](t(448),e,!0)})(cg)}let lg=!document[vl(563)]&&document[vl(533)](),gg=document[vl(533)]();function hg(){const A=vl;if(Gl())return;const t=!document[A(563)]&&document[A(533)]();t&&(gg=!0),gg||t?t!==lg&&(lg=t,Ag(t?"page-focus":A(502),{},document[A(484)])):lg=t}function dg(A){const t=vl;let e=!1;const r=()=>{e||(e=!0,A())};document.readyState!==t(530)?window[t(568)](t(588),r,{once:!0}):r()}function wg(){const A=vl;(()=>{const A=globalThis;return!A[Ol]&&(Object.defineProperty(A,Ol,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(Yl(),window[A(568)](A(500),pa(Yl,200),{passive:!0}),window[A(568)](A(585),pa(Yl,100),{passive:!0}),Jl()&&(function(){const A=vl,t=()=>""+window[A(510)].pathname+window[A(510)].search;let e=t();const r=()=>{const r=A;t()===e||Gl()||(e=t(),Yl(),ng=!0,Ag(r(546),{url:window.location.href,title:document[r(609)],ref:document[r(496)],spa:!0},document[r(484)]))};for(const t of["pushState",A(489)]){const e=history[t];history[t]=function(...t){const n=e[A(485)](this,t);return r(),n}}window.addEventListener(A(596),r)}(),eg=!0,rg()),dg(()=>{const t=A;Nl()&&(ag(),(window[t(552)]||location.hostname===t(503))&&(Uc()&&Bg(),window[t(568)](t(505),()=>{mc()&&cg()}),document[t(568)](t(551),()=>{!document.hidden&&mc()&&cg()})))}),window.addEventListener("storage",t=>{const e=A;t[e(513)]===qi&&("granted"===localStorage.getItem(qi)?(kl=!1,ig(),ag(),Uc()&&Bg()):(kl=!1,Fc(),og())),t[e(513)]===$i&&(Uc()?Bg():Fc())}),dg(()=>{Jl()?zB().then(sg):sg()}),addEventListener(A(591),pa(t=>{const e=A;if(Jl()||Gl())return;const r=t[e(587)]instanceof Element?t.target[e(531)](Vl):null;if(!(r instanceof HTMLElement))return;const n=Date[e(561)]();n-Ll<300?Kl=void 0:(Ll=n,Kl=Pl(r))},50),{capture:!0,passive:!0}),addEventListener(A(554),async t=>{const e=A;if(Gl())return;if(!(t[e(587)]instanceof Element))return;const r=t[e(587)].closest(Vl);if(!(r instanceof HTMLElement))return;const n=Xa(s=r)?"":Wa(s)?Ya(s):(A=>{const t=vl,e=A[t(535)](t(560))?.[t(486)]();if(e)return e;const r=A[t(609)][t(486)]();if(r)return r;const n=A[t(494)]?.[t(486)]();return n||t(537)})(s);var s;Jl()?Ag("click",{tag:r.tagName,label:n},r):(async()=>{const A=e,t=Kl?await Kl:void 0;Kl=void 0,Ag(A(554),{tag:r[A(571)],label:n},r,t)})()},!0),addEventListener(A(599),t=>{const e=A;if(!Gl()&&"Enter"===t.key){const A=t[e(587)];if(!(A instanceof HTMLElement))return;const r=A[e(571)],n=Xa(A);if(r===e(578)||r===e(549)){const t=A instanceof HTMLInputElement?A[e(556)]:void 0,s=A.id||void 0;Ag(e(603),{tag:r,name:n?void 0:t??s},A)}else if(ya(A)){const t=(A=>{const t=Qa;let e=A;for(;e&&e!==document[t(487)];){const A=e[t(477)](t(499));if("true"===A||""===A||"plaintext-only"===A)return e;e=e[t(484)]}return null})(A)??A;if(t[e(504)][e(601)]===e(518))return;const r=t.getAttribute("role")?.toLowerCase(),n=t.id||void 0,s=t[e(535)](e(556))||t[e(535)]("aria-label")||n;Ag("input-submit",{tag:e(583),role:r??e(520),name:Xa(t)?void 0:s},t)}}},{capture:!0}),addEventListener(A(492),t=>{const e=A;!Gl()&&Jl()&&t[e(587)]instanceof HTMLFormElement&&Ag("form-submit",{},t.target)},{capture:!0}),[A(505),A(575)].forEach(t=>{window[A(568)](t,hg)}),document[A(568)]("visibilitychange",hg),window[A(568)]("scroll",(()=>{let t;return(...e)=>{const r=Ca;void 0!==t&&window.clearTimeout(t),t=window[r(481)](()=>{t=void 0,(()=>{const t=A;Gl()||Ag(t(585),{scrollX:window[t(595)],scrollY:window.scrollY},document.body)})(...e)},250)}})(),{passive:!0}),window[A(581)]??={send(A,t){Nl()&&Ag(A,t,document.body)}})}function ug(A,t){const e=Qg;try{if(void 0===t)return;localStorage.setItem(A,t?A===e(414)?e(442):"enabled":"disabled")}catch{}}function Qg(A,t){return A-=411,Cg()[A]}function Cg(){const A=["debugPanel","sidMaxAgeSeconds","98BcRrpl","195169bNngFj","consent","warn","setItem","98460KYYxKh","3950LQrhnc","5bPlicX","now","baseUrl","intent:geo","randomUUID","1038966rvNAJQ","13239UPGHyT","intent:debug","function","isFinite","granted","307068QqUgiy","intent_sid","undefined","intent:consent","3455840qazimf","random","intent:data-sid-max-age","It exposes internal SDK behavior and should only be used during development.","number","2005851ujcbyo","intent:data-base-url","intent:data-ip"];return(Cg=()=>A)()}(A=>{const t=Qg,e=A();for(;;)try{if(348211==parseInt(t(426))/1+-parseInt(t(437))/2+parseInt(t(420))/3+-parseInt(t(411))/4*(parseInt(t(432))/5)+parseInt(t(430))/6*(parseInt(t(425))/7)+parseInt(t(415))/8+parseInt(t(438))/9*(-parseInt(t(431))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Cg),A.clearIntentSessionId=()=>{lc()},A.ensureIntentSessionId=()=>{hc()},A.getIntentSessionId=()=>cc(Qg(412)),A.initIntent=(A={})=>{const t=Qg;localStorage[t(429)]("intent:data-client-id",A.clientId??""),localStorage[t(429)](t(422),A.ip??""),localStorage.setItem(t(421),A[t(434)]??"https://intent.callimacus.ai"),typeof A[t(424)]===t(419)&&localStorage[t(429)](t(417),String(A[t(424)])),ug("intent:consent",A[t(427)]),ug(t(435),A.geo),ug(t(439),A.debug),void 0!==A[t(423)]&&t(423),A[t(427)]&&(cc(t(412))||Bc("undefined"!=typeof crypto&&typeof crypto[t(436)]===t(440)?crypto.randomUUID():Date[t(433)]()+"-"+Math[t(416)](),A[t(424)])),wg()},A.setConsent=A=>{ug("intent:consent",A),A?ig():og()},A.setDebug=A=>{ug("intent:debug",A)},A.setDebugPanel=function(A){},A.setGeo=A=>{ug(Qg(435),A)},A.setIntentSessionMaxAge=A=>{const t=Qg;Number[t(441)](A)&&localStorage[t(429)]("intent:data-sid-max-age",String(A));const e=cc("intent_sid");e&&Bc(e,A)},Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});