@solomei-ai/intent 2.0.4 → 2.0.5

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.
@@ -4,9 +4,9 @@
4
4
  */
5
5
  ((A,t)=>{"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((A="undefined"!=typeof globalThis?globalThis:A||self).Intent={})})(this,function(A){"use strict";
6
6
  /*!
7
- * html2canvas-pro 2.3.3 <https://yorickshan.github.io/html2canvas-pro/>
7
+ * html2canvas-pro 2.3.7 <https://yorickshan.github.io/html2canvas-pro/>
8
8
  * Copyright (c) 2024-present yorickshan and html2canvas-pro contributors
9
9
  * Released under MIT License
10
- */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}(),d="undefined"==typeof Uint8Array?[]:new Uint8Array(256),h=0;h<64;h++)d["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(h)]=h;var Q,u,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):(Q=F,u=Math.ceil((24+F[4])/4),Q.slice?Q.slice(u,C):new Uint32Array(Array.prototype.slice.call(Q,u,C))),new w(F[0],F[1],F[2],F[3],f,m)),j=[O,36],q=[1,2,3,5],AA=[y,8],tA=[T,M],eA=q.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 $;var s=r-1;if(Array.isArray(n)&&!0===n[s])return $;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 $;if(-1!==q.indexOf(a))return"!";if(-1!==q.indexOf(c))return $;if(-1!==AA.indexOf(c))return $;if(8===oA(s,t))return _;if(11===z.get(A[s]))return $;if((a===V||a===G)&&11===z.get(A[i]))return $;if(7===a||7===c)return $;if(9===a)return $;if(-1===[y,H,E].indexOf(a)&&9===c)return $;if(-1!==[I,b,x,D,k].indexOf(c))return $;if(oA(s,t)===v)return $;if(sA(23,v,s,t))return $;if(sA([I,b],L,s,t))return $;if(sA(12,12,s,t))return $;if(a===y)return _;if(23===a||23===c)return $;if(16===c||16===a)return _;if(-1!==[H,E,L].indexOf(c)||14===a)return $;if(36===B&&-1!==nA.indexOf(a))return $;if(a===k&&36===c)return $;if(c===K)return $;if(-1!==j.indexOf(c)&&a===S||-1!==j.indexOf(a)&&c===S)return $;if(a===T&&-1!==[P,V,G].indexOf(c)||-1!==[P,V,G].indexOf(a)&&c===M)return $;if(-1!==j.indexOf(a)&&-1!==tA.indexOf(c)||-1!==tA.indexOf(a)&&-1!==j.indexOf(c))return $;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 $;if(-1!==[S,k,D,I,b].indexOf(c))for(var l=s;l>=0;){if((g=t[l])===S)return $;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 $;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 $;if(-1!==rA.indexOf(a)&&-1!==[K,M].indexOf(c)||-1!==rA.indexOf(c)&&a===T)return $;if(-1!==j.indexOf(a)&&-1!==j.indexOf(c))return $;if(a===D&&-1!==j.indexOf(c))return $;if(-1!==j.concat(S).indexOf(a)&&c===v&&-1===Z.indexOf(A[i])||-1!==j.concat(S).indexOf(c)&&a===b)return $;if(41===a&&41===c){for(var w=e[s],d=1;w>0&&41===t[--w];)d++;if(d%2!=0)return $}return a===V&&c===G?$:_},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,dA=A=>A>=0&&A<=8||11===A||A>=14&&A<=31||127===A,hA=(A,t)=>92===A&&10!==t,QA=(A,t,e)=>45===A?gA(t)||hA(t,e):!!gA(A)||!(92!==A||!hA(A,t)),uA=(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)||hA(t,e)){const r=QA(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(uA(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(uA(t,e,r))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(QA(t,e,r))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===e&&62===r)return this.consumeCodePoint(),this.consumeCodePoint(),DA;break}case 46:if(uA(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(QA(this.peekCodePoint(0),this.peekCodePoint(1),this.peekCodePoint(2)))return{type:7,value:this.consumeName()};break;case 91:return TA;case 92:if(hA(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||dA(t))return this.consumeBadUrlRemnants(),KA;if(92===t){if(!hA(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;hA(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()):hA(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 QA(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(!hA(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,$A=A=>{const t=[];let e=[];return A.forEach(A=>{if(4===A.type){if(0===e.length)throw new Error("Error parsing function args, zero tokens for arg");return t.push(e),void(e=[])}31!==A.type&&e.push(A)}),e.length&&t.push(e),t},_A=(A,t)=>11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type,zA=/(\d+(?:\.\d+)?|[+\-*/()])/g,jA=A=>{const t=A.match(zA);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},qA=(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=jA(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},dt=(A,t,e)=>{const[r,n]=A;return[ht(r,t),ht(void 0!==n?n:r,e)]},ht=(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},Qt="grad",ut="turn",Ct=(A,t)=>{if(15===t.type)switch(t.unit){case"deg":return Math.PI*t.number/180;case Qt:return Math.PI/200*t.number;case"rad":return t.number;case ut:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},Ut=A=>15===A.type&&("deg"===A.unit||A.unit===Qt||"rad"===A.unit||A.unit===ut),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(qA(Math.round(255*n[0]),0,255),qA(Math.round(255*n[1]),0,255),qA(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)?ht(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])?ht(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])?ht(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])?ht(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=zt[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=qt[t.value.toUpperCase()];if(void 0!==A)return A}return qt.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(qA(Math.round(255*A[0]),0,255),qA(Math.round(255*A[1]),0,255),qA(Math.round(255*A[2]),0,255),qA(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]])}},$t={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[qA(Math.round(255*t),0,255),qA(Math.round(255*e),0,255),qA(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]]}},zt={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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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 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===qt[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=$t[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])}}},jt=(A,t)=>Jt(A,RA.create(t).parseComponentValue()),qt={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,de=A=>!ee(A)&&A.tagName.indexOf("-")>0,he=new Set(["IMG","VIDEO","AUDIO","CANVAS","IFRAME","INPUT","TEXTAREA","SELECT","BR","HR","META","LINK","BASE","COL","SOURCE","TRACK","WBR","AREA","PARAM","EMBED","OBJECT"]),Qe={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}}},ue=(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&&ue(s,1)&&""!==i?i=t[n]+i:n>1||1===n&&0===r||1===n&&1===r&&ue(s,2)||1===n&&1===r&&ue(s,4)&&A>100||1===n&&r>1&&ue(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=ht(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=ht(A[0],t)-r,o=n-ht(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 $A(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 $A(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",$e="contain",_e=(A,t)=>{let e=0,r=3;const n=[],s=[];return $A(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 $e: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}},ze=(A,t)=>({...Ge(A,t),type:3}),je=A=>1===A.type,qe=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 $A(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 $e: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 $A(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":ze,"-webkit-repeating-linear-gradient":ze,"-moz-repeating-linear-gradient":ze,"-ms-repeating-linear-gradient":ze,"-o-repeating-linear-gradient":ze},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)=>$A(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)=>$A(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)=>$A(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"),dr=lr("bottom"),hr=lr("left"),Qr=A=>({name:`border-${A}-radius`,initialValue:"0 0",prefix:!1,type:1,parse:(A,t)=>ct(t.filter(ot))}),ur=Qr("top-left"),Cr=Qr("top-right"),Ur=Qr("bottom-right"),Fr=Qr("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=$A(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)?ht(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"),$r=Wr("bottom"),_r=Wr("left"),zr={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"},qr=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=qr("top"),tn=qr("right"),en=qr("bottom"),rn=qr("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")?[]:$A(t).map(t=>{const e={color:qt.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]]}},dn={name:"rotate",initialValue:"none",prefix:!1,type:0,parse:(A,t)=>20===t.type&&"none"===t.value?null:17===t.type&&0===t.number?0:15===t.type?180*Ct(0,t)/Math.PI:null},hn={name:"visibility",initialValue:"none",prefix:!1,type:2,parse:(A,t)=>{switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},Qn={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"}}},un=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")}},pn=(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")},fn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:1},mn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},yn={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 NA(t)?t.number:"auto"}},In={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":NA(t)?t.number:"auto"},bn={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}'`)}},xn={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)},vn={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}},Sn=(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},Mn={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:Sn(t,1).map(([A,t])=>({counter:A,increment:t}))}},Tn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>0===t.length?[]:Sn(t,0).filter(([A])=>"none"!==A).map(([A,t])=>({counter:A,reset:t}))},kn={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:(A,t)=>t.filter(NA).map(A=>pn(0,A))},On={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:""},Gn={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:$A(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})},Rn={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}},Nn={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Pn={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:(A,t)=>NA(t)?t.number:0},Xn={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},Jn={name:"object-fit",initialValue:"fill",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Wn(t.value),0)},Wn=A=>{switch(A){case"contain":return 2;case"cover":return 4;case"none":return 8;case"scale-down":return 16}return 0},Yn={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)),zn={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=qn(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}},qn=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(" ")},As={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}}},ts={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},es={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]]}},rs=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"})),ns={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)&&rs.has(A.value)&&e.push(A.value);return e.length>0?e:["normal"]}},ss={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])}},os={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}}},is=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},as={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(is(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 cs=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}},ls=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}},gs=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}},ws=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 cs(this))}get background(){return this._background??(this._background=new ls(this))}get font(){return this._font??(this._font=new gs(this))}get layout(){return this._layout??(this._layout=new ws(this))}static{this.standardProps=[["animationDuration",kn,"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",dr,"borderBottomColor"],["borderLeftColor",hr,"borderLeftColor"],["borderTopLeftRadius",ur,"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",Gn,"boxShadow"],["clipPath",Sr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",bn,"fontFamily"],["fontSize",xn,"fontSize"],["fontStyle",vn,"fontStyle"],["fontVariant",Ln,"fontVariant"],["fontWeight",Kn,"fontWeight"],["letterSpacing",Gr,"letterSpacing"],["lineBreak",Rr,"lineBreak"],["lineHeight",Nr,"lineHeight"],["listStyleImage",Xr,"listStyleImage"],["listStylePosition",Jr,"listStylePosition"],["listStyleType",Qe,"listStyleType"],["marginTop",Yr,"marginTop"],["marginRight",Zr,"marginRight"],["marginBottom",$r,"marginBottom"],["marginLeft",_r,"marginLeft"],["opacity",fn,"opacity"],["overflowWrap",jr,"overflowWrap"],["paddingTop",An,"paddingTop"],["paddingRight",tn,"paddingRight"],["paddingBottom",en,"paddingBottom"],["paddingLeft",rn,"paddingLeft"],["paintOrder",Rn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",Hn,"textDecorationStyle"],["textDecorationThickness",En,"textDecorationThickness"],["textUnderlineOffset",In,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Yn,"textOverflow"],["transform",Bn,"transform"],["transformOrigin",wn,"transformOrigin"],["rotate",dn,"rotate"],["visibility",hn,"visibility"],["webkitTextStrokeColor",Nn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Pn,"webkitTextStrokeWidth"],["webkitLineClamp",Xn,"webkitLineClamp"],["wordBreak",Qn,"wordBreak"],["writingMode",Un,"writingMode"],["zIndex",Fn,"zIndex"],["objectFit",Jn,"objectFit"],["imageRendering",Zn,"imageRendering"],["mixBlendMode",zn,"mixBlendMode"],["filter",jn,"filter"],["fontVariantLigatures",As,"fontVariantLigatures"],["zoom",ts,"zoom"],["objectPosition",es,"objectPosition"],["backgroundBlendMode",ns,"backgroundBlendMode"],["borderImageSource",ss,"borderImageSource"],["borderImageSlice",os,"borderImageSlice"],["borderImageRepeat",as,"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,Vr,void 0),this.textDecorationColor=Cs(t,mn,void 0),this.textDecorationLine=Cs(t,yn,void 0);const A=Cs(t,zr,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,Vr,e.cssFloat),this.textDecorationColor=Cs(t,mn,e.textDecorationColor??e.color),this.textDecorationLine=Cs(t,yn,e.textDecorationLine??e.textDecoration);const n=Cs(t,zr,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 ue(this.display,4)||ue(this.display,33554432)||ue(this.display,268435456)||ue(this.display,536870912)||ue(this.display,67108864)||ue(this.display,134217728)}},hs=class{constructor(A,t){this.content=Cs(A,Dn,t.content),this.quotes=Cs(A,On,t.quotes)}},Qs=class{constructor(A,t){this.counterIncrement=Cs(A,Mn,t.counterIncrement),this.counterReset=Cs(A,Tn,t.counterReset)}};const us=new Map,Cs=(A,t,e)=>{const r=null!=e?e.toString():t.initialValue;let n=us.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 pn(0,o.parseComponentValue())}}})();if(n||(n=new Map,us.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)||!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)}},ps=class{constructor(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new Ce,this.quoteDepth=0,this.slotCloner=new Fs((A,t)=>this.cloneNode(A,t),{ignoreElements:e.ignoreElements,copyStyles:e.copyStyles??!0},A),!t.ownerDocument)throw new Error("Cloned element does not have an owner document");if(!this.options.iframeContainer){const A=(A=>{let t=A;for(;t;){if(t.parentNode&&t.parentNode.host)return t.parentNode;const A=t.getRootNode();if(A&&A!==t.ownerDocument&&A.host)return A;t=t.parentNode}return null})(t);A&&(this.options.iframeContainer=A)}this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}toIFrame(A,t){const e=fs(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 ys(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const B=bs(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)}xs(this.referenceElement.ownerDocument,r,n),o.close();const c=o.adoptNode(this.documentElement);return Ts(c,a),o.replaceChild(c,o.documentElement),i}createElementClone(A){if(Us(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")),de(t)&&!ee(t)?this.createCustomElementClone(t):t}createCustomElementClone(A){const t=document.createElement("div");if(t.className=A.className,Is(A.style,t),A.shadowRoot)try{t.attachShadow({mode:"open"})}catch(A){this.context.logger.error("Failed to attach shadow root to custom element clone:",A)}return t}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)&&!he.has(r.tagName);this.referenceElement===A&&re(n)&&(this.clonedReferenceElement=n),se(n)&&Ss(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))&&!Be(A)||t)&&Is(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 hs(this.context,e),i=s.createElement("html2canvaspseudoelement");Is(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)?Qe.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)?Qe.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(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} ${vs}`;const a=0===r?` ${Ls}`:` ${vs}`;return ee(t)?t.className.baseValue+=a:t.className+=a,i}static destroy(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)}};const fs=(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},ms=A=>new Promise(t=>{A.complete?t():A.src?(A.onload=t,A.onerror=t):t()}),ys=A=>Promise.all([].slice.call(A.images,0).map(ms)),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"],Is=(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},bs=A=>{let t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=" "+A.internalSubset.replace(/"/g,"&quot;").replace(/>/g,"&gt;")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,"&quot;")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,"&quot;")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,"&quot;")+'"'),t+=">"),t},xs=(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",vs="___html2canvas___pseudoelement_after",Ds='{\n content: "" !important;\n display: none !important;\n}',Ss=(A,t)=>{Ms(A,`.${Ls}:before${Ds}\n .${vs}:after${Ds}`,t)},Ms=(A,t,e)=>{const r=A.ownerDocument;if(r){const n=r.createElement("style");n.textContent=t,e&&(n.nonce=e),A.appendChild(n)}},Ts=(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 ks=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))}},Os=class{constructor(A,t,e={}){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 ds(A,A.config.window.getComputedStyle(t,null)),!1!==e.normalizeDom&&re(t)&&(this.originalStyles=ks.normalizeElement(t,this.styles),this.originalElement=t),this.bounds=s(this.context,t),Us(t,4)&&(this.debugRender=!0)}restore(){this.originalStyles&&this.originalElement&&(ks.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),Gs=0;Gs<64;Gs++)Vs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Gs)]=Gs;for(var Rs=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),Ns=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}(),Ps="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Xs=0;Xs<64;Xs++)Ps["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Xs)]=Xs;var Js=8,Ws=9,Ys=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=Vs[A.charCodeAt(t)],r=Vs[A.charCodeAt(t+1)],n=Vs[A.charCodeAt(t+2)],s=Vs[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=Rs(s,12,n[4]/2),i=2===n[5]?Rs(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 Ns(n[0],n[1],n[2],n[3],o,i)})(),zs="×",js=A=>_s.get(A),qs=(A,t,e)=>{var r=e-2,n=t[r],s=t[e-1],o=t[e];if(2===s&&3===o)return zs;if(2===s||3===s||4===s)return"÷";if(2===o||3===o||4===o)return"÷";if(s===Js&&-1!==[Js,Ws,Ys,Zs].indexOf(o))return zs;if(!(s!==Ys&&s!==Ws||o!==Ws&&10!==o))return zs;if((s===Zs||10===s)&&10===o)return zs;if(13===o||5===o)return zs;if(7===o)return zs;if(1===s)return zs;if(13===s&&14===o){for(;5===n;)n=t[--r];if(14===n)return zs}if(15===s&&15===o){for(var i=0;15===n;)i++,n=t[--r];if(i%2==0)return zs}return"÷"};const Ao=A=>0===A[0]&&255===A[1]&&0===A[2]&&255===A[3],to=(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},eo=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))}`}),ro={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(ro,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){const A=ro.SUPPORT_RANGE_BOUNDS&&(A=>{const t=A.createElement("boundtest");t.style.width="50px",t.style.display="block",t.style.fontSize="12px",t.style.letterSpacing="0px",t.style.wordSpacing="0px",A.body.appendChild(t);const e=A.createRange();t.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const 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(ro,"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(ro,"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=to(e,e,0,0,n);return r.fillStyle="red",r.fillRect(0,0,e,e),eo(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",Ao(n)?eo(to(e,e,0,0,o)):Promise.reject(new Error("ForeignObject rendering not supported"))}).then(A=>(r.drawImage(A,0,0),Ao(r.getImageData(0,0,e,e).data))).catch(()=>!1)})(document):Promise.resolve(!1);return Object.defineProperty(ro,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){const A=void 0!==(new Image).crossOrigin;return Object.defineProperty(ro,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){const A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(ro,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){const A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(ro,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){const A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(ro,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}};var no=class{constructor(A,t){this.text=A,this.bounds=t}};const so=(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},oo=A=>{if(ro.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=zs;r<e&&(A=qs(0,s,++r))===zs;);if(A!==zs||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)},io=[32,160,4961,65792,65793,4153,4241],ao=(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=z.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=$;c<a&&(A=iA(e,s,n,++c,i))===$;);if(A!==$||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===io.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=co(t.data,e.textTransform),this.text.length!==t.data.length&&(t.data=this.text),this.textBounds=((A,t,e,r)=>{const o=((A,t)=>un(t.writingMode)||0!==t.letterSpacing?oo(A):((A,t)=>{if(ro.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(A=>A.segment)}return ao(A,t)})(A,t))(this.text,e),i=[];let a=0;return o.forEach(t=>{if(e.textDecorationLine.length||t.trim().length>0)if(ro.SUPPORT_RANGE_BOUNDS){const e=so(r,a,t.length).getClientRects();if(e.length>1){const e=oo(t);let s=0;e.forEach(t=>{i.push(new no(t,n.fromDOMRectList(A,so(r,s+a,t.length).getClientRects()))),s+=t.length})}else i.push(new no(t,n.fromDOMRectList(A,e)))}else{const e=r.splitText(t.length);i.push(new no(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 ro.SUPPORT_RANGE_BOUNDS||(r=r.splitText(t.length));a+=t.length}),i})(A,0,e,t)}};const co=(A,t)=>{switch(t){case 1:return A.toLowerCase();case 3:return A.replace(lo,go);case 2:return A.toUpperCase();default:return A}},lo=/(^|\s|:|-|\(|\))([a-z])/g,go=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var wo=class extends Os{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)}},ho=class extends Os{constructor(A,t){super(A,t),this.canvas=t,this.intrinsicWidth=t.width,this.intrinsicHeight=t.height}},Qo=class extends Os{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)}},uo=class extends Os{constructor(A,t){super(A,t),this.value=t.value}},Co=class extends Os{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}],po=707406591;var fo=class extends Os{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}}},mo=class extends Os{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},yo=class extends Os{constructor(A,t){super(A,t),this.value=t.value}},Ho=class extends Os{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):qt.TRANSPARENT,r=t.contentWindow.document.body?jt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):qt.TRANSPARENT;this.backgroundColor=ft(e)?ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Eo=["OL","UL","MENU"],Io=(A,t,e,r)=>{for(let n,s=t.firstChild;s;s=n)if(n=s.nextSibling,te(s)&&s.data.length>0)e.textNodes.push(new Bo(A,s,e.styles));else if(Ae(s))if(we(s)&&s.assignedNodes)s.assignedNodes().forEach(t=>Io(A,t,e,r));else{const t=bo(A,s);t.styles.isVisible()&&(Ko(s,t,r)?t.createsRealStackingContext=!0:Lo(t.styles)&&(t.createsStackingContext=!0),-1!==Eo.indexOf(s.tagName)&&(t.isListOwner=!0),e.elements.push(t),s.shadowRoot?Io(A,s.shadowRoot,t,r):le(s)||ne(s)||ge(s)||Io(A,s,t,r))}},bo=(A,t)=>ae(t)?new wo(A,t):oe(t)?new ho(A,t):ne(t)?new Qo(A,t):"LI"===t.tagName?new uo(A,t):"OL"===t.tagName?new Co(A,t):(A=>"INPUT"===A.tagName)(t)?new fo(A,t):ge(t)?new mo(A,t):le(t)?new yo(A,t):Be(t)?new Ho(A,t,xo):new Os(A,t),xo=(A,t)=>{const e=bo(A,t);return e.createsRealStackingContext=!0,Io(A,t,e,e),e},Ko=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),Lo=A=>!(!A.isPositioned()&&!A.isFloating())||ue(A.display,268435456)||ue(A.display,33554432)||ue(A.display,536870912)||ue(A.display,134217728),vo=(A,t)=>A.length===t.length&&A.some((A,e)=>A===t[e]);var Do=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 So=(A,t,e)=>new Do(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e);var Mo=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=So(this.start,this.startControl,t),n=So(this.startControl,this.endControl,t),s=So(this.endControl,this.end,t),o=So(r,n,t),i=So(n,s,t),a=So(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 To=A=>1===A.type;var ko=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),[B,c]=dt(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,d=e.height-a,h=e.width-i,Q=e.height-c,u=t.borderTopWidth,C=t.borderRightWidth,U=t.borderBottomWidth,F=t.borderLeftWidth,p=ht(t.paddingTop,A.bounds.width),f=ht(t.paddingRight,A.bounds.width),m=ht(t.paddingBottom,A.bounds.width),y=ht(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=r>0||n>0?Oo(e.left+F/3,e.top+u/3,r-F/3,n-u/3,0):new Do(e.left+F/3,e.top+u/3),this.topRightBorderDoubleOuterBox=r>0||n>0?Oo(e.left+w,e.top+u/3,s-C/3,o-u/3,1):new Do(e.left+e.width-C/3,e.top+u/3),this.bottomRightBorderDoubleOuterBox=i>0||a>0?Oo(e.left+h,e.top+d,i-C/3,a-U/3,2):new Do(e.left+e.width-C/3,e.top+e.height-U/3),this.bottomLeftBorderDoubleOuterBox=B>0||c>0?Oo(e.left+F/3,e.top+Q,B-F/3,c-U/3,3):new Do(e.left+F/3,e.top+e.height-U/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?Oo(e.left+2*F/3,e.top+2*u/3,r-2*F/3,n-2*u/3,0):new Do(e.left+2*F/3,e.top+2*u/3),this.topRightBorderDoubleInnerBox=r>0||n>0?Oo(e.left+w,e.top+2*u/3,s-2*C/3,o-2*u/3,1):new Do(e.left+e.width-2*C/3,e.top+2*u/3),this.bottomRightBorderDoubleInnerBox=i>0||a>0?Oo(e.left+h,e.top+d,i-2*C/3,a-2*U/3,2):new Do(e.left+e.width-2*C/3,e.top+e.height-2*U/3),this.bottomLeftBorderDoubleInnerBox=B>0||c>0?Oo(e.left+2*F/3,e.top+Q,B-2*F/3,c-2*U/3,3):new Do(e.left+2*F/3,e.top+e.height-2*U/3),this.topLeftBorderStroke=r>0||n>0?Oo(e.left+F/2,e.top+u/2,r-F/2,n-u/2,0):new Do(e.left+F/2,e.top+u/2),this.topRightBorderStroke=r>0||n>0?Oo(e.left+w,e.top+u/2,s-C/2,o-u/2,1):new Do(e.left+e.width-C/2,e.top+u/2),this.bottomRightBorderStroke=i>0||a>0?Oo(e.left+h,e.top+d,i-C/2,a-U/2,2):new Do(e.left+e.width-C/2,e.top+e.height-U/2),this.bottomLeftBorderStroke=B>0||c>0?Oo(e.left+F/2,e.top+Q,B-F/2,c-U/2,3):new Do(e.left+F/2,e.top+e.height-U/2),this.topLeftBorderBox=r>0||n>0?Oo(e.left,e.top,r,n,0):new Do(e.left,e.top),this.topRightBorderBox=s>0||o>0?Oo(e.left+w,e.top,s,o,1):new Do(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?Oo(e.left+h,e.top+d,i,a,2):new Do(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=B>0||c>0?Oo(e.left,e.top+Q,B,c,3):new Do(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?Oo(e.left+F,e.top+u,Math.max(0,r-F),Math.max(0,n-u),0):new Do(e.left+F,e.top+u),this.topRightPaddingBox=s>0||o>0?Oo(e.left+Math.min(w,e.width-C),e.top+u,w>e.width+C?0:Math.max(0,s-C),Math.max(0,o-u),1):new Do(e.left+e.width-C,e.top+u),this.bottomRightPaddingBox=i>0||a>0?Oo(e.left+Math.min(h,e.width-F),e.top+Math.min(d,e.height-U),Math.max(0,i-C),Math.max(0,a-U),2):new Do(e.left+e.width-C,e.top+e.height-U),this.bottomLeftPaddingBox=B>0||c>0?Oo(e.left+F,e.top+Math.min(Q,e.height-U),Math.max(0,B-F),Math.max(0,c-U),3):new Do(e.left+F,e.top+e.height-U),this.topLeftContentBox=r>0||n>0?Oo(e.left+F+y,e.top+u+p,Math.max(0,r-(F+y)),Math.max(0,n-(u+p)),0):new Do(e.left+F+y,e.top+u+p),this.topRightContentBox=s>0||o>0?Oo(e.left+Math.min(w,e.width+F+y),e.top+u+p,w>e.width+F+y?0:s-F+y,o-(u+p),1):new Do(e.left+e.width-(C+f),e.top+u+p),this.bottomRightContentBox=i>0||a>0?Oo(e.left+Math.min(h,e.width-(F+y)),e.top+Math.min(d,e.height+u+p),Math.max(0,i-(C+f)),a-(U+m),2):new Do(e.left+e.width-(C+f),e.top+e.height-(U+m)),this.bottomLeftContentBox=B>0||c>0?Oo(e.left+F+y,e.top+Q,Math.max(0,B-(F+y)),c-(U+m),3):new Do(e.left+F+y,e.top+e.height-(U+m))}};const Oo=(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 Mo(new Do(A,B),new Do(A,B-i),new Do(a-o,t),new Do(a,t));case 1:return new Mo(new Do(A,t),new Do(A+o,t),new Do(a,B-i),new Do(a,B));case 2:return new Mo(new Do(a,t),new Do(a,t+i),new Do(A+o,B),new Do(A,B));default:return new Mo(new Do(a,B),new Do(a-o,B),new Do(A,t+i),new Do(A,t))}},Vo=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],Go=A=>[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox];var Ro=class{constructor(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6}},No=class{constructor(A,t){this.path=A,this.target=t,this.type=1}},Po=class{constructor(A){this.opacity=A,this.type=2,this.target=6}},Xo=class{constructor(A){this.applyClip=A,this.type=3,this.target=6}};const Jo={[$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 Wo=class{constructor(A){this.mixBlendMode=A,this.type=4,this.target=6,this.compositeOperation=Jo[A]}},Yo=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 Zo=A=>0===A.type,$o=A=>1===A.type,_o=A=>3===A.type;var zo=class{constructor(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]}},jo=class{constructor(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new ko(this.container),this.container.styles.opacity<1&&this.effects.push(new Po(this.container.styles.opacity)),null!==this.container.styles.rotate){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+ht(A[0],this.container.bounds.width),e=this.container.bounds.top+ht(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 Ro(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+ht(A[0],this.container.bounds.width),e=this.container.bounds.top+ht(A[1],this.container.bounds.height);this.effects.push(new Ro(t,e,this.container.styles.transform))}if(qo(this.container.styles)){const A=Vo(this.curves),t=Go(this.curves);vo(A,t)?this.effects.push(new No(A,6)):(this.effects.push(new No(A,2)),this.effects.push(new No(t,4)))}if(0!==this.container.styles.clipPath.type){const A=ti(this.container.styles.clipPath,this.container.bounds);A&&this.effects.push(A)}if(this.container.styles.mixBlendMode!==$n.NORMAL&&this.effects.push(new Wo(this.container.styles.mixBlendMode)),null!==this.container.styles.filter&&this.effects.push(new Yo(this.container.styles.filter)),1!==this.container.styles.zoom){const A=this.container.styles.transformOrigin,t=this.container.bounds.left+ht(A[0],this.container.bounds.width),e=this.container.bounds.top+ht(A[1],this.container.bounds.height),r=this.container.styles.zoom;this.effects.push(new Ro(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),qo(e.container.styles)){const A=Vo(e.curves),t=Go(e.curves);vo(A,t)||r.unshift(new No(t,6))}r.unshift(...A)}else r.unshift(...A);e=e.parent}return r.filter(t=>ue(t.target,A))}};const qo=A=>0!==A.overflowX||0!==A.overflowY,Ai=(A,t,e,r,n)=>"closest-side"===A?Math.min(t-e,r-t):"farthest-side"===A?Math.max(t-e,r-t):ht(A,n),ti=(A,t)=>{const{left:e,top:r,width:n,height:s}=t;switch(A.type){case 1:{const t=ht(A.left,n),o=ht(A.top,s),i=e+t,a=r+o,B=Math.max(0,n-t-ht(A.right,n)),c=Math.max(0,s-o-ht(A.bottom,s));return new Xo(A=>{A.beginPath(),A.rect(i,a,B,c),A.clip()})}case 2:{const t=e+ht(A.cx,n),o=r+ht(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):ht(A.radius,Math.sqrt(n*n+s*s)/Math.SQRT2),new Xo(A=>{A.beginPath(),A.arc(t,o,Math.max(0,i),0,2*Math.PI),A.clip()})}case 3:{const t=e+ht(A.cx,n),o=r+ht(A.cy,s),i=Ai(A.rx,t,e,e+n,n),a=Ai(A.ry,o,r,r+s,s);return new Xo(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+ht(A,n),r+ht(t,s)]);return new Xo(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 Xo(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}},ei=(A,t,e,r)=>{A.container.elements.forEach(n=>{const s=n.createsRealStackingContext,o=n.createsStackingContext,i=new jo(n,A);ue(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 zo(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);ei(i,r,s?r:e,a)}else n.styles.isInlineLevel()?t.inlineLevel.push(i):t.nonInlineLevel.push(i),ei(i,t,e,a);n.isListOwner&&ri(n,a)})},ri=(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 uo&&"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}},ni=A=>{const t=A.styles;return A.bounds.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},si=A=>{const t=A.styles,e=A.bounds,r=ht(t.paddingLeft,e.width),n=ht(t.paddingRight,e.width),s=ht(t.paddingTop,e.width),o=ht(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))},oi=(A,t,e)=>{const r=((A,t)=>0===A?t.bounds:2===A?si(t):ni(t))(ci(A.styles.backgroundOrigin,t),A),n=((A,t)=>0===A?t.bounds:2===A?si(t):ni(t))(ci(A.styles.backgroundClip,t),A),s=Bi(ci(A.styles.backgroundSize,t),e,r);let[o,i]=s;const a=dt(ci(A.styles.backgroundPosition,t),r.width-o,r.height-i),B=li(ci(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]},ii=A=>XA(A)&&"auto"===A.value,ai=A=>"number"==typeof A,Bi=(A,[t,e,r],n)=>{const[s,o]=A;if(!s)return[0,0];if(ot(s)&&o&&ot(o))return[ht(s,n.width),ht(o,n.height)];const i=ai(r);if(XA(s)&&("contain"===s.value||"cover"===s.value))return ai(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=ai(t),B=ai(e),c=a||B;if(ii(s)&&(!o||ii(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=ht(s,n.width):ot(o)&&(t=ht(o,n.height)),ii(s)?A=t*r:o&&!ii(o)||(t=A/r),[A,t]}let l=null,g=null;if(ot(s)?l=ht(s,n.width):o&&ot(o)&&(g=ht(o,n.height)),null===l||o&&!ii(o)||(g=a&&B?l/t*e:n.height),null!==g&&ii(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")},ci=(A,t)=>{const e=A[t];return void 0===e?A[0]:e},li=(A,[t,e],[r,n],s,o)=>{switch(A){case 2:return[new Do(Math.round(s.left),Math.round(s.top+e)),new Do(Math.round(s.left+s.width),Math.round(s.top+e)),new Do(Math.round(s.left+s.width),Math.round(n+s.top+e)),new Do(Math.round(s.left),Math.round(n+s.top+e))];case 3:return[new Do(Math.round(s.left+t),Math.round(s.top)),new Do(Math.round(s.left+t+r),Math.round(s.top)),new Do(Math.round(s.left+t+r),Math.round(s.height+s.top)),new Do(Math.round(s.left+t),Math.round(s.height+s.top))];case 1:return[new Do(Math.round(s.left+t),Math.round(s.top+e)),new Do(Math.round(s.left+t+r),Math.round(s.top+e)),new Do(Math.round(s.left+t+r),Math.round(s.top+e+n)),new Do(Math.round(s.left+t),Math.round(s.top+e+n))];default:return[new Do(Math.round(o.left),Math.round(o.top)),new Do(Math.round(o.left+o.width),Math.round(o.top)),new Do(Math.round(o.left+o.width),Math.round(o.height+o.top)),new Do(Math.round(o.left),Math.round(o.height+o.top))]}};var gi=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},di=["-apple-system","system-ui"],hi=/[\u2E80-\u2FFF\u3000-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uAC00-\uD7AF\uF900-\uFAFF\uFF01-\uFFEF]/,Qi=A=>hi.test(A);var ui=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new gi(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(un(r))return void this.iterateVerticalGlyphs(A,t,e,r,n);const s=oo(A.text),o=A.bounds.top+e,i=this.ctx.font;let a=A.bounds.left;for(const A of s){if(Qi(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=oo(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(!(Cn(r)||!Qi(c)&&c.trim().length>0)){const r=this.ctx.textBaseline;Qi(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(!Cn(r)&&!Qi(A)&&0===A.trim().length)break;if(!(Cn(r)||!Qi(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&&!un(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=oo(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!==di.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 no(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)return!1;const a=new no(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 Ci=(A,t)=>{t.forEach((t,e)=>{const r=To(t)?t.start:t;0===e?A.moveTo(r.x,r.y):A.lineTo(r.x,r.y),To(t)&&A.bezierCurveTo(t.startControl.x,t.startControl.y,t.endControl.x,t.endControl.y,t.end.x,t.end.y)})},Ui=(A,t)=>{A.beginPath(),Ci(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()}},pi=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):qe(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]=oi(A,e,[t,s,t/s]),l=ci(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 d=this.patternCache.get(w);if(!d){const t=this.resizeImage(r,B,c,A.styles.imageRendering);d=this.ctx.createPattern(t,g),this.patternCache.set(w,d)}this.renderRepeat(o,d,i,a)}}renderRepeatingLinearGradient(A,t,e){const[r,n,s,o,i]=oi(A,e,[null,null,null]),[a,B,c,l,g]=ke(t.angle,o,i),w=Te(t.stops,a||1),d=w[0],h=w[w.length-1].stop-d.stop;if(h<=0)return void this.renderLinearGradient(A,t,e);const Q=c-B,u=g-l,C=h/(Math.sqrt(Q*Q+u*u)||1),U=B,F=l,p=B+Q*C,f=l+u*C,m=this.canvas.ownerDocument??document,y=`rlg|${t.angle}|${Math.round(h)}|${JSON.stringify(t.stops)}`;let H=this.patternCache.get(y);if(!H){const A=m.createElement("canvas"),t=Math.max(1,Math.ceil(h));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-d.stop)/h,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]=oi(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 d=this.patternCache.get(w);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(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&&(d=this.ctx.createPattern(A,"repeat"),this.patternCache.set(w,d))}d&&this.renderRepeat(r,d,n,s)}renderRadialGradient(A,t,e){const[r,n,s,o,i]=oi(A,e,[null,null,null]),a=0===t.position.length?[gt]:t.position,B=ht(a[0],o),c=ht(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=ht(A.size[0],r),o=2===A.size.length?ht(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){Ui(this.ctx,A)}};const fi=(A,t)=>{switch(t){case 0:return yi(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return yi(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return yi(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return yi(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}},mi=(A,t)=>{const e=[];return To(A)?e.push(A.subdivide(.5,!1)):e.push(A),To(t)?e.push(t.subdivide(.5,!0)):e.push(t),e},yi=(A,t,e,r)=>{const n=[];return To(A)?n.push(A.subdivide(.5,!1)):n.push(A),To(e)?n.push(e.subdivide(.5,!0)):n.push(e),To(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),To(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n};var Hi=class{constructor(A,t){this.ctx=A.ctx,this.pathCallbacks=t}async renderSolidBorder(A,t,e){this.pathCallbacks.path(fi(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 yi(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return yi(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return yi(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return yi(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 yi(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return yi(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return yi(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return yi(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 mi(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return mi(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return mi(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return mi(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=fi(r,e);let i,a,B,c,l;2===n&&(this.pathCallbacks.path(o),this.ctx.clip()),To(o[0])?(i=o[0].start.x,a=o[0].start.y):(i=o[0].x,a=o[0].y),To(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 d=!0;if(l<=2*g)d=!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(d&&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(To(o[0])){const A=o[3],t=o[0];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Do(A.end.x,A.end.y),new Do(t.start.x,t.start.y)]),this.ctx.stroke()}if(To(o[1])){const A=o[1],t=o[2];this.ctx.beginPath(),this.pathCallbacks.formatPath([new Do(A.end.x,A.end.y),new Do(t.start.x,t.start.y)]),this.ctx.stroke()}}this.ctx.restore()}},Ei=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:d,top:h,width:Q,height:u}=A;if(Q<=0||u<=0)return;const C=Math.min(n,u),U=Math.min(s,Q),F=Math.min(o,u-C),p=Math.min(i,Q-U);this.drawRegion(t,0,0,w,c,d,h,p,C),this.drawRegion(t,a-l,0,l,c,d+Q-U,h,U,C),this.drawRegion(t,a-l,B-g,l,g,d+Q-U,h+u-F,U,F),this.drawRegion(t,0,B-g,w,g,d,h+u-F,p,F);const f=[{sx:w,sy:0,sw:a-w-l,sh:c,dx:d+p,dy:h,dw:Q-p-U,dh:C,repeat:r.horizontal},{sx:a-l,sy:c,sw:l,sh:B-c-g,dx:d+Q-U,dy:h+C,dw:U,dh:u-C-F,repeat:r.vertical},{sx:w,sy:B-g,sw:a-w-l,sh:g,dx:d+p,dy:h+u-F,dw:Q-p-U,dh:F,repeat:r.horizontal},{sx:0,sy:c,sw:w,sh:B-c-g,dx:d,dy:h+C,dw:p,dh:u-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,d+p,h+C,Q-p-U,u-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()}},Ii=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=>Zo(A)||$o(A)||_o(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){Zo(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()):_o(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 bi=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 pi({ctx:this.ctx,context:this.context,canvas:this.canvas,options:{width:t.width,height:t.height,scale:t.scale}}),this.borderRenderer=new Hi({ctx:this.ctx},{path:A=>this.path(A),formatPath:A=>this.formatPath(A)}),this.borderImageRenderer=new Ei(this.ctx),this.effectsRenderer=new Ii({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=si(A),o=Go(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:d}=((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,d=i/a,h=n?ht(n[0],1):.5,Q=n?ht(n[1],1):.5;return 2===r?d>w?(g=l/d,c+=(e.height-g)*Q):(l=g*d,B+=(e.width-l)*h):4===r?d>w?(i=a*w,s+=(A-i)*h):(a=i/w,o+=(t-a)*Q):8===r?(i>l?(s+=(i-l)*h,i=l):(B+=(l-i)*h,l=i),a>g?(o+=(a-g)*Q,a=g):(c+=(g-a)*Q,g=a)):16===r&&((d>w?l:g*d)<(i>l?i:l)?d>w?(g=l/d,c+=(e.height-g)*Q):(l=g*d,B+=(e.width-l)*h):(i>l?(s+=(i-l)*h,i=l):(B+=(l-i)*h,l=i),a>g?(o+=(a-g)*Q,a=g):(c+=(g-a)*Q,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,d),this.ctx.restore()}}async renderNodeContent(t){this.effectsRenderer.applyEffects(t.getEffects(4));const e=t.container,r=t.curves,s=e.styles,o=si(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 ho&&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,n)=>{if(r instanceof fo){const t=Math.min(r.bounds.width,r.bounds.height);"checkbox"===r.type&&r.checked?(A.save(),e([new Do(r.bounds.left+.39363*t,r.bounds.top+.79*t),new Do(r.bounds.left+.16*t,r.bounds.top+.5549*t),new Do(r.bounds.left+.27347*t,r.bounds.top+.44071*t),new Do(r.bounds.left+.39694*t,r.bounds.top+.5649*t),new Do(r.bounds.left+.72983*t,r.bounds.top+.23*t),new Do(r.bounds.left+.84*t,r.bounds.top+.34085*t),new Do(r.bounds.left+.39363*t,r.bounds.top+.79*t)]),A.fillStyle=mt(po),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(po),A.fill(),A.restore())}if((A=>A instanceof yo||A instanceof mo||A instanceof fo&&"radio"!==A.type&&"checkbox"!==A.type)(r)&&r.value.length){const[s]=t.createFontStyle(n);A.font=s;const o=wi(A,ht(n.fontSize,0));A.fillStyle=mt(r instanceof fo&&r.isPlaceholder?1970632191:n.color),A.textBaseline="alphabetic",A.textAlign=(A=>{switch(A){case 1:return"center";case 2:return"right";default:return"left"}})(r.styles.textAlign);const i=si(r);let a=0;switch(r.styles.textAlign){case 1:a+=i.width/2;break;case 2:a+=i.width}let B=0;if(r instanceof fo){const A=ht(n.fontSize,0);B=(i.height-A)/2}const c=i.add(a,B,0,0);A.save(),e([new Do(i.left,i.top),new Do(i.left+i.width,i.top),new Do(i.left+i.width,i.top+i.height),new Do(i.left,i.top+i.height)]),A.clip(),t.renderTextWithLetterSpacing(new no(r.value,c),n.letterSpacing,o,n.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(ue(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+ht(s.styles.paddingTop,s.bounds.width),s.bounds.width,Pr(o.lineHeight,o.fontSize.number)/2+1);e.renderTextWithLetterSpacing(new no(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(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.options.width,0),this.ctx.lineTo(this.options.width,this.options.height),this.ctx.lineTo(0,this.options.height),this.ctx.lineTo(0,0),this.formatPath(A.slice(0).reverse()),this.ctx.closePath()}path(A){Ui(this.ctx,A)}formatPath(A){Ci(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=Ki(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=ci(t.backgroundClip,0),o=xi(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=Vo(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)0!==t.style&&!ft(t.color)&&t.width>0&&(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)),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 jo(A,null),e=new zo(t),r=[];return ei(t,e,e,r),ri(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=wi(i,e.fontSize.number),c=new pi({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=oo(t.text);let i=r;for(const a of o){if(un(s))return void A.fillText(t.text,r,n);A.fillText(a,i,n),i+=A.measureText(a).width+e}}};const xi=(A,t)=>{switch(A){case 0:return Vo(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return Go(t)}},Ki=A=>A.backgroundClip.some(A=>3===A);var Li=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 eo(to(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}},vi=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))}},Di=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)&&!ki(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)||ki(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=!Oi(A)&&!0===this._options.useCORS&&ro.SUPPORT_CORS_IMAGES&&!r,s=!Oi(A)&&!r&&!Gi(A)&&"string"==typeof this._options.proxy&&ro.SUPPORT_CORS_XHR&&!n;if(!(r||!1!==this._options.allowTaint||Oi(A)||Gi(A)||s||n))return;let o=A;return s&&(o=await this.proxy(o)),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,(Vi(o)||n)&&(e.crossOrigin="anonymous"),e.src=o,!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=ro.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 Si=/^data:image\/svg\+xml/i,Mi=/^data:image\/.*;base64,/i,Ti=/^data:image\/.*/i,ki=A=>ro.SUPPORT_SVG_DRAWING||!Ri(A),Oi=A=>Ti.test(A),Vi=A=>Mi.test(A),Gi=A=>"blob"===A.substring(0,4),Ri=A=>"svg"===A.slice(-3).toLowerCase()||Si.test(A);var Ni=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}},Pi=class A{static{this.instanceCount=1}constructor(t,e,r){this.windowBounds=e,this.instanceName="#"+A.instanceCount++,this.config=r,this.logger=new vi({id:this.instanceName,enabled:t.logging}),this.originChecker=new Ni(r.window),this.cache=t.cache??r.cache??new Di(this,t),this.onError=t.onError}};const Xi=A=>{if(A?.aborted)throw new DOMException("The operation was aborted.","AbortError")};async function Ji(){const A=(new Intl.DateTimeFormat).resolvedOptions().timeZone,t=(A=>{const t=A<=0?"+":"-",e=Math.abs(A);return`${t}${String(Math.floor(e/60)).padStart(2,"0")}:${String(e%60).padStart(2,"0")}`})((new Date).getTimezoneOffset()),e=[];e.push(`Language: ${navigator.language}`),navigator.languages?.length&&e.push(`Languages: ${navigator.languages.join(", ")}`),e.push(`User agent: ${navigator.userAgent}`);const r=(()=>{if(!("userAgentData"in(A=navigator))||void 0===A.userAgentData)return;var A;const t=navigator.userAgentData,e=Array.isArray(t.brands)?t.brands.map(A=>`${A.brand} ${A.version}`).join(", "):void 0,r=t.platform?`${t.platform}${t.mobile?" (mobile)":""}`:void 0;return[e&&`UA brands: ${e}`,r&&`Platform: ${r}`].filter(Boolean).join(" | ")||void 0})();r&&e.push(r),e.push(`Timezone: ${A} (UTC${t})`),e.push(`Local time: ${(new Date).toString()}`);const n=window.devicePixelRatio||1;e.push(`Screen: ${screen.width}x${screen.height} @${n}x (avail ${screen.availWidth}x${screen.availHeight}, ${screen.colorDepth}-bit)`);const s=screen.orientation&&"type"in screen.orientation?screen.orientation.type:void 0;e.push(`Viewport: ${window.innerWidth}x${window.innerHeight}${s?`, orientation ${s}`:""}`),e.push(`CPU: ${navigator.hardwareConcurrency} cores`);const o=await async function(){const A=[];let t="browser API";if("connection"in(e=navigator)&&void 0!==e.connection){const t=navigator.connection;t?.effectiveType&&A.push(t.effectiveType),"number"==typeof t?.downlink&&A.push(`~${t.downlink} Mbps`),"number"==typeof t?.rtt&&A.push(`${t.rtt} ms`),t?.saveData&&A.push("saveData")}else{const e=((A=20)=>{const t=performance.getEntriesByType("navigation").find(A=>"navigation"===A.entryType),e=t?Math.max(0,t.responseStart-t.requestStart):void 0,r=performance.getEntriesByType("resource").filter(A=>"resource"===A.entryType);let n=0,s=0;for(const t of r.slice(0,Math.max(0,A))){const A=t.encodedBodySize>0?t.encodedBodySize:t.transferSize>0?t.transferSize:0,e=t.duration;A>0&&e>0&&Number.isFinite(e)&&(n+=A,s+=e)}const o=s>0?8*n/s:void 0;return{downlinkMbps:"number"==typeof o?o/1e3:void 0,rttMs:e}})();"number"==typeof e.downlinkMbps&&A.push(`~${e.downlinkMbps.toFixed(1)} Mbps`),"number"==typeof e.rttMs&&A.push(`TTFB ~${Math.round(e.rttMs)} ms`),t="inferred"}var e;const r=performance.getEntriesByType("navigation").find(A=>"navigation"===A.entryType);if(r){const t=Math.max(0,r.responseStart-r.requestStart);A.some(A=>A.startsWith("TTFB"))||A.push(`TTFB ~${Math.round(t)} ms`)}return A.length?`Network: ${A.join(", ")} (${t})`:void 0}();o&&e.push(o),e.push((()=>{const A="function"==typeof matchMedia&&matchMedia("(pointer: coarse)").matches,t="function"==typeof matchMedia&&matchMedia("(pointer: fine)").matches;return`Pointer/Touch: ${A?"coarse":t?"fine":"unknown"}, maxTouchPoints ${navigator.maxTouchPoints}`})());const i=await(async()=>{var A;if("getBattery"in(A=navigator)&&"function"==typeof A.getBattery)try{const A=await navigator.getBattery(),t=Math.round(100*A.level);return`Battery: ${[`${Number.isFinite(t)?t:0}%`,A.charging?"charging":"not charging"].join(", ")}`}catch{}})();i&&e.push(i),e.push(`CookiesEnabled: ${navigator.cookieEnabled?"yes":"no"}; DNT: ${navigator.doNotTrack??"n/a"}`),e.push("Online: "+(navigator.onLine?"yes":"no")),document.referrer&&e.push(`Referrer: ${document.referrer}`),e.push((()=>{const A="function"==typeof matchMedia&&matchMedia("(display-mode: standalone)").matches;return`PWA: ${Boolean(navigator.serviceWorker?.controller)?"SW-controlled":"no SW"}, display-mode standalone: ${A?"yes":"no"}`})());const a=await async function(A=400){if("DeviceOrientationEvent"in window&&window.isSecureContext)return new Promise(t=>{let e=!1;const r=A=>{const n="number"==typeof A.beta?A.beta:void 0,s="number"==typeof A.gamma?A.gamma:void 0;if(void 0===n||void 0===s)return;if(e)return;e=!0,window.removeEventListener("deviceorientation",r);const o=((A,t)=>{const e=Math.abs(A),r=Math.abs(t);return e<15&&r<15?"flat":e>=60?"upright":"reclined"})(n,s);t(`Tilt: ${o} (β ${Math.round(n)}°, γ ${Math.round(s)}°)`)};window.setTimeout(()=>{e||(e=!0,window.removeEventListener("deviceorientation",r),t(void 0))},A),window.addEventListener("deviceorientation",r,{passive:!0})})}();a&&e.push(a);const B="enabled"===localStorage.getItem("intent:geo");return e.push(B?"Device geolocation: enabled":"Device geolocation: disabled"),e.join(" | ")}const Wi="intent:consent",Yi="intent:geo",Zi="intent:debug-panel",$i="intent:data-client-id",_i="intent:data-base-url",zi="https://intent.callimacus.ai";function ji(...A){try{"undefined"!=typeof localStorage&&"enabled"===localStorage.getItem("intent:debug")&&console.log(...A)}catch{}}const qi=Object.freeze(new Set(["textbox","combobox","searchbox"])),Aa=["input","textarea","select","[contenteditable]",...[...qi].map(A=>`[role="${A}"]`)].join(", ");function ta(A){const t=A.tagName;return"INPUT"===t||"TEXTAREA"===t||"SELECT"===t}function ea(A){if(ta(A))return!0;const t=A.getAttribute("contenteditable");if(""===t||"true"===t||"plaintext-only"===t)return!0;const e=A.getAttribute("role")?.toLowerCase();return!(!e||!qi.has(e))}function ra(A){const t=A.parentElement;if(t)return t;const{parentNode:e}=A;return e instanceof ShadowRoot&&e.host instanceof Element?e.host:void 0}function na(A){return A.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#039;")}const sa="data-intent-redact",oa=new Set(["name","given-name","additional-name","family-name","nickname","username","email","tel","organization","organization-title","street-address","address-line1","address-line2","address-line3","address-level1","address-level2","address-level3","address-level4","country","country-name","postal-code","cc-name","cc-given-name","cc-additional-name","cc-family-name","cc-number","cc-exp","cc-exp-month","cc-exp-year","cc-csc","cc-type","bday","bday-day","bday-month","bday-year","sex","webauthn"]);function ia(A){const t=(A=>{const t=(A.getAttribute?.("data-intent-redact-label")??"").trim();if(t)return t;const e=A.getAttribute?.("autocomplete")||"",r=ea(A)?e.toLowerCase().trim().split(/\s+/).filter(Boolean):[];if("INPUT"===A.tagName&&"password"===A.type)return"Password";for(const A of r){const t=aa.get(A);if(t)return t}const n=A.getAttribute?.(sa)?.toLowerCase();return"mask"===n?"Redacted":"Sensitive"})(A);return`<${t}>`}const aa=new Map([["name","Name"],["given-name","First name"],["family-name","Last name"],["additional-name","Middle name"],["nickname","Nickname"],["username","Username"],["email","Email"],["tel","Phone"],["street-address","Street address"],["address-line1","Address line 1"],["address-line2","Address line 2"],["address-line3","Address line 3"],["address-level1","State/Province"],["address-level2","City"],["address-level3","District"],["address-level4","Neighborhood"],["postal-code","Postal code"],["country","Country code"],["country-name","Country name"],["cc-name","Cardholder name"],["cc-given-name","Cardholder first name"],["cc-family-name","Cardholder last name"],["cc-additional-name","Cardholder middle name"],["cc-number","Card number"],["cc-exp","Expiration date"],["cc-exp-month","Expiration month"],["cc-exp-year","Expiration year"],["cc-csc","Security code"],["cc-type","Card type"],["bday","Birthday"],["bday-day","Birth day"],["bday-month","Birth month"],["bday-year","Birth year"],["organization","Organization"],["organization-title","Job title"],["sex","Sex"],["webauthn","WebAuthn"]]);function Ba(A){return A.hasAttribute("data-html2canvas-ignore")||"ignore"===A.getAttribute(sa)?.toLowerCase()}const ca=new Set;function la(A){const t=A.getAttribute(sa);if(null===t)return!1;const e=t.toLowerCase();return"ignore"!==e&&(""!==t&&"mask"!==e&&(A=>{if(ca.has(A))return;ca.add(A);const t=`[intent] Unsupported data-intent-redact value ${JSON.stringify(A)}. Supported values are "" or "mask" (redact), "ignore" (exclude from capture). Treating as "mask" to prevent data leaks.`;try{console.warn(t)}catch{}})(t),!0)}function ga(A){let t=A;for(;t&&t!==document.body;){if(Ba(t))return!0;t=ra(t)}return!1}function wa(A){return!(Ba(A)||!la(A)&&!(A=>{const t=A.tagName;if("INPUT"===t){const t=A;if("password"===t.type)return!0;if("search"===t.type)return!1;const e=t.getAttribute("role");if("searchbox"===e?.toLowerCase())return!1;if((t.autocomplete||"").toLowerCase().trim().split(/\s+/).filter(Boolean).some(A=>oa.has(A)))return!0}if(("TEXTAREA"===t||"SELECT"===t)&&(A.autocomplete||"").toLowerCase().trim().split(/\s+/).filter(Boolean).some(A=>oa.has(A)))return!0;if(ea(A)&&!ta(A)){const t=A.getAttribute("role")?.toLowerCase();if("searchbox"===t)return!1;if((A.getAttribute("autocomplete")||"").toLowerCase().trim().split(/\s+/).filter(Boolean).some(A=>oa.has(A)))return!0}return!1})(A))}function da(A){if(!ga(A))if(ta(A)){if(wa(A)){if("INPUT"===A.tagName){const t=A;["date","datetime-local","month","time","week"].includes(t.type)&&(t.type="text")}const t=ia(A);A.value=t,A.setAttribute("value",t)}}else ea(A)?wa(A)&&(A.textContent=ia(A)):A.hasAttribute(sa)&&la(A)&&(A.textContent=ia(A))}function ha(A,t){const e=[],r=[A];for(A instanceof Element&&A.shadowRoot&&r.push(A.shadowRoot);r.length>0;){const A=r.pop().querySelectorAll("*");for(const n of A)n.matches(t)&&e.push(n),n.shadowRoot&&r.push(n.shadowRoot)}return e}function Qa(A,t=new Set){const e=A instanceof Document?A:A.ownerDocument;if(e){if(t.has(e))return;t.add(e)}A instanceof Element&&da(A);for(const t of ha(A,Aa))da(t);for(const t of ha(A,`[${sa}]`))da(t);for(const e of ha(A,"iframe"))if("IFRAME"===e.tagName)try{const A=e.contentDocument;A&&Qa(A,t)}catch{}}
11
- /*! js-cookie v3.0.8 | MIT */function ua(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 Ca=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=ua({},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,"",ua({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,ua({},this.attributes,t))},withConverter:function(t){return A(ua({},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:"/"});let Ua="";function Fa(){return Ua}function pa(A){return Ca.get(A)}function fa(A,t){const e=localStorage.getItem("intent:data-sid-max-age"),r=null===e?void 0:Number(e),n="number"==typeof t&&Number.isFinite(t)?t:"number"==typeof r&&Number.isFinite(r)?r:2592e3,s="https:"===window.location.protocol;Ca.set("intent_sid",A,{expires:n/86400,path:"/",sameSite:"Lax",...s&&{secure:!0}})}function ma(){Ca.remove("intent_sid",{path:"/"})}function ya(){const A=pa("intent_sid");if("granted"!==localStorage.getItem(Wi))return A&&ma(),void(Ua="");A?Ua=A:(Ua=crypto.randomUUID(),fa(Ua))}let Ha,Ea=!1,Ia=!1,ba=!1,xa=!1,Ka=!1;function La(){return"enabled"===localStorage.getItem(Yi)}function va(){Ea=!1,ba=!1,Ka=!1}function Da(){return!Ea&&La()&&!xa&&Ka}let Sa,Ma=[],Ta=!1;function ka(){try{return"enabled"===localStorage.getItem(Zi)}catch{return!1}}function Oa(A){try{localStorage.setItem(Zi,A?"enabled":"disabled"),A?Ga():Ha&&(Ha.style.display="none")}catch{}}function Va(){if(!Ha)return;const A=Ha.querySelector("#intent-debug-events"),t=Ha.querySelector("#intent-debug-count");if(!A||!t)return;if(0===Ma.length)return A.innerHTML='\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(t.textContent="0 events");const e=[...Ma].reverse();A.innerHTML=e.map(A=>(A=>{const t=new Date(A.timestamp).toLocaleTimeString(),e=A.img&&A.img.length>0,r=e?Math.round(.75*A.img.length/1024):0,n=na(A.event),s=na(JSON.stringify(A.props,null,2)),o=na(A.html),i=na(JSON.stringify(A.bbox,null,2));return`\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">${n}</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">${t}</div>\n\t\t\t</div>\n\t\t\t${e?`\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="${A.img}" \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 (~${r} KB)</div>\n\t\t\t\t</div>\n\t\t\t`:""}\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">${s}</pre>\n\t\t\t\t\t${A.html?`\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">${o}</pre>\n\t\t\t\t\t`:""}\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Bounding Box:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">${i}</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t`})(A)).join(""),t.textContent=`${Ma.length} event${1===Ma.length?"":"s"}`}function Ga(){if(Ha)return void(Ha.style.display="flex");const A=document.createElement("div");A.innerHTML='\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',Ha=A.firstElementChild,document.body.appendChild(Ha);const t=Ha.querySelector("#intent-debug-close"),e=Ha.querySelector("#intent-debug-minimize"),r=Ha.querySelector("#intent-debug-clear");t?.addEventListener("click",()=>{Oa(!1)}),e?.addEventListener("click",()=>{(()=>{if(!Ha)return;const A=Ha.querySelector("#intent-debug-content"),t=Ha.querySelector("#intent-debug-minimize");A&&t&&(Ta=!Ta,Ta?(A.style.display="none",Ha.style.width="200px",t.textContent="+"):(A.style.display="flex",Ha.style.width="400px",t.textContent="−"))})()}),r?.addEventListener("click",()=>{Ma=[],Va()}),(()=>{if(!Ha)return;const A=Ha.querySelector("#intent-debug-header");if(!A)return;let t=!1,e=0,r=0,n=0,s=0;A.addEventListener("mousedown",A=>{if("BUTTON"===A.target.tagName)return;t=!0;const e=Ha.getBoundingClientRect();n=A.clientX-e.left,s=A.clientY-e.top}),document.addEventListener("mousemove",A=>{if(!t||!Ha)return;A.preventDefault(),e=A.clientX-n,r=A.clientY-s;const o=window.innerWidth-Ha.offsetWidth,i=window.innerHeight-Ha.offsetHeight;e=Math.max(0,Math.min(e,o)),r=Math.max(0,Math.min(r,i)),Ha.style.left=`${e}px`,Ha.style.top=`${r}px`,Ha.style.right="auto"}),document.addEventListener("mouseup",()=>{t=!1})})(),Ha.addEventListener("click",A=>{const t=A.target;if(t.classList.contains("intent-debug-screenshot")){const A=t;A.src&&A.src.startsWith("data:image/")&&(A=>{const t=document.createElement("div");t.id="intent-debug-fullscreen-modal",t.setAttribute("data-intent-redact","ignore"),t.style.cssText="\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 e=document.createElement("div");e.style.cssText="\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 r=document.createElement("img");r.src=A,r.style.cssText="\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";const n=document.createElement("div");n.style.cssText="\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t";const s=document.createElement("button");s.textContent="✕ Close",s.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 o=document.createElement("div");o.textContent="Click anywhere or press ESC to close",o.style.cssText="\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t",n.appendChild(s),n.appendChild(o),e.appendChild(r),e.appendChild(n),t.appendChild(e);const i=()=>{t.remove(),document.removeEventListener("keydown",a)};t.addEventListener("click",i),s.addEventListener("click",A=>{A.stopPropagation(),i()}),r.addEventListener("click",A=>{A.stopPropagation()});const a=A=>{"Escape"===A.key&&i()};document.addEventListener("keydown",a),document.body.appendChild(t)})(A.src)}}),Va()}"undefined"!=typeof window&&ka()&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",()=>{Ga()}):Ga());let Ra,Na=0,Pa=!1;const Xa="__intent__sdk__initialized__",Ja=["button","a[href]","a",'input[type="submit"]','input[type="button"]','[role="button"]','[role="link"]',"[onclick]"].join(",");function Wa(){return ya(),"granted"===localStorage.getItem(Wi)&&Boolean(Fa())&&Boolean(localStorage.getItem($i)?.trim().length)}function Ya(){return!Wa()||Ia}async function Za(A){for(;Ra;)await Ra;return Ra=(async()=>{try{const o=performance.now(),i=performance.now(),a=(A=>{if(Ba(A))return"";const t=A.cloneNode(!1);return Array.from(A.attributes).forEach(({name:A,value:e})=>{t.setAttribute(A,e)}),ta(A)?ta(t)&&(t.value=A.value):ea(A)?t.innerHTML=A.innerHTML:t.textContent=A.textContent,Qa(t),ta(t)&&t.setAttribute("value",t.value),t.outerHTML})(A);ji(`[Timing] serialize: ${(performance.now()-i).toFixed(2)}ms`);const B=A.getBoundingClientRect(),c=performance.now(),l={left:window.scrollX,top:window.scrollY,right:window.scrollX+window.innerWidth,bottom:window.scrollY+window.innerHeight},g=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 Pi(B,l,o),w=t.enablePerformanceMonitoring??t.logging??!1,d=new r(g,w);d.start("total",{width:c.windowWidth,height:c.windowHeight});const h=t.signal;Xi(h);const Q=t.foreignObjectRendering??!1,u=((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,Q);g.logger.debug(`Starting document clone with size ${l.width}x${l.height} scrolled to ${-l.left},${-l.top}`),d.start("clone");const C=new ps(g,A,u),U=C.clonedReferenceElement;if(!U)throw new Error("Unable to find element in cloned iframe");const F=await C.toIFrame(i,l);d.end("clone"),h?.aborted&&((t.removeContainer??1)&&ps.destroy(F),Xi(h));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?jt(A,getComputedStyle(r.documentElement).backgroundColor):qt.TRANSPARENT,s=r.body?jt(A,getComputedStyle(r.body).backgroundColor):qt.TRANSPARENT,o="string"==typeof e?jt(A,e):null===e?qt.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 Q?(g.logger.debug("Document cloned, using foreign object rendering"),d.start("render-foreignobject"),I=await new Li(g,E).render(U),d.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"),d.start("parse"),Xi(h),g.cache.startDefer(),b=xo(g,U),d.end("parse"),d.start("preload"),await g.cache.preloadAll(),d.end("preload"),H===b.styles.backgroundColor&&(b.styles.backgroundColor=qt.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${E.x},${E.y} with size ${E.width}x${E.height}`),d.start("render"),Xi(h),I=await new bi(g,E).render(b),d.end("render")),d.start("cleanup"),(t.removeContainer??1)&&(ps.destroy(F)||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"),w&&d.logSummary(),I}finally{b&&b.restoreTree()}})(A,o,t.fromElement(A,{cspNonce:o.cspNonce,cache:o.cache})))(document.body,{useCORS:!0,x:window.scrollX,y:window.scrollY,width:window.innerWidth,height:window.innerHeight,scale:.6,logging:!1,onclone(A){Qa(A)},ignoreElements(A){if(!(A instanceof Element))return!1;if(ga(A))return!0;const t=A.getBoundingClientRect(),e=t.left+window.scrollX,r=t.top+window.scrollY,n=t.right+window.scrollX,s=t.bottom+window.scrollY,o=100,i=r>l.bottom+o;if(!(n<l.left-o||e>l.right+o||s<l.top-o||i))return!1;const{position:a}=window.getComputedStyle(A);let B;if("fixed"===a||"absolute"===a){const A=500;B=n<l.left-A||e>l.right+A||s<l.top-A||r>l.bottom+A}else B=i;return!!B&&!("INPUT"===A.tagName||"TEXTAREA"===A.tagName||"SELECT"===A.tagName||A.hasAttribute("data-intent-redact")||A.querySelector("input, textarea, select, [data-intent-redact]"))}});ji(`[Timing] html2canvas-pro: ${(performance.now()-c).toFixed(2)}ms`);const w=performance.now(),d=g.toDataURL("image/jpeg",.8);ji(`[Timing] jpeg-encoding: ${(performance.now()-w).toFixed(2)}ms`);return ji(`[Timing] capture-total: ${(performance.now()-o).toFixed(2)}ms`),{html:a,bbox:{x:B.x,y:B.y,w:B.width,h:B.height},img:d,fullCanvas:g}}finally{Ra=void 0}})(),Ra}function $a(){const A=localStorage.getItem($i),t={"Content-Type":"application/json"};A&&(t["x-sl-access-token"]=A);const e=Fa();return e&&(t["x-intent-sid"]=e),t}async function _a(A,t,e,r){if(!Wa())return;const n={...t,localTime:(new Date).toISOString()};ea(e)&&(n.value=wa(e)?ia(e):(A=>{if(ta(A))return A.value;const t=A.innerText;return"string"==typeof t?t:A.textContent??""})(e));let s="",o={x:0,y:0,w:0,h:0},i="";const a=!("scroll"===A||"page-blur"===A||"page-focus"===A),B=Date.now();let c=r;a&&(("click"===A||"input-submit"===A||"pageview"===A)&&!c||!c&&B-Na>=0)&&(c=await Za(e),Na=B),c&&(s=c.html,o=c.bbox,i=c.img);const l="page-blur"===A||"page-focus"===A||"pageview"===A,g={ts:Date.now(),event:A,url:window.location.href,props:n,html:l?"":s,bbox:o,img:i};(function(A,t,e,r,n){((A,t,e,r,n)=>{if(!ka())return;const s={id:"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():`${Date.now()}-${Math.random()}`,timestamp:Date.now(),event:A,props:t,html:e,bbox:r,img:n};Ma.push(s),Ma.length>50&&Ma.shift(),Va()})(A,t,e,r,n)})(A,n,l?"":s,o,i),await async function(A){const t=`${localStorage.getItem(_i)??zi}/events`,e=localStorage.getItem($i)??void 0,r=JSON.stringify({...A,clientId:e});try{if((await fetch(t,{method:"POST",headers:$a(),body:r,keepalive:!0,credentials:"omit"})).ok)return}catch{}try{await(async A=>{const t=`${localStorage.getItem(_i)??zi}/p.gif`;if(!(await fetch(t,{method:"POST",headers:$a(),body:JSON.stringify(A),keepalive:!0,credentials:"omit",cache:"no-store"})).ok)throw new Error("pixel body fallback failed")})(A)}catch{}}(g)}async function za(A={}){if(!Wa())return;const t="number"==typeof A.lat&&"number"==typeof A.lon;if(t&&Ea)return;if(!t&&Pa)return;const e=localStorage.getItem("intent:data-ip"),r={context:await Ji()};e&&(r.ip=e);for(const[t,e]of Object.entries(A))r[t]=e;await _a("context",r,document.body,{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),t||(Pa=!0)}async function ja(){await(async(A,t)=>{const e=t(),r=La();if(!e||!r||Ea)return;if(!("geolocation"in navigator))return;if(xa)return;xa=!0,Ia=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};try{await(navigator.permissions?.query({name:"geolocation"}))}catch(A){}await new Promise(A=>{let t=!1;const e=async(e,r,n)=>{t||(t=!0,Number.isFinite(e)&&Number.isFinite(r)&&(await(async(A,t,e)=>{await za({lat:A,lon:t,source:"device",...e})})(e,r,n),Ea=!0),xa=!1,Ia=!1,Ka=!0,A())};navigator.geolocation.getCurrentPosition(A=>{const t=A.coords;e(t.latitude,t.longitude,{accuracy:t.accuracy,altitude:"number"==typeof t.altitude?t.altitude:void 0,altitudeAccuracy:"number"==typeof t.altitudeAccuracy?t.altitudeAccuracy:void 0,heading:"number"==typeof t.heading?t.heading:void 0,speed:"number"==typeof t.speed?t.speed:void 0,timestamp:A.timestamp,visibility:document.visibilityState,focused:document.hasFocus()})},A=>{const t=A?.code,r={error:{code:t,name:1===t?"PERMISSION_DENIED":2===t?"POSITION_UNAVAILABLE":3===t?"TIMEOUT":"UNKNOWN",message:A?.message??""},online:navigator.onLine,visibility:document.visibilityState,focused:document.hasFocus(),secure:window.isSecureContext,proto:location.protocol,host:location.hostname};e(void 0,void 0,r)},n)})})(0,Wa)}function qa(){(A=>{if(ba||!La()||Ea)return;ba=!0;const t=()=>{window.removeEventListener("pointerdown",t,!0),window.removeEventListener("keydown",t,!0),A()};window.addEventListener("pointerdown",t,!0),window.addEventListener("keydown",t,!0)})(ja)}ya();let AB=!document.hidden&&document.hasFocus(),tB=document.hasFocus();function eB(){if(Ya())return;const A=!document.hidden&&document.hasFocus();A&&(tB=!0),tB||A?A!==AB&&(AB=A,_a(A?"page-focus":"page-blur",{},document.body)):AB=A}function rB(){(()=>{const A=globalThis;return!A[Xa]&&(Object.defineProperty(A,Xa,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(window.addEventListener("load",()=>{Wa()&&(za(),(window.isSecureContext||"localhost"===location.hostname)&&(La()&&qa(),window.addEventListener("focus",()=>{Da()&&ja()}),document.addEventListener("visibilitychange",()=>{!document.hidden&&Da()&&ja()})))}),window.addEventListener("storage",A=>{A.key===Wi&&("granted"===localStorage.getItem(Wi)?(Pa=!1,za(),La()&&qa()):(Pa=!1,va())),A.key===Yi&&(La()?qa():va())}),window.addEventListener("load",()=>{Wa()&&_a("pageview",{url:window.location.href,title:document.title,ref:document.referrer},document.body)}),addEventListener("pointerdown",(()=>{let A=0;return(...t)=>{const e=Date.now();e-A>=50&&(A=e,(A=>{if(Ya())return;const t=A.target instanceof Element?A.target.closest(Ja):null;t instanceof HTMLElement&&(Sa=Za(t))})(...t))}})(),{capture:!0,passive:!0}),addEventListener("click",async A=>{if(Ya())return;if(!(A.target instanceof Element))return;const t=A.target.closest(Ja);if(!(t instanceof HTMLElement))return;const e=(A=>{const t=A.getAttribute("aria-label")?.trim();if(t)return t;const e=A.title.trim();if(e)return e;const r=A.textContent?.trim();return r||"<no visible label>"})(t);(async()=>{const A=Sa?await Sa:void 0;Sa=void 0,_a("click",{tag:t.tagName,label:e},t,A)})()},!0),addEventListener("keydown",A=>{if(!Ya()&&"Enter"===A.key){const t=A.target;if(!(t instanceof HTMLElement))return;const e=t.tagName;if("INPUT"===e||"TEXTAREA"===e)_a("input-submit",{tag:e,name:(t instanceof HTMLInputElement?t.name:void 0)??(t.id||void 0)},t);else if(ea(t)){const A=(A=>{let t=A;for(;t&&t!==document.body;){const A=t.getAttribute("contenteditable");if("true"===A||""===A||"plaintext-only"===A)return t;t=t.parentElement}return null})(t)??t;if("newline"===A.dataset.intentEnter)return;const e=A.getAttribute("role")?.toLowerCase(),r=A.id||void 0;_a("input-submit",{tag:"CONTENTEDITABLE",role:e??"contenteditable",name:A.getAttribute("name")||A.getAttribute("aria-label")||r},A)}}},{capture:!0}),["focus","blur"].forEach(A=>{window.addEventListener(A,eB)}),document.addEventListener("visibilitychange",eB),window.addEventListener("scroll",(()=>{let A;return(...t)=>{void 0!==A&&window.clearTimeout(A),A=window.setTimeout(()=>{A=void 0,(()=>{Ya()||_a("scroll",{scrollX:window.scrollX,scrollY:window.scrollY},document.body)})(...t)},250)}})(),{passive:!0}),window.intent??={send(A,t){Wa()&&_a(A,t,document.body)}})}function nB(A,t){try{if(void 0===t)return;localStorage.setItem(A,t?"intent:consent"===A?"granted":"enabled":"disabled")}catch{}}function sB(A){A&&"undefined"!=typeof console&&console.warn&&console.warn("[Intent SDK] ⚠️ Debug panel is enabled. This feature is NOT recommended for production use. It exposes internal SDK behavior and should only be used during development."),(A=>{Oa(A)})(A)}A.clearIntentSessionId=()=>{ma()},A.ensureIntentSessionId=()=>{ya()},A.getIntentSessionId=()=>pa("intent_sid"),A.initIntent=(A={})=>{localStorage.setItem("intent:data-client-id",A.clientId??""),localStorage.setItem("intent:data-ip",A.ip??""),localStorage.setItem("intent:data-base-url",A.baseUrl??"https://intent.callimacus.ai"),"number"==typeof A.sidMaxAgeSeconds&&localStorage.setItem("intent:data-sid-max-age",String(A.sidMaxAgeSeconds)),nB("intent:consent",A.consent),nB("intent:geo",A.geo),nB("intent:debug",A.debug),void 0!==A.debugPanel&&sB(A.debugPanel),A.consent&&(pa("intent_sid")||fa("undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():`${Date.now()}-${Math.random()}`,A.sidMaxAgeSeconds)),rB()},A.setConsent=A=>{nB("intent:consent",A)},A.setDebug=A=>{nB("intent:debug",A)},A.setDebugPanel=sB,A.setGeo=A=>{nB("intent:geo",A)},A.setIntentSessionMaxAge=A=>{Number.isFinite(A)&&localStorage.setItem("intent:data-sid-max-age",String(A));const t=pa("intent_sid");t&&fa(t,A)},Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});
10
+ */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)),j=[O,36],q=[1,2,3,5],AA=[y,8],tA=[T,M],eA=q.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 $;var s=r-1;if(Array.isArray(n)&&!0===n[s])return $;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 $;if(-1!==q.indexOf(a))return"!";if(-1!==q.indexOf(c))return $;if(-1!==AA.indexOf(c))return $;if(8===oA(s,t))return _;if(11===z.get(A[s]))return $;if((a===V||a===G)&&11===z.get(A[i]))return $;if(7===a||7===c)return $;if(9===a)return $;if(-1===[y,H,E].indexOf(a)&&9===c)return $;if(-1!==[I,b,x,D,k].indexOf(c))return $;if(oA(s,t)===v)return $;if(sA(23,v,s,t))return $;if(sA([I,b],L,s,t))return $;if(sA(12,12,s,t))return $;if(a===y)return _;if(23===a||23===c)return $;if(16===c||16===a)return _;if(-1!==[H,E,L].indexOf(c)||14===a)return $;if(36===B&&-1!==nA.indexOf(a))return $;if(a===k&&36===c)return $;if(c===K)return $;if(-1!==j.indexOf(c)&&a===S||-1!==j.indexOf(a)&&c===S)return $;if(a===T&&-1!==[P,V,G].indexOf(c)||-1!==[P,V,G].indexOf(a)&&c===M)return $;if(-1!==j.indexOf(a)&&-1!==tA.indexOf(c)||-1!==tA.indexOf(a)&&-1!==j.indexOf(c))return $;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 $;if(-1!==[S,k,D,I,b].indexOf(c))for(var l=s;l>=0;){if((g=t[l])===S)return $;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 $;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 $;if(-1!==rA.indexOf(a)&&-1!==[K,M].indexOf(c)||-1!==rA.indexOf(c)&&a===T)return $;if(-1!==j.indexOf(a)&&-1!==j.indexOf(c))return $;if(a===D&&-1!==j.indexOf(c))return $;if(-1!==j.concat(S).indexOf(a)&&c===v&&-1===Z.indexOf(A[i])||-1!==j.concat(S).indexOf(c)&&a===b)return $;if(41===a&&41===c){for(var w=e[s],h=1;w>0&&41===t[--w];)h++;if(h%2!=0)return $}return a===V&&c===G?$:_},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,$A=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,zA=/(\d+(?:\.\d+)?|[+\-*/()])/g,jA=A=>{const t=A.match(zA);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},qA=(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=jA(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(qA(Math.round(255*n[0]),0,255),qA(Math.round(255*n[1]),0,255),qA(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=zt[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=qt[t.value.toUpperCase()];if(void 0!==A)return A}return qt.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(qA(Math.round(255*A[0]),0,255),qA(Math.round(255*A[1]),0,255),qA(Math.round(255*A[2]),0,255),qA(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]])}},$t={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[qA(Math.round(255*t),0,255),qA(Math.round(255*e),0,255),qA(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]]}},zt={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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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(qA(Math.round(255*o[0]),0,255),qA(Math.round(255*o[1]),0,255),qA(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 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===qt[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=$t[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])}}},jt=(A,t)=>Jt(A,RA.create(t).parseComponentValue()),qt={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 $A(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 $A(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",$e="contain",_e=(A,t)=>{let e=0,r=3;const n=[],s=[];return $A(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 $e: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}},ze=(A,t)=>({...Ge(A,t),type:3}),je=A=>1===A.type,qe=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 $A(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 $e: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 $A(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":ze,"-webkit-repeating-linear-gradient":ze,"-moz-repeating-linear-gradient":ze,"-ms-repeating-linear-gradient":ze,"-o-repeating-linear-gradient":ze},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)=>$A(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)=>$A(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)=>$A(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=$A(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"),$r=Wr("bottom"),_r=Wr("left"),zr={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"},qr=A=>({name:`padding-${A}`,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}),An=qr("top"),tn=qr("right"),en=qr("bottom"),rn=qr("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")?[]:$A(t).map(t=>{const e={color:qt.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=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")}},pn=(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")},fn={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:(A,t)=>PA(t)?t.number:1},mn={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},yn={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 NA(t)?t.number:"auto"}},In={name:"text-underline-offset",initialValue:"auto",prefix:!1,type:0,parse:(A,t)=>XA(t)&&"auto"===t.value?"auto":NA(t)?t.number:"auto"},bn={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}'`)}},xn={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)},vn={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}},Sn=(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},Mn={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:Sn(t,1).map(([A,t])=>({counter:A,increment:t}))}},Tn={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:(A,t)=>0===t.length?[]:Sn(t,0).filter(([A])=>"none"!==A).map(([A,t])=>({counter:A,reset:t}))},kn={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:(A,t)=>t.filter(NA).map(A=>pn(0,A))},On={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:""},Gn={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:(A,t)=>1===t.length&&WA(t[0],"none")?[]:$A(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})},Rn={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}},Nn={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Pn={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:(A,t)=>NA(t)?t.number:0},Xn={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},Jn={name:"object-fit",initialValue:"fill",prefix:!1,type:1,parse:(A,t)=>t.filter(XA).reduce((A,t)=>A|Wn(t.value),0)},Wn=A=>{switch(A){case"contain":return 2;case"cover":return 4;case"none":return 8;case"scale-down":return 16}return 0},Yn={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)),zn={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=qn(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}},qn=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(" ")},As={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}}},ts={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},es={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]]}},rs=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"})),ns={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)&&rs.has(A.value)&&e.push(A.value);return e.length>0?e:["normal"]}},ss={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])}},os={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}}},is=A=>{switch(A){case"repeat":return 1;case"round":return 2;case"space":return 3;default:return 0}},as={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(is(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 cs=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}},ls=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}},gs=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}},ws=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()}},hs=class A{get border(){return this._border??(this._border=new cs(this))}get background(){return this._background??(this._background=new ls(this))}get font(){return this._font??(this._font=new gs(this))}get layout(){return this._layout??(this._layout=new ws(this))}static{this.standardProps=[["animationDuration",kn,"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",Gn,"boxShadow"],["clipPath",Sr,"clipPath"],["color",Mr,"color"],["direction",Tr,"direction"],["display",kr,"display"],["fontFamily",bn,"fontFamily"],["fontSize",xn,"fontSize"],["fontStyle",vn,"fontStyle"],["fontVariant",Ln,"fontVariant"],["fontWeight",Kn,"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",$r,"marginBottom"],["marginLeft",_r,"marginLeft"],["opacity",fn,"opacity"],["overflowWrap",jr,"overflowWrap"],["paddingTop",An,"paddingTop"],["paddingRight",tn,"paddingRight"],["paddingBottom",en,"paddingBottom"],["paddingLeft",rn,"paddingLeft"],["paintOrder",Rn,"paintOrder"],["position",sn,"position"],["textAlign",nn,"textAlign"],["textDecorationStyle",Hn,"textDecorationStyle"],["textDecorationThickness",En,"textDecorationThickness"],["textUnderlineOffset",In,"textUnderlineOffset"],["textShadow",on,"textShadow"],["textTransform",an,"textTransform"],["textOverflow",Yn,"textOverflow"],["transform",Bn,"transform"],["transformOrigin",wn,"transformOrigin"],["rotate",hn,"rotate"],["visibility",dn,"visibility"],["webkitTextStrokeColor",Nn,"webkitTextStrokeColor"],["webkitTextStrokeWidth",Pn,"webkitTextStrokeWidth"],["webkitLineClamp",Xn,"webkitLineClamp"],["wordBreak",un,"wordBreak"],["writingMode",Un,"writingMode"],["zIndex",Fn,"zIndex"],["objectFit",Jn,"objectFit"],["imageRendering",Zn,"imageRendering"],["mixBlendMode",zn,"mixBlendMode"],["filter",jn,"filter"],["fontVariantLigatures",As,"fontVariantLigatures"],["zoom",ts,"zoom"],["objectPosition",es,"objectPosition"],["backgroundBlendMode",ns,"backgroundBlendMode"],["borderImageSource",ss,"borderImageSource"],["borderImageSlice",os,"borderImageSlice"],["borderImageRepeat",as,"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,Vr,void 0),this.textDecorationColor=Cs(t,mn,void 0),this.textDecorationLine=Cs(t,yn,void 0);const A=Cs(t,zr,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,Vr,e.cssFloat),this.textDecorationColor=Cs(t,mn,e.textDecorationColor??e.color),this.textDecorationLine=Cs(t,yn,e.textDecorationLine??e.textDecoration);const n=Cs(t,zr,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)}},ds=class{constructor(A,t){this.content=Cs(A,Dn,t.content),this.quotes=Cs(A,On,t.quotes)}},us=class{constructor(A,t){this.counterIncrement=Cs(A,Mn,t.counterIncrement),this.counterReset=Cs(A,Tn,t.counterReset)}};const Qs=new Map,Cs=(A,t,e)=>{let r=null!=e?e.toString():t.initialValue;""===r.trim()&&(r=t.initialValue);let n=Qs.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 pn(0,o.parseComponentValue())}}})();if(n||(n=new Map,Qs.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)||!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)}},ps=class{constructor(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new Ce,this.quoteDepth=0,this.slotCloner=new Fs((A,t)=>this.cloneNode(A,t),{ignoreElements:e.ignoreElements,copyStyles:e.copyStyles??!0},A),!t.ownerDocument)throw new Error("Cloned element does not have an owner document");if(!this.options.iframeContainer){const A=(A=>{let t=A;for(;t;){if(t.parentNode&&t.parentNode.host)return t.parentNode;const A=t.getRootNode();if(A&&A!==t.ownerDocument&&A.host)return A;t=t.parentNode}return null})(t);A&&(this.options.iframeContainer=A)}this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}toIFrame(A,t){const e=fs(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 ys(o),"function"==typeof A?Promise.resolve().then(()=>A(o,r)).then(()=>e):e}),a=A.baseURI;o.open();const B=bs(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)}xs(this.referenceElement.ownerDocument,r,n),o.close();const c=o.adoptNode(this.documentElement);return Ts(c,a),o.replaceChild(c,o.documentElement),i}createElementClone(A){if(Us(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,Is(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)&&Ss(n,this.options.cspNonce);const i=this.counters.parse(new us(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)&&Is(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 us(this.context,e));const o=new ds(this.context,e),i=s.createElement("html2canvaspseudoelement");Is(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(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} ${vs}`;const a=0===r?` ${Ls}`:` ${vs}`;return ee(t)?t.className.baseValue+=a:t.className+=a,i}static destroy(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)}};const fs=(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},ms=A=>new Promise(t=>{A.complete?t():A.src?(A.onload=t,A.onerror=t):t()}),ys=A=>Promise.all([].slice.call(A.images,0).map(ms)),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"],Is=(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},bs=A=>{let t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=" "+A.internalSubset.replace(/"/g,"&quot;").replace(/>/g,"&gt;")),A.publicId?(t+=' PUBLIC "'+A.publicId.replace(/"/g,"&quot;")+'"',A.systemId&&(t+=' "'+A.systemId.replace(/"/g,"&quot;")+'"')):A.systemId&&(t+=' SYSTEM "'+A.systemId.replace(/"/g,"&quot;")+'"'),t+=">"),t},xs=(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",vs="___html2canvas___pseudoelement_after",Ds='{\n content: "" !important;\n display: none !important;\n}',Ss=(A,t)=>{Ms(A,`.${Ls}:before${Ds}\n .${vs}:after${Ds}`,t)},Ms=(A,t,e)=>{const r=A.ownerDocument;if(r){const n=r.createElement("style");n.textContent=t,e&&(n.nonce=e),A.appendChild(n)}},Ts=(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 ks=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))}},Os=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 hs(A,A.config.window.getComputedStyle(t,null)),!1!==e.normalizeDom&&re(t)&&(this.originalStyles=ks.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&&(ks.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),Gs=0;Gs<64;Gs++)Vs["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Gs)]=Gs;for(var Rs=(A,t,e)=>A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e)),Ns=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}(),Ps="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Xs=0;Xs<64;Xs++)Ps["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charCodeAt(Xs)]=Xs;var Js=8,Ws=9,Ys=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=Vs[A.charCodeAt(t)],r=Vs[A.charCodeAt(t+1)],n=Vs[A.charCodeAt(t+2)],s=Vs[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=Rs(s,12,n[4]/2),i=2===n[5]?Rs(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 Ns(n[0],n[1],n[2],n[3],o,i)})(),zs="×",js=A=>_s.get(A),qs=(A,t,e)=>{var r=e-2,n=t[r],s=t[e-1],o=t[e];if(2===s&&3===o)return zs;if(2===s||3===s||4===s)return"÷";if(2===o||3===o||4===o)return"÷";if(s===Js&&-1!==[Js,Ws,Ys,Zs].indexOf(o))return zs;if(!(s!==Ys&&s!==Ws||o!==Ws&&10!==o))return zs;if((s===Zs||10===s)&&10===o)return zs;if(13===o||5===o)return zs;if(7===o)return zs;if(1===s)return zs;if(13===s&&14===o){for(;5===n;)n=t[--r];if(14===n)return zs}if(15===s&&15===o){for(var i=0;15===n;)i++,n=t[--r];if(i%2==0)return zs}return"÷"};const Ao=A=>0===A[0]&&255===A[1]&&0===A[2]&&255===A[3],to=(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},eo=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))}`}),ro={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(ro,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){const A=ro.SUPPORT_RANGE_BOUNDS&&(A=>{const t=A.createElement("boundtest");t.style.width="50px",t.style.display="block",t.style.fontSize="12px",t.style.letterSpacing="0px",t.style.wordSpacing="0px",A.body.appendChild(t);const e=A.createRange();t.innerHTML="function"==typeof"".repeat?"&#128104;".repeat(10):"";const r=t.firstChild,n=o(r.data).map(A=>i(A));let s=0,a={};const 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(ro,"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(ro,"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=to(e,e,0,0,n);return r.fillStyle="red",r.fillRect(0,0,e,e),eo(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",Ao(n)?eo(to(e,e,0,0,o)):Promise.reject(new Error("ForeignObject rendering not supported"))}).then(A=>(r.drawImage(A,0,0),Ao(r.getImageData(0,0,e,e).data))).catch(()=>!1)})(document):Promise.resolve(!1);return Object.defineProperty(ro,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){const A=void 0!==(new Image).crossOrigin;return Object.defineProperty(ro,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){const A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(ro,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){const A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(ro,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){const A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(ro,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}};var no=class{constructor(A,t){this.text=A,this.bounds=t}};const so=(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},oo=A=>{if(ro.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=zs;r<e&&(A=qs(0,s,++r))===zs;);if(A!==zs||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)},io=[32,160,4961,65792,65793,4153,4241],ao=(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=z.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=$;c<a&&(A=iA(e,s,n,++c,i))===$;);if(A!==$||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===io.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=co(t.data,e.textTransform),this.text.length!==t.data.length&&(t.data=this.text),this.textBounds=((A,t,e,r)=>{const o=((A,t)=>Qn(t.writingMode)||0!==t.letterSpacing?oo(A):((A,t)=>{if(ro.SUPPORT_NATIVE_TEXT_SEGMENTATION){const t=new Intl.Segmenter(void 0,{granularity:"word"});return Array.from(t.segment(A)).map(A=>A.segment)}return ao(A,t)})(A,t))(this.text,e),i=[];let a=0;return o.forEach(t=>{if(e.textDecorationLine.length||t.trim().length>0)if(ro.SUPPORT_RANGE_BOUNDS){const e=so(r,a,t.length).getClientRects();if(e.length>1){const e=oo(t);let s=0;e.forEach(t=>{i.push(new no(t,n.fromDOMRectList(A,so(r,s+a,t.length).getClientRects()))),s+=t.length})}else i.push(new no(t,n.fromDOMRectList(A,e)))}else{const e=r.splitText(t.length);i.push(new no(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 ro.SUPPORT_RANGE_BOUNDS||(r=r.splitText(t.length));a+=t.length}),i})(A,0,e,t)}};const co=(A,t)=>{switch(t){case 1:return A.toLowerCase();case 3:return A.replace(lo,go);case 2:return A.toUpperCase();default:return A}},lo=/(^|\s|:|-|\(|\))([a-z])/g,go=(A,t,e)=>A.length>0?t+e.toUpperCase():A;var wo=class extends Os{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)}},ho=class extends Os{constructor(A,t){super(A,t),this.canvas=t,this.intrinsicWidth=t.width,this.intrinsicHeight=t.height}},uo=class extends Os{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)}},Qo=class extends Os{constructor(A,t){super(A,t),this.value=t.value}},Co=class extends Os{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}],po=707406591;var fo=class extends Os{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}}},mo=class extends Os{constructor(A,t){super(A,t);const e=t.options[t.selectedIndex||0];this.value=e&&e.text||""}},yo=class extends Os{constructor(A,t){super(A,t),this.value=t.value}},Ho=class extends Os{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):qt.TRANSPARENT,r=t.contentWindow.document.body?jt(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):qt.TRANSPARENT;this.backgroundColor=ft(e)?ft(r)?this.styles.backgroundColor:r:e}}catch(A){}}};const Eo=["OL","UL","MENU"],Io=(A,t,e,r)=>{for(let n,s=t.firstChild;s;s=n)n=s.nextSibling,bo(A,s,e,r)},bo=(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(we(t)&&t.assignedNodes)t.assignedNodes().forEach(t=>bo(A,t,e,r));else{const n=xo(A,t);n.styles.isVisible()&&(Lo(t,n,r)?n.createsRealStackingContext=!0:vo(n.styles)&&(n.createsStackingContext=!0),-1!==Eo.indexOf(t.tagName)&&(n.isListOwner=!0),e.elements.push(n),t.shadowRoot?Io(A,t.shadowRoot,n,r):le(t)||ne(t)||ge(t)||Io(A,t,n,r))}},xo=(A,t)=>ae(t)?new wo(A,t):oe(t)?new ho(A,t):ne(t)?new uo(A,t):"LI"===t.tagName?new Qo(A,t):"OL"===t.tagName?new Co(A,t):(A=>"INPUT"===A.tagName)(t)?new fo(A,t):ge(t)?new mo(A,t):le(t)?new yo(A,t):Be(t)?new Ho(A,t,Ko):new Os(A,t),Ko=(A,t)=>{const e=xo(A,t);return e.createsRealStackingContext=!0,Io(A,t,e,e),e},Lo=(A,t,e)=>t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||se(A)&&e.styles.isTransparent(),vo=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 So=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 Mo=(A,t,e)=>new So(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e);var To=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=Mo(this.start,this.startControl,t),n=Mo(this.startControl,this.endControl,t),s=Mo(this.endControl,this.end,t),o=Mo(r,n,t),i=Mo(n,s,t),a=Mo(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 ko=A=>1===A.type;var Oo=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?Vo(e.left+F/3,e.top+Q/3,r-F/3,n-Q/3,0):new So(e.left+F/3,e.top+Q/3),this.topRightBorderDoubleOuterBox=r>0||n>0?Vo(e.left+w,e.top+Q/3,s-C/3,o-Q/3,1):new So(e.left+e.width-C/3,e.top+Q/3),this.bottomRightBorderDoubleOuterBox=i>0||a>0?Vo(e.left+d,e.top+h,i-C/3,a-U/3,2):new So(e.left+e.width-C/3,e.top+e.height-U/3),this.bottomLeftBorderDoubleOuterBox=B>0||c>0?Vo(e.left+F/3,e.top+u,B-F/3,c-U/3,3):new So(e.left+F/3,e.top+e.height-U/3),this.topLeftBorderDoubleInnerBox=r>0||n>0?Vo(e.left+2*F/3,e.top+2*Q/3,r-2*F/3,n-2*Q/3,0):new So(e.left+2*F/3,e.top+2*Q/3),this.topRightBorderDoubleInnerBox=r>0||n>0?Vo(e.left+w,e.top+2*Q/3,s-2*C/3,o-2*Q/3,1):new So(e.left+e.width-2*C/3,e.top+2*Q/3),this.bottomRightBorderDoubleInnerBox=i>0||a>0?Vo(e.left+d,e.top+h,i-2*C/3,a-2*U/3,2):new So(e.left+e.width-2*C/3,e.top+e.height-2*U/3),this.bottomLeftBorderDoubleInnerBox=B>0||c>0?Vo(e.left+2*F/3,e.top+u,B-2*F/3,c-2*U/3,3):new So(e.left+2*F/3,e.top+e.height-2*U/3),this.topLeftBorderStroke=r>0||n>0?Vo(e.left+F/2,e.top+Q/2,r-F/2,n-Q/2,0):new So(e.left+F/2,e.top+Q/2),this.topRightBorderStroke=r>0||n>0?Vo(e.left+w,e.top+Q/2,s-C/2,o-Q/2,1):new So(e.left+e.width-C/2,e.top+Q/2),this.bottomRightBorderStroke=i>0||a>0?Vo(e.left+d,e.top+h,i-C/2,a-U/2,2):new So(e.left+e.width-C/2,e.top+e.height-U/2),this.bottomLeftBorderStroke=B>0||c>0?Vo(e.left+F/2,e.top+u,B-F/2,c-U/2,3):new So(e.left+F/2,e.top+e.height-U/2),this.topLeftBorderBox=r>0||n>0?Vo(e.left,e.top,r,n,0):new So(e.left,e.top),this.topRightBorderBox=s>0||o>0?Vo(e.left+w,e.top,s,o,1):new So(e.left+e.width,e.top),this.bottomRightBorderBox=i>0||a>0?Vo(e.left+d,e.top+h,i,a,2):new So(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=B>0||c>0?Vo(e.left,e.top+u,B,c,3):new So(e.left,e.top+e.height),this.topLeftPaddingBox=r>0||n>0?Vo(e.left+F,e.top+Q,Math.max(0,r-F),Math.max(0,n-Q),0):new So(e.left+F,e.top+Q),this.topRightPaddingBox=s>0||o>0?Vo(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 So(e.left+e.width-C,e.top+Q),this.bottomRightPaddingBox=i>0||a>0?Vo(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 So(e.left+e.width-C,e.top+e.height-U),this.bottomLeftPaddingBox=B>0||c>0?Vo(e.left+F,e.top+Math.min(u,e.height-U),Math.max(0,B-F),Math.max(0,c-U),3):new So(e.left+F,e.top+e.height-U),this.topLeftContentBox=r>0||n>0?Vo(e.left+F+y,e.top+Q+p,Math.max(0,r-(F+y)),Math.max(0,n-(Q+p)),0):new So(e.left+F+y,e.top+Q+p),this.topRightContentBox=s>0||o>0?Vo(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 So(e.left+e.width-(C+f),e.top+Q+p),this.bottomRightContentBox=i>0||a>0?Vo(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 So(e.left+e.width-(C+f),e.top+e.height-(U+m)),this.bottomLeftContentBox=B>0||c>0?Vo(e.left+F+y,e.top+u,Math.max(0,B-(F+y)),c-(U+m),3):new So(e.left+F+y,e.top+e.height-(U+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,B=t+r;switch(n){case 0:return new To(new So(A,B),new So(A,B-i),new So(a-o,t),new So(a,t));case 1:return new To(new So(A,t),new So(A+o,t),new So(a,B-i),new So(a,B));case 2:return new To(new So(a,t),new So(a,t+i),new So(A+o,B),new So(A,B));default:return new To(new So(a,B),new So(a-o,B),new So(A,t+i),new So(A,t))}},Go=A=>[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox],Ro=A=>[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox];var No=class{constructor(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6}},Po=class{constructor(A,t){this.path=A,this.target=t,this.type=1}},Xo=class{constructor(A){this.opacity=A,this.type=2,this.target=6}},Jo=class{constructor(A){this.applyClip=A,this.type=3,this.target=6}};const Wo={[$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 Yo=class{constructor(A){this.mixBlendMode=A,this.type=4,this.target=6,this.compositeOperation=Wo[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,zo=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=[]}},qo=class{constructor(A,t){if(this.container=A,this.parent=t,this.effects=[],this.curves=new Oo(this.container),this.container.styles.opacity<1&&this.effects.push(new Xo(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 No(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 No(t,e,this.container.styles.transform))}if(Ai(this.container.styles)){const A=Go(this.curves),t=Ro(this.curves);Do(A,t)?this.effects.push(new Po(A,6)):(this.effects.push(new Po(A,2)),this.effects.push(new Po(t,4)))}if(0!==this.container.styles.clipPath.type){const A=ei(this.container.styles.clipPath,this.container.bounds);A&&this.effects.push(A)}if(this.container.styles.mixBlendMode!==$n.NORMAL&&this.effects.push(new Yo(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 No(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),Ai(e.container.styles)){const A=Go(e.curves),t=Ro(e.curves);Do(A,t)||r.unshift(new Po(t,6))}r.unshift(...A)}else r.unshift(...A);e=e.parent}return r.filter(t=>Qe(t.target,A))}};const Ai=A=>0!==A.overflowX||0!==A.overflowY,ti=(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),ei=(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 Jo(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 Jo(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=ti(A.rx,t,e,e+n,n),a=ti(A.ry,o,r,r+s,s);return new Jo(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 Jo(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 Jo(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}},ri=(A,t,e,r)=>{A.container.elements.forEach(n=>{const s=n.createsRealStackingContext,o=n.createsStackingContext,i=new qo(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);ri(i,r,s?r:e,a)}else n.styles.isInlineLevel()?t.inlineLevel.push(i):t.nonInlineLevel.push(i),ri(i,t,e,a);n.isListOwner&&ni(n,a)})},ni=(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 Qo&&"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}},si=A=>{const t=A.styles;return A.bounds.add(t.borderLeftWidth,t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth),-(t.borderTopWidth+t.borderBottomWidth))},oi=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))},ii=(A,t,e)=>{const r=((A,t)=>0===A?t.bounds:2===A?oi(t):si(t))(li(A.styles.backgroundOrigin,t),A),n=((A,t)=>0===A?t.bounds:2===A?oi(t):si(t))(li(A.styles.backgroundClip,t),A),s=ci(li(A.styles.backgroundSize,t),e,r);let[o,i]=s;const a=ht(li(A.styles.backgroundPosition,t),r.width-o,r.height-i),B=gi(li(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]},ai=A=>XA(A)&&"auto"===A.value,Bi=A=>"number"==typeof A,ci=(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=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),B=Bi(e),c=a||B;if(ai(s)&&(!o||ai(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)),ai(s)?A=t*r:o&&!ai(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&&!ai(o)||(g=a&&B?l/t*e:n.height),null!==g&&ai(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")},li=(A,t)=>{const e=A[t];return void 0===e?A[0]:e},gi=(A,[t,e],[r,n],s,o)=>{switch(A){case 2:return[new So(Math.round(s.left),Math.round(s.top+e)),new So(Math.round(s.left+s.width),Math.round(s.top+e)),new So(Math.round(s.left+s.width),Math.round(n+s.top+e)),new So(Math.round(s.left),Math.round(n+s.top+e))];case 3:return[new So(Math.round(s.left+t),Math.round(s.top)),new So(Math.round(s.left+t+r),Math.round(s.top)),new So(Math.round(s.left+t+r),Math.round(s.height+s.top)),new So(Math.round(s.left+t),Math.round(s.height+s.top))];case 1:return[new So(Math.round(s.left+t),Math.round(s.top+e)),new So(Math.round(s.left+t+r),Math.round(s.top+e)),new So(Math.round(s.left+t+r),Math.round(s.top+e+n)),new So(Math.round(s.left+t),Math.round(s.top+e+n))];default:return[new So(Math.round(o.left),Math.round(o.top)),new So(Math.round(o.left+o.width),Math.round(o.top)),new So(Math.round(o.left+o.width),Math.round(o.height+o.top)),new So(Math.round(o.left),Math.round(o.height+o.top))]}};var wi=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 hi=(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},di=["-apple-system","system-ui"],ui=/[\u2E80-\u2FFF\u3000-\u30FF\u3400-\u4DBF\u4E00-\u9FFF\uAC00-\uD7AF\uF900-\uFAFF\uFF01-\uFFEF]/,Qi=A=>ui.test(A);var Ci=class{constructor(A){this.glyphWidthCache=null,this.ctx=A.ctx,this.options=A.options,this.decorationRenderer=new wi(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(Qn(r))return void this.iterateVerticalGlyphs(A,t,e,r,n);const s=oo(A.text),o=A.bounds.top+e,i=this.ctx.font;let a=A.bounds.left;for(const A of s){if(Qi(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=oo(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(!(Cn(r)||!Qi(c)&&c.trim().length>0)){const r=this.ctx.textBaseline;Qi(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(!Cn(r)&&!Qi(A)&&0===A.trim().length)break;if(!(Cn(r)||!Qi(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&&!Qn(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=oo(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!==di.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 no(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 no(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=hi(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=ko(t)?t.start:t;0===e?A.moveTo(r.x,r.y):A.lineTo(r.x,r.y),ko(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 pi=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()}},fi=class{constructor(A){this.patternCache=new pi(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):qe(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]=ii(A,e,[t,s,t/s]),l=li(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]=ii(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]=ii(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]=ii(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){Fi(this.ctx,A)}};const mi=(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)}},yi=(A,t)=>{const e=[];return ko(A)?e.push(A.subdivide(.5,!1)):e.push(A),ko(t)?e.push(t.subdivide(.5,!0)):e.push(t),e},Hi=(A,t,e,r)=>{const n=[];return ko(A)?n.push(A.subdivide(.5,!1)):n.push(A),ko(e)?n.push(e.subdivide(.5,!0)):n.push(e),ko(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),ko(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(mi(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 yi(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return yi(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return yi(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return yi(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(r,e),o=mi(r,e);let i,a,B,c,l;2===n&&(this.pathCallbacks.path(o),this.ctx.clip()),ko(o[0])?(i=o[0].start.x,a=o[0].start.y):(i=o[0].x,a=o[0].y),ko(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(ko(o[0])){const A=o[3],t=o[0];this.ctx.beginPath(),this.pathCallbacks.formatPath([new So(A.end.x,A.end.y),new So(t.start.x,t.start.y)]),this.ctx.stroke()}if(ko(o[1])){const A=o[1],t=o[2];this.ctx.beginPath(),this.pathCallbacks.formatPath([new So(A.end.x,A.end.y),new So(t.start.x,t.start.y)]),this.ctx.stroke()}}this.ctx.restore()}},Ii=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()}},bi=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)||zo(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()):zo(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 xi=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 fi({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 Ii(this.ctx),this.effectsRenderer=new bi({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=oi(A),o=Ro(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=oi(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 ho&&a(s,o,s.canvas),s instanceof uo)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,n)=>{if(r instanceof fo){const t=Math.min(r.bounds.width,r.bounds.height);"checkbox"===r.type&&r.checked?(A.save(),e([new So(r.bounds.left+.39363*t,r.bounds.top+.79*t),new So(r.bounds.left+.16*t,r.bounds.top+.5549*t),new So(r.bounds.left+.27347*t,r.bounds.top+.44071*t),new So(r.bounds.left+.39694*t,r.bounds.top+.5649*t),new So(r.bounds.left+.72983*t,r.bounds.top+.23*t),new So(r.bounds.left+.84*t,r.bounds.top+.34085*t),new So(r.bounds.left+.39363*t,r.bounds.top+.79*t)]),A.fillStyle=mt(po),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(po),A.fill(),A.restore())}if((A=>A instanceof yo||A instanceof mo||A instanceof fo&&"radio"!==A.type&&"checkbox"!==A.type)(r)&&r.value.length){const[s]=t.createFontStyle(n);A.font=s;const o=hi(A,dt(n.fontSize,0));A.fillStyle=mt(r instanceof fo&&r.isPlaceholder?1970632191:n.color),A.textBaseline="alphabetic",A.textAlign=(A=>{switch(A){case 1:return"center";case 2:return"right";default:return"left"}})(r.styles.textAlign);const i=oi(r);let a=0;switch(r.styles.textAlign){case 1:a+=i.width/2;break;case 2:a+=i.width}let B=0;if(r instanceof fo){const A=dt(n.fontSize,0);B=(i.height-A)/2}const c=i.add(a,B,0,0);A.save(),e([new So(i.left,i.top),new So(i.left+i.width,i.top),new So(i.left+i.width,i.top+i.height),new So(i.left,i.top+i.height)]),A.clip(),t.renderTextWithLetterSpacing(new no(r.value,c),n.letterSpacing,o,n.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 no(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(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.options.width,0),this.ctx.lineTo(this.options.width,this.options.height),this.ctx.lineTo(0,this.options.height),this.ctx.lineTo(0,0),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=li(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=Go(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 qo(A,null),e=new jo(t),r=[];return ri(t,e,e,r),ni(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=hi(i,e.fontSize.number),c=new fi({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=oo(t.text);let i=r;for(const a of o){if(Qn(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 Go(t);case 2:return(A=>[A.topLeftContentBox,A.topRightContentBox,A.bottomRightContentBox,A.bottomLeftContentBox])(t);default:return Ro(t)}},Li=A=>A.backgroundClip.some(A=>3===A);var vi=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 eo(to(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))}},Si=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)||!Ri(A)&&!Oi(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 Ri(A)||Oi(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=!Vi(A)&&!0===this._options.useCORS&&ro.SUPPORT_CORS_IMAGES&&!r,s=!Vi(A)&&!r&&!Ri(A)&&"string"==typeof this._options.proxy&&ro.SUPPORT_CORS_XHR&&!n;if(!(r||!1!==this._options.allowTaint||Vi(A)||Ri(A)||s||n))return;let o=A;return s&&(o=await this.proxy(o)),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,(Gi(o)||n)&&(e.crossOrigin="anonymous"),e.src=o,!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=ro.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 Mi=/^data:image\/svg\+xml/i,Ti=/^data:image\/.*;base64,/i,ki=/^data:image\/.*/i,Oi=A=>ro.SUPPORT_SVG_DRAWING||!Ni(A),Vi=A=>ki.test(A),Gi=A=>Ti.test(A),Ri=A=>"blob"===A.substring(0,4),Ni=A=>"svg"===A.slice(-3).toLowerCase()||Mi.test(A);var Pi=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}},Xi=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 Pi(r.window),this.cache=t.cache??r.cache??new Si(this,t),this.onError=t.onError}};const Ji=A=>{if(A?.aborted)throw new DOMException("The operation was aborted.","AbortError")};async function Wi(){const A=(new Intl.DateTimeFormat).resolvedOptions().timeZone,t=(A=>{const t=A<=0?"+":"-",e=Math.abs(A);return`${t}${String(Math.floor(e/60)).padStart(2,"0")}:${String(e%60).padStart(2,"0")}`})((new Date).getTimezoneOffset()),e=[];e.push(`Language: ${navigator.language}`),navigator.languages?.length&&e.push(`Languages: ${navigator.languages.join(", ")}`),e.push(`User agent: ${navigator.userAgent}`);const r=(()=>{if(!("userAgentData"in(A=navigator))||void 0===A.userAgentData)return;var A;const t=navigator.userAgentData,e=Array.isArray(t.brands)?t.brands.map(A=>`${A.brand} ${A.version}`).join(", "):void 0,r=t.platform?`${t.platform}${t.mobile?" (mobile)":""}`:void 0;return[e&&`UA brands: ${e}`,r&&`Platform: ${r}`].filter(Boolean).join(" | ")||void 0})();r&&e.push(r),e.push(`Timezone: ${A} (UTC${t})`),e.push(`Local time: ${(new Date).toString()}`);const n=window.devicePixelRatio||1;e.push(`Screen: ${screen.width}x${screen.height} @${n}x (avail ${screen.availWidth}x${screen.availHeight}, ${screen.colorDepth}-bit)`);const s=screen.orientation&&"type"in screen.orientation?screen.orientation.type:void 0;e.push(`Viewport: ${window.innerWidth}x${window.innerHeight}${s?`, orientation ${s}`:""}`),e.push(`CPU: ${navigator.hardwareConcurrency} cores`);const o=await async function(){const A=[];let t="browser API";if("connection"in(e=navigator)&&void 0!==e.connection){const t=navigator.connection;t?.effectiveType&&A.push(t.effectiveType),"number"==typeof t?.downlink&&A.push(`~${t.downlink} Mbps`),"number"==typeof t?.rtt&&A.push(`${t.rtt} ms`),t?.saveData&&A.push("saveData")}else{const e=((A=20)=>{const t=performance.getEntriesByType("navigation").find(A=>"navigation"===A.entryType),e=t?Math.max(0,t.responseStart-t.requestStart):void 0,r=performance.getEntriesByType("resource").filter(A=>"resource"===A.entryType);let n=0,s=0;for(const t of r.slice(0,Math.max(0,A))){const A=t.encodedBodySize>0?t.encodedBodySize:t.transferSize>0?t.transferSize:0,e=t.duration;A>0&&e>0&&Number.isFinite(e)&&(n+=A,s+=e)}const o=s>0?8*n/s:void 0;return{downlinkMbps:"number"==typeof o?o/1e3:void 0,rttMs:e}})();"number"==typeof e.downlinkMbps&&A.push(`~${e.downlinkMbps.toFixed(1)} Mbps`),"number"==typeof e.rttMs&&A.push(`TTFB ~${Math.round(e.rttMs)} ms`),t="inferred"}var e;const r=performance.getEntriesByType("navigation").find(A=>"navigation"===A.entryType);if(r){const t=Math.max(0,r.responseStart-r.requestStart);A.some(A=>A.startsWith("TTFB"))||A.push(`TTFB ~${Math.round(t)} ms`)}return A.length?`Network: ${A.join(", ")} (${t})`:void 0}();o&&e.push(o),e.push((()=>{const A="function"==typeof matchMedia&&matchMedia("(pointer: coarse)").matches,t="function"==typeof matchMedia&&matchMedia("(pointer: fine)").matches;return`Pointer/Touch: ${A?"coarse":t?"fine":"unknown"}, maxTouchPoints ${navigator.maxTouchPoints}`})());const i=await(async()=>{var A;if("getBattery"in(A=navigator)&&"function"==typeof A.getBattery)try{const A=await navigator.getBattery(),t=Math.round(100*A.level);return`Battery: ${[`${Number.isFinite(t)?t:0}%`,A.charging?"charging":"not charging"].join(", ")}`}catch{}})();i&&e.push(i),e.push(`CookiesEnabled: ${navigator.cookieEnabled?"yes":"no"}; DNT: ${navigator.doNotTrack??"n/a"}`),e.push("Online: "+(navigator.onLine?"yes":"no")),document.referrer&&e.push(`Referrer: ${document.referrer}`),e.push((()=>{const A="function"==typeof matchMedia&&matchMedia("(display-mode: standalone)").matches;return`PWA: ${Boolean(navigator.serviceWorker?.controller)?"SW-controlled":"no SW"}, display-mode standalone: ${A?"yes":"no"}`})());const a=await async function(A=400){if("DeviceOrientationEvent"in window&&window.isSecureContext)return new Promise(t=>{let e=!1;const r=A=>{const n="number"==typeof A.beta?A.beta:void 0,s="number"==typeof A.gamma?A.gamma:void 0;if(void 0===n||void 0===s)return;if(e)return;e=!0,window.removeEventListener("deviceorientation",r);const o=((A,t)=>{const e=Math.abs(A),r=Math.abs(t);return e<15&&r<15?"flat":e>=60?"upright":"reclined"})(n,s);t(`Tilt: ${o} (β ${Math.round(n)}°, γ ${Math.round(s)}°)`)};window.setTimeout(()=>{e||(e=!0,window.removeEventListener("deviceorientation",r),t(void 0))},A),window.addEventListener("deviceorientation",r,{passive:!0})})}();a&&e.push(a);const B="enabled"===localStorage.getItem("intent:geo");return e.push(B?"Device geolocation: enabled":"Device geolocation: disabled"),e.join(" | ")}const Yi="intent:consent",Zi="intent:geo",$i="intent:debug-panel",_i="intent:data-client-id",zi="intent:data-base-url",ji="https://intent.callimacus.ai";function qi(...A){try{"undefined"!=typeof localStorage&&"enabled"===localStorage.getItem("intent:debug")&&console.log(...A)}catch{}}const Aa=Object.freeze(new Set(["textbox","combobox","searchbox"])),ta=["input","textarea","select","[contenteditable]",...[...Aa].map(A=>`[role="${A}"]`)].join(", ");function ea(A){const t=A.tagName;return"INPUT"===t||"TEXTAREA"===t||"SELECT"===t}function ra(A){if(ea(A))return!0;const t=A.getAttribute("contenteditable");if(""===t||"true"===t||"plaintext-only"===t)return!0;const e=A.getAttribute("role")?.toLowerCase();return!(!e||!Aa.has(e))}function na(A){const t=A.parentElement;if(t)return t;const{parentNode:e}=A;return e instanceof ShadowRoot&&e.host instanceof Element?e.host:void 0}function sa(A){return A.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#039;")}const oa="data-intent-redact",ia=new Set(["name","given-name","additional-name","family-name","nickname","username","email","tel","organization","organization-title","street-address","address-line1","address-line2","address-line3","address-level1","address-level2","address-level3","address-level4","country","country-name","postal-code","cc-name","cc-given-name","cc-additional-name","cc-family-name","cc-number","cc-exp","cc-exp-month","cc-exp-year","cc-csc","cc-type","bday","bday-day","bday-month","bday-year","sex","webauthn"]);function aa(A){const t=(A=>{const t=(A.getAttribute?.("data-intent-redact-label")??"").trim();if(t)return t;const e=A.getAttribute?.("autocomplete")||"",r=ra(A)?e.toLowerCase().trim().split(/\s+/).filter(Boolean):[];if("INPUT"===A.tagName&&"password"===A.type)return"Password";for(const A of r){const t=Ba.get(A);if(t)return t}const n=A.getAttribute?.(oa)?.toLowerCase();return"mask"===n?"Redacted":"Sensitive"})(A);return`<${t}>`}const Ba=new Map([["name","Name"],["given-name","First name"],["family-name","Last name"],["additional-name","Middle name"],["nickname","Nickname"],["username","Username"],["email","Email"],["tel","Phone"],["street-address","Street address"],["address-line1","Address line 1"],["address-line2","Address line 2"],["address-line3","Address line 3"],["address-level1","State/Province"],["address-level2","City"],["address-level3","District"],["address-level4","Neighborhood"],["postal-code","Postal code"],["country","Country code"],["country-name","Country name"],["cc-name","Cardholder name"],["cc-given-name","Cardholder first name"],["cc-family-name","Cardholder last name"],["cc-additional-name","Cardholder middle name"],["cc-number","Card number"],["cc-exp","Expiration date"],["cc-exp-month","Expiration month"],["cc-exp-year","Expiration year"],["cc-csc","Security code"],["cc-type","Card type"],["bday","Birthday"],["bday-day","Birth day"],["bday-month","Birth month"],["bday-year","Birth year"],["organization","Organization"],["organization-title","Job title"],["sex","Sex"],["webauthn","WebAuthn"]]);function ca(A){return A.hasAttribute("data-html2canvas-ignore")||"ignore"===A.getAttribute(oa)?.toLowerCase()}const la=new Set;function ga(A){const t=A.getAttribute(oa);if(null===t)return!1;const e=t.toLowerCase();return"ignore"!==e&&(""!==t&&"mask"!==e&&(A=>{if(la.has(A))return;la.add(A);const t=`[intent] Unsupported data-intent-redact value ${JSON.stringify(A)}. Supported values are "" or "mask" (redact), "ignore" (exclude from capture). Treating as "mask" to prevent data leaks.`;try{console.warn(t)}catch{}})(t),!0)}function wa(A){let t=A;for(;t&&t!==document.body;){if(ca(t))return!0;t=na(t)}return!1}function ha(A){return!(ca(A)||!ga(A)&&!(A=>{const t=A.tagName;if("INPUT"===t){const t=A;if("password"===t.type)return!0;if("search"===t.type)return!1;const e=t.getAttribute("role");if("searchbox"===e?.toLowerCase())return!1;if((t.autocomplete||"").toLowerCase().trim().split(/\s+/).filter(Boolean).some(A=>ia.has(A)))return!0}if(("TEXTAREA"===t||"SELECT"===t)&&(A.autocomplete||"").toLowerCase().trim().split(/\s+/).filter(Boolean).some(A=>ia.has(A)))return!0;if(ra(A)&&!ea(A)){const t=A.getAttribute("role")?.toLowerCase();if("searchbox"===t)return!1;if((A.getAttribute("autocomplete")||"").toLowerCase().trim().split(/\s+/).filter(Boolean).some(A=>ia.has(A)))return!0}return!1})(A))}function da(A){if(!wa(A))if(ea(A)){if(ha(A)){if("INPUT"===A.tagName){const t=A;["date","datetime-local","month","time","week"].includes(t.type)&&(t.type="text")}const t=aa(A);A.value=t,A.setAttribute("value",t)}}else ra(A)?ha(A)&&(A.textContent=aa(A)):A.hasAttribute(oa)&&ga(A)&&(A.textContent=aa(A))}function ua(A,t){const e=[],r=[A];for(A instanceof Element&&A.shadowRoot&&r.push(A.shadowRoot);r.length>0;){const A=r.pop().querySelectorAll("*");for(const n of A)n.matches(t)&&e.push(n),n.shadowRoot&&r.push(n.shadowRoot)}return e}function Qa(A,t=new Set){const e=A instanceof Document?A:A.ownerDocument;if(e){if(t.has(e))return;t.add(e)}A instanceof Element&&da(A);for(const t of ua(A,ta))da(t);for(const t of ua(A,`[${oa}]`))da(t);for(const e of ua(A,"iframe"))if("IFRAME"===e.tagName)try{const A=e.contentDocument;A&&Qa(A,t)}catch{}}
11
+ /*! js-cookie v3.0.8 | MIT */function Ca(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 Ua=function A(t,e){function r(A,r,n){if("undefined"!=typeof document){"number"==typeof(n=Ca({},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,"",Ca({},t,{expires:-1}))},withAttributes:function(t){return A(this.converter,Ca({},this.attributes,t))},withConverter:function(t){return A(Ca({},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:"/"});let Fa="";function pa(){return Fa}function fa(A){return Ua.get(A)}function ma(A,t){const e=localStorage.getItem("intent:data-sid-max-age"),r=null===e?void 0:Number(e),n="number"==typeof t&&Number.isFinite(t)?t:"number"==typeof r&&Number.isFinite(r)?r:2592e3,s="https:"===window.location.protocol;Ua.set("intent_sid",A,{expires:n/86400,path:"/",sameSite:"Lax",...s&&{secure:!0}})}function ya(){Ua.remove("intent_sid",{path:"/"})}function Ha(){const A=fa("intent_sid");if("granted"!==localStorage.getItem(Yi))return A&&ya(),void(Fa="");A?Fa=A:(Fa=crypto.randomUUID(),ma(Fa))}let Ea,Ia=!1,ba=!1,xa=!1,Ka=!1,La=!1;function va(){return"enabled"===localStorage.getItem(Zi)}function Da(){Ia=!1,xa=!1,La=!1}function Sa(){return!Ia&&va()&&!Ka&&La}let Ma,Ta=[],ka=!1;function Oa(){try{return"enabled"===localStorage.getItem($i)}catch{return!1}}function Va(A){try{localStorage.setItem($i,A?"enabled":"disabled"),A?Ra():Ea&&(Ea.style.display="none")}catch{}}function Ga(){if(!Ea)return;const A=Ea.querySelector("#intent-debug-events"),t=Ea.querySelector("#intent-debug-count");if(!A||!t)return;if(0===Ta.length)return A.innerHTML='\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(t.textContent="0 events");const e=[...Ta].reverse();A.innerHTML=e.map(A=>(A=>{const t=new Date(A.timestamp).toLocaleTimeString(),e=A.img&&A.img.length>0,r=e?Math.round(.75*A.img.length/1024):0,n=sa(A.event),s=sa(JSON.stringify(A.props,null,2)),o=sa(A.html),i=sa(JSON.stringify(A.bbox,null,2));return`\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">${n}</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">${t}</div>\n\t\t\t</div>\n\t\t\t${e?`\n\t\t\t\t<div style="margin-bottom: 8px;">\n\t\t\t\t\t<img src="${A.img}" \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 (~${r} KB)</div>\n\t\t\t\t</div>\n\t\t\t`:""}\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">${s}</pre>\n\t\t\t\t\t${A.html?`\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">${o}</pre>\n\t\t\t\t\t`:""}\n\t\t\t\t\t<div style="margin-bottom: 6px;"><strong>Bounding Box:</strong></div>\n\t\t\t\t\t<pre style="\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tpadding: 8px;\n\t\t\t\t\t\tbackground: var(--solomei-color-background, white);\n\t\t\t\t\t\tborder-radius: var(--solomei-radius-sm, 6px);\n\t\t\t\t\t\toverflow-x: auto;\n\t\t\t\t\t\tfont-size: 10px;\n\t\t\t\t\t\tborder: 1px solid var(--solomei-color-border, #e5e5e5);\n\t\t\t\t\t">${i}</pre>\n\t\t\t\t</div>\n\t\t\t</details>\n\t\t</div>\n\t`})(A)).join(""),t.textContent=`${Ta.length} event${1===Ta.length?"":"s"}`}function Ra(){if(Ea)return void(Ea.style.display="flex");const A=document.createElement("div");A.innerHTML='\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',Ea=A.firstElementChild,document.body.appendChild(Ea);const t=Ea.querySelector("#intent-debug-close"),e=Ea.querySelector("#intent-debug-minimize"),r=Ea.querySelector("#intent-debug-clear");t?.addEventListener("click",()=>{Va(!1)}),e?.addEventListener("click",()=>{(()=>{if(!Ea)return;const A=Ea.querySelector("#intent-debug-content"),t=Ea.querySelector("#intent-debug-minimize");A&&t&&(ka=!ka,ka?(A.style.display="none",Ea.style.width="200px",t.textContent="+"):(A.style.display="flex",Ea.style.width="400px",t.textContent="−"))})()}),r?.addEventListener("click",()=>{Ta=[],Ga()}),(()=>{if(!Ea)return;const A=Ea.querySelector("#intent-debug-header");if(!A)return;let t=!1,e=0,r=0,n=0,s=0;A.addEventListener("mousedown",A=>{if("BUTTON"===A.target.tagName)return;t=!0;const e=Ea.getBoundingClientRect();n=A.clientX-e.left,s=A.clientY-e.top}),document.addEventListener("mousemove",A=>{if(!t||!Ea)return;A.preventDefault(),e=A.clientX-n,r=A.clientY-s;const o=window.innerWidth-Ea.offsetWidth,i=window.innerHeight-Ea.offsetHeight;e=Math.max(0,Math.min(e,o)),r=Math.max(0,Math.min(r,i)),Ea.style.left=`${e}px`,Ea.style.top=`${r}px`,Ea.style.right="auto"}),document.addEventListener("mouseup",()=>{t=!1})})(),Ea.addEventListener("click",A=>{const t=A.target;if(t.classList.contains("intent-debug-screenshot")){const A=t;A.src&&A.src.startsWith("data:image/")&&(A=>{const t=document.createElement("div");t.id="intent-debug-fullscreen-modal",t.setAttribute("data-intent-redact","ignore"),t.style.cssText="\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 e=document.createElement("div");e.style.cssText="\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 r=document.createElement("img");r.src=A,r.style.cssText="\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";const n=document.createElement("div");n.style.cssText="\n\t\tmargin-top: 20px;\n\t\tdisplay: flex;\n\t\tgap: 20px;\n\t\talign-items: center;\n\t";const s=document.createElement("button");s.textContent="✕ Close",s.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 o=document.createElement("div");o.textContent="Click anywhere or press ESC to close",o.style.cssText="\n\t\tcolor: var(--solomei-color-primary-foreground, white);\n\t\tfont-size: 13px;\n\t",n.appendChild(s),n.appendChild(o),e.appendChild(r),e.appendChild(n),t.appendChild(e);const i=()=>{t.remove(),document.removeEventListener("keydown",a)};t.addEventListener("click",i),s.addEventListener("click",A=>{A.stopPropagation(),i()}),r.addEventListener("click",A=>{A.stopPropagation()});const a=A=>{"Escape"===A.key&&i()};document.addEventListener("keydown",a),document.body.appendChild(t)})(A.src)}}),Ga()}"undefined"!=typeof window&&Oa()&&("loading"===document.readyState?document.addEventListener("DOMContentLoaded",()=>{Ra()}):Ra());let Na,Pa=0,Xa=!1;const Ja="__intent__sdk__initialized__",Wa=["button","a[href]","a",'input[type="submit"]','input[type="button"]','[role="button"]','[role="link"]',"[onclick]"].join(",");function Ya(){return Ha(),"granted"===localStorage.getItem(Yi)&&Boolean(pa())&&Boolean(localStorage.getItem(_i)?.trim().length)}function Za(){return!Ya()||ba}async function $a(A){for(;Na;)await Na;return Na=(async()=>{try{const o=performance.now(),i=performance.now(),a=(A=>{if(ca(A))return"";const t=A.cloneNode(!1);return Array.from(A.attributes).forEach(({name:A,value:e})=>{t.setAttribute(A,e)}),ea(A)?ea(t)&&(t.value=A.value):ra(A)?t.innerHTML=A.innerHTML:t.textContent=A.textContent,Qa(t),ea(t)&&t.setAttribute("value",t.value),t.outerHTML})(A);qi(`[Timing] serialize: ${(performance.now()-i).toFixed(2)}ms`);const B=A.getBoundingClientRect(),c=performance.now(),l={left:window.scrollX,top:window.scrollY,right:window.scrollX+window.innerWidth,bottom:window.scrollY+window.innerHeight},g=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 Xi(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;Ji(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 ps(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)&&ps.destroy(F),Ji(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?jt(A,getComputedStyle(r.documentElement).backgroundColor):qt.TRANSPARENT,s=r.body?jt(A,getComputedStyle(r.body).backgroundColor):qt.TRANSPARENT,o="string"==typeof e?jt(A,e):null===e?qt.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 vi(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"),Ji(d),g.cache.startDefer(),b=Ko(g,U),h.end("parse"),h.start("preload"),await g.cache.preloadAll(),h.end("preload"),H===b.styles.backgroundColor&&(b.styles.backgroundColor=qt.TRANSPARENT),g.logger.debug(`Starting renderer for element at ${E.x},${E.y} with size ${E.width}x${E.height}`),h.start("render"),Ji(d),I=await new xi(g,E).render(b),h.end("render")),h.start("cleanup"),(t.removeContainer??1)&&(ps.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.body,{useCORS:!0,x:window.scrollX,y:window.scrollY,width:window.innerWidth,height:window.innerHeight,scale:.6,logging:!1,onclone(A){Qa(A)},ignoreElements(A){if(!(A instanceof Element))return!1;if(wa(A))return!0;const t=A.getBoundingClientRect(),e=t.left+window.scrollX,r=t.top+window.scrollY,n=t.right+window.scrollX,s=t.bottom+window.scrollY,o=100,i=r>l.bottom+o;if(!(n<l.left-o||e>l.right+o||s<l.top-o||i))return!1;const{position:a}=window.getComputedStyle(A);let B;if("fixed"===a||"absolute"===a){const A=500;B=n<l.left-A||e>l.right+A||s<l.top-A||r>l.bottom+A}else B=i;return!!B&&!("INPUT"===A.tagName||"TEXTAREA"===A.tagName||"SELECT"===A.tagName||A.hasAttribute("data-intent-redact")||A.querySelector("input, textarea, select, [data-intent-redact]"))}});qi(`[Timing] html2canvas-pro: ${(performance.now()-c).toFixed(2)}ms`);const w=performance.now(),h=g.toDataURL("image/jpeg",.8);qi(`[Timing] jpeg-encoding: ${(performance.now()-w).toFixed(2)}ms`);return qi(`[Timing] capture-total: ${(performance.now()-o).toFixed(2)}ms`),{html:a,bbox:{x:B.x,y:B.y,w:B.width,h:B.height},img:h,fullCanvas:g}}finally{Na=void 0}})(),Na}function _a(){const A=localStorage.getItem(_i),t={"Content-Type":"application/json"};A&&(t["x-sl-access-token"]=A);const e=pa();return e&&(t["x-intent-sid"]=e),t}async function za(A,t,e,r){if(!Ya())return;const n={...t,localTime:(new Date).toISOString()};ra(e)&&(n.value=ha(e)?aa(e):(A=>{if(ea(A))return A.value;const t=A.innerText;return"string"==typeof t?t:A.textContent??""})(e));let s="",o={x:0,y:0,w:0,h:0},i="";const a=!("scroll"===A||"page-blur"===A||"page-focus"===A),B=Date.now();let c=r;a&&(("click"===A||"input-submit"===A||"pageview"===A)&&!c||!c&&B-Pa>=0)&&(c=await $a(e),Pa=B),c&&(s=c.html,o=c.bbox,i=c.img);const l="page-blur"===A||"page-focus"===A||"pageview"===A,g={ts:Date.now(),event:A,url:window.location.href,props:n,html:l?"":s,bbox:o,img:i};(function(A,t,e,r,n){((A,t,e,r,n)=>{if(!Oa())return;const s={id:"undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():`${Date.now()}-${Math.random()}`,timestamp:Date.now(),event:A,props:t,html:e,bbox:r,img:n};Ta.push(s),Ta.length>50&&Ta.shift(),Ga()})(A,t,e,r,n)})(A,n,l?"":s,o,i),await async function(A){const t=`${localStorage.getItem(zi)??ji}/events`,e=localStorage.getItem(_i)??void 0,r=JSON.stringify({...A,clientId:e});try{if((await fetch(t,{method:"POST",headers:_a(),body:r,keepalive:!0,credentials:"omit"})).ok)return}catch{}try{await(async A=>{const t=`${localStorage.getItem(zi)??ji}/p.gif`;if(!(await fetch(t,{method:"POST",headers:_a(),body:JSON.stringify(A),keepalive:!0,credentials:"omit",cache:"no-store"})).ok)throw new Error("pixel body fallback failed")})(A)}catch{}}(g)}async function ja(A={}){if(!Ya())return;const t="number"==typeof A.lat&&"number"==typeof A.lon;if(t&&Ia)return;if(!t&&Xa)return;const e=localStorage.getItem("intent:data-ip"),r={context:await Wi()};e&&(r.ip=e);for(const[t,e]of Object.entries(A))r[t]=e;await za("context",r,document.body,{html:"",bbox:{x:0,y:0,w:0,h:0},img:""}),t||(Xa=!0)}async function qa(){await(async(A,t)=>{const e=t(),r=va();if(!e||!r||Ia)return;if(!("geolocation"in navigator))return;if(Ka)return;Ka=!0,ba=!0;const n={enableHighAccuracy:!1,maximumAge:3e5,timeout:2e4};try{await(navigator.permissions?.query({name:"geolocation"}))}catch(A){}await new Promise(A=>{let t=!1;const e=async(e,r,n)=>{t||(t=!0,Number.isFinite(e)&&Number.isFinite(r)&&(await(async(A,t,e)=>{await ja({lat:A,lon:t,source:"device",...e})})(e,r,n),Ia=!0),Ka=!1,ba=!1,La=!0,A())};navigator.geolocation.getCurrentPosition(A=>{const t=A.coords;e(t.latitude,t.longitude,{accuracy:t.accuracy,altitude:"number"==typeof t.altitude?t.altitude:void 0,altitudeAccuracy:"number"==typeof t.altitudeAccuracy?t.altitudeAccuracy:void 0,heading:"number"==typeof t.heading?t.heading:void 0,speed:"number"==typeof t.speed?t.speed:void 0,timestamp:A.timestamp,visibility:document.visibilityState,focused:document.hasFocus()})},A=>{const t=A?.code,r={error:{code:t,name:1===t?"PERMISSION_DENIED":2===t?"POSITION_UNAVAILABLE":3===t?"TIMEOUT":"UNKNOWN",message:A?.message??""},online:navigator.onLine,visibility:document.visibilityState,focused:document.hasFocus(),secure:window.isSecureContext,proto:location.protocol,host:location.hostname};e(void 0,void 0,r)},n)})})(0,Ya)}function AB(){(A=>{if(xa||!va()||Ia)return;xa=!0;const t=()=>{window.removeEventListener("pointerdown",t,!0),window.removeEventListener("keydown",t,!0),A()};window.addEventListener("pointerdown",t,!0),window.addEventListener("keydown",t,!0)})(qa)}Ha();let tB=!document.hidden&&document.hasFocus(),eB=document.hasFocus();function rB(){if(Za())return;const A=!document.hidden&&document.hasFocus();A&&(eB=!0),eB||A?A!==tB&&(tB=A,za(A?"page-focus":"page-blur",{},document.body)):tB=A}function nB(){(()=>{const A=globalThis;return!A[Ja]&&(Object.defineProperty(A,Ja,{value:!0,configurable:!1,enumerable:!1,writable:!1}),!0)})()&&(window.addEventListener("load",()=>{Ya()&&(ja(),(window.isSecureContext||"localhost"===location.hostname)&&(va()&&AB(),window.addEventListener("focus",()=>{Sa()&&qa()}),document.addEventListener("visibilitychange",()=>{!document.hidden&&Sa()&&qa()})))}),window.addEventListener("storage",A=>{A.key===Yi&&("granted"===localStorage.getItem(Yi)?(Xa=!1,ja(),va()&&AB()):(Xa=!1,Da())),A.key===Zi&&(va()?AB():Da())}),window.addEventListener("load",()=>{Ya()&&za("pageview",{url:window.location.href,title:document.title,ref:document.referrer},document.body)}),addEventListener("pointerdown",(()=>{let A=0;return(...t)=>{const e=Date.now();e-A>=50&&(A=e,(A=>{if(Za())return;const t=A.target instanceof Element?A.target.closest(Wa):null;t instanceof HTMLElement&&(Ma=$a(t))})(...t))}})(),{capture:!0,passive:!0}),addEventListener("click",async A=>{if(Za())return;if(!(A.target instanceof Element))return;const t=A.target.closest(Wa);if(!(t instanceof HTMLElement))return;const e=(A=>{const t=A.getAttribute("aria-label")?.trim();if(t)return t;const e=A.title.trim();if(e)return e;const r=A.textContent?.trim();return r||"<no visible label>"})(t);(async()=>{const A=Ma?await Ma:void 0;Ma=void 0,za("click",{tag:t.tagName,label:e},t,A)})()},!0),addEventListener("keydown",A=>{if(!Za()&&"Enter"===A.key){const t=A.target;if(!(t instanceof HTMLElement))return;const e=t.tagName;if("INPUT"===e||"TEXTAREA"===e)za("input-submit",{tag:e,name:(t instanceof HTMLInputElement?t.name:void 0)??(t.id||void 0)},t);else if(ra(t)){const A=(A=>{let t=A;for(;t&&t!==document.body;){const A=t.getAttribute("contenteditable");if("true"===A||""===A||"plaintext-only"===A)return t;t=t.parentElement}return null})(t)??t;if("newline"===A.dataset.intentEnter)return;const e=A.getAttribute("role")?.toLowerCase(),r=A.id||void 0;za("input-submit",{tag:"CONTENTEDITABLE",role:e??"contenteditable",name:A.getAttribute("name")||A.getAttribute("aria-label")||r},A)}}},{capture:!0}),["focus","blur"].forEach(A=>{window.addEventListener(A,rB)}),document.addEventListener("visibilitychange",rB),window.addEventListener("scroll",(()=>{let A;return(...t)=>{void 0!==A&&window.clearTimeout(A),A=window.setTimeout(()=>{A=void 0,(()=>{Za()||za("scroll",{scrollX:window.scrollX,scrollY:window.scrollY},document.body)})(...t)},250)}})(),{passive:!0}),window.intent??={send(A,t){Ya()&&za(A,t,document.body)}})}function sB(A,t){try{if(void 0===t)return;localStorage.setItem(A,t?"intent:consent"===A?"granted":"enabled":"disabled")}catch{}}function oB(A){A&&"undefined"!=typeof console&&console.warn&&console.warn("[Intent SDK] ⚠️ Debug panel is enabled. This feature is NOT recommended for production use. It exposes internal SDK behavior and should only be used during development."),(A=>{Va(A)})(A)}A.clearIntentSessionId=()=>{ya()},A.ensureIntentSessionId=()=>{Ha()},A.getIntentSessionId=()=>fa("intent_sid"),A.initIntent=(A={})=>{localStorage.setItem("intent:data-client-id",A.clientId??""),localStorage.setItem("intent:data-ip",A.ip??""),localStorage.setItem("intent:data-base-url",A.baseUrl??"https://intent.callimacus.ai"),"number"==typeof A.sidMaxAgeSeconds&&localStorage.setItem("intent:data-sid-max-age",String(A.sidMaxAgeSeconds)),sB("intent:consent",A.consent),sB("intent:geo",A.geo),sB("intent:debug",A.debug),void 0!==A.debugPanel&&oB(A.debugPanel),A.consent&&(fa("intent_sid")||ma("undefined"!=typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():`${Date.now()}-${Math.random()}`,A.sidMaxAgeSeconds)),nB()},A.setConsent=A=>{sB("intent:consent",A)},A.setDebug=A=>{sB("intent:debug",A)},A.setDebugPanel=oB,A.setGeo=A=>{sB("intent:geo",A)},A.setIntentSessionMaxAge=A=>{Number.isFinite(A)&&localStorage.setItem("intent:data-sid-max-age",String(A));const t=fa("intent_sid");t&&ma(t,A)},Object.defineProperty(A,Symbol.toStringTag,{value:"Module"})});
12
12
  //# sourceMappingURL=intent.debug.umd.min.js.map