@solomei-ai/intent 2.0.6 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/esm/index.debug.js +1 -1
- package/dist/esm/index.debug.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/native.js +4 -0
- package/dist/intent.debug.umd.min.js +2 -2
- package/dist/intent.debug.umd.min.js.map +1 -1
- package/dist/intent.umd.min.js +2 -2
- package/dist/types/native.d.ts +782 -0
- package/package.json +30 -2
package/dist/intent.umd.min.js
CHANGED
|
@@ -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),B=0;B<64;B++)a["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(B)]=B;for(var c="undefined"==typeof Uint8Array?[]:new Uint8Array(256),l=0;l<64;l++)c["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)),w=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}(),h="undefined"==typeof Uint8Array?[]:new Uint8Array(256),d=0;d<64;d++)h["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(d)]=d;var u,Q,C,U,F,p,f,m,y=10,H=13,E=15,I=17,b=18,x=19,K=20,L=21,v=22,D=24,S=25,M=26,T=27,k=28,O=30,V=32,G=33,R=34,N=35,P=37,X=38,J=39,W=40,Y=42,Z=[9001,65288],z="×",_="÷",$=(U=(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 B="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),l=Array.isArray(B)?B:new Uint8Array(B);for(t=0;t<i;t+=4)e=c[A.charCodeAt(t)],r=c[A.charCodeAt(t+1)],n=c[A.charCodeAt(t+2)],s=c[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 B})("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=="),F=Array.isArray(U)?(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})(U):new Uint32Array(U),p=Array.isArray(U)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(U):new Uint16Array(U),f=g(p,12,F[4]/2),m=2===F[5]?g(p,(24+F[4])/2):(u=F,Q=Math.ceil((24+F[4])/4),u.slice?u.slice(Q,C):new Uint32Array(Array.prototype.slice.call(u,Q,C))),new w(F[0],F[1],F[2],F[3],f,m)),q=[O,36],j=[1,2,3,5],AA=[y,8],tA=[T,M],eA=j.concat(AA),rA=[X,J,W,R,N],nA=[E,H],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],B=o>=0?t[o]:0,c=t[i];if(2===a&&3===c)return z;if(-1!==j.indexOf(a))return"!";if(-1!==j.indexOf(c))return z;if(-1!==AA.indexOf(c))return z;if(8===oA(s,t))return _;if(11===$.get(A[s]))return z;if((a===V||a===G)&&11===$.get(A[i]))return z;if(7===a||7===c)return z;if(9===a)return z;if(-1===[y,H,E].indexOf(a)&&9===c)return z;if(-1!==[I,b,x,D,k].indexOf(c))return z;if(oA(s,t)===v)return z;if(sA(23,v,s,t))return z;if(sA([I,b],L,s,t))return z;if(sA(12,12,s,t))return z;if(a===y)return _;if(23===a||23===c)return z;if(16===c||16===a)return _;if(-1!==[H,E,L].indexOf(c)||14===a)return z;if(36===B&&-1!==nA.indexOf(a))return z;if(a===k&&36===c)return z;if(c===K)return z;if(-1!==q.indexOf(c)&&a===S||-1!==q.indexOf(a)&&c===S)return z;if(a===T&&-1!==[P,V,G].indexOf(c)||-1!==[P,V,G].indexOf(a)&&c===M)return z;if(-1!==q.indexOf(a)&&-1!==tA.indexOf(c)||-1!==tA.indexOf(a)&&-1!==q.indexOf(c))return z;if(-1!==[T,M].indexOf(a)&&(c===S||-1!==[v,E].indexOf(c)&&t[i+1]===S)||-1!==[v,E].indexOf(a)&&c===S||a===S&&-1!==[S,k,D].indexOf(c))return z;if(-1!==[S,k,D,I,b].indexOf(c))for(var l=s;l>=0;){if((g=t[l])===S)return z;if(-1===[k,D].indexOf(g))break;l--}if(-1!==[T,M].indexOf(c))for(l=-1!==[I,b].indexOf(a)?o:s;l>=0;){var g;if((g=t[l])===S)return z;if(-1===[k,D].indexOf(g))break;l--}if(X===a&&-1!==[X,J,R,N].indexOf(c)||-1!==[J,R].indexOf(a)&&-1!==[J,W].indexOf(c)||-1!==[W,N].indexOf(a)&&c===W)return z;if(-1!==rA.indexOf(a)&&-1!==[K,M].indexOf(c)||-1!==rA.indexOf(c)&&a===T)return z;if(-1!==q.indexOf(a)&&-1!==q.indexOf(c))return z;if(a===D&&-1!==q.indexOf(c))return z;if(-1!==q.concat(S).indexOf(a)&&c===v&&-1===Z.indexOf(A[i])||-1!==q.concat(S).indexOf(c)&&a===b)return z;if(41===a&&41===c){for(var w=e[s],h=1;w>0&&41===t[--w];)h++;if(h%2!=0)return z}return a===V&&c===G?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 BA=A=>A>=48&&A<=57,cA=A=>BA(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,wA=A=>gA(A)||BA(A)||45===A,hA=A=>A>=0&&A<=8||11===A||A>=14&&A<=31||127===A,dA=(A,t)=>92===A&&10!==t,uA=(A,t,e)=>45===A?gA(t)||dA(t,e):!!gA(A)||!(92!==A||!dA(A,t)),QA=(A,t,e)=>43===A||45===A?!!BA(t)||46===t&&BA(e):BA(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(;BA(A[t]);)r.push(A[t++]);const n=r.length?parseInt(i(...r),10):0;46===A[t]&&t++;const s=[];for(;BA(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 B=1;43!==A[t]&&45!==A[t]||(45===A[t]&&(B=-1),t++);const c=[];for(;BA(A[t]);)c.push(A[t++]);const l=c.length?parseInt(i(...c),10):0;return e*(n+a*Math.pow(10,-o))*Math.pow(10,B*l)},UA={type:2},FA={type:3},pA={type:4},fA={type:13},mA={type:8},yA={type:21},HA={type:9},EA={type:10},IA={type:11},bA={type:12},xA={type:14},KA={type:23},LA={type:1},vA={type:25},DA={type:24},SA={type:26},MA={type:27},TA={type:28},kA={type:29},OA={type:31},VA={type:32};var GA=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(wA(A)||dA(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 UA;case 41:return FA;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 pA;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(),DA;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 SA;case 59:return MA;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),vA;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(dA(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 IA;case 125:return bA;case 117:case 85:{const t=this.peekCodePoint(0),e=this.peekCodePoint(1);return 43!==t||!cA(e)&&63!==e||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken()}case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),HA;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),yA;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),EA;break;case-1:return VA}return lA(A)?(this.consumeWhiteSpace(),OA):BA(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(;cA(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)&&cA(this.peekCodePoint(1))){this.consumeCodePoint(),t=this.consumeCodePoint();const A=[];for(;cA(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(),KA)}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(),KA);if(34===t||39===t||40===t||hA(t))return this.consumeBadUrlRemnants(),KA;if(92===t){if(!dA(t,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),KA;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;dA(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),LA;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()):dA(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());BA(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);let r=this.peekCodePoint(1);if(46===e&&BA(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;BA(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)&&BA(n)||BA(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;BA(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(cA(A)){let t=i(A);for(;cA(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(wA(t))A+=i(t);else{if(!dA(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=i(this.consumeEscapedCodePoint())}}}},RA=class A{constructor(A){this._tokens=A}static create(t){const e=new GA;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 NA=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,$A=/(\d+(?:\.\d+)?|[+\-*/()])/g,qA=A=>{const t=A.match($A);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},jA=(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=Bt(A,0);if(!t)return null;const e=Bt(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},Bt=(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},ct=A=>A.length>1?[A[0],A[1]]:[A[0]],lt={type:17,number:0,flags:4},gt={type:16,number:50,flags:4},wt={type:16,number:100,flags:4},ht=(A,t,e)=>{const[r,n]=A;return[dt(r,t),dt(void 0!==n?n:r,e)]},dt=(A,t)=>{if(it(A))return A._calcPercentage/100*t+A._calcPixelOffset;if(16===A.type)return A.number/100*t;if(NA(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")},Ut=A=>15===A.type&&("deg"===A.unit||A.unit===ut||"rad"===A.unit||A.unit===Qt),Ft=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 pt(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[lt,wt];case"to right":case"left":return pt(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[wt,wt];case"to bottom":case"top":return pt(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[wt,lt];case"to left":case"right":return pt(270)}return 0},pt=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,Ht=(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},Et=A=>"from"===(20===A[0].type?A[0].value:"unknown"),It=([A,t,e,r])=>{const n=rt([A,t,e]);return yt(jA(Math.round(255*n[0]),0,255),jA(Math.round(255*n[1]),0,255),jA(Math.round(255*n[2]),0,255),r)},bt=A=>{const t=tt([A[0],A[1],A[2]]);return It([t[0],t[1],t[2],A[3]])},xt=(A,t)=>{const[e,r,n,s]=t.filter(ZA);return[(17===e.type?pt(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)?dt(s,1):1]},Kt=(A,t)=>{if(Et(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)},Lt=A=>{const t=A.filter(ZA);return[ot(t[0])?t[0].number:0,ot(t[1])?t[1].number:0,PA(t[2])||NA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?dt(t[4],1):1]},vt=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])||NA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?dt(t[4],1):1]},Dt=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])||NA(t[2])?t[2].number:0,void 0!==t[4]&&ot(t[4])?dt(t[4],1):1]},St=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)),Gt=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]])},Rt=A=>A,Nt=A=>bt([A[0],A[1],A[2],A[3]]),Pt=1.09929682680944,Xt=.018053968510807,Jt=(A,t)=>{if(18===t.type){const e=$t[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=jt[t.value.toUpperCase()];if(void 0!==A)return A}return jt.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(Et(e))throw new Error("Relative color not supported for rgb()");if(3===e.length){const[A,t,r]=e.map(Ht);return yt(A,t,r,1)}if(4===e.length){const[A,t,r,n]=e.map(Ht);return yt(A,t,r,n)}return 5===e.length&&6===e[3].type&&"/"===e[3].value?yt(Ht(e[0],0),Ht(e[1],1),Ht(e[2],2),Ht(e[4],3)):0},Zt={srgb:A=>yt(jA(Math.round(255*A[0]),0,255),jA(Math.round(255*A[1]),0,255),jA(Math.round(255*A[2]),0,255),jA(A[3],0,1)),"srgb-linear":It,"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 It([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:Nt,"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":Nt,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(Ht),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(Ht),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,B]=et([o[0],o[1],o[2]]);return[i,a,B,s]},lab:(A,t)=>{const[e,r,n,s]=vt(t),[o,i,a]=Gt([e,r,n]);return[o,i,a,s]},lch:(A,t)=>{const[e,r,n,s]=Lt(t),[o,i,a]=Gt(Ot([e,r,n]));return[o,i,a,s]},oklab:(A,t)=>{const[e,r,n,s]=vt(t),[o,i,a]=Vt([e,r,n]);return[o,i,a,s]},oklch:(A,t)=>{const[e,r,n,s]=Dt(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[jA(Math.round(255*t),0,255),jA(Math.round(255*e),0,255),jA(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=St([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:Rt,"xyz-d50":A=>{const[t,e,r]=St([A[0],A[2],A[3]]);return[t,e,r,A[3]]},"xyz-d65":Rt,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]]}},$t={hsl:Kt,hsla:Kt,rgb:Yt,rgba:Yt,lch:(A,t)=>{if(Et(t.filter(ZA)))throw new Error("Relative color not supported for lch()");const[e,r,n,s]=Lt(t),o=rt(tt(Gt(Ot([e,r,n]))));return yt(jA(Math.round(255*o[0]),0,255),jA(Math.round(255*o[1]),0,255),jA(Math.round(255*o[2]),0,255),s)},oklch:(A,t)=>{if(Et(t.filter(ZA)))throw new Error("Relative color not supported for oklch()");const[e,r,n,s]=Dt(t),o=rt(tt(Vt(Ot([e,r,n]))));return yt(jA(Math.round(255*o[0]),0,255),jA(Math.round(255*o[1]),0,255),jA(Math.round(255*o[2]),0,255),s)},oklab:(A,t)=>{if(Et(t.filter(ZA)))throw new Error("Relative color not supported for oklab()");const[e,r,n,s]=vt(t),o=rt(tt(Vt([e,r,n])));return yt(jA(Math.round(255*o[0]),0,255),jA(Math.round(255*o[1]),0,255),jA(Math.round(255*o[2]),0,255),s)},lab:(A,t)=>{if(Et(t.filter(ZA)))throw new Error("Relative color not supported for lab()");const[e,r,n,s]=vt(t),o=rt(tt(Gt([e,r,n])));return yt(jA(Math.round(255*o[0]),0,255),jA(Math.round(255*o[1]),0,255),jA(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(Et(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===jt[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 B=i(o(A,s)),c=t(B,e[3]),l=t(B,e[4]),g=t(B,e[5]),w=e.length>6&&6===e[6].type&&"/"===e[6].value&&PA(e[7])?e[7].number:1;if(null===c||null===l||null===g)throw new Error("Invalid relative color in color() function");return a([c,l,g,w])}{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,RA.create(t).parseComponentValue()),jt={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,Be=A=>"IFRAME"===A.tagName,ce=A=>"STYLE"===A.tagName,le=A=>"TEXTAREA"===A.tagName,ge=A=>"SELECT"===A.tagName,we=A=>"SLOT"===A.tagName,he=A=>!ee(A)&&A.tagName.indexOf("-")>0,de=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 Ue={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"]},Fe={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:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},pe={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?ve(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},He=(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)},Ee=(A,t,e=". ")=>{const r=t.length;return ye(Math.abs(A),r,!1,A=>t[Math.floor(A%r)])+e},Ie=(A,t,e,r,n,s)=>{if(A<-9999||A>9999)return ve(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="拾佰仟萬",Ke="マイナス",Le="마이너스",ve=(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=He(A,48,57,!0,r);return t.length<4?`0${t}`:t;case 4:return Ee(A,"〇一二三四五六七八九",n);case 6:return me(A,1,3999,Ue,3,r).toLowerCase();case 7:return me(A,1,3999,Ue,3,r);case 8:return He(A,945,969,!1,r);case 9:return He(A,97,122,!1,r);case 10:return He(A,65,90,!1,r);case 11:return He(A,1632,1641,!0,r);case 12:case 49:return me(A,1,9999,Fe,3,r);case 35:return me(A,1,9999,Fe,3,r).toLowerCase();case 13:return He(A,2534,2543,!0,r);case 14:case 30:return He(A,6112,6121,!0,r);case 15:return Ee(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return Ee(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return Ie(A,"零一二三四五六七八九",be,"負",n,14);case 47:return Ie(A,"零壹貳參肆伍陸柒捌玖",xe,"負",n,15);case 42:return Ie(A,"零一二三四五六七八九",be,"负",n,14);case 41:return Ie(A,"零壹贰叁肆伍陆柒捌玖",xe,"负",n,15);case 26:return Ie(A,"〇一二三四五六七八九","十百千万",Ke,n,0);case 25:return Ie(A,"零壱弐参四伍六七八九","拾百千万",Ke,n,7);case 31:return Ie(A,"영일이삼사오육칠팔구","십백천만",Le,s,7);case 33:return Ie(A,"零一二三四五六七八九","十百千萬",Le,s,0);case 32:return Ie(A,"零壹貳參四五六七八九","拾百千",Le,s,7);case 18:return He(A,2406,2415,!0,r);case 20:return me(A,1,19999,fe,3,r);case 21:return He(A,2790,2799,!0,r);case 22:return He(A,2662,2671,!0,r);case 52:return me(A,1,10999,pe,3,r);case 23:return Ee(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return Ee(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return He(A,3302,3311,!0,r);case 28:return Ee(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return Ee(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return He(A,3792,3801,!0,r);case 37:return He(A,6160,6169,!0,r);case 38:return He(A,4160,4169,!0,r);case 39:return He(A,2918,2927,!0,r);case 40:return He(A,1776,1785,!0,r);case 43:return He(A,3046,3055,!0,r);case 44:return He(A,3174,3183,!0,r);case 45:return He(A,3664,3673,!0,r);case 46:return He(A,3872,3881,!0,r);default:return He(A,48,57,!0,r)}},De={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})},Se={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=wt);const n=[];let s=0;for(let e=0;e<A.length;e++){const r=A[e].stop;if(null!==r){const A=dt(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=dt(A[0],t)-r,o=n-dt(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,B=Math.cos(r-Math.PI/2)*i;return[n,s-B,s+B,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,Ge=(A,t)=>{let e=pt(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=Ft(t));if(Ut(A))return void(e=Ct(0,A))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Re=(A,t)=>{let e=pt(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=Ft(t));if(Ut(A))return void(e=(Ct(0,A)+pt(270))%pt(360))}const s=Me(A,t);r.push(s)}),{angle:e,stops:r,type:1}},Ne="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(wt),!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 Ne: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}},$e=(A,t)=>({...Ge(A,t),type:3}),qe=A=>1===A.type,je=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":Ge,"-moz-linear-gradient":Re,"-ms-linear-gradient":Re,"-o-linear-gradient":Re,"-webkit-linear-gradient":Re,"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(wt),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 Ne: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=pt(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:wt,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+pt(180))%pt(360),stops:r,type:n}:{size:3,shape:0,stops:r,position:[],type:n}},"repeating-linear-gradient":$e,"-webkit-repeating-linear-gradient":$e,"-moz-repeating-linear-gradient":$e,"-ms-repeating-linear-gradient":$e,"-o-repeating-linear-gradient":$e},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(ct)},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}},Br={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:(A,t)=>zA(t).map(A=>A.map(A=>cr(A)?A:at(A)).filter(A=>null!==A))},cr=A=>XA(A)||ot(A),lr=A=>({name:`border-${A}-color`,initialValue:"transparent",prefix:!1,type:3,format:"color"}),gr=lr("top"),wr=lr("right"),hr=lr("bottom"),dr=lr("left"),ur=A=>({name:`border-${A}-radius`,initialValue:"0 0",prefix:!1,type:1,parse:(A,t)=>ct(t.filter(ot))}),Qr=ur("top-left"),Cr=ur("top-right"),Ur=ur("bottom-right"),Fr=ur("bottom-left"),pr=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=pr("top"),mr=pr("right"),yr=pr("bottom"),Hr=pr("left"),Er=A=>({name:`border-${A}-width`,initialValue:"0",type:0,prefix:!1,parse:(A,t)=>NA(t)?t.number:0}),Ir=Er("top"),br=Er("right"),xr=Er("bottom"),Kr=Er("left"),Lr={type:0},vr=A=>{const[t]=A;return t?XA(t)?"farthest-side"===t.value?"farthest-side":"closest-side":ot(t)?t:"closest-side":"closest-side"},Dr=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=wt;break;case"top":e=lt;break;case"bottom":e=wt;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}},Sr={name:"clip-path",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>{if(XA(t)&&"none"===t.value)return Lr;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:vr(r),...Dr(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:vr(r.slice(0,1)),ry:vr(r.slice(1,2)),...Dr(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}:Lr})(t.values)}return Lr}},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}},Gr={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},Rr={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:(A,t)=>"strict"===t?"strict":"normal"},Nr={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)?dt(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"),$r={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"},jr=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=jr("top"),tn=jr("right"),en=jr("bottom"),rn=jr("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:jt.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}},Bn={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=cn[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}},cn={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],wn={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]]}},hn={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},dn={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,Un=A=>3===A||4===A,Fn={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}}},pn={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"},Hn={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)},En={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}}},In={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 NA(t)?t.number:"auto"}},bn={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":NA(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}'`)}},Kn={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Ln={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:XA(t)&&"bold"===t.value?700:400},vn={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>t.filter(XA).map(A=>A.value)},Dn={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"}}},Sn={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(NA).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}},Gn=(A,t,e)=>{if(!A)return"";const r=A[Math.min(t,A.length-1)];return r?e?r.open:r.close:""},Rn={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})},Nn={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)=>NA(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"},$n=new Set(Object.values(_n)),qn={name:"mix-blend-mode",initialValue:"normal",type:2,prefix:!1,parse:(A,t)=>$n.has(t)?t:_n.NORMAL},jn={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(wt)}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,B]=(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:B,fill:n,unit:s}}},as=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},Bs={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}}},cs={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}},ws=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}},hs=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()}},ds=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 ws(this))}get layout(){return this._layout??(this._layout=new hs(this))}static{this.standardProps=[["animationDuration",On,"animationDuration"],["backgroundClip",De,"backgroundClip"],["backgroundColor",Se,"backgroundColor"],["backgroundImage",nr,"backgroundImage"],["backgroundOrigin",sr,"backgroundOrigin"],["backgroundPosition",or,"backgroundPosition"],["backgroundRepeat",ir,"backgroundRepeat"],["backgroundSize",Br,"backgroundSize"],["borderTopColor",gr,"borderTopColor"],["borderRightColor",wr,"borderRightColor"],["borderBottomColor",hr,"borderBottomColor"],["borderLeftColor",dr,"borderLeftColor"],["borderTopLeftRadius",Qr,"borderTopLeftRadius"],["borderTopRightRadius",Cr,"borderTopRightRadius"],["borderBottomRightRadius",Ur,"borderBottomRightRadius"],["borderBottomLeftRadius",Fr,"borderBottomLeftRadius"],["borderTopStyle",fr,"borderTopStyle"],["borderRightStyle",mr,"borderRightStyle"],["borderBottomStyle",yr,"borderBottomStyle"],["borderLeftStyle",Hr,"borderLeftStyle"],["borderTopWidth",Ir,"borderTopWidth"],["borderRightWidth",br,"borderRightWidth"],["borderBottomWidth",xr,"borderBottomWidth"],["borderLeftWidth",Kr,"borderLeftWidth"],["boxShadow",Rn,"boxShadow"],["clipPath",Sr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",xn,"fontFamily"],["fontSize",Kn,"fontSize"],["fontStyle",Dn,"fontStyle"],["fontVariant",vn,"fontVariant"],["fontWeight",Ln,"fontWeight"],["letterSpacing",Gr,"letterSpacing"],["lineBreak",Rr,"lineBreak"],["lineHeight",Nr,"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",Nn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",En,"textDecorationStyle"],["textDecorationThickness",In,"textDecorationThickness"],["textUnderlineOffset",bn,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Zn,"textOverflow"],["transform",Bn,"transform"],["transformOrigin",wn,"transformOrigin"],["rotate",hn,"rotate"],["visibility",dn,"visibility"],["webkitTextStrokeColor",Pn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Xn,"webkitTextStrokeWidth"],["webkitLineClamp",Jn,"webkitLineClamp"],["wordBreak",un,"wordBreak"],["whiteSpace",Qn,"whiteSpace"],["writingMode",Fn,"writingMode"],["zIndex",pn,"zIndex"],["objectFit",Wn,"objectFit"],["imageRendering",zn,"imageRendering"],["mixBlendMode",qn,"mixBlendMode"],["filter",jn,"filter"],["fontVariantLigatures",ts,"fontVariantLigatures"],["zoom",es,"zoom"],["objectPosition",rs,"objectPosition"],["backgroundBlendMode",ss,"backgroundBlendMode"],["borderImageSource",os,"borderImageSource"],["borderImageSlice",is,"borderImageSlice"],["borderImageRepeat",Bs,"borderImageRepeat"],["boxDecorationBreak",cs,"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]=Us(t,e,void 0));this.float=Us(t,Vr,void 0),this.textDecorationColor=Us(t,yn,void 0),this.textDecorationLine=Us(t,Hn,void 0);const A=Us(t,$r,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]=Us(t,n,e[s]);this.float=Us(t,Vr,e.cssFloat),this.textDecorationColor=Us(t,yn,e.textDecorationColor??e.color),this.textDecorationLine=Us(t,Hn,e.textDecorationLine??e.textDecoration);const n=Us(t,$r,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=Us(A,Sn,t.content),this.quotes=Us(A,Vn,t.quotes)}},Qs=class{constructor(A,t){this.counterIncrement=Us(A,Tn,t.counterIncrement),this.counterReset=Us(A,kn,t.counterReset)}};const Cs=new Map,Us=(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=GA.get();s.write(r);const o=new RA(s.read());GA.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},Fs=(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 ps=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)||!ce(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(!we(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)&&we(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(!we(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)&&we(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 ps((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=Es(e).then(async()=>{this.scrolledElements.forEach(Ls),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 Hs(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const B=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(B):B;o.write(r)}catch(A){o.write(B)}Ks(this.referenceElement.ownerDocument,r,n),o.close();const c=o.adoptNode(this.documentElement);return ks(c,a),o.replaceChild(c,o.documentElement),i}createElementClone(A){if(Fs(A,2),oe(A))return this.createCanvasClone(A);if(ie(A))return this.createVideoClone(A);if(ce(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")),he(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)&&!de.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 he(A)&&(t=!0),ie(A)||this.cloneChildNodes(A,n,t),this.counters.pop(i),(s&&(this.options.copyStyles||ee(A))&&!Be(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(ve(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=>ve(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(Gn(o.quotes,this.quoteDepth++,!0)));break;case"close-quote":i.appendChild(s.createTextNode(Gn(o.quotes,--this.quoteDepth,!1)));break;default:i.appendChild(s.createTextNode(t.value))}}),i.className=`${vs} ${Ds}`;const a=0===r?` ${vs}`:` ${Ds}`;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()}),Hs=A=>Promise.all([].slice.call(A.images,0).map(ys)),Es=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)}}),Is=["all","d","content"],bs=(A,t)=>{const e=[];for(let t=A.length-1;t>=0;t--){const r=A.item(t);if(-1===Is.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,""").replace(/>/g,">")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,""")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,""")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,""")+'"'),t+=">"),t},Ks=(A,t,e)=>{A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},Ls=([A,t,e])=>{A.scrollLeft=t,A.scrollTop=e},vs="___html2canvas___pseudoelement_before",Ds="___html2canvas___pseudoelement_after",Ss='{\n content: "" !important;\n display: none !important;\n}',Ms=(A,t)=>{Ts(A,`.${vs}:before${Ss}\n .${Ds}:after${Ss}`,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,Fs(t,3),this.styles=new ds(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))}}Fs(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()}},Gs="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Rs=0;Rs<64;Rs++)Gs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Rs)]=Rs;for(var Ns=(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},$s=(()=>{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 B="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(o):new Array(o),c=Array.isArray(B)?B:new Uint8Array(B);for(t=0;t<i;t+=4)e=Gs[A.charCodeAt(t)],r=Gs[A.charCodeAt(t+1)],n=Gs[A.charCodeAt(t+2)],s=Gs[A.charCodeAt(t+3)],c[a++]=e<<2|r>>4,c[a++]=(15&r)<<4|n>>2,c[a++]=(3&n)<<6|63&s;return B})("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=Ns(s,12,n[4]/2),i=2===n[5]?Ns(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="×",js=A=>$s.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?"👨".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const B=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),B})(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(js);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],Bo=(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=$.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?L: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!==[S,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,B=0,c=0;return{next:()=>{if(c>=a)return{done:!0,value:null};for(var A=z;c<a&&(A=iA(e,s,n,++c,i))===z;);if(A!==z||c===a){var t=new aA(e,A,B,c);return B=c,{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 co=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 Bo(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,wo);case 2:return A.toUpperCase();default:return A}},go=/(^|\s|:|-|\(|\))([a-z])/g,wo=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var ho=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}},Uo=class extends Vs{constructor(A,t){super(A,t),this.start=t.start,this.reversed="boolean"==typeof t.reversed&&!0===t.reversed}};const Fo=[{type:15,flags:0,unit:"px",number:3}],po=[{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=Fo;break;case"radio":this.styles.borderTopRightRadius=this.styles.borderTopLeftRadius=this.styles.borderBottomRightRadius=this.styles.borderBottomLeftRadius=po}}},yo=class extends Vs{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},Ho=class extends Vs{constructor(A,t){super(A,t),this.value=t.value}},Eo=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):jt.TRANSPARENT,r=t.contentWindow.document.body?qt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):jt.TRANSPARENT;this.backgroundColor=ft(e)?ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Io=["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 co(A,t,e.styles));else if(Ae(t))if(we(t)&&t.assignedNodes)t.assignedNodes().forEach(t=>xo(A,t,e,r));else{const n=Ko(A,t);n.styles.isVisible()&&(vo(t,n,r)?n.createsRealStackingContext=!0:Do(n.styles)&&(n.createsStackingContext=!0),-1!==Io.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))}},Ko=(A,t)=>ae(t)?new ho(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 Uo(A,t):(A=>"INPUT"===A.tagName)(t)?new mo(A,t):ge(t)?new yo(A,t):le(t)?new Ho(A,t):Be(t)?new Eo(A,t,Lo):new Vs(A,t),Lo=(A,t)=>{const e=Ko(A,t);return e.createsRealStackingContext=!0,bo(A,t,e,e),e},vo=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),Do=A=>!(!A.isPositioned()&&!A.isFloating())||Qe(A.display,268435456)||Qe(A.display,33554432)||Qe(A.display,536870912)||Qe(A.display,134217728),So=(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]=ht(t.borderTopLeftRadius,e.width,e.height),[s,o]=ht(t.borderTopRightRadius,e.width,e.height),[i,a]=ht(t.borderBottomRightRadius,e.width,e.height),[B,c]=ht(t.borderBottomLeftRadius,e.width,e.height);const l=[];l.push((r+s)/e.width),l.push((B+i)/e.width),l.push((n+c)/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,B/=g,c/=g);const w=e.width-s,h=e.height-a,d=e.width-i,u=e.height-c,Q=t.borderTopWidth,C=t.borderRightWidth,U=t.borderBottomWidth,F=t.borderLeftWidth,p=dt(t.paddingTop,A.bounds.width),f=dt(t.paddingRight,A.bounds.width),m=dt(t.paddingBottom,A.bounds.width),y=dt(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||n>0?Go(e.left+F/3,e.top+Q/3,r-F/3,n-Q/3,0):new Mo(e.left+F/3,e.top+Q/3),this.topRightBorderDoubleOuterBox=r>0||n>0?Go(e.left+w,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?Go(e.left+d,e.top+h,i-C/3,a-U/3,2):new Mo(e.left+e.width-C/3,e.top+e.height-U/3),this.bottomLeftBorderDoubleOuterBox=B>0||c>0?Go(e.left+F/3,e.top+u,B-F/3,c-U/3,3):new Mo(e.left+F/3,e.top+e.height-U/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?Go(e.left+2*F/3,e.top+2*Q/3,r-2*F/3,n-2*Q/3,0):new Mo(e.left+2*F/3,e.top+2*Q/3),this.topRightBorderDoubleInnerBox=r>0||n>0?Go(e.left+w,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?Go(e.left+d,e.top+h,i-2*C/3,a-2*U/3,2):new Mo(e.left+e.width-2*C/3,e.top+e.height-2*U/3),this.bottomLeftBorderDoubleInnerBox=B>0||c>0?Go(e.left+2*F/3,e.top+u,B-2*F/3,c-2*U/3,3):new Mo(e.left+2*F/3,e.top+e.height-2*U/3),this.topLeftBorderStroke=r>0||n>0?Go(e.left+F/2,e.top+Q/2,r-F/2,n-Q/2,0):new Mo(e.left+F/2,e.top+Q/2),this.topRightBorderStroke=r>0||n>0?Go(e.left+w,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?Go(e.left+d,e.top+h,i-C/2,a-U/2,2):new Mo(e.left+e.width-C/2,e.top+e.height-U/2),this.bottomLeftBorderStroke=B>0||c>0?Go(e.left+F/2,e.top+u,B-F/2,c-U/2,3):new Mo(e.left+F/2,e.top+e.height-U/2),this.topLeftBorderBox=r>0||n>0?Go(e.left,e.top,r,n,0):new Mo(e.left,e.top),this.topRightBorderBox=s>0||o>0?Go(e.left+w,e.top,s,o,1):new Mo(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?Go(e.left+d,e.top+h,i,a,2):new Mo(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=B>0||c>0?Go(e.left,e.top+u,B,c,3):new Mo(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?Go(e.left+F,e.top+Q,Math.max(0,r-F),Math.max(0,n-Q),0):new Mo(e.left+F,e.top+Q),this.topRightPaddingBox=s>0||o>0?Go(e.left+Math.min(w,e.width-C),e.top+Q,w>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?Go(e.left+Math.min(d,e.width-F),e.top+Math.min(h,e.height-U),Math.max(0,i-C),Math.max(0,a-U),2):new Mo(e.left+e.width-C,e.top+e.height-U),this.bottomLeftPaddingBox=B>0||c>0?Go(e.left+F,e.top+Math.min(u,e.height-U),Math.max(0,B-F),Math.max(0,c-U),3):new Mo(e.left+F,e.top+e.height-U),this.topLeftContentBox=r>0||n>0?Go(e.left+F+y,e.top+Q+p,Math.max(0,r-(F+y)),Math.max(0,n-(Q+p)),0):new Mo(e.left+F+y,e.top+Q+p),this.topRightContentBox=s>0||o>0?Go(e.left+Math.min(w,e.width+F+y),e.top+Q+p,w>e.width+F+y?0:s-F+y,o-(Q+p),1):new Mo(e.left+e.width-(C+f),e.top+Q+p),this.bottomRightContentBox=i>0||a>0?Go(e.left+Math.min(d,e.width-(F+y)),e.top+Math.min(h,e.height+Q+p),Math.max(0,i-(C+f)),a-(U+m),2):new Mo(e.left+e.width-(C+f),e.top+e.height-(U+m)),this.bottomLeftContentBox=B>0||c>0?Go(e.left+F+y,e.top+u,Math.max(0,B-(F+y)),c-(U+m),3):new Mo(e.left+F+y,e.top+e.height-(U+m))}};const Go=(A,t,e,r,n)=>{const s=(Math.sqrt(2)-1)/3*4,o=e*s,i=r*s,a=A+e,B=t+r;switch(n){case 0:return new ko(new Mo(A,B),new Mo(A,B-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,B-i),new Mo(a,B));case 2:return new ko(new Mo(a,t),new Mo(a,t+i),new Mo(A+o,B),new Mo(A,B));default:return new ko(new Mo(a,B),new Mo(a-o,B),new Mo(A,t+i),new Mo(A,t))}},Ro=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],No=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,$o=A=>1===A.type,qo=A=>3===A.type;var jo=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+dt(A[0],this.container.bounds.width),e=this.container.bounds.top+dt(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+dt(A[0],this.container.bounds.width),e=this.container.bounds.top+dt(A[1],this.container.bounds.height);this.effects.push(new Po(t,e,this.container.styles.transform))}if(ti(this.container.styles)){const A=Ro(this.curves),t=No(this.curves);So(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+dt(A[0],this.container.bounds.width),e=this.container.bounds.top+dt(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=>!$o(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=Ro(e.curves),t=No(e.curves);So(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):dt(A,n),ri=(A,t)=>{const{left:e,top:r,width:n,height:s}=t;switch(A.type){case 1:{const t=dt(A.left,n),o=dt(A.top,s),i=e+t,a=r+o,B=Math.max(0,n-t-dt(A.right,n)),c=Math.max(0,s-o-dt(A.bottom,s));return new Wo(A=>{A.beginPath(),A.rect(i,a,B,c),A.clip()})}case 2:{const t=e+dt(A.cx,n),o=r+dt(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):dt(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+dt(A.cx,n),o=r+dt(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+dt(A,n),r+dt(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 jo(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 Uo?A.start:1;const r=A instanceof Uo&&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=ve(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=dt(t.paddingLeft,e.width),n=dt(t.paddingRight,e.width),s=dt(t.paddingTop,e.width),o=dt(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=ht(gi(A.styles.backgroundPosition,t),r.width-o,r.height-i),B=wi(gi(A.styles.backgroundRepeat,t),a,s,r,n),c=Math.round(r.left+a[0]),l=Math.round(r.top+a[1]);return o=Math.max(1,o),i=Math.max(1,i),[B,c,l,o,i]},Bi=A=>XA(A)&&"auto"===A.value,ci=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[dt(s,n.width),dt(o,n.height)];const i=ci(r);if(XA(s)&&("contain"===s.value||"cover"===s.value))return ci(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=ci(t),B=ci(e),c=a||B;if(Bi(s)&&(!o||Bi(o)))return a&&B?[t,e]:i||c?c&&i?[a?t:e*r,B?e:t/r]:[a?t:n.width,B?e:n.height]:[n.width,n.height];if(i){let A=0,t=0;return ot(s)?A=dt(s,n.width):ot(o)&&(t=dt(o,n.height)),Bi(s)?A=t*r:o&&!Bi(o)||(t=A/r),[A,t]}let l=null,g=null;if(ot(s)?l=dt(s,n.width):o&&ot(o)&&(g=dt(o,n.height)),null===l||o&&!Bi(o)||(g=a&&B?l/t*e:n.height),null!==g&&Bi(s)&&(l=a&&B?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},wi=(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 hi=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 di=(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 Ui=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new hi(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 B=0;B<s.length;){const c=s[B];if(!(Un(r)||!Ci(c)&&c.trim().length>0)){const r=this.ctx.textBaseline;Ci(c)&&(this.ctx.textBaseline="ideographic"),n(c,A.bounds.left,a+e),this.ctx.textBaseline=r,a+=this.cachedMeasureText(c,o)+t,B++;continue}const l=B;for(;B<s.length;){const A=s[B];if(!Un(r)&&!Ci(A)&&0===A.trim().length)break;if(!(Un(r)||!Ci(A)&&A.trim().length>0))break;B++}this.ctx.save(),this.ctx.translate(A.bounds.left+e,a),this.ctx.rotate(i);let g=0;for(let A=l;A<B;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=NA(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 B=t.webkitLineClamp;if(o.length<=B)return!1;for(let A=0;A<B-1;A++)o[A].forEach(A=>this.renderTextBoundWithPaintOrder(A,t,e,r));const c=o[B-1];if(c?.length&&n){const A=c.map(A=>A.text).join(""),s=c[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=di(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 Fi=(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)})},pi=(A,t)=>{A.beginPath(),Fi(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):je(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,B,c]=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",w=`${n}|${Math.round(B)}x${Math.round(c)}|${A.styles.imageRendering}|${g}`;let h=this.patternCache.get(w);if(!h){const t=this.resizeImage(r,B,c,A.styles.imageRendering);h=this.ctx.createPattern(t,g),this.patternCache.set(w,h)}this.renderRepeat(o,h,i,a)}}renderRepeatingLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,B,c,l,g]=ke(t.angle,o,i),w=Te(t.stops,a||1),h=w[0],d=w[w.length-1].stop-h.stop;if(d<=0)return void this.renderLinearGradient(A,t,e);const u=c-B,Q=g-l,C=d/(Math.sqrt(u*u+Q*Q)||1),U=B,F=l,p=B+u*C,f=l+Q*C,m=this.canvas.ownerDocument??document,y=`rlg|${t.angle}|${Math.round(d)}|${JSON.stringify(t.stops)}`;let H=this.patternCache.get(y);if(!H){const A=m.createElement("canvas"),t=Math.max(1,Math.ceil(d));A.width=t,A.height=t;const e=A.getContext("2d");if(!e)return;const r=e.createLinearGradient(U-n,F-s,p-n,f-s);w.forEach(A=>{r.addColorStop((A.stop-h.stop)/d,mt(A.color))}),e.fillStyle=r,e.fillRect(0,0,t,t),t>0&&(H=this.ctx.createPattern(A,"repeat"),this.patternCache.set(y,H))}H&&this.renderRepeat(r,H,n,s)}renderLinearGradient(A,t,e){const[r,n,s,o,i]=ai(A,e,[null,null,null]),[a,B,c,l,g]=ke(t.angle,o,i),w=`lg|${t.angle}|${Math.round(o)}x${Math.round(i)}|${JSON.stringify(t.stops)}`;let h=this.patternCache.get(w);if(!h){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(B,l,c,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&&(h=this.ctx.createPattern(A,"repeat"),this.patternCache.set(w,h))}h&&this.renderRepeat(r,h,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,B=dt(a[0],o),c=dt(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=dt(A.size[0],r),o=2===A.size.length?dt(A.size[1],n):s),[s,o]})(t,B,c,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(B)}x${Math.round(c)}|${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+B-Math.max(l,g),s+c-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){pi(this.ctx,A)}};const yi=(A,t)=>{switch(t){case 0:return Ei(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return Ei(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return Ei(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return Ei(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},Hi=(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},Ei=(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 Ii=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 Ei(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return Ei(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return Ei(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return Ei(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 Ei(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return Ei(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return Ei(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return Ei(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 Hi(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return Hi(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return Hi(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return Hi(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=yi(r,e);let i,a,B,c,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])?(B=o[1].end.x,c=o[1].end.y):(B=o[1].x,c=o[1].y),l=0===e||2===e?Math.abs(i-B):Math.abs(a-c),this.ctx.beginPath(),this.pathCallbacks.formatPath(3===n?s:o.slice(0,2));let g=t<3?3*t:2*t,w=t<3?2*t:t;3===n&&(g=t,w=t);let h=!0;if(l<=2*g)h=!1;else if(l<=2*g+w){const A=l/(2*g+w);g*=A,w*=A}else{const A=Math.floor((l+w)/(g+w)),t=(l-A*g)/(A-1),e=(l-(A+1)*g)/A;w=e<=0||Math.abs(w-t)<Math.abs(w-e)?t:e}if(h&&this.ctx.setLineDash(3===n?[0,g+w]:[g,w]),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,B=t.naturalHeight||t.height;if(a<=0||B<=0)return;const c=Math.min("percent"===e.unit?e.top/100*B:Math.min(e.top,B),B),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*B:Math.min(e.bottom,B),B),w=Math.min("percent"===e.unit?e.left/100*a:Math.min(e.left,a),a),{left:h,top:d,width:u,height:Q}=A;if(u<=0||Q<=0)return;const C=Math.min(n,Q),U=Math.min(s,u),F=Math.min(o,Q-C),p=Math.min(i,u-U);this.drawRegion(t,0,0,w,c,h,d,p,C),this.drawRegion(t,a-l,0,l,c,h+u-U,d,U,C),this.drawRegion(t,a-l,B-g,l,g,h+u-U,d+Q-F,U,F),this.drawRegion(t,0,B-g,w,g,h,d+Q-F,p,F);const f=[{sx:w,sy:0,sw:a-w-l,sh:c,dx:h+p,dy:d,dw:u-p-U,dh:C,repeat:r.horizontal},{sx:a-l,sy:c,sw:l,sh:B-c-g,dx:h+u-U,dy:d+C,dw:U,dh:Q-C-F,repeat:r.vertical},{sx:w,sy:B-g,sw:a-w-l,sh:g,dx:h+p,dy:d+Q-F,dw:u-p-U,dh:F,repeat:r.horizontal},{sx:0,sy:c,sw:w,sh:B-c-g,dx:h,dy:d+C,dw:p,dh:Q-C-F,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,w,c,a-w-l,B-c-g,h+p,d+C,u-p-U,Q-C-F)}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)||$o(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)):$o(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 Ki=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 Ii({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 Ui({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=No(t);this.path(o),this.ctx.save(),this.ctx.clip();const{sx:i,sy:a,sw:B,sh:c,dx:l,dy:g,dw:w,dh:h}=((A,t,e,r,n)=>{let s=0,o=0,i=A,a=t,B=e.left,c=e.top,l=e.width,g=e.height;const w=l/g,h=i/a,d=n?dt(n[0],1):.5,u=n?dt(n[1],1):.5;return 2===r?h>w?(g=l/h,c+=(e.height-g)*u):(l=g*h,B+=(e.width-l)*d):4===r?h>w?(i=a*w,s+=(A-i)*d):(a=i/w,o+=(t-a)*u):8===r?(i>l?(s+=(i-l)*d,i=l):(B+=(l-i)*d,l=i),a>g?(o+=(a-g)*u,a=g):(c+=(g-a)*u,g=a)):16===r&&((h>w?l:g*h)<(i>l?i:l)?h>w?(g=l/h,c+=(e.height-g)*u):(l=g*h,B+=(e.width-l)*d):(i>l?(s+=(i-l)*d,i=l):(B+=(l-i)*d,l=i),a>g?(o+=(a-g)*u,a=g):(c+=(g-a)*u,g=a))),{sx:s,sy:o,sw:i,sh:a,dx:B,dy:c,dw:l,dh:g}})(r,n,s,A.styles.objectFit,A.styles.objectPosition);this.ctx.drawImage(e,i,a,B,c,l,g,w,h),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 ho)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 Eo&&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 Ho||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=di(A,dt(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 B=0;switch(r.styles.textAlign){case 1:B+=a.width/2;break;case 2:B+=a.width}let c=0;if(r instanceof mo){const A=dt(s.fontSize,0);c=(a.height-A)/2}const l=a.add(B,c,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),w=dt(s.fontSize,0),h=Pr(s.lineHeight,w);g.forEach((e,r)=>{let o=l.left;const B=A.measureText(e).width;switch(s.textAlign){case 1:o+=(a.width-B)/2;break;case 2:o+=a.width-B}const c=new n(o,l.top+r*h,0,0);t.renderTextWithLetterSpacing(new so(e,c),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+dt(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){pi(this.ctx,A)}formatPath(A){Fi(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=vi(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=Li(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=Ro(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 jo(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 B=di(i,e.fontSize.number),c=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 c.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+B;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 Li=(A,t)=>{switch(A){case 0:return Ro(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return No(t)}},vi=A=>A.backgroundClip.some(A=>3===A);var Di=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}},Si=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)||!Ni(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 Ni(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&&!Gi(A)&&!Ni(A)&&"string"!=typeof this._options.proxy,s=!Gi(A)&&(!0===this._options.useCORS||n)&&no.SUPPORT_CORS_IMAGES&&!r,o=!Gi(A)&&!r&&!Ni(A)&&"string"==typeof this._options.proxy&&no.SUPPORT_CORS_XHR&&!s;if(!(r||!1!==this._options.allowTaint||Gi(A)||Ni(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,(Ri(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),Gi=A=>Oi.test(A),Ri=A=>ki.test(A),Ni=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 Si({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=["Timezone: ","startsWith","UA brands: ","getEntriesByType","Battery: ","User agent: ","function","gamma"," Mbps","devicePixelRatio","toString","40tsuyzl","matches","176394wuplQB","SW-controlled","downlink","type","Referrer: ","removeEventListener","length","isSecureContext","yes"," ms","languages","maxTouchPoints","orientation","join"," (β ","deviceorientation","96151QtovzU","Platform: ","; DNT: ","slice","round","no SW","CookiesEnabled: ","isFinite","max","coarse","upright","some","215gKPeRO"," cores","find","addEventListener","saveData","beta","DateTimeFormat","push","rtt","entryType","(display-mode: standalone)","controller","Screen: ","(pointer: coarse)","421703FnwdXo","1464772PUJXUw","resolvedOptions","2388laTKbx","transferSize","referrer","userAgentData","1863016KbbVyf"," (mobile)","Viewport: ","Languages: ","effectiveType","responseStart","CPU: ","3044400QHrZoQ","encodedBodySize","TTFB ~","abs",", orientation ","2456091MIiyEX","brands","getBattery","padStart","TTFB","reclined","innerWidth","resource","flat","filter","rttMs","hardwareConcurrency","requestStart","number","downlinkMbps","mobile","°, γ "," | ","4KJnzZc","onLine","doNotTrack","(pointer: fine)","connection","Tilt: ","serviceWorker","setTimeout","platform","availHeight","isArray","timeZone","colorDepth","enabled","duration","unknown","Online: ","Local time: ","width","getTimezoneOffset","DeviceOrientationEvent","cookieEnabled","7xBlHVC"," (UTC","navigation","undefined"];return(Yi=()=>A)()}function Zi(A,t){return A-=344,Yi()[A]}async function zi(){const A=Zi,t=(new(Intl[A(353)]))[A(363)]()[A(409)],e=(A=>{const t=Zi,e=A<=0?"+":"-",r=Math[t(378)](A);return""+e+String(Math.floor(r/60)).padStart(2,"0")+":"+String(r%60)[t(383)](2,"0")})((new Date)[A(417)]()),r=[];r.push("Language: "+navigator.language),navigator[A(447)]?.[A(443)]&&r[A(354)](A(371)+navigator[A(447)].join(", ")),r[A(354)](A(429)+navigator.userAgent);const n=function(){const A=Zi;if(!(A=>{const t=Zi;return t(367)in A&&typeof A.userAgentData!==t(423)})(navigator))return;const t=navigator[A(367)],e=Array[A(408)](t.brands)?t[A(381)].map(A=>A.brand+" "+A.version)[A(450)](", "):void 0,r=t.platform?""+t[A(406)]+(t[A(395)]?A(369):""):void 0;return[e&&A(426)+e,r&&A(454)+r].filter(Boolean)[A(450)](" | ")||void 0}();n&&r.push(n),r[A(354)](A(424)+t+A(421)+e+")"),r[A(354)](A(415)+(new Date)[A(434)]());const s=window[A(433)]||1;r[A(354)](A(359)+screen[A(416)]+"x"+screen.height+" @"+s+"x (avail "+screen.availWidth+"x"+screen[A(407)]+", "+screen[A(410)]+"-bit)");const o=screen[A(449)]&&A(440)in screen[A(449)]?screen[A(449)][A(440)]:void 0;r[A(354)](A(370)+window[A(386)]+"x"+window.innerHeight+(o?A(379)+o:"")),r[A(354)](A(374)+navigator[A(391)]+A(348));const i=await async function(){const A=Zi,t=[];let e="browser API";if((A=>{const t=Zi;return t(402)in A&&typeof A[t(402)]!==t(423)})(navigator)){const e=navigator[A(402)];e?.effectiveType&&t[A(354)](e[A(372)]),typeof e?.[A(439)]===A(393)&&t[A(354)]("~"+e[A(439)]+A(432)),typeof e?.rtt===A(393)&&t[A(354)](e[A(355)]+A(446)),e?.[A(351)]&&t.push(A(351))}else{const r=((A=20)=>{const t=Zi,e=performance[t(427)](t(422))[t(349)](A=>A.entryType===t(422)),r=e?Math[t(461)](0,e[t(373)]-e[t(392)]):void 0,n=performance.getEntriesByType("resource")[t(389)](A=>A[t(356)]===t(387));let s=0,o=0;for(const e of n[t(456)](0,Math[t(461)](0,A))){const A=e.encodedBodySize>0?e[t(376)]:e[t(365)]>0?e.transferSize:0,r=e[t(412)];A>0&&r>0&&Number[t(460)](r)&&(s+=A,o+=r)}const i=o>0?8*s/o:void 0;return{downlinkMbps:typeof i===t(393)?i/1e3:void 0,rttMs:r}})();typeof r.downlinkMbps===A(393)&&t[A(354)]("~"+r[A(394)].toFixed(1)+A(432)),"number"==typeof r.rttMs&&t[A(354)](A(377)+Math.round(r[A(390)])+A(446)),e="inferred"}const r=performance[A(427)](A(422))[A(349)](t=>t[A(356)]===A(422));if(r){const e=Math[A(461)](0,r.responseStart-r[A(392)]);!t[A(346)](t=>t[A(425)](A(384)))&&t.push(A(377)+Math[A(457)](e)+A(446))}return t[A(443)]?"Network: "+t[A(450)](", ")+" ("+e+")":void 0}();i&&r[A(354)](i),r[A(354)]((()=>{const A=Zi,t=typeof matchMedia===A(430)&&matchMedia(A(360))[A(436)],e="function"==typeof matchMedia&&matchMedia(A(401))[A(436)];return"Pointer/Touch: "+(t?A(344):e?"fine":A(413))+", maxTouchPoints "+navigator[A(448)]})());const a=await async function(){const A=Zi;var t;if(t=navigator,Zi(382)in t&&"function"==typeof t.getBattery)try{const t=await navigator[A(382)](),e=Math[A(457)](100*t.level),r=[(Number[A(460)](e)?e:0)+"%",t.charging?"charging":"not charging"];return A(428)+r[A(450)](", ")}catch{}}();a&&r.push(a),r[A(354)](A(459)+(navigator[A(419)]?A(445):"no")+A(455)+(navigator[A(400)]??"n/a")),r[A(354)](A(414)+(navigator[A(399)]?A(445):"no")),document[A(366)]&&r[A(354)](A(441)+document.referrer),r[A(354)]((()=>{const A=Zi,t=typeof matchMedia===A(430)&&matchMedia(A(357))[A(436)],e=Boolean(navigator[A(404)]?.[A(358)]);return"PWA: "+A(e?438:458)+", display-mode standalone: "+(t?A(445):"no")})());const B=await async function(A=400){const t=Zi;if(t(418)in window&&window[t(444)])return new Promise(e=>{const r=t;let n=!1;const s=A=>{const t=Zi,r=typeof A[t(352)]===t(393)?A[t(352)]:void 0,o=typeof A[t(431)]===t(393)?A[t(431)]:void 0;if(void 0===r||void 0===o)return;if(n)return;n=!0,window.removeEventListener(t(452),s);const i=((A,t)=>{const e=Zi,r=Math[e(378)](A),n=Math[e(378)](t);return e(r<15&&n<15?388:r>=60?345:385)})(r,o);e(t(403)+i+t(451)+Math.round(r)+t(396)+Math.round(o)+"°)")};window[r(405)](()=>{n||(n=!0,window[r(442)]("deviceorientation",s),e(void 0))},A),window[r(350)](r(452),s,{passive:!0})})}();B&&r[A(354)](B);const c=localStorage.getItem("intent:geo")===A(411);return r[A(354)](c?"Device geolocation: enabled":"Device geolocation: disabled"),r[A(450)](A(397))}(A=>{const t=Zi,e=A();for(;;)try{if(642842==parseInt(t(361))/1*(parseInt(t(398))/2)+parseInt(t(375))/3+-parseInt(t(362))/4+parseInt(t(347))/5*(-parseInt(t(437))/6)+-parseInt(t(420))/7*(parseInt(t(368))/8)+parseInt(t(380))/9*(-parseInt(t(435))/10)+parseInt(t(453))/11*(parseInt(t(364))/12))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Yi);const _i=na;(A=>{const t=na,e=A();for(;;)try{if(720912==parseInt(t(152))/1+parseInt(t(147))/2+-parseInt(t(139))/3*(parseInt(t(146))/4)+parseInt(t(143))/5+-parseInt(t(151))/6*(-parseInt(t(153))/7)+-parseInt(t(142))/8*(parseInt(t(144))/9)+parseInt(t(140))/10*(-parseInt(t(137))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ea);const $i="intent:consent",qi=_i(150),ji=_i(149),Aa=_i(145),ta=_i(141);function ea(){const A=["233246wXPesI","91dMtPpZ","https://intent.callimacus.ai","18150154gtedIA","intent:data-base-url","300147RoQaaC","10nPUZTH","intent:data-ip","616FPzRMA","5775130FLdLve","67959ZrKdvA","intent:data-client-id","36QhNHki","2758148wIfSmm","intent:data-sid-max-age","intent:debug-panel","intent:geo","500976OvCHhN"];return(ea=()=>A)()}const ra=_i(138);function na(A,t){return A-=137,ea()[A]}const sa=_i(148),oa=_i(154),ia=aa;function aa(A,t){return A-=247,ua()[A]}function Ba(...A){const t=aa;try{typeof localStorage!==t(284)&&localStorage.getItem("intent:debug")===t(247)&&console[t(258)](...A)}catch{}}(A=>{const t=aa,e=A();for(;;)try{if(667444==parseInt(t(288))/1+-parseInt(t(287))/2*(-parseInt(t(254))/3)+parseInt(t(281))/4+parseInt(t(271))/5+-parseInt(t(280))/6+-parseInt(t(253))/7*(parseInt(t(282))/8)+-parseInt(t(267))/9*(parseInt(t(260))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(ua);const ca=Object.freeze(new Set([ia(256),ia(275),ia(265)])),la=[ia(274),ia(278),"select",ia(283),...[...ca][ia(273)](A=>ia(269)+A+'"]')][ia(252)](", ");function ga(A){const t=ia,e=A[t(286)];return e===t(268)||e===t(261)||e===t(257)}function wa(A){const t=ia;if(ga(A))return!0;const e=A[t(255)](t(276));if(""===e||"true"===e||e===t(251))return!0;const r=A[t(255)]("role")?.[t(290)]();return!(!r||!ca[t(266)](r))}function ha(A){const t=ia,e=A[t(263)];if(e)return e;const{parentNode:r}=A;return r instanceof ShadowRoot&&r[t(292)]instanceof Element?r[t(292)]:void 0}function da(A){const t=ia;return A[t(250)](/&/g,t(249))[t(250)](/</g,"<").replace(/>/g,t(277))[t(250)](/"/g,t(279)).replace(/'/g,t(285))}function ua(){const A=["now","toLowerCase","clearTimeout","host","setTimeout","enabled","innerText","&","replace","plaintext-only","join","7052437ORuaiH","1671wgZzcE","getAttribute","textbox","SELECT","log","string","336340mmRYrj","TEXTAREA","true","parentElement","textContent","searchbox","has","90COHsxQ","INPUT",'[role="',"body","1528680anlfOU","value","map","input","combobox","contenteditable",">","textarea",""","6299598NUmqrb","2368872KqaCLA","8lISrdi","[contenteditable]","undefined","'","tagName","3304VJpYLs","1243090oHxXdc"];return(ua=()=>A)()}const Qa=Fa;(A=>{const t=Fa,e=A();for(;;)try{if(650662==parseInt(t(444))/1+parseInt(t(397))/2*(parseInt(t(350))/3)+parseInt(t(391))/4*(-parseInt(t(422))/5)+-parseInt(t(442))/6+parseInt(t(403))/7+parseInt(t(367))/8+-parseInt(t(432))/9*(parseInt(t(445))/10))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Ha);const Ca=Qa(399),Ua=Qa(440);function Fa(A,t){return A-=337,Ha()[A]}const pa=new Set([Qa(436),Qa(382),Qa(402),Qa(376),Qa(387),Qa(435),Qa(456),"tel",Qa(424),"organization-title",Qa(455),"address-line1",Qa(404),"address-line3",Qa(356),Qa(448),"address-level3",Qa(354),"country",Qa(407),"postal-code",Qa(420),Qa(341),Qa(340),"cc-family-name",Qa(362),Qa(366),Qa(451),"cc-exp-year","cc-csc",Qa(389),Qa(419),Qa(360),"bday-month",Qa(349),Qa(423),Qa(381)]);function fa(A){return"<"+(A=>{const t=Qa,e=(A[t(379)]?.(Ua)??"").trim();if(e)return e;const r=A[t(379)]?.("autocomplete")||"",n=wa(A)?r[t(425)]()[t(345)]()[t(410)](/\s+/)[t(409)](Boolean):[];if(A[t(392)]===t(361)&&"password"===A[t(439)])return"Password";for(const A of n){const t=ma.get(A);if(t)return t}const s=A.getAttribute?.(Ca)?.[t(425)]();return s===t(380)?t(446):t(352)})(A)+">"}const ma=new Map([[Qa(436),Qa(377)],["given-name",Qa(390)],[Qa(376),"Last name"],[Qa(402),"Middle name"],[Qa(387),Qa(416)],[Qa(435),Qa(434)],[Qa(456),Qa(337)],[Qa(421),Qa(344)],[Qa(455),Qa(385)],["address-line1",Qa(395)],[Qa(404),Qa(414)],[Qa(430),Qa(454)],[Qa(356),Qa(371)],[Qa(448),"City"],[Qa(406),Qa(339)],[Qa(354),"Neighborhood"],[Qa(384),"Postal code"],[Qa(429),"Country code"],[Qa(407),Qa(417)],["cc-name",Qa(359)],[Qa(341),Qa(447)],[Qa(443),Qa(375)],["cc-additional-name",Qa(411)],["cc-number",Qa(450)],[Qa(366),Qa(386)],[Qa(451),"Expiration month"],[Qa(426),Qa(351)],[Qa(433),Qa(365)],["cc-type","Card type"],[Qa(419),Qa(342)],["bday-day",Qa(346)],[Qa(431),"Birth month"],["bday-year",Qa(427)],["organization",Qa(368)],[Qa(388),Qa(441)],[Qa(423),Qa(378)],[Qa(381),"WebAuthn"]]);function ya(A){const t=Qa;return A.hasAttribute(t(348))||"ignore"===A[t(379)](Ca)?.[t(425)]()}function Ha(){const A=["password","Cardholder last name","family-name","Name","Sex","getAttribute","mask","webauthn","given-name","matches","postal-code","Street address","Expiration date","nickname","organization-title","cc-type","First name","299140AcYDyS","tagName","stringify","push","Address line 1","ownerDocument","6IzLzeJ","setAttribute","data-intent-redact","includes","length","additional-name","7257761fNDhPz","address-line2","search","address-level3","country-name","some","filter","split","Cardholder middle name","iframe","clear","Address line 2","searchbox","Nickname","Country name","time","bday","cc-name","tel","5qrlrbN","sex","organization","toLowerCase","cc-exp-year","Birth year","[intent] Unsupported data-intent-redact value ","country","address-line3","bday-month","12771qFtRpg","cc-csc","Username","username","name","datetime-local","pop","type","data-intent-redact-label","Job title","3514626OlJjDr","cc-family-name","1094905JAmSae","13730xOGOTH","Redacted","Cardholder first name","address-level2","week","Card number","cc-exp-month","autocomplete","date","Address line 3","street-address","email","shadowRoot","SELECT","Email","warn","District","cc-additional-name","cc-given-name","Birthday",'. Treating as "mask" to prevent data leaks.',"Phone","trim","Birth day","textContent","data-html2canvas-ignore","bday-year","292203VXmWhi","Expiration year","Sensitive","text","address-level4","hasAttribute","address-level1","role","add","Cardholder name","bday-day","INPUT","cc-number","TEXTAREA","body","Security code","cc-exp","6684592cvEZuP","Organization","querySelectorAll","ignore","State/Province","has","value"];return(Ha=()=>A)()}const Ea=new Set;function Ia(A){const t=Qa,e=A.getAttribute(Ca);if(null===e)return!1;const r=e[t(425)]();return r!==t(370)&&(""!==e&&r!==t(380)&&(A=>{const t=Qa;if(Ea[t(372)](A))return;Ea[t(358)](A);const e=JSON[t(393)](A),r=t(428)+e+'. Supported values are "" or "mask" (redact), "ignore" (exclude from capture)'+t(343);try{console[t(338)](r)}catch{}})(e),!0)}function ba(A){const t=Qa;let e=A;for(;e&&e!==document[t(364)];){if(ya(e))return!0;e=ha(e)}return!1}function xa(A){return!(ya(A)||!Ia(A)&&!(A=>{const t=Qa,e=A[t(392)];if(e===t(361)){const e=A;if(e.type===t(374))return!0;if(e[t(439)]===t(405))return!1;const r=e.getAttribute("role");if(r?.[t(425)]()===t(415))return!1;if((e[t(452)]||"")[t(425)]()[t(345)]()[t(410)](/\s+/).filter(Boolean)[t(408)](A=>pa.has(A)))return!0}if((e===t(363)||e===t(458))&&(A.autocomplete||"")[t(425)]()[t(345)]()[t(410)](/\s+/)[t(409)](Boolean)[t(408)](A=>pa.has(A)))return!0;if(wa(A)&&!ga(A)){const e=A[t(379)](t(357))?.[t(425)]();if(e===t(415))return!1;if((A[t(379)](t(452))||"")[t(425)]()[t(345)]()[t(410)](/\s+/)[t(409)](Boolean).some(A=>pa.has(A)))return!0}return!1})(A))}function Ka(A){const t=Qa;if(!ba(A))if(ga(A)){if(xa(A)){if("INPUT"===A.tagName){const e=A;[t(453),t(437),"month",t(418),t(449)][t(400)](e[t(439)])&&(e[t(439)]=t(353))}const e=fa(A);A[t(373)]=e,A[t(398)]("value",e)}}else wa(A)?xa(A)&&(A[t(347)]=fa(A)):A[t(355)](Ca)&&Ia(A)&&(A[t(347)]=fa(A))}function La(A,t){const e=Qa,r=[],n=[A];for(A instanceof Element&&A[e(457)]&&n[e(394)](A.shadowRoot);n[e(401)]>0;){const A=n[e(438)]()[e(369)]("*");for(const s of A)s[e(383)](t)&&r[e(394)](s),s[e(457)]&&n[e(394)](s[e(457)])}return r}function va(A,t=new Set){const e=Qa,r=A instanceof Document?A:A[e(396)];if(r){if(t.has(r))return;t[e(358)](r)}A instanceof Element&&Ka(A);for(const t of La(A,la))Ka(t);for(const t of La(A,"["+Ca+"]"))Ka(t);for(const r of La(A,e(412)))if("IFRAME"===r.tagName)try{const A=r.contentDocument;A&&va(A,t)}catch{}}
|
|
10
|
-
/*! js-cookie v3.0.8 | MIT */function Da(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 Sa=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=Da({},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,"",Da({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,Da({},this.attributes,t))},withConverter:function(t){return A(Da({},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:"/"});function Ma(){const A=["isFinite","2490980TvYxLw","68802pMhBZQ","1004KkJqMb","remove","number","getItem","483UfzMfP","get","2720GQzlLN","673520mcNnPW","90YudMkA","198OltdHy","455900jpiEUq","4414458KyGSAS","granted","563672BbShPH","intent_sid","https:","Lax","protocol"];return(Ma=()=>A)()}(A=>{const t=Oa,e=A();for(;;)try{if(759255==-parseInt(t(384))/1+-parseInt(t(372))/2+parseInt(t(385))/3+-parseInt(t(374))/4*(parseInt(t(380))/5)+parseInt(t(373))/6*(-parseInt(t(378))/7)+parseInt(t(366))/8*(parseInt(t(382))/9)+-parseInt(t(381))/10*(-parseInt(t(383))/11))break;e.push(e.shift())}catch(A){e.push(e.shift())}})(Ma);let Ta="";function ka(){return Ta}function Oa(A,t){return A-=366,Ma()[A]}function Va(A){return Sa[Oa(379)](A)}function Ga(A,t){const e=Oa,r=localStorage.getItem(sa),n=null===r?void 0:Number(r),s=typeof t===e(376)&&Number.isFinite(t)?t:typeof n===e(376)&&Number[e(371)](n)?n:2592e3,o=window.location[e(370)]===e(368);Sa.set(e(367),A,{expires:s/86400,path:"/",sameSite:e(369),...o&&{secure:!0}})}function Ra(){const A=Oa;Sa[A(375)](A(367),{path:"/"})}function Na(){const A=Va(Oa(367));if(!(()=>{const A=Oa;return localStorage[A(377)]($i)===A(386)})())return A&&Ra(),void(Ta="");A?Ta=A:(Ta=crypto.randomUUID(),Ga(Ta))}(A=>{const t=$a,e=A();for(;;)try{if(298720==-parseInt(t(206))/1*(-parseInt(t(198))/2)+parseInt(t(201))/3*(parseInt(t(196))/4)+-parseInt(t(209))/5+parseInt(t(217))/6+parseInt(t(218))/7*(parseInt(t(203))/8)+parseInt(t(202))/9+-parseInt(t(207))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(_a);let Pa=!1,Xa=!1,Ja=!1,Wa=!1,Ya=!1;function Za(){const A=$a;return localStorage[A(220)](qi)===A(213)}function za(){Pa=!1,Ja=!1,Ya=!1}function _a(){const A=["getCurrentPosition","getItem","addEventListener","protocol","visibilityState","removeEventListener","heading","hostname","isFinite","altitude","coords","speed","altitudeAccuracy","accuracy","hasFocus","PERMISSION_DENIED","query","236ihGdeV","pointerdown","2OJUkix","isSecureContext","code","25446aPXYTn","2126367FAHYsM","54240AeTOXG","deviceGeoSent","geoEnabled","144388KVyYxE","4674910velQbc","message","1645780AiqoVo","permissions","TIMEOUT","geolocation","enabled","latitude","number","canRequest","634788IVAPjJ","112gybgnB"];return(_a=()=>A)()}function $a(A,t){return A-=192,_a()[A]}function qa(){return!Pa&&Za()&&!Wa&&Ya}const ja=AB;function AB(A,t){return A-=235,nB()[A]}(A=>{const t=AB,e=A();for(;;)try{if(831445==parseInt(t(256))/1+parseInt(t(239))/2+parseInt(t(254))/3+parseInt(t(299))/4*(parseInt(t(307))/5)+-parseInt(t(280))/6+-parseInt(t(263))/7*(parseInt(t(303))/8)+-parseInt(t(313))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(nB);let tB,eB=[],rB=!1;function nB(){const A=["querySelector","createElement","round",'\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">',"auto","BUTTON","mouseup","addEventListener","timestamp","setAttribute","left","removeEventListener","stopPropagation","display","none","click","div","900yndOrN","props","keydown","target","48TmwSXe","200px","data:image/","disabled","11005NXPsZr","setItem"," KB)</div>\n\t\t\t\t</div>\n\t\t\t","mousedown","readyState",'</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">',"29622609lNQYXw",'\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="',"#intent-debug-content","html","button","img","textContent","top","intent-debug-fullscreen-modal","contains","max","randomUUID","appendChild","toLocaleTimeString","join","classList","\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","width","2887952aaDJFv","innerWidth","getBoundingClientRect","</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t","src","\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t","enabled","firstElementChild","tagName","offsetHeight","</pre>\n\t\t\t\t\t","</div>\n\t\t\t</div>\n\t\t\t","#intent-debug-clear","style","innerHTML","3818226tDveTD","startsWith","1552164FGuYPZ","reverse","stringify","#intent-debug-close","body","length","getItem","330981NMYvWW",'" \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\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','\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">',"#intent-debug-count","\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","\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t","random","innerHeight","Escape","clientX","clientY","#intent-debug-minimize","min","DOMContentLoaded","now","cssText","2145378UUOjgH",'\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">'];return(nB=()=>A)()}function sB(){const A=AB;if(!tB)return;const t=tB[A(282)]("#intent-debug-events"),e=tB[A(282)](A(267));if(!t||!e)return;if(0===eB[A(261)])return t[A(253)]='\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(319)]="0 events");const r=[...eB][A(257)]();t[A(253)]=r.map(A=>(A=>{const t=AB,e=new Date(A[t(290)])[t(326)](),r=A[t(318)]&&A[t(318)].length>0,n=r?Math[t(284)](.75*A.img.length/1024):0,s=da(A.event),o=da(JSON[t(258)](A[t(300)],null,2)),i=da(A[t(316)]),a=da(JSON[t(258)](A.bbox,null,2));return t(281)+s+t(312)+e+t(250)+(r?t(314)+A[t(318)]+t(264)+n+t(309):"")+'\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+t(249)+(A.html?t(266)+i+t(249):"")+t(285)+a+t(242)})(A))[A(235)](""),e.textContent=eB[A(261)]+" event"+(1===eB[A(261)]?"":"s")}function oB(){const A=AB;if(tB)return void(tB[A(252)][A(295)]="flex");const t=document[A(283)]("div");t[A(253)]=AB(265),tB=t[A(246)],document[A(260)].appendChild(tB);const e=tB.querySelector(A(259)),r=tB[A(282)](A(275)),n=tB.querySelector(A(251));e?.addEventListener(A(297),()=>{!function(A){const t=AB;try{localStorage[t(308)](ji,t(A?245:306)),A?oB():(()=>{const A=AB;tB&&(tB[A(252)][A(295)]="none")})()}catch{}}(!1)}),r?.[A(289)]("click",()=>{(()=>{const A=AB;if(!tB)return;const t=tB[A(282)](A(315)),e=tB.querySelector("#intent-debug-minimize");t&&e&&(rB=!rB,rB?(t[A(252)].display=A(296),tB[A(252)][A(238)]=A(304),e[A(319)]="+"):(t.style[A(295)]="flex",tB.style[A(238)]="400px",e.textContent="−"))})()}),n?.[A(289)](A(297),()=>{eB=[],sB()}),(()=>{const A=AB;if(!tB)return;const t=tB[A(282)]("#intent-debug-header");if(!t)return;let e=!1,r=0,n=0,s=0,o=0;t[A(289)](A(310),t=>{const r=A;if(t[r(302)][r(247)]===r(287))return;e=!0;const n=tB[r(241)]();s=t[r(273)]-n.left,o=t[r(274)]-n[r(320)]}),document.addEventListener("mousemove",t=>{const i=A;if(!e||!tB)return;t.preventDefault(),r=t[i(273)]-s,n=t[i(274)]-o;const a=window[i(240)]-tB.offsetWidth,B=window[i(271)]-tB[i(248)];r=Math[i(323)](0,Math.min(r,a)),n=Math[i(323)](0,Math[i(276)](n,B)),tB[i(252)][i(292)]=r+"px",tB.style[i(320)]=n+"px",tB.style.right=i(286)}),document[A(289)](A(288),()=>{e=!1})})(),tB.addEventListener(A(297),t=>{const e=A,r=t[e(302)];if(r[e(236)][e(322)]("intent-debug-screenshot")){const A=r;A[e(243)]&&A[e(243)][e(255)](e(305))&&(A=>{const t=AB,e=document[t(283)]("div");e.id=t(321),e[t(291)]("data-intent-redact","ignore"),e[t(252)][t(279)]=t(268);const r=document[t(283)](t(298));r[t(252)][t(279)]="\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(283)](t(318));n.src=A,n[t(252)].cssText=t(237);const s=document[t(283)]("div");s[t(252)][t(279)]=t(244);const o=document[t(283)](t(317));o.textContent="✕ Close",o[t(252)][t(279)]="\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(283)]("div");i[t(319)]="Click anywhere or press ESC to close",i[t(252)][t(279)]=t(269),s[t(325)](o),s[t(325)](i),r[t(325)](n),r.appendChild(s),e.appendChild(r);const a=()=>{const A=t;e.remove(),document[A(293)](A(301),B)};e[t(289)](t(297),a),o.addEventListener(t(297),A=>{A[t(294)](),a()}),n[t(289)](t(297),A=>{A[t(294)]()});const B=A=>{A.key===t(272)&&a()};document[t(289)](t(301),B),document[t(260)].appendChild(e)})(A[e(243)])}}),sB()}function iB(){var A=["10dKBeLJ","[Intent SDK] Debug panel is not available in this build. ","undefined","setDebugPanel","21435YWfbtB","4880172MUvTJU","Use the debug build variant: @solomei-ai/intent/debug or intent.debug.umd.min.js","618rogyly","4208127fSFYzT","2532222cfkrgY","72qtISOh","908384SeEhPu","14hDrnKo","logEventToDebugPanel","warn","42447EKLbMe","4376kUcRTl","161TYhssD"];return(iB=()=>A)()}function aB(A,t){return A-=235,iB()[A]}"undefined"!=typeof window&&function(){const A=AB;try{return localStorage[A(262)](ji)===A(245)}catch{return!1}}()&&("loading"===document[ja(311)]?document[ja(289)](ja(277),()=>{oB()}):oB()),Symbol,(A=>{for(var t=aB,e=A();;)try{if(265589==-parseInt(t(245))/1*(parseInt(t(244))/2)+parseInt(t(243))/3*(parseInt(t(238))/4)+parseInt(t(250))/5*(parseInt(t(235))/6)+parseInt(t(240))/7*(parseInt(t(239))/8)+-parseInt(t(237))/9*(parseInt(t(246))/10)+parseInt(t(236))/11+-parseInt(t(251))/12)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(iB);const BB=uB;(A=>{const t=uB,e=A();for(;;)try{if(729060==parseInt(t(556))/1*(-parseInt(t(584))/2)+parseInt(t(493))/3+-parseInt(t(568))/4*(-parseInt(t(574))/5)+-parseInt(t(526))/6*(-parseInt(t(498))/7)+-parseInt(t(561))/8+-parseInt(t(593))/9+parseInt(t(591))/10)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(xB);let cB,lB,gB=0,wB=!1;const hB=BB(502),dB=[BB(490),BB(575),"a",BB(511),BB(499),'[role="button"]','[role="link"]',BB(583)][BB(541)](",");function uB(A,t){return A-=487,xB()[A]}function QB(){return Na(),(()=>{const A=BB;return localStorage[A(510)]($i)===A(546)})()&&Boolean(ka())&&(()=>{const A=BB;return Boolean(localStorage[A(510)](Aa)?.[A(509)]()[A(570)])})()}function CB(){return!QB()||Xa}async function UB(A){for(;lB;)await lB;return lB=(async()=>{const o=uB;try{const i=performance[o(523)](),a=performance[o(523)](),B=(A=>{const t=BB;if(ya(A))return"";const e=A[t(588)](!1);return Array[t(562)](A[t(542)])[t(594)](({name:A,value:t})=>{e.setAttribute(A,t)}),ga(A)?ga(e)&&(e[t(550)]=A[t(550)]):wa(A)?e.innerHTML=A[t(572)]:e[t(512)]=A[t(512)],va(e),ga(e)&&e[t(545)](t(550),e[t(550)]),e[t(539)]})(A),c=performance[o(523)]()-a;Ba(o(567)+c.toFixed(2)+"ms");const l=A[o(595)](),g=performance[o(523)](),w={left:window[o(487)],top:window.scrollY,right:window[o(487)]+window[o(547)],bottom:window[o(571)]+window[o(507)]},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 B=((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)),c=((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(c.scrollX,c.scrollY,c.windowWidth,c.windowHeight),g=new Ji(B,l,o),w=t.enablePerformanceMonitoring??t.logging??!1,h=new r(g,w);h.start("total",{width:c.windowWidth,height:c.windowHeight});const d=t.signal;Wi(d);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}`),h.start("clone");const C=new fs(g,A,Q),U=C.clonedReferenceElement;if(!U)throw new Error("Unable to find element in cloned iframe");const F=await C.toIFrame(i,l);h.end("clone"),d?.aborted&&((t.removeContainer??1)&&fs.destroy(F),Wi(d));const{width:p,height:f,left:m,top:y}=se(U)||"HTML"===U.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)))})(U.ownerDocument):s(g,U),H=((A,t,e)=>{const r=t.ownerDocument,n=r.documentElement?qt(A,getComputedStyle(r.documentElement).backgroundColor):jt.TRANSPARENT,s=r.body?qt(A,getComputedStyle(r.body).backgroundColor):jt.TRANSPARENT,o="string"==typeof e?qt(A,e):null===e?jt.TRANSPARENT:4294967295;return t===r.documentElement?ft(n)?ft(s)?o:s:n:o})(g,U,t.backgroundColor),E=((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,H,m,y,p,f,a.devicePixelRatio??1);let I,b;try{return u?(g.logger.debug("Document cloned, using foreign object rendering"),h.start("render-foreignobject"),I=await new Di(g,E).render(U),h.end("render-foreignobject")):(g.logger.debug(`Document cloned, element located at ${m},${y} with size ${p}x${f} using computed rendering`),g.logger.debug("Starting DOM parsing"),h.start("parse"),Wi(d),g.cache.startDefer(),b=Lo(g,U),h.end("parse"),h.start("preload"),await g.cache.preloadAll(),h.end("preload"),H===b.styles.backgroundColor&&(b.styles.backgroundColor=jt.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${E.x},${E.y} with size ${E.width}x${E.height}`),h.start("render"),Wi(d),I=await new Ki(g,E).render(b),h.end("render")),h.start("cleanup"),(t.removeContainer??1)&&(fs.destroy(F)||g.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore")),h.end("cleanup"),h.end("total"),g.logger.debug("Finished rendering"),w&&h.logSummary(),I}finally{b&&b.restoreTree()}})(A,o,t.fromElement(A,{cspNonce:o.cspNonce,cache:o.cache})))(document[o(508)],{useCORS:!0,x:window[o(487)],y:window[o(571)],width:window[o(547)],height:window[o(507)],scale:.6,logging:!1,onclone(A){va(A)},ignoreElements(A){const t=o;if(!(A instanceof Element))return!1;if(ba(A))return!0;const e=A[t(595)](),r={left:e[t(491)]+window[t(487)],top:e[t(535)]+window[t(571)],right:e[t(551)]+window[t(487)],bottom:e[t(534)]+window[t(571)]},n=100,s=r[t(534)]<w.top-n,i=r.top>w.bottom+n,a=r[t(551)]<w[t(491)]-n,B=r[t(491)]>w[t(551)]+n;if(!(a||B||s||i))return!1;const{position:c}=window[t(589)](A);let l;if(c===t(576)||c===t(555)){const A=500;l=r[t(551)]<w[t(491)]-A||r[t(491)]>w[t(551)]+A||r[t(534)]<w.top-A||r[t(535)]>w[t(534)]+A}else l=i;return!!l&&!(A[t(565)]===t(514)||A[t(565)]===t(488)||A.tagName===t(529)||A[t(515)](t(492))||A[t(566)](t(496)))}}),d=performance.now()-g;Ba(o(581)+d[o(579)](2)+"ms");const u=performance[o(523)](),Q=h[o(503)](o(520),.8),C=performance[o(523)]()-u;Ba(o(500)+C[o(579)](2)+"ms");const U=performance[o(523)]()-i;return Ba(o(543)+U[o(579)](2)+"ms"),{html:B,bbox:{x:l.x,y:l.y,w:l[o(497)],h:l.height},img:Q,fullCanvas:h}}finally{lB=void 0}})(),lB}function FB(){const A=BB,t=localStorage[A(510)](Aa),e={"Content-Type":"application/json"};t&&(e[A(590)]=t);const r=ka();return r&&(e[A(517)]=r),e}async function pB(A,t,e,r){const n=BB;if(!QB())return;const s={...t,localTime:(new Date)[n(548)]()};wa(e)&&(s[n(550)]=xa(e)?fa(e):(A=>{const t=ia;if(ga(A))return A[t(272)];const e=A[t(248)];return typeof e===t(259)?e:A[t(264)]??""})(e));let o="",i={x:0,y:0,w:0,h:0},a="";const B=!("scroll"===A||A===n(527)||A===n(558)),c=Date[n(523)](),l=c-gB>=0;let g=r;const w=A===n(525)||A===n(557)||A===n(504);B&&(w&&!g||!g&&l)&&(g=await UB(e),gB=c),g&&(o=g[n(553)],i=g[n(544)],a=g.img);const h="page-blur"===A||A===n(558)||A===n(504),d={ts:Date[n(523)](),event:A,url:window[n(552)][n(519)],props:s,html:h?"":o,bbox:i,img:a};await async function(A){const t=BB,e=(localStorage[t(510)](ra)??oa)+t(528),r=localStorage[t(510)](Aa)??void 0,n=JSON[t(533)]({...A,clientId:r});try{if((await fetch(e,{method:"POST",headers:FB(),body:n,keepalive:!0,credentials:t(592)})).ok)return}catch{}try{await(async A=>{const t=BB,e=(localStorage[t(510)](ra)??oa)+"/p.gif";if(!(await fetch(e,{method:t(586),headers:FB(),body:JSON[t(533)](A),keepalive:!0,credentials:t(592),cache:"no-store"})).ok)throw new Error(t(537))})(A)}catch{}}(d)}async function fB(A={}){const t=BB;if(!QB())return;const e=typeof A[t(582)]===t(494)&&"number"==typeof A[t(585)];if(e&&Pa)return;if(!e&&wB)return;const r=localStorage[t(510)](ta),n={context:await zi()};r&&(n.ip=r);for(const[e,r]of Object[t(587)](A))n[e]=r;await pB(t(563),n,document[t(508)],{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),!e&&(wB=!0)}async function mB(){await(async(A,t)=>{const e=$a,r={canRequest:t(),geoEnabled:Za(),deviceGeoSent:Pa};if(!r[e(216)]||!r[e(205)]||r[e(204)])return;if(!("geolocation"in navigator))return;if(Wa)return;Wa=!0,Xa=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};try{await(navigator[e(210)]?.[e(195)]({name:"geolocation"}))}catch(A){}await new Promise(A=>{const t=e;let r=!1;const s=async(t,e,n)=>{r||(r=!0,Number[$a(227)](t)&&Number.isFinite(e)&&(await(async(A,t,e)=>{const r=uB;await fB({lat:A,lon:t,source:r(559),...e})})(t,e,n),Pa=!0),Wa=!1,Xa=!1,Ya=!0,A())};navigator[t(212)][t(219)](A=>{const t=$a,e=A[t(229)];s(e[t(214)],e.longitude,{accuracy:e[t(192)],altitude:"number"==typeof e.altitude?e[t(228)]:void 0,altitudeAccuracy:typeof e[t(231)]===t(215)?e[t(231)]:void 0,heading:typeof e.heading===t(215)?e[t(225)]:void 0,speed:typeof e[t(230)]===t(215)?e[t(230)]:void 0,timestamp:A.timestamp,visibility:document[t(223)],focused:document[t(193)]()})},A=>{const t=$a,e=A?.[t(200)],r={error:{code:e,name:1===e?t(194):2===e?"POSITION_UNAVAILABLE":3===e?t(211):"UNKNOWN",message:A?.[t(208)]??""},online:navigator.onLine,visibility:document[t(223)],focused:document[t(193)](),secure:window[t(199)],proto:location[t(222)],host:location[t(226)]};s(void 0,void 0,r)},n)})})(0,QB)}function yB(){(A=>{const t=$a;if(Ja||!Za()||Pa)return;Ja=!0;const e=()=>{const t=$a;window[t(224)](t(197),e,!0),window[t(224)]("keydown",e,!0),A()};window[t(221)]("pointerdown",e,!0),window[t(221)]("keydown",e,!0)})(mB)}Na();let HB=!document.hidden&&document[BB(580)](),EB=document[BB(580)]();function IB(){const A=BB;if(CB())return;const t=!document.hidden&&document[A(580)]();t&&(EB=!0),EB||t?t!==HB&&(HB=t,pB(A(t?558:527),{},document.body)):HB=t}function bB(){const A=BB;(()=>{const A=globalThis;return!A[hB]&&(Object[BB(540)](A,hB,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(window[A(505)](A(531),()=>{const t=A;QB()&&(fB(),(window[t(521)]||location[t(522)]===t(506))&&(Za()&&yB(),window[t(505)](t(569),()=>{qa()&&mB()}),document.addEventListener(t(518),()=>{!document.hidden&&qa()&&mB()})))}),window[A(505)](A(573),t=>{t[A(560)]===$i&&((()=>{const A=BB;return localStorage.getItem($i)===A(546)})()?(wB=!1,fB(),Za()&&yB()):(wB=!1,za())),t.key===qi&&(Za()?yB():za())}),window[A(505)]("load",()=>{const t=A;QB()&&pB(t(504),{url:window[t(552)].href,title:document[t(524)],ref:document.referrer},document[t(508)])}),addEventListener("pointerdown",(()=>{let t=0;return(...e)=>{const r=Date[aa(289)]();r-t>=50&&(t=r,(t=>{const e=A;if(CB())return;const r=t[e(577)]instanceof Element?t[e(577)].closest(dB):null;r instanceof HTMLElement&&(cB=UB(r))})(...e))}})(),{capture:!0,passive:!0}),addEventListener(A(525),async t=>{const e=A;if(CB())return;if(!(t[e(577)]instanceof Element))return;const r=t[e(577)][e(501)](dB);if(!(r instanceof HTMLElement))return;const n=(A=>{const t=BB,e=A.getAttribute(t(489))?.[t(509)]();if(e)return e;const r=A[t(524)][t(509)]();if(r)return r;const n=A[t(512)]?.trim();return n||t(554)})(r);(async()=>{const A=e,t=cB?await cB:void 0;cB=void 0,pB(A(525),{tag:r[A(565)],label:n},r,t)})()},!0),addEventListener("keydown",t=>{const e=A;if(!CB()&&"Enter"===t[e(560)]){const A=t.target;if(!(A instanceof HTMLElement))return;const r=A.tagName;if(r===e(514)||r===e(488)){const t=A instanceof HTMLInputElement?A[e(516)]:void 0,n=A.id||void 0;pB(e(557),{tag:r,name:t??n},A)}else if(wa(A)){const t=(A=>{const t=ia;let e=A;for(;e&&e!==document[t(270)];){const A=e.getAttribute(t(276));if(A===t(262)||""===A||A===t(251))return e;e=e[t(263)]}return null})(A)??A;if("newline"===t.dataset[e(513)])return;const r=t[e(495)](e(532))?.[e(549)](),n=t.id||void 0,s=t[e(495)](e(516))||t[e(495)]("aria-label")||n;pB(e(557),{tag:e(578),role:r??e(536),name:s},t)}}},{capture:!0}),["focus",A(564)].forEach(t=>{window[A(505)](t,IB)}),document[A(505)](A(518),IB),window.addEventListener(A(538),(()=>{let t;return(...e)=>{const r=aa;void 0!==t&&window[r(291)](t),t=window[r(293)](()=>{t=void 0,(()=>{const t=A;CB()||pB(t(538),{scrollX:window[t(487)],scrollY:window[t(571)]},document[t(508)])})(...e)},250)}})(),{passive:!0}),window[A(530)]??={send(A,t){QB()&&pB(A,t,document.body)}})}function xB(){const A=["lat","[onclick]","5578QoXxFf","lon","POST","entries","cloneNode","getComputedStyle","x-sl-access-token","19152700WdiUvd","omit","10717668kpFkTK","forEach","getBoundingClientRect","scrollX","TEXTAREA","aria-label","button","left","data-intent-redact","2090460aBurnw","number","getAttribute","input, textarea, select, [data-intent-redact]","width","7GbEAwG",'input[type="button"]',"[Timing] jpeg-encoding: ","closest","__intent__sdk__initialized__","toDataURL","pageview","addEventListener","localhost","innerHeight","body","trim","getItem",'input[type="submit"]',"textContent","intentEnter","INPUT","hasAttribute","name","x-intent-sid","visibilitychange","href","image/jpeg","isSecureContext","hostname","now","title","click","289878qnJPZH","page-blur","/events","SELECT","intent","load","role","stringify","bottom","top","contenteditable","pixel body fallback failed","scroll","outerHTML","defineProperty","join","attributes","[Timing] capture-total: ","bbox","setAttribute","granted","innerWidth","toISOString","toLowerCase","value","right","location","html","<no visible label>","absolute","267wjTszy","input-submit","page-focus","device","key","3387560mEeUfq","from","context","blur","tagName","querySelector","[Timing] serialize: ","12QkUihl","focus","length","scrollY","innerHTML","storage","712695PlMzsD","a[href]","fixed","target","CONTENTEDITABLE","toFixed","hasFocus","[Timing] html2canvas-pro: "];return(xB=()=>A)()}function KB(A,t){const e=vB;try{if(void 0===t)return;localStorage[e(477)](A,t?A===e(487)?e(469):e(494):e(486))}catch{}}function LB(){const A=["debugPanel","156104xyeqPs","number","disabled","intent:consent","6JUnmUs","intent:data-sid-max-age","2496816mPNOpL","function","undefined","[Intent SDK] ⚠️ Debug panel is enabled. This feature is NOT recommended for production use. ","enabled","sidMaxAgeSeconds","459382xVmici","7PIcuWM","intent:debug","consent","344950dHHCmu","intent:data-base-url","randomUUID","It exposes internal SDK behavior and should only be used during development.","432948iUnMgK","intent_sid","clientId","granted","warn","1720960sklyDD","baseUrl","now","debug","random","intent:data-client-id","setItem","isFinite","https://intent.callimacus.ai","intent:data-ip","48352jPPUly","intent:geo"];return(LB=()=>A)()}function vB(A,t){return A-=467,LB()[A]}(A=>{const t=vB,e=A();for(;;)try{if(122273==parseInt(t(484))/1+parseInt(t(496))/2+-parseInt(t(504))/3+parseInt(t(481))/4+-parseInt(t(500))/5*(parseInt(t(488))/6)+-parseInt(t(497))/7*(-parseInt(t(471))/8)+-parseInt(t(490))/9)break;e.push(e.shift())}catch(A){e.push(e.shift())}})(LB),A.clearIntentSessionId=()=>{Ra()},A.ensureIntentSessionId=()=>{Na()},A.getIntentSessionId=()=>Va(vB(467)),A.initIntent=(A={})=>{const t=vB;localStorage.setItem(t(476),A[t(468)]??""),localStorage[t(477)](t(480),A.ip??""),localStorage.setItem(t(501),A[t(472)]??t(479)),typeof A.sidMaxAgeSeconds===t(485)&&localStorage[t(477)]("intent:data-sid-max-age",String(A[t(495)])),KB(t(487),A[t(499)]),KB(t(482),A.geo),KB(t(498),A[t(474)]),void 0!==A.debugPanel&&t(483),A.consent&&(Va(t(467))||Ga(typeof crypto!==t(492)&&typeof crypto.randomUUID===t(491)?crypto[t(502)]():Date[t(473)]()+"-"+Math[t(475)](),A[t(495)])),bB()},A.setConsent=A=>{KB("intent:consent",A)},A.setDebug=A=>{KB(vB(498),A)},A.setDebugPanel=function(A){},A.setGeo=A=>{KB(vB(482),A)},A.setIntentSessionMaxAge=A=>{const t=vB;Number[t(478)](A)&&localStorage[t(477)](t(489),String(A));const e=Va(t(467));e&&Ga(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,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,""").replace(/>/g,">")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,""")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,""")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,""")+'"'),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?"👨".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",">","textbox","clearTimeout","<","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,"&")[t(451)](/</g,t(439))[t(451)](/>/g,t(436))[t(451)](/"/g,""")[t(451)](/'/g,"'")}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"})});
|