diff --git a/BootstrapBlazor.Extensions.slnx b/BootstrapBlazor.Extensions.slnx
index 12ec224b..375498b5 100644
--- a/BootstrapBlazor.Extensions.slnx
+++ b/BootstrapBlazor.Extensions.slnx
@@ -29,6 +29,7 @@
+
diff --git a/src/components/BootstrapBlazor.Dom2Image/BootstrapBlazor.Dom2Image.csproj b/src/components/BootstrapBlazor.Dom2Image/BootstrapBlazor.Dom2Image.csproj
new file mode 100644
index 00000000..e5e5e629
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/BootstrapBlazor.Dom2Image.csproj
@@ -0,0 +1,16 @@
+
+
+
+ 10.0.0
+
+
+
+ Bootstrap Blazor WebAssembly wasm UI Components Dom Image
+ Bootstrap UI components extensions of DomToImage use snapDom lib
+
+
+
+
+
+
+
diff --git a/src/components/BootstrapBlazor.Dom2Image/Extensions/ServiceCollectionExtensions.cs b/src/components/BootstrapBlazor.Dom2Image/Extensions/ServiceCollectionExtensions.cs
new file mode 100644
index 00000000..9d6092bb
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/Extensions/ServiceCollectionExtensions.cs
@@ -0,0 +1,26 @@
+// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Website: https://www.blazor.zone or https://argozhang.github.io/
+
+using BootstrapBlazor.Components;
+
+namespace Microsoft.Extensions.DependencyInjection;
+
+///
+/// BootstrapBlazor 服务扩展类
+///
+public static class BootstrapBlazorDom2ImageServiceExtensions
+{
+ ///
+ /// 添加 AzureOpenAIService 服务
+ ///
+ ///
+ public static IServiceCollection AddBootstrapBlazorDom2ImageService(this IServiceCollection services)
+ {
+ services.AddScoped();
+#if NET8_0_OR_GREATER
+ services.AddKeyedScoped("BootstrapBlazor.Dom2Image");
+#endif
+ return services;
+ }
+}
diff --git a/src/components/BootstrapBlazor.Dom2Image/Services/DefaultDom2ImageService.cs b/src/components/BootstrapBlazor.Dom2Image/Services/DefaultDom2ImageService.cs
new file mode 100644
index 00000000..86d241cf
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/Services/DefaultDom2ImageService.cs
@@ -0,0 +1,85 @@
+// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Website: https://www.blazor.zone or https://argozhang.github.io/
+
+using Microsoft.Extensions.Logging;
+using Microsoft.JSInterop;
+
+namespace BootstrapBlazor.Components;
+
+///
+/// 默认 Html to Image 实现
+///
+///
+///
+class DefaultDom2ImageService(IJSRuntime runtime, ILogger logger) : IDom2ImageService
+{
+ private JSModule? _jsModule;
+
+ ///
+ ///
+ ///
+ public async Task GetUrlAsync(string selector, Dom2ImageOptions? options = null, CancellationToken token = default)
+ {
+ string? data = null;
+ try
+ {
+ _jsModule ??= await LoadModule();
+ data = await _jsModule.InvokeAsync("getUrl", token, selector, options);
+ }
+ catch (OperationCanceledException) { }
+ catch (Exception ex)
+ {
+ logger.LogError(ex, "{GetUrlAsync} throw exception: {ex}", nameof(GetUrlAsync), ex.Format());
+ }
+ return data;
+ }
+
+ ///
+ ///
+ ///
+ public async Task GetStreamAsync(string selector, Dom2ImageOptions? options = null, CancellationToken token = default)
+ {
+ Stream? data = null;
+ try
+ {
+ _jsModule ??= await LoadModule();
+ var streamReference = await _jsModule.InvokeAsync("getStream", selector, options);
+ if (streamReference != null)
+ {
+ data = await streamReference.OpenReadStreamAsync(streamReference.Length, token);
+ }
+ }
+ catch (OperationCanceledException) { }
+ catch (Exception ex)
+ {
+ logger.LogError(ex, "{GetStreamAsync} throw exception: {ex}", nameof(GetStreamAsync), ex.Format());
+ }
+ return data;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ public async Task DownloadAsync(string selector, string fileName = "capture", string? format = "png", string? backgroundColor = null, Dom2ImageOptions? options = null)
+ {
+ try
+ {
+ _jsModule ??= await LoadModule();
+ await _jsModule.InvokeAsync("downloadAsync", selector, fileName, format, backgroundColor, options);
+ }
+ catch (OperationCanceledException) { }
+ catch (Exception ex)
+ {
+ logger.LogError(ex, "{DownloadAsync} throw exception: {ex}", nameof(DownloadAsync), ex.Format());
+ }
+ }
+
+ private Task LoadModule() => runtime.LoadModule("./_content/BootstrapBlazor.Dom2Image/dom2image.js");
+}
diff --git a/src/components/BootstrapBlazor.Dom2Image/Services/Dom2ImageOptions.cs b/src/components/BootstrapBlazor.Dom2Image/Services/Dom2ImageOptions.cs
new file mode 100644
index 00000000..aae31d4b
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/Services/Dom2ImageOptions.cs
@@ -0,0 +1,86 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the Apache 2.0 License
+// See the LICENSE file in the project root for more information.
+// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
+
+using System.Text.Json.Serialization;
+
+namespace BootstrapBlazor.Components;
+
+///
+/// Dom2ImageOptions 选项类
+///
+public class Dom2ImageOptions
+{
+ ///
+ /// Removes redundant styles. Default value is true
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public bool? Compress { get; set; }
+
+ ///
+ /// Skips idle delay for faster results. Default value is true
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public bool? Fast { get; set; }
+
+ ///
+ /// Inlines fonts (icon fonts always embedded). Default value is false
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public bool? EmbedFonts { get; set; }
+
+ ///
+ /// Output scale multiplier. Default value is 1
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public int? Scale { get; set; }
+
+ ///
+ /// Device pixel ratio
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public int? Dpr { get; set; }
+
+ ///
+ /// Output specific width size
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public int? Width { get; set; }
+
+ ///
+ /// Output specific height size
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public int? Height { get; set; }
+
+ ///
+ /// Fallback color for JPG/WebP. Default value is #fff
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public string? BackgroundColor { get; set; }
+
+ ///
+ /// Quality for JPG/WebP (0 to 1)
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public float? Quality { get; set; }
+
+ ///
+ /// Select png, jpg, webp Blob type. Default value is svg
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public string? Type { get; set; }
+
+ ///
+ /// CSS selectors for elements to exclude
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public string[]? Exclude { get; set; }
+
+ ///
+ ///
+ ///
+ [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
+ public string[]? LocalFonts { get; set; }
+}
diff --git a/src/components/BootstrapBlazor.Dom2Image/Services/IDom2ImageService.cs b/src/components/BootstrapBlazor.Dom2Image/Services/IDom2ImageService.cs
new file mode 100644
index 00000000..c6aec702
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/Services/IDom2ImageService.cs
@@ -0,0 +1,40 @@
+// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Website: https://www.blazor.zone or https://argozhang.github.io/
+
+namespace BootstrapBlazor.Components;
+
+///
+/// IDom2ImageService 接口定义
+///
+public interface IDom2ImageService
+{
+ ///
+ /// 通过指定选择器获得 Html 元素返回图片数据
+ ///
+ ///
+ ///
+ ///
+ ///
+ Task GetUrlAsync(string selector, Dom2ImageOptions? options = null, CancellationToken token = default);
+
+ ///
+ /// 通过指定选择器获得 Html 元素返回图片数据流
+ ///
+ ///
+ ///
+ ///
+ ///
+ Task GetStreamAsync(string selector, Dom2ImageOptions? options = null, CancellationToken token = default);
+
+ ///
+ /// 通过指定选择器下载 Html 元素图片
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ Task DownloadAsync(string selector, string fileName = "capture", string? format = "png", string? backgroundColor = null, Dom2ImageOptions? options = null);
+}
diff --git a/src/components/BootstrapBlazor.Dom2Image/wwwroot/dom2image.js b/src/components/BootstrapBlazor.Dom2Image/wwwroot/dom2image.js
new file mode 100644
index 00000000..e11bf5ef
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/wwwroot/dom2image.js
@@ -0,0 +1,33 @@
+import { snapdom } from './lib/snapdom.min.mjs'
+
+export async function getUrl(selector, options) {
+ let data = null;
+ const el = document.querySelector(selector);
+ if (el) {
+ const result = await snapdom(el, options || {});
+ data = result.url;
+ }
+ return data;
+}
+
+export async function getStream(selector, options) {
+ let data = null;
+ const el = document.querySelector(selector);
+ if (el) {
+ const result = await snapdom(el, options || {});
+ data = result.toBlob();
+ }
+ return data;
+}
+
+export async function downloadAsync(selector, filename, format, backgroundColor, options) {
+ const el = document.querySelector(selector);
+ if (el) {
+ const result = await snapdom(el, options || {});
+ await result.download({
+ format,
+ filename,
+ backgroundColor
+ });
+ }
+}
diff --git a/src/components/BootstrapBlazor.Dom2Image/wwwroot/lib/snapdom.min.mjs b/src/components/BootstrapBlazor.Dom2Image/wwwroot/lib/snapdom.min.mjs
new file mode 100644
index 00000000..61929a31
--- /dev/null
+++ b/src/components/BootstrapBlazor.Dom2Image/wwwroot/lib/snapdom.min.mjs
@@ -0,0 +1,8 @@
+var w={image:new Map,background:new Map,resource:new Map,defaultStyle:new Map,baseStyle:new Map,computedStyle:new WeakMap,font:new Set,session:{styleMap:new Map,styleCache:new WeakMap,nodeMap:new Map}};function Mt(t="soft"){switch(t){case"auto":{w.session.styleMap=new Map,w.session.nodeMap=new Map;return}case"soft":{w.session.styleMap=new Map,w.session.nodeMap=new Map,w.session.styleCache=new WeakMap;return}case"full":return;case"disabled":{w.session.styleMap=new Map,w.session.nodeMap=new Map,w.session.styleCache=new WeakMap,w.computedStyle=new WeakMap,w.baseStyle=new Map,w.defaultStyle=new Map,w.image=new Map,w.background=new Map,w.resource=new Map,w.font=new Set;return}default:{w.session.styleMap=new Map,w.session.nodeMap=new Map,w.session.styleCache=new WeakMap;return}}}function tt(t){let e=t.match(/url\((['"]?)(.*?)(\1)\)/);if(!e)return null;let n=e[2].trim();return n.startsWith("#")?null:n}function jt(t){if(!t||t==="none")return"";let e=t.replace(/translate[XY]?\([^)]*\)/g,"");return e=e.replace(/matrix\(([^)]+)\)/g,(n,r)=>{let o=r.split(",").map(a=>a.trim());return o.length!==6?`matrix(${r})`:(o[4]="0",o[5]="0",`matrix(${o.join(", ")})`)}),e=e.replace(/matrix3d\(([^)]+)\)/g,(n,r)=>{let o=r.split(",").map(a=>a.trim());return o.length!==16?`matrix3d(${r})`:(o[12]="0",o[13]="0",`matrix3d(${o.join(", ")})`)}),e.trim().replace(/\s{2,}/g," ")}function Y(t){if(/%[0-9A-Fa-f]{2}/.test(t))return t;try{return encodeURI(t)}catch{return t}}function on(t="[snapDOM]",{ttlMs:e=5*6e4,maxEntries:n=12}={}){let r=new Map,o=0;function a(s,l,i){if(o>=n)return;let c=Date.now();(r.get(l)||0)>c||(r.set(l,c+e),o++,s==="warn"&&console&&console.warn?console.warn(`${t} ${i}`):console&&console.error&&console.error(`${t} ${i}`))}return{warnOnce(s,l){a("warn",s,l)},errorOnce(s,l){a("error",s,l)},reset(){r.clear(),o=0}}}var pe=on("[snapDOM]",{ttlMs:3*6e4,maxEntries:10}),Vt=new Map,kt=new Map;function sn(t){return/^data:|^blob:|^about:blank$/i.test(t)}function an(t,e){try{let n=typeof location<"u"&&location.href?location.href:"http://localhost/",r=e.includes("{url}")?e.split("{url}")[0]:e,o=new URL(r||".",n),a=new URL(t,n);if(a.origin===o.origin)return!0;let s=a.searchParams;if(s&&(s.has("url")||s.has("target")))return!0}catch{}return!1}function cn(t,e){if(!e||sn(t)||an(t,e))return!1;try{let n=typeof location<"u"&&location.href?location.href:"http://localhost/",r=new URL(t,n);return typeof location<"u"?r.origin!==location.origin:!0}catch{return!!e}}function ln(t,e){if(!e)return t;if(e.includes("{url}"))return e.replace("{urlRaw}",Y(t)).replace("{url}",encodeURIComponent(t));if(/[?&]url=?$/.test(e))return`${e}${encodeURIComponent(t)}`;if(e.endsWith("?"))return`${e}url=${encodeURIComponent(t)}`;if(e.endsWith("/"))return`${e}${Y(t)}`;let n=e.includes("?")?"&":"?";return`${e}${n}url=${encodeURIComponent(t)}`}function ge(t){return new Promise((e,n)=>{let r=new FileReader;r.onload=()=>e(String(r.result||"")),r.onerror=()=>n(new Error("read_failed")),r.readAsDataURL(t)})}function un(t,e){return[e.as||"blob",e.timeout??3e3,e.useProxy||"",e.errorTTL??8e3,t].join("|")}async function L(t,e={}){let n=e.as??"blob",r=e.timeout??3e3,o=e.useProxy||"",a=e.errorTTL??8e3,s=e.headers||{},l=!!e.silent;if(/^data:/i.test(t))try{if(n==="text")return{ok:!0,data:String(t),status:200,url:t,fromCache:!1};if(n==="dataURL")return{ok:!0,data:String(t),status:200,url:t,fromCache:!1,mime:String(t).slice(5).split(";")[0]||""};let[,h="",p=""]=String(t).match(/^data:([^,]*),(.*)$/)||[],S=/;base64/i.test(h)?atob(p):decodeURIComponent(p),x=new Uint8Array([...S].map(M=>M.charCodeAt(0))),C=new Blob([x],{type:(h||"").split(";")[0]||""});return{ok:!0,data:C,status:200,url:t,fromCache:!1,mime:C.type||""}}catch{return{ok:!1,data:null,status:0,url:t,fromCache:!1,reason:"special_url_error"}}if(/^blob:/i.test(t))try{let h=await fetch(t);if(!h.ok)return{ok:!1,data:null,status:h.status,url:t,fromCache:!1,reason:"http_error"};let p=await h.blob(),g=p.type||h.headers.get("content-type")||"";return n==="dataURL"?{ok:!0,data:await ge(p),status:h.status,url:t,fromCache:!1,mime:g}:n==="text"?{ok:!0,data:await p.text(),status:h.status,url:t,fromCache:!1,mime:g}:{ok:!0,data:p,status:h.status,url:t,fromCache:!1,mime:g}}catch{return{ok:!1,data:null,status:0,url:t,fromCache:!1,reason:"network"}}if(/^about:blank$/i.test(t))return n==="dataURL"?{ok:!0,data:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg==",status:200,url:t,fromCache:!1,mime:"image/png"}:{ok:!0,data:n==="text"?"":new Blob([]),status:200,url:t,fromCache:!1};let i=un(t,{as:n,timeout:r,useProxy:o,errorTTL:a}),c=kt.get(i);if(c&&c.until>Date.now())return{...c.result,fromCache:!0};c&&kt.delete(i);let u=Vt.get(i);if(u)return u;let f=cn(t,o)?ln(t,o):t,m=e.credentials;if(!m)try{let h=typeof location<"u"&&location.href?location.href:"http://localhost/",p=new URL(t,h);m=typeof location<"u"&&p.origin===location.origin?"include":"omit"}catch{m="omit"}let y=new AbortController,b=setTimeout(()=>y.abort("timeout"),r),d=(async()=>{try{let h=await fetch(f,{signal:y.signal,credentials:m,headers:s});if(!h.ok){let S={ok:!1,data:null,status:h.status,url:f,fromCache:!1,reason:"http_error"};if(a>0&&kt.set(i,{until:Date.now()+a,result:S}),!l){let x=`${h.status} ${h.statusText||""}`.trim();pe.warnOnce(`http:${h.status}:${n}:${new URL(t,location?.href??"http://localhost/").origin}`,`HTTP error ${x} while fetching ${n} ${t}`)}return e.onError&&e.onError(S),S}if(n==="text")return{ok:!0,data:await h.text(),status:h.status,url:f,fromCache:!1};let p=await h.blob(),g=p.type||h.headers.get("content-type")||"";return n==="dataURL"?{ok:!0,data:await ge(p),status:h.status,url:f,fromCache:!1,mime:g}:{ok:!0,data:p,status:h.status,url:f,fromCache:!1,mime:g}}catch(h){let p=h&&typeof h=="object"&&"name"in h&&h.name==="AbortError"?String(h.message||"").includes("timeout")?"timeout":"abort":"network",g={ok:!1,data:null,status:0,url:f,fromCache:!1,reason:p};if(!/^blob:/i.test(t)&&a>0&&kt.set(i,{until:Date.now()+a,result:g}),!l){let S=`${p}:${n}:${new URL(t,location?.href??"http://localhost/").origin}`,x=p==="timeout"?`Timeout after ${r}ms. Consider increasing timeout or using a proxy for ${t}`:p==="abort"?`Request aborted while fetching ${n} ${t}`:`Network/CORS issue while fetching ${n} ${t}. A proxy may be required`;pe.errorOnce(S,x)}return e.onError&&e.onError(g),g}finally{clearTimeout(b),Vt.delete(i)}})();return Vt.set(i,d),d}function et(t,e){if(!e||!t.width||!t.height)return t;let n=document.createElement("canvas");n.width=t.width,n.height=t.height;let r=n.getContext("2d");return r.fillStyle=e,r.fillRect(0,0,n.width,n.height),r.drawImage(t,0,0),n}async function nt(t,e={}){if(/^((repeating-)?(linear|radial|conic)-gradient)\(/i.test(t)||t.trim()==="none")return t;let r=tt(t);if(!r)return t;let o=Y(r);if(w.background.has(o)){let a=w.background.get(o);return a?`url("${a}")`:"none"}try{let a=await L(o,{as:"dataURL",useProxy:e.useProxy});return a.ok?(w.background.set(o,a.data),`url("${a.data}")`):(w.background.set(o,null),"none")}catch{return w.background.set(o,null),"none"}}var At=new Set(["meta","script","noscript","title","link","template"]),lt=new Set(["meta","link","style","title","noscript","script","template","g","defs","use","marker","mask","clipPath","pattern","path","polygon","polyline","line","circle","ellipse","rect","filter","lineargradient","radialgradient","stop"]),fn=["div","span","p","a","img","ul","li","button","input","select","textarea","label","section","article","header","footer","nav","main","aside","h1","h2","h3","h4","h5","h6","table","thead","tbody","tr","td","th"];function zt(){for(let t of fn){let e=String(t).toLowerCase();At.has(e)||lt.has(e)||Xt(e)}}function Xt(t){if(t=String(t).toLowerCase(),lt.has(t)){let a={};return w.defaultStyle.set(t,a),a}if(w.defaultStyle.has(t))return w.defaultStyle.get(t);let e=document.getElementById("snapdom-sandbox");e||(e=document.createElement("div"),e.id="snapdom-sandbox",e.setAttribute("data-snapdom-sandbox","true"),e.setAttribute("aria-hidden","true"),e.style.position="absolute",e.style.left="-9999px",e.style.top="-9999px",e.style.width="0px",e.style.height="0px",e.style.overflow="hidden",document.body.appendChild(e));let n=document.createElement(t);n.style.all="initial",e.appendChild(n);let r=getComputedStyle(n),o={};for(let a of r){if(ye(a))continue;let s=r.getPropertyValue(a);o[a]=s}return e.removeChild(n),w.defaultStyle.set(t,o),o}var dn=/(?:^|-)(animation|transition)(?:-|$)/i,mn=/^(--|view-timeline|scroll-timeline|animation-trigger|offset-|position-try|app-region|interactivity|overlay|view-transition|-webkit-locale|-webkit-user-(?:drag|modify)|-webkit-tap-highlight-color|-webkit-text-security)$/i,hn=new Set(["cursor","pointer-events","touch-action","user-select","print-color-adjust","speak","reading-flow","reading-order","anchor-name","anchor-scope","container-name","container-type","timeline-scope"]);function ye(t){let e=String(t).toLowerCase();return!!(hn.has(e)||mn.test(e)||dn.test(e))}function ut(t,e){if(e=String(e||"").toLowerCase(),lt.has(e))return"";let n=[],r=Xt(e);for(let[o,a]of Object.entries(t)){if(ye(o))continue;let s=r[o];a&&a!==s&&n.push(`${o}:${a}`)}return n.sort(),n.join(";")}function Yt(t){let e=new Set;return t.nodeType!==Node.ELEMENT_NODE&&t.nodeType!==Node.DOCUMENT_FRAGMENT_NODE?[]:(t.tagName&&e.add(t.tagName.toLowerCase()),typeof t.querySelectorAll=="function"&&t.querySelectorAll("*").forEach(n=>e.add(n.tagName.toLowerCase())),Array.from(e))}function Gt(t){let e=new Map;for(let r of t){let o=w.defaultStyle.get(r);if(!o)continue;let a=Object.entries(o).map(([s,l])=>`${s}:${l};`).sort().join("");a&&(e.has(a)||e.set(a,[]),e.get(a).push(r))}let n="";for(let[r,o]of e.entries())n+=`${o.join(",")} { ${r} }
+`;return n}function Kt(t){let e=Array.from(new Set(t.values())).filter(Boolean).sort(),n=new Map,r=1;for(let o of e)n.set(o,`c${r++}`);return n}function rt(t,e=null){if(!(t instanceof Element))return window.getComputedStyle(t,e);let n=w.computedStyle.get(t);if(n||(n=new Map,w.computedStyle.set(t,n)),!n.has(e)){let r=window.getComputedStyle(t,e);n.set(e,r)}return n.get(e)}function $t(t){let e={};for(let n of t)e[n]=t.getPropertyValue(n);return e}function ot(t){let e=[],n=0,r=0;for(let o=0;opt()).observe(t,{subtree:!0,childList:!0,characterData:!0,attributes:!0})}catch{}try{new MutationObserver(()=>pt()).observe(document.head,{subtree:!0,childList:!0,characterData:!0,attributes:!0})}catch{}try{let e=document.fonts;e&&(e.addEventListener?.("loadingdone",pt),e.ready?.then(()=>pt()).catch(()=>{}))}catch{}}}function gn(t,e={}){let n={},r=t.getPropertyValue("visibility");for(let o=0;or[0]o[0]?1:0).map(([r,o])=>`${r}:${o}`).join(";"),Se.set(t,e),e)}function wn(t,e=null,n={}){let r=we.get(t);if(r&&r.epoch===Qt)return r.snapshot;let o=e||getComputedStyle(t),a=gn(o,n);return kn(t,o,a),we.set(t,{epoch:Qt,snapshot:a}),a}function bn(t,e){return t&&t.session&&t.persist?t:t&&(t.styleMap||t.styleCache||t.nodeMap)?{session:t,persist:{snapshotKeyCache:Jt,defaultStyle:w.defaultStyle,baseStyle:w.baseStyle,image:w.image,resource:w.resource,background:w.background,font:w.font},options:e||{}}:{session:w.session,persist:{snapshotKeyCache:Jt,defaultStyle:w.defaultStyle,baseStyle:w.baseStyle,image:w.image,resource:w.resource,background:w.background,font:w.font},options:t||e||{}}}async function st(t,e,n,r){if(t.tagName==="STYLE")return;let o=bn(n,r),a=o.options&&o.options.cache||"auto";if(a!=="disabled"&&pn(document.documentElement),a==="disabled"&&!o.session.__bumpedForDisabled&&(pt(),Jt.clear(),o.session.__bumpedForDisabled=!0),lt.has(t.tagName?.toLowerCase())){let m=t.getAttribute?.("style");m&&e.setAttribute("style",m)}let{session:s,persist:l}=o;s.styleCache.has(t)||s.styleCache.set(t,getComputedStyle(t));let i=s.styleCache.get(t),c=wn(t,i,o.options),u=yn(c),f=l.snapshotKeyCache.get(u);if(!f){let m=t.tagName?.toLowerCase()||"div";f=ut(c,m),l.snapshotKeyCache.set(u,f)}s.styleMap.set(e,f)}function Sn(t){return t instanceof HTMLImageElement||t instanceof HTMLCanvasElement||t instanceof HTMLVideoElement||t instanceof HTMLIFrameElement||t instanceof SVGElement||t instanceof HTMLObjectElement||t instanceof HTMLEmbedElement}function xn(t){return t.backgroundImage&&t.backgroundImage!=="none"||t.backgroundColor&&t.backgroundColor!=="rgba(0, 0, 0, 0)"&&t.backgroundColor!=="transparent"||(parseFloat(t.borderTopWidth)||0)>0||(parseFloat(t.borderBottomWidth)||0)>0||(parseFloat(t.paddingTop)||0)>0||(parseFloat(t.paddingBottom)||0)>0?!0:(t.overflowBlock||t.overflowY||"visible")!=="visible"}function Cn(t){let e=t.parentElement;if(!e)return!1;let n=getComputedStyle(e).display||"";return n.includes("flex")||n.includes("grid")}function Mn(t,e){if(t.textContent&&/\S/.test(t.textContent))return!0;let n=t.firstElementChild,r=t.lastElementChild;if(n&&n.tagName==="BR"||r&&r.tagName==="BR")return!0;let o=t.scrollHeight;if(o===0)return!1;let a=parseFloat(e.paddingTop)||0,s=parseFloat(e.paddingBottom)||0;return o>a+s}function kn(t,e,n){if(t instanceof HTMLElement&&t.style&&t.style.height)return;let r=e.display||"";if(r.includes("flex")||r.includes("grid")||Sn(t))return;let o=e.position;o==="absolute"||o==="fixed"||o==="sticky"||e.transform==="none"&&(xn(e)||Cn(t)||Mn(t,e)&&(delete n.height,delete n["block-size"]))}function xe(t,e){if(!(t instanceof Element)||!(e instanceof Element))return;let n=t.getAttribute?.("style"),r=!!(n&&n.includes("var("));if(!r&&t.attributes?.length){let s=t.attributes;for(let l=0;lnew Promise(o=>{function a(){j(s=>{(s&&typeof s.timeRemaining=="function"?s.timeRemaining()>0:!0)?e(r,o):a()},{fast:n})}a()})))}function An(t){return t=t.trim(),!t||/:not\(\s*\[data-sd-slotted\]\s*\)\s*$/.test(t)?t:`${t}:not([data-sd-slotted])`}function $n(t,e,n=!0){return t.split(",").map(r=>r.trim()).filter(Boolean).map(r=>{if(r.startsWith(":where(")||r.startsWith("@"))return r;let o=n?An(r):r;return`:where(${e} ${o})`}).join(", ")}function vn(t,e){return t?(t=t.replace(/:host\(([^)]+)\)/g,(n,r)=>`:where(${e}:is(${r.trim()}))`),t=t.replace(/:host\b/g,`:where(${e})`),t=t.replace(/:host-context\(([^)]+)\)/g,(n,r)=>`:where(:where(${r.trim()}) ${e})`),t=t.replace(/::slotted\(([^)]+)\)/g,(n,r)=>`:where(${e} ${r.trim()})`),t=t.replace(/(^|})(\s*)([^@}{]+){/g,(n,r,o,a)=>{let s=$n(a,e,!0);return`${r}${o}${s}{`}),t):""}function En(t){return t.shadowScopeSeq=(t.shadowScopeSeq||0)+1,`s${t.shadowScopeSeq}`}function Fn(t){let e="";try{t.querySelectorAll("style").forEach(r=>{e+=(r.textContent||"")+`
+`});let n=t.adoptedStyleSheets||[];for(let r of n)try{if(r&&r.cssRules)for(let o of r.cssRules)e+=o.cssText+`
+`}catch{}}catch{}return e}function Nn(t,e,n){if(!e)return;let r=document.createElement("style");r.setAttribute("data-sd",n),r.textContent=e,t.insertBefore(r,t.firstChild||null)}function Ln(t,e){try{let n=t.currentSrc||t.src||"";if(!n)return;e.setAttribute("src",n),e.removeAttribute("srcset"),e.removeAttribute("sizes"),e.loading="eager",e.decoding="sync"}catch{}}function Rn(t){let e=new Set;if(!t)return e;let n=/var\(\s*(--[A-Za-z0-9_-]+)\b/g,r;for(;r=n.exec(t);)e.add(r[1]);return e}function In(t,e){try{let r=getComputedStyle(t).getPropertyValue(e).trim();if(r)return r}catch{}try{let r=getComputedStyle(document.documentElement).getPropertyValue(e).trim();if(r)return r}catch{}return""}function Tn(t,e,n){let r=[];for(let o of e){let a=In(t,o);a&&r.push(`${o}: ${a};`)}return r.length?`${n}{${r.join("")}}
+`:""}function Pn(t){t&&(t.nodeType===Node.ELEMENT_NODE&&t.setAttribute("data-sd-slotted",""),t.querySelectorAll&&t.querySelectorAll("*").forEach(e=>e.setAttribute("data-sd-slotted","")))}async function _n(t,e=3){let n=()=>{try{return t.contentDocument||t.contentWindow?.document||null}catch{return null}},r=n(),o=0;for(;osetTimeout(a,0)),r=n(),o++;return r&&(r.body||r.documentElement)?r:null}function Wn(t){let e=t.getBoundingClientRect(),n=0,r=0,o=0,a=0;try{let i=getComputedStyle(t);n=parseFloat(i.borderLeftWidth)||0,r=parseFloat(i.borderRightWidth)||0,o=parseFloat(i.borderTopWidth)||0,a=parseFloat(i.borderBottomWidth)||0}catch{}let s=Math.max(0,Math.round(e.width-(n+r))),l=Math.max(0,Math.round(e.height-(o+a)));return{contentWidth:s,contentHeight:l,rect:e}}function Un(t,e,n){let r=t.createElement("style");return r.setAttribute("data-sd-iframe-pin",""),r.textContent=`html, body {margin: 0 !important;padding: 0 !important;width: ${e}px !important;height: ${n}px !important;min-width: ${e}px !important;min-height: ${n}px !important;box-sizing: border-box !important;overflow: hidden !important;background-clip: border-box !important;}`,(t.head||t.documentElement).appendChild(r),()=>{try{r.remove()}catch{}}}async function Bn(t,e,n){let r=await _n(t,3);if(!r)throw new Error("iframe document not accessible/ready");let{contentWidth:o,contentHeight:a,rect:s}=Wn(t),l=n?.snap;if(!l||typeof l.toPng!="function")throw new Error("snapdom.toPng not available in iframe or window");let i={...n,scale:1},c=Un(r,o,a),u;try{u=await l.toPng(r.documentElement,i)}finally{c()}u.style.display="block",u.style.width=`${o}px`,u.style.height=`${a}px`;let f=document.createElement("div");return e.nodeMap.set(f,t),st(t,f,e,n),f.style.overflow="hidden",f.style.display="block",f.style.width||(f.style.width=`${Math.round(s.width)}px`),f.style.height||(f.style.height=`${Math.round(s.height)}px`),f.appendChild(u),f}async function gt(t,e,n){if(!t)throw new Error("Invalid node");let r=new Set,o=null,a=null;if(t.nodeType===Node.ELEMENT_NODE){let c=(t.localName||t.tagName||"").toLowerCase();if(t.id==="snapdom-sandbox"||t.hasAttribute("data-snapdom-sandbox")||At.has(c))return null}if(t.nodeType===Node.TEXT_NODE||t.nodeType!==Node.ELEMENT_NODE)return t.cloneNode(!0);if(t.getAttribute("data-capture")==="exclude"){if(n.excludeMode==="hide"){let c=document.createElement("div"),u=t.getBoundingClientRect();return c.style.cssText=`display:inline-block;width:${u.width}px;height:${u.height}px;visibility:hidden;`,c}else if(n.excludeMode==="remove")return null}if(n.exclude&&Array.isArray(n.exclude))for(let c of n.exclude)try{if(t.matches?.(c)){if(n.excludeMode==="hide"){let u=document.createElement("div"),f=t.getBoundingClientRect();return u.style.cssText=`display:inline-block;width:${f.width}px;height:${f.height}px;visibility:hidden;`,u}else if(n.excludeMode==="remove")return null}}catch(u){console.warn(`Invalid selector in exclude option: ${c}`,u)}if(typeof n.filter=="function")try{if(!n.filter(t)){if(n.filterMode==="hide"){let c=document.createElement("div"),u=t.getBoundingClientRect();return c.style.cssText=`display:inline-block;width:${u.width}px;height:${u.height}px;visibility:hidden;`,c}else if(n.filterMode==="remove")return null}}catch(c){console.warn("Error in filter function:",c)}if(t.tagName==="IFRAME"){let c=!1;try{c=!!(t.contentDocument||t.contentWindow?.document)}catch{c=!1}if(c)try{return await Bn(t,e,n)}catch(u){console.warn("[SnapDOM] iframe rasterization failed, fallback:",u)}if(n.placeholders){let u=document.createElement("div");return u.style.cssText=`width:${t.offsetWidth}px;height:${t.offsetHeight}px;background-image:repeating-linear-gradient(45deg,#ddd,#ddd 5px,#f9f9f9 5px,#f9f9f9 10px);display:flex;align-items:center;justify-content:center;font-size:12px;color:#555;border:1px solid #aaa;`,st(t,u,e,n),u}else{let u=t.getBoundingClientRect(),f=document.createElement("div");return f.style.cssText=`display:inline-block;width:${u.width}px;height:${u.height}px;visibility:hidden;`,st(t,f,e,n),f}}if(t.getAttribute("data-capture")==="placeholder"){let c=t.cloneNode(!1);e.nodeMap.set(c,t),st(t,c,e,n);let u=document.createElement("div");return u.textContent=t.getAttribute("data-placeholder-text")||"",u.style.cssText="color:#666;font-size:12px;text-align:center;line-height:1.4;padding:0.5em;box-sizing:border-box;",c.appendChild(u),c}if(t.tagName==="CANVAS"){let c=t.toDataURL(),u=document.createElement("img");return u.src=c,u.width=t.width,u.height=t.height,e.nodeMap.set(u,t),st(t,u,e,n),u}let s;try{if(s=t.cloneNode(!1),xe(t,s),e.nodeMap.set(s,t),t.tagName==="IMG"){Ln(t,s);try{let c=t.getBoundingClientRect(),u=Math.round(c.width||0),f=Math.round(c.height||0);if(!u||!f){let m=window.getComputedStyle(t),y=parseFloat(m.width)||0,b=parseFloat(m.height)||0,d=parseInt(t.getAttribute("width")||"",10)||0,h=parseInt(t.getAttribute("height")||"",10)||0,p=t.width||t.naturalWidth||0,g=t.height||t.naturalHeight||0;u=Math.round(u||y||d||p||0),f=Math.round(f||b||h||g||0)}u&&(s.dataset.snapdomWidth=String(u)),f&&(s.dataset.snapdomHeight=String(f))}catch{}}}catch(c){throw console.error("[Snapdom] Failed to clone node:",t,c),c}if(t instanceof HTMLTextAreaElement){let c=t.getBoundingClientRect();s.style.width=`${c.width}px`,s.style.height=`${c.height}px`}if(t instanceof HTMLInputElement&&(s.value=t.value,s.setAttribute("value",t.value),t.checked!==void 0&&(s.checked=t.checked,t.checked&&s.setAttribute("checked",""),t.indeterminate&&(s.indeterminate=t.indeterminate))),t instanceof HTMLSelectElement&&(o=t.value),t instanceof HTMLTextAreaElement&&(a=t.value),st(t,s,e,n),t.shadowRoot){let h=function(g,S){if(g.nodeType===Node.ELEMENT_NODE&&g.tagName==="STYLE")return S(null);gt(g,e,n).then(x=>{S(x||null)}).catch(()=>{S(null)})};try{let g=t.shadowRoot.querySelectorAll("slot");for(let S of g){let x=[];try{x=S.assignedNodes?.({flatten:!0})||S.assignedNodes?.()||[]}catch{x=S.assignedNodes?.()||[]}for(let C of x)r.add(C)}}catch{}let c=En(e),u=`[data-sd="${c}"]`;try{s.setAttribute("data-sd",c)}catch{}let f=Fn(t.shadowRoot),m=vn(f,u),y=Rn(f),b=Tn(t,y,u);Nn(s,b+m,c);let d=document.createDocumentFragment(),p=await Zt(Array.from(t.shadowRoot.childNodes),h,n.fast);d.append(...p.filter(g=>!!g)),s.appendChild(d)}if(t.tagName==="SLOT"){let m=function(b,d){gt(b,e,n).then(h=>{h&&Pn(h),d(h||null)}).catch(()=>{d(null)})},c=t.assignedNodes?.({flatten:!0})||[],u=c.length>0?c:Array.from(t.childNodes),f=document.createDocumentFragment(),y=await Zt(Array.from(u),m,n.fast);return f.append(...y.filter(b=>!!b)),f}function l(c,u){if(r.has(c))return u(null);gt(c,e,n).then(f=>{u(f||null)}).catch(()=>{u(null)})}let i=await Zt(Array.from(t.childNodes),l,n.fast);if(s.append(...i.filter(c=>!!c)),o!==null&&s instanceof HTMLSelectElement){s.value=o;for(let c of s.options)c.value===o?c.setAttribute("selected",""):c.removeAttribute("selected")}return a!==null&&s instanceof HTMLTextAreaElement&&(s.textContent=a),s}var On=[/font\s*awesome/i,/material\s*icons/i,/ionicons/i,/glyphicons/i,/feather/i,/bootstrap\s*icons/i,/remix\s*icons/i,/heroicons/i,/layui/i,/lucide/i],te=[];function Ce(t){let e=Array.isArray(t)?t:[t];for(let n of e)n instanceof RegExp?te.push(n):typeof n=="string"?te.push(new RegExp(n,"i")):console.warn("[snapdom] Ignored invalid iconFont value:",n)}function B(t){let e=typeof t=="string"?t:"",n=[...On,...te];for(let r of n)if(r instanceof RegExp&&r.test(e))return!0;return!!(/icon/i.test(e)||/glyph/i.test(e)||/symbols/i.test(e)||/feather/i.test(e)||/fontawesome/i.test(e))}async function Ae(t,e,n,r=32,o="#000"){e=e.replace(/^['"]+|['"]+$/g,"");let a=window.devicePixelRatio||1;try{await document.fonts.ready}catch{}let s=document.createElement("span");s.textContent=t,s.style.position="absolute",s.style.visibility="hidden",s.style.fontFamily=`"${e}"`,s.style.fontWeight=n||"normal",s.style.fontSize=`${r}px`,s.style.lineHeight="1",s.style.whiteSpace="nowrap",s.style.padding="0",s.style.margin="0",document.body.appendChild(s);let l=s.getBoundingClientRect(),i=Math.ceil(l.width),c=Math.ceil(l.height);document.body.removeChild(s);let u=document.createElement("canvas");u.width=Math.max(1,i*a),u.height=Math.max(1,c*a);let f=u.getContext("2d");return f.scale(a,a),f.font=n?`${n} ${r}px "${e}"`:`${r}px "${e}"`,f.textAlign="left",f.textBaseline="top",f.fillStyle=o,f.fillText(t,0,0),{dataUrl:u.toDataURL(),width:i,height:c}}var Dn=new Set(["serif","sans-serif","monospace","cursive","fantasy","system-ui","emoji","math","fangsong","ui-serif","ui-sans-serif","ui-monospace","ui-rounded"]);function Ft(t){if(!t)return"";for(let e of t.split(",")){let n=e.trim().replace(/^['"]+|['"]+$/g,"");if(n&&!Dn.has(n.toLowerCase()))return n}return""}function vt(t){let e=String(t??"400").trim().toLowerCase();if(e==="normal")return 400;if(e==="bold")return 700;let n=parseInt(e,10);return Number.isFinite(n)?Math.min(900,Math.max(100,n)):400}function ee(t){let e=String(t??"normal").trim().toLowerCase();return e.startsWith("italic")?"italic":e.startsWith("oblique")?"oblique":"normal"}function Hn(t){let e=String(t??"100%").match(/(\d+(?:\.\d+)?)\s*%/);return e?Math.max(50,Math.min(200,parseFloat(e[1]))):100}function qn(t){let e=String(t||"400").trim(),n=e.match(/^(\d{2,3})\s+(\d{2,3})$/);if(n){let o=vt(n[1]),a=vt(n[2]);return{min:Math.min(o,a),max:Math.max(o,a)}}let r=vt(e);return{min:r,max:r}}function jn(t){let e=String(t||"normal").trim().toLowerCase();return e==="italic"?{kind:"italic"}:e.startsWith("oblique")?{kind:"oblique"}:{kind:"normal"}}function Vn(t){let e=String(t||"100%").trim(),n=e.match(/(\d+(?:\.\d+)?)\s*%\s+(\d+(?:\.\d+)?)\s*%/);if(n){let a=parseFloat(n[1]),s=parseFloat(n[2]);return{min:Math.min(a,s),max:Math.max(a,s)}}let r=e.match(/(\d+(?:\.\d+)?)\s*%/),o=r?parseFloat(r[1]):100;return{min:o,max:o}}function zn(t,e){if(!t)return!1;try{let n=new URL(t,location.href);if(n.origin===location.origin)return!0;let o=n.host.toLowerCase();if(["fonts.googleapis.com","fonts.gstatic.com","use.typekit.net","p.typekit.net","kit.fontawesome.com","use.fontawesome.com"].some(l=>o.endsWith(l)))return!0;let s=(n.pathname+n.search).toLowerCase();if(/\bfont(s)?\b/.test(s)||/\.woff2?(\b|$)/.test(s))return!0;for(let l of e){let i=l.toLowerCase().replace(/\s+/g,"+"),c=l.toLowerCase().replace(/\s+/g,"-");if(s.includes(i)||s.includes(c))return!0}return!1}catch{return!1}}function Xn(t){let e=new Set;for(let n of t||[]){let r=String(n).split("__")[0]?.trim();r&&e.add(r)}return e}function Me(t,e){return t&&t.replace(/url\(\s*(['"]?)([^)'"]+)\1\s*\)/g,(n,r,o)=>{let a=(o||"").trim();if(!a||/^data:|^blob:|^https?:|^file:|^about:/i.test(a))return n;let s=a;try{s=new URL(a,e||location.href).href}catch{}return`url("${s}")`})}var ne=/@import\s+(?:url\(\s*(['"]?)([^)"']+)\1\s*\)|(['"])([^"']+)\3)([^;]*);/g,Et=4;async function Yn(t,e,n){if(!t)return t;let r=new Set;function o(l,i){try{return new URL(l,i||location.href).href}catch{return l}}async function a(l,i,c=0){if(c>Et)return console.warn(`[snapDOM] @import depth exceeded (${Et}) at ${i}`),l;let u="",f=0,m;for(;m=ne.exec(l);){u+=l.slice(f,m.index),f=ne.lastIndex;let y=(m[2]||m[4]||"").trim(),b=o(y,i);if(r.has(b)){console.warn(`[snapDOM] Skipping circular @import: ${b}`);continue}r.add(b);let d="";try{let h=await L(b,{as:"text",useProxy:n,silent:!0});h.ok&&typeof h.data=="string"&&(d=h.data)}catch{}d?(d=Me(d,b),d=await a(d,b,c+1),u+=`
+/* inlined: ${b} */
+${d}
+`):u+=m[0]}return u+=l.slice(f),u}let s=Me(t,e||location.href);return s=await a(s,e||location.href,0),s}var $e=/url\((["']?)([^"')]+)\1\)/g,Gn=/@font-face[^{}]*\{[^}]*\}/g;function ve(t){if(!t)return[];let e=[],n=t.split(",").map(r=>r.trim()).filter(Boolean);for(let r of n){let o=r.match(/^U\+([0-9A-Fa-f?]+)(?:-([0-9A-Fa-f?]+))?$/);if(!o)continue;let a=o[1],s=o[2],l=i=>{if(!i.includes("?"))return parseInt(i,16);let c=parseInt(i.replace(/\?/g,"0"),16),u=parseInt(i.replace(/\?/g,"F"),16);return[c,u]};if(s){let i=l(a),c=l(s),u=Array.isArray(i)?i[0]:i,f=Array.isArray(c)?c[1]:c;e.push([Math.min(u,f),Math.max(u,f)])}else{let i=l(a);Array.isArray(i)?e.push([i[0],i[1]]):e.push([i,i])}}return e}function Ee(t,e){if(!e.length||!t||t.size===0)return!0;for(let n of t)for(let[r,o]of e)if(n>=r&&n<=o)return!0;return!1}function re(t,e){let n=[];if(!t)return n;for(let r of t.matchAll($e)){let o=(r[2]||"").trim();if(!(!o||o.startsWith("data:"))){if(!/^https?:/i.test(o))try{o=new URL(o,e||location.href).href}catch{}n.push(o)}}return n}async function Fe(t,e,n=""){let r=t;for(let o of t.matchAll($e)){let a=tt(o[0]);if(!a)continue;let s=a;if(!s.startsWith("http")&&!s.startsWith("data:"))try{s=new URL(s,e||location.href).href}catch{}if(!B(s)){if(w.resource?.has(s)){w.font?.add(s),r=r.replace(o[0],`url(${w.resource.get(s)})`);continue}if(!w.font?.has(s))try{let l=await L(s,{as:"dataURL",useProxy:n,silent:!0});if(l.ok&&typeof l.data=="string"){let i=l.data;w.resource?.set(s,i),w.font?.add(s),r=r.replace(o[0],`url(${i})`)}}catch{console.warn("[snapDOM] Failed to fetch font resource:",s)}}}return r}function Kn(t){if(!t.length)return null;let e=(l,i)=>t.some(([c,u])=>!(ui)),n=e(0,255)||e(305,305),r=e(256,591)||e(7680,7935),o=e(880,1023),a=e(1024,1279);return e(7840,7929)||e(258,259)||e(416,417)||e(431,432)?"vietnamese":a?"cyrillic":o?"greek":r?"latin-ext":n?"latin":null}function ke(t={}){let e=new Set((t.families||[]).map(o=>String(o).toLowerCase())),n=new Set((t.domains||[]).map(o=>String(o).toLowerCase())),r=new Set((t.subsets||[]).map(o=>String(o).toLowerCase()));return(o,a)=>{if(e.size&&e.has(o.family.toLowerCase()))return!0;if(n.size)for(let s of o.srcUrls)try{if(n.has(new URL(s).host.toLowerCase()))return!0}catch{}if(r.size){let s=Kn(a);if(s&&r.has(s))return!0}return!1}}function Jn(t){if(!t)return t;let e=/@font-face[^{}]*\{[^}]*\}/gi,n=new Set,r=[];for(let a of t.match(e)||[]){let s=a.match(/font-family:\s*([^;]+);/i)?.[1]||"",l=Ft(s),i=(a.match(/font-weight:\s*([^;]+);/i)?.[1]||"400").trim(),c=(a.match(/font-style:\s*([^;]+);/i)?.[1]||"normal").trim(),u=(a.match(/font-stretch:\s*([^;]+);/i)?.[1]||"100%").trim(),f=(a.match(/unicode-range:\s*([^;]+);/i)?.[1]||"").trim(),m=(a.match(/src\s*:\s*([^;]+);/i)?.[1]||"").trim(),y=re(m,location.href),b=y.length?y.map(h=>String(h).toLowerCase()).sort().join("|"):m.toLowerCase(),d=[String(l||"").toLowerCase(),i,c,u,f.toLowerCase(),b].join("|");n.has(d)||(n.add(d),r.push(a))}if(r.length===0)return t;let o=0;return t.replace(e,()=>r[o++]||"")}function Qn(t,e,n,r){let o=Array.from(t||[]).sort().join("|"),a=e?JSON.stringify({families:(e.families||[]).map(i=>String(i).toLowerCase()).sort(),domains:(e.domains||[]).map(i=>String(i).toLowerCase()).sort(),subsets:(e.subsets||[]).map(i=>String(i).toLowerCase()).sort()}):"",s=(n||[]).map(i=>`${(i.family||"").toLowerCase()}::${i.weight||"normal"}::${i.style||"normal"}::${i.src||""}`).sort().join("|");return`fonts-embed-css::req=${o}::ex=${a}::lf=${s}::px=${r||""}`}async function Ne(t,e,n,r){let o;try{o=t.cssRules||[]}catch{return}let a=(s,l)=>{try{return new URL(s,l||location.href).href}catch{return s}};for(let s of o){if(s.type===CSSRule.IMPORT_RULE&&s.styleSheet){let l=s.href?a(s.href,e):e;if(r.depth>=Et){console.warn(`[snapDOM] CSSOM import depth exceeded (${Et}) at ${l}`);continue}if(l&&r.visitedSheets.has(l)){console.warn(`[snapDOM] Skipping circular CSSOM import: ${l}`);continue}l&&r.visitedSheets.add(l);let i={...r,depth:(r.depth||0)+1};await Ne(s.styleSheet,l,n,i);continue}if(s.type===CSSRule.FONT_FACE_RULE){let l=(s.style.getPropertyValue("font-family")||"").trim(),i=Ft(l);if(!i||B(i))continue;let c=(s.style.getPropertyValue("font-weight")||"400").trim(),u=(s.style.getPropertyValue("font-style")||"normal").trim(),f=(s.style.getPropertyValue("font-stretch")||"100%").trim(),m=(s.style.getPropertyValue("src")||"").trim(),y=(s.style.getPropertyValue("unicode-range")||"").trim();if(!r.faceMatchesRequired(i,u,c,f))continue;let b=ve(y);if(!Ee(r.usedCodepoints,b))continue;let d={family:i,weightSpec:c,styleSpec:u,stretchSpec:f,unicodeRange:y,srcRaw:m,srcUrls:re(m,e||location.href),href:e||location.href};if(r.simpleExcluder&&r.simpleExcluder(d,b))continue;if(/url\(/i.test(m)){let h=await Fe(m,e||location.href,r.useProxy);await n(`@font-face{font-family:${i};src:${h};font-style:${u};font-weight:${c};font-stretch:${f};${y?`unicode-range:${y};`:""}}`)}else await n(`@font-face{font-family:${i};src:${m};font-style:${u};font-weight:${c};font-stretch:${f};${y?`unicode-range:${y};`:""}}`)}}}async function Nt({required:t,usedCodepoints:e,exclude:n=void 0,localFonts:r=[],useProxy:o=""}={}){t instanceof Set||(t=new Set),e instanceof Set||(e=new Set);let a=new Map;for(let d of t){let[h,p,g,S]=String(d).split("__");if(!h)continue;let x=a.get(h)||[];x.push({w:parseInt(p,10),s:g,st:parseInt(S,10)}),a.set(h,x)}function s(d,h,p,g){if(!a.has(d))return!1;let S=a.get(d),x=qn(p),C=jn(h),M=Vn(g),A=x.min!==x.max,P=x.min,W=$=>C.kind==="normal"&&$==="normal"||C.kind!=="normal"&&($==="italic"||$==="oblique"),N=!1;for(let $ of S){let k=A?$.w>=x.min&&$.w<=x.max:$.w===P,_=W(ee($.s)),O=$.st>=M.min&&$.st<=M.max;if(k&&_&&O){N=!0;break}}if(N)return!0;if(!A)for(let $ of S){let k=W(ee($.s)),_=$.st>=M.min&&$.st<=M.max;if(Math.abs(P-$.w)<=300&&k&&_)return!0}return!1}let l=ke(n),i=Qn(t,n,r,o);if(w.resource?.has(i))return w.resource.get(i);let c=Xn(t),u=[],f=ne;for(let d of document.querySelectorAll("style")){let h=d.textContent||"";for(let p of h.matchAll(f)){let g=(p[2]||p[4]||"").trim();if(!g||B(g))continue;!!document.querySelector(`link[rel="stylesheet"][href="${g}"]`)||u.push(g)}}u.length&&await Promise.all(u.map(d=>new Promise(h=>{if(document.querySelector(`link[rel="stylesheet"][href="${d}"]`))return h(null);let p=document.createElement("link");p.rel="stylesheet",p.href=d,p.setAttribute("data-snapdom","injected-import"),p.onload=()=>h(p),p.onerror=()=>h(null),document.head.appendChild(p)})));let m="",y=Array.from(document.querySelectorAll('link[rel="stylesheet"]')).filter(d=>!!d.href);for(let d of y)try{if(B(d.href))continue;let h="",p=!1;try{p=new URL(d.href,location.href).origin===location.origin}catch{}if(!p&&!zn(d.href,c))continue;if(p){let S=Array.from(document.styleSheets).find(x=>x.href===d.href);if(S)try{let x=S.cssRules||[];h=Array.from(x).map(C=>C.cssText).join("")}catch{}}if(!h&&(h=(await L(d.href,{as:"text",useProxy:o})).data,B(d.href)))continue;h=await Yn(h,d.href,o);let g="";for(let S of h.match(Gn)||[]){let x=(S.match(/font-family:\s*([^;]+);/i)?.[1]||"").trim(),C=Ft(x);if(!C||B(C))continue;let M=(S.match(/font-weight:\s*([^;]+);/i)?.[1]||"400").trim(),A=(S.match(/font-style:\s*([^;]+);/i)?.[1]||"normal").trim(),P=(S.match(/font-stretch:\s*([^;]+);/i)?.[1]||"100%").trim(),W=(S.match(/unicode-range:\s*([^;]+);/i)?.[1]||"").trim(),N=(S.match(/src\s*:\s*([^;]+);/i)?.[1]||"").trim(),$=re(N,d.href);if(!s(C,A,M,P))continue;let k=ve(W);if(!Ee(e,k))continue;let _={family:C,weightSpec:M,styleSpec:A,stretchSpec:P,unicodeRange:W,srcRaw:N,srcUrls:$,href:d.href};if(n&&l(_,k))continue;let O=/url\(/i.test(N)?await Fe(S,d.href,o):S;g+=O}g.trim()&&(m+=g)}catch{console.warn("[snapDOM] Failed to process stylesheet:",d.href)}let b={requiredIndex:a,usedCodepoints:e,faceMatchesRequired:s,simpleExcluder:n?ke(n):null,useProxy:o,visitedSheets:new Set,depth:0};for(let d of document.styleSheets)if(!(d.href&&y.some(h=>h.href===d.href)))try{let h=d.href||location.href;h&&b.visitedSheets.add(h),await Ne(d,h,async p=>{m+=p},b)}catch{}try{for(let d of document.fonts||[]){if(!d||!d.family||d.status!=="loaded"||!d._snapdomSrc)continue;let h=String(d.family).replace(/^['"]+|['"]+$/g,"");if(B(h)||!a.has(h)||n?.families&&n.families.some(g=>String(g).toLowerCase()===h.toLowerCase()))continue;let p=d._snapdomSrc;if(!String(p).startsWith("data:")){if(w.resource?.has(d._snapdomSrc))p=w.resource.get(d._snapdomSrc),w.font?.add(d._snapdomSrc);else if(!w.font?.has(d._snapdomSrc))try{let g=await L(d._snapdomSrc,{as:"dataURL",useProxy:o,silent:!0});if(g.ok&&typeof g.data=="string")p=g.data,w.resource?.set(d._snapdomSrc,p),w.font?.add(d._snapdomSrc);else continue}catch{console.warn("[snapDOM] Failed to fetch dynamic font src:",d._snapdomSrc);continue}}m+=`@font-face{font-family:'${h}';src:url(${p});font-style:${d.style||"normal"};font-weight:${d.weight||"normal"};}`}}catch{}for(let d of r){if(!d||typeof d!="object")continue;let h=String(d.family||"").replace(/^['"]+|['"]+$/g,"");if(!h||B(h)||!a.has(h)||n?.families&&n.families.some(M=>String(M).toLowerCase()===h.toLowerCase()))continue;let p=d.weight!=null?String(d.weight):"normal",g=d.style!=null?String(d.style):"normal",S=d.stretchPct!=null?`${d.stretchPct}%`:"100%",x=String(d.src||""),C=x;if(!C.startsWith("data:")){if(w.resource?.has(x))C=w.resource.get(x),w.font?.add(x);else if(!w.font?.has(x))try{let M=await L(x,{as:"dataURL",useProxy:o,silent:!0});if(M.ok&&typeof M.data=="string")C=M.data,w.resource?.set(x,C),w.font?.add(x);else continue}catch{console.warn("[snapDOM] Failed to fetch localFonts src:",x);continue}}m+=`@font-face{font-family:'${h}';src:url(${C});font-style:${g};font-weight:${p};font-stretch:${S};}`}return m&&(m=Jn(m),w.resource?.set(i,m)),m}function Lt(t){let e=new Set;if(!t)return e;let n=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,null),r=s=>{let l=Ft(s.fontFamily);if(!l)return;let i=(c,u,f)=>`${l}__${vt(c)}__${ee(u)}__${Hn(f)}`;e.add(i(s.fontWeight,s.fontStyle,s.fontStretch))};r(getComputedStyle(t));let o=getComputedStyle(t,"::before");o&&o.content&&o.content!=="none"&&r(o);let a=getComputedStyle(t,"::after");for(a&&a.content&&a.content!=="none"&&r(a);n.nextNode();){let s=n.currentNode,l=getComputedStyle(s);r(l);let i=getComputedStyle(s,"::before");i&&i.content&&i.content!=="none"&&r(i);let c=getComputedStyle(s,"::after");c&&c.content&&c.content!=="none"&&r(c)}return e}function Rt(t){let e=new Set,n=o=>{if(o)for(let a of o)e.add(a.codePointAt(0))},r=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT|NodeFilter.SHOW_TEXT,null);for(;r.nextNode();){let o=r.currentNode;if(o.nodeType===Node.TEXT_NODE)n(o.nodeValue||"");else if(o.nodeType===Node.ELEMENT_NODE){let a=o;for(let s of["::before","::after"]){let i=getComputedStyle(a,s)?.getPropertyValue("content");if(!(!i||i==="none"))if(/^"/.test(i)||/^'/.test(i))n(i.slice(1,-1));else{let c=i.match(/\\[0-9A-Fa-f]{1,6}/g);if(c)for(let u of c)try{e.add(parseInt(u.slice(1),16))}catch{}}}}}return e}async function It(t,e=2){try{await document.fonts.ready}catch{}let n=Array.from(t||[]).filter(Boolean);if(n.length===0)return;let r=()=>{let o=document.createElement("div");o.style.cssText="position:absolute!important;left:-9999px!important;top:0!important;opacity:0!important;pointer-events:none!important;contain:layout size style;";for(let a of n){let s=document.createElement("span");s.textContent="AaBbGg1234\xC1\xC9\xCD\xD3\xDA\xE7\xF1\u2014\u221E",s.style.fontFamily=`"${a}"`,s.style.fontWeight="700",s.style.fontStyle="italic",s.style.fontSize="32px",s.style.lineHeight="1",s.style.whiteSpace="nowrap",s.style.margin="0",s.style.padding="0",o.appendChild(s)}document.body.appendChild(o),o.offsetWidth,document.body.removeChild(o)};for(let o=0;orequestAnimationFrame(()=>requestAnimationFrame(a)))}function Te(t){return/\bcounter\s*\(|\bcounters\s*\(/.test(t||"")}function Zn(t){return(t||"").replace(/"([^"]*)"/g,"$1")}function Le(t,e=!1){let n="",r=Math.max(1,t);for(;r>0;)r--,n=String.fromCharCode(97+r%26)+n,r=Math.floor(r/26);return e?n.toUpperCase():n}function Re(t,e=!0){let n=[[1e3,"M"],[900,"CM"],[500,"D"],[400,"CD"],[100,"C"],[90,"XC"],[50,"L"],[40,"XL"],[10,"X"],[9,"IX"],[5,"V"],[4,"IV"],[1,"I"]],r=Math.max(1,Math.min(3999,t)),o="";for(let[a,s]of n)for(;r>=a;)o+=s,r-=a;return e?o:o.toLowerCase()}function Ie(t,e){switch((e||"decimal").toLowerCase()){case"decimal":return String(Math.max(0,t));case"decimal-leading-zero":return(t<10?"0":"")+String(Math.max(0,t));case"lower-alpha":return Le(t,!1);case"upper-alpha":return Le(t,!0);case"lower-roman":return Re(t,!1);case"upper-roman":return Re(t,!0);default:return String(Math.max(0,t))}}function Pe(t){let e=new WeakMap,n=t instanceof Document?t.documentElement:t,r=c=>c&&c.tagName==="LI",o=c=>{let u=0,f=c?.parentElement;if(!f)return 0;for(let m of f.children){if(m===c)break;m.tagName==="LI"&&u++}return u},a=c=>{let u=new Map;for(let[f,m]of c)u.set(f,m.slice());return u},s=(c,u,f)=>{let m=a(c),y;try{y=f.style?.counterReset||getComputedStyle(f).counterReset}catch{}if(y&&y!=="none")for(let d of y.split(",")){let h=d.trim().split(/\s+/),p=h[0],g=Number.isFinite(Number(h[1]))?Number(h[1]):0;if(!p)continue;let S=u.get(p);if(S&&S.length){let x=S.slice();x.push(g),m.set(p,x)}else m.set(p,[g])}let b;try{b=f.style?.counterIncrement||getComputedStyle(f).counterIncrement}catch{}if(b&&b!=="none")for(let d of b.split(",")){let h=d.trim().split(/\s+/),p=h[0],g=Number.isFinite(Number(h[1]))?Number(h[1]):1;if(!p)continue;let S=m.get(p)||[];S.length===0&&S.push(0),S[S.length-1]+=g,m.set(p,S)}try{if(getComputedStyle(f).display==="list-item"&&r(f)){let h=f.parentElement,p=1;if(h&&h.tagName==="OL"){let S=h.getAttribute("start"),x=Number.isFinite(Number(S))?Number(S):1,C=o(f),M=f.getAttribute("value");p=Number.isFinite(Number(M))?Number(M):x+C}else p=1+o(f);let g=m.get("list-item")||[];g.length===0&&g.push(0),g[g.length-1]=p,m.set("list-item",g)}}catch{}return m},l=(c,u,f)=>{let m=s(f,u,c);e.set(c,m);let y=m;for(let b of c.children)y=l(b,m,y);return m},i=new Map;return l(n,i,i),{get(c,u){let f=e.get(c)?.get(u);return f&&f.length?f[f.length-1]:0},getStack(c,u){let f=e.get(c)?.get(u);return f?f.slice():[]}}}function _e(t,e,n){if(!t||t==="none")return t;try{let r=/\b(counter|counters)\s*\(([^)]+)\)/g,o=t.replace(r,(a,s,l)=>{let i=String(l).split(",").map(c=>c.trim());if(s==="counter"){let c=i[0]?.replace(/^["']|["']$/g,""),u=(i[1]||"decimal").toLowerCase(),f=n.get(e,c);return Ie(f,u)}else{let c=i[0]?.replace(/^["']|["']$/g,""),u=i[1]?.replace(/^["']|["']$/g,"")??"",f=(i[2]||"decimal").toLowerCase(),m=n.getStack(e,c);return m.length?m.map(b=>Ie(b,f)).join(u):""}});return Zn(o)}catch{return"- "}}var yt=null,wt=new WeakMap;function tr(t){return(t||"").replace(/"([^"]*)"/g,"$1")}function er(t){if(!t)return"";let e=[],n=/"([^"]*)"/g,r;for(;r=n.exec(t);)e.push(r[1]);return e.length?e.join(""):tr(t)}function oe(t,e){let n=t.parentElement,r=n?wt.get(n):null;return r?{get(o,a){let s=e.get(o,a),l=r.get(a);return typeof l=="number"?Math.max(s,l):s},getStack(o,a){let s=e.getStack(o,a);if(!s.length)return s;let l=r.get(a);if(typeof l=="number"){let i=s.slice();return i[i.length-1]=Math.max(i[i.length-1],l),i}return s}}:e}function se(t,e,n){let r=new Map;function o(i){let c=[];if(!i||i==="none")return c;for(let u of String(i).split(",")){let f=u.trim().split(/\s+/),m=f[0],y=Number.isFinite(Number(f[1]))?Number(f[1]):void 0;m&&c.push({name:m,num:y})}return c}let a=o(e?.counterReset),s=o(e?.counterIncrement);function l(i){if(r.has(i))return r.get(i).slice();let c=n.getStack(t,i);c=c.length?c.slice():[];let u=a.find(m=>m.name===i);if(u){let m=Number.isFinite(u.num)?u.num:0;c=c.length?[...c,m]:[m]}let f=s.find(m=>m.name===i);if(f){let m=Number.isFinite(f.num)?f.num:1;c.length===0&&(c=[0]),c[c.length-1]+=m}return r.set(i,c.slice()),c}return{get(i,c){let u=l(c);return u.length?u[u.length-1]:0},getStack(i,c){return l(c)},__incs:s}}function nr(t,e,n){let r;try{r=getComputedStyle(t,e)}catch{}let o=r?.content;if(!o||o==="none"||o==="normal")return{text:"",incs:[]};let a=oe(t,n),s=se(t,r,a),l=Te(o)?_e(o,t,s):o;return{text:er(l),incs:s.__incs||[]}}async function ae(t,e,n,r){if(!(t instanceof Element)||!(e instanceof Element))return;if(!yt)try{yt=Pe(t.ownerDocument||document)}catch{}for(let s of["::before","::after","::first-letter"])try{let l=rt(t,s);if(!l||typeof l[Symbol.iterator]!="function"||l.content==="none"&&l.backgroundImage==="none"&&l.backgroundColor==="transparent"&&(l.borderStyle==="none"||parseFloat(l.borderWidth)===0)&&(!l.transform||l.transform==="none")&&l.display==="inline")continue;if(s==="::first-letter"){let v=getComputedStyle(t);if(!(l.color!==v.color||l.fontSize!==v.fontSize||l.fontWeight!==v.fontWeight))continue;let R=Array.from(e.childNodes).find(ft=>ft.nodeType===Node.TEXT_NODE&&ft.textContent?.trim().length>0);if(!R)continue;let I=R.textContent,H=I.match(/^([^\p{L}\p{N}\s]*[\p{L}\p{N}](?:['’])?)/u)?.[0],it=I.slice(H?.length||0);if(!H||/[\uD800-\uDFFF]/.test(H))continue;let J=document.createElement("span");J.textContent=H,J.dataset.snapdomPseudo="::first-letter";let xt=$t(l),Bt=ut(xt,"span");n.styleMap.set(J,Bt);let Ct=document.createTextNode(it);e.replaceChild(Ct,R),e.insertBefore(J,Ct);continue}let c=l.content,{text:u,incs:f}=nr(t,s,yt),m=l.backgroundImage,y=l.backgroundColor,b=l.fontFamily,d=parseInt(l.fontSize)||32,h=parseInt(l.fontWeight)||!1,p=l.color||"#000",g=l.borderStyle,S=parseFloat(l.borderWidth),x=l.transform,C=B(b),M=c!=="none"&&u!=="",A=m&&m!=="none",P=y&&y!=="transparent"&&y!=="rgba(0, 0, 0, 0)",W=g&&g!=="none"&&S>0,N=x&&x!=="none";if(!(M||A||P||W||N)){if(f&&f.length&&t.parentElement){let v=wt.get(t.parentElement)||new Map;for(let{name:F}of f){if(!F)continue;let R=oe(t,yt),D=se(t,getComputedStyle(t,s),R).get(t,F);v.set(F,D)}wt.set(t.parentElement,v)}continue}let k=document.createElement("span");k.dataset.snapdomPseudo=s,k.style.verticalAlign="middle",k.style.pointerEvents="none";let _=$t(l),O=ut(_,"span");if(n.styleMap.set(k,O),C&&u&&u.length===1){let{dataUrl:v,width:F,height:R}=await Ae(u,b,h,d,p),I=document.createElement("img");I.src=v,I.style=`height:${d}px;width:${F/R*d}px;object-fit:contain;`,k.appendChild(I),e.dataset.snapdomHasIcon="true"}else if(u&&u.startsWith("url(")){let v=tt(u);if(v?.trim())try{let F=document.createElement("img"),R=await L(Y(v),{as:"dataURL",useProxy:r.useProxy});F.src=R.data,F.style=`width:${d}px;height:auto;object-fit:contain;`,k.appendChild(F)}catch(F){console.error(`[snapdom] Error in pseudo ${s} for`,t,F)}}else!C&&M&&(k.textContent=u);if(k.style.background="none","mask"in k.style&&(k.style.mask="none"),A)try{let v=ot(m),F=await Promise.all(v.map(nt));k.style.backgroundImage=F.join(", ")}catch(v){console.warn(`[snapdom] Failed to inline background-image for ${s}`,v)}P&&(k.style.backgroundColor=y);let K=k.childNodes.length>0||k.textContent?.trim()!==""||A||P||W||N;if(f&&f.length&&t.parentElement){let v=wt.get(t.parentElement)||new Map,F=oe(t,yt),R=se(t,getComputedStyle(t,s),F);for(let{name:I}of f){if(!I)continue;let D=R.get(t,I);v.set(I,D)}wt.set(t.parentElement,v)}if(!K)continue;s==="::before"?e.insertBefore(k,e.firstChild):e.appendChild(k)}catch(l){console.warn(`[snapdom] Failed to capture ${s} for`,t,l)}let o=Array.from(t.children),a=Array.from(e.children).filter(s=>!s.dataset.snapdomPseudo);for(let s=0;s{let i=l.getAttribute("xlink:href")||l.getAttribute("href");i&&i.startsWith("#")&&e.add(i.slice(1))}),!e.size)return;let n=Array.from(document.querySelectorAll("svg > symbol, svg > defs")),r=n.filter(l=>l.tagName.toLowerCase()==="symbol"),o=n.filter(l=>l.tagName.toLowerCase()==="defs"),a=t.querySelector("svg.inline-defs-container");a||(a=document.createElementNS("http://www.w3.org/2000/svg","svg"),a.setAttribute("aria-hidden","true"),a.setAttribute("style","position: absolute; width: 0; height: 0; overflow: hidden;"),a.classList.add("inline-defs-container"),t.insertBefore(a,t.firstChild));let s=new Set;t.querySelectorAll("symbol[id], defs > *[id]").forEach(l=>{s.add(l.id)}),e.forEach(l=>{if(s.has(l))return;let i=r.find(c=>c.id===l);if(i){a.appendChild(i.cloneNode(!0)),s.add(l);return}for(let c of o){let u=c.querySelector(`#${CSS.escape(l)}`);if(u){let f=a.querySelector("defs");f||(f=document.createElementNS("http://www.w3.org/2000/svg","defs"),a.appendChild(f)),f.appendChild(u.cloneNode(!0)),s.add(l);break}}})}function Be(t,e){if(!t||!e)return;let n=t.scrollTop||0;if(!n)return;getComputedStyle(e).position==="static"&&(e.style.position="relative");let r=t.getBoundingClientRect(),o=t.clientHeight,a="data-snap-ph",s=document.createTreeWalker(t,NodeFilter.SHOW_ELEMENT);for(;s.nextNode();){let l=s.currentNode,i=getComputedStyle(l),c=i.position;if(c!=="sticky"&&c!=="-webkit-sticky")continue;let u=Ue(i.top),f=Ue(i.bottom);if(u==null&&f==null)continue;let m=rr(l,t),y=or(e,m,a);if(!y)continue;let b=l.getBoundingClientRect(),d=b.width,h=b.height,p=b.left-r.left;if(!(d>0&&h>0)||!Number.isFinite(p))continue;let g=u!=null?u+n:n+(o-h-f);if(!Number.isFinite(g))continue;let S=Number.parseInt(i.zIndex,10),x=Number.isFinite(S),C=x?Math.max(S,1)+1:2,M=x?S-1:0,A=y.cloneNode(!1);A.setAttribute(a,"1"),A.style.position="sticky",A.style.left=`${p}px`,A.style.top=`${g}px`,A.style.width=`${d}px`,A.style.height=`${h}px`,A.style.visibility="hidden",A.style.zIndex=String(M),A.style.overflow="hidden",A.style.background="transparent",A.style.boxShadow="none",A.style.filter="none",y.parentElement?.insertBefore(A,y),y.style.position="absolute",y.style.left=`${p}px`,y.style.top=`${g}px`,y.style.bottom="auto",y.style.zIndex=String(C),y.style.pointerEvents="none"}}function Ue(t){if(!t||t==="auto")return null;let e=Number.parseFloat(t);return Number.isFinite(e)?e:null}function rr(t,e){let n=[];for(let r=t;r&&r!==e;){let o=r.parentElement;if(!o)break;n.push(Array.prototype.indexOf.call(o.children,r)),r=o}return n.reverse()}function or(t,e,n){let r=t;for(let o=0;o`.${c}{${i}}`).join(""),o=a+o;for(let[i,c]of n.styleMap.entries()){if(i.tagName==="STYLE")continue;if(i.getRootNode&&i.getRootNode()instanceof ShadowRoot){i.setAttribute("style",c.replace(/;/g,"; "));continue}let u=s.get(c);u&&i.classList.add(u);let f=i.style?.backgroundImage,m=i.dataset?.snapdomHasIcon;f&&f!=="none"&&(i.style.backgroundImage=f),m&&(i.style.verticalAlign="middle",i.style.display="inline")}for(let[i,c]of n.nodeMap.entries()){let u=c.scrollLeft,f=c.scrollTop;if((u||f)&&i instanceof HTMLElement){i.style.overflow="hidden",i.style.scrollbarWidth="none",i.style.msOverflowStyle="none";let y=document.createElement("div");for(y.style.transform=`translate(${-u}px, ${-f}px)`,y.style.willChange="transform",y.style.display="inline-block",y.style.width="100%";i.firstChild;)y.appendChild(i.firstChild);i.appendChild(y)}}let l=r instanceof HTMLElement&&r.firstElementChild instanceof HTMLElement?r.firstElementChild:r;if(Be(t,l),t===n.nodeMap.get(r)){let i=n.styleCache.get(t)||window.getComputedStyle(t);n.styleCache.set(t,i);let c=jt(i.transform);r.style.margin="0",r.style.top="auto",r.style.left="auto",r.style.right="auto",r.style.bottom="auto",r.style.animation="none",r.style.transition="none",r.style.willChange="auto",r.style.float="none",r.style.clear="none",r.style.transform=c||""}for(let[i,c]of n.nodeMap.entries())c.tagName==="PRE"&&(i.style.marginTop="0",i.style.marginBlockStart="0");return{clone:r,classCSS:o,styleCache:n.styleCache}}function ar(t){let e=getComputedStyle(t),n=e.outlineStyle,r=e.outlineWidth,o=e.borderStyle,a=e.borderWidth,s=n!=="none"&&parseFloat(r)>0,l=o==="none"||parseFloat(a)===0;s&&l&&(t.style.border=`${r} solid transparent`)}var bt=new Map;async function St(t){if(w.resource?.has(t))return w.resource.get(t);if(bt.has(t))return bt.get(t);let e=(async()=>{let n=await L(t,{as:"dataURL",silent:!0});if(!n.ok||typeof n.data!="string")throw new Error(`[snapDOM] Failed to read blob URL: ${t}`);return w.resource?.set(t,n.data),n.data})();bt.set(t,e);try{let n=await e;return bt.set(t,n),n}catch(n){throw bt.delete(t),n}}var ir=/\bblob:[^)"'\s]+/g;async function Oe(t){if(!t||t.indexOf("blob:")===-1)return t;let e=Array.from(new Set(t.match(ir)||[]));if(e.length===0)return t;let n=t;for(let r of e)try{let o=await St(r);n=n.split(r).join(o)}catch{}return n}function Tt(t){return typeof t=="string"&&t.startsWith("blob:")}function cr(t){return(t||"").split(",").map(e=>e.trim()).filter(Boolean).map(e=>{let n=e.match(/^(\S+)(\s+.+)?$/);return n?{url:n[1],desc:n[2]||""}:null}).filter(Boolean)}function lr(t){return t.map(e=>e.desc?`${e.url} ${e.desc.trim()}`:e.url).join(", ")}async function ur(t){if(!t)return;let e=t.querySelectorAll?t.querySelectorAll("img"):[];for(let s of e)try{let i=s.getAttribute("src")||s.currentSrc||"";if(Tt(i)){let u=await St(i);s.setAttribute("src",u)}let c=s.getAttribute("srcset");if(c&&c.includes("blob:")){let u=cr(c),f=!1;for(let m of u)if(Tt(m.url))try{m.url=await St(m.url),f=!0}catch{}f&&s.setAttribute("srcset",lr(u))}}catch{}let n=t.querySelectorAll?t.querySelectorAll("image"):[];for(let s of n)try{let l="http://www.w3.org/1999/xlink",i=s.getAttribute("href")||s.getAttributeNS?.(l,"href");if(Tt(i)){let c=await St(i);s.setAttribute("href",c),s.removeAttributeNS?.(l,"href")}}catch{}let r=t.querySelectorAll?t.querySelectorAll("[style*='blob:']"):[];for(let s of r)try{let l=s.getAttribute("style");if(l&&l.includes("blob:")){let i=await Oe(l);s.setAttribute("style",i)}}catch{}let o=t.querySelectorAll?t.querySelectorAll("style"):[];for(let s of o)try{let l=s.textContent||"";l.includes("blob:")&&(s.textContent=await Oe(l))}catch{}let a=["poster"];for(let s of a){let l=t.querySelectorAll?t.querySelectorAll(`[${s}^='blob:']`):[];for(let i of l)try{let c=i.getAttribute(s);Tt(c)&&i.setAttribute(s,await St(c))}catch{}}}async function He(t,e={}){let n=Array.from(t.querySelectorAll("img")),r=async o=>{if(!o.getAttribute("src")){let u=o.currentSrc||o.src||"";u&&o.setAttribute("src",u)}o.removeAttribute("srcset"),o.removeAttribute("sizes");let a=o.src||"";if(!a)return;let s=await L(a,{as:"dataURL",useProxy:e.useProxy});if(s.ok&&typeof s.data=="string"&&s.data.startsWith("data:")){o.src=s.data,o.width||(o.width=o.naturalWidth||100),o.height||(o.height=o.naturalHeight||100);return}let{fallbackURL:l}=e||{};if(l)try{let u=parseInt(o.dataset?.snapdomWidth||"",10)||0,f=parseInt(o.dataset?.snapdomHeight||"",10)||0,m=parseInt(o.getAttribute("width")||"",10)||0,y=parseInt(o.getAttribute("height")||"",10)||0,b=parseFloat(o.style?.width||"")||0,d=parseFloat(o.style?.height||"")||0,h=u||b||m||o.width||void 0,p=f||d||y||o.height||void 0,g=typeof l=="function"?await l({width:h,height:p,src:a,element:o}):l;if(g){let S=await L(g,{as:"dataURL",useProxy:e.useProxy});o.src=S.data,!o.width&&h&&(o.width=h),!o.height&&p&&(o.height=p),o.width||(o.width=o.naturalWidth||100),o.height||(o.height=o.naturalHeight||100);return}}catch{}let i=o.width||o.naturalWidth||100,c=o.height||o.naturalHeight||100;if(e.placeholders!==!1){let u=document.createElement("div");u.style.cssText=[`width:${i}px`,`height:${c}px`,"background:#ccc","display:inline-block","text-align:center",`line-height:${c}px`,"color:#666","font-size:12px","overflow:hidden"].join(";"),u.textContent="img",o.replaceWith(u)}else{let u=document.createElement("div");u.style.cssText=`display:inline-block;width:${i}px;height:${c}px;visibility:hidden;`,o.replaceWith(u)}};for(let o=0;o{let b=u.getPropertyValue("border-image"),d=u.getPropertyValue("border-image-source");return b&&b!=="none"||d&&d!=="none"})();for(let b of a){let d=u.getPropertyValue(b);if(!d||d==="none")continue;let h=ot(d),p=await Promise.all(h.map(g=>nt(g,r)));p.some(g=>g&&g!=="none"&&!/^url\(undefined/.test(g))&&c.style.setProperty(b,p.join(", "))}for(let b of s){let d=u.getPropertyValue(b);!d||d==="initial"||c.style.setProperty(b,d)}if(f)for(let b of l){let d=u.getPropertyValue(b);!d||d==="initial"||c.style.setProperty(b,d)}let m=Array.from(i.children),y=Array.from(c.children);for(let b=0;b{};let e=fr(t);if(e<=0)return()=>{};if(!hr(t))return()=>{};let n=getComputedStyle(t),r=Math.round(dr(n)*e+mr(n)),o=t.textContent??"",a=o;if(t.scrollHeight<=r+.5)return()=>{};let s=0,l=o.length,i=-1;for(;s<=l;){let c=s+l>>1;t.textContent=o.slice(0,c)+"\u2026",t.scrollHeight<=r+.5?(i=c,s=c+1):l=c-1}return t.textContent=(i>=0?o.slice(0,i):"")+"\u2026",()=>{t.textContent=a}}function fr(t){let e=getComputedStyle(t),n=e.getPropertyValue("-webkit-line-clamp")||e.getPropertyValue("line-clamp");n=(n||"").trim();let r=parseInt(n,10);return Number.isFinite(r)&&r>0?r:0}function dr(t){let e=(t.lineHeight||"").trim(),n=parseFloat(t.fontSize)||16;return!e||e==="normal"?Math.round(n*1.2):e.endsWith("px")?parseFloat(e):/^\d+(\.\d+)?$/.test(e)?Math.round(parseFloat(e)*n):e.endsWith("%")?Math.round(parseFloat(e)/100*n):Math.round(n*1.2)}function mr(t){return(parseFloat(t.paddingTop)||0)+(parseFloat(t.paddingBottom)||0)}function hr(t){return t.childElementCount>0?!1:Array.from(t.childNodes).some(e=>e.nodeType===Node.TEXT_NODE)}function pr(t,e){if(!t||!e||!e.style)return;let n=getComputedStyle(t);try{e.style.boxShadow="none"}catch{}try{e.style.textShadow="none"}catch{}try{e.style.outline="none"}catch{}let o=(n.filter||"").replace(/\bblur\([^()]*\)\s*/gi,"").replace(/\bdrop-shadow\([^()]*\)\s*/gi,"").trim().replace(/\s+/g," ");try{e.style.filter=o.length?o:"none"}catch{}}async function ce(t,e){if(!t)throw new Error("Element cannot be null or undefined");Mt(e.cache);let n=e.fast,r=!!e.straighten,o=!!e.noShadows,a,s,l,i="",c="",u,f,m=null,y=qe(t);try{({clone:a,classCSS:s,styleCache:l}=await De(t,e)),r&&a&&(m=gr(t,a)),o&&a&&pr(t,a)}finally{y()}await new Promise(p=>{j(async()=>{await He(a,e),p()},{fast:n})}),await new Promise(p=>{j(async()=>{await Pt(t,a,l,e),p()},{fast:n})}),e.embedFonts&&await new Promise(p=>{j(async()=>{let g=Lt(t),S=Rt(t);if(T()){let x=new Set(Array.from(g).map(C=>String(C).split("__")[0]).filter(Boolean));await It(x,1)}i=await Nt({required:g,usedCodepoints:S,preCached:!1,exclude:e.excludeFonts,useProxy:e.useProxy}),p()},{fast:n})});let b=Yt(a).sort(),d=b.join(",");w.baseStyle.has(d)?c=w.baseStyle.get(d):await new Promise(p=>{j(()=>{c=Gt(b),w.baseStyle.set(d,c),p()},{fast:n})}),await new Promise(p=>{j(()=>{let g=getComputedStyle(t);function S(q){let U=`${q.filter||""} ${q.webkitFilter||""}`.trim();if(!U||U==="none")return{bleed:{top:0,right:0,bottom:0,left:0},has:!1};let X=U.match(/drop-shadow\((?:[^()]|\([^()]*\))*\)/gi)||[],Q=0,dt=0,mt=0,ht=0,Z=!1;for(let en of X){Z=!0;let nn=en.match(/-?\d+(?:\.\d+)?px/gi)?.map(rn=>parseFloat(rn))||[],[Ht=0,qt=0,de=0]=nn,me=Math.abs(Ht)+de,he=Math.abs(qt)+de;dt=Math.max(dt,me+Math.max(Ht,0)),ht=Math.max(ht,me+Math.max(-Ht,0)),mt=Math.max(mt,he+Math.max(qt,0)),Q=Math.max(Q,he+Math.max(-qt,0))}return{bleed:{top:Math.ceil(Q),right:Math.ceil(dt),bottom:Math.ceil(mt),left:Math.ceil(ht)},has:Z}}let x=t.getBoundingClientRect(),C=Math.max(1,Math.ceil(t.offsetWidth||parseFloat(g.width)||x.width||1)),M=Math.max(1,Math.ceil(t.offsetHeight||parseFloat(g.height)||x.height||1)),A=(q,U=NaN)=>{let X=typeof q=="string"?parseFloat(q):q;return Number.isFinite(X)?X:U},P=A(e.width),W=A(e.height),N=C,$=M,k=Number.isFinite(P),_=Number.isFinite(W),O=M>0?C/M:1;k&&_?(N=Math.max(1,Math.ceil(P)),$=Math.max(1,Math.ceil(W))):k?(N=Math.max(1,Math.ceil(P)),$=Math.max(1,Math.ceil(N/(O||1)))):_?($=Math.max(1,Math.ceil(W)),N=Math.max(1,Math.ceil($*(O||1)))):(N=C,$=M);let at=0,K=0,v=C,F=M;if(r&&m&&Number.isFinite(m.a)){let q={a:m.a,b:m.b||0,c:m.c||0,d:m.d||1,e:0,f:0},U=je(C,M,q,0,0);at=U.minX,K=U.minY,v=U.maxX,F=U.maxY}else if(!r&&Sr(t)){let U=g.transform&&g.transform!=="none"?g.transform:"",X=xr(t),Q=Ar({baseTransform:U,rotate:X.rotate||"0deg",scale:X.scale,translate:X.translate}),{ox:dt,oy:mt}=Mr(g,C,M),ht=Q.is2D?Q:new DOMMatrix(Q.toString()),Z=je(C,M,ht,dt,mt);at=Z.minX,K=Z.minY,v=Z.maxX,F=Z.maxY}let R=yr(g),I=wr(g),D=br(g),H=S(g),it=o?{top:0,right:0,bottom:0,left:0}:{top:R.top+I.top+D.top+H.bleed.top,right:R.right+I.right+D.right+H.bleed.right,bottom:R.bottom+I.bottom+D.bottom+H.bleed.bottom,left:R.left+I.left+D.left+H.bleed.left};at-=it.left,K-=it.top,v+=it.right,F+=it.bottom;let J=Math.max(1,Math.ceil(v-at)),xt=Math.max(1,Math.ceil(F-K)),Bt=Math.max(1,Math.round(J*(k||_?N/C:1))),Ct=Math.max(1,Math.round(xt*(_||k?$/M:1))),ft="http://www.w3.org/2000/svg",V=(T()?1:0)+(r?1:0),z=document.createElementNS(ft,"foreignObject"),Ke=Math.floor(at),Je=Math.floor(K);z.setAttribute("x",String(-(Ke-V))),z.setAttribute("y",String(-(Je-V))),z.setAttribute("width",String(Math.ceil(C+V*2))),z.setAttribute("height",String(Math.ceil(M+V*2))),z.style.overflow="visible";let ue=document.createElement("style");ue.textContent=c+i+"svg{overflow:visible;} foreignObject{overflow:visible;}"+s,z.appendChild(ue);let ct=document.createElement("div");ct.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),ct.style.width=`${C}px`,ct.style.height=`${M}px`,ct.style.overflow="visible",a.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),ct.appendChild(a),z.appendChild(ct);let Qe=new XMLSerializer().serializeToString(z),Ot=J+V*2,Dt=xt+V*2,fe=k||_;e.meta={w0:C,h0:M,vbW:Ot,vbH:Dt,targetW:N,targetH:$};let Ze=T()&&fe?Ot:Bt+V*2,tn=T()&&fe?Dt:Ct+V*2;f=`",u=`data:image/svg+xml;charset=utf-8,${encodeURIComponent(f)}`,p()},{fast:n})});let h=document.getElementById("snapdom-sandbox");return h&&h.style.position==="absolute"&&h.remove(),u}function gr(t,e){if(!t||!e||!e.style)return null;let n=getComputedStyle(t);try{e.style.transformOrigin="0 0"}catch{}try{"translate"in e.style&&(e.style.translate="none"),"rotate"in e.style&&(e.style.rotate="none")}catch{}let r=n.transform||"none";if(!r||r==="none")try{let a=Ve(t);if(a.a===1&&a.b===0&&a.c===0&&a.d===1)return e.style.transform="none",{a:1,b:0,c:0,d:1}}catch{}let o=r.match(/^matrix\(\s*([^)]+)\)$/i);if(o){let a=o[1].split(",").map(s=>parseFloat(s.trim()));if(a.length===6&&a.every(Number.isFinite)){let[s,l,i,c]=a,u=Math.sqrt(s*s+l*l)||0,f=0,m=0,y=0,b=0,d=0,h=0;u>0&&(f=s/u,m=l/u,y=f*i+m*c,b=i-f*y,d=c-m*y,h=Math.sqrt(b*b+d*d)||0,h>0?y=y/h:y=0);let p=u,g=0,S=y*h,x=h;try{e.style.transform=`matrix(${p}, ${g}, ${S}, ${x}, 0, 0)`}catch{}return{a:p,b:g,c:S,d:x}}}try{let a=String(r).trim();return e.style.transform=a+" translate(0px, 0px) rotate(0deg)",null}catch{return null}}function yr(t){let e=t.boxShadow||"";if(!e||e==="none")return{top:0,right:0,bottom:0,left:0};let n=e.split(/\),(?=(?:[^()]*\([^()]*\))*[^()]*$)/).map(l=>l.trim()),r=0,o=0,a=0,s=0;for(let l of n){let i=l.match(/-?\d+(\.\d+)?px/g)?.map(d=>parseFloat(d))||[];if(i.length<2)continue;let[c,u,f=0,m=0]=i,y=Math.abs(c)+f+m,b=Math.abs(u)+f+m;o=Math.max(o,y+Math.max(c,0)),s=Math.max(s,y+Math.max(-c,0)),a=Math.max(a,b+Math.max(u,0)),r=Math.max(r,b+Math.max(-u,0))}return{top:Math.ceil(r),right:Math.ceil(o),bottom:Math.ceil(a),left:Math.ceil(s)}}function wr(t){let e=(t.filter||"").match(/blur\(\s*([0-9.]+)px\s*\)/),n=e?Math.ceil(parseFloat(e[1])||0):0;return{top:n,right:n,bottom:n,left:n}}function br(t){if((t.outlineStyle||"none")==="none")return{top:0,right:0,bottom:0,left:0};let e=Math.ceil(parseFloat(t.outlineWidth||"0")||0);return{top:e,right:e,bottom:e,left:e}}function je(t,e,n,r,o){let a=n.a,s=n.b,l=n.c,i=n.d,c=n.e||0,u=n.f||0;function f(p,g){let S=p-r,x=g-o,C=a*S+l*x,M=s*S+i*x;return C+=r+c,M+=o+u,[C,M]}let m=[f(0,0),f(t,0),f(0,e),f(t,e)],y=1/0,b=1/0,d=-1/0,h=-1/0;for(let[p,g]of m)pd&&(d=p),g>h&&(h=g);return{minX:y,minY:b,maxX:d,maxY:h,width:d-y,height:h-b}}function Sr(t){return Cr(t)}function Ve(t){let e=getComputedStyle(t).transform;if(!e||e==="none")return new DOMMatrix;try{return new DOMMatrix(e)}catch{return new WebKitCSSMatrix(e)}}function xr(t){let e={rotate:"0deg",scale:null,translate:null},n=typeof t.computedStyleMap=="function"?t.computedStyleMap():null;if(n){let o=i=>{try{return typeof n.has=="function"&&!n.has(i)||typeof n.get!="function"?null:n.get(i)}catch{return null}},a=o("rotate");if(a)if(a.angle){let i=a.angle;e.rotate=i.unit==="rad"?i.value*180/Math.PI+"deg":i.value+i.unit}else a.unit?e.rotate=a.unit==="rad"?a.value*180/Math.PI+"deg":a.value+a.unit:e.rotate=String(a);else{let i=getComputedStyle(t);e.rotate=i.rotate&&i.rotate!=="none"?i.rotate:"0deg"}let s=o("scale");if(s){let i="x"in s&&s.x?.value!=null?s.x.value:Array.isArray(s)?s[0]?.value:Number(s)||1,c="y"in s&&s.y?.value!=null?s.y.value:Array.isArray(s)?s[1]?.value:i;e.scale=`${i} ${c}`}else{let i=getComputedStyle(t);e.scale=i.scale&&i.scale!=="none"?i.scale:null}let l=o("translate");if(l){let i="x"in l&&"value"in l.x?l.x.value:Array.isArray(l)?l[0]?.value:0,c="y"in l&&"value"in l.y?l.y.value:Array.isArray(l)?l[1]?.value:0,u="x"in l&&l.x?.unit?l.x.unit:"px",f="y"in l&&l.y?.unit?l.y.unit:"px";e.translate=`${i}${u} ${c}${f}`}else{let i=getComputedStyle(t);e.translate=i.translate&&i.translate!=="none"?i.translate:null}return e}let r=getComputedStyle(t);return e.rotate=r.rotate&&r.rotate!=="none"?r.rotate:"0deg",e.scale=r.scale&&r.scale!=="none"?r.scale:null,e.translate=r.translate&&r.translate!=="none"?r.translate:null,e}function Cr(t){let e=getComputedStyle(t),n=e.transform||"none";if(n!=="none"&&!/^matrix\(\s*1\s*,\s*0\s*,\s*0\s*,\s*1\s*,\s*0\s*,\s*0\s*\)$/i.test(n))return!0;let o=e.rotate&&e.rotate!=="none"&&e.rotate!=="0deg",a=e.scale&&e.scale!=="none"&&e.scale!=="1",s=e.translate&&e.translate!=="none"&&e.translate!=="0px 0px";return!!(o||a||s)}function Mr(t,e,n){let r=(t.transformOrigin||"0 0").trim().split(/\s+/),[o,a]=[r[0]||"0",r[1]||"0"],s=(l,i)=>{let c=l.toLowerCase();return c==="left"||c==="top"?0:c==="center"?i/2:c==="right"||c==="bottom"?i:c.endsWith("px")?parseFloat(c)||0:c.endsWith("%")?(parseFloat(c)||0)*i/100:/^-?\d+(\.\d+)?$/.test(c)&&parseFloat(c)||0};return{ox:s(o,e),oy:s(a,n)}}var ie=null;function kr(){if(ie)return ie;let t=document.createElement("div");return t.id="snapdom-measure-slot",t.setAttribute("aria-hidden","true"),Object.assign(t.style,{position:"absolute",left:"-99999px",top:"0px",width:"0px",height:"0px",overflow:"hidden",opacity:"0",pointerEvents:"none",contain:"size layout style"}),document.documentElement.appendChild(t),ie=t,t}function Ar(t){let e=kr(),n=document.createElement("div");n.style.transformOrigin="0 0",t.baseTransform&&(n.style.transform=t.baseTransform),t.rotate&&(n.style.rotate=t.rotate),t.scale&&(n.style.scale=t.scale),t.translate&&(n.style.translate=t.translate),e.appendChild(n);let r=Ve(n);return e.removeChild(n),r}function $r(t){if(typeof t=="string"){let e=t.toLowerCase().trim();if(e==="disabled"||e==="full"||e==="auto"||e==="soft")return e}return"soft"}function ze(t={}){let e=t.format??"png",n=$r(t.cache);return{debug:t.debug??!1,fast:t.fast??!0,scale:t.scale??1,exclude:t.exclude??[],excludeMode:t.excludeMode??"hide",filter:t.filter??null,filterMode:t.filterMode??"hide",placeholders:t.placeholders!==!1,embedFonts:t.embedFonts??!1,iconFonts:Array.isArray(t.iconFonts)?t.iconFonts:t.iconFonts?[t.iconFonts]:[],localFonts:Array.isArray(t.localFonts)?t.localFonts:[],excludeFonts:t.excludeFonts??void 0,fallbackURL:t.fallbackURL??void 0,cache:n,useProxy:typeof t.useProxy=="string"?t.useProxy:"",width:t.width??null,height:t.height??null,format:e,type:t.type??"svg",quality:t.quality??.92,dpr:t.dpr??(window.devicePixelRatio||1),backgroundColor:t.backgroundColor??(["jpg","jpeg","webp"].includes(e)?"#ffffff":null),filename:t.filename??"snapDOM",straighten:t.straighten??!1,noShadows:t.noShadows??!1}}function vr(t){return typeof t=="string"&&/^data:image\/svg\+xml/i.test(t)}function Er(t){let e=t.indexOf(",");return e>=0?decodeURIComponent(t.slice(e+1)):""}function Fr(t){return`data:image/svg+xml;charset=utf-8,${encodeURIComponent(t)}`}function Nr(t){let e=[],n="",r=0;for(let o=0;oo.trim()).filter(Boolean)}function Lr(t){let e=[],n="",r=0;for(let a=0;a`${l}:${i}`).join(";")}function Rr(t){return t.replace(/([^{}]+)\{([^}]*)\}/g,(e,n,r)=>`${n}{${Xe(r)}}`)}function Ir(t){return t=t.replace(/