first commit

This commit is contained in:
2026-04-13 07:15:44 +00:00
parent ad29150770
commit 97a4e3af52
239 changed files with 6671 additions and 91 deletions

View File

@@ -11,6 +11,7 @@ import {
text,
toHtml
} from "./chunk-363EPHLC.js";
import "./chunk-BUSYA2B4.js";
export {
config,
counter,

View File

@@ -1,3 +1,5 @@
import "./chunk-BUSYA2B4.js";
// node_modules/@fortawesome/free-brands-svg-icons/index.mjs
var prefix = "fab";
var faMonero = {

File diff suppressed because one or more lines are too long

View File

@@ -1,3 +1,5 @@
import "./chunk-BUSYA2B4.js";
// node_modules/@fortawesome/free-solid-svg-icons/index.mjs
var prefix = "fas";
var fa0 = {

File diff suppressed because one or more lines are too long

View File

@@ -4,6 +4,7 @@ import {
parse,
text
} from "./chunk-363EPHLC.js";
import "./chunk-BUSYA2B4.js";
// node_modules/@fortawesome/vue-fontawesome/index.es.js
function ownKeys(object, enumerableOnly) {

File diff suppressed because one or more lines are too long

View File

@@ -1,55 +1,70 @@
{
"hash": "cd3decae",
"configHash": "b21f88d8",
"lockfileHash": "25c10b32",
"browserHash": "37204f5e",
"hash": "0330ab22",
"configHash": "f90330cb",
"lockfileHash": "39fdf142",
"browserHash": "d3dc3fba",
"optimized": {
"@fortawesome/fontawesome-svg-core": {
"src": "../../@fortawesome/fontawesome-svg-core/index.es.js",
"file": "@fortawesome_fontawesome-svg-core.js",
"fileHash": "edd5645b",
"fileHash": "6b48f86a",
"needsInterop": false
},
"@fortawesome/free-brands-svg-icons": {
"src": "../../@fortawesome/free-brands-svg-icons/index.mjs",
"file": "@fortawesome_free-brands-svg-icons.js",
"fileHash": "b61541e1",
"fileHash": "ea4f60fc",
"needsInterop": false
},
"@fortawesome/free-solid-svg-icons": {
"src": "../../@fortawesome/free-solid-svg-icons/index.mjs",
"file": "@fortawesome_free-solid-svg-icons.js",
"fileHash": "53bdb2e3",
"fileHash": "ef6bdef4",
"needsInterop": false
},
"@fortawesome/vue-fontawesome": {
"src": "../../@fortawesome/vue-fontawesome/index.es.js",
"file": "@fortawesome_vue-fontawesome.js",
"fileHash": "d68cd9bf",
"fileHash": "2e2a59dd",
"needsInterop": false
},
"base64-js": {
"src": "../../base64-js/index.js",
"file": "base64-js.js",
"fileHash": "39bc9617",
"needsInterop": true
},
"dom-to-image-more": {
"src": "../../dom-to-image-more/dist/dom-to-image-more.min.js",
"file": "dom-to-image-more.js",
"fileHash": "c2e7fe89",
"needsInterop": true
},
"vue": {
"src": "../../vue/dist/vue.runtime.esm.js",
"file": "vue.js",
"fileHash": "422d179c",
"fileHash": "2504c162",
"needsInterop": false
},
"vue-router": {
"src": "../../vue-router/dist/vue-router.esm.js",
"file": "vue-router.js",
"fileHash": "314ec933",
"fileHash": "466bbc84",
"needsInterop": false
},
"vuex": {
"src": "../../vuex/dist/vuex.esm.js",
"file": "vuex.js",
"fileHash": "3f17a003",
"fileHash": "4c8022e6",
"needsInterop": false
}
},
"chunks": {
"chunk-363EPHLC": {
"file": "chunk-363EPHLC.js"
},
"chunk-BUSYA2B4": {
"file": "chunk-BUSYA2B4.js"
}
}
}

105
node_modules/.vite/deps/base64-js.js generated vendored Normal file
View File

@@ -0,0 +1,105 @@
import {
__commonJS
} from "./chunk-BUSYA2B4.js";
// node_modules/base64-js/index.js
var require_base64_js = __commonJS({
"node_modules/base64-js/index.js"(exports) {
exports.byteLength = byteLength;
exports.toByteArray = toByteArray;
exports.fromByteArray = fromByteArray;
var lookup = [];
var revLookup = [];
var Arr = typeof Uint8Array !== "undefined" ? Uint8Array : Array;
var code = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
for (i = 0, len = code.length; i < len; ++i) {
lookup[i] = code[i];
revLookup[code.charCodeAt(i)] = i;
}
var i;
var len;
revLookup["-".charCodeAt(0)] = 62;
revLookup["_".charCodeAt(0)] = 63;
function getLens(b64) {
var len2 = b64.length;
if (len2 % 4 > 0) {
throw new Error("Invalid string. Length must be a multiple of 4");
}
var validLen = b64.indexOf("=");
if (validLen === -1) validLen = len2;
var placeHoldersLen = validLen === len2 ? 0 : 4 - validLen % 4;
return [validLen, placeHoldersLen];
}
function byteLength(b64) {
var lens = getLens(b64);
var validLen = lens[0];
var placeHoldersLen = lens[1];
return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen;
}
function _byteLength(b64, validLen, placeHoldersLen) {
return (validLen + placeHoldersLen) * 3 / 4 - placeHoldersLen;
}
function toByteArray(b64) {
var tmp;
var lens = getLens(b64);
var validLen = lens[0];
var placeHoldersLen = lens[1];
var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen));
var curByte = 0;
var len2 = placeHoldersLen > 0 ? validLen - 4 : validLen;
var i2;
for (i2 = 0; i2 < len2; i2 += 4) {
tmp = revLookup[b64.charCodeAt(i2)] << 18 | revLookup[b64.charCodeAt(i2 + 1)] << 12 | revLookup[b64.charCodeAt(i2 + 2)] << 6 | revLookup[b64.charCodeAt(i2 + 3)];
arr[curByte++] = tmp >> 16 & 255;
arr[curByte++] = tmp >> 8 & 255;
arr[curByte++] = tmp & 255;
}
if (placeHoldersLen === 2) {
tmp = revLookup[b64.charCodeAt(i2)] << 2 | revLookup[b64.charCodeAt(i2 + 1)] >> 4;
arr[curByte++] = tmp & 255;
}
if (placeHoldersLen === 1) {
tmp = revLookup[b64.charCodeAt(i2)] << 10 | revLookup[b64.charCodeAt(i2 + 1)] << 4 | revLookup[b64.charCodeAt(i2 + 2)] >> 2;
arr[curByte++] = tmp >> 8 & 255;
arr[curByte++] = tmp & 255;
}
return arr;
}
function tripletToBase64(num) {
return lookup[num >> 18 & 63] + lookup[num >> 12 & 63] + lookup[num >> 6 & 63] + lookup[num & 63];
}
function encodeChunk(uint8, start, end) {
var tmp;
var output = [];
for (var i2 = start; i2 < end; i2 += 3) {
tmp = (uint8[i2] << 16 & 16711680) + (uint8[i2 + 1] << 8 & 65280) + (uint8[i2 + 2] & 255);
output.push(tripletToBase64(tmp));
}
return output.join("");
}
function fromByteArray(uint8) {
var tmp;
var len2 = uint8.length;
var extraBytes = len2 % 3;
var parts = [];
var maxChunkLength = 16383;
for (var i2 = 0, len22 = len2 - extraBytes; i2 < len22; i2 += maxChunkLength) {
parts.push(encodeChunk(uint8, i2, i2 + maxChunkLength > len22 ? len22 : i2 + maxChunkLength));
}
if (extraBytes === 1) {
tmp = uint8[len2 - 1];
parts.push(
lookup[tmp >> 2] + lookup[tmp << 4 & 63] + "=="
);
} else if (extraBytes === 2) {
tmp = (uint8[len2 - 2] << 8) + uint8[len2 - 1];
parts.push(
lookup[tmp >> 10] + lookup[tmp >> 4 & 63] + lookup[tmp << 2 & 63] + "="
);
}
return parts.join("");
}
}
});
export default require_base64_js();
//# sourceMappingURL=base64-js.js.map

7
node_modules/.vite/deps/base64-js.js.map generated vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"version": 3,
"sources": ["../../base64-js/index.js"],
"sourcesContent": ["'use strict'\n\nexports.byteLength = byteLength\nexports.toByteArray = toByteArray\nexports.fromByteArray = fromByteArray\n\nvar lookup = []\nvar revLookup = []\nvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array\n\nvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'\nfor (var i = 0, len = code.length; i < len; ++i) {\n lookup[i] = code[i]\n revLookup[code.charCodeAt(i)] = i\n}\n\n// Support decoding URL-safe base64 strings, as Node.js does.\n// See: https://en.wikipedia.org/wiki/Base64#URL_applications\nrevLookup['-'.charCodeAt(0)] = 62\nrevLookup['_'.charCodeAt(0)] = 63\n\nfunction getLens (b64) {\n var len = b64.length\n\n if (len % 4 > 0) {\n throw new Error('Invalid string. Length must be a multiple of 4')\n }\n\n // Trim off extra bytes after placeholder bytes are found\n // See: https://github.com/beatgammit/base64-js/issues/42\n var validLen = b64.indexOf('=')\n if (validLen === -1) validLen = len\n\n var placeHoldersLen = validLen === len\n ? 0\n : 4 - (validLen % 4)\n\n return [validLen, placeHoldersLen]\n}\n\n// base64 is 4/3 + up to two characters of the original data\nfunction byteLength (b64) {\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction _byteLength (b64, validLen, placeHoldersLen) {\n return ((validLen + placeHoldersLen) * 3 / 4) - placeHoldersLen\n}\n\nfunction toByteArray (b64) {\n var tmp\n var lens = getLens(b64)\n var validLen = lens[0]\n var placeHoldersLen = lens[1]\n\n var arr = new Arr(_byteLength(b64, validLen, placeHoldersLen))\n\n var curByte = 0\n\n // if there are placeholders, only get up to the last complete 4 chars\n var len = placeHoldersLen > 0\n ? validLen - 4\n : validLen\n\n var i\n for (i = 0; i < len; i += 4) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 18) |\n (revLookup[b64.charCodeAt(i + 1)] << 12) |\n (revLookup[b64.charCodeAt(i + 2)] << 6) |\n revLookup[b64.charCodeAt(i + 3)]\n arr[curByte++] = (tmp >> 16) & 0xFF\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 2) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 2) |\n (revLookup[b64.charCodeAt(i + 1)] >> 4)\n arr[curByte++] = tmp & 0xFF\n }\n\n if (placeHoldersLen === 1) {\n tmp =\n (revLookup[b64.charCodeAt(i)] << 10) |\n (revLookup[b64.charCodeAt(i + 1)] << 4) |\n (revLookup[b64.charCodeAt(i + 2)] >> 2)\n arr[curByte++] = (tmp >> 8) & 0xFF\n arr[curByte++] = tmp & 0xFF\n }\n\n return arr\n}\n\nfunction tripletToBase64 (num) {\n return lookup[num >> 18 & 0x3F] +\n lookup[num >> 12 & 0x3F] +\n lookup[num >> 6 & 0x3F] +\n lookup[num & 0x3F]\n}\n\nfunction encodeChunk (uint8, start, end) {\n var tmp\n var output = []\n for (var i = start; i < end; i += 3) {\n tmp =\n ((uint8[i] << 16) & 0xFF0000) +\n ((uint8[i + 1] << 8) & 0xFF00) +\n (uint8[i + 2] & 0xFF)\n output.push(tripletToBase64(tmp))\n }\n return output.join('')\n}\n\nfunction fromByteArray (uint8) {\n var tmp\n var len = uint8.length\n var extraBytes = len % 3 // if we have 1 byte left, pad 2 bytes\n var parts = []\n var maxChunkLength = 16383 // must be multiple of 3\n\n // go through the array every three bytes, we'll deal with trailing stuff later\n for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n parts.push(encodeChunk(uint8, i, (i + maxChunkLength) > len2 ? len2 : (i + maxChunkLength)))\n }\n\n // pad the end with zeros, but make sure to not forget the extra bytes\n if (extraBytes === 1) {\n tmp = uint8[len - 1]\n parts.push(\n lookup[tmp >> 2] +\n lookup[(tmp << 4) & 0x3F] +\n '=='\n )\n } else if (extraBytes === 2) {\n tmp = (uint8[len - 2] << 8) + uint8[len - 1]\n parts.push(\n lookup[tmp >> 10] +\n lookup[(tmp >> 4) & 0x3F] +\n lookup[(tmp << 2) & 0x3F] +\n '='\n )\n }\n\n return parts.join('')\n}\n"],
"mappings": "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",
"names": ["len", "i", "len2"]
}

8
node_modules/.vite/deps/chunk-BUSYA2B4.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
var __getOwnPropNames = Object.getOwnPropertyNames;
var __commonJS = (cb, mod) => function __require() {
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
};
export {
__commonJS
};

7
node_modules/.vite/deps/chunk-BUSYA2B4.js.map generated vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"version": 3,
"sources": [],
"sourcesContent": [],
"mappings": "",
"names": []
}

511
node_modules/.vite/deps/dom-to-image-more.js generated vendored Normal file
View File

@@ -0,0 +1,511 @@
import {
__commonJS
} from "./chunk-BUSYA2B4.js";
// node_modules/dom-to-image-more/dist/dom-to-image-more.min.js
var require_dom_to_image_more_min = __commonJS({
"node_modules/dom-to-image-more/dist/dom-to-image-more.min.js"(exports, module) {
((l) => {
let m = /* @__PURE__ */ (() => {
let e2 = 0;
return { escape: function(e3) {
return e3.replace(/([.*+?^${}()|[\]/\\])/g, "\\$1");
}, isDataUrl: function(e3) {
return -1 !== e3.search(/^(data:)/);
}, canvasToBlob: function(t3) {
if (t3.toBlob) return new Promise(function(e3) {
t3.toBlob(e3);
});
return ((r3) => new Promise(function(e3) {
var t4 = s(r3.toDataURL().split(",")[1]), n3 = t4.length, o3 = new Uint8Array(n3);
for (let e4 = 0; e4 < n3; e4++) o3[e4] = t4.charCodeAt(e4);
e3(new Blob([o3], { type: "image/png" }));
}))(t3);
}, resolveUrl: function(e3, t3) {
var n3 = document.implementation.createHTMLDocument(), o3 = n3.createElement("base"), r3 = (n3.head.appendChild(o3), n3.createElement("a"));
return n3.body.appendChild(r3), o3.href = t3, r3.href = e3, r3.href;
}, getAndEncode: function(l2) {
let e3 = d.impl.urlCache.find(function(e4) {
return e4.url === l2;
});
e3 || (e3 = { url: l2, promise: null }, d.impl.urlCache.push(e3));
null === e3.promise && (d.impl.options.cacheBust && (l2 += (/\?/.test(l2) ? "&" : "?") + (/* @__PURE__ */ new Date()).getTime()), e3.promise = new Promise(function(n3) {
let r3 = new XMLHttpRequest();
function i3(e5) {
console.error(e5), n3("");
}
function t3() {
var e5 = d.impl.options.imagePlaceholder;
e5 ? n3(e5) : i3("Status:" + r3.status + " while fetching resource: " + l2);
}
if (r3.timeout = d.impl.options.httpTimeout, r3.onerror = t3, r3.ontimeout = t3, r3.onloadend = function() {
if (r3.readyState === XMLHttpRequest.DONE) {
var e5 = r3.status;
if (0 === e5 && l2.toLowerCase().startsWith("file://") || 200 <= e5 && e5 <= 300 && null !== r3.response) {
e5 = r3.response;
e5 instanceof Blob || i3("Expected response to be a Blob, but got: " + typeof e5);
let t4 = new FileReader();
t4.onloadend = function() {
var e6 = t4.result;
n3(e6);
};
try {
t4.readAsDataURL(e5);
} catch (e6) {
i3("Failed to read the response as Data URL: " + e6.toString());
}
} else t3();
}
}, 0 < d.impl.options.useCredentialsFilters.length && (d.impl.options.useCredentials = 0 < d.impl.options.useCredentialsFilters.filter((e5) => 0 <= l2.search(e5)).length), d.impl.options.useCredentials && (r3.withCredentials = true), d.impl.options.corsImg && 0 === l2.indexOf("http") && -1 === l2.indexOf(window.location.origin)) {
var e4 = "POST" === (d.impl.options.corsImg.method || "GET").toUpperCase() ? "POST" : "GET";
r3.open(e4, (d.impl.options.corsImg.url || "").replace("#{cors}", l2), true);
let t4 = false, n4 = d.impl.options.corsImg.headers || {}, o3 = (Object.keys(n4).forEach(function(e5) {
-1 !== n4[e5].indexOf("application/json") && (t4 = true), r3.setRequestHeader(e5, n4[e5]);
}), ((e5) => {
try {
return JSON.parse(JSON.stringify(e5));
} catch (e6) {
i3("corsImg.data is missing or invalid:" + e6.toString());
}
})(d.impl.options.corsImg.data || ""));
Object.keys(o3).forEach(function(e5) {
"string" == typeof o3[e5] && (o3[e5] = o3[e5].replace("#{cors}", l2));
}), r3.responseType = "blob", r3.send(t4 ? JSON.stringify(o3) : o3);
} else r3.open("GET", l2, true), r3.responseType = "blob", r3.send();
}));
return e3.promise;
}, uid: function() {
return "u" + ("0000" + (Math.random() * Math.pow(36, 4) << 0).toString(36)).slice(-4) + e2++;
}, asArray: function(t3) {
var n3 = [], o3 = t3.length;
for (let e3 = 0; e3 < o3; e3++) n3.push(t3[e3]);
return n3;
}, escapeXhtml: function(e3) {
return e3.replace(/%/g, "%25").replace(/#/g, "%23").replace(/\n/g, "%0A");
}, makeImage: function(r3) {
return "data:," !== r3 ? new Promise(function(e3, t3) {
let n3 = document.createElementNS("http://www.w3.org/2000/svg", "svg"), o3 = new Image();
d.impl.options.useCredentials && (o3.crossOrigin = "use-credentials"), o3.onload = function() {
document.body.removeChild(n3), window && window.requestAnimationFrame ? window.requestAnimationFrame(function() {
e3(o3);
}) : e3(o3);
}, o3.onerror = (e4) => {
document.body.removeChild(n3), t3(e4);
}, n3.appendChild(o3), o3.src = r3, document.body.appendChild(n3);
}) : Promise.resolve();
}, width: function(e3) {
var t3 = i2(e3, "width");
if (!isNaN(t3)) return t3;
var t3 = i2(e3, "border-left-width"), n3 = i2(e3, "border-right-width");
return e3.scrollWidth + t3 + n3;
}, height: function(e3) {
var t3 = i2(e3, "height");
if (!isNaN(t3)) return t3;
var t3 = i2(e3, "border-top-width"), n3 = i2(e3, "border-bottom-width");
return e3.scrollHeight + t3 + n3;
}, getWindow: t2, isElement: r2, isElementHostForOpenShadowRoot: function(e3) {
return r2(e3) && null !== e3.shadowRoot;
}, isShadowRoot: n2, isInShadowRoot: o2, isHTMLElement: function(e3) {
return e3 instanceof t2(e3).HTMLElement;
}, isHTMLCanvasElement: function(e3) {
return e3 instanceof t2(e3).HTMLCanvasElement;
}, isHTMLInputElement: function(e3) {
return e3 instanceof t2(e3).HTMLInputElement;
}, isHTMLImageElement: function(e3) {
return e3 instanceof t2(e3).HTMLImageElement;
}, isHTMLLinkElement: function(e3) {
return e3 instanceof t2(e3).HTMLLinkElement;
}, isHTMLScriptElement: function(e3) {
return e3 instanceof t2(e3).HTMLScriptElement;
}, isHTMLStyleElement: function(e3) {
return e3 instanceof t2(e3).HTMLStyleElement;
}, isHTMLTextAreaElement: function(e3) {
return e3 instanceof t2(e3).HTMLTextAreaElement;
}, isShadowSlotElement: function(e3) {
return o2(e3) && e3 instanceof t2(e3).HTMLSlotElement;
}, isSVGElement: function(e3) {
return e3 instanceof t2(e3).SVGElement;
}, isSVGRectElement: function(e3) {
return e3 instanceof t2(e3).SVGRectElement;
}, isDimensionMissing: function(e3) {
return isNaN(e3) || e3 <= 0;
} };
function t2(e3) {
e3 = e3 ? e3.ownerDocument : void 0;
return (e3 ? e3.defaultView : void 0) || window || l;
}
function n2(e3) {
return e3 instanceof t2(e3).ShadowRoot;
}
function o2(e3) {
return null != e3 && void 0 !== e3.getRootNode && n2(e3.getRootNode());
}
function r2(e3) {
return e3 instanceof t2(e3).Element;
}
function i2(t3, n3) {
if (t3.nodeType === f) {
let e3 = h(t3).getPropertyValue(n3);
if ("px" === e3.slice(-2)) return e3 = e3.slice(0, -2), parseFloat(e3);
}
return NaN;
}
})(), r = /* @__PURE__ */ (() => {
let o2 = /url\(\s*(["']?)((?:\\.|[^\\)])+)\1\s*\)/gm;
return { inlineAll: function(t2, o3, r3) {
if (!e2(t2)) return Promise.resolve(t2);
return Promise.resolve(t2).then(n2).then(function(e3) {
let n3 = Promise.resolve(t2);
return e3.forEach(function(t3) {
n3 = n3.then(function(e4) {
return i2(e4, t3, o3, r3);
});
}), n3;
});
}, shouldProcess: e2, impl: { readUrls: n2, inline: i2, urlAsRegex: r2 } };
function e2(e3) {
return -1 !== e3.search(o2);
}
function n2(e3) {
for (var t2, n3 = []; null !== (t2 = o2.exec(e3)); ) n3.push(t2[2]);
return n3.filter(function(e4) {
return !m.isDataUrl(e4);
});
}
function r2(e3) {
return new RegExp(`url\\((["']?)(${m.escape(e3)})\\1\\)`, "gm");
}
function i2(n3, o3, t2, e3) {
return Promise.resolve(o3).then(function(e4) {
return t2 ? m.resolveUrl(e4, t2) : e4;
}).then(e3 || m.getAndEncode).then(function(e4) {
var t3 = r2(o3);
return n3.replace(t3, `url($1${e4}$1)`);
});
}
})(), e = { resolveAll: function() {
return t().then(function(e2) {
return Promise.all(e2.map(function(e3) {
return e3.resolve();
}));
}).then(function(e2) {
return e2.join("\n");
});
}, impl: { readAll: t } };
function t() {
return Promise.resolve(m.asArray(document.styleSheets)).then(function(e2) {
let n2 = [];
return e2.forEach(function(t3) {
var e3 = Object.getPrototypeOf(t3);
if (Object.prototype.hasOwnProperty.call(e3, "cssRules")) try {
m.asArray(t3.cssRules || []).forEach(n2.push.bind(n2));
} catch (e4) {
console.error("domtoimage: Error while reading CSS rules from: " + t3.href, e4.toString());
}
}), n2;
}).then(function(e2) {
return e2.filter(function(e3) {
return e3.type === CSSRule.FONT_FACE_RULE;
}).filter(function(e3) {
return r.shouldProcess(e3.style.getPropertyValue("src"));
});
}).then(function(e2) {
return e2.map(t2);
});
function t2(t3) {
return { resolve: function() {
var e2 = (t3.parentStyleSheet || {}).href;
return r.inlineAll(t3.cssText, e2);
}, src: function() {
return t3.style.getPropertyValue("src");
} };
}
}
let n = { inlineAll: function t2(e2) {
if (!m.isElement(e2)) return Promise.resolve(e2);
return n2(e2).then(function() {
return m.isHTMLImageElement(e2) ? o(e2).inline() : Promise.all(m.asArray(e2.childNodes).map(function(e3) {
return t2(e3);
}));
});
function n2(o2) {
let e3 = ["background", "background-image"], t3 = e3.map(function(t4) {
let e4 = o2.style.getPropertyValue(t4), n3 = o2.style.getPropertyPriority(t4);
return e4 ? r.inlineAll(e4).then(function(e5) {
o2.style.setProperty(t4, e5, n3);
}) : Promise.resolve();
});
return Promise.all(t3).then(function() {
return o2;
});
}
}, impl: { newImage: o } };
function o(n2) {
return { inline: function(e2) {
if (m.isDataUrl(n2.src)) return Promise.resolve();
return Promise.resolve(n2.src).then(e2 || m.getAndEncode).then(function(t2) {
return new Promise(function(e3) {
n2.onload = e3, n2.onerror = e3, n2.src = t2;
});
});
} };
}
let i = { copyDefaultStyles: true, imagePlaceholder: void 0, cacheBust: false, useCredentials: false, useCredentialsFilters: [], httpTimeout: 3e4, styleCaching: "strict", corsImg: void 0, adjustClonedNode: void 0, filterStyles: void 0 }, d = { toSvg: u, toPng: function(e2, t2) {
return a(e2, t2).then(function(e3) {
return e3.toDataURL();
});
}, toJpeg: function(e2, t2) {
return a(e2, t2).then(function(e3) {
return e3.toDataURL("image/jpeg", (t2 ? t2.quality : void 0) || 1);
});
}, toBlob: function(e2, t2) {
return a(e2, t2).then(m.canvasToBlob);
}, toPixelData: function(t2, e2) {
return a(t2, e2).then(function(e3) {
return e3.getContext("2d").getImageData(0, 0, m.width(t2), m.height(t2)).data;
});
}, toCanvas: a, impl: { fontFaces: e, images: n, util: m, inliner: r, urlCache: [], options: {}, copyOptions: function(e2) {
void 0 === e2.copyDefaultStyles ? d.impl.options.copyDefaultStyles = i.copyDefaultStyles : d.impl.options.copyDefaultStyles = e2.copyDefaultStyles;
d.impl.options.imagePlaceholder = (void 0 === e2.imagePlaceholder ? i : e2).imagePlaceholder;
d.impl.options.cacheBust = (void 0 === e2.cacheBust ? i : e2).cacheBust;
d.impl.options.corsImg = (void 0 === e2.corsImg ? i : e2).corsImg;
d.impl.options.useCredentials = (void 0 === e2.useCredentials ? i : e2).useCredentials;
d.impl.options.useCredentialsFilters = (void 0 === e2.useCredentialsFilters ? i : e2).useCredentialsFilters;
d.impl.options.httpTimeout = (void 0 === e2.httpTimeout ? i : e2).httpTimeout;
d.impl.options.styleCaching = (void 0 === e2.styleCaching ? i : e2).styleCaching;
} } }, f = ("object" == typeof exports && "object" == typeof module ? module.exports = d : l.domtoimage = d, (void 0 === Node ? void 0 : Node.ELEMENT_NODE) || 1), h = (void 0 === l ? void 0 : l.getComputedStyle) || (void 0 === window ? void 0 : window.getComputedStyle) || globalThis.getComputedStyle, s = (void 0 === l ? void 0 : l.atob) || (void 0 === window ? void 0 : window.atob) || globalThis.atob;
function u(t2, r2) {
let n2 = d.impl.util.getWindow(t2), o2 = (r2 = r2 || {}, d.impl.copyOptions(r2), []);
return Promise.resolve(t2).then(function(e2) {
if (e2.nodeType === f) return e2;
var t3 = e2, n3 = document.createElement("span");
return t3.replaceWith(n3), n3.append(e2), o2.push({ child: t3, wrapper: n3 }), n3;
}).then(function(e2) {
return (function l2(t3, s2, i2, u2) {
let e3 = s2.filter;
if (t3 === p || m.isHTMLScriptElement(t3) || m.isHTMLStyleElement(t3) || m.isHTMLLinkElement(t3) || null !== i2 && e3 && !e3(t3)) return Promise.resolve();
return Promise.resolve(t3).then(n3).then(o3).then(function(e4) {
return c2(e4, a2(t3));
}).then(r3).then(function(e4) {
return d2(e4, t3);
});
function n3(e4) {
return m.isHTMLCanvasElement(e4) ? m.makeImage(e4.toDataURL()) : e4.cloneNode(false);
}
function o3(e4) {
return s2.adjustClonedNode && s2.adjustClonedNode(t3, e4, false), Promise.resolve(e4);
}
function r3(e4) {
return s2.adjustClonedNode && s2.adjustClonedNode(t3, e4, true), Promise.resolve(e4);
}
function a2(e4) {
return m.isElementHostForOpenShadowRoot(e4) ? e4.shadowRoot : e4;
}
function c2(n4, e4) {
let o4 = t4(e4), r4 = Promise.resolve();
if (0 !== o4.length) {
let t5 = h(i3(e4));
m.asArray(o4).forEach(function(e5) {
r4 = r4.then(function() {
return l2(e5, s2, t5, u2).then(function(e6) {
e6 && n4.appendChild(e6);
});
});
});
}
return r4.then(function() {
return n4;
});
function i3(e5) {
return m.isShadowRoot(e5) ? e5.host : e5;
}
function t4(t5) {
if (m.isShadowSlotElement(t5)) {
let e5 = t5.assignedNodes();
if (e5 && 0 < e5.length) return e5;
}
return t5.childNodes;
}
}
function d2(u3, a3) {
return !m.isElement(u3) || m.isShadowSlotElement(a3) ? Promise.resolve(u3) : Promise.resolve().then(t4).then(n4).then(o4).then(r4).then(e4).then(function() {
return u3;
});
function e4() {
m.isHTMLImageElement(u3) && (u3.removeAttribute("loading"), a3.srcset || a3.sizes) && (u3.removeAttribute("srcset"), u3.removeAttribute("sizes"), u3.src = a3.currentSrc || a3.src);
}
function t4() {
function o5(e6, t5) {
t5.font = e6.font, t5.fontFamily = e6.fontFamily, t5.fontFeatureSettings = e6.fontFeatureSettings, t5.fontKerning = e6.fontKerning, t5.fontSize = e6.fontSize, t5.fontStretch = e6.fontStretch, t5.fontStyle = e6.fontStyle, t5.fontVariant = e6.fontVariant, t5.fontVariantCaps = e6.fontVariantCaps, t5.fontVariantEastAsian = e6.fontVariantEastAsian, t5.fontVariantLigatures = e6.fontVariantLigatures, t5.fontVariantNumeric = e6.fontVariantNumeric, t5.fontVariationSettings = e6.fontVariationSettings, t5.fontWeight = e6.fontWeight;
}
function e5(e6, t5) {
let n5 = h(e6);
n5.cssText ? (t5.style.cssText = n5.cssText, o5(n5, t5.style)) : (y(s2, e6, n5, i2, t5), null === i2 && (["inset-block", "inset-block-start", "inset-block-end"].forEach((e7) => t5.style.removeProperty(e7)), ["left", "right", "top", "bottom"].forEach((e7) => {
t5.style.getPropertyValue(e7) && t5.style.setProperty(e7, "0px");
})));
}
e5(a3, u3);
}
function n4() {
let s3 = m.uid();
function t5(r5) {
let i3 = h(a3, r5), l3 = i3.getPropertyValue("content");
if ("" !== l3 && "none" !== l3) {
let n6 = function() {
let e6 = `.${s3}:` + r5, t7 = (i3.cssText ? n7 : o5)();
return document.createTextNode(e6 + `{${t7}}`);
function n7() {
return `${i3.cssText} content: ${l3};`;
}
function o5() {
let e7 = m.asArray(i3).map(t8).join("; ");
return e7 + ";";
function t8(e8) {
let t9 = i3.getPropertyValue(e8), n8 = i3.getPropertyPriority(e8) ? " !important" : "";
return e8 + ": " + t9 + n8;
}
}
};
var n5 = n6;
let e5 = u3.getAttribute("class") || "", t6 = (u3.setAttribute("class", e5 + " " + s3), document.createElement("style"));
t6.appendChild(n6()), u3.appendChild(t6);
}
}
[":before", ":after"].forEach(function(e5) {
t5(e5);
});
}
function o4() {
m.isHTMLTextAreaElement(a3) && (u3.innerHTML = a3.value), m.isHTMLInputElement(a3) && u3.setAttribute("value", a3.value);
}
function r4() {
m.isSVGElement(u3) && (u3.setAttribute("xmlns", "http://www.w3.org/2000/svg"), m.isSVGRectElement(u3)) && ["width", "height"].forEach(function(e5) {
let t5 = u3.getAttribute(e5);
t5 && u3.style.setProperty(e5, t5);
});
}
}
})(e2, r2, null, n2);
}).then(r2.disableEmbedFonts ? Promise.resolve(t2) : c).then(r2.disableInlineImages ? Promise.resolve(t2) : g).then(function(t3) {
r2.bgcolor && (t3.style.backgroundColor = r2.bgcolor);
r2.width && (t3.style.width = r2.width + "px");
r2.height && (t3.style.height = r2.height + "px");
r2.style && Object.keys(r2.style).forEach(function(e3) {
t3.style[e3] = r2.style[e3];
});
let e2 = null;
"function" == typeof r2.onclone && (e2 = r2.onclone(t3));
return Promise.resolve(e2).then(function() {
return t3;
});
}).then(function(e2) {
let n3 = r2.width || m.width(t2), o3 = r2.height || m.height(t2);
return Promise.resolve(e2).then(function(e3) {
return e3.setAttribute("xmlns", "http://www.w3.org/1999/xhtml"), new XMLSerializer().serializeToString(e3);
}).then(m.escapeXhtml).then(function(e3) {
var t3 = (m.isDimensionMissing(n3) ? ' width="100%"' : ` width="${n3}"`) + (m.isDimensionMissing(o3) ? ' height="100%"' : ` height="${o3}"`);
return `<svg xmlns="http://www.w3.org/2000/svg"${(m.isDimensionMissing(n3) ? "" : ` width="${n3}"`) + (m.isDimensionMissing(o3) ? "" : ` height="${o3}"`)}><foreignObject${t3}>${e3}</foreignObject></svg>`;
}).then(function(e3) {
return "data:image/svg+xml;charset=utf-8," + e3;
});
}).then(function(e2) {
for (; 0 < o2.length; ) {
var t3 = o2.pop();
t3.wrapper.replaceWith(t3.child);
}
return e2;
}).then(function(e2) {
return d.impl.urlCache = [], (() => {
p && (document.body.removeChild(p), p = null), v && clearTimeout(v), v = setTimeout(() => {
v = null, w = {};
}, 2e4);
})(), e2;
});
}
function a(r2, i2) {
return u(r2, i2 = i2 || {}).then(m.makeImage).then(function(e2) {
var t2 = "number" != typeof i2.scale ? 1 : i2.scale, n2 = ((e3, t3) => {
let n3 = i2.width || m.width(e3), o3 = i2.height || m.height(e3);
return m.isDimensionMissing(n3) && (n3 = m.isDimensionMissing(o3) ? 300 : 2 * o3), m.isDimensionMissing(o3) && (o3 = n3 / 2), (e3 = document.createElement("canvas")).width = n3 * t3, e3.height = o3 * t3, i2.bgcolor && ((t3 = e3.getContext("2d")).fillStyle = i2.bgcolor, t3.fillRect(0, 0, e3.width, e3.height)), e3;
})(r2, t2), o2 = n2.getContext("2d");
return o2.msImageSmoothingEnabled = false, o2.imageSmoothingEnabled = false, e2 && (o2.scale(t2, t2), o2.drawImage(e2, 0, 0)), n2;
});
}
let p = null;
function c(n2) {
return e.resolveAll().then(function(e2) {
var t2;
return "" !== e2 && (t2 = document.createElement("style"), n2.appendChild(t2), t2.appendChild(document.createTextNode(e2))), n2;
});
}
function g(e2) {
return n.inlineAll(e2).then(function() {
return e2;
});
}
function y(i2, l2, s2, u2, e2) {
let a2 = d.impl.options.copyDefaultStyles ? ((t2, e3) => {
var n2, o2 = ((e4) => ("relaxed" !== t2.styleCaching ? e4 : e4.filter((e5, t3, n3) => 0 === t3 || t3 === n3.length - 1)).join(">"))(e3 = ((e4) => {
var t3 = [];
do {
if (e4.nodeType === f) {
var n3 = e4.tagName;
if (t3.push(n3), E.includes(n3)) break;
}
} while (e4 = e4.parentNode);
return t3;
})(e3));
{
if (w[o2]) return w[o2];
e3 = ((e4, t3) => {
let n3 = e4.body;
do {
var o3 = t3.pop(), o3 = e4.createElement(o3);
n3.appendChild(o3), n3 = o3;
} while (0 < t3.length);
return n3.textContent = "", n3;
})((n2 = (() => {
if (p) return p.contentWindow;
t3 = document.characterSet || "UTF-8", e4 = (e4 = document.doctype) ? (`<!DOCTYPE ${s3(e4.name)} ${s3(e4.publicId)} ` + s3(e4.systemId)).trim() + ">" : "", (p = document.createElement("iframe")).id = "domtoimage-sandbox-" + m.uid(), p.style.top = "-9999px", p.style.visibility = "hidden", p.style.position = "fixed", document.body.appendChild(p);
var e4, t3, n3 = p, o3 = "domtoimage-sandbox";
try {
return n3.contentWindow.document.write(e4 + `<html><head><meta charset='${t3}'><title>${o3}</title></head><body></body></html>`), n3.contentWindow;
} catch (e5) {
}
var r3 = document.createElement("meta");
r3.setAttribute("charset", t3);
try {
var i4 = document.implementation.createHTMLDocument(o3), l3 = (i4.head.appendChild(r3), e4 + i4.documentElement.outerHTML);
return n3.setAttribute("srcdoc", l3), n3.contentWindow;
} catch (e5) {
}
return n3.contentDocument.head.appendChild(r3), n3.contentDocument.title = o3, n3.contentWindow;
function s3(e5) {
var t4;
return e5 ? ((t4 = document.createElement("div")).innerText = e5, t4.innerHTML) : "";
}
})()).document, e3), n2 = ((e4, t3) => {
let n3 = {}, o3 = e4.getComputedStyle(t3);
return m.asArray(o3).forEach(function(e5) {
n3[e5] = "width" === e5 || "height" === e5 ? "auto" : o3.getPropertyValue(e5);
}), n3;
})(n2, e3);
var r2 = e3;
do {
var i3 = r2.parentElement;
null !== i3 && i3.removeChild(r2), r2 = i3;
} while (r2 && "BODY" !== r2.tagName);
return w[o2] = n2;
}
})(i2, l2) : {}, c2 = e2.style;
m.asArray(s2).forEach(function(e3) {
var t2, n2, o2, r2;
i2.filterStyles && !i2.filterStyles(l2, e3) || (n2 = s2.getPropertyValue(e3), o2 = a2[e3], t2 = u2 ? u2.getPropertyValue(e3) : void 0, c2.getPropertyValue(e3)) || (n2 !== o2 || u2 && n2 !== t2) && (o2 = s2.getPropertyPriority(e3), t2 = c2, n2 = n2, o2 = o2, r2 = 0 <= ["background-clip"].indexOf(e3 = e3), o2 ? (t2.setProperty(e3, n2, o2), r2 && t2.setProperty("-webkit-" + e3, n2, o2)) : (t2.setProperty(e3, n2), r2 && t2.setProperty("-webkit-" + e3, n2)));
});
}
let v = null, w = {}, E = ["ADDRESS", "ARTICLE", "ASIDE", "BLOCKQUOTE", "DETAILS", "DIALOG", "DD", "DIV", "DL", "DT", "FIELDSET", "FIGCAPTION", "FIGURE", "FOOTER", "FORM", "H1", "H2", "H3", "H4", "H5", "H6", "HEADER", "HGROUP", "HR", "LI", "MAIN", "NAV", "OL", "P", "PRE", "SECTION", "SVG", "TABLE", "UL", "math", "svg", "BODY", "HEAD", "HTML"];
})(exports);
}
});
export default require_dom_to_image_more_min();
//# sourceMappingURL=dom-to-image-more.js.map

7
node_modules/.vite/deps/dom-to-image-more.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1,3 +1,5 @@
import "./chunk-BUSYA2B4.js";
// node_modules/vue-router/dist/vue-router.esm.js
function assert(condition, message) {
if (!condition) {

File diff suppressed because one or more lines are too long

2
node_modules/.vite/deps/vue.js generated vendored
View File

@@ -1,3 +1,5 @@
import "./chunk-BUSYA2B4.js";
// node_modules/vue/dist/vue.runtime.esm.js
var emptyObject = Object.freeze({});
var isArray = Array.isArray;

2
node_modules/.vite/deps/vue.js.map generated vendored

File diff suppressed because one or more lines are too long

2
node_modules/.vite/deps/vuex.js generated vendored
View File

@@ -1,3 +1,5 @@
import "./chunk-BUSYA2B4.js";
// node_modules/vuex/dist/vuex.esm.js
function applyMixin(Vue2) {
var version = Number(Vue2.version.split(".")[0]);

File diff suppressed because one or more lines are too long