var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __commonJS = (cb, mod) => function __require() { return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; }; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __publicField = (obj, key, value) => { __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value); return value; }; // node_modules/.pnpm/tiny-inflate@1.0.3/node_modules/tiny-inflate/index.js var require_tiny_inflate = __commonJS({ "node_modules/.pnpm/tiny-inflate@1.0.3/node_modules/tiny-inflate/index.js"(exports2, module) { var TINF_OK = 0; var TINF_DATA_ERROR = -3; function Tree() { this.table = new Uint16Array(16); this.trans = new Uint16Array(288); } function Data(source, dest) { this.source = source; this.sourceIndex = 0; this.tag = 0; this.bitcount = 0; this.dest = dest; this.destLen = 0; this.ltree = new Tree(); this.dtree = new Tree(); } var sltree = new Tree(); var sdtree = new Tree(); var length_bits = new Uint8Array(30); var length_base = new Uint16Array(30); var dist_bits = new Uint8Array(30); var dist_base = new Uint16Array(30); var clcidx = new Uint8Array([ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]); var code_tree = new Tree(); var lengths = new Uint8Array(288 + 32); function tinf_build_bits_base(bits2, base, delta, first) { var i, sum; for (i = 0; i < delta; ++i) bits2[i] = 0; for (i = 0; i < 30 - delta; ++i) bits2[i + delta] = i / delta | 0; for (sum = first, i = 0; i < 30; ++i) { base[i] = sum; sum += 1 << bits2[i]; } } function tinf_build_fixed_trees(lt, dt) { var i; for (i = 0; i < 7; ++i) lt.table[i] = 0; lt.table[7] = 24; lt.table[8] = 152; lt.table[9] = 112; for (i = 0; i < 24; ++i) lt.trans[i] = 256 + i; for (i = 0; i < 144; ++i) lt.trans[24 + i] = i; for (i = 0; i < 8; ++i) lt.trans[24 + 144 + i] = 280 + i; for (i = 0; i < 112; ++i) lt.trans[24 + 144 + 8 + i] = 144 + i; for (i = 0; i < 5; ++i) dt.table[i] = 0; dt.table[5] = 32; for (i = 0; i < 32; ++i) dt.trans[i] = i; } var offs = new Uint16Array(16); function tinf_build_tree(t, lengths2, off, num) { var i, sum; for (i = 0; i < 16; ++i) t.table[i] = 0; for (i = 0; i < num; ++i) t.table[lengths2[off + i]]++; t.table[0] = 0; for (sum = 0, i = 0; i < 16; ++i) { offs[i] = sum; sum += t.table[i]; } for (i = 0; i < num; ++i) { if (lengths2[off + i]) t.trans[offs[lengths2[off + i]]++] = i; } } function tinf_getbit(d2) { if (!d2.bitcount--) { d2.tag = d2.source[d2.sourceIndex++]; d2.bitcount = 7; } var bit = d2.tag & 1; d2.tag >>>= 1; return bit; } function tinf_read_bits(d2, num, base) { if (!num) return base; while (d2.bitcount < 24) { d2.tag |= d2.source[d2.sourceIndex++] << d2.bitcount; d2.bitcount += 8; } var val = d2.tag & 65535 >>> 16 - num; d2.tag >>>= num; d2.bitcount -= num; return val + base; } function tinf_decode_symbol(d2, t) { while (d2.bitcount < 24) { d2.tag |= d2.source[d2.sourceIndex++] << d2.bitcount; d2.bitcount += 8; } var sum = 0, cur = 0, len = 0; var tag = d2.tag; do { cur = 2 * cur + (tag & 1); tag >>>= 1; ++len; sum += t.table[len]; cur -= t.table[len]; } while (cur >= 0); d2.tag = tag; d2.bitcount -= len; return t.trans[sum + cur]; } function tinf_decode_trees(d2, lt, dt) { var hlit, hdist, hclen; var i, num, length; hlit = tinf_read_bits(d2, 5, 257); hdist = tinf_read_bits(d2, 5, 1); hclen = tinf_read_bits(d2, 4, 4); for (i = 0; i < 19; ++i) lengths[i] = 0; for (i = 0; i < hclen; ++i) { var clen = tinf_read_bits(d2, 3, 0); lengths[clcidx[i]] = clen; } tinf_build_tree(code_tree, lengths, 0, 19); for (num = 0; num < hlit + hdist; ) { var sym = tinf_decode_symbol(d2, code_tree); switch (sym) { case 16: var prev = lengths[num - 1]; for (length = tinf_read_bits(d2, 2, 3); length; --length) { lengths[num++] = prev; } break; case 17: for (length = tinf_read_bits(d2, 3, 3); length; --length) { lengths[num++] = 0; } break; case 18: for (length = tinf_read_bits(d2, 7, 11); length; --length) { lengths[num++] = 0; } break; default: lengths[num++] = sym; break; } } tinf_build_tree(lt, lengths, 0, hlit); tinf_build_tree(dt, lengths, hlit, hdist); } function tinf_inflate_block_data(d2, lt, dt) { while (1) { var sym = tinf_decode_symbol(d2, lt); if (sym === 256) { return TINF_OK; } if (sym < 256) { d2.dest[d2.destLen++] = sym; } else { var length, dist, offs2; var i; sym -= 257; length = tinf_read_bits(d2, length_bits[sym], length_base[sym]); dist = tinf_decode_symbol(d2, dt); offs2 = d2.destLen - tinf_read_bits(d2, dist_bits[dist], dist_base[dist]); for (i = offs2; i < offs2 + length; ++i) { d2.dest[d2.destLen++] = d2.dest[i]; } } } } function tinf_inflate_uncompressed_block(d2) { var length, invlength; var i; while (d2.bitcount > 8) { d2.sourceIndex--; d2.bitcount -= 8; } length = d2.source[d2.sourceIndex + 1]; length = 256 * length + d2.source[d2.sourceIndex]; invlength = d2.source[d2.sourceIndex + 3]; invlength = 256 * invlength + d2.source[d2.sourceIndex + 2]; if (length !== (~invlength & 65535)) return TINF_DATA_ERROR; d2.sourceIndex += 4; for (i = length; i; --i) d2.dest[d2.destLen++] = d2.source[d2.sourceIndex++]; d2.bitcount = 0; return TINF_OK; } function tinf_uncompress(source, dest) { var d2 = new Data(source, dest); var bfinal, btype, res; do { bfinal = tinf_getbit(d2); btype = tinf_read_bits(d2, 2, 0); switch (btype) { case 0: res = tinf_inflate_uncompressed_block(d2); break; case 1: res = tinf_inflate_block_data(d2, sltree, sdtree); break; case 2: tinf_decode_trees(d2, d2.ltree, d2.dtree); res = tinf_inflate_block_data(d2, d2.ltree, d2.dtree); break; default: res = TINF_DATA_ERROR; } if (res !== TINF_OK) throw new Error("Data error"); } while (!bfinal); if (d2.destLen < d2.dest.length) { if (typeof d2.dest.slice === "function") return d2.dest.slice(0, d2.destLen); else return d2.dest.subarray(0, d2.destLen); } return d2.dest; } tinf_build_fixed_trees(sltree, sdtree); tinf_build_bits_base(length_bits, length_base, 4, 3); tinf_build_bits_base(dist_bits, dist_base, 2, 1); length_bits[28] = 0; length_base[28] = 258; module.exports = tinf_uncompress; } }); // node_modules/.pnpm/unicode-trie@2.0.0/node_modules/unicode-trie/swap.js var require_swap = __commonJS({ "node_modules/.pnpm/unicode-trie@2.0.0/node_modules/unicode-trie/swap.js"(exports2, module) { var isBigEndian = new Uint8Array(new Uint32Array([305419896]).buffer)[0] === 18; var swap = (b, n, m2) => { let i = b[n]; b[n] = b[m2]; b[m2] = i; }; var swap32 = (array) => { const len = array.length; for (let i = 0; i < len; i += 4) { swap(array, i, i + 3); swap(array, i + 1, i + 2); } }; var swap32LE = (array) => { if (isBigEndian) { swap32(array); } }; module.exports = { swap32LE }; } }); // node_modules/.pnpm/unicode-trie@2.0.0/node_modules/unicode-trie/index.js var require_unicode_trie = __commonJS({ "node_modules/.pnpm/unicode-trie@2.0.0/node_modules/unicode-trie/index.js"(exports2, module) { var inflate = require_tiny_inflate(); var { swap32LE } = require_swap(); var SHIFT_1 = 6 + 5; var SHIFT_2 = 5; var SHIFT_1_2 = SHIFT_1 - SHIFT_2; var OMITTED_BMP_INDEX_1_LENGTH = 65536 >> SHIFT_1; var INDEX_2_BLOCK_LENGTH = 1 << SHIFT_1_2; var INDEX_2_MASK = INDEX_2_BLOCK_LENGTH - 1; var INDEX_SHIFT = 2; var DATA_BLOCK_LENGTH = 1 << SHIFT_2; var DATA_MASK = DATA_BLOCK_LENGTH - 1; var LSCP_INDEX_2_OFFSET = 65536 >> SHIFT_2; var LSCP_INDEX_2_LENGTH = 1024 >> SHIFT_2; var INDEX_2_BMP_LENGTH = LSCP_INDEX_2_OFFSET + LSCP_INDEX_2_LENGTH; var UTF8_2B_INDEX_2_OFFSET = INDEX_2_BMP_LENGTH; var UTF8_2B_INDEX_2_LENGTH = 2048 >> 6; var INDEX_1_OFFSET = UTF8_2B_INDEX_2_OFFSET + UTF8_2B_INDEX_2_LENGTH; var DATA_GRANULARITY = 1 << INDEX_SHIFT; var UnicodeTrie = class { constructor(data) { const isBuffer = typeof data.readUInt32BE === "function" && typeof data.slice === "function"; if (isBuffer || data instanceof Uint8Array) { let uncompressedLength; if (isBuffer) { this.highStart = data.readUInt32LE(0); this.errorValue = data.readUInt32LE(4); uncompressedLength = data.readUInt32LE(8); data = data.slice(12); } else { const view = new DataView(data.buffer); this.highStart = view.getUint32(0, true); this.errorValue = view.getUint32(4, true); uncompressedLength = view.getUint32(8, true); data = data.subarray(12); } data = inflate(data, new Uint8Array(uncompressedLength)); data = inflate(data, new Uint8Array(uncompressedLength)); swap32LE(data); this.data = new Uint32Array(data.buffer); } else { ({ data: this.data, highStart: this.highStart, errorValue: this.errorValue } = data); } } get(codePoint) { let index; if (codePoint < 0 || codePoint > 1114111) { return this.errorValue; } if (codePoint < 55296 || codePoint > 56319 && codePoint <= 65535) { index = (this.data[codePoint >> SHIFT_2] << INDEX_SHIFT) + (codePoint & DATA_MASK); return this.data[index]; } if (codePoint <= 65535) { index = (this.data[LSCP_INDEX_2_OFFSET + (codePoint - 55296 >> SHIFT_2)] << INDEX_SHIFT) + (codePoint & DATA_MASK); return this.data[index]; } if (codePoint < this.highStart) { index = this.data[INDEX_1_OFFSET - OMITTED_BMP_INDEX_1_LENGTH + (codePoint >> SHIFT_1)]; index = this.data[index + (codePoint >> SHIFT_2 & INDEX_2_MASK)]; index = (index << INDEX_SHIFT) + (codePoint & DATA_MASK); return this.data[index]; } return this.data[this.data.length - DATA_GRANULARITY]; } }; module.exports = UnicodeTrie; } }); // node_modules/.pnpm/base64-js@0.0.8/node_modules/base64-js/lib/b64.js var require_b64 = __commonJS({ "node_modules/.pnpm/base64-js@0.0.8/node_modules/base64-js/lib/b64.js"(exports2) { var lookup = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; (function(exports3) { "use strict"; var Arr = typeof Uint8Array !== "undefined" ? Uint8Array : Array; var PLUS = "+".charCodeAt(0); var SLASH = "/".charCodeAt(0); var NUMBER = "0".charCodeAt(0); var LOWER = "a".charCodeAt(0); var UPPER = "A".charCodeAt(0); var PLUS_URL_SAFE = "-".charCodeAt(0); var SLASH_URL_SAFE = "_".charCodeAt(0); function decode2(elt) { var code = elt.charCodeAt(0); if (code === PLUS || code === PLUS_URL_SAFE) return 62; if (code === SLASH || code === SLASH_URL_SAFE) return 63; if (code < NUMBER) return -1; if (code < NUMBER + 10) return code - NUMBER + 26 + 26; if (code < UPPER + 26) return code - UPPER; if (code < LOWER + 26) return code - LOWER + 26; } function b64ToByteArray(b64) { var i, j, l2, tmp, placeHolders, arr; if (b64.length % 4 > 0) { throw new Error("Invalid string. Length must be a multiple of 4"); } var len = b64.length; placeHolders = "=" === b64.charAt(len - 2) ? 2 : "=" === b64.charAt(len - 1) ? 1 : 0; arr = new Arr(b64.length * 3 / 4 - placeHolders); l2 = placeHolders > 0 ? b64.length - 4 : b64.length; var L = 0; function push(v2) { arr[L++] = v2; } for (i = 0, j = 0; i < l2; i += 4, j += 3) { tmp = decode2(b64.charAt(i)) << 18 | decode2(b64.charAt(i + 1)) << 12 | decode2(b64.charAt(i + 2)) << 6 | decode2(b64.charAt(i + 3)); push((tmp & 16711680) >> 16); push((tmp & 65280) >> 8); push(tmp & 255); } if (placeHolders === 2) { tmp = decode2(b64.charAt(i)) << 2 | decode2(b64.charAt(i + 1)) >> 4; push(tmp & 255); } else if (placeHolders === 1) { tmp = decode2(b64.charAt(i)) << 10 | decode2(b64.charAt(i + 1)) << 4 | decode2(b64.charAt(i + 2)) >> 2; push(tmp >> 8 & 255); push(tmp & 255); } return arr; } function uint8ToBase64(uint8) { var i, extraBytes = uint8.length % 3, output = "", temp, length; function encode(num) { return lookup.charAt(num); } function tripletToBase64(num) { return encode(num >> 18 & 63) + encode(num >> 12 & 63) + encode(num >> 6 & 63) + encode(num & 63); } for (i = 0, length = uint8.length - extraBytes; i < length; i += 3) { temp = (uint8[i] << 16) + (uint8[i + 1] << 8) + uint8[i + 2]; output += tripletToBase64(temp); } switch (extraBytes) { case 1: temp = uint8[uint8.length - 1]; output += encode(temp >> 2); output += encode(temp << 4 & 63); output += "=="; break; case 2: temp = (uint8[uint8.length - 2] << 8) + uint8[uint8.length - 1]; output += encode(temp >> 10); output += encode(temp >> 4 & 63); output += encode(temp << 2 & 63); output += "="; break; } return output; } exports3.toByteArray = b64ToByteArray; exports3.fromByteArray = uint8ToBase64; })(typeof exports2 === "undefined" ? exports2.base64js = {} : exports2); } }); // node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/parse.js var require_parse = __commonJS({ "node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/parse.js"(exports2, module) { var openParentheses = "(".charCodeAt(0); var closeParentheses = ")".charCodeAt(0); var singleQuote = "'".charCodeAt(0); var doubleQuote = '"'.charCodeAt(0); var backslash = "\\".charCodeAt(0); var slash = "/".charCodeAt(0); var comma = ",".charCodeAt(0); var colon = ":".charCodeAt(0); var star = "*".charCodeAt(0); var uLower = "u".charCodeAt(0); var uUpper = "U".charCodeAt(0); var plus = "+".charCodeAt(0); var isUnicodeRange = /^[a-f0-9?-]+$/i; module.exports = function(input) { var tokens = []; var value = input; var next, quote, prev, token, escape, escapePos, whitespacePos, parenthesesOpenPos; var pos = 0; var code = value.charCodeAt(pos); var max2 = value.length; var stack = [{ nodes: tokens }]; var balanced = 0; var parent; var name = ""; var before = ""; var after = ""; while (pos < max2) { if (code <= 32) { next = pos; do { next += 1; code = value.charCodeAt(next); } while (code <= 32); token = value.slice(pos, next); prev = tokens[tokens.length - 1]; if (code === closeParentheses && balanced) { after = token; } else if (prev && prev.type === "div") { prev.after = token; prev.sourceEndIndex += token.length; } else if (code === comma || code === colon || code === slash && value.charCodeAt(next + 1) !== star && (!parent || parent && parent.type === "function" && parent.value !== "calc")) { before = token; } else { tokens.push({ type: "space", sourceIndex: pos, sourceEndIndex: next, value: token }); } pos = next; } else if (code === singleQuote || code === doubleQuote) { next = pos; quote = code === singleQuote ? "'" : '"'; token = { type: "string", sourceIndex: pos, quote }; do { escape = false; next = value.indexOf(quote, next + 1); if (~next) { escapePos = next; while (value.charCodeAt(escapePos - 1) === backslash) { escapePos -= 1; escape = !escape; } } else { value += quote; next = value.length - 1; token.unclosed = true; } } while (escape); token.value = value.slice(pos + 1, next); token.sourceEndIndex = token.unclosed ? next : next + 1; tokens.push(token); pos = next + 1; code = value.charCodeAt(pos); } else if (code === slash && value.charCodeAt(pos + 1) === star) { next = value.indexOf("*/", pos); token = { type: "comment", sourceIndex: pos, sourceEndIndex: next + 2 }; if (next === -1) { token.unclosed = true; next = value.length; token.sourceEndIndex = next; } token.value = value.slice(pos + 2, next); tokens.push(token); pos = next + 2; code = value.charCodeAt(pos); } else if ((code === slash || code === star) && parent && parent.type === "function" && parent.value === "calc") { token = value[pos]; tokens.push({ type: "word", sourceIndex: pos - before.length, sourceEndIndex: pos + token.length, value: token }); pos += 1; code = value.charCodeAt(pos); } else if (code === slash || code === comma || code === colon) { token = value[pos]; tokens.push({ type: "div", sourceIndex: pos - before.length, sourceEndIndex: pos + token.length, value: token, before, after: "" }); before = ""; pos += 1; code = value.charCodeAt(pos); } else if (openParentheses === code) { next = pos; do { next += 1; code = value.charCodeAt(next); } while (code <= 32); parenthesesOpenPos = pos; token = { type: "function", sourceIndex: pos - name.length, value: name, before: value.slice(parenthesesOpenPos + 1, next) }; pos = next; if (name === "url" && code !== singleQuote && code !== doubleQuote) { next -= 1; do { escape = false; next = value.indexOf(")", next + 1); if (~next) { escapePos = next; while (value.charCodeAt(escapePos - 1) === backslash) { escapePos -= 1; escape = !escape; } } else { value += ")"; next = value.length - 1; token.unclosed = true; } } while (escape); whitespacePos = next; do { whitespacePos -= 1; code = value.charCodeAt(whitespacePos); } while (code <= 32); if (parenthesesOpenPos < whitespacePos) { if (pos !== whitespacePos + 1) { token.nodes = [ { type: "word", sourceIndex: pos, sourceEndIndex: whitespacePos + 1, value: value.slice(pos, whitespacePos + 1) } ]; } else { token.nodes = []; } if (token.unclosed && whitespacePos + 1 !== next) { token.after = ""; token.nodes.push({ type: "space", sourceIndex: whitespacePos + 1, sourceEndIndex: next, value: value.slice(whitespacePos + 1, next) }); } else { token.after = value.slice(whitespacePos + 1, next); token.sourceEndIndex = next; } } else { token.after = ""; token.nodes = []; } pos = next + 1; token.sourceEndIndex = token.unclosed ? next : pos; code = value.charCodeAt(pos); tokens.push(token); } else { balanced += 1; token.after = ""; token.sourceEndIndex = pos + 1; tokens.push(token); stack.push(token); tokens = token.nodes = []; parent = token; } name = ""; } else if (closeParentheses === code && balanced) { pos += 1; code = value.charCodeAt(pos); parent.after = after; parent.sourceEndIndex += after.length; after = ""; balanced -= 1; stack[stack.length - 1].sourceEndIndex = pos; stack.pop(); parent = stack[balanced]; tokens = parent.nodes; } else { next = pos; do { if (code === backslash) { next += 1; } next += 1; code = value.charCodeAt(next); } while (next < max2 && !(code <= 32 || code === singleQuote || code === doubleQuote || code === comma || code === colon || code === slash || code === openParentheses || code === star && parent && parent.type === "function" && parent.value === "calc" || code === slash && parent.type === "function" && parent.value === "calc" || code === closeParentheses && balanced)); token = value.slice(pos, next); if (openParentheses === code) { name = token; } else if ((uLower === token.charCodeAt(0) || uUpper === token.charCodeAt(0)) && plus === token.charCodeAt(1) && isUnicodeRange.test(token.slice(2))) { tokens.push({ type: "unicode-range", sourceIndex: pos, sourceEndIndex: next, value: token }); } else { tokens.push({ type: "word", sourceIndex: pos, sourceEndIndex: next, value: token }); } pos = next; } } for (pos = stack.length - 1; pos; pos -= 1) { stack[pos].unclosed = true; stack[pos].sourceEndIndex = value.length; } return stack[0].nodes; }; } }); // node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/walk.js var require_walk = __commonJS({ "node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/walk.js"(exports2, module) { module.exports = function walk(nodes, cb, bubble) { var i, max2, node, result; for (i = 0, max2 = nodes.length; i < max2; i += 1) { node = nodes[i]; if (!bubble) { result = cb(node, i, nodes); } if (result !== false && node.type === "function" && Array.isArray(node.nodes)) { walk(node.nodes, cb, bubble); } if (bubble) { cb(node, i, nodes); } } }; } }); // node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/stringify.js var require_stringify = __commonJS({ "node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/stringify.js"(exports2, module) { function stringifyNode(node, custom) { var type = node.type; var value = node.value; var buf; var customResult; if (custom && (customResult = custom(node)) !== void 0) { return customResult; } else if (type === "word" || type === "space") { return value; } else if (type === "string") { buf = node.quote || ""; return buf + value + (node.unclosed ? "" : buf); } else if (type === "comment") { return "/*" + value + (node.unclosed ? "" : "*/"); } else if (type === "div") { return (node.before || "") + value + (node.after || ""); } else if (Array.isArray(node.nodes)) { buf = stringify(node.nodes, custom); if (type !== "function") { return buf; } return value + "(" + (node.before || "") + buf + (node.after || "") + (node.unclosed ? "" : ")"); } return value; } function stringify(nodes, custom) { var result, i; if (Array.isArray(nodes)) { result = ""; for (i = nodes.length - 1; ~i; i -= 1) { result = stringifyNode(nodes[i], custom) + result; } return result; } return stringifyNode(nodes, custom); } module.exports = stringify; } }); // node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/unit.js var require_unit = __commonJS({ "node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/unit.js"(exports2, module) { var minus = "-".charCodeAt(0); var plus = "+".charCodeAt(0); var dot = ".".charCodeAt(0); var exp = "e".charCodeAt(0); var EXP = "E".charCodeAt(0); function likeNumber(value) { var code = value.charCodeAt(0); var nextCode; if (code === plus || code === minus) { nextCode = value.charCodeAt(1); if (nextCode >= 48 && nextCode <= 57) { return true; } var nextNextCode = value.charCodeAt(2); if (nextCode === dot && nextNextCode >= 48 && nextNextCode <= 57) { return true; } return false; } if (code === dot) { nextCode = value.charCodeAt(1); if (nextCode >= 48 && nextCode <= 57) { return true; } return false; } if (code >= 48 && code <= 57) { return true; } return false; } module.exports = function(value) { var pos = 0; var length = value.length; var code; var nextCode; var nextNextCode; if (length === 0 || !likeNumber(value)) { return false; } code = value.charCodeAt(pos); if (code === plus || code === minus) { pos++; } while (pos < length) { code = value.charCodeAt(pos); if (code < 48 || code > 57) { break; } pos += 1; } code = value.charCodeAt(pos); nextCode = value.charCodeAt(pos + 1); if (code === dot && nextCode >= 48 && nextCode <= 57) { pos += 2; while (pos < length) { code = value.charCodeAt(pos); if (code < 48 || code > 57) { break; } pos += 1; } } code = value.charCodeAt(pos); nextCode = value.charCodeAt(pos + 1); nextNextCode = value.charCodeAt(pos + 2); if ((code === exp || code === EXP) && (nextCode >= 48 && nextCode <= 57 || (nextCode === plus || nextCode === minus) && nextNextCode >= 48 && nextNextCode <= 57)) { pos += nextCode === plus || nextCode === minus ? 3 : 2; while (pos < length) { code = value.charCodeAt(pos); if (code < 48 || code > 57) { break; } pos += 1; } } return { number: value.slice(0, pos), unit: value.slice(pos) }; }; } }); // node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/index.js var require_lib = __commonJS({ "node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/index.js"(exports2, module) { var parse2 = require_parse(); var walk = require_walk(); var stringify = require_stringify(); function ValueParser(value) { if (this instanceof ValueParser) { this.nodes = parse2(value); return this; } return new ValueParser(value); } ValueParser.prototype.toString = function() { return Array.isArray(this.nodes) ? stringify(this.nodes) : ""; }; ValueParser.prototype.walk = function(cb, bubble) { walk(this.nodes, cb, bubble); return this; }; ValueParser.unit = require_unit(); ValueParser.walk = walk; ValueParser.stringify = stringify; module.exports = ValueParser; } }); // node_modules/.pnpm/camelize@1.0.1/node_modules/camelize/index.js var require_camelize = __commonJS({ "node_modules/.pnpm/camelize@1.0.1/node_modules/camelize/index.js"(exports2, module) { "use strict"; module.exports = function(obj) { if (typeof obj === "string") { return camelCase(obj); } return walk(obj); }; function walk(obj) { if (!obj || typeof obj !== "object") { return obj; } if (isDate(obj) || isRegex(obj)) { return obj; } if (isArray(obj)) { return map(obj, walk); } return reduce(objectKeys(obj), function(acc, key) { var camel = camelCase(key); acc[camel] = walk(obj[key]); return acc; }, {}); } function camelCase(str) { return str.replace(/[_.-](\w|$)/g, function(_2, x2) { return x2.toUpperCase(); }); } var isArray = Array.isArray || function(obj) { return Object.prototype.toString.call(obj) === "[object Array]"; }; var isDate = function(obj) { return Object.prototype.toString.call(obj) === "[object Date]"; }; var isRegex = function(obj) { return Object.prototype.toString.call(obj) === "[object RegExp]"; }; var has = Object.prototype.hasOwnProperty; var objectKeys = Object.keys || function(obj) { var keys = []; for (var key in obj) { if (has.call(obj, key)) { keys.push(key); } } return keys; }; function map(xs2, f) { if (xs2.map) { return xs2.map(f); } var res = []; for (var i = 0; i < xs2.length; i++) { res.push(f(xs2[i], i)); } return res; } function reduce(xs2, f, acc) { if (xs2.reduce) { return xs2.reduce(f, acc); } for (var i = 0; i < xs2.length; i++) { acc = f(acc, xs2[i], i); } return acc; } } }); // node_modules/.pnpm/css-color-keywords@1.0.0/node_modules/css-color-keywords/colors.json var require_colors = __commonJS({ "node_modules/.pnpm/css-color-keywords@1.0.0/node_modules/css-color-keywords/colors.json"(exports2, module) { module.exports = { black: "#000000", silver: "#c0c0c0", gray: "#808080", white: "#ffffff", maroon: "#800000", red: "#ff0000", purple: "#800080", fuchsia: "#ff00ff", green: "#008000", lime: "#00ff00", olive: "#808000", yellow: "#ffff00", navy: "#000080", blue: "#0000ff", teal: "#008080", aqua: "#00ffff", orange: "#ffa500", aliceblue: "#f0f8ff", antiquewhite: "#faebd7", aquamarine: "#7fffd4", azure: "#f0ffff", beige: "#f5f5dc", bisque: "#ffe4c4", blanchedalmond: "#ffebcd", blueviolet: "#8a2be2", brown: "#a52a2a", burlywood: "#deb887", cadetblue: "#5f9ea0", chartreuse: "#7fff00", chocolate: "#d2691e", coral: "#ff7f50", cornflowerblue: "#6495ed", cornsilk: "#fff8dc", crimson: "#dc143c", darkblue: "#00008b", darkcyan: "#008b8b", darkgoldenrod: "#b8860b", darkgray: "#a9a9a9", darkgreen: "#006400", darkgrey: "#a9a9a9", darkkhaki: "#bdb76b", darkmagenta: "#8b008b", darkolivegreen: "#556b2f", darkorange: "#ff8c00", darkorchid: "#9932cc", darkred: "#8b0000", darksalmon: "#e9967a", darkseagreen: "#8fbc8f", darkslateblue: "#483d8b", darkslategray: "#2f4f4f", darkslategrey: "#2f4f4f", darkturquoise: "#00ced1", darkviolet: "#9400d3", deeppink: "#ff1493", deepskyblue: "#00bfff", dimgray: "#696969", dimgrey: "#696969", dodgerblue: "#1e90ff", firebrick: "#b22222", floralwhite: "#fffaf0", forestgreen: "#228b22", gainsboro: "#dcdcdc", ghostwhite: "#f8f8ff", gold: "#ffd700", goldenrod: "#daa520", greenyellow: "#adff2f", grey: "#808080", honeydew: "#f0fff0", hotpink: "#ff69b4", indianred: "#cd5c5c", indigo: "#4b0082", ivory: "#fffff0", khaki: "#f0e68c", lavender: "#e6e6fa", lavenderblush: "#fff0f5", lawngreen: "#7cfc00", lemonchiffon: "#fffacd", lightblue: "#add8e6", lightcoral: "#f08080", lightcyan: "#e0ffff", lightgoldenrodyellow: "#fafad2", lightgray: "#d3d3d3", lightgreen: "#90ee90", lightgrey: "#d3d3d3", lightpink: "#ffb6c1", lightsalmon: "#ffa07a", lightseagreen: "#20b2aa", lightskyblue: "#87cefa", lightslategray: "#778899", lightslategrey: "#778899", lightsteelblue: "#b0c4de", lightyellow: "#ffffe0", limegreen: "#32cd32", linen: "#faf0e6", mediumaquamarine: "#66cdaa", mediumblue: "#0000cd", mediumorchid: "#ba55d3", mediumpurple: "#9370db", mediumseagreen: "#3cb371", mediumslateblue: "#7b68ee", mediumspringgreen: "#00fa9a", mediumturquoise: "#48d1cc", mediumvioletred: "#c71585", midnightblue: "#191970", mintcream: "#f5fffa", mistyrose: "#ffe4e1", moccasin: "#ffe4b5", navajowhite: "#ffdead", oldlace: "#fdf5e6", olivedrab: "#6b8e23", orangered: "#ff4500", orchid: "#da70d6", palegoldenrod: "#eee8aa", palegreen: "#98fb98", paleturquoise: "#afeeee", palevioletred: "#db7093", papayawhip: "#ffefd5", peachpuff: "#ffdab9", peru: "#cd853f", pink: "#ffc0cb", plum: "#dda0dd", powderblue: "#b0e0e6", rosybrown: "#bc8f8f", royalblue: "#4169e1", saddlebrown: "#8b4513", salmon: "#fa8072", sandybrown: "#f4a460", seagreen: "#2e8b57", seashell: "#fff5ee", sienna: "#a0522d", skyblue: "#87ceeb", slateblue: "#6a5acd", slategray: "#708090", slategrey: "#708090", snow: "#fffafa", springgreen: "#00ff7f", steelblue: "#4682b4", tan: "#d2b48c", thistle: "#d8bfd8", tomato: "#ff6347", turquoise: "#40e0d0", violet: "#ee82ee", wheat: "#f5deb3", whitesmoke: "#f5f5f5", yellowgreen: "#9acd32", rebeccapurple: "#663399" }; } }); // node_modules/.pnpm/css-color-keywords@1.0.0/node_modules/css-color-keywords/index.js var require_css_color_keywords = __commonJS({ "node_modules/.pnpm/css-color-keywords@1.0.0/node_modules/css-color-keywords/index.js"(exports2, module) { "use strict"; module.exports = require_colors(); } }); // node_modules/.pnpm/css-to-react-native@3.2.0/node_modules/css-to-react-native/index.js var require_css_to_react_native = __commonJS({ "node_modules/.pnpm/css-to-react-native@3.2.0/node_modules/css-to-react-native/index.js"(exports2) { "use strict"; Object.defineProperty(exports2, "__esModule", { value: true }); function _interopDefault(ex) { return ex && typeof ex === "object" && "default" in ex ? ex["default"] : ex; } var parse2 = require_lib(); var parse__default = _interopDefault(parse2); var camelizeStyleName = _interopDefault(require_camelize()); var cssColorKeywords = _interopDefault(require_css_color_keywords()); var matchString = function matchString2(node) { if (node.type !== "string") return null; return node.value.replace(/\\([0-9a-f]{1,6})(?:\s|$)/gi, function(match, charCode) { return String.fromCharCode(parseInt(charCode, 16)); }).replace(/\\/g, ""); }; var hexColorRe = /^(#(?:[0-9a-f]{3,4}){1,2})$/i; var cssFunctionNameRe = /^(rgba?|hsla?|hwb|lab|lch|gray|color)$/; var matchColor = function matchColor2(node) { if (node.type === "word" && (hexColorRe.test(node.value) || node.value in cssColorKeywords || node.value === "transparent")) { return node.value; } else if (node.type === "function" && cssFunctionNameRe.test(node.value)) { return parse2.stringify(node); } return null; }; var noneRe = /^(none)$/i; var autoRe = /^(auto)$/i; var identRe = /(^-?[_a-z][_a-z0-9-]*$)/i; var numberRe = /^([+-]?(?:\d*\.)?\d+(?:e[+-]?\d+)?)$/i; var lengthRe = /^(0$|(?:[+-]?(?:\d*\.)?\d+(?:e[+-]?\d+)?)(?=px$))/i; var unsupportedUnitRe = /^([+-]?(?:\d*\.)?\d+(?:e[+-]?\d+)?(ch|em|ex|rem|vh|vw|vmin|vmax|cm|mm|in|pc|pt))$/i; var angleRe = /^([+-]?(?:\d*\.)?\d+(?:e[+-]?\d+)?(?:deg|rad))$/i; var percentRe = /^([+-]?(?:\d*\.)?\d+(?:e[+-]?\d+)?%)$/i; var noopToken = function noopToken2(predicate) { return function(node) { return predicate(node) ? "" : null; }; }; var valueForTypeToken = function valueForTypeToken2(type) { return function(node) { return node.type === type ? node.value : null; }; }; var regExpToken = function regExpToken2(regExp, transform2) { if (transform2 === void 0) { transform2 = String; } return function(node) { if (node.type !== "word") return null; var match = node.value.match(regExp); if (match === null) return null; var value = transform2(match[1]); return value; }; }; var SPACE = noopToken(function(node) { return node.type === "space"; }); var SLASH = noopToken(function(node) { return node.type === "div" && node.value === "/"; }); var COMMA = noopToken(function(node) { return node.type === "div" && node.value === ","; }); var WORD = valueForTypeToken("word"); var NONE = regExpToken(noneRe); var AUTO = regExpToken(autoRe); var NUMBER = regExpToken(numberRe, Number); var LENGTH = regExpToken(lengthRe, Number); var UNSUPPORTED_LENGTH_UNIT = regExpToken(unsupportedUnitRe); var ANGLE = regExpToken(angleRe, function(angle) { return angle.toLowerCase(); }); var PERCENT = regExpToken(percentRe); var IDENT = regExpToken(identRe); var STRING = matchString; var COLOR = matchColor; var LINE = regExpToken(/^(none|underline|line-through)$/i); var aspectRatio = function aspectRatio2(tokenStream) { var aspectRatio3 = tokenStream.expect(NUMBER); if (tokenStream.hasTokens()) { tokenStream.expect(SLASH); aspectRatio3 /= tokenStream.expect(NUMBER); } return { aspectRatio: aspectRatio3 }; }; var BORDER_STYLE = regExpToken(/^(solid|dashed|dotted)$/); var defaultBorderWidth = 1; var defaultBorderColor = "black"; var defaultBorderStyle = "solid"; var border = function border2(tokenStream) { var borderWidth2; var borderColor2; var borderStyle; if (tokenStream.matches(NONE)) { tokenStream.expectEmpty(); return { borderWidth: 0, borderColor: "black", borderStyle: "solid" }; } var partsParsed = 0; while (partsParsed < 3 && tokenStream.hasTokens()) { if (partsParsed !== 0) tokenStream.expect(SPACE); if (borderWidth2 === void 0 && tokenStream.matches(LENGTH, UNSUPPORTED_LENGTH_UNIT)) { borderWidth2 = tokenStream.lastValue; } else if (borderColor2 === void 0 && tokenStream.matches(COLOR)) { borderColor2 = tokenStream.lastValue; } else if (borderStyle === void 0 && tokenStream.matches(BORDER_STYLE)) { borderStyle = tokenStream.lastValue; } else { tokenStream["throw"](); } partsParsed += 1; } tokenStream.expectEmpty(); if (borderWidth2 === void 0) borderWidth2 = defaultBorderWidth; if (borderColor2 === void 0) borderColor2 = defaultBorderColor; if (borderStyle === void 0) borderStyle = defaultBorderStyle; return { borderWidth: borderWidth2, borderColor: borderColor2, borderStyle }; }; var directionFactory = function directionFactory2(_ref) { var _ref$types = _ref.types, types = _ref$types === void 0 ? [LENGTH, UNSUPPORTED_LENGTH_UNIT, PERCENT] : _ref$types, _ref$directions = _ref.directions, directions = _ref$directions === void 0 ? ["Top", "Right", "Bottom", "Left"] : _ref$directions, _ref$prefix = _ref.prefix, prefix = _ref$prefix === void 0 ? "" : _ref$prefix, _ref$suffix = _ref.suffix, suffix = _ref$suffix === void 0 ? "" : _ref$suffix; return function(tokenStream) { var _ref2; var values = []; values.push(tokenStream.expect.apply(tokenStream, types)); while (values.length < 4 && tokenStream.hasTokens()) { tokenStream.expect(SPACE); values.push(tokenStream.expect.apply(tokenStream, types)); } tokenStream.expectEmpty(); var top = values[0], _values$ = values[1], right = _values$ === void 0 ? top : _values$, _values$2 = values[2], bottom = _values$2 === void 0 ? top : _values$2, _values$3 = values[3], left = _values$3 === void 0 ? right : _values$3; var keyFor = function keyFor2(n) { return "" + prefix + directions[n] + suffix; }; return _ref2 = {}, _ref2[keyFor(0)] = top, _ref2[keyFor(1)] = right, _ref2[keyFor(2)] = bottom, _ref2[keyFor(3)] = left, _ref2; }; }; var parseShadowOffset = function parseShadowOffset2(tokenStream) { var width = tokenStream.expect(LENGTH); var height = tokenStream.matches(SPACE) ? tokenStream.expect(LENGTH) : width; tokenStream.expectEmpty(); return { width, height }; }; var parseShadow = function parseShadow2(tokenStream) { var offsetX; var offsetY; var radius; var color; if (tokenStream.matches(NONE)) { tokenStream.expectEmpty(); return { offset: { width: 0, height: 0 }, radius: 0, color: "black" }; } var didParseFirst = false; while (tokenStream.hasTokens()) { if (didParseFirst) tokenStream.expect(SPACE); if (offsetX === void 0 && tokenStream.matches(LENGTH, UNSUPPORTED_LENGTH_UNIT)) { offsetX = tokenStream.lastValue; tokenStream.expect(SPACE); offsetY = tokenStream.expect(LENGTH, UNSUPPORTED_LENGTH_UNIT); tokenStream.saveRewindPoint(); if (tokenStream.matches(SPACE) && tokenStream.matches(LENGTH, UNSUPPORTED_LENGTH_UNIT)) { radius = tokenStream.lastValue; } else { tokenStream.rewind(); } } else if (color === void 0 && tokenStream.matches(COLOR)) { color = tokenStream.lastValue; } else { tokenStream["throw"](); } didParseFirst = true; } if (offsetX === void 0) tokenStream["throw"](); return { offset: { width: offsetX, height: offsetY }, radius: radius !== void 0 ? radius : 0, color: color !== void 0 ? color : "black" }; }; var boxShadow = function boxShadow2(tokenStream) { var _parseShadow = parseShadow(tokenStream), offset = _parseShadow.offset, radius = _parseShadow.radius, color = _parseShadow.color; return { shadowOffset: offset, shadowRadius: radius, shadowColor: color, shadowOpacity: 1 }; }; var defaultFlexGrow = 1; var defaultFlexShrink = 1; var defaultFlexBasis = 0; var flex = function flex2(tokenStream) { var flexGrow; var flexShrink; var flexBasis; if (tokenStream.matches(NONE)) { tokenStream.expectEmpty(); return { flexGrow: 0, flexShrink: 0, flexBasis: "auto" }; } tokenStream.saveRewindPoint(); if (tokenStream.matches(AUTO) && !tokenStream.hasTokens()) { return { flexGrow: 1, flexShrink: 1, flexBasis: "auto" }; } tokenStream.rewind(); var partsParsed = 0; while (partsParsed < 2 && tokenStream.hasTokens()) { if (partsParsed !== 0) tokenStream.expect(SPACE); if (flexGrow === void 0 && tokenStream.matches(NUMBER)) { flexGrow = tokenStream.lastValue; tokenStream.saveRewindPoint(); if (tokenStream.matches(SPACE) && tokenStream.matches(NUMBER)) { flexShrink = tokenStream.lastValue; } else { tokenStream.rewind(); } } else if (flexBasis === void 0 && tokenStream.matches(LENGTH, UNSUPPORTED_LENGTH_UNIT, PERCENT)) { flexBasis = tokenStream.lastValue; } else if (flexBasis === void 0 && tokenStream.matches(AUTO)) { flexBasis = "auto"; } else { tokenStream["throw"](); } partsParsed += 1; } tokenStream.expectEmpty(); if (flexGrow === void 0) flexGrow = defaultFlexGrow; if (flexShrink === void 0) flexShrink = defaultFlexShrink; if (flexBasis === void 0) flexBasis = defaultFlexBasis; return { flexGrow, flexShrink, flexBasis }; }; var FLEX_WRAP = regExpToken(/(nowrap|wrap|wrap-reverse)/); var FLEX_DIRECTION = regExpToken(/(row|row-reverse|column|column-reverse)/); var defaultFlexWrap = "nowrap"; var defaultFlexDirection = "row"; var flexFlow = function flexFlow2(tokenStream) { var flexWrap; var flexDirection; var partsParsed = 0; while (partsParsed < 2 && tokenStream.hasTokens()) { if (partsParsed !== 0) tokenStream.expect(SPACE); if (flexWrap === void 0 && tokenStream.matches(FLEX_WRAP)) { flexWrap = tokenStream.lastValue; } else if (flexDirection === void 0 && tokenStream.matches(FLEX_DIRECTION)) { flexDirection = tokenStream.lastValue; } else { tokenStream["throw"](); } partsParsed += 1; } tokenStream.expectEmpty(); if (flexWrap === void 0) flexWrap = defaultFlexWrap; if (flexDirection === void 0) flexDirection = defaultFlexDirection; return { flexWrap, flexDirection }; }; var fontFamily = function fontFamily2(tokenStream) { var fontFamily3; if (tokenStream.matches(STRING)) { fontFamily3 = tokenStream.lastValue; } else { fontFamily3 = tokenStream.expect(IDENT); while (tokenStream.hasTokens()) { tokenStream.expect(SPACE); var nextIdent = tokenStream.expect(IDENT); fontFamily3 += " " + nextIdent; } } tokenStream.expectEmpty(); return { fontFamily: fontFamily3 }; }; var NORMAL = regExpToken(/^(normal)$/); var STYLE = regExpToken(/^(italic)$/); var WEIGHT = regExpToken(/^([1-9]00|bold)$/); var VARIANT = regExpToken(/^(small-caps)$/); var defaultFontStyle = "normal"; var defaultFontWeight = "normal"; var defaultFontVariant = []; var font = function font2(tokenStream) { var fontStyle; var fontWeight2; var fontVariant2; var lineHeight; var numStyleWeightVariantMatched = 0; while (numStyleWeightVariantMatched < 3 && tokenStream.hasTokens()) { if (tokenStream.matches(NORMAL)) ; else if (fontStyle === void 0 && tokenStream.matches(STYLE)) { fontStyle = tokenStream.lastValue; } else if (fontWeight2 === void 0 && tokenStream.matches(WEIGHT)) { fontWeight2 = tokenStream.lastValue; } else if (fontVariant2 === void 0 && tokenStream.matches(VARIANT)) { fontVariant2 = [tokenStream.lastValue]; } else { break; } tokenStream.expect(SPACE); numStyleWeightVariantMatched += 1; } var fontSize = tokenStream.expect(LENGTH, UNSUPPORTED_LENGTH_UNIT); if (tokenStream.matches(SLASH)) { lineHeight = tokenStream.expect(LENGTH, UNSUPPORTED_LENGTH_UNIT); } tokenStream.expect(SPACE); var _fontFamily = fontFamily(tokenStream), fontFamily$1 = _fontFamily.fontFamily; if (fontStyle === void 0) fontStyle = defaultFontStyle; if (fontWeight2 === void 0) fontWeight2 = defaultFontWeight; if (fontVariant2 === void 0) fontVariant2 = defaultFontVariant; var out = { fontStyle, fontWeight: fontWeight2, fontVariant: fontVariant2, fontSize, fontFamily: fontFamily$1 }; if (lineHeight !== void 0) out.lineHeight = lineHeight; return out; }; var fontVariant = function fontVariant2(tokenStream) { var values = [tokenStream.expect(IDENT)]; while (tokenStream.hasTokens()) { tokenStream.expect(SPACE); values.push(tokenStream.expect(IDENT)); } return { fontVariant: values }; }; var ALIGN_CONTENT = regExpToken(/(flex-(?:start|end)|center|stretch|space-(?:between|around))/); var JUSTIFY_CONTENT = regExpToken(/(flex-(?:start|end)|center|space-(?:between|around|evenly))/); var placeContent = function placeContent2(tokenStream) { var alignContent = tokenStream.expect(ALIGN_CONTENT); var justifyContent; if (tokenStream.hasTokens()) { tokenStream.expect(SPACE); justifyContent = tokenStream.expect(JUSTIFY_CONTENT); } else { justifyContent = "stretch"; } tokenStream.expectEmpty(); return { alignContent, justifyContent }; }; var STYLE$1 = regExpToken(/^(solid|double|dotted|dashed)$/); var defaultTextDecorationLine = "none"; var defaultTextDecorationStyle = "solid"; var defaultTextDecorationColor = "black"; var textDecoration = function textDecoration2(tokenStream) { var line; var style; var color; var didParseFirst = false; while (tokenStream.hasTokens()) { if (didParseFirst) tokenStream.expect(SPACE); if (line === void 0 && tokenStream.matches(LINE)) { var lines = [tokenStream.lastValue.toLowerCase()]; tokenStream.saveRewindPoint(); if (lines[0] !== "none" && tokenStream.matches(SPACE) && tokenStream.matches(LINE)) { lines.push(tokenStream.lastValue.toLowerCase()); lines.sort().reverse(); } else { tokenStream.rewind(); } line = lines.join(" "); } else if (style === void 0 && tokenStream.matches(STYLE$1)) { style = tokenStream.lastValue; } else if (color === void 0 && tokenStream.matches(COLOR)) { color = tokenStream.lastValue; } else { tokenStream["throw"](); } didParseFirst = true; } return { textDecorationLine: line !== void 0 ? line : defaultTextDecorationLine, textDecorationColor: color !== void 0 ? color : defaultTextDecorationColor, textDecorationStyle: style !== void 0 ? style : defaultTextDecorationStyle }; }; var textDecorationLine = function textDecorationLine2(tokenStream) { var lines = []; var didParseFirst = false; while (tokenStream.hasTokens()) { if (didParseFirst) tokenStream.expect(SPACE); lines.push(tokenStream.expect(LINE).toLowerCase()); didParseFirst = true; } lines.sort().reverse(); return { textDecorationLine: lines.join(" ") }; }; var textShadow = function textShadow2(tokenStream) { var _parseShadow2 = parseShadow(tokenStream), offset = _parseShadow2.offset, radius = _parseShadow2.radius, color = _parseShadow2.color; return { textShadowOffset: offset, textShadowRadius: radius, textShadowColor: color }; }; var oneOfType = function oneOfType2(tokenType) { return function(functionStream) { var value = functionStream.expect(tokenType); functionStream.expectEmpty(); return value; }; }; var singleNumber = oneOfType(NUMBER); var singleLength = oneOfType(LENGTH); var singleAngle = oneOfType(ANGLE); var xyTransformFactory = function xyTransformFactory2(tokenType) { return function(key, valueIfOmitted) { return function(functionStream) { var _ref3, _ref4; var x2 = functionStream.expect(tokenType); var y; if (functionStream.hasTokens()) { functionStream.expect(COMMA); y = functionStream.expect(tokenType); } else if (valueIfOmitted !== void 0) { y = valueIfOmitted; } else { return x2; } functionStream.expectEmpty(); return [(_ref3 = {}, _ref3[key + "Y"] = y, _ref3), (_ref4 = {}, _ref4[key + "X"] = x2, _ref4)]; }; }; }; var xyNumber = xyTransformFactory(NUMBER); var xyLength = xyTransformFactory(LENGTH); var xyAngle = xyTransformFactory(ANGLE); var partTransforms = { perspective: singleNumber, scale: xyNumber("scale"), scaleX: singleNumber, scaleY: singleNumber, translate: xyLength("translate", 0), translateX: singleLength, translateY: singleLength, rotate: singleAngle, rotateX: singleAngle, rotateY: singleAngle, rotateZ: singleAngle, skewX: singleAngle, skewY: singleAngle, skew: xyAngle("skew", "0deg") }; var transform = function transform2(tokenStream) { var transforms2 = []; var didParseFirst = false; while (tokenStream.hasTokens()) { if (didParseFirst) tokenStream.expect(SPACE); var functionStream = tokenStream.expectFunction(); var functionName = functionStream.functionName; var transformedValues = partTransforms[functionName](functionStream); if (!Array.isArray(transformedValues)) { var _ref5; transformedValues = [(_ref5 = {}, _ref5[functionName] = transformedValues, _ref5)]; } transforms2 = transformedValues.concat(transforms2); didParseFirst = true; } return { transform: transforms2 }; }; var background = function background2(tokenStream) { return { backgroundColor: tokenStream.expect(COLOR) }; }; var borderColor = directionFactory({ types: [COLOR], prefix: "border", suffix: "Color" }); var borderRadius = directionFactory({ directions: ["TopLeft", "TopRight", "BottomRight", "BottomLeft"], prefix: "border", suffix: "Radius" }); var borderWidth = directionFactory({ prefix: "border", suffix: "Width" }); var margin = directionFactory({ types: [LENGTH, UNSUPPORTED_LENGTH_UNIT, PERCENT, AUTO], prefix: "margin" }); var padding = directionFactory({ prefix: "padding" }); var fontWeight = function fontWeight2(tokenStream) { return { fontWeight: tokenStream.expect(WORD) // Also match numbers as strings }; }; var shadowOffset = function shadowOffset2(tokenStream) { return { shadowOffset: parseShadowOffset(tokenStream) }; }; var textShadowOffset = function textShadowOffset2(tokenStream) { return { textShadowOffset: parseShadowOffset(tokenStream) }; }; var transforms = { aspectRatio, background, border, borderColor, borderRadius, borderWidth, boxShadow, flex, flexFlow, font, fontFamily, fontVariant, fontWeight, margin, padding, placeContent, shadowOffset, textShadow, textShadowOffset, textDecoration, textDecorationLine, transform }; var propertiesWithoutUnits; if (process.env.NODE_ENV !== "production") { propertiesWithoutUnits = ["aspectRatio", "elevation", "flexGrow", "flexShrink", "opacity", "shadowOpacity", "zIndex"]; } var devPropertiesWithUnitsRegExp = propertiesWithoutUnits != null ? new RegExp(propertiesWithoutUnits.join("|")) : null; var SYMBOL_MATCH = "SYMBOL_MATCH"; var TokenStream = /* @__PURE__ */ function() { function TokenStream2(nodes, parent) { this.index = 0; this.nodes = nodes; this.functionName = parent != null ? parent.value : null; this.lastValue = null; this.rewindIndex = -1; } var _proto = TokenStream2.prototype; _proto.hasTokens = function hasTokens() { return this.index <= this.nodes.length - 1; }; _proto[SYMBOL_MATCH] = function() { if (!this.hasTokens()) return null; var node = this.nodes[this.index]; for (var i = 0; i < arguments.length; i += 1) { var tokenDescriptor = i < 0 || arguments.length <= i ? void 0 : arguments[i]; var value = tokenDescriptor(node); if (value !== null) { this.index += 1; this.lastValue = value; return value; } } return null; }; _proto.matches = function matches() { return this[SYMBOL_MATCH].apply(this, arguments) !== null; }; _proto.expect = function expect() { var value = this[SYMBOL_MATCH].apply(this, arguments); return value !== null ? value : this["throw"](); }; _proto.matchesFunction = function matchesFunction() { var node = this.nodes[this.index]; if (node.type !== "function") return null; var value = new TokenStream2(node.nodes, node); this.index += 1; this.lastValue = null; return value; }; _proto.expectFunction = function expectFunction() { var value = this.matchesFunction(); return value !== null ? value : this["throw"](); }; _proto.expectEmpty = function expectEmpty() { if (this.hasTokens()) this["throw"](); }; _proto["throw"] = function _throw() { throw new Error("Unexpected token type: " + this.nodes[this.index].type); }; _proto.saveRewindPoint = function saveRewindPoint() { this.rewindIndex = this.index; }; _proto.rewind = function rewind() { if (this.rewindIndex === -1) throw new Error("Internal error"); this.index = this.rewindIndex; this.lastValue = null; }; return TokenStream2; }(); var numberOrLengthRe = /^([+-]?(?:\d*\.)?\d+(?:e[+-]?\d+)?)(?:px)?$/i; var numberOnlyRe = /^[+-]?(?:\d*\.\d*|[1-9]\d*)(?:e[+-]?\d+)?$/i; var boolRe = /^true|false$/i; var nullRe = /^null$/i; var undefinedRe = /^undefined$/i; var transformRawValue = function transformRawValue2(propName, value) { if (process.env.NODE_ENV !== "production") { var needsUnit = !devPropertiesWithUnitsRegExp.test(propName); var isNumberWithoutUnit = numberOnlyRe.test(value); if (needsUnit && isNumberWithoutUnit) { console.warn('Expected style "' + propName + ": " + value + '" to contain units'); } if (!needsUnit && value !== "0" && !isNumberWithoutUnit) { console.warn('Expected style "' + propName + ": " + value + '" to be unitless'); } } var numberMatch = value.match(numberOrLengthRe); if (numberMatch !== null) return Number(numberMatch[1]); var boolMatch = value.match(boolRe); if (boolMatch !== null) return boolMatch[0].toLowerCase() === "true"; var nullMatch = value.match(nullRe); if (nullMatch !== null) return null; var undefinedMatch = value.match(undefinedRe); if (undefinedMatch !== null) return void 0; return value; }; var baseTransformShorthandValue = function baseTransformShorthandValue2(propName, value) { var ast = parse__default(value); var tokenStream = new TokenStream(ast.nodes); return transforms[propName](tokenStream); }; var transformShorthandValue = process.env.NODE_ENV === "production" ? baseTransformShorthandValue : function(propName, value) { try { return baseTransformShorthandValue(propName, value); } catch (e) { throw new Error('Failed to parse declaration "' + propName + ": " + value + '"'); } }; var getStylesForProperty = function getStylesForProperty2(propName, inputValue, allowShorthand) { var _ref6; var isRawValue = allowShorthand === false || !(propName in transforms); var value = inputValue.trim(); var propValues = isRawValue ? (_ref6 = {}, _ref6[propName] = transformRawValue(propName, value), _ref6) : transformShorthandValue(propName, value); return propValues; }; var getPropertyName = function getPropertyName2(propName) { var isCustomProp = /^--\w+/.test(propName); if (isCustomProp) { return propName; } return camelizeStyleName(propName); }; var index = function index2(rules, shorthandBlacklist) { if (shorthandBlacklist === void 0) { shorthandBlacklist = []; } return rules.reduce(function(accum, rule) { var propertyName = getPropertyName(rule[0]); var value = rule[1]; var allowShorthand = shorthandBlacklist.indexOf(propertyName) === -1; return Object.assign(accum, getStylesForProperty(propertyName, value, allowShorthand)); }, {}); }; exports2["default"] = index; exports2.getPropertyName = getPropertyName; exports2.getStylesForProperty = getStylesForProperty; exports2.transformRawValue = transformRawValue; } }); // node_modules/.pnpm/css-background-parser@0.1.0/node_modules/css-background-parser/index.js var require_css_background_parser = __commonJS({ "node_modules/.pnpm/css-background-parser@0.1.0/node_modules/css-background-parser/index.js"(exports2, module) { (function(exports3) { function BackgroundList(backgrounds) { if (!(this instanceof BackgroundList)) { return new BackgroundList(); } this.backgrounds = backgrounds || []; } BackgroundList.prototype.toString = function() { return this.backgrounds.join(", "); }; function Background(props) { if (!(this instanceof Background)) { return new Background(props); } props = props || {}; var bg = this; function defprop(name, defaultValue) { bg[name] = name in props ? props[name] : defaultValue; } defprop("color", ""); defprop("image", "none"); defprop("attachment", "scroll"); defprop("clip", "border-box"); defprop("origin", "padding-box"); defprop("position", "0% 0%"); defprop("repeat", "repeat"); defprop("size", "auto"); } Background.prototype.toString = function() { var list = [ this.image, this.repeat, this.attachment, this.position + " / " + this.size, this.origin, this.clip ]; if (this.color) { list.unshift(this.color); } return list.join(" "); }; exports3.BackgroundList = BackgroundList; exports3.Background = Background; function parseImages(cssText) { var images = []; var tokens = /[,\(\)]/; var parens = 0; var buffer = ""; if (cssText == null) { return images; } while (cssText.length) { var match = tokens.exec(cssText); if (!match) { break; } var char = match[0]; var ignoreChar = false; switch (char) { case ",": if (!parens) { images.push(buffer.trim()); buffer = ""; ignoreChar = true; } break; case "(": parens++; break; case ")": parens--; break; } var index = match.index + 1; buffer += cssText.slice(0, ignoreChar ? index - 1 : index); cssText = cssText.slice(index); } if (buffer.length || cssText.length) { images.push((buffer + cssText).trim()); } return images; } function trim(str) { return str.trim(); } function parseSimpleList(cssText) { return (cssText || "").split(",").map(trim); } exports3.parseElementStyle = function(styleObject) { var list = new BackgroundList(); if (styleObject == null) { return list; } var bgImage = parseImages(styleObject.backgroundImage); var bgColor = styleObject.backgroundColor; var bgAttachment = parseSimpleList(styleObject.backgroundAttachment); var bgClip = parseSimpleList(styleObject.backgroundClip); var bgOrigin = parseSimpleList(styleObject.backgroundOrigin); var bgPosition = parseSimpleList(styleObject.backgroundPosition); var bgRepeat = parseSimpleList(styleObject.backgroundRepeat); var bgSize = parseSimpleList(styleObject.backgroundSize); var background; for (var i = 0, ii = bgImage.length; i < ii; i++) { background = new Background({ image: bgImage[i], attachment: bgAttachment[i % bgAttachment.length], clip: bgClip[i % bgClip.length], origin: bgOrigin[i % bgOrigin.length], position: bgPosition[i % bgPosition.length], repeat: bgRepeat[i % bgRepeat.length], size: bgSize[i % bgSize.length] }); if (i === ii - 1) { background.color = bgColor; } list.backgrounds.push(background); } return list; }; })(function(root) { if (typeof module !== "undefined" && module.exports !== void 0) return module.exports; return root.cssBgParser = {}; }(exports2)); } }); // node_modules/.pnpm/css-box-shadow@1.0.0-3/node_modules/css-box-shadow/index.js var require_css_box_shadow = __commonJS({ "node_modules/.pnpm/css-box-shadow@1.0.0-3/node_modules/css-box-shadow/index.js"(exports2, module) { var VALUES_REG = /,(?![^\(]*\))/; var PARTS_REG = /\s(?![^(]*\))/; var LENGTH_REG = /^[0-9]+[a-zA-Z%]+?$/; var parseValue = (str) => { const parts = str.split(PARTS_REG); const inset = parts.includes("inset"); const last = parts.slice(-1)[0]; const color = !isLength(last) ? last : void 0; const nums = parts.filter((n) => n !== "inset").filter((n) => n !== color).map(toNum); const [offsetX, offsetY, blurRadius, spreadRadius] = nums; return { inset, offsetX, offsetY, blurRadius, spreadRadius, color }; }; var stringifyValue = (obj) => { const { inset, offsetX = 0, offsetY = 0, blurRadius = 0, spreadRadius, color } = obj || {}; return [ inset ? "inset" : null, offsetX, offsetY, blurRadius, spreadRadius, color ].filter((v2) => v2 !== null && v2 !== void 0).map(toPx).map((s) => ("" + s).trim()).join(" "); }; var isLength = (v2) => v2 === "0" || LENGTH_REG.test(v2); var toNum = (v2) => { if (!/px$/.test(v2) && v2 !== "0") return v2; const n = parseFloat(v2); return !isNaN(n) ? n : v2; }; var toPx = (n) => typeof n === "number" && n !== 0 ? n + "px" : n; var parse2 = (str) => str.split(VALUES_REG).map((s) => s.trim()).map(parseValue); var stringify = (arr) => arr.map(stringifyValue).join(", "); module.exports = { parse: parse2, stringify }; } }); // node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js var require_color_name = __commonJS({ "node_modules/.pnpm/color-name@1.1.4/node_modules/color-name/index.js"(exports2, module) { "use strict"; module.exports = { "aliceblue": [240, 248, 255], "antiquewhite": [250, 235, 215], "aqua": [0, 255, 255], "aquamarine": [127, 255, 212], "azure": [240, 255, 255], "beige": [245, 245, 220], "bisque": [255, 228, 196], "black": [0, 0, 0], "blanchedalmond": [255, 235, 205], "blue": [0, 0, 255], "blueviolet": [138, 43, 226], "brown": [165, 42, 42], "burlywood": [222, 184, 135], "cadetblue": [95, 158, 160], "chartreuse": [127, 255, 0], "chocolate": [210, 105, 30], "coral": [255, 127, 80], "cornflowerblue": [100, 149, 237], "cornsilk": [255, 248, 220], "crimson": [220, 20, 60], "cyan": [0, 255, 255], "darkblue": [0, 0, 139], "darkcyan": [0, 139, 139], "darkgoldenrod": [184, 134, 11], "darkgray": [169, 169, 169], "darkgreen": [0, 100, 0], "darkgrey": [169, 169, 169], "darkkhaki": [189, 183, 107], "darkmagenta": [139, 0, 139], "darkolivegreen": [85, 107, 47], "darkorange": [255, 140, 0], "darkorchid": [153, 50, 204], "darkred": [139, 0, 0], "darksalmon": [233, 150, 122], "darkseagreen": [143, 188, 143], "darkslateblue": [72, 61, 139], "darkslategray": [47, 79, 79], "darkslategrey": [47, 79, 79], "darkturquoise": [0, 206, 209], "darkviolet": [148, 0, 211], "deeppink": [255, 20, 147], "deepskyblue": [0, 191, 255], "dimgray": [105, 105, 105], "dimgrey": [105, 105, 105], "dodgerblue": [30, 144, 255], "firebrick": [178, 34, 34], "floralwhite": [255, 250, 240], "forestgreen": [34, 139, 34], "fuchsia": [255, 0, 255], "gainsboro": [220, 220, 220], "ghostwhite": [248, 248, 255], "gold": [255, 215, 0], "goldenrod": [218, 165, 32], "gray": [128, 128, 128], "green": [0, 128, 0], "greenyellow": [173, 255, 47], "grey": [128, 128, 128], "honeydew": [240, 255, 240], "hotpink": [255, 105, 180], "indianred": [205, 92, 92], "indigo": [75, 0, 130], "ivory": [255, 255, 240], "khaki": [240, 230, 140], "lavender": [230, 230, 250], "lavenderblush": [255, 240, 245], "lawngreen": [124, 252, 0], "lemonchiffon": [255, 250, 205], "lightblue": [173, 216, 230], "lightcoral": [240, 128, 128], "lightcyan": [224, 255, 255], "lightgoldenrodyellow": [250, 250, 210], "lightgray": [211, 211, 211], "lightgreen": [144, 238, 144], "lightgrey": [211, 211, 211], "lightpink": [255, 182, 193], "lightsalmon": [255, 160, 122], "lightseagreen": [32, 178, 170], "lightskyblue": [135, 206, 250], "lightslategray": [119, 136, 153], "lightslategrey": [119, 136, 153], "lightsteelblue": [176, 196, 222], "lightyellow": [255, 255, 224], "lime": [0, 255, 0], "limegreen": [50, 205, 50], "linen": [250, 240, 230], "magenta": [255, 0, 255], "maroon": [128, 0, 0], "mediumaquamarine": [102, 205, 170], "mediumblue": [0, 0, 205], "mediumorchid": [186, 85, 211], "mediumpurple": [147, 112, 219], "mediumseagreen": [60, 179, 113], "mediumslateblue": [123, 104, 238], "mediumspringgreen": [0, 250, 154], "mediumturquoise": [72, 209, 204], "mediumvioletred": [199, 21, 133], "midnightblue": [25, 25, 112], "mintcream": [245, 255, 250], "mistyrose": [255, 228, 225], "moccasin": [255, 228, 181], "navajowhite": [255, 222, 173], "navy": [0, 0, 128], "oldlace": [253, 245, 230], "olive": [128, 128, 0], "olivedrab": [107, 142, 35], "orange": [255, 165, 0], "orangered": [255, 69, 0], "orchid": [218, 112, 214], "palegoldenrod": [238, 232, 170], "palegreen": [152, 251, 152], "paleturquoise": [175, 238, 238], "palevioletred": [219, 112, 147], "papayawhip": [255, 239, 213], "peachpuff": [255, 218, 185], "peru": [205, 133, 63], "pink": [255, 192, 203], "plum": [221, 160, 221], "powderblue": [176, 224, 230], "purple": [128, 0, 128], "rebeccapurple": [102, 51, 153], "red": [255, 0, 0], "rosybrown": [188, 143, 143], "royalblue": [65, 105, 225], "saddlebrown": [139, 69, 19], "salmon": [250, 128, 114], "sandybrown": [244, 164, 96], "seagreen": [46, 139, 87], "seashell": [255, 245, 238], "sienna": [160, 82, 45], "silver": [192, 192, 192], "skyblue": [135, 206, 235], "slateblue": [106, 90, 205], "slategray": [112, 128, 144], "slategrey": [112, 128, 144], "snow": [255, 250, 250], "springgreen": [0, 255, 127], "steelblue": [70, 130, 180], "tan": [210, 180, 140], "teal": [0, 128, 128], "thistle": [216, 191, 216], "tomato": [255, 99, 71], "turquoise": [64, 224, 208], "violet": [238, 130, 238], "wheat": [245, 222, 179], "white": [255, 255, 255], "whitesmoke": [245, 245, 245], "yellow": [255, 255, 0], "yellowgreen": [154, 205, 50] }; } }); // node_modules/.pnpm/hex-rgb@4.3.0/node_modules/hex-rgb/index.js var require_hex_rgb = __commonJS({ "node_modules/.pnpm/hex-rgb@4.3.0/node_modules/hex-rgb/index.js"(exports2, module) { "use strict"; var hexCharacters = "a-f\\d"; var match3or4Hex = `#?[${hexCharacters}]{3}[${hexCharacters}]?`; var match6or8Hex = `#?[${hexCharacters}]{6}([${hexCharacters}]{2})?`; var nonHexChars = new RegExp(`[^#${hexCharacters}]`, "gi"); var validHexSize = new RegExp(`^${match3or4Hex}$|^${match6or8Hex}$`, "i"); module.exports = (hex, options = {}) => { if (typeof hex !== "string" || nonHexChars.test(hex) || !validHexSize.test(hex)) { throw new TypeError("Expected a valid hex string"); } hex = hex.replace(/^#/, ""); let alphaFromHex = 1; if (hex.length === 8) { alphaFromHex = Number.parseInt(hex.slice(6, 8), 16) / 255; hex = hex.slice(0, 6); } if (hex.length === 4) { alphaFromHex = Number.parseInt(hex.slice(3, 4).repeat(2), 16) / 255; hex = hex.slice(0, 3); } if (hex.length === 3) { hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2]; } const number2 = Number.parseInt(hex, 16); const red = number2 >> 16; const green = number2 >> 8 & 255; const blue = number2 & 255; const alpha = typeof options.alpha === "number" ? options.alpha : alphaFromHex; if (options.format === "array") { return [red, green, blue, alpha]; } if (options.format === "css") { const alphaString = alpha === 1 ? "" : ` / ${Number((alpha * 100).toFixed(2))}%`; return `rgb(${red} ${green} ${blue}${alphaString})`; } return { red, green, blue, alpha }; }; } }); // node_modules/.pnpm/escape-html@1.0.3/node_modules/escape-html/index.js var require_escape_html = __commonJS({ "node_modules/.pnpm/escape-html@1.0.3/node_modules/escape-html/index.js"(exports2, module) { "use strict"; var matchHtmlRegExp = /["'&<>]/; module.exports = escapeHtml; function escapeHtml(string) { var str = "" + string; var match = matchHtmlRegExp.exec(str); if (!match) { return str; } var escape; var html = ""; var index = 0; var lastIndex = 0; for (index = match.index; index < str.length; index++) { switch (str.charCodeAt(index)) { case 34: escape = """; break; case 38: escape = "&"; break; case 39: escape = "'"; break; case 60: escape = "<"; break; case 62: escape = ">"; break; default: continue; } if (lastIndex !== index) { html += str.substring(lastIndex, index); } lastIndex = index + 1; html += escape; } return lastIndex !== index ? html + str.substring(lastIndex, index) : html; } } }); // node_modules/.pnpm/linebreak@1.1.0/node_modules/linebreak/dist/module.mjs var import_unicode_trie = __toESM(require_unicode_trie(), 1); var import_base64_js = __toESM(require_b64(), 1); var $557adaaeb0c7885f$exports = {}; var $1627905f8be2ef3f$export$fb4028874a74450 = 5; var $1627905f8be2ef3f$export$1bb1140fe1358b00 = 12; var $1627905f8be2ef3f$export$f3e416a182673355 = 13; var $1627905f8be2ef3f$export$24aa617c849a894a = 16; var $1627905f8be2ef3f$export$a73c4d14459b698d = 17; var $1627905f8be2ef3f$export$9e5d732f3676a9ba = 22; var $1627905f8be2ef3f$export$1dff41d5c0caca01 = 28; var $1627905f8be2ef3f$export$30a74a373318dec6 = 31; var $1627905f8be2ef3f$export$d710c5f50fc7496a = 33; var $1627905f8be2ef3f$export$66498d28055820a9 = 34; var $1627905f8be2ef3f$export$eb6c6d0b7c8826f2 = 35; var $1627905f8be2ef3f$export$de92be486109a1df = 36; var $1627905f8be2ef3f$export$606cfc2a8896c91f = 37; var $1627905f8be2ef3f$export$e51d3c675bb0140d = 38; var $1627905f8be2ef3f$export$da51c6332ad11d7b = 39; var $1627905f8be2ef3f$export$bea437c40441867d = 40; var $1627905f8be2ef3f$export$c4c7eecbfed13dc9 = 41; var $1627905f8be2ef3f$export$98e1f8a379849661 = 42; var $32627af916ac1b00$export$98f50d781a474745 = 0; var $32627af916ac1b00$export$12ee1f8f5315ca7e = 1; var $32627af916ac1b00$export$e4965ce242860454 = 2; var $32627af916ac1b00$export$8f14048969dcd45e = 3; var $32627af916ac1b00$export$133eb141bf58aff4 = 4; var $32627af916ac1b00$export$5bdb8ccbf5c57afc = [ //OP , CL , CP , QU , GL , NS , EX , SY , IS , PR , PO , NU , AL , HL , ID , IN , HY , BA , BB , B2 , ZW , CM , WJ , H2 , H3 , JL , JV , JT , RI , EB , EM , ZWJ , CB [ $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$8f14048969dcd45e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ], [ $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$e4965ce242860454, $32627af916ac1b00$export$133eb141bf58aff4, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$98f50d781a474745, $32627af916ac1b00$export$12ee1f8f5315ca7e, $32627af916ac1b00$export$98f50d781a474745 ] // CB ]; var $557adaaeb0c7885f$var$data = import_base64_js.default.toByteArray("AAgOAAAAAAAQ4QAAAQ0P8vDtnQuMXUUZx+eyu7d7797d9m5bHoWltKVUlsjLWE0VJNigQoMVqkStEoNQQUl5GIo1KKmogEgqkKbBRki72lYabZMGKoGAjQRtJJDaCCIRiiigREBQS3z+xzOTnZ3O+3HOhd5NfpkzZx7fN9988zivu2M9hGwB28F94DnwEngd/Asc1EtIs9c/bIPDwCxwLDgezHcodyo4w5C+CCwBS8FnwSXgCnA1uFbI93XwbXAbWAfWgx+CzWAb+An4KfgFeAzsYWWfYuFz4CXwGvgb+Dfo6yNkEEwGh4CZYB44FpwI3g1OY+kfBItZOo2fB84Hy8DF4HJwNbiWpV8PVoO1LH4n2NRXyN+KcAd4kNVP9XsY4aPgcfAbsBfs6SniL4K/sPjfEf6HlanXCRkCw2BGvUh/keWfXS/CY+pFXs7x9XHmM94LTmWIeU2cgbxnS/k/B3kf86jDhU8L9V2E40vAFWAlWFUfb++NOL4F3C7JX4/4GiE+hvgWsF0oS7mXldspnN+F493gyXrh9xTav0cg3EvzgVfBG6wsmVSEkxBOBgdPGpd7JI6PnqRvJ68/xlbHof53gPeA94OzwLngk+ACsAwsByvASrAK3MB0Ws3CtQjvBJvAVrADPMDSHkb4CNijaccTwvnf4fiPEs8Lxy+D18A/QU8/xjgYBjPAbDAKTgYLwOngTHAO+EQ/8wuEF4EvsPiVCFf2+9tsFStzA8LVHuXXBsi6QyqzUYiPMR/7Mc7dAx7oL8bzw/3u/Bw8Bp4Az4AXwCtgHzsmDXP5fiF9iiVvly5d0sHngar16NKlS5cuXbp06fLmYlqHXrcd3ph4P0THUY3iXh49novju4S0tzfs5d+JPKewfAsRntZb3K9ZhOMlrO6lCC8An28U9+OuovcPcPxlVu5rCL/VmHh/iHIrzn3fIPu7SN8Axmg+8AOwEWwCm7tp3bRuWjetm5Y8bSu4B9zbKO6ZVsnORrVU3f4uXTqZ2H3sLoyx3eDXjfDndE9qyj6L838CfwVvgFpzYnof4oNgOhgBc8Fos9DrZIQLmtXPP1MmF6wGj4H+KXoWguvADkXaPil+YpuQy8Am8Ey7ODdtmJDF4HowBp4De6HDTNjhfHAHeBr0DBBy0kDxfPbcgSIusgrcWhtnJ8vL+TPix7UIOQtcBq4C28Cr4KRBnANbwSuDE+s50JgyNNFuXbp06XIgsXjIvPafjvXozKY+fVFz/z0LT1uCtKVSWbrOLWPnztG8e0Xfy7ol8XtZJi7WtG+5od2UFXQ/A12vUeS7jp27yVKHjdsU9lXB869TyNvAzt0lpP2oWbwLdjiO78bx/Sz+EMJHwK9Y/LcIfw+eZ3F67/Hl5vh9xX80J+rwX8SvRDhpgL17iPAQMHNArfPrqHPewLheI+AERV6efwV418B4nOZ/H+IfYHV8GOF5LJ3eAz0fx8sM9S0fUNud39O9CulfGZhY5huI3wzWgNvBelbHZoTbNPVpfYjKQpkHwUNgl0LWblbnk0LbbDxr0OMFpL3iqWdu9nWYPlVAWkXY39LnGdCkDbeqv1YNbfcMQ3t9oe8lzm6NH9N1ZB6Ln4BwfkJZJk7RyFnYKt6b/JDQXx9p5X+eFdqOjzM9P9MB/lUlFzr20aXIdzlY4dmn9F3YqtvoO76/2hp/D/xA5Zue88nNyL8GbFbs075X0tyUig3Qd2MCnf//HjnzpbsR3g9+1kHzzVjdnE71/qVBX9rGPUh/ysNWe1neFzvIDi5zAufV1sT0N0poR22wkFUfTOPfA4N2mbZ5fSrqOHSw+IbkSBbOGSzSRgf91/GTUWYBOB2cIZQ/G8cfBZ8CFwrnL8XxF8FKcA24jqXdiPA7Qr61OF7H4mMItwzuv2/YLth1ISt3Hzu3k4W7EH5JqPdRHD/O4k+z8A8IX5Lq3y7Z4nXE9xn6kX6vQ4bKfy+ok+hH+xf3hq9dnTTHhjKd2GmDuWA242iHMq4cC7A8kJ7i8o1+skSa7Jieo38HCWnoNjKFhdSFBxzpZ7QE6lI8N4S14aASZcryaV/WWHw66f6NHuCoxuQxmvM56GX9QMd8Q4D65ywGP+ZzRJuM+zQvx/MOS2VFeqQ4IXnH26zM9Xe6/E6D+4foAzzuajPZp8Qyw5ayZVDWuH0z0BtYRkeIDqH9KO9VbH1btd/lhNqCzvl8zeLnG0S/hnU6baHfpiuO6yy0rd+DHURo/zYF5H26j03rQsip2ndzz82u1z9N4VjWKWeb68Tedpt95HRVXp7H1R6p+/Wt4FPy/PpWwscOLRJ+PVWF/+W0iVyGzs18TIvXkOJ1Wxm66vSXz+vylenrZcj1ub439W+K8RNCGTJi2p/TJ1K23VaXr35tRpnzmjxequgfcfyk6B/TGBVlyedsNgpdd/h+W1U3P99QyFPNo1X3TwpM/WLTIWYfoBqXrv6iskHZ/RFr79R6hIyHBrH3f1nrUVnjP8SnZZ+rYtzr9Exld5MNbPNErusAPg+77u/eDOPftU9yj39TH7rezxd1LvsZQJlzkWlOirG/79zjMj/mtHUKu7vKy+3/LnXr9okyKedjX5/0He9iP/j63LwOQdarEVlfy8OO/Lqw023j6xcqmwxLiOd6heM2i9cV9LJy8jMJ23yQ+rpbfu7EQ/pXE8KYvUSqvVnb4XzZa6LrHMXHR+zcLvqWbm/Bn0/HzIs6fWPHoat8XfnDKmZGxRxeMbn2UqZ5Q94nmcZRbqqUXbZ8+lcjE+cPX11t814orvvAXNcG8vqj2vvk1MGn3anlj0bIT72v47bvE+Lc98T9b6r7AKn6j+8Duf7D0nnZx/j7Zjn0j9nbpSTndaLr9WNLivP+iN23xF7L+fqv6ZouFyb78jxVXvv5jJ9YUs9/sddO8h7KNg5jrhfaJGztT6G7KF+1d6yCmD5Kdb2fan60rSc552fZr3zeQ9DpnPp+Si5cx5Ktv2QfSzF/mMbWdOm46rFI4XstnU9xeqX4NKb7TKEdcr6pZOK3ID1k/LvFHkVczEuZLEDr499YqvqBym1aEHWgcvoYOtv0M91qQl5TfpO/in6rWx8OVpT1Wedkv3f5xom3T/xeR/6Gx6V86PWAOB4bBpqWdN+yTcVxjIyGRz/FrDGu6w/3d7kPm8StX8RyPu+uuvpNju/vTLJV37GpvoM0oZPnW87VLnL/5pDno1NoW1R6yedU6TyUv3u19a3KFnIbTLYz+ZCLP4T0tU1uivFgso0pnsJ/UtXvarNY28Xq5cvkBDrQP/E5ZaiuQwwfmTlsOiQRU1fMuqrDd/3ISSuwjOwXOfTyGUMpZIXq4GpLn3pUcdfzch2x7XO1u2uZHOPb1G6b3Xg9PH1IIWeEpJlPQtqos2EKW8b0u8rnuP1UeVLoXJb9be0uG9nnbchjU+XTszT5VeNBThPHnc5OKj1U9aj0GTHIVaGy1YhEWT4ixns00DT+XEzWn/7VAsIc63Cov3OdyhwjrnaqQqZvWKXdypRdlq+k8msZ031U+Rm4fA+3TtyeR9hwfW9G9yxDN0fZMN33F+9TE6md4hwoxumfaUzI9fN3PFT3xVV2msrQ3UsnChm6Nulk8TndpS28D3zX9tTIPsF/z7Am5OkTjm1tI1JZW74+4VgsZ0N3L1yXV3WeP5uR7TGHHdvC3JQlxybfpd22tDlk/2eofRK8TzrN/qnar/K/OUTth6I/+jAnEptNbPvFHP2gs40N3+dfMWtwqvVct7/wfd8gtQ7imifial9ZJ9/3IHLYU6eDj3+4PhsNhX+vwvcWLnu6kGfEMe8DuciPfUfGZB8X/7HJy/Gefe5n+VRGFd/wyP2ta7/LO4yh/sbLV/k9lev6kfO9Dt/5U67b1/6u/epqB1U9Me23jfHY9sscAg4tkbLl+e4/U36rJ9ddxfd6sg5vq5ice42Wpk/pb9FOJ36/W9tpv4kbC79nUbZceX8Zu6/qJ+P3WvhvA8v3reh7Jbn2d6rrNC7XNZTLma4Ba0JI9efX2uLzF5scG/w9UNU1ZxW+ymUfzELeTllXlQ1rUuhzjS5fp9c964iFBOqeSz63bU065nZKdU+mDEz3qHIjjifquw0pnb/raRtvrnsYcb46ihT3taoYz6brdNW9l6rWRnE/navdPn1XlR1km7hcz1WlH/elKuSOSvLLuE8U6m8uzwRdfcGl73VyTHuyMvzJ1Sa2cWDTP/Z63Kc94n2B1PYr24dz1JlyHLlcP+S4B6vD1c9EW4q2LWstCvUjeVy63k/LMYdUNd5D1xQfvVTzX1VjkMsUv88N8VH5fReVn/Fjn++/h6X6Q8a6b1/q3g/i/ewi0/Scs8zxXeV6mWIOUPlPzBgdFerW+bZrm2P18dnjuK6HunEp+rHvPMXbr+sHVb/lnL+pTP57jPw9Cvk3PW178JD9qChfzuvTf7Htl38L1QUf/VKu9SFjwWbTWPvFEvu7Uq76y7+31g6QlYPc669pbsm9Xur2LWI9Pu8ypfDXqm3A2z8s1FWGn4ntL9NfQu2oSlftX9uetvTtv7J8Ql4zxfXGZ3zk8PeQ9w59x2uMfqI8/q5eKh/l9cb2rwsu9rSNl06ZP2Pmxtz+rNMx93yno0n2/82rVH7rQ+y9P15H6FyRun9ViH81ATmffI7nJ5r8uXXW6enbP6b/B8/l5OifVHYLnb9S39s2zcc+Ph+rh8+eQgVPS72elzGWY/tUtbbabBpDiI7yN1q6/4th2y+ErAc5+9BVvu/7KamJbWNZeuqI/R4tRf+YyD1HmOZM1bMV3/14Sn10c0Xu+Sj1nOXb5jL73ncdy02uvlXZNde65dOHYl7Vs4KYuS6FzWLn2zJlpZqPXPVPOa5yzKOyn1VhT9lmMfdbfH7D11Wf2PXN5h9y+dD287+qxgSnaYmnIrRtIb8pJe6/Uv9OVer6Whn0zfGO/BEloZI9ojmfAlUflClDd178bTmVHVTpZXOkAlk/lb42UujmI89HH5V+cl7XtowY6vTxLVWok6UrGzoGTHN+bB+6ri05687VNpvfuvRfaP2uMlNQth1D5JjGelm/8yn+9p3p/7qk9gnfeddXZmq/Sm333PJT659Kv1zjNbZ9uv2Oi//67CV8/N1nj1DmviyXDNVeJkaeaX8UsyesYg8cu2+NvdaPfb+lLDu5tvt/"); var $557adaaeb0c7885f$var$classTrie = new import_unicode_trie.default($557adaaeb0c7885f$var$data); var $557adaaeb0c7885f$var$mapClass = function(c2) { switch (c2) { case $1627905f8be2ef3f$export$d710c5f50fc7496a: return $1627905f8be2ef3f$export$1bb1140fe1358b00; case $1627905f8be2ef3f$export$da51c6332ad11d7b: case $1627905f8be2ef3f$export$bea437c40441867d: case $1627905f8be2ef3f$export$98e1f8a379849661: return $1627905f8be2ef3f$export$1bb1140fe1358b00; case $1627905f8be2ef3f$export$eb6c6d0b7c8826f2: return $1627905f8be2ef3f$export$fb4028874a74450; default: return c2; } }; var $557adaaeb0c7885f$var$mapFirst = function(c2) { switch (c2) { case $1627905f8be2ef3f$export$606cfc2a8896c91f: case $1627905f8be2ef3f$export$e51d3c675bb0140d: return $1627905f8be2ef3f$export$66498d28055820a9; case $1627905f8be2ef3f$export$c4c7eecbfed13dc9: return $1627905f8be2ef3f$export$9e5d732f3676a9ba; default: return c2; } }; var $557adaaeb0c7885f$var$Break = class { constructor(position, required = false) { this.position = position; this.required = required; } }; var $557adaaeb0c7885f$var$LineBreaker = class { nextCodePoint() { const code = this.string.charCodeAt(this.pos++); const next = this.string.charCodeAt(this.pos); if (55296 <= code && code <= 56319 && 56320 <= next && next <= 57343) { this.pos++; return (code - 55296) * 1024 + (next - 56320) + 65536; } return code; } nextCharClass() { return $557adaaeb0c7885f$var$mapClass($557adaaeb0c7885f$var$classTrie.get(this.nextCodePoint())); } getSimpleBreak() { switch (this.nextClass) { case $1627905f8be2ef3f$export$c4c7eecbfed13dc9: return false; case $1627905f8be2ef3f$export$66498d28055820a9: case $1627905f8be2ef3f$export$606cfc2a8896c91f: case $1627905f8be2ef3f$export$e51d3c675bb0140d: this.curClass = $1627905f8be2ef3f$export$66498d28055820a9; return false; case $1627905f8be2ef3f$export$de92be486109a1df: this.curClass = $1627905f8be2ef3f$export$de92be486109a1df; return false; } return null; } getPairTableBreak(lastClass) { let shouldBreak = false; switch ($32627af916ac1b00$export$5bdb8ccbf5c57afc[this.curClass][this.nextClass]) { case $32627af916ac1b00$export$98f50d781a474745: shouldBreak = true; break; case $32627af916ac1b00$export$12ee1f8f5315ca7e: shouldBreak = lastClass === $1627905f8be2ef3f$export$c4c7eecbfed13dc9; break; case $32627af916ac1b00$export$e4965ce242860454: shouldBreak = lastClass === $1627905f8be2ef3f$export$c4c7eecbfed13dc9; if (!shouldBreak) { shouldBreak = false; return shouldBreak; } break; case $32627af916ac1b00$export$8f14048969dcd45e: if (lastClass !== $1627905f8be2ef3f$export$c4c7eecbfed13dc9) return shouldBreak; break; case $32627af916ac1b00$export$133eb141bf58aff4: break; } if (this.LB8a) shouldBreak = false; if (this.LB21a && (this.curClass === $1627905f8be2ef3f$export$24aa617c849a894a || this.curClass === $1627905f8be2ef3f$export$a73c4d14459b698d)) { shouldBreak = false; this.LB21a = false; } else this.LB21a = this.curClass === $1627905f8be2ef3f$export$f3e416a182673355; if (this.curClass === $1627905f8be2ef3f$export$1dff41d5c0caca01) { this.LB30a++; if (this.LB30a == 2 && this.nextClass === $1627905f8be2ef3f$export$1dff41d5c0caca01) { shouldBreak = true; this.LB30a = 0; } } else this.LB30a = 0; this.curClass = this.nextClass; return shouldBreak; } nextBreak() { if (this.curClass == null) { let firstClass = this.nextCharClass(); this.curClass = $557adaaeb0c7885f$var$mapFirst(firstClass); this.nextClass = firstClass; this.LB8a = firstClass === $1627905f8be2ef3f$export$30a74a373318dec6; this.LB30a = 0; } while (this.pos < this.string.length) { this.lastPos = this.pos; const lastClass = this.nextClass; this.nextClass = this.nextCharClass(); if (this.curClass === $1627905f8be2ef3f$export$66498d28055820a9 || this.curClass === $1627905f8be2ef3f$export$de92be486109a1df && this.nextClass !== $1627905f8be2ef3f$export$606cfc2a8896c91f) { this.curClass = $557adaaeb0c7885f$var$mapFirst($557adaaeb0c7885f$var$mapClass(this.nextClass)); return new $557adaaeb0c7885f$var$Break(this.lastPos, true); } let shouldBreak = this.getSimpleBreak(); if (shouldBreak === null) shouldBreak = this.getPairTableBreak(lastClass); this.LB8a = this.nextClass === $1627905f8be2ef3f$export$30a74a373318dec6; if (shouldBreak) return new $557adaaeb0c7885f$var$Break(this.lastPos); } if (this.lastPos < this.string.length) { this.lastPos = this.string.length; return new $557adaaeb0c7885f$var$Break(this.string.length); } return null; } constructor(string) { this.string = string; this.pos = 0; this.lastPos = 0; this.curClass = null; this.nextClass = null; this.LB8a = false; this.LB21a = false; this.LB30a = 0; } }; $557adaaeb0c7885f$exports = $557adaaeb0c7885f$var$LineBreaker; // node_modules/.pnpm/satori@0.15.2/node_modules/satori/dist/index.wasm.js var import_css_to_react_native = __toESM(require_css_to_react_native(), 1); var import_css_background_parser = __toESM(require_css_background_parser(), 1); var import_css_box_shadow = __toESM(require_css_box_shadow(), 1); // node_modules/.pnpm/parse-css-color@0.2.1/node_modules/parse-css-color/dist/index.esm.js var import_color_name = __toESM(require_color_name()); var import_hex_rgb = __toESM(require_hex_rgb()); var pattern = /^#([a-f0-9]{3,4}|[a-f0-9]{4}(?:[a-f0-9]{2}){1,2})\b$/; var hexRe = new RegExp(pattern, "i"); var float = "-?\\d*(?:\\.\\d+)"; var number = `(${float}?)`; var percentage = `(${float}?%)`; var numberOrPercentage = `(${float}?%?)`; var pattern$1 = `^ hsla?\\( \\s*(-?\\d*(?:\\.\\d+)?(?:deg|rad|turn)?)\\s*, \\s*${percentage}\\s*, \\s*${percentage}\\s* (?:,\\s*${numberOrPercentage}\\s*)? \\) $ `.replace(/\n|\s/g, ""); var hsl3Re = new RegExp(pattern$1); var pattern$2 = `^ hsla?\\( \\s*(-?\\d*(?:\\.\\d+)?(?:deg|rad|turn)?)\\s* \\s+${percentage} \\s+${percentage} \\s*(?:\\s*\\/\\s*${numberOrPercentage}\\s*)? \\) $ `.replace(/\n|\s/g, ""); var hsl4Re = new RegExp(pattern$2); var pattern$3 = `^ rgba?\\( \\s*${number}\\s*, \\s*${number}\\s*, \\s*${number}\\s* (?:,\\s*${numberOrPercentage}\\s*)? \\) $ `.replace(/\n|\s/g, ""); var rgb3NumberRe = new RegExp(pattern$3); var pattern$4 = `^ rgba?\\( \\s*${percentage}\\s*, \\s*${percentage}\\s*, \\s*${percentage}\\s* (?:,\\s*${numberOrPercentage}\\s*)? \\) $ `.replace(/\n|\s/g, ""); var rgb3PercentageRe = new RegExp(pattern$4); var pattern$5 = `^ rgba?\\( \\s*${number} \\s+${number} \\s+${number} \\s*(?:\\s*\\/\\s*${numberOrPercentage}\\s*)? \\) $ `.replace(/\n|\s/g, ""); var rgb4NumberRe = new RegExp(pattern$5); var pattern$6 = `^ rgba?\\( \\s*${percentage} \\s+${percentage} \\s+${percentage} \\s*(?:\\s*\\/\\s*${numberOrPercentage}\\s*)? \\) $ `.replace(/\n|\s/g, ""); var rgb4PercentageRe = new RegExp(pattern$6); var pattern$7 = /^transparent$/; var transparentRe = new RegExp(pattern$7, "i"); var clamp = (num, min, max2) => Math.min(Math.max(min, num), max2); var parseRGB = (num) => { let n = num; if (typeof n !== "number") n = n.endsWith("%") ? parseFloat(n) * 255 / 100 : parseFloat(n); return clamp(Math.round(n), 0, 255); }; var parsePercentage = (percentage2) => clamp(parseFloat(percentage2), 0, 100); function parseAlpha(alpha) { let a = alpha; if (typeof a !== "number") a = a.endsWith("%") ? parseFloat(a) / 100 : parseFloat(a); return clamp(a, 0, 1); } function getHEX(hex) { const [r, g3, b, a] = (0, import_hex_rgb.default)(hex, { format: "array" }); return getRGB([null, ...[r, g3, b, a]]); } function getHSL([, h2, s, l2, a = 1]) { let hh = h2; if (hh.endsWith("turn")) { hh = parseFloat(hh) * 360 / 1; } else if (hh.endsWith("rad")) { hh = Math.round(parseFloat(hh) * 180 / Math.PI); } else { hh = parseFloat(hh); } return { type: "hsl", values: [hh, parsePercentage(s), parsePercentage(l2)], alpha: parseAlpha(a === null ? 1 : a) }; } function getRGB([, r, g3, b, a = 1]) { return { type: "rgb", values: [r, g3, b].map(parseRGB), alpha: parseAlpha(a === null ? 1 : a) }; } var parseCSSColor = (str) => { if (typeof str !== "string") return null; const hex = hexRe.exec(str); if (hex) return getHEX(hex[0]); const hsl = hsl4Re.exec(str) || hsl3Re.exec(str); if (hsl) return getHSL(hsl); const rgb = rgb4NumberRe.exec(str) || rgb4PercentageRe.exec(str) || rgb3NumberRe.exec(str) || rgb3PercentageRe.exec(str); if (rgb) return getRGB(rgb); if (transparentRe.exec(str)) return getRGB([null, 0, 0, 0, 0]); const cn = import_color_name.default[str.toLowerCase()]; if (cn) return getRGB([null, cn[0], cn[1], cn[2], 1]); return null; }; var index_esm_default = parseCSSColor; // node_modules/.pnpm/satori@0.15.2/node_modules/satori/dist/index.wasm.js var import_postcss_value_parser = __toESM(require_lib(), 1); var import_css_to_react_native2 = __toESM(require_css_to_react_native(), 1); var import_escape_html = __toESM(require_escape_html(), 1); // node_modules/.pnpm/css-gradient-parser@0.0.16/node_modules/css-gradient-parser/dist/index.js function c(e, o = ",") { let t = [], n = 0, i = 0; o = new RegExp(o); for (let r = 0; r < e.length; r++) e[r] === "(" ? i++ : e[r] === ")" && i--, i === 0 && o.test(e[r]) && (t.push(e.slice(n, r).trim()), n = r + 1); return t.push(e.slice(n).trim()), t; } function g(e) { let o = []; for (let t = 0, n = e.length; t < n; ) { let [i, r] = c(e[t], /\s+/); m(e[t + 1]) ? (o.push({ color: i, offset: l(r), hint: l(e[t + 1]) }), t += 2) : (o.push({ color: i, offset: l(r) }), t++); } return o; } var u = /^(-?\d+\.?\d*)(%|vw|vh|px|em|rem|deg|rad|grad|turn)$/; function m(e) { return u.test(e); } function l(e) { if (!e) return; let [, o, t] = e.trim().match(u) || []; return { value: o, unit: t }; } function P(e) { if (!/^(repeating-)?linear-gradient/.test(e)) throw new SyntaxError(`could not find syntax for this item: ${e}`); let [, o, t] = e.match(/(repeating-)?linear-gradient\((.+)\)/), n = { orientation: { type: "directional", value: "bottom" }, repeating: !!o, stops: [] }, i = c(t), r = x(i[0]); return r && (n.orientation = r, i.shift()), { ...n, stops: g(i) }; } function x(e) { return e.startsWith("to ") ? { type: "directional", value: e.replace("to ", "") } : ["turn", "deg", "grad", "rad"].some((o) => e.endsWith(o)) ? { type: "angular", value: l(e) } : null; } var w = /* @__PURE__ */ new Set(["closest-corner", "closest-side", "farthest-corner", "farthest-side"]); var v = /* @__PURE__ */ new Set(["center", "left", "top", "right", "bottom"]); function d(e) { return w.has(e); } function h(e) { return v.has(e); } function R(e) { let o = Array(2).fill(""); for (let t = 0; t < 2; t++) e[t] ? o[t] = e[t] : o[t] = "center"; return o; } function K(e) { if (!/(repeating-)?radial-gradient/.test(e)) throw new SyntaxError(`could not find syntax for this item: ${e}`); let [, o, t] = e.match(/(repeating-)?radial-gradient\((.+)\)/), n = { shape: "ellipse", repeating: !!o, size: [{ type: "keyword", value: "farthest-corner" }], position: { x: { type: "keyword", value: "center" }, y: { type: "keyword", value: "center" } }, stops: [] }, i = c(t); if (S(i[0])) return { ...n, stops: g(i) }; let r = i[0].split("at").map((f) => f.trim()), p = ((r[0] || "").match(/(circle|ellipse)/) || [])[1], a = (r[0] || "").match(/(-?\d+\.?\d*(vw|vh|px|em|rem|%|rad|grad|turn|deg)?|closest-corner|closest-side|farthest-corner|farthest-side)/g) || [], s = R((r[1] || "").split(" ")); return p ? n.shape = p : a.length === 1 && !d(a[0]) ? n.shape = "circle" : n.shape = "ellipse", a.length === 0 && a.push("farthest-corner"), n.size = a.map((f) => d(f) ? { type: "keyword", value: f } : { type: "length", value: l(f) }), n.position.x = h(s[0]) ? { type: "keyword", value: s[0] } : { type: "length", value: l(s[0]) }, n.position.y = h(s[1]) ? { type: "keyword", value: s[1] } : { type: "length", value: l(s[1]) }, (p || a.length > 0 || r[1]) && i.shift(), { ...n, stops: g(i) }; } function S(e) { return /(circle|ellipse|at)/.test(e) ? false : /^(rgba?|hwb|hsl|lab|lch|oklab|color|#|[a-zA-Z]+)/.test(e); } // node_modules/.pnpm/satori@0.15.2/node_modules/satori/dist/index.wasm.js var import_css_to_react_native3 = __toESM(require_css_to_react_native(), 1); // node_modules/.pnpm/@shuding+opentype.js@1.4.0-beta.0/node_modules/@shuding/opentype.js/dist/opentype.module.js var u8 = Uint8Array; var u16 = Uint16Array; var u32 = Uint32Array; var fleb = new u8([ 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, /* unused */ 0, 0, /* impossible */ 0 ]); var fdeb = new u8([ 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, /* unused */ 0, 0 ]); var clim = new u8([16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15]); var freb = function(eb, start) { var b = new u16(31); for (var i = 0; i < 31; ++i) { b[i] = start += 1 << eb[i - 1]; } var r = new u32(b[30]); for (var i = 1; i < 30; ++i) { for (var j = b[i]; j < b[i + 1]; ++j) { r[j] = j - b[i] << 5 | i; } } return [b, r]; }; var _a = freb(fleb, 2); var fl = _a[0]; var revfl = _a[1]; fl[28] = 258, revfl[258] = 28; var _b = freb(fdeb, 0); var fd = _b[0]; var rev = new u16(32768); for (i = 0; i < 32768; ++i) { x2 = (i & 43690) >>> 1 | (i & 21845) << 1; x2 = (x2 & 52428) >>> 2 | (x2 & 13107) << 2; x2 = (x2 & 61680) >>> 4 | (x2 & 3855) << 4; rev[i] = ((x2 & 65280) >>> 8 | (x2 & 255) << 8) >>> 1; } var x2; var i; var hMap = function(cd, mb, r) { var s = cd.length; var i = 0; var l2 = new u16(mb); for (; i < s; ++i) { if (cd[i]) { ++l2[cd[i] - 1]; } } var le = new u16(mb); for (i = 0; i < mb; ++i) { le[i] = le[i - 1] + l2[i - 1] << 1; } var co; if (r) { co = new u16(1 << mb); var rvb = 15 - mb; for (i = 0; i < s; ++i) { if (cd[i]) { var sv = i << 4 | cd[i]; var r_1 = mb - cd[i]; var v2 = le[cd[i] - 1]++ << r_1; for (var m2 = v2 | (1 << r_1) - 1; v2 <= m2; ++v2) { co[rev[v2] >>> rvb] = sv; } } } } else { co = new u16(s); for (i = 0; i < s; ++i) { if (cd[i]) { co[i] = rev[le[cd[i] - 1]++] >>> 15 - cd[i]; } } } return co; }; var flt = new u8(288); for (i = 0; i < 144; ++i) { flt[i] = 8; } var i; for (i = 144; i < 256; ++i) { flt[i] = 9; } var i; for (i = 256; i < 280; ++i) { flt[i] = 7; } var i; for (i = 280; i < 288; ++i) { flt[i] = 8; } var i; var fdt = new u8(32); for (i = 0; i < 32; ++i) { fdt[i] = 5; } var i; var flrm = /* @__PURE__ */ hMap(flt, 9, 1); var fdrm = /* @__PURE__ */ hMap(fdt, 5, 1); var max = function(a) { var m2 = a[0]; for (var i = 1; i < a.length; ++i) { if (a[i] > m2) { m2 = a[i]; } } return m2; }; var bits = function(d2, p, m2) { var o = p / 8 | 0; return (d2[o] | d2[o + 1] << 8) >> (p & 7) & m2; }; var bits16 = function(d2, p) { var o = p / 8 | 0; return (d2[o] | d2[o + 1] << 8 | d2[o + 2] << 16) >> (p & 7); }; var shft = function(p) { return (p + 7) / 8 | 0; }; var slc = function(v2, s, e) { if (s == null || s < 0) { s = 0; } if (e == null || e > v2.length) { e = v2.length; } var n = new (v2.BYTES_PER_ELEMENT == 2 ? u16 : v2.BYTES_PER_ELEMENT == 4 ? u32 : u8)(e - s); n.set(v2.subarray(s, e)); return n; }; var ec = [ "unexpected EOF", "invalid block type", "invalid length/literal", "invalid distance", "stream finished", "no stream handler", , "no callback", "invalid UTF-8 data", "extra field too long", "date not in range 1980-2099", "filename too long", "stream finishing", "invalid zip data" // determined by unknown compression method ]; var err = function(ind, msg, nt) { var e = new Error(msg || ec[ind]); e.code = ind; if (Error.captureStackTrace) { Error.captureStackTrace(e, err); } if (!nt) { throw e; } return e; }; var inflt = function(dat, buf, st) { var sl2 = dat.length; if (!sl2 || st && st.f && !st.l) { return buf || new u8(0); } var noBuf = !buf || st; var noSt = !st || st.i; if (!st) { st = {}; } if (!buf) { buf = new u8(sl2 * 3); } var cbuf = function(l3) { var bl2 = buf.length; if (l3 > bl2) { var nbuf = new u8(Math.max(bl2 * 2, l3)); nbuf.set(buf); buf = nbuf; } }; var final = st.f || 0, pos = st.p || 0, bt2 = st.b || 0, lm = st.l, dm = st.d, lbt = st.m, dbt = st.n; var tbts = sl2 * 8; do { if (!lm) { final = bits(dat, pos, 1); var type = bits(dat, pos + 1, 3); pos += 3; if (!type) { var s = shft(pos) + 4, l2 = dat[s - 4] | dat[s - 3] << 8, t = s + l2; if (t > sl2) { if (noSt) { err(0); } break; } if (noBuf) { cbuf(bt2 + l2); } buf.set(dat.subarray(s, t), bt2); st.b = bt2 += l2, st.p = pos = t * 8, st.f = final; continue; } else if (type == 1) { lm = flrm, dm = fdrm, lbt = 9, dbt = 5; } else if (type == 2) { var hLit = bits(dat, pos, 31) + 257, hcLen = bits(dat, pos + 10, 15) + 4; var tl2 = hLit + bits(dat, pos + 5, 31) + 1; pos += 14; var ldt = new u8(tl2); var clt = new u8(19); for (var i = 0; i < hcLen; ++i) { clt[clim[i]] = bits(dat, pos + i * 3, 7); } pos += hcLen * 3; var clb = max(clt), clbmsk = (1 << clb) - 1; var clm = hMap(clt, clb, 1); for (var i = 0; i < tl2; ) { var r = clm[bits(dat, pos, clbmsk)]; pos += r & 15; var s = r >>> 4; if (s < 16) { ldt[i++] = s; } else { var c2 = 0, n = 0; if (s == 16) { n = 3 + bits(dat, pos, 3), pos += 2, c2 = ldt[i - 1]; } else if (s == 17) { n = 3 + bits(dat, pos, 7), pos += 3; } else if (s == 18) { n = 11 + bits(dat, pos, 127), pos += 7; } while (n--) { ldt[i++] = c2; } } } var lt = ldt.subarray(0, hLit), dt = ldt.subarray(hLit); lbt = max(lt); dbt = max(dt); lm = hMap(lt, lbt, 1); dm = hMap(dt, dbt, 1); } else { err(1); } if (pos > tbts) { if (noSt) { err(0); } break; } } if (noBuf) { cbuf(bt2 + 131072); } var lms = (1 << lbt) - 1, dms = (1 << dbt) - 1; var lpos = pos; for (; ; lpos = pos) { var c2 = lm[bits16(dat, pos) & lms], sym = c2 >>> 4; pos += c2 & 15; if (pos > tbts) { if (noSt) { err(0); } break; } if (!c2) { err(2); } if (sym < 256) { buf[bt2++] = sym; } else if (sym == 256) { lpos = pos, lm = null; break; } else { var add = sym - 254; if (sym > 264) { var i = sym - 257, b = fleb[i]; add = bits(dat, pos, (1 << b) - 1) + fl[i]; pos += b; } var d2 = dm[bits16(dat, pos) & dms], dsym = d2 >>> 4; if (!d2) { err(3); } pos += d2 & 15; var dt = fd[dsym]; if (dsym > 3) { var b = fdeb[dsym]; dt += bits16(dat, pos) & (1 << b) - 1, pos += b; } if (pos > tbts) { if (noSt) { err(0); } break; } if (noBuf) { cbuf(bt2 + 131072); } var end = bt2 + add; for (; bt2 < end; bt2 += 4) { buf[bt2] = buf[bt2 - dt]; buf[bt2 + 1] = buf[bt2 + 1 - dt]; buf[bt2 + 2] = buf[bt2 + 2 - dt]; buf[bt2 + 3] = buf[bt2 + 3 - dt]; } bt2 = end; } } st.l = lm, st.p = lpos, st.b = bt2, st.f = final; if (lm) { final = 1, st.m = lbt, st.d = dm, st.n = dbt; } } while (!final); return bt2 == buf.length ? buf : slc(buf, 0, bt2); }; var et = /* @__PURE__ */ new u8(0); function inflateSync(data, out) { return inflt(data, out); } var td = typeof TextDecoder != "undefined" && /* @__PURE__ */ new TextDecoder(); var tds = 0; try { td.decode(et, { stream: true }); tds = 1; } catch (e) { } function Path() { this.commands = []; this.fill = "black"; this.stroke = null; this.strokeWidth = 1; } Path.prototype.moveTo = function(x2, y) { this.commands.push({ type: "M", x: x2, y }); }; Path.prototype.lineTo = function(x2, y) { this.commands.push({ type: "L", x: x2, y }); }; Path.prototype.curveTo = Path.prototype.bezierCurveTo = function(x1, y1, x2, y2, x3, y) { this.commands.push({ type: "C", x1, y1, x2, y2, x: x3, y }); }; Path.prototype.quadTo = Path.prototype.quadraticCurveTo = function(x1, y1, x2, y) { this.commands.push({ type: "Q", x1, y1, x: x2, y }); }; Path.prototype.close = Path.prototype.closePath = function() { this.commands.push({ type: "Z" }); }; Path.prototype.extend = function(pathOrCommands) { if (pathOrCommands.commands) { pathOrCommands = pathOrCommands.commands; } Array.prototype.push.apply(this.commands, pathOrCommands); }; Path.prototype.toPathData = function(decimalPlaces) { decimalPlaces = decimalPlaces !== void 0 ? decimalPlaces : 2; function floatToString(v2) { if (Math.round(v2) === v2) { return "" + Math.round(v2); } else { return v2.toFixed(decimalPlaces); } } function packValues() { var arguments$1 = arguments; var s = ""; for (var i2 = 0; i2 < arguments.length; i2 += 1) { var v2 = arguments$1[i2]; if (v2 >= 0 && i2 > 0) { s += " "; } s += floatToString(v2); } return s; } var d2 = ""; for (var i = 0; i < this.commands.length; i += 1) { var cmd = this.commands[i]; if (cmd.type === "M") { d2 += "M" + packValues(cmd.x, cmd.y); } else if (cmd.type === "L") { d2 += "L" + packValues(cmd.x, cmd.y); } else if (cmd.type === "C") { d2 += "C" + packValues(cmd.x1, cmd.y1, cmd.x2, cmd.y2, cmd.x, cmd.y); } else if (cmd.type === "Q") { d2 += "Q" + packValues(cmd.x1, cmd.y1, cmd.x, cmd.y); } else if (cmd.type === "Z") { d2 += "Z"; } } return d2; }; var cffStandardStrings = [ ".notdef", "space", "exclam", "quotedbl", "numbersign", "dollar", "percent", "ampersand", "quoteright", "parenleft", "parenright", "asterisk", "plus", "comma", "hyphen", "period", "slash", "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "colon", "semicolon", "less", "equal", "greater", "question", "at", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "bracketleft", "backslash", "bracketright", "asciicircum", "underscore", "quoteleft", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "braceleft", "bar", "braceright", "asciitilde", "exclamdown", "cent", "sterling", "fraction", "yen", "florin", "section", "currency", "quotesingle", "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi", "fl", "endash", "dagger", "daggerdbl", "periodcentered", "paragraph", "bullet", "quotesinglbase", "quotedblbase", "quotedblright", "guillemotright", "ellipsis", "perthousand", "questiondown", "grave", "acute", "circumflex", "tilde", "macron", "breve", "dotaccent", "dieresis", "ring", "cedilla", "hungarumlaut", "ogonek", "caron", "emdash", "AE", "ordfeminine", "Lslash", "Oslash", "OE", "ordmasculine", "ae", "dotlessi", "lslash", "oslash", "oe", "germandbls", "onesuperior", "logicalnot", "mu", "trademark", "Eth", "onehalf", "plusminus", "Thorn", "onequarter", "divide", "brokenbar", "degree", "thorn", "threequarters", "twosuperior", "registered", "minus", "eth", "multiply", "threesuperior", "copyright", "Aacute", "Acircumflex", "Adieresis", "Agrave", "Aring", "Atilde", "Ccedilla", "Eacute", "Ecircumflex", "Edieresis", "Egrave", "Iacute", "Icircumflex", "Idieresis", "Igrave", "Ntilde", "Oacute", "Ocircumflex", "Odieresis", "Ograve", "Otilde", "Scaron", "Uacute", "Ucircumflex", "Udieresis", "Ugrave", "Yacute", "Ydieresis", "Zcaron", "aacute", "acircumflex", "adieresis", "agrave", "aring", "atilde", "ccedilla", "eacute", "ecircumflex", "edieresis", "egrave", "iacute", "icircumflex", "idieresis", "igrave", "ntilde", "oacute", "ocircumflex", "odieresis", "ograve", "otilde", "scaron", "uacute", "ucircumflex", "udieresis", "ugrave", "yacute", "ydieresis", "zcaron", "exclamsmall", "Hungarumlautsmall", "dollaroldstyle", "dollarsuperior", "ampersandsmall", "Acutesmall", "parenleftsuperior", "parenrightsuperior", "266 ff", "onedotenleader", "zerooldstyle", "oneoldstyle", "twooldstyle", "threeoldstyle", "fouroldstyle", "fiveoldstyle", "sixoldstyle", "sevenoldstyle", "eightoldstyle", "nineoldstyle", "commasuperior", "threequartersemdash", "periodsuperior", "questionsmall", "asuperior", "bsuperior", "centsuperior", "dsuperior", "esuperior", "isuperior", "lsuperior", "msuperior", "nsuperior", "osuperior", "rsuperior", "ssuperior", "tsuperior", "ff", "ffi", "ffl", "parenleftinferior", "parenrightinferior", "Circumflexsmall", "hyphensuperior", "Gravesmall", "Asmall", "Bsmall", "Csmall", "Dsmall", "Esmall", "Fsmall", "Gsmall", "Hsmall", "Ismall", "Jsmall", "Ksmall", "Lsmall", "Msmall", "Nsmall", "Osmall", "Psmall", "Qsmall", "Rsmall", "Ssmall", "Tsmall", "Usmall", "Vsmall", "Wsmall", "Xsmall", "Ysmall", "Zsmall", "colonmonetary", "onefitted", "rupiah", "Tildesmall", "exclamdownsmall", "centoldstyle", "Lslashsmall", "Scaronsmall", "Zcaronsmall", "Dieresissmall", "Brevesmall", "Caronsmall", "Dotaccentsmall", "Macronsmall", "figuredash", "hypheninferior", "Ogoneksmall", "Ringsmall", "Cedillasmall", "questiondownsmall", "oneeighth", "threeeighths", "fiveeighths", "seveneighths", "onethird", "twothirds", "zerosuperior", "foursuperior", "fivesuperior", "sixsuperior", "sevensuperior", "eightsuperior", "ninesuperior", "zeroinferior", "oneinferior", "twoinferior", "threeinferior", "fourinferior", "fiveinferior", "sixinferior", "seveninferior", "eightinferior", "nineinferior", "centinferior", "dollarinferior", "periodinferior", "commainferior", "Agravesmall", "Aacutesmall", "Acircumflexsmall", "Atildesmall", "Adieresissmall", "Aringsmall", "AEsmall", "Ccedillasmall", "Egravesmall", "Eacutesmall", "Ecircumflexsmall", "Edieresissmall", "Igravesmall", "Iacutesmall", "Icircumflexsmall", "Idieresissmall", "Ethsmall", "Ntildesmall", "Ogravesmall", "Oacutesmall", "Ocircumflexsmall", "Otildesmall", "Odieresissmall", "OEsmall", "Oslashsmall", "Ugravesmall", "Uacutesmall", "Ucircumflexsmall", "Udieresissmall", "Yacutesmall", "Thornsmall", "Ydieresissmall", "001.000", "001.001", "001.002", "001.003", "Black", "Bold", "Book", "Light", "Medium", "Regular", "Roman", "Semibold" ]; var cffStandardEncoding = [ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "space", "exclam", "quotedbl", "numbersign", "dollar", "percent", "ampersand", "quoteright", "parenleft", "parenright", "asterisk", "plus", "comma", "hyphen", "period", "slash", "zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "colon", "semicolon", "less", "equal", "greater", "question", "at", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "bracketleft", "backslash", "bracketright", "asciicircum", "underscore", "quoteleft", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "braceleft", "bar", "braceright", "asciitilde", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "exclamdown", "cent", "sterling", "fraction", "yen", "florin", "section", "currency", "quotesingle", "quotedblleft", "guillemotleft", "guilsinglleft", "guilsinglright", "fi", "fl", "", "endash", "dagger", "daggerdbl", "periodcentered", "", "paragraph", "bullet", "quotesinglbase", "quotedblbase", "quotedblright", "guillemotright", "ellipsis", "perthousand", "", "questiondown", "", "grave", "acute", "circumflex", "tilde", "macron", "breve", "dotaccent", "dieresis", "", "ring", "cedilla", "", "hungarumlaut", "ogonek", "caron", "emdash", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "AE", "", "ordfeminine", "", "", "", "", "Lslash", "Oslash", "OE", "ordmasculine", "", "", "", "", "", "ae", "", "", "", "dotlessi", "", "", "lslash", "oslash", "oe", "germandbls" ]; var cffExpertEncoding = [ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "space", "exclamsmall", "Hungarumlautsmall", "", "dollaroldstyle", "dollarsuperior", "ampersandsmall", "Acutesmall", "parenleftsuperior", "parenrightsuperior", "twodotenleader", "onedotenleader", "comma", "hyphen", "period", "fraction", "zerooldstyle", "oneoldstyle", "twooldstyle", "threeoldstyle", "fouroldstyle", "fiveoldstyle", "sixoldstyle", "sevenoldstyle", "eightoldstyle", "nineoldstyle", "colon", "semicolon", "commasuperior", "threequartersemdash", "periodsuperior", "questionsmall", "", "asuperior", "bsuperior", "centsuperior", "dsuperior", "esuperior", "", "", "isuperior", "", "", "lsuperior", "msuperior", "nsuperior", "osuperior", "", "", "rsuperior", "ssuperior", "tsuperior", "", "ff", "fi", "fl", "ffi", "ffl", "parenleftinferior", "", "parenrightinferior", "Circumflexsmall", "hyphensuperior", "Gravesmall", "Asmall", "Bsmall", "Csmall", "Dsmall", "Esmall", "Fsmall", "Gsmall", "Hsmall", "Ismall", "Jsmall", "Ksmall", "Lsmall", "Msmall", "Nsmall", "Osmall", "Psmall", "Qsmall", "Rsmall", "Ssmall", "Tsmall", "Usmall", "Vsmall", "Wsmall", "Xsmall", "Ysmall", "Zsmall", "colonmonetary", "onefitted", "rupiah", "Tildesmall", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "exclamdownsmall", "centoldstyle", "Lslashsmall", "", "", "Scaronsmall", "Zcaronsmall", "Dieresissmall", "Brevesmall", "Caronsmall", "", "Dotaccentsmall", "", "", "Macronsmall", "", "", "figuredash", "hypheninferior", "", "", "Ogoneksmall", "Ringsmall", "Cedillasmall", "", "", "", "onequarter", "onehalf", "threequarters", "questiondownsmall", "oneeighth", "threeeighths", "fiveeighths", "seveneighths", "onethird", "twothirds", "", "", "zerosuperior", "onesuperior", "twosuperior", "threesuperior", "foursuperior", "fivesuperior", "sixsuperior", "sevensuperior", "eightsuperior", "ninesuperior", "zeroinferior", "oneinferior", "twoinferior", "threeinferior", "fourinferior", "fiveinferior", "sixinferior", "seveninferior", "eightinferior", "nineinferior", "centinferior", "dollarinferior", "periodinferior", "commainferior", "Agravesmall", "Aacutesmall", "Acircumflexsmall", "Atildesmall", "Adieresissmall", "Aringsmall", "AEsmall", "Ccedillasmall", "Egravesmall", "Eacutesmall", "Ecircumflexsmall", "Edieresissmall", "Igravesmall", "Iacutesmall", "Icircumflexsmall", "Idieresissmall", "Ethsmall", "Ntildesmall", "Ogravesmall", "Oacutesmall", "Ocircumflexsmall", "Otildesmall", "Odieresissmall", "OEsmall", "Oslashsmall", "Ugravesmall", "Uacutesmall", "Ucircumflexsmall", "Udieresissmall", "Yacutesmall", "Thornsmall", "Ydieresissmall" ]; function DefaultEncoding(font) { this.font = font; } DefaultEncoding.prototype.charToGlyphIndex = function(c2) { var code = c2.codePointAt(0); var glyphs = this.font.glyphs; if (glyphs) { for (var i = 0; i < glyphs.length; i += 1) { var glyph = glyphs.get(i); for (var j = 0; j < glyph.unicodes.length; j += 1) { if (glyph.unicodes[j] === code) { return i; } } } } return null; }; function CmapEncoding(cmap2) { this.cmap = cmap2; } CmapEncoding.prototype.charToGlyphIndex = function(c2) { return this.cmap.glyphIndexMap[c2.codePointAt(0)] || 0; }; function CffEncoding(encoding, charset) { this.encoding = encoding; this.charset = charset; } CffEncoding.prototype.charToGlyphIndex = function(s) { var code = s.codePointAt(0); var charName = this.encoding[code]; return this.charset.indexOf(charName); }; function addGlyphNamesAll(font) { var glyph; var glyphIndexMap = font.tables.cmap.glyphIndexMap; var charCodes = Object.keys(glyphIndexMap); for (var i = 0; i < charCodes.length; i += 1) { var c2 = charCodes[i]; var glyphIndex = glyphIndexMap[c2]; glyph = font.glyphs.get(glyphIndex); glyph.addUnicode(parseInt(c2)); } } function addGlyphNamesToUnicodeMap(font) { font._IndexToUnicodeMap = {}; var glyphIndexMap = font.tables.cmap.glyphIndexMap; var charCodes = Object.keys(glyphIndexMap); for (var i = 0; i < charCodes.length; i += 1) { var c2 = charCodes[i]; var glyphIndex = glyphIndexMap[c2]; if (font._IndexToUnicodeMap[glyphIndex] === void 0) { font._IndexToUnicodeMap[glyphIndex] = { unicodes: [parseInt(c2)] }; } else { font._IndexToUnicodeMap[glyphIndex].unicodes.push(parseInt(c2)); } } } function addGlyphNames(font, opt) { if (opt.lowMemory) { addGlyphNamesToUnicodeMap(font); } else { addGlyphNamesAll(font); } } function fail(message) { throw new Error(message); } function argument(predicate, message) { if (!predicate) { fail(message); } } var check = { fail, argument, assert: argument }; function getPathDefinition(glyph, path) { var _path = path || new Path(); return { configurable: true, get: function() { if (typeof _path === "function") { _path = _path(); } return _path; }, set: function(p) { _path = p; } }; } function Glyph(options) { this.bindConstructorValues(options); } Glyph.prototype.bindConstructorValues = function(options) { this.index = options.index || 0; this.name = options.name || null; this.unicode = options.unicode || void 0; this.unicodes = options.unicodes || options.unicode !== void 0 ? [options.unicode] : []; if ("xMin" in options) { this.xMin = options.xMin; } if ("yMin" in options) { this.yMin = options.yMin; } if ("xMax" in options) { this.xMax = options.xMax; } if ("yMax" in options) { this.yMax = options.yMax; } if ("advanceWidth" in options) { this.advanceWidth = options.advanceWidth; } Object.defineProperty(this, "path", getPathDefinition(this, options.path)); }; Glyph.prototype.addUnicode = function(unicode) { if (this.unicodes.length === 0) { this.unicode = unicode; } this.unicodes.push(unicode); }; Glyph.prototype.getPath = function(x2, y, fontSize, options, font) { x2 = x2 !== void 0 ? x2 : 0; y = y !== void 0 ? y : 0; fontSize = fontSize !== void 0 ? fontSize : 72; var commands; var hPoints; if (!options) { options = {}; } var xScale = options.xScale; var yScale = options.yScale; if (options.hinting && font && font.hinting) { hPoints = this.path && font.hinting.exec(this, fontSize); } if (hPoints) { commands = font.hinting.getCommands(hPoints); x2 = Math.round(x2); y = Math.round(y); xScale = yScale = 1; } else { commands = this.path.commands; var scale = 1 / (this.path.unitsPerEm || 1e3) * fontSize; if (xScale === void 0) { xScale = scale; } if (yScale === void 0) { yScale = scale; } } var p = new Path(); for (var i = 0; i < commands.length; i += 1) { var cmd = commands[i]; if (cmd.type === "M") { p.moveTo(x2 + cmd.x * xScale, y + -cmd.y * yScale); } else if (cmd.type === "L") { p.lineTo(x2 + cmd.x * xScale, y + -cmd.y * yScale); } else if (cmd.type === "Q") { p.quadraticCurveTo( x2 + cmd.x1 * xScale, y + -cmd.y1 * yScale, x2 + cmd.x * xScale, y + -cmd.y * yScale ); } else if (cmd.type === "C") { p.curveTo( x2 + cmd.x1 * xScale, y + -cmd.y1 * yScale, x2 + cmd.x2 * xScale, y + -cmd.y2 * yScale, x2 + cmd.x * xScale, y + -cmd.y * yScale ); } else if (cmd.type === "Z") { p.closePath(); } } return p; }; Glyph.prototype.getContours = function() { if (this.points === void 0) { return []; } var contours = []; var currentContour = []; for (var i = 0; i < this.points.length; i += 1) { var pt = this.points[i]; currentContour.push(pt); if (pt.lastPointOfContour) { contours.push(currentContour); currentContour = []; } } check.argument( currentContour.length === 0, "There are still points left in the current contour." ); return contours; }; Glyph.prototype.getMetrics = function() { var commands = this.path.commands; var xCoords = []; var yCoords = []; for (var i = 0; i < commands.length; i += 1) { var cmd = commands[i]; if (cmd.type !== "Z") { xCoords.push(cmd.x); yCoords.push(cmd.y); } if (cmd.type === "Q" || cmd.type === "C") { xCoords.push(cmd.x1); yCoords.push(cmd.y1); } if (cmd.type === "C") { xCoords.push(cmd.x2); yCoords.push(cmd.y2); } } var metrics = { xMin: Math.min.apply(null, xCoords), yMin: Math.min.apply(null, yCoords), xMax: Math.max.apply(null, xCoords), yMax: Math.max.apply(null, yCoords), leftSideBearing: this.leftSideBearing }; if (!isFinite(metrics.xMin)) { metrics.xMin = 0; } if (!isFinite(metrics.xMax)) { metrics.xMax = this.advanceWidth; } if (!isFinite(metrics.yMin)) { metrics.yMin = 0; } if (!isFinite(metrics.yMax)) { metrics.yMax = 0; } metrics.rightSideBearing = this.advanceWidth - metrics.leftSideBearing - (metrics.xMax - metrics.xMin); return metrics; }; function defineDependentProperty(glyph, externalName, internalName) { Object.defineProperty(glyph, externalName, { get: function() { glyph.path; return glyph[internalName]; }, set: function(newValue) { glyph[internalName] = newValue; }, enumerable: true, configurable: true }); } function GlyphSet(font, glyphs) { this.font = font; this.glyphs = {}; if (Array.isArray(glyphs)) { for (var i = 0; i < glyphs.length; i++) { var glyph = glyphs[i]; glyph.path.unitsPerEm = font.unitsPerEm; this.glyphs[i] = glyph; } } this.length = glyphs && glyphs.length || 0; } GlyphSet.prototype.get = function(index) { if (this.glyphs[index] === void 0) { this.font._push(index); if (typeof this.glyphs[index] === "function") { this.glyphs[index] = this.glyphs[index](); } var glyph = this.glyphs[index]; var unicodeObj = this.font._IndexToUnicodeMap[index]; if (unicodeObj) { for (var j = 0; j < unicodeObj.unicodes.length; j++) { glyph.addUnicode(unicodeObj.unicodes[j]); } } this.glyphs[index].advanceWidth = this.font._hmtxTableData[index].advanceWidth; this.glyphs[index].leftSideBearing = this.font._hmtxTableData[index].leftSideBearing; } else { if (typeof this.glyphs[index] === "function") { this.glyphs[index] = this.glyphs[index](); } } return this.glyphs[index]; }; GlyphSet.prototype.push = function(index, loader) { this.glyphs[index] = loader; this.length++; }; function glyphLoader(font, index) { return new Glyph({ index, font }); } function ttfGlyphLoader(font, index, parseGlyph2, data, position, buildPath2) { return function() { var glyph = new Glyph({ index, font }); glyph.path = function() { parseGlyph2(glyph, data, position); var path = buildPath2(font.glyphs, glyph); path.unitsPerEm = font.unitsPerEm; return path; }; defineDependentProperty(glyph, "xMin", "_xMin"); defineDependentProperty(glyph, "xMax", "_xMax"); defineDependentProperty(glyph, "yMin", "_yMin"); defineDependentProperty(glyph, "yMax", "_yMax"); return glyph; }; } function cffGlyphLoader(font, index, parseCFFCharstring2, charstring) { return function() { var glyph = new Glyph({ index, font }); glyph.path = function() { var path = parseCFFCharstring2(font, glyph, charstring); path.unitsPerEm = font.unitsPerEm; return path; }; return glyph; }; } var glyphset = { GlyphSet, glyphLoader, ttfGlyphLoader, cffGlyphLoader }; function searchTag(arr, tag) { var imin = 0; var imax = arr.length - 1; while (imin <= imax) { var imid = imin + imax >>> 1; var val = arr[imid].tag; if (val === tag) { return imid; } else if (val < tag) { imin = imid + 1; } else { imax = imid - 1; } } return -imin - 1; } function binSearch(arr, value) { var imin = 0; var imax = arr.length - 1; while (imin <= imax) { var imid = imin + imax >>> 1; var val = arr[imid]; if (val === value) { return imid; } else if (val < value) { imin = imid + 1; } else { imax = imid - 1; } } return -imin - 1; } function searchRange(ranges, value) { var range; var imin = 0; var imax = ranges.length - 1; while (imin <= imax) { var imid = imin + imax >>> 1; range = ranges[imid]; var start = range.start; if (start === value) { return range; } else if (start < value) { imin = imid + 1; } else { imax = imid - 1; } } if (imin > 0) { range = ranges[imin - 1]; if (value > range.end) { return 0; } return range; } } function Layout(font, tableName) { this.font = font; this.tableName = tableName; } Layout.prototype = { /** * Binary search an object by "tag" property * @instance * @function searchTag * @memberof opentype.Layout * @param {Array} arr * @param {string} tag * @return {number} */ searchTag, /** * Binary search in a list of numbers * @instance * @function binSearch * @memberof opentype.Layout * @param {Array} arr * @param {number} value * @return {number} */ binSearch, /** * Get or create the Layout table (GSUB, GPOS etc). * @param {boolean} create - Whether to create a new one. * @return {Object} The GSUB or GPOS table. */ getTable: function(create) { var layout = this.font.tables[this.tableName]; if (!layout && create) { layout = this.font.tables[this.tableName] = this.createDefaultTable(); } return layout; }, /** * Returns the best bet for a script name. * Returns 'DFLT' if it exists. * If not, returns 'latn' if it exists. * If neither exist, returns undefined. */ getDefaultScriptName: function() { var layout = this.getTable(); if (!layout) { return; } var hasLatn = false; for (var i = 0; i < layout.scripts.length; i++) { var name = layout.scripts[i].tag; if (name === "DFLT") { return name; } if (name === "latn") { hasLatn = true; } } if (hasLatn) { return "latn"; } }, /** * Returns all LangSysRecords in the given script. * @instance * @param {string} [script='DFLT'] * @param {boolean} create - forces the creation of this script table if it doesn't exist. * @return {Object} An object with tag and script properties. */ getScriptTable: function(script, create) { var layout = this.getTable(create); if (layout) { script = script || "DFLT"; var scripts = layout.scripts; var pos = searchTag(layout.scripts, script); if (pos >= 0) { return scripts[pos].script; } else if (create) { var scr = { tag: script, script: { defaultLangSys: { reserved: 0, reqFeatureIndex: 65535, featureIndexes: [] }, langSysRecords: [] } }; scripts.splice(-1 - pos, 0, scr); return scr.script; } } }, /** * Returns a language system table * @instance * @param {string} [script='DFLT'] * @param {string} [language='dlft'] * @param {boolean} create - forces the creation of this langSysTable if it doesn't exist. * @return {Object} */ getLangSysTable: function(script, language, create) { var scriptTable = this.getScriptTable(script, create); if (scriptTable) { if (!language || language === "dflt" || language === "DFLT") { return scriptTable.defaultLangSys; } var pos = searchTag(scriptTable.langSysRecords, language); if (pos >= 0) { return scriptTable.langSysRecords[pos].langSys; } else if (create) { var langSysRecord = { tag: language, langSys: { reserved: 0, reqFeatureIndex: 65535, featureIndexes: [] } }; scriptTable.langSysRecords.splice(-1 - pos, 0, langSysRecord); return langSysRecord.langSys; } } }, /** * Get a specific feature table. * @instance * @param {string} [script='DFLT'] * @param {string} [language='dlft'] * @param {string} feature - One of the codes listed at https://www.microsoft.com/typography/OTSPEC/featurelist.htm * @param {boolean} create - forces the creation of the feature table if it doesn't exist. * @return {Object} */ getFeatureTable: function(script, language, feature, create) { var langSysTable2 = this.getLangSysTable(script, language, create); if (langSysTable2) { var featureRecord; var featIndexes = langSysTable2.featureIndexes; var allFeatures = this.font.tables[this.tableName].features; for (var i = 0; i < featIndexes.length; i++) { featureRecord = allFeatures[featIndexes[i]]; if (featureRecord.tag === feature) { return featureRecord.feature; } } if (create) { var index = allFeatures.length; check.assert( index === 0 || feature >= allFeatures[index - 1].tag, "Features must be added in alphabetical order." ); featureRecord = { tag: feature, feature: { params: 0, lookupListIndexes: [] } }; allFeatures.push(featureRecord); featIndexes.push(index); return featureRecord.feature; } } }, /** * Get the lookup tables of a given type for a script/language/feature. * @instance * @param {string} [script='DFLT'] * @param {string} [language='dlft'] * @param {string} feature - 4-letter feature code * @param {number} lookupType - 1 to 9 * @param {boolean} create - forces the creation of the lookup table if it doesn't exist, with no subtables. * @return {Object[]} */ getLookupTables: function(script, language, feature, lookupType, create) { var featureTable = this.getFeatureTable( script, language, feature, create ); var tables = []; if (featureTable) { var lookupTable; var lookupListIndexes = featureTable.lookupListIndexes; var allLookups = this.font.tables[this.tableName].lookups; for (var i = 0; i < lookupListIndexes.length; i++) { lookupTable = allLookups[lookupListIndexes[i]]; if (lookupTable.lookupType === lookupType) { tables.push(lookupTable); } } if (tables.length === 0 && create) { lookupTable = { lookupType, lookupFlag: 0, subtables: [], markFilteringSet: void 0 }; var index = allLookups.length; allLookups.push(lookupTable); lookupListIndexes.push(index); return [lookupTable]; } } return tables; }, /** * Find a glyph in a class definition table * https://docs.microsoft.com/en-us/typography/opentype/spec/chapter2#class-definition-table * @param {object} classDefTable - an OpenType Layout class definition table * @param {number} glyphIndex - the index of the glyph to find * @returns {number} -1 if not found */ getGlyphClass: function(classDefTable, glyphIndex) { switch (classDefTable.format) { case 1: if (classDefTable.startGlyph <= glyphIndex && glyphIndex < classDefTable.startGlyph + classDefTable.classes.length) { return classDefTable.classes[glyphIndex - classDefTable.startGlyph]; } return 0; case 2: var range = searchRange(classDefTable.ranges, glyphIndex); return range ? range.classId : 0; } }, /** * Find a glyph in a coverage table * https://docs.microsoft.com/en-us/typography/opentype/spec/chapter2#coverage-table * @param {object} coverageTable - an OpenType Layout coverage table * @param {number} glyphIndex - the index of the glyph to find * @returns {number} -1 if not found */ getCoverageIndex: function(coverageTable, glyphIndex) { switch (coverageTable.format) { case 1: var index = binSearch(coverageTable.glyphs, glyphIndex); return index >= 0 ? index : -1; case 2: var range = searchRange(coverageTable.ranges, glyphIndex); return range ? range.index + glyphIndex - range.start : -1; } }, /** * Returns the list of glyph indexes of a coverage table. * Format 1: the list is stored raw * Format 2: compact list as range records. * @instance * @param {Object} coverageTable * @return {Array} */ expandCoverage: function(coverageTable) { if (coverageTable.format === 1) { return coverageTable.glyphs; } else { var glyphs = []; var ranges = coverageTable.ranges; for (var i = 0; i < ranges.length; i++) { var range = ranges[i]; var start = range.start; var end = range.end; for (var j = start; j <= end; j++) { glyphs.push(j); } } return glyphs; } } }; function Position(font) { Layout.call(this, font, "gpos"); } Position.prototype = Layout.prototype; Position.prototype.init = function() { var script = this.getDefaultScriptName(); this.defaultKerningTables = this.getKerningTables(script); }; Position.prototype.getKerningValue = function(kerningLookups, leftIndex, rightIndex) { for (var i = 0; i < kerningLookups.length; i++) { var subtables = kerningLookups[i].subtables; for (var j = 0; j < subtables.length; j++) { var subtable = subtables[j]; var covIndex = this.getCoverageIndex(subtable.coverage, leftIndex); if (covIndex < 0) { continue; } switch (subtable.posFormat) { case 1: var pairSet = subtable.pairSets[covIndex]; for (var k = 0; k < pairSet.length; k++) { var pair = pairSet[k]; if (pair.secondGlyph === rightIndex) { return pair.value1 && pair.value1.xAdvance || 0; } } break; case 2: var class1 = this.getGlyphClass(subtable.classDef1, leftIndex); var class2 = this.getGlyphClass(subtable.classDef2, rightIndex); var pair$1 = subtable.classRecords[class1][class2]; return pair$1.value1 && pair$1.value1.xAdvance || 0; } } } return 0; }; Position.prototype.getKerningTables = function(script, language) { if (this.font.tables.gpos) { return this.getLookupTables(script, language, "kern", 2); } }; function Substitution(font) { Layout.call(this, font, "gsub"); } function arraysEqual(ar1, ar2) { var n = ar1.length; if (n !== ar2.length) { return false; } for (var i = 0; i < n; i++) { if (ar1[i] !== ar2[i]) { return false; } } return true; } function getSubstFormat(lookupTable, format, defaultSubtable) { var subtables = lookupTable.subtables; for (var i = 0; i < subtables.length; i++) { var subtable = subtables[i]; if (subtable.substFormat === format) { return subtable; } } if (defaultSubtable) { subtables.push(defaultSubtable); return defaultSubtable; } return void 0; } Substitution.prototype = Layout.prototype; Substitution.prototype.createDefaultTable = function() { return { version: 1, scripts: [ { tag: "DFLT", script: { defaultLangSys: { reserved: 0, reqFeatureIndex: 65535, featureIndexes: [] }, langSysRecords: [] } } ], features: [], lookups: [] }; }; Substitution.prototype.getSingle = function(feature, script, language) { var substitutions = []; var lookupTables = this.getLookupTables(script, language, feature, 1); for (var idx = 0; idx < lookupTables.length; idx++) { var subtables = lookupTables[idx].subtables; for (var i = 0; i < subtables.length; i++) { var subtable = subtables[i]; var glyphs = this.expandCoverage(subtable.coverage); var j = void 0; if (subtable.substFormat === 1) { var delta = subtable.deltaGlyphId; for (j = 0; j < glyphs.length; j++) { var glyph = glyphs[j]; substitutions.push({ sub: glyph, by: glyph + delta }); } } else { var substitute = subtable.substitute; for (j = 0; j < glyphs.length; j++) { substitutions.push({ sub: glyphs[j], by: substitute[j] }); } } } } return substitutions; }; Substitution.prototype.getMultiple = function(feature, script, language) { var substitutions = []; var lookupTables = this.getLookupTables(script, language, feature, 2); for (var idx = 0; idx < lookupTables.length; idx++) { var subtables = lookupTables[idx].subtables; for (var i = 0; i < subtables.length; i++) { var subtable = subtables[i]; var glyphs = this.expandCoverage(subtable.coverage); var j = void 0; for (j = 0; j < glyphs.length; j++) { var glyph = glyphs[j]; var replacements = subtable.sequences[j]; substitutions.push({ sub: glyph, by: replacements }); } } } return substitutions; }; Substitution.prototype.getAlternates = function(feature, script, language) { var alternates = []; var lookupTables = this.getLookupTables(script, language, feature, 3); for (var idx = 0; idx < lookupTables.length; idx++) { var subtables = lookupTables[idx].subtables; for (var i = 0; i < subtables.length; i++) { var subtable = subtables[i]; var glyphs = this.expandCoverage(subtable.coverage); var alternateSets = subtable.alternateSets; for (var j = 0; j < glyphs.length; j++) { alternates.push({ sub: glyphs[j], by: alternateSets[j] }); } } } return alternates; }; Substitution.prototype.getLigatures = function(feature, script, language) { var ligatures = []; var lookupTables = this.getLookupTables(script, language, feature, 4); for (var idx = 0; idx < lookupTables.length; idx++) { var subtables = lookupTables[idx].subtables; for (var i = 0; i < subtables.length; i++) { var subtable = subtables[i]; var glyphs = this.expandCoverage(subtable.coverage); var ligatureSets = subtable.ligatureSets; for (var j = 0; j < glyphs.length; j++) { var startGlyph = glyphs[j]; var ligSet = ligatureSets[j]; for (var k = 0; k < ligSet.length; k++) { var lig = ligSet[k]; ligatures.push({ sub: [startGlyph].concat(lig.components), by: lig.ligGlyph }); } } } } return ligatures; }; Substitution.prototype.addSingle = function(feature, substitution, script, language) { var lookupTable = this.getLookupTables( script, language, feature, 1, true )[0]; var subtable = getSubstFormat(lookupTable, 2, { // lookup type 1 subtable, format 2, coverage format 1 substFormat: 2, coverage: { format: 1, glyphs: [] }, substitute: [] }); check.assert( subtable.coverage.format === 1, "Single: unable to modify coverage table format " + subtable.coverage.format ); var coverageGlyph = substitution.sub; var pos = this.binSearch(subtable.coverage.glyphs, coverageGlyph); if (pos < 0) { pos = -1 - pos; subtable.coverage.glyphs.splice(pos, 0, coverageGlyph); subtable.substitute.splice(pos, 0, 0); } subtable.substitute[pos] = substitution.by; }; Substitution.prototype.addMultiple = function(feature, substitution, script, language) { check.assert( substitution.by instanceof Array && substitution.by.length > 1, 'Multiple: "by" must be an array of two or more ids' ); var lookupTable = this.getLookupTables( script, language, feature, 2, true )[0]; var subtable = getSubstFormat(lookupTable, 1, { // lookup type 2 subtable, format 1, coverage format 1 substFormat: 1, coverage: { format: 1, glyphs: [] }, sequences: [] }); check.assert( subtable.coverage.format === 1, "Multiple: unable to modify coverage table format " + subtable.coverage.format ); var coverageGlyph = substitution.sub; var pos = this.binSearch(subtable.coverage.glyphs, coverageGlyph); if (pos < 0) { pos = -1 - pos; subtable.coverage.glyphs.splice(pos, 0, coverageGlyph); subtable.sequences.splice(pos, 0, 0); } subtable.sequences[pos] = substitution.by; }; Substitution.prototype.addAlternate = function(feature, substitution, script, language) { var lookupTable = this.getLookupTables( script, language, feature, 3, true )[0]; var subtable = getSubstFormat(lookupTable, 1, { // lookup type 3 subtable, format 1, coverage format 1 substFormat: 1, coverage: { format: 1, glyphs: [] }, alternateSets: [] }); check.assert( subtable.coverage.format === 1, "Alternate: unable to modify coverage table format " + subtable.coverage.format ); var coverageGlyph = substitution.sub; var pos = this.binSearch(subtable.coverage.glyphs, coverageGlyph); if (pos < 0) { pos = -1 - pos; subtable.coverage.glyphs.splice(pos, 0, coverageGlyph); subtable.alternateSets.splice(pos, 0, 0); } subtable.alternateSets[pos] = substitution.by; }; Substitution.prototype.addLigature = function(feature, ligature, script, language) { var lookupTable = this.getLookupTables( script, language, feature, 4, true )[0]; var subtable = lookupTable.subtables[0]; if (!subtable) { subtable = { // lookup type 4 subtable, format 1, coverage format 1 substFormat: 1, coverage: { format: 1, glyphs: [] }, ligatureSets: [] }; lookupTable.subtables[0] = subtable; } check.assert( subtable.coverage.format === 1, "Ligature: unable to modify coverage table format " + subtable.coverage.format ); var coverageGlyph = ligature.sub[0]; var ligComponents = ligature.sub.slice(1); var ligatureTable = { ligGlyph: ligature.by, components: ligComponents }; var pos = this.binSearch(subtable.coverage.glyphs, coverageGlyph); if (pos >= 0) { var ligatureSet = subtable.ligatureSets[pos]; for (var i = 0; i < ligatureSet.length; i++) { if (arraysEqual(ligatureSet[i].components, ligComponents)) { return; } } ligatureSet.push(ligatureTable); } else { pos = -1 - pos; subtable.coverage.glyphs.splice(pos, 0, coverageGlyph); subtable.ligatureSets.splice(pos, 0, [ligatureTable]); } }; Substitution.prototype.getFeature = function(feature, script, language) { if (/ss\d\d/.test(feature)) { return this.getSingle(feature, script, language); } switch (feature) { case "aalt": case "salt": return this.getSingle(feature, script, language).concat( this.getAlternates(feature, script, language) ); case "dlig": case "liga": case "rlig": return this.getLigatures(feature, script, language); case "ccmp": return this.getMultiple(feature, script, language).concat( this.getLigatures(feature, script, language) ); case "stch": return this.getMultiple(feature, script, language); } return void 0; }; Substitution.prototype.add = function(feature, sub, script, language) { if (/ss\d\d/.test(feature)) { return this.addSingle(feature, sub, script, language); } switch (feature) { case "aalt": case "salt": if (typeof sub.by === "number") { return this.addSingle(feature, sub, script, language); } return this.addAlternate(feature, sub, script, language); case "dlig": case "liga": case "rlig": return this.addLigature(feature, sub, script, language); case "ccmp": if (sub.by instanceof Array) { return this.addMultiple(feature, sub, script, language); } return this.addLigature(feature, sub, script, language); } return void 0; }; function checkArgument(expression, message) { if (!expression) { throw message; } } function getByte(dataView, offset) { return dataView.getUint8(offset); } function getUShort(dataView, offset) { return dataView.getUint16(offset, false); } function getShort(dataView, offset) { return dataView.getInt16(offset, false); } function getULong(dataView, offset) { return dataView.getUint32(offset, false); } function getFixed(dataView, offset) { var decimal = dataView.getInt16(offset, false); var fraction = dataView.getUint16(offset + 2, false); return decimal + fraction / 65535; } function getTag(dataView, offset) { var tag = ""; for (var i = offset; i < offset + 4; i += 1) { tag += String.fromCharCode(dataView.getInt8(i)); } return tag; } function getOffset(dataView, offset, offSize) { var v2 = 0; for (var i = 0; i < offSize; i += 1) { v2 <<= 8; v2 += dataView.getUint8(offset + i); } return v2; } function getBytes(dataView, startOffset, endOffset) { var bytes = []; for (var i = startOffset; i < endOffset; i += 1) { bytes.push(dataView.getUint8(i)); } return bytes; } function bytesToString(bytes) { var s = ""; for (var i = 0; i < bytes.length; i += 1) { s += String.fromCharCode(bytes[i]); } return s; } var typeOffsets = { byte: 1, uShort: 2, short: 2, uLong: 4, fixed: 4, longDateTime: 8, tag: 4 }; function Parser(data, offset) { this.data = data; this.offset = offset; this.relativeOffset = 0; } Parser.prototype.parseByte = function() { var v2 = this.data.getUint8(this.offset + this.relativeOffset); this.relativeOffset += 1; return v2; }; Parser.prototype.parseChar = function() { var v2 = this.data.getInt8(this.offset + this.relativeOffset); this.relativeOffset += 1; return v2; }; Parser.prototype.parseCard8 = Parser.prototype.parseByte; Parser.prototype.parseUShort = function() { var v2 = this.data.getUint16(this.offset + this.relativeOffset); this.relativeOffset += 2; return v2; }; Parser.prototype.parseCard16 = Parser.prototype.parseUShort; Parser.prototype.parseSID = Parser.prototype.parseUShort; Parser.prototype.parseOffset16 = Parser.prototype.parseUShort; Parser.prototype.parseShort = function() { var v2 = this.data.getInt16(this.offset + this.relativeOffset); this.relativeOffset += 2; return v2; }; Parser.prototype.parseF2Dot14 = function() { var v2 = this.data.getInt16(this.offset + this.relativeOffset) / 16384; this.relativeOffset += 2; return v2; }; Parser.prototype.parseULong = function() { var v2 = getULong(this.data, this.offset + this.relativeOffset); this.relativeOffset += 4; return v2; }; Parser.prototype.parseOffset32 = Parser.prototype.parseULong; Parser.prototype.parseFixed = function() { var v2 = getFixed(this.data, this.offset + this.relativeOffset); this.relativeOffset += 4; return v2; }; Parser.prototype.parseString = function(length) { var dataView = this.data; var offset = this.offset + this.relativeOffset; var string = ""; this.relativeOffset += length; for (var i = 0; i < length; i++) { string += String.fromCharCode(dataView.getUint8(offset + i)); } return string; }; Parser.prototype.parseTag = function() { return this.parseString(4); }; Parser.prototype.parseLongDateTime = function() { var v2 = getULong(this.data, this.offset + this.relativeOffset + 4); v2 -= 2082844800; this.relativeOffset += 8; return v2; }; Parser.prototype.parseVersion = function(minorBase) { var major = getUShort(this.data, this.offset + this.relativeOffset); var minor = getUShort(this.data, this.offset + this.relativeOffset + 2); this.relativeOffset += 4; if (minorBase === void 0) { minorBase = 4096; } return major + minor / minorBase / 10; }; Parser.prototype.skip = function(type, amount) { if (amount === void 0) { amount = 1; } this.relativeOffset += typeOffsets[type] * amount; }; Parser.prototype.parseULongList = function(count) { if (count === void 0) { count = this.parseULong(); } var offsets = new Array(count); var dataView = this.data; var offset = this.offset + this.relativeOffset; for (var i = 0; i < count; i++) { offsets[i] = dataView.getUint32(offset); offset += 4; } this.relativeOffset += count * 4; return offsets; }; Parser.prototype.parseOffset16List = Parser.prototype.parseUShortList = function(count) { if (count === void 0) { count = this.parseUShort(); } var offsets = new Array(count); var dataView = this.data; var offset = this.offset + this.relativeOffset; for (var i = 0; i < count; i++) { offsets[i] = dataView.getUint16(offset); offset += 2; } this.relativeOffset += count * 2; return offsets; }; Parser.prototype.parseShortList = function(count) { var list = new Array(count); var dataView = this.data; var offset = this.offset + this.relativeOffset; for (var i = 0; i < count; i++) { list[i] = dataView.getInt16(offset); offset += 2; } this.relativeOffset += count * 2; return list; }; Parser.prototype.parseByteList = function(count) { var list = new Array(count); var dataView = this.data; var offset = this.offset + this.relativeOffset; for (var i = 0; i < count; i++) { list[i] = dataView.getUint8(offset++); } this.relativeOffset += count; return list; }; Parser.prototype.parseList = function(count, itemCallback) { if (!itemCallback) { itemCallback = count; count = this.parseUShort(); } var list = new Array(count); for (var i = 0; i < count; i++) { list[i] = itemCallback.call(this); } return list; }; Parser.prototype.parseList32 = function(count, itemCallback) { if (!itemCallback) { itemCallback = count; count = this.parseULong(); } var list = new Array(count); for (var i = 0; i < count; i++) { list[i] = itemCallback.call(this); } return list; }; Parser.prototype.parseRecordList = function(count, recordDescription) { if (!recordDescription) { recordDescription = count; count = this.parseUShort(); } var records = new Array(count); var fields = Object.keys(recordDescription); for (var i = 0; i < count; i++) { var rec = {}; for (var j = 0; j < fields.length; j++) { var fieldName = fields[j]; var fieldType = recordDescription[fieldName]; rec[fieldName] = fieldType.call(this); } records[i] = rec; } return records; }; Parser.prototype.parseRecordList32 = function(count, recordDescription) { if (!recordDescription) { recordDescription = count; count = this.parseULong(); } var records = new Array(count); var fields = Object.keys(recordDescription); for (var i = 0; i < count; i++) { var rec = {}; for (var j = 0; j < fields.length; j++) { var fieldName = fields[j]; var fieldType = recordDescription[fieldName]; rec[fieldName] = fieldType.call(this); } records[i] = rec; } return records; }; Parser.prototype.parseStruct = function(description) { if (typeof description === "function") { return description.call(this); } else { var fields = Object.keys(description); var struct = {}; for (var j = 0; j < fields.length; j++) { var fieldName = fields[j]; var fieldType = description[fieldName]; struct[fieldName] = fieldType.call(this); } return struct; } }; Parser.prototype.parseValueRecord = function(valueFormat) { if (valueFormat === void 0) { valueFormat = this.parseUShort(); } if (valueFormat === 0) { return; } var valueRecord = {}; if (valueFormat & 1) { valueRecord.xPlacement = this.parseShort(); } if (valueFormat & 2) { valueRecord.yPlacement = this.parseShort(); } if (valueFormat & 4) { valueRecord.xAdvance = this.parseShort(); } if (valueFormat & 8) { valueRecord.yAdvance = this.parseShort(); } if (valueFormat & 16) { valueRecord.xPlaDevice = void 0; this.parseShort(); } if (valueFormat & 32) { valueRecord.yPlaDevice = void 0; this.parseShort(); } if (valueFormat & 64) { valueRecord.xAdvDevice = void 0; this.parseShort(); } if (valueFormat & 128) { valueRecord.yAdvDevice = void 0; this.parseShort(); } return valueRecord; }; Parser.prototype.parseValueRecordList = function() { var valueFormat = this.parseUShort(); var valueCount = this.parseUShort(); var values = new Array(valueCount); for (var i = 0; i < valueCount; i++) { values[i] = this.parseValueRecord(valueFormat); } return values; }; Parser.prototype.parsePointer = function(description) { var structOffset = this.parseOffset16(); if (structOffset > 0) { return new Parser(this.data, this.offset + structOffset).parseStruct(description); } return void 0; }; Parser.prototype.parsePointer32 = function(description) { var structOffset = this.parseOffset32(); if (structOffset > 0) { return new Parser(this.data, this.offset + structOffset).parseStruct(description); } return void 0; }; Parser.prototype.parseListOfLists = function(itemCallback) { var offsets = this.parseOffset16List(); var count = offsets.length; var relativeOffset = this.relativeOffset; var list = new Array(count); for (var i = 0; i < count; i++) { var start = offsets[i]; if (start === 0) { list[i] = void 0; continue; } this.relativeOffset = start; if (itemCallback) { var subOffsets = this.parseOffset16List(); var subList = new Array(subOffsets.length); for (var j = 0; j < subOffsets.length; j++) { this.relativeOffset = start + subOffsets[j]; subList[j] = itemCallback.call(this); } list[i] = subList; } else { list[i] = this.parseUShortList(); } } this.relativeOffset = relativeOffset; return list; }; Parser.prototype.parseCoverage = function() { var startOffset = this.offset + this.relativeOffset; var format = this.parseUShort(); var count = this.parseUShort(); if (format === 1) { return { format: 1, glyphs: this.parseUShortList(count) }; } else if (format === 2) { var ranges = new Array(count); for (var i = 0; i < count; i++) { ranges[i] = { start: this.parseUShort(), end: this.parseUShort(), index: this.parseUShort() }; } return { format: 2, ranges }; } throw new Error("0x" + startOffset.toString(16) + ": Coverage format must be 1 or 2."); }; Parser.prototype.parseClassDef = function() { var startOffset = this.offset + this.relativeOffset; var format = this.parseUShort(); if (format === 1) { return { format: 1, startGlyph: this.parseUShort(), classes: this.parseUShortList() }; } else if (format === 2) { return { format: 2, ranges: this.parseRecordList({ start: Parser.uShort, end: Parser.uShort, classId: Parser.uShort }) }; } throw new Error("0x" + startOffset.toString(16) + ": ClassDef format must be 1 or 2."); }; Parser.list = function(count, itemCallback) { return function() { return this.parseList(count, itemCallback); }; }; Parser.list32 = function(count, itemCallback) { return function() { return this.parseList32(count, itemCallback); }; }; Parser.recordList = function(count, recordDescription) { return function() { return this.parseRecordList(count, recordDescription); }; }; Parser.recordList32 = function(count, recordDescription) { return function() { return this.parseRecordList32(count, recordDescription); }; }; Parser.pointer = function(description) { return function() { return this.parsePointer(description); }; }; Parser.pointer32 = function(description) { return function() { return this.parsePointer32(description); }; }; Parser.tag = Parser.prototype.parseTag; Parser.byte = Parser.prototype.parseByte; Parser.uShort = Parser.offset16 = Parser.prototype.parseUShort; Parser.uShortList = Parser.prototype.parseUShortList; Parser.uLong = Parser.offset32 = Parser.prototype.parseULong; Parser.uLongList = Parser.prototype.parseULongList; Parser.struct = Parser.prototype.parseStruct; Parser.coverage = Parser.prototype.parseCoverage; Parser.classDef = Parser.prototype.parseClassDef; var langSysTable = { reserved: Parser.uShort, reqFeatureIndex: Parser.uShort, featureIndexes: Parser.uShortList }; Parser.prototype.parseScriptList = function() { return this.parsePointer(Parser.recordList({ tag: Parser.tag, script: Parser.pointer({ defaultLangSys: Parser.pointer(langSysTable), langSysRecords: Parser.recordList({ tag: Parser.tag, langSys: Parser.pointer(langSysTable) }) }) })) || []; }; Parser.prototype.parseFeatureList = function() { return this.parsePointer(Parser.recordList({ tag: Parser.tag, feature: Parser.pointer({ featureParams: Parser.offset16, lookupListIndexes: Parser.uShortList }) })) || []; }; Parser.prototype.parseLookupList = function(lookupTableParsers) { return this.parsePointer(Parser.list(Parser.pointer(function() { var lookupType = this.parseUShort(); check.argument(1 <= lookupType && lookupType <= 9, "GPOS/GSUB lookup type " + lookupType + " unknown."); var lookupFlag = this.parseUShort(); var useMarkFilteringSet = lookupFlag & 16; return { lookupType, lookupFlag, subtables: this.parseList(Parser.pointer(lookupTableParsers[lookupType])), markFilteringSet: useMarkFilteringSet ? this.parseUShort() : void 0 }; }))) || []; }; Parser.prototype.parseFeatureVariationsList = function() { return this.parsePointer32(function() { var majorVersion = this.parseUShort(); var minorVersion = this.parseUShort(); check.argument(majorVersion === 1 && minorVersion < 1, "GPOS/GSUB feature variations table unknown."); var featureVariations = this.parseRecordList32({ conditionSetOffset: Parser.offset32, featureTableSubstitutionOffset: Parser.offset32 }); return featureVariations; }) || []; }; var parse = { getByte, getCard8: getByte, getUShort, getCard16: getUShort, getShort, getULong, getFixed, getTag, getOffset, getBytes, bytesToString, Parser }; function parseGlyphCoordinate(p, flag, previousValue, shortVectorBitMask, sameBitMask) { var v2; if ((flag & shortVectorBitMask) > 0) { v2 = p.parseByte(); if ((flag & sameBitMask) === 0) { v2 = -v2; } v2 = previousValue + v2; } else { if ((flag & sameBitMask) > 0) { v2 = previousValue; } else { v2 = previousValue + p.parseShort(); } } return v2; } function parseGlyph(glyph, data, start) { var p = new parse.Parser(data, start); glyph.numberOfContours = p.parseShort(); glyph._xMin = p.parseShort(); glyph._yMin = p.parseShort(); glyph._xMax = p.parseShort(); glyph._yMax = p.parseShort(); var flags; var flag; if (glyph.numberOfContours > 0) { var endPointIndices = glyph.endPointIndices = []; for (var i = 0; i < glyph.numberOfContours; i += 1) { endPointIndices.push(p.parseUShort()); } glyph.instructionLength = p.parseUShort(); glyph.instructions = []; for (var i$1 = 0; i$1 < glyph.instructionLength; i$1 += 1) { glyph.instructions.push(p.parseByte()); } var numberOfCoordinates = endPointIndices[endPointIndices.length - 1] + 1; flags = []; for (var i$2 = 0; i$2 < numberOfCoordinates; i$2 += 1) { flag = p.parseByte(); flags.push(flag); if ((flag & 8) > 0) { var repeatCount = p.parseByte(); for (var j = 0; j < repeatCount; j += 1) { flags.push(flag); i$2 += 1; } } } check.argument(flags.length === numberOfCoordinates, "Bad flags."); if (endPointIndices.length > 0) { var points = []; var point; if (numberOfCoordinates > 0) { for (var i$3 = 0; i$3 < numberOfCoordinates; i$3 += 1) { flag = flags[i$3]; point = {}; point.onCurve = !!(flag & 1); point.lastPointOfContour = endPointIndices.indexOf(i$3) >= 0; points.push(point); } var px = 0; for (var i$4 = 0; i$4 < numberOfCoordinates; i$4 += 1) { flag = flags[i$4]; point = points[i$4]; point.x = parseGlyphCoordinate(p, flag, px, 2, 16); px = point.x; } var py = 0; for (var i$5 = 0; i$5 < numberOfCoordinates; i$5 += 1) { flag = flags[i$5]; point = points[i$5]; point.y = parseGlyphCoordinate(p, flag, py, 4, 32); py = point.y; } } glyph.points = points; } else { glyph.points = []; } } else if (glyph.numberOfContours === 0) { glyph.points = []; } else { glyph.isComposite = true; glyph.points = []; glyph.components = []; var moreComponents = true; while (moreComponents) { flags = p.parseUShort(); var component = { glyphIndex: p.parseUShort(), xScale: 1, scale01: 0, scale10: 0, yScale: 1, dx: 0, dy: 0 }; if ((flags & 1) > 0) { if ((flags & 2) > 0) { component.dx = p.parseShort(); component.dy = p.parseShort(); } else { component.matchedPoints = [p.parseUShort(), p.parseUShort()]; } } else { if ((flags & 2) > 0) { component.dx = p.parseChar(); component.dy = p.parseChar(); } else { component.matchedPoints = [p.parseByte(), p.parseByte()]; } } if ((flags & 8) > 0) { component.xScale = component.yScale = p.parseF2Dot14(); } else if ((flags & 64) > 0) { component.xScale = p.parseF2Dot14(); component.yScale = p.parseF2Dot14(); } else if ((flags & 128) > 0) { component.xScale = p.parseF2Dot14(); component.scale01 = p.parseF2Dot14(); component.scale10 = p.parseF2Dot14(); component.yScale = p.parseF2Dot14(); } glyph.components.push(component); moreComponents = !!(flags & 32); } if (flags & 256) { glyph.instructionLength = p.parseUShort(); glyph.instructions = []; for (var i$6 = 0; i$6 < glyph.instructionLength; i$6 += 1) { glyph.instructions.push(p.parseByte()); } } } } function transformPoints(points, transform) { var newPoints = []; for (var i = 0; i < points.length; i += 1) { var pt = points[i]; var newPt = { x: transform.xScale * pt.x + transform.scale01 * pt.y + transform.dx, y: transform.scale10 * pt.x + transform.yScale * pt.y + transform.dy, onCurve: pt.onCurve, lastPointOfContour: pt.lastPointOfContour }; newPoints.push(newPt); } return newPoints; } function getContours(points) { var contours = []; var currentContour = []; for (var i = 0; i < points.length; i += 1) { var pt = points[i]; currentContour.push(pt); if (pt.lastPointOfContour) { contours.push(currentContour); currentContour = []; } } check.argument(currentContour.length === 0, "There are still points left in the current contour."); return contours; } function getPath(points) { var p = new Path(); if (!points) { return p; } var contours = getContours(points); for (var contourIndex = 0; contourIndex < contours.length; ++contourIndex) { var contour = contours[contourIndex]; var prev = null; var curr = contour[contour.length - 1]; var next = contour[0]; if (curr.onCurve) { p.moveTo(curr.x, curr.y); } else { if (next.onCurve) { p.moveTo(next.x, next.y); } else { var start = { x: (curr.x + next.x) * 0.5, y: (curr.y + next.y) * 0.5 }; p.moveTo(start.x, start.y); } } for (var i = 0; i < contour.length; ++i) { prev = curr; curr = next; next = contour[(i + 1) % contour.length]; if (curr.onCurve) { p.lineTo(curr.x, curr.y); } else { var prev2 = prev; var next2 = next; if (!prev.onCurve) { prev2 = { x: (curr.x + prev.x) * 0.5, y: (curr.y + prev.y) * 0.5 }; } if (!next.onCurve) { next2 = { x: (curr.x + next.x) * 0.5, y: (curr.y + next.y) * 0.5 }; } p.quadraticCurveTo(curr.x, curr.y, next2.x, next2.y); } } p.closePath(); } return p; } function buildPath(glyphs, glyph) { if (glyph.isComposite) { for (var j = 0; j < glyph.components.length; j += 1) { var component = glyph.components[j]; var componentGlyph = glyphs.get(component.glyphIndex); componentGlyph.getPath(); if (componentGlyph.points) { var transformedPoints = void 0; if (component.matchedPoints === void 0) { transformedPoints = transformPoints(componentGlyph.points, component); } else { if (component.matchedPoints[0] > glyph.points.length - 1 || component.matchedPoints[1] > componentGlyph.points.length - 1) { throw Error("Matched points out of range in " + glyph.name); } var firstPt = glyph.points[component.matchedPoints[0]]; var secondPt = componentGlyph.points[component.matchedPoints[1]]; var transform = { xScale: component.xScale, scale01: component.scale01, scale10: component.scale10, yScale: component.yScale, dx: 0, dy: 0 }; secondPt = transformPoints([secondPt], transform)[0]; transform.dx = firstPt.x - secondPt.x; transform.dy = firstPt.y - secondPt.y; transformedPoints = transformPoints(componentGlyph.points, transform); } glyph.points = glyph.points.concat(transformedPoints); } } } return getPath(glyph.points); } function parseGlyfTableAll(data, start, loca2, font) { var glyphs = new glyphset.GlyphSet(font); for (var i = 0; i < loca2.length - 1; i += 1) { var offset = loca2[i]; var nextOffset = loca2[i + 1]; if (offset !== nextOffset) { glyphs.push(i, glyphset.ttfGlyphLoader(font, i, parseGlyph, data, start + offset, buildPath)); } else { glyphs.push(i, glyphset.glyphLoader(font, i)); } } return glyphs; } function parseGlyfTableOnLowMemory(data, start, loca2, font) { var glyphs = new glyphset.GlyphSet(font); font._push = function(i) { var offset = loca2[i]; var nextOffset = loca2[i + 1]; if (offset !== nextOffset) { glyphs.push(i, glyphset.ttfGlyphLoader(font, i, parseGlyph, data, start + offset, buildPath)); } else { glyphs.push(i, glyphset.glyphLoader(font, i)); } }; return glyphs; } function parseGlyfTable(data, start, loca2, font, opt) { if (opt.lowMemory) { return parseGlyfTableOnLowMemory(data, start, loca2, font); } else { return parseGlyfTableAll(data, start, loca2, font); } } var glyf = { getPath, parse: parseGlyfTable }; var instructionTable; var exec; var execGlyph; var execComponent; function Hinting(font) { this.font = font; this.getCommands = function(hPoints) { return glyf.getPath(hPoints).commands; }; this._fpgmState = this._prepState = void 0; this._errorState = 0; } function roundOff(v2) { return v2; } function roundToGrid(v2) { return Math.sign(v2) * Math.round(Math.abs(v2)); } function roundToDoubleGrid(v2) { return Math.sign(v2) * Math.round(Math.abs(v2 * 2)) / 2; } function roundToHalfGrid(v2) { return Math.sign(v2) * (Math.round(Math.abs(v2) + 0.5) - 0.5); } function roundUpToGrid(v2) { return Math.sign(v2) * Math.ceil(Math.abs(v2)); } function roundDownToGrid(v2) { return Math.sign(v2) * Math.floor(Math.abs(v2)); } var roundSuper = function(v2) { var period = this.srPeriod; var phase = this.srPhase; var threshold = this.srThreshold; var sign = 1; if (v2 < 0) { v2 = -v2; sign = -1; } v2 += threshold - phase; v2 = Math.trunc(v2 / period) * period; v2 += phase; if (v2 < 0) { return phase * sign; } return v2 * sign; }; var xUnitVector = { x: 1, y: 0, axis: "x", // Gets the projected distance between two points. // o1/o2 ... if true, respective original position is used. distance: function(p1, p2, o1, o2) { return (o1 ? p1.xo : p1.x) - (o2 ? p2.xo : p2.x); }, // Moves point p so the moved position has the same relative // position to the moved positions of rp1 and rp2 than the // original positions had. // // See APPENDIX on INTERPOLATE at the bottom of this file. interpolate: function(p, rp1, rp2, pv) { var do1; var do2; var doa1; var doa2; var dm1; var dm2; var dt; if (!pv || pv === this) { do1 = p.xo - rp1.xo; do2 = p.xo - rp2.xo; dm1 = rp1.x - rp1.xo; dm2 = rp2.x - rp2.xo; doa1 = Math.abs(do1); doa2 = Math.abs(do2); dt = doa1 + doa2; if (dt === 0) { p.x = p.xo + (dm1 + dm2) / 2; return; } p.x = p.xo + (dm1 * doa2 + dm2 * doa1) / dt; return; } do1 = pv.distance(p, rp1, true, true); do2 = pv.distance(p, rp2, true, true); dm1 = pv.distance(rp1, rp1, false, true); dm2 = pv.distance(rp2, rp2, false, true); doa1 = Math.abs(do1); doa2 = Math.abs(do2); dt = doa1 + doa2; if (dt === 0) { xUnitVector.setRelative(p, p, (dm1 + dm2) / 2, pv, true); return; } xUnitVector.setRelative(p, p, (dm1 * doa2 + dm2 * doa1) / dt, pv, true); }, // Slope of line normal to this normalSlope: Number.NEGATIVE_INFINITY, // Sets the point 'p' relative to point 'rp' // by the distance 'd'. // // See APPENDIX on SETRELATIVE at the bottom of this file. // // p ... point to set // rp ... reference point // d ... distance on projection vector // pv ... projection vector (undefined = this) // org ... if true, uses the original position of rp as reference. setRelative: function(p, rp, d2, pv, org) { if (!pv || pv === this) { p.x = (org ? rp.xo : rp.x) + d2; return; } var rpx = org ? rp.xo : rp.x; var rpy = org ? rp.yo : rp.y; var rpdx = rpx + d2 * pv.x; var rpdy = rpy + d2 * pv.y; p.x = rpdx + (p.y - rpdy) / pv.normalSlope; }, // Slope of vector line. slope: 0, // Touches the point p. touch: function(p) { p.xTouched = true; }, // Tests if a point p is touched. touched: function(p) { return p.xTouched; }, // Untouches the point p. untouch: function(p) { p.xTouched = false; } }; var yUnitVector = { x: 0, y: 1, axis: "y", // Gets the projected distance between two points. // o1/o2 ... if true, respective original position is used. distance: function(p1, p2, o1, o2) { return (o1 ? p1.yo : p1.y) - (o2 ? p2.yo : p2.y); }, // Moves point p so the moved position has the same relative // position to the moved positions of rp1 and rp2 than the // original positions had. // // See APPENDIX on INTERPOLATE at the bottom of this file. interpolate: function(p, rp1, rp2, pv) { var do1; var do2; var doa1; var doa2; var dm1; var dm2; var dt; if (!pv || pv === this) { do1 = p.yo - rp1.yo; do2 = p.yo - rp2.yo; dm1 = rp1.y - rp1.yo; dm2 = rp2.y - rp2.yo; doa1 = Math.abs(do1); doa2 = Math.abs(do2); dt = doa1 + doa2; if (dt === 0) { p.y = p.yo + (dm1 + dm2) / 2; return; } p.y = p.yo + (dm1 * doa2 + dm2 * doa1) / dt; return; } do1 = pv.distance(p, rp1, true, true); do2 = pv.distance(p, rp2, true, true); dm1 = pv.distance(rp1, rp1, false, true); dm2 = pv.distance(rp2, rp2, false, true); doa1 = Math.abs(do1); doa2 = Math.abs(do2); dt = doa1 + doa2; if (dt === 0) { yUnitVector.setRelative(p, p, (dm1 + dm2) / 2, pv, true); return; } yUnitVector.setRelative(p, p, (dm1 * doa2 + dm2 * doa1) / dt, pv, true); }, // Slope of line normal to this. normalSlope: 0, // Sets the point 'p' relative to point 'rp' // by the distance 'd' // // See APPENDIX on SETRELATIVE at the bottom of this file. // // p ... point to set // rp ... reference point // d ... distance on projection vector // pv ... projection vector (undefined = this) // org ... if true, uses the original position of rp as reference. setRelative: function(p, rp, d2, pv, org) { if (!pv || pv === this) { p.y = (org ? rp.yo : rp.y) + d2; return; } var rpx = org ? rp.xo : rp.x; var rpy = org ? rp.yo : rp.y; var rpdx = rpx + d2 * pv.x; var rpdy = rpy + d2 * pv.y; p.y = rpdy + pv.normalSlope * (p.x - rpdx); }, // Slope of vector line. slope: Number.POSITIVE_INFINITY, // Touches the point p. touch: function(p) { p.yTouched = true; }, // Tests if a point p is touched. touched: function(p) { return p.yTouched; }, // Untouches the point p. untouch: function(p) { p.yTouched = false; } }; Object.freeze(xUnitVector); Object.freeze(yUnitVector); function UnitVector(x2, y) { this.x = x2; this.y = y; this.axis = void 0; this.slope = y / x2; this.normalSlope = -x2 / y; Object.freeze(this); } UnitVector.prototype.distance = function(p1, p2, o1, o2) { return this.x * xUnitVector.distance(p1, p2, o1, o2) + this.y * yUnitVector.distance(p1, p2, o1, o2); }; UnitVector.prototype.interpolate = function(p, rp1, rp2, pv) { var dm1; var dm2; var do1; var do2; var doa1; var doa2; var dt; do1 = pv.distance(p, rp1, true, true); do2 = pv.distance(p, rp2, true, true); dm1 = pv.distance(rp1, rp1, false, true); dm2 = pv.distance(rp2, rp2, false, true); doa1 = Math.abs(do1); doa2 = Math.abs(do2); dt = doa1 + doa2; if (dt === 0) { this.setRelative(p, p, (dm1 + dm2) / 2, pv, true); return; } this.setRelative(p, p, (dm1 * doa2 + dm2 * doa1) / dt, pv, true); }; UnitVector.prototype.setRelative = function(p, rp, d2, pv, org) { pv = pv || this; var rpx = org ? rp.xo : rp.x; var rpy = org ? rp.yo : rp.y; var rpdx = rpx + d2 * pv.x; var rpdy = rpy + d2 * pv.y; var pvns = pv.normalSlope; var fvs = this.slope; var px = p.x; var py = p.y; p.x = (fvs * px - pvns * rpdx + rpdy - py) / (fvs - pvns); p.y = fvs * (p.x - px) + py; }; UnitVector.prototype.touch = function(p) { p.xTouched = true; p.yTouched = true; }; function getUnitVector(x2, y) { var d2 = Math.sqrt(x2 * x2 + y * y); x2 /= d2; y /= d2; if (x2 === 1 && y === 0) { return xUnitVector; } else if (x2 === 0 && y === 1) { return yUnitVector; } else { return new UnitVector(x2, y); } } function HPoint(x2, y, lastPointOfContour, onCurve) { this.x = this.xo = Math.round(x2 * 64) / 64; this.y = this.yo = Math.round(y * 64) / 64; this.lastPointOfContour = lastPointOfContour; this.onCurve = onCurve; this.prevPointOnContour = void 0; this.nextPointOnContour = void 0; this.xTouched = false; this.yTouched = false; Object.preventExtensions(this); } HPoint.prototype.nextTouched = function(v2) { var p = this.nextPointOnContour; while (!v2.touched(p) && p !== this) { p = p.nextPointOnContour; } return p; }; HPoint.prototype.prevTouched = function(v2) { var p = this.prevPointOnContour; while (!v2.touched(p) && p !== this) { p = p.prevPointOnContour; } return p; }; var HPZero = Object.freeze(new HPoint(0, 0)); var defaultState = { cvCutIn: 17 / 16, // control value cut in deltaBase: 9, deltaShift: 0.125, loop: 1, // loops some instructions minDis: 1, // minimum distance autoFlip: true }; function State(env, prog) { this.env = env; this.stack = []; this.prog = prog; switch (env) { case "glyf": this.zp0 = this.zp1 = this.zp2 = 1; this.rp0 = this.rp1 = this.rp2 = 0; case "prep": this.fv = this.pv = this.dpv = xUnitVector; this.round = roundToGrid; } } Hinting.prototype.exec = function(glyph, ppem) { if (typeof ppem !== "number") { throw new Error("Point size is not a number!"); } if (this._errorState > 2) { return; } var font = this.font; var prepState = this._prepState; if (!prepState || prepState.ppem !== ppem) { var fpgmState = this._fpgmState; if (!fpgmState) { State.prototype = defaultState; fpgmState = this._fpgmState = new State("fpgm", font.tables.fpgm); fpgmState.funcs = []; fpgmState.font = font; if (exports.DEBUG) { console.log("---EXEC FPGM---"); fpgmState.step = -1; } try { exec(fpgmState); } catch (e) { console.log("Hinting error in FPGM:" + e); this._errorState = 3; return; } } State.prototype = fpgmState; prepState = this._prepState = new State("prep", font.tables.prep); prepState.ppem = ppem; var oCvt = font.tables.cvt; if (oCvt) { var cvt = prepState.cvt = new Array(oCvt.length); var scale = ppem / font.unitsPerEm; for (var c2 = 0; c2 < oCvt.length; c2++) { cvt[c2] = oCvt[c2] * scale; } } else { prepState.cvt = []; } if (exports.DEBUG) { console.log("---EXEC PREP---"); prepState.step = -1; } try { exec(prepState); } catch (e) { if (this._errorState < 2) { console.log("Hinting error in PREP:" + e); } this._errorState = 2; } } if (this._errorState > 1) { return; } try { return execGlyph(glyph, prepState); } catch (e) { if (this._errorState < 1) { console.log("Hinting error:" + e); console.log("Note: further hinting errors are silenced"); } this._errorState = 1; return void 0; } }; execGlyph = function(glyph, prepState) { var xScale = prepState.ppem / prepState.font.unitsPerEm; var yScale = xScale; var components = glyph.components; var contours; var gZone; var state; State.prototype = prepState; if (!components) { state = new State("glyf", glyph.instructions); if (exports.DEBUG) { console.log("---EXEC GLYPH---"); state.step = -1; } execComponent(glyph, state, xScale, yScale); gZone = state.gZone; } else { var font = prepState.font; gZone = []; contours = []; for (var i = 0; i < components.length; i++) { var c2 = components[i]; var cg = font.glyphs.get(c2.glyphIndex); state = new State("glyf", cg.instructions); if (exports.DEBUG) { console.log("---EXEC COMP " + i + "---"); state.step = -1; } execComponent(cg, state, xScale, yScale); var dx = Math.round(c2.dx * xScale); var dy = Math.round(c2.dy * yScale); var gz = state.gZone; var cc = state.contours; for (var pi2 = 0; pi2 < gz.length; pi2++) { var p = gz[pi2]; p.xTouched = p.yTouched = false; p.xo = p.x = p.x + dx; p.yo = p.y = p.y + dy; } var gLen = gZone.length; gZone.push.apply(gZone, gz); for (var j = 0; j < cc.length; j++) { contours.push(cc[j] + gLen); } } if (glyph.instructions && !state.inhibitGridFit) { state = new State("glyf", glyph.instructions); state.gZone = state.z0 = state.z1 = state.z2 = gZone; state.contours = contours; gZone.push( new HPoint(0, 0), new HPoint(Math.round(glyph.advanceWidth * xScale), 0) ); if (exports.DEBUG) { console.log("---EXEC COMPOSITE---"); state.step = -1; } exec(state); gZone.length -= 2; } } return gZone; }; execComponent = function(glyph, state, xScale, yScale) { var points = glyph.points || []; var pLen = points.length; var gZone = state.gZone = state.z0 = state.z1 = state.z2 = []; var contours = state.contours = []; var cp; for (var i = 0; i < pLen; i++) { cp = points[i]; gZone[i] = new HPoint( cp.x * xScale, cp.y * yScale, cp.lastPointOfContour, cp.onCurve ); } var sp; var np; for (var i$1 = 0; i$1 < pLen; i$1++) { cp = gZone[i$1]; if (!sp) { sp = cp; contours.push(i$1); } if (cp.lastPointOfContour) { cp.nextPointOnContour = sp; sp.prevPointOnContour = cp; sp = void 0; } else { np = gZone[i$1 + 1]; cp.nextPointOnContour = np; np.prevPointOnContour = cp; } } if (state.inhibitGridFit) { return; } if (exports.DEBUG) { console.log("PROCESSING GLYPH", state.stack); for (var i$2 = 0; i$2 < pLen; i$2++) { console.log(i$2, gZone[i$2].x, gZone[i$2].y); } } gZone.push( new HPoint(0, 0), new HPoint(Math.round(glyph.advanceWidth * xScale), 0) ); exec(state); gZone.length -= 2; if (exports.DEBUG) { console.log("FINISHED GLYPH", state.stack); for (var i$3 = 0; i$3 < pLen; i$3++) { console.log(i$3, gZone[i$3].x, gZone[i$3].y); } } }; exec = function(state) { var prog = state.prog; if (!prog) { return; } var pLen = prog.length; var ins; for (state.ip = 0; state.ip < pLen; state.ip++) { if (exports.DEBUG) { state.step++; } ins = instructionTable[prog[state.ip]]; if (!ins) { throw new Error( "unknown instruction: 0x" + Number(prog[state.ip]).toString(16) ); } ins(state); } }; function initTZone(state) { var tZone = state.tZone = new Array(state.gZone.length); for (var i = 0; i < tZone.length; i++) { tZone[i] = new HPoint(0, 0); } } function skip(state, handleElse) { var prog = state.prog; var ip = state.ip; var nesting = 1; var ins; do { ins = prog[++ip]; if (ins === 88) { nesting++; } else if (ins === 89) { nesting--; } else if (ins === 64) { ip += prog[ip + 1] + 1; } else if (ins === 65) { ip += 2 * prog[ip + 1] + 1; } else if (ins >= 176 && ins <= 183) { ip += ins - 176 + 1; } else if (ins >= 184 && ins <= 191) { ip += (ins - 184 + 1) * 2; } else if (handleElse && nesting === 1 && ins === 27) { break; } } while (nesting > 0); state.ip = ip; } function SVTCA(v2, state) { if (exports.DEBUG) { console.log(state.step, "SVTCA[" + v2.axis + "]"); } state.fv = state.pv = state.dpv = v2; } function SPVTCA(v2, state) { if (exports.DEBUG) { console.log(state.step, "SPVTCA[" + v2.axis + "]"); } state.pv = state.dpv = v2; } function SFVTCA(v2, state) { if (exports.DEBUG) { console.log(state.step, "SFVTCA[" + v2.axis + "]"); } state.fv = v2; } function SPVTL(a, state) { var stack = state.stack; var p2i = stack.pop(); var p1i = stack.pop(); var p2 = state.z2[p2i]; var p1 = state.z1[p1i]; if (exports.DEBUG) { console.log("SPVTL[" + a + "]", p2i, p1i); } var dx; var dy; if (!a) { dx = p1.x - p2.x; dy = p1.y - p2.y; } else { dx = p2.y - p1.y; dy = p1.x - p2.x; } state.pv = state.dpv = getUnitVector(dx, dy); } function SFVTL(a, state) { var stack = state.stack; var p2i = stack.pop(); var p1i = stack.pop(); var p2 = state.z2[p2i]; var p1 = state.z1[p1i]; if (exports.DEBUG) { console.log("SFVTL[" + a + "]", p2i, p1i); } var dx; var dy; if (!a) { dx = p1.x - p2.x; dy = p1.y - p2.y; } else { dx = p2.y - p1.y; dy = p1.x - p2.x; } state.fv = getUnitVector(dx, dy); } function SPVFS(state) { var stack = state.stack; var y = stack.pop(); var x2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SPVFS[]", y, x2); } state.pv = state.dpv = getUnitVector(x2, y); } function SFVFS(state) { var stack = state.stack; var y = stack.pop(); var x2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SPVFS[]", y, x2); } state.fv = getUnitVector(x2, y); } function GPV(state) { var stack = state.stack; var pv = state.pv; if (exports.DEBUG) { console.log(state.step, "GPV[]"); } stack.push(pv.x * 16384); stack.push(pv.y * 16384); } function GFV(state) { var stack = state.stack; var fv = state.fv; if (exports.DEBUG) { console.log(state.step, "GFV[]"); } stack.push(fv.x * 16384); stack.push(fv.y * 16384); } function SFVTPV(state) { state.fv = state.pv; if (exports.DEBUG) { console.log(state.step, "SFVTPV[]"); } } function ISECT(state) { var stack = state.stack; var pa0i = stack.pop(); var pa1i = stack.pop(); var pb0i = stack.pop(); var pb1i = stack.pop(); var pi2 = stack.pop(); var z02 = state.z0; var z1 = state.z1; var pa0 = z02[pa0i]; var pa1 = z02[pa1i]; var pb0 = z1[pb0i]; var pb1 = z1[pb1i]; var p = state.z2[pi2]; if (exports.DEBUG) { console.log("ISECT[], ", pa0i, pa1i, pb0i, pb1i, pi2); } var x1 = pa0.x; var y1 = pa0.y; var x2 = pa1.x; var y2 = pa1.y; var x3 = pb0.x; var y3 = pb0.y; var x4 = pb1.x; var y4 = pb1.y; var div = (x1 - x2) * (y3 - y4) - (y1 - y2) * (x3 - x4); var f1 = x1 * y2 - y1 * x2; var f2 = x3 * y4 - y3 * x4; p.x = (f1 * (x3 - x4) - f2 * (x1 - x2)) / div; p.y = (f1 * (y3 - y4) - f2 * (y1 - y2)) / div; } function SRP0(state) { state.rp0 = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SRP0[]", state.rp0); } } function SRP1(state) { state.rp1 = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SRP1[]", state.rp1); } } function SRP2(state) { state.rp2 = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SRP2[]", state.rp2); } } function SZP0(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SZP0[]", n); } state.zp0 = n; switch (n) { case 0: if (!state.tZone) { initTZone(state); } state.z0 = state.tZone; break; case 1: state.z0 = state.gZone; break; default: throw new Error("Invalid zone pointer"); } } function SZP1(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SZP1[]", n); } state.zp1 = n; switch (n) { case 0: if (!state.tZone) { initTZone(state); } state.z1 = state.tZone; break; case 1: state.z1 = state.gZone; break; default: throw new Error("Invalid zone pointer"); } } function SZP2(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SZP2[]", n); } state.zp2 = n; switch (n) { case 0: if (!state.tZone) { initTZone(state); } state.z2 = state.tZone; break; case 1: state.z2 = state.gZone; break; default: throw new Error("Invalid zone pointer"); } } function SZPS(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SZPS[]", n); } state.zp0 = state.zp1 = state.zp2 = n; switch (n) { case 0: if (!state.tZone) { initTZone(state); } state.z0 = state.z1 = state.z2 = state.tZone; break; case 1: state.z0 = state.z1 = state.z2 = state.gZone; break; default: throw new Error("Invalid zone pointer"); } } function SLOOP(state) { state.loop = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SLOOP[]", state.loop); } } function RTG(state) { if (exports.DEBUG) { console.log(state.step, "RTG[]"); } state.round = roundToGrid; } function RTHG(state) { if (exports.DEBUG) { console.log(state.step, "RTHG[]"); } state.round = roundToHalfGrid; } function SMD(state) { var d2 = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SMD[]", d2); } state.minDis = d2 / 64; } function ELSE(state) { if (exports.DEBUG) { console.log(state.step, "ELSE[]"); } skip(state, false); } function JMPR(state) { var o = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "JMPR[]", o); } state.ip += o - 1; } function SCVTCI(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SCVTCI[]", n); } state.cvCutIn = n / 64; } function DUP(state) { var stack = state.stack; if (exports.DEBUG) { console.log(state.step, "DUP[]"); } stack.push(stack[stack.length - 1]); } function POP(state) { if (exports.DEBUG) { console.log(state.step, "POP[]"); } state.stack.pop(); } function CLEAR(state) { if (exports.DEBUG) { console.log(state.step, "CLEAR[]"); } state.stack.length = 0; } function SWAP(state) { var stack = state.stack; var a = stack.pop(); var b = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SWAP[]"); } stack.push(a); stack.push(b); } function DEPTH(state) { var stack = state.stack; if (exports.DEBUG) { console.log(state.step, "DEPTH[]"); } stack.push(stack.length); } function LOOPCALL(state) { var stack = state.stack; var fn = stack.pop(); var c2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "LOOPCALL[]", fn, c2); } var cip = state.ip; var cprog = state.prog; state.prog = state.funcs[fn]; for (var i = 0; i < c2; i++) { exec(state); if (exports.DEBUG) { console.log( ++state.step, i + 1 < c2 ? "next loopcall" : "done loopcall", i ); } } state.ip = cip; state.prog = cprog; } function CALL(state) { var fn = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "CALL[]", fn); } var cip = state.ip; var cprog = state.prog; state.prog = state.funcs[fn]; exec(state); state.ip = cip; state.prog = cprog; if (exports.DEBUG) { console.log(++state.step, "returning from", fn); } } function CINDEX(state) { var stack = state.stack; var k = stack.pop(); if (exports.DEBUG) { console.log(state.step, "CINDEX[]", k); } stack.push(stack[stack.length - k]); } function MINDEX(state) { var stack = state.stack; var k = stack.pop(); if (exports.DEBUG) { console.log(state.step, "MINDEX[]", k); } stack.push(stack.splice(stack.length - k, 1)[0]); } function FDEF(state) { if (state.env !== "fpgm") { throw new Error("FDEF not allowed here"); } var stack = state.stack; var prog = state.prog; var ip = state.ip; var fn = stack.pop(); var ipBegin = ip; if (exports.DEBUG) { console.log(state.step, "FDEF[]", fn); } while (prog[++ip] !== 45) { } state.ip = ip; state.funcs[fn] = prog.slice(ipBegin + 1, ip); } function MDAP(round, state) { var pi2 = state.stack.pop(); var p = state.z0[pi2]; var fv = state.fv; var pv = state.pv; if (exports.DEBUG) { console.log(state.step, "MDAP[" + round + "]", pi2); } var d2 = pv.distance(p, HPZero); if (round) { d2 = state.round(d2); } fv.setRelative(p, HPZero, d2, pv); fv.touch(p); state.rp0 = state.rp1 = pi2; } function IUP(v2, state) { var z2 = state.z2; var pLen = z2.length - 2; var cp; var pp; var np; if (exports.DEBUG) { console.log(state.step, "IUP[" + v2.axis + "]"); } for (var i = 0; i < pLen; i++) { cp = z2[i]; if (v2.touched(cp)) { continue; } pp = cp.prevTouched(v2); if (pp === cp) { continue; } np = cp.nextTouched(v2); if (pp === np) { v2.setRelative(cp, cp, v2.distance(pp, pp, false, true), v2, true); } v2.interpolate(cp, pp, np, v2); } } function SHP(a, state) { var stack = state.stack; var rpi = a ? state.rp1 : state.rp2; var rp = (a ? state.z0 : state.z1)[rpi]; var fv = state.fv; var pv = state.pv; var loop = state.loop; var z2 = state.z2; while (loop--) { var pi2 = stack.pop(); var p = z2[pi2]; var d2 = pv.distance(rp, rp, false, true); fv.setRelative(p, p, d2, pv); fv.touch(p); if (exports.DEBUG) { console.log( state.step, (state.loop > 1 ? "loop " + (state.loop - loop) + ": " : "") + "SHP[" + (a ? "rp1" : "rp2") + "]", pi2 ); } } state.loop = 1; } function SHC(a, state) { var stack = state.stack; var rpi = a ? state.rp1 : state.rp2; var rp = (a ? state.z0 : state.z1)[rpi]; var fv = state.fv; var pv = state.pv; var ci = stack.pop(); var sp = state.z2[state.contours[ci]]; var p = sp; if (exports.DEBUG) { console.log(state.step, "SHC[" + a + "]", ci); } var d2 = pv.distance(rp, rp, false, true); do { if (p !== rp) { fv.setRelative(p, p, d2, pv); } p = p.nextPointOnContour; } while (p !== sp); } function SHZ(a, state) { var stack = state.stack; var rpi = a ? state.rp1 : state.rp2; var rp = (a ? state.z0 : state.z1)[rpi]; var fv = state.fv; var pv = state.pv; var e = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SHZ[" + a + "]", e); } var z; switch (e) { case 0: z = state.tZone; break; case 1: z = state.gZone; break; default: throw new Error("Invalid zone"); } var p; var d2 = pv.distance(rp, rp, false, true); var pLen = z.length - 2; for (var i = 0; i < pLen; i++) { p = z[i]; fv.setRelative(p, p, d2, pv); } } function SHPIX(state) { var stack = state.stack; var loop = state.loop; var fv = state.fv; var d2 = stack.pop() / 64; var z2 = state.z2; while (loop--) { var pi2 = stack.pop(); var p = z2[pi2]; if (exports.DEBUG) { console.log( state.step, (state.loop > 1 ? "loop " + (state.loop - loop) + ": " : "") + "SHPIX[]", pi2, d2 ); } fv.setRelative(p, p, d2); fv.touch(p); } state.loop = 1; } function IP(state) { var stack = state.stack; var rp1i = state.rp1; var rp2i = state.rp2; var loop = state.loop; var rp1 = state.z0[rp1i]; var rp2 = state.z1[rp2i]; var fv = state.fv; var pv = state.dpv; var z2 = state.z2; while (loop--) { var pi2 = stack.pop(); var p = z2[pi2]; if (exports.DEBUG) { console.log( state.step, (state.loop > 1 ? "loop " + (state.loop - loop) + ": " : "") + "IP[]", pi2, rp1i, "<->", rp2i ); } fv.interpolate(p, rp1, rp2, pv); fv.touch(p); } state.loop = 1; } function MSIRP(a, state) { var stack = state.stack; var d2 = stack.pop() / 64; var pi2 = stack.pop(); var p = state.z1[pi2]; var rp0 = state.z0[state.rp0]; var fv = state.fv; var pv = state.pv; fv.setRelative(p, rp0, d2, pv); fv.touch(p); if (exports.DEBUG) { console.log(state.step, "MSIRP[" + a + "]", d2, pi2); } state.rp1 = state.rp0; state.rp2 = pi2; if (a) { state.rp0 = pi2; } } function ALIGNRP(state) { var stack = state.stack; var rp0i = state.rp0; var rp0 = state.z0[rp0i]; var loop = state.loop; var fv = state.fv; var pv = state.pv; var z1 = state.z1; while (loop--) { var pi2 = stack.pop(); var p = z1[pi2]; if (exports.DEBUG) { console.log( state.step, (state.loop > 1 ? "loop " + (state.loop - loop) + ": " : "") + "ALIGNRP[]", pi2 ); } fv.setRelative(p, rp0, 0, pv); fv.touch(p); } state.loop = 1; } function RTDG(state) { if (exports.DEBUG) { console.log(state.step, "RTDG[]"); } state.round = roundToDoubleGrid; } function MIAP(round, state) { var stack = state.stack; var n = stack.pop(); var pi2 = stack.pop(); var p = state.z0[pi2]; var fv = state.fv; var pv = state.pv; var cv = state.cvt[n]; if (exports.DEBUG) { console.log( state.step, "MIAP[" + round + "]", n, "(", cv, ")", pi2 ); } var d2 = pv.distance(p, HPZero); if (round) { if (Math.abs(d2 - cv) < state.cvCutIn) { d2 = cv; } d2 = state.round(d2); } fv.setRelative(p, HPZero, d2, pv); if (state.zp0 === 0) { p.xo = p.x; p.yo = p.y; } fv.touch(p); state.rp0 = state.rp1 = pi2; } function NPUSHB(state) { var prog = state.prog; var ip = state.ip; var stack = state.stack; var n = prog[++ip]; if (exports.DEBUG) { console.log(state.step, "NPUSHB[]", n); } for (var i = 0; i < n; i++) { stack.push(prog[++ip]); } state.ip = ip; } function NPUSHW(state) { var ip = state.ip; var prog = state.prog; var stack = state.stack; var n = prog[++ip]; if (exports.DEBUG) { console.log(state.step, "NPUSHW[]", n); } for (var i = 0; i < n; i++) { var w2 = prog[++ip] << 8 | prog[++ip]; if (w2 & 32768) { w2 = -((w2 ^ 65535) + 1); } stack.push(w2); } state.ip = ip; } function WS(state) { var stack = state.stack; var store = state.store; if (!store) { store = state.store = []; } var v2 = stack.pop(); var l2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "WS", v2, l2); } store[l2] = v2; } function RS(state) { var stack = state.stack; var store = state.store; var l2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "RS", l2); } var v2 = store && store[l2] || 0; stack.push(v2); } function WCVTP(state) { var stack = state.stack; var v2 = stack.pop(); var l2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "WCVTP", v2, l2); } state.cvt[l2] = v2 / 64; } function RCVT(state) { var stack = state.stack; var cvte = stack.pop(); if (exports.DEBUG) { console.log(state.step, "RCVT", cvte); } stack.push(state.cvt[cvte] * 64); } function GC(a, state) { var stack = state.stack; var pi2 = stack.pop(); var p = state.z2[pi2]; if (exports.DEBUG) { console.log(state.step, "GC[" + a + "]", pi2); } stack.push(state.dpv.distance(p, HPZero, a, false) * 64); } function MD(a, state) { var stack = state.stack; var pi2 = stack.pop(); var pi1 = stack.pop(); var p2 = state.z1[pi2]; var p1 = state.z0[pi1]; var d2 = state.dpv.distance(p1, p2, a, a); if (exports.DEBUG) { console.log(state.step, "MD[" + a + "]", pi2, pi1, "->", d2); } state.stack.push(Math.round(d2 * 64)); } function MPPEM(state) { if (exports.DEBUG) { console.log(state.step, "MPPEM[]"); } state.stack.push(state.ppem); } function FLIPON(state) { if (exports.DEBUG) { console.log(state.step, "FLIPON[]"); } state.autoFlip = true; } function LT(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "LT[]", e2, e1); } stack.push(e1 < e2 ? 1 : 0); } function LTEQ(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "LTEQ[]", e2, e1); } stack.push(e1 <= e2 ? 1 : 0); } function GT(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "GT[]", e2, e1); } stack.push(e1 > e2 ? 1 : 0); } function GTEQ(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "GTEQ[]", e2, e1); } stack.push(e1 >= e2 ? 1 : 0); } function EQ(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "EQ[]", e2, e1); } stack.push(e2 === e1 ? 1 : 0); } function NEQ(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "NEQ[]", e2, e1); } stack.push(e2 !== e1 ? 1 : 0); } function ODD(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "ODD[]", n); } stack.push(Math.trunc(n) % 2 ? 1 : 0); } function EVEN(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "EVEN[]", n); } stack.push(Math.trunc(n) % 2 ? 0 : 1); } function IF(state) { var test = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "IF[]", test); } if (!test) { skip(state, true); if (exports.DEBUG) { console.log(state.step, "EIF[]"); } } } function EIF(state) { if (exports.DEBUG) { console.log(state.step, "EIF[]"); } } function AND(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "AND[]", e2, e1); } stack.push(e2 && e1 ? 1 : 0); } function OR(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "OR[]", e2, e1); } stack.push(e2 || e1 ? 1 : 0); } function NOT(state) { var stack = state.stack; var e = stack.pop(); if (exports.DEBUG) { console.log(state.step, "NOT[]", e); } stack.push(e ? 0 : 1); } function DELTAP123(b, state) { var stack = state.stack; var n = stack.pop(); var fv = state.fv; var pv = state.pv; var ppem = state.ppem; var base = state.deltaBase + (b - 1) * 16; var ds2 = state.deltaShift; var z02 = state.z0; if (exports.DEBUG) { console.log(state.step, "DELTAP[" + b + "]", n, stack); } for (var i = 0; i < n; i++) { var pi2 = stack.pop(); var arg = stack.pop(); var appem = base + ((arg & 240) >> 4); if (appem !== ppem) { continue; } var mag = (arg & 15) - 8; if (mag >= 0) { mag++; } if (exports.DEBUG) { console.log(state.step, "DELTAPFIX", pi2, "by", mag * ds2); } var p = z02[pi2]; fv.setRelative(p, p, mag * ds2, pv); } } function SDB(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SDB[]", n); } state.deltaBase = n; } function SDS(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SDS[]", n); } state.deltaShift = Math.pow(0.5, n); } function ADD(state) { var stack = state.stack; var n2 = stack.pop(); var n1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "ADD[]", n2, n1); } stack.push(n1 + n2); } function SUB(state) { var stack = state.stack; var n2 = stack.pop(); var n1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "SUB[]", n2, n1); } stack.push(n1 - n2); } function DIV(state) { var stack = state.stack; var n2 = stack.pop(); var n1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "DIV[]", n2, n1); } stack.push(n1 * 64 / n2); } function MUL(state) { var stack = state.stack; var n2 = stack.pop(); var n1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "MUL[]", n2, n1); } stack.push(n1 * n2 / 64); } function ABS(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "ABS[]", n); } stack.push(Math.abs(n)); } function NEG(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "NEG[]", n); } stack.push(-n); } function FLOOR(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "FLOOR[]", n); } stack.push(Math.floor(n / 64) * 64); } function CEILING(state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "CEILING[]", n); } stack.push(Math.ceil(n / 64) * 64); } function ROUND(dt, state) { var stack = state.stack; var n = stack.pop(); if (exports.DEBUG) { console.log(state.step, "ROUND[]"); } stack.push(state.round(n / 64) * 64); } function WCVTF(state) { var stack = state.stack; var v2 = stack.pop(); var l2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "WCVTF[]", v2, l2); } state.cvt[l2] = v2 * state.ppem / state.font.unitsPerEm; } function DELTAC123(b, state) { var stack = state.stack; var n = stack.pop(); var ppem = state.ppem; var base = state.deltaBase + (b - 1) * 16; var ds2 = state.deltaShift; if (exports.DEBUG) { console.log(state.step, "DELTAC[" + b + "]", n, stack); } for (var i = 0; i < n; i++) { var c2 = stack.pop(); var arg = stack.pop(); var appem = base + ((arg & 240) >> 4); if (appem !== ppem) { continue; } var mag = (arg & 15) - 8; if (mag >= 0) { mag++; } var delta = mag * ds2; if (exports.DEBUG) { console.log(state.step, "DELTACFIX", c2, "by", delta); } state.cvt[c2] += delta; } } function SROUND(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SROUND[]", n); } state.round = roundSuper; var period; switch (n & 192) { case 0: period = 0.5; break; case 64: period = 1; break; case 128: period = 2; break; default: throw new Error("invalid SROUND value"); } state.srPeriod = period; switch (n & 48) { case 0: state.srPhase = 0; break; case 16: state.srPhase = 0.25 * period; break; case 32: state.srPhase = 0.5 * period; break; case 48: state.srPhase = 0.75 * period; break; default: throw new Error("invalid SROUND value"); } n &= 15; if (n === 0) { state.srThreshold = 0; } else { state.srThreshold = (n / 8 - 0.5) * period; } } function S45ROUND(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "S45ROUND[]", n); } state.round = roundSuper; var period; switch (n & 192) { case 0: period = Math.sqrt(2) / 2; break; case 64: period = Math.sqrt(2); break; case 128: period = 2 * Math.sqrt(2); break; default: throw new Error("invalid S45ROUND value"); } state.srPeriod = period; switch (n & 48) { case 0: state.srPhase = 0; break; case 16: state.srPhase = 0.25 * period; break; case 32: state.srPhase = 0.5 * period; break; case 48: state.srPhase = 0.75 * period; break; default: throw new Error("invalid S45ROUND value"); } n &= 15; if (n === 0) { state.srThreshold = 0; } else { state.srThreshold = (n / 8 - 0.5) * period; } } function ROFF(state) { if (exports.DEBUG) { console.log(state.step, "ROFF[]"); } state.round = roundOff; } function RUTG(state) { if (exports.DEBUG) { console.log(state.step, "RUTG[]"); } state.round = roundUpToGrid; } function RDTG(state) { if (exports.DEBUG) { console.log(state.step, "RDTG[]"); } state.round = roundDownToGrid; } function SCANCTRL(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SCANCTRL[]", n); } } function SDPVTL(a, state) { var stack = state.stack; var p2i = stack.pop(); var p1i = stack.pop(); var p2 = state.z2[p2i]; var p1 = state.z1[p1i]; if (exports.DEBUG) { console.log(state.step, "SDPVTL[" + a + "]", p2i, p1i); } var dx; var dy; if (!a) { dx = p1.x - p2.x; dy = p1.y - p2.y; } else { dx = p2.y - p1.y; dy = p1.x - p2.x; } state.dpv = getUnitVector(dx, dy); } function GETINFO(state) { var stack = state.stack; var sel = stack.pop(); var r = 0; if (exports.DEBUG) { console.log(state.step, "GETINFO[]", sel); } if (sel & 1) { r = 35; } if (sel & 32) { r |= 4096; } stack.push(r); } function ROLL(state) { var stack = state.stack; var a = stack.pop(); var b = stack.pop(); var c2 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "ROLL[]"); } stack.push(b); stack.push(a); stack.push(c2); } function MAX(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "MAX[]", e2, e1); } stack.push(Math.max(e1, e2)); } function MIN(state) { var stack = state.stack; var e2 = stack.pop(); var e1 = stack.pop(); if (exports.DEBUG) { console.log(state.step, "MIN[]", e2, e1); } stack.push(Math.min(e1, e2)); } function SCANTYPE(state) { var n = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "SCANTYPE[]", n); } } function INSTCTRL(state) { var s = state.stack.pop(); var v2 = state.stack.pop(); if (exports.DEBUG) { console.log(state.step, "INSTCTRL[]", s, v2); } switch (s) { case 1: state.inhibitGridFit = !!v2; return; case 2: state.ignoreCvt = !!v2; return; default: throw new Error("invalid INSTCTRL[] selector"); } } function PUSHB(n, state) { var stack = state.stack; var prog = state.prog; var ip = state.ip; if (exports.DEBUG) { console.log(state.step, "PUSHB[" + n + "]"); } for (var i = 0; i < n; i++) { stack.push(prog[++ip]); } state.ip = ip; } function PUSHW(n, state) { var ip = state.ip; var prog = state.prog; var stack = state.stack; if (exports.DEBUG) { console.log(state.ip, "PUSHW[" + n + "]"); } for (var i = 0; i < n; i++) { var w2 = prog[++ip] << 8 | prog[++ip]; if (w2 & 32768) { w2 = -((w2 ^ 65535) + 1); } stack.push(w2); } state.ip = ip; } function MDRP_MIRP(indirect, setRp0, keepD, ro2, dt, state) { var stack = state.stack; var cvte = indirect && stack.pop(); var pi2 = stack.pop(); var rp0i = state.rp0; var rp = state.z0[rp0i]; var p = state.z1[pi2]; var md = state.minDis; var fv = state.fv; var pv = state.dpv; var od; var d2; var sign; var cv; d2 = od = pv.distance(p, rp, true, true); sign = d2 >= 0 ? 1 : -1; d2 = Math.abs(d2); if (indirect) { cv = state.cvt[cvte]; if (ro2 && Math.abs(d2 - cv) < state.cvCutIn) { d2 = cv; } } if (keepD && d2 < md) { d2 = md; } if (ro2) { d2 = state.round(d2); } fv.setRelative(p, rp, sign * d2, pv); fv.touch(p); if (exports.DEBUG) { console.log( state.step, (indirect ? "MIRP[" : "MDRP[") + (setRp0 ? "M" : "m") + (keepD ? ">" : "_") + (ro2 ? "R" : "_") + (dt === 0 ? "Gr" : dt === 1 ? "Bl" : dt === 2 ? "Wh" : "") + "]", indirect ? cvte + "(" + state.cvt[cvte] + "," + cv + ")" : "", pi2, "(d =", od, "->", sign * d2, ")" ); } state.rp1 = state.rp0; state.rp2 = pi2; if (setRp0) { state.rp0 = pi2; } } instructionTable = [ /* 0x00 */ SVTCA.bind(void 0, yUnitVector), /* 0x01 */ SVTCA.bind(void 0, xUnitVector), /* 0x02 */ SPVTCA.bind(void 0, yUnitVector), /* 0x03 */ SPVTCA.bind(void 0, xUnitVector), /* 0x04 */ SFVTCA.bind(void 0, yUnitVector), /* 0x05 */ SFVTCA.bind(void 0, xUnitVector), /* 0x06 */ SPVTL.bind(void 0, 0), /* 0x07 */ SPVTL.bind(void 0, 1), /* 0x08 */ SFVTL.bind(void 0, 0), /* 0x09 */ SFVTL.bind(void 0, 1), /* 0x0A */ SPVFS, /* 0x0B */ SFVFS, /* 0x0C */ GPV, /* 0x0D */ GFV, /* 0x0E */ SFVTPV, /* 0x0F */ ISECT, /* 0x10 */ SRP0, /* 0x11 */ SRP1, /* 0x12 */ SRP2, /* 0x13 */ SZP0, /* 0x14 */ SZP1, /* 0x15 */ SZP2, /* 0x16 */ SZPS, /* 0x17 */ SLOOP, /* 0x18 */ RTG, /* 0x19 */ RTHG, /* 0x1A */ SMD, /* 0x1B */ ELSE, /* 0x1C */ JMPR, /* 0x1D */ SCVTCI, /* 0x1E */ void 0, // TODO SSWCI /* 0x1F */ void 0, // TODO SSW /* 0x20 */ DUP, /* 0x21 */ POP, /* 0x22 */ CLEAR, /* 0x23 */ SWAP, /* 0x24 */ DEPTH, /* 0x25 */ CINDEX, /* 0x26 */ MINDEX, /* 0x27 */ void 0, // TODO ALIGNPTS /* 0x28 */ void 0, /* 0x29 */ void 0, // TODO UTP /* 0x2A */ LOOPCALL, /* 0x2B */ CALL, /* 0x2C */ FDEF, /* 0x2D */ void 0, // ENDF (eaten by FDEF) /* 0x2E */ MDAP.bind(void 0, 0), /* 0x2F */ MDAP.bind(void 0, 1), /* 0x30 */ IUP.bind(void 0, yUnitVector), /* 0x31 */ IUP.bind(void 0, xUnitVector), /* 0x32 */ SHP.bind(void 0, 0), /* 0x33 */ SHP.bind(void 0, 1), /* 0x34 */ SHC.bind(void 0, 0), /* 0x35 */ SHC.bind(void 0, 1), /* 0x36 */ SHZ.bind(void 0, 0), /* 0x37 */ SHZ.bind(void 0, 1), /* 0x38 */ SHPIX, /* 0x39 */ IP, /* 0x3A */ MSIRP.bind(void 0, 0), /* 0x3B */ MSIRP.bind(void 0, 1), /* 0x3C */ ALIGNRP, /* 0x3D */ RTDG, /* 0x3E */ MIAP.bind(void 0, 0), /* 0x3F */ MIAP.bind(void 0, 1), /* 0x40 */ NPUSHB, /* 0x41 */ NPUSHW, /* 0x42 */ WS, /* 0x43 */ RS, /* 0x44 */ WCVTP, /* 0x45 */ RCVT, /* 0x46 */ GC.bind(void 0, 0), /* 0x47 */ GC.bind(void 0, 1), /* 0x48 */ void 0, // TODO SCFS /* 0x49 */ MD.bind(void 0, 0), /* 0x4A */ MD.bind(void 0, 1), /* 0x4B */ MPPEM, /* 0x4C */ void 0, // TODO MPS /* 0x4D */ FLIPON, /* 0x4E */ void 0, // TODO FLIPOFF /* 0x4F */ void 0, // TODO DEBUG /* 0x50 */ LT, /* 0x51 */ LTEQ, /* 0x52 */ GT, /* 0x53 */ GTEQ, /* 0x54 */ EQ, /* 0x55 */ NEQ, /* 0x56 */ ODD, /* 0x57 */ EVEN, /* 0x58 */ IF, /* 0x59 */ EIF, /* 0x5A */ AND, /* 0x5B */ OR, /* 0x5C */ NOT, /* 0x5D */ DELTAP123.bind(void 0, 1), /* 0x5E */ SDB, /* 0x5F */ SDS, /* 0x60 */ ADD, /* 0x61 */ SUB, /* 0x62 */ DIV, /* 0x63 */ MUL, /* 0x64 */ ABS, /* 0x65 */ NEG, /* 0x66 */ FLOOR, /* 0x67 */ CEILING, /* 0x68 */ ROUND.bind(void 0, 0), /* 0x69 */ ROUND.bind(void 0, 1), /* 0x6A */ ROUND.bind(void 0, 2), /* 0x6B */ ROUND.bind(void 0, 3), /* 0x6C */ void 0, // TODO NROUND[ab] /* 0x6D */ void 0, // TODO NROUND[ab] /* 0x6E */ void 0, // TODO NROUND[ab] /* 0x6F */ void 0, // TODO NROUND[ab] /* 0x70 */ WCVTF, /* 0x71 */ DELTAP123.bind(void 0, 2), /* 0x72 */ DELTAP123.bind(void 0, 3), /* 0x73 */ DELTAC123.bind(void 0, 1), /* 0x74 */ DELTAC123.bind(void 0, 2), /* 0x75 */ DELTAC123.bind(void 0, 3), /* 0x76 */ SROUND, /* 0x77 */ S45ROUND, /* 0x78 */ void 0, // TODO JROT[] /* 0x79 */ void 0, // TODO JROF[] /* 0x7A */ ROFF, /* 0x7B */ void 0, /* 0x7C */ RUTG, /* 0x7D */ RDTG, /* 0x7E */ POP, // actually SANGW, supposed to do only a pop though /* 0x7F */ POP, // actually AA, supposed to do only a pop though /* 0x80 */ void 0, // TODO FLIPPT /* 0x81 */ void 0, // TODO FLIPRGON /* 0x82 */ void 0, // TODO FLIPRGOFF /* 0x83 */ void 0, /* 0x84 */ void 0, /* 0x85 */ SCANCTRL, /* 0x86 */ SDPVTL.bind(void 0, 0), /* 0x87 */ SDPVTL.bind(void 0, 1), /* 0x88 */ GETINFO, /* 0x89 */ void 0, // TODO IDEF /* 0x8A */ ROLL, /* 0x8B */ MAX, /* 0x8C */ MIN, /* 0x8D */ SCANTYPE, /* 0x8E */ INSTCTRL, /* 0x8F */ void 0, /* 0x90 */ void 0, /* 0x91 */ void 0, /* 0x92 */ void 0, /* 0x93 */ void 0, /* 0x94 */ void 0, /* 0x95 */ void 0, /* 0x96 */ void 0, /* 0x97 */ void 0, /* 0x98 */ void 0, /* 0x99 */ void 0, /* 0x9A */ void 0, /* 0x9B */ void 0, /* 0x9C */ void 0, /* 0x9D */ void 0, /* 0x9E */ void 0, /* 0x9F */ void 0, /* 0xA0 */ void 0, /* 0xA1 */ void 0, /* 0xA2 */ void 0, /* 0xA3 */ void 0, /* 0xA4 */ void 0, /* 0xA5 */ void 0, /* 0xA6 */ void 0, /* 0xA7 */ void 0, /* 0xA8 */ void 0, /* 0xA9 */ void 0, /* 0xAA */ void 0, /* 0xAB */ void 0, /* 0xAC */ void 0, /* 0xAD */ void 0, /* 0xAE */ void 0, /* 0xAF */ void 0, /* 0xB0 */ PUSHB.bind(void 0, 1), /* 0xB1 */ PUSHB.bind(void 0, 2), /* 0xB2 */ PUSHB.bind(void 0, 3), /* 0xB3 */ PUSHB.bind(void 0, 4), /* 0xB4 */ PUSHB.bind(void 0, 5), /* 0xB5 */ PUSHB.bind(void 0, 6), /* 0xB6 */ PUSHB.bind(void 0, 7), /* 0xB7 */ PUSHB.bind(void 0, 8), /* 0xB8 */ PUSHW.bind(void 0, 1), /* 0xB9 */ PUSHW.bind(void 0, 2), /* 0xBA */ PUSHW.bind(void 0, 3), /* 0xBB */ PUSHW.bind(void 0, 4), /* 0xBC */ PUSHW.bind(void 0, 5), /* 0xBD */ PUSHW.bind(void 0, 6), /* 0xBE */ PUSHW.bind(void 0, 7), /* 0xBF */ PUSHW.bind(void 0, 8), /* 0xC0 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 0, 0), /* 0xC1 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 0, 1), /* 0xC2 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 0, 2), /* 0xC3 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 0, 3), /* 0xC4 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 1, 0), /* 0xC5 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 1, 1), /* 0xC6 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 1, 2), /* 0xC7 */ MDRP_MIRP.bind(void 0, 0, 0, 0, 1, 3), /* 0xC8 */ MDRP_MIRP.bind(void 0, 0, 0, 1, 0, 0), /* 0xC9 */ MDRP_MIRP.bind(void 0, 0, 0, 1, 0, 1), /* 0xCA */ MDRP_MIRP.bind(void 0, 0, 0, 1, 0, 2), /* 0xCB */ MDRP_MIRP.bind(void 0, 0, 0, 1, 0, 3), /* 0xCC */ MDRP_MIRP.bind(void 0, 0, 0, 1, 1, 0), /* 0xCD */ MDRP_MIRP.bind(void 0, 0, 0, 1, 1, 1), /* 0xCE */ MDRP_MIRP.bind(void 0, 0, 0, 1, 1, 2), /* 0xCF */ MDRP_MIRP.bind(void 0, 0, 0, 1, 1, 3), /* 0xD0 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 0, 0), /* 0xD1 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 0, 1), /* 0xD2 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 0, 2), /* 0xD3 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 0, 3), /* 0xD4 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 1, 0), /* 0xD5 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 1, 1), /* 0xD6 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 1, 2), /* 0xD7 */ MDRP_MIRP.bind(void 0, 0, 1, 0, 1, 3), /* 0xD8 */ MDRP_MIRP.bind(void 0, 0, 1, 1, 0, 0), /* 0xD9 */ MDRP_MIRP.bind(void 0, 0, 1, 1, 0, 1), /* 0xDA */ MDRP_MIRP.bind(void 0, 0, 1, 1, 0, 2), /* 0xDB */ MDRP_MIRP.bind(void 0, 0, 1, 1, 0, 3), /* 0xDC */ MDRP_MIRP.bind(void 0, 0, 1, 1, 1, 0), /* 0xDD */ MDRP_MIRP.bind(void 0, 0, 1, 1, 1, 1), /* 0xDE */ MDRP_MIRP.bind(void 0, 0, 1, 1, 1, 2), /* 0xDF */ MDRP_MIRP.bind(void 0, 0, 1, 1, 1, 3), /* 0xE0 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 0, 0), /* 0xE1 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 0, 1), /* 0xE2 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 0, 2), /* 0xE3 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 0, 3), /* 0xE4 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 1, 0), /* 0xE5 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 1, 1), /* 0xE6 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 1, 2), /* 0xE7 */ MDRP_MIRP.bind(void 0, 1, 0, 0, 1, 3), /* 0xE8 */ MDRP_MIRP.bind(void 0, 1, 0, 1, 0, 0), /* 0xE9 */ MDRP_MIRP.bind(void 0, 1, 0, 1, 0, 1), /* 0xEA */ MDRP_MIRP.bind(void 0, 1, 0, 1, 0, 2), /* 0xEB */ MDRP_MIRP.bind(void 0, 1, 0, 1, 0, 3), /* 0xEC */ MDRP_MIRP.bind(void 0, 1, 0, 1, 1, 0), /* 0xED */ MDRP_MIRP.bind(void 0, 1, 0, 1, 1, 1), /* 0xEE */ MDRP_MIRP.bind(void 0, 1, 0, 1, 1, 2), /* 0xEF */ MDRP_MIRP.bind(void 0, 1, 0, 1, 1, 3), /* 0xF0 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 0, 0), /* 0xF1 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 0, 1), /* 0xF2 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 0, 2), /* 0xF3 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 0, 3), /* 0xF4 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 1, 0), /* 0xF5 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 1, 1), /* 0xF6 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 1, 2), /* 0xF7 */ MDRP_MIRP.bind(void 0, 1, 1, 0, 1, 3), /* 0xF8 */ MDRP_MIRP.bind(void 0, 1, 1, 1, 0, 0), /* 0xF9 */ MDRP_MIRP.bind(void 0, 1, 1, 1, 0, 1), /* 0xFA */ MDRP_MIRP.bind(void 0, 1, 1, 1, 0, 2), /* 0xFB */ MDRP_MIRP.bind(void 0, 1, 1, 1, 0, 3), /* 0xFC */ MDRP_MIRP.bind(void 0, 1, 1, 1, 1, 0), /* 0xFD */ MDRP_MIRP.bind(void 0, 1, 1, 1, 1, 1), /* 0xFE */ MDRP_MIRP.bind(void 0, 1, 1, 1, 1, 2), /* 0xFF */ MDRP_MIRP.bind(void 0, 1, 1, 1, 1, 3) ]; function Token(char) { this.char = char; this.state = {}; this.activeState = null; } function ContextRange(startIndex, endOffset, contextName) { this.contextName = contextName; this.startIndex = startIndex; this.endOffset = endOffset; } function ContextChecker(contextName, checkStart, checkEnd) { this.contextName = contextName; this.openRange = null; this.ranges = []; this.checkStart = checkStart; this.checkEnd = checkEnd; } function ContextParams(context, currentIndex) { this.context = context; this.index = currentIndex; this.length = context.length; this.current = context[currentIndex]; this.backtrack = context.slice(0, currentIndex); this.lookahead = context.slice(currentIndex + 1); } function Event(eventId) { this.eventId = eventId; this.subscribers = []; } function initializeCoreEvents(events) { var this$1 = this; var coreEvents = [ "start", "end", "next", "newToken", "contextStart", "contextEnd", "insertToken", "removeToken", "removeRange", "replaceToken", "replaceRange", "composeRUD", "updateContextsRanges" ]; coreEvents.forEach(function(eventId) { Object.defineProperty(this$1.events, eventId, { value: new Event(eventId) }); }); if (!!events) { coreEvents.forEach(function(eventId) { var event = events[eventId]; if (typeof event === "function") { this$1.events[eventId].subscribe(event); } }); } var requiresContextUpdate = [ "insertToken", "removeToken", "removeRange", "replaceToken", "replaceRange", "composeRUD" ]; requiresContextUpdate.forEach(function(eventId) { this$1.events[eventId].subscribe( this$1.updateContextsRanges ); }); } function Tokenizer(events) { this.tokens = []; this.registeredContexts = {}; this.contextCheckers = []; this.events = {}; this.registeredModifiers = []; initializeCoreEvents.call(this, events); } Token.prototype.setState = function(key, value) { this.state[key] = value; this.activeState = { key, value: this.state[key] }; return this.activeState; }; Token.prototype.getState = function(stateId) { return this.state[stateId] || null; }; Tokenizer.prototype.inboundIndex = function(index) { return index >= 0 && index < this.tokens.length; }; Tokenizer.prototype.composeRUD = function(RUDs) { var this$1 = this; var silent = true; var state = RUDs.map(function(RUD) { return this$1[RUD[0]].apply(this$1, RUD.slice(1).concat(silent)); }); var hasFAILObject = function(obj) { return typeof obj === "object" && obj.hasOwnProperty("FAIL"); }; if (state.every(hasFAILObject)) { return { FAIL: "composeRUD: one or more operations hasn't completed successfully", report: state.filter(hasFAILObject) }; } this.dispatch("composeRUD", [state.filter(function(op) { return !hasFAILObject(op); })]); }; Tokenizer.prototype.replaceRange = function(startIndex, offset, tokens, silent) { offset = offset !== null ? offset : this.tokens.length; var isTokenType = tokens.every(function(token) { return token instanceof Token; }); if (!isNaN(startIndex) && this.inboundIndex(startIndex) && isTokenType) { var replaced = this.tokens.splice.apply( this.tokens, [startIndex, offset].concat(tokens) ); if (!silent) { this.dispatch("replaceToken", [startIndex, offset, tokens]); } return [replaced, tokens]; } else { return { FAIL: "replaceRange: invalid tokens or startIndex." }; } }; Tokenizer.prototype.replaceToken = function(index, token, silent) { if (!isNaN(index) && this.inboundIndex(index) && token instanceof Token) { var replaced = this.tokens.splice(index, 1, token); if (!silent) { this.dispatch("replaceToken", [index, token]); } return [replaced[0], token]; } else { return { FAIL: "replaceToken: invalid token or index." }; } }; Tokenizer.prototype.removeRange = function(startIndex, offset, silent) { offset = !isNaN(offset) ? offset : this.tokens.length; var tokens = this.tokens.splice(startIndex, offset); if (!silent) { this.dispatch("removeRange", [tokens, startIndex, offset]); } return tokens; }; Tokenizer.prototype.removeToken = function(index, silent) { if (!isNaN(index) && this.inboundIndex(index)) { var token = this.tokens.splice(index, 1); if (!silent) { this.dispatch("removeToken", [token, index]); } return token; } else { return { FAIL: "removeToken: invalid token index." }; } }; Tokenizer.prototype.insertToken = function(tokens, index, silent) { var tokenType = tokens.every( function(token) { return token instanceof Token; } ); if (tokenType) { this.tokens.splice.apply( this.tokens, [index, 0].concat(tokens) ); if (!silent) { this.dispatch("insertToken", [tokens, index]); } return tokens; } else { return { FAIL: "insertToken: invalid token(s)." }; } }; Tokenizer.prototype.registerModifier = function(modifierId, condition, modifier) { this.events.newToken.subscribe(function(token, contextParams) { var conditionParams = [token, contextParams]; var canApplyModifier = condition === null || condition.apply(this, conditionParams) === true; var modifierParams = [token, contextParams]; if (canApplyModifier) { var newStateValue = modifier.apply(this, modifierParams); token.setState(modifierId, newStateValue); } }); this.registeredModifiers.push(modifierId); }; Event.prototype.subscribe = function(eventHandler) { if (typeof eventHandler === "function") { return this.subscribers.push(eventHandler) - 1; } else { return { FAIL: "invalid '" + this.eventId + "' event handler" }; } }; Event.prototype.unsubscribe = function(subsId) { this.subscribers.splice(subsId, 1); }; ContextParams.prototype.setCurrentIndex = function(index) { this.index = index; this.current = this.context[index]; this.backtrack = this.context.slice(0, index); this.lookahead = this.context.slice(index + 1); }; ContextParams.prototype.get = function(offset) { switch (true) { case offset === 0: return this.current; case (offset < 0 && Math.abs(offset) <= this.backtrack.length): return this.backtrack.slice(offset)[0]; case (offset > 0 && offset <= this.lookahead.length): return this.lookahead[offset - 1]; default: return null; } }; Tokenizer.prototype.rangeToText = function(range) { if (range instanceof ContextRange) { return this.getRangeTokens(range).map(function(token) { return token.char; }).join(""); } }; Tokenizer.prototype.getText = function() { return this.tokens.map(function(token) { return token.char; }).join(""); }; Tokenizer.prototype.getContext = function(contextName) { var context = this.registeredContexts[contextName]; return !!context ? context : null; }; Tokenizer.prototype.on = function(eventName, eventHandler) { var event = this.events[eventName]; if (!!event) { return event.subscribe(eventHandler); } else { return null; } }; Tokenizer.prototype.dispatch = function(eventName, args) { var this$1 = this; var event = this.events[eventName]; if (event instanceof Event) { event.subscribers.forEach(function(subscriber) { subscriber.apply(this$1, args || []); }); } }; Tokenizer.prototype.registerContextChecker = function(contextName, contextStartCheck, contextEndCheck) { if (!!this.getContext(contextName)) { return { FAIL: "context name '" + contextName + "' is already registered." }; } if (typeof contextStartCheck !== "function") { return { FAIL: "missing context start check." }; } if (typeof contextEndCheck !== "function") { return { FAIL: "missing context end check." }; } var contextCheckers = new ContextChecker( contextName, contextStartCheck, contextEndCheck ); this.registeredContexts[contextName] = contextCheckers; this.contextCheckers.push(contextCheckers); return contextCheckers; }; Tokenizer.prototype.getRangeTokens = function(range) { var endIndex = range.startIndex + range.endOffset; return [].concat( this.tokens.slice(range.startIndex, endIndex) ); }; Tokenizer.prototype.getContextRanges = function(contextName) { var context = this.getContext(contextName); if (!!context) { return context.ranges; } else { return { FAIL: "context checker '" + contextName + "' is not registered." }; } }; Tokenizer.prototype.resetContextsRanges = function() { var registeredContexts = this.registeredContexts; for (var contextName in registeredContexts) { if (registeredContexts.hasOwnProperty(contextName)) { var context = registeredContexts[contextName]; context.ranges = []; } } }; Tokenizer.prototype.updateContextsRanges = function() { this.resetContextsRanges(); var chars = this.tokens.map(function(token) { return token.char; }); for (var i = 0; i < chars.length; i++) { var contextParams = new ContextParams(chars, i); this.runContextCheck(contextParams); } this.dispatch("updateContextsRanges", [this.registeredContexts]); }; Tokenizer.prototype.setEndOffset = function(offset, contextName) { var startIndex = this.getContext(contextName).openRange.startIndex; var range = new ContextRange(startIndex, offset, contextName); var ranges = this.getContext(contextName).ranges; range.rangeId = contextName + "." + ranges.length; ranges.push(range); this.getContext(contextName).openRange = null; return range; }; Tokenizer.prototype.runContextCheck = function(contextParams) { var this$1 = this; var index = contextParams.index; this.contextCheckers.forEach(function(contextChecker) { var contextName = contextChecker.contextName; var openRange = this$1.getContext(contextName).openRange; if (!openRange && contextChecker.checkStart(contextParams)) { openRange = new ContextRange(index, null, contextName); this$1.getContext(contextName).openRange = openRange; this$1.dispatch("contextStart", [contextName, index]); } if (!!openRange && contextChecker.checkEnd(contextParams)) { var offset = index - openRange.startIndex + 1; var range = this$1.setEndOffset(offset, contextName); this$1.dispatch("contextEnd", [contextName, range]); } }); }; Tokenizer.prototype.tokenize = function(text) { this.tokens = []; this.resetContextsRanges(); var chars = Array.from(text); this.dispatch("start"); for (var i = 0; i < chars.length; i++) { var char = chars[i]; var contextParams = new ContextParams(chars, i); this.dispatch("next", [contextParams]); this.runContextCheck(contextParams); var token = new Token(char); this.tokens.push(token); this.dispatch("newToken", [token, contextParams]); } this.dispatch("end", [this.tokens]); return this.tokens; }; function isArabicChar(c2) { return /[\u0600-\u065F\u066A-\u06D2\u06FA-\u06FF]/.test(c2); } function isIsolatedArabicChar(char) { return /[\u0630\u0690\u0621\u0631\u0661\u0671\u0622\u0632\u0672\u0692\u06C2\u0623\u0673\u0693\u06C3\u0624\u0694\u06C4\u0625\u0675\u0695\u06C5\u06E5\u0676\u0696\u06C6\u0627\u0677\u0697\u06C7\u0648\u0688\u0698\u06C8\u0689\u0699\u06C9\u068A\u06CA\u066B\u068B\u06CB\u068C\u068D\u06CD\u06FD\u068E\u06EE\u06FE\u062F\u068F\u06CF\u06EF]/.test(char); } function isTashkeelArabicChar(char) { return /[\u0600-\u0605\u060C-\u060E\u0610-\u061B\u061E\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED]/.test(char); } function isLatinChar(c2) { return /[A-z]/.test(c2); } function isWhiteSpace(c2) { return /\s/.test(c2); } function FeatureQuery(font) { this.font = font; this.features = {}; } function SubstitutionAction(action) { this.id = action.id; this.tag = action.tag; this.substitution = action.substitution; } function lookupCoverage(glyphIndex, coverage) { if (!glyphIndex) { return -1; } switch (coverage.format) { case 1: return coverage.glyphs.indexOf(glyphIndex); case 2: var ranges = coverage.ranges; for (var i = 0; i < ranges.length; i++) { var range = ranges[i]; if (glyphIndex >= range.start && glyphIndex <= range.end) { var offset = glyphIndex - range.start; return range.index + offset; } } break; default: return -1; } return -1; } function singleSubstitutionFormat1(glyphIndex, subtable) { var substituteIndex = lookupCoverage(glyphIndex, subtable.coverage); if (substituteIndex === -1) { return null; } return glyphIndex + subtable.deltaGlyphId; } function singleSubstitutionFormat2(glyphIndex, subtable) { var substituteIndex = lookupCoverage(glyphIndex, subtable.coverage); if (substituteIndex === -1) { return null; } return subtable.substitute[substituteIndex]; } function lookupCoverageList(coverageList, contextParams) { var lookupList = []; for (var i = 0; i < coverageList.length; i++) { var coverage = coverageList[i]; var glyphIndex = contextParams.current; glyphIndex = Array.isArray(glyphIndex) ? glyphIndex[0] : glyphIndex; var lookupIndex = lookupCoverage(glyphIndex, coverage); if (lookupIndex !== -1) { lookupList.push(lookupIndex); } } if (lookupList.length !== coverageList.length) { return -1; } return lookupList; } function chainingSubstitutionFormat3(contextParams, subtable) { var lookupsCount = subtable.inputCoverage.length + subtable.lookaheadCoverage.length + subtable.backtrackCoverage.length; if (contextParams.context.length < lookupsCount) { return []; } var inputLookups = lookupCoverageList( subtable.inputCoverage, contextParams ); if (inputLookups === -1) { return []; } var lookaheadOffset = subtable.inputCoverage.length - 1; if (contextParams.lookahead.length < subtable.lookaheadCoverage.length) { return []; } var lookaheadContext = contextParams.lookahead.slice(lookaheadOffset); while (lookaheadContext.length && isTashkeelArabicChar(lookaheadContext[0].char)) { lookaheadContext.shift(); } var lookaheadParams = new ContextParams(lookaheadContext, 0); var lookaheadLookups = lookupCoverageList( subtable.lookaheadCoverage, lookaheadParams ); var backtrackContext = [].concat(contextParams.backtrack); backtrackContext.reverse(); while (backtrackContext.length && isTashkeelArabicChar(backtrackContext[0].char)) { backtrackContext.shift(); } if (backtrackContext.length < subtable.backtrackCoverage.length) { return []; } var backtrackParams = new ContextParams(backtrackContext, 0); var backtrackLookups = lookupCoverageList( subtable.backtrackCoverage, backtrackParams ); var contextRulesMatch = inputLookups.length === subtable.inputCoverage.length && lookaheadLookups.length === subtable.lookaheadCoverage.length && backtrackLookups.length === subtable.backtrackCoverage.length; var substitutions = []; if (contextRulesMatch) { for (var i = 0; i < subtable.lookupRecords.length; i++) { var lookupRecord = subtable.lookupRecords[i]; var lookupListIndex = lookupRecord.lookupListIndex; var lookupTable = this.getLookupByIndex(lookupListIndex); for (var s = 0; s < lookupTable.subtables.length; s++) { var subtable$1 = lookupTable.subtables[s]; var lookup = this.getLookupMethod(lookupTable, subtable$1); var substitutionType = this.getSubstitutionType(lookupTable, subtable$1); if (substitutionType === "12") { for (var n = 0; n < inputLookups.length; n++) { var glyphIndex = contextParams.get(n); var substitution = lookup(glyphIndex); if (substitution) { substitutions.push(substitution); } } } } } } return substitutions; } function ligatureSubstitutionFormat1(contextParams, subtable) { var glyphIndex = contextParams.current; var ligSetIndex = lookupCoverage(glyphIndex, subtable.coverage); if (ligSetIndex === -1) { return null; } var ligature; var ligatureSet = subtable.ligatureSets[ligSetIndex]; for (var s = 0; s < ligatureSet.length; s++) { ligature = ligatureSet[s]; for (var l2 = 0; l2 < ligature.components.length; l2++) { var lookaheadItem = contextParams.lookahead[l2]; var component = ligature.components[l2]; if (lookaheadItem !== component) { break; } if (l2 === ligature.components.length - 1) { return ligature; } } } return null; } function decompositionSubstitutionFormat1(glyphIndex, subtable) { var substituteIndex = lookupCoverage(glyphIndex, subtable.coverage); if (substituteIndex === -1) { return null; } return subtable.sequences[substituteIndex]; } FeatureQuery.prototype.getDefaultScriptFeaturesIndexes = function() { var scripts = this.font.tables.gsub.scripts; for (var s = 0; s < scripts.length; s++) { var script = scripts[s]; if (script.tag === "DFLT") { return script.script.defaultLangSys.featureIndexes; } } return []; }; FeatureQuery.prototype.getScriptFeaturesIndexes = function(scriptTag) { var tables = this.font.tables; if (!tables.gsub) { return []; } if (!scriptTag) { return this.getDefaultScriptFeaturesIndexes(); } var scripts = this.font.tables.gsub.scripts; for (var i = 0; i < scripts.length; i++) { var script = scripts[i]; if (script.tag === scriptTag && script.script.defaultLangSys) { return script.script.defaultLangSys.featureIndexes; } else { var langSysRecords = script.langSysRecords; if (!!langSysRecords) { for (var j = 0; j < langSysRecords.length; j++) { var langSysRecord = langSysRecords[j]; if (langSysRecord.tag === scriptTag) { var langSys = langSysRecord.langSys; return langSys.featureIndexes; } } } } } return this.getDefaultScriptFeaturesIndexes(); }; FeatureQuery.prototype.mapTagsToFeatures = function(features, scriptTag) { var tags = {}; for (var i = 0; i < features.length; i++) { var tag = features[i].tag; var feature = features[i].feature; tags[tag] = feature; } this.features[scriptTag].tags = tags; }; FeatureQuery.prototype.getScriptFeatures = function(scriptTag) { var features = this.features[scriptTag]; if (this.features.hasOwnProperty(scriptTag)) { return features; } var featuresIndexes = this.getScriptFeaturesIndexes(scriptTag); if (!featuresIndexes) { return null; } var gsub2 = this.font.tables.gsub; features = featuresIndexes.map(function(index) { return gsub2.features[index]; }); this.features[scriptTag] = features; this.mapTagsToFeatures(features, scriptTag); return features; }; FeatureQuery.prototype.getSubstitutionType = function(lookupTable, subtable) { var lookupType = lookupTable.lookupType.toString(); var substFormat = subtable.substFormat.toString(); return lookupType + substFormat; }; FeatureQuery.prototype.getLookupMethod = function(lookupTable, subtable) { var this$1 = this; var substitutionType = this.getSubstitutionType(lookupTable, subtable); switch (substitutionType) { case "11": return function(glyphIndex) { return singleSubstitutionFormat1.apply( this$1, [glyphIndex, subtable] ); }; case "12": return function(glyphIndex) { return singleSubstitutionFormat2.apply( this$1, [glyphIndex, subtable] ); }; case "63": return function(contextParams) { return chainingSubstitutionFormat3.apply( this$1, [contextParams, subtable] ); }; case "41": return function(contextParams) { return ligatureSubstitutionFormat1.apply( this$1, [contextParams, subtable] ); }; case "21": return function(glyphIndex) { return decompositionSubstitutionFormat1.apply( this$1, [glyphIndex, subtable] ); }; default: throw new Error( "lookupType: " + lookupTable.lookupType + " - substFormat: " + subtable.substFormat + " is not yet supported" ); } }; FeatureQuery.prototype.lookupFeature = function(query) { var contextParams = query.contextParams; var currentIndex = contextParams.index; var feature = this.getFeature({ tag: query.tag, script: query.script }); if (!feature) { return new Error( "font '" + this.font.names.fullName.en + "' doesn't support feature '" + query.tag + "' for script '" + query.script + "'." ); } var lookups = this.getFeatureLookups(feature); var substitutions = [].concat(contextParams.context); for (var l2 = 0; l2 < lookups.length; l2++) { var lookupTable = lookups[l2]; var subtables = this.getLookupSubtables(lookupTable); for (var s = 0; s < subtables.length; s++) { var subtable = subtables[s]; var substType = this.getSubstitutionType(lookupTable, subtable); var lookup = this.getLookupMethod(lookupTable, subtable); var substitution = void 0; switch (substType) { case "11": substitution = lookup(contextParams.current); if (substitution) { substitutions.splice(currentIndex, 1, new SubstitutionAction({ id: 11, tag: query.tag, substitution })); } break; case "12": substitution = lookup(contextParams.current); if (substitution) { substitutions.splice(currentIndex, 1, new SubstitutionAction({ id: 12, tag: query.tag, substitution })); } break; case "63": substitution = lookup(contextParams); if (Array.isArray(substitution) && substitution.length) { substitutions.splice(currentIndex, 1, new SubstitutionAction({ id: 63, tag: query.tag, substitution })); } break; case "41": substitution = lookup(contextParams); if (substitution) { substitutions.splice(currentIndex, 1, new SubstitutionAction({ id: 41, tag: query.tag, substitution })); } break; case "21": substitution = lookup(contextParams.current); if (substitution) { substitutions.splice(currentIndex, 1, new SubstitutionAction({ id: 21, tag: query.tag, substitution })); } break; } contextParams = new ContextParams(substitutions, currentIndex); if (Array.isArray(substitution) && !substitution.length) { continue; } substitution = null; } } return substitutions.length ? substitutions : null; }; FeatureQuery.prototype.supports = function(query) { if (!query.script) { return false; } this.getScriptFeatures(query.script); var supportedScript = this.features.hasOwnProperty(query.script); if (!query.tag) { return supportedScript; } var supportedFeature = this.features[query.script].some(function(feature) { return feature.tag === query.tag; }); return supportedScript && supportedFeature; }; FeatureQuery.prototype.getLookupSubtables = function(lookupTable) { return lookupTable.subtables || null; }; FeatureQuery.prototype.getLookupByIndex = function(index) { var lookups = this.font.tables.gsub.lookups; return lookups[index] || null; }; FeatureQuery.prototype.getFeatureLookups = function(feature) { return feature.lookupListIndexes.map(this.getLookupByIndex.bind(this)); }; FeatureQuery.prototype.getFeature = function getFeature(query) { if (!this.font) { return { FAIL: "No font was found" }; } if (!this.features.hasOwnProperty(query.script)) { this.getScriptFeatures(query.script); } var scriptFeatures = this.features[query.script]; if (!scriptFeatures) { return { FAIL: "No feature for script " + query.script }; } if (!scriptFeatures.tags[query.tag]) { return null; } return this.features[query.script].tags[query.tag]; }; function arabicWordStartCheck(contextParams) { var char = contextParams.current; var prevChar = contextParams.get(-1); return ( // ? arabic first char prevChar === null && isArabicChar(char) || // ? arabic char preceded with a non arabic char !isArabicChar(prevChar) && isArabicChar(char) ); } function arabicWordEndCheck(contextParams) { var nextChar = contextParams.get(1); return ( // ? last arabic char nextChar === null || // ? next char is not arabic !isArabicChar(nextChar) ); } var arabicWordCheck = { startCheck: arabicWordStartCheck, endCheck: arabicWordEndCheck }; function arabicSentenceStartCheck(contextParams) { var char = contextParams.current; var prevChar = contextParams.get(-1); return ( // ? an arabic char preceded with a non arabic char (isArabicChar(char) || isTashkeelArabicChar(char)) && !isArabicChar(prevChar) ); } function arabicSentenceEndCheck(contextParams) { var nextChar = contextParams.get(1); switch (true) { case nextChar === null: return true; case (!isArabicChar(nextChar) && !isTashkeelArabicChar(nextChar)): var nextIsWhitespace = isWhiteSpace(nextChar); if (!nextIsWhitespace) { return true; } if (nextIsWhitespace) { var arabicCharAhead = false; arabicCharAhead = contextParams.lookahead.some( function(c2) { return isArabicChar(c2) || isTashkeelArabicChar(c2); } ); if (!arabicCharAhead) { return true; } } break; default: return false; } } var arabicSentenceCheck = { startCheck: arabicSentenceStartCheck, endCheck: arabicSentenceEndCheck }; function singleSubstitutionFormat1$1(action, tokens, index) { tokens[index].setState(action.tag, action.substitution); } function singleSubstitutionFormat2$1(action, tokens, index) { tokens[index].setState(action.tag, action.substitution); } function chainingSubstitutionFormat3$1(action, tokens, index) { action.substitution.forEach(function(subst, offset) { var token = tokens[index + offset]; token.setState(action.tag, subst); }); } function ligatureSubstitutionFormat1$1(action, tokens, index) { var token = tokens[index]; token.setState(action.tag, action.substitution.ligGlyph); var compsCount = action.substitution.components.length; for (var i = 0; i < compsCount; i++) { token = tokens[index + i + 1]; token.setState("deleted", true); } } var SUBSTITUTIONS = { 11: singleSubstitutionFormat1$1, 12: singleSubstitutionFormat2$1, 63: chainingSubstitutionFormat3$1, 41: ligatureSubstitutionFormat1$1 }; function applySubstitution(action, tokens, index) { if (action instanceof SubstitutionAction && SUBSTITUTIONS[action.id]) { SUBSTITUTIONS[action.id](action, tokens, index); } } function willConnectPrev(charContextParams) { var backtrack = [].concat(charContextParams.backtrack); for (var i = backtrack.length - 1; i >= 0; i--) { var prevChar = backtrack[i]; var isolated = isIsolatedArabicChar(prevChar); var tashkeel = isTashkeelArabicChar(prevChar); if (!isolated && !tashkeel) { return true; } if (isolated) { return false; } } return false; } function willConnectNext(charContextParams) { if (isIsolatedArabicChar(charContextParams.current)) { return false; } for (var i = 0; i < charContextParams.lookahead.length; i++) { var nextChar = charContextParams.lookahead[i]; var tashkeel = isTashkeelArabicChar(nextChar); if (!tashkeel) { return true; } } return false; } function arabicPresentationForms(range) { var this$1 = this; var script = "arab"; var tags = this.featuresTags[script]; var tokens = this.tokenizer.getRangeTokens(range); if (tokens.length === 1) { return; } var contextParams = new ContextParams( tokens.map( function(token) { return token.getState("glyphIndex"); } ), 0 ); var charContextParams = new ContextParams( tokens.map( function(token) { return token.char; } ), 0 ); tokens.forEach(function(token, index) { if (isTashkeelArabicChar(token.char)) { return; } contextParams.setCurrentIndex(index); charContextParams.setCurrentIndex(index); var CONNECT = 0; if (willConnectPrev(charContextParams)) { CONNECT |= 1; } if (willConnectNext(charContextParams)) { CONNECT |= 2; } var tag; switch (CONNECT) { case 1: tag = "fina"; break; case 2: tag = "init"; break; case 3: tag = "medi"; break; } if (tags.indexOf(tag) === -1) { return; } var substitutions = this$1.query.lookupFeature({ tag, script, contextParams }); if (substitutions instanceof Error) { return console.info(substitutions.message); } substitutions.forEach(function(action, index2) { if (action instanceof SubstitutionAction) { applySubstitution(action, tokens, index2); contextParams.context[index2] = action.substitution; } }); }); } function getContextParams(tokens, index) { var context = tokens.map(function(token) { return token.activeState.value; }); return new ContextParams(context, index || 0); } function arabicRequiredLigatures(range) { var this$1 = this; var script = "arab"; var tokens = this.tokenizer.getRangeTokens(range); var contextParams = getContextParams(tokens); contextParams.context.forEach(function(glyphIndex, index) { contextParams.setCurrentIndex(index); var substitutions = this$1.query.lookupFeature({ tag: "rlig", script, contextParams }); if (substitutions.length) { substitutions.forEach( function(action) { return applySubstitution(action, tokens, index); } ); contextParams = getContextParams(tokens); } }); } function latinWordStartCheck(contextParams) { var char = contextParams.current; var prevChar = contextParams.get(-1); return ( // ? latin first char prevChar === null && isLatinChar(char) || // ? latin char preceded with a non latin char !isLatinChar(prevChar) && isLatinChar(char) ); } function latinWordEndCheck(contextParams) { var nextChar = contextParams.get(1); return ( // ? last latin char nextChar === null || // ? next char is not latin !isLatinChar(nextChar) ); } var latinWordCheck = { startCheck: latinWordStartCheck, endCheck: latinWordEndCheck }; function getContextParams$1(tokens, index) { var context = tokens.map(function(token) { return token.activeState.value; }); return new ContextParams(context, index || 0); } function latinLigature(range) { var this$1 = this; var script = "latn"; var tokens = this.tokenizer.getRangeTokens(range); var contextParams = getContextParams$1(tokens); contextParams.context.forEach(function(glyphIndex, index) { contextParams.setCurrentIndex(index); var substitutions = this$1.query.lookupFeature({ tag: "liga", script, contextParams }); if (substitutions.length) { substitutions.forEach( function(action) { return applySubstitution(action, tokens, index); } ); contextParams = getContextParams$1(tokens); } }); } function Bidi(baseDir) { this.baseDir = baseDir || "ltr"; this.tokenizer = new Tokenizer(); this.featuresTags = {}; } Bidi.prototype.setText = function(text) { this.text = text; }; Bidi.prototype.contextChecks = { latinWordCheck, arabicWordCheck, arabicSentenceCheck }; function registerContextChecker(checkId) { var check2 = this.contextChecks[checkId + "Check"]; return this.tokenizer.registerContextChecker( checkId, check2.startCheck, check2.endCheck ); } function tokenizeText() { registerContextChecker.call(this, "latinWord"); registerContextChecker.call(this, "arabicWord"); registerContextChecker.call(this, "arabicSentence"); return this.tokenizer.tokenize(this.text); } function reverseArabicSentences() { var this$1 = this; var ranges = this.tokenizer.getContextRanges("arabicSentence"); ranges.forEach(function(range) { var rangeTokens = this$1.tokenizer.getRangeTokens(range); this$1.tokenizer.replaceRange( range.startIndex, range.endOffset, rangeTokens.reverse() ); }); } Bidi.prototype.registerFeatures = function(script, tags) { var this$1 = this; var supportedTags = tags.filter( function(tag) { return this$1.query.supports({ script, tag }); } ); if (!this.featuresTags.hasOwnProperty(script)) { this.featuresTags[script] = supportedTags; } else { this.featuresTags[script] = this.featuresTags[script].concat(supportedTags); } }; Bidi.prototype.applyFeatures = function(font, features) { if (!font) { throw new Error( "No valid font was provided to apply features" ); } if (!this.query) { this.query = new FeatureQuery(font); } for (var f = 0; f < features.length; f++) { var feature = features[f]; if (!this.query.supports({ script: feature.script })) { continue; } this.registerFeatures(feature.script, feature.tags); } }; Bidi.prototype.registerModifier = function(modifierId, condition, modifier) { this.tokenizer.registerModifier(modifierId, condition, modifier); }; function checkGlyphIndexStatus() { if (this.tokenizer.registeredModifiers.indexOf("glyphIndex") === -1) { throw new Error( "glyphIndex modifier is required to apply arabic presentation features." ); } } function applyArabicPresentationForms() { var this$1 = this; var script = "arab"; if (!this.featuresTags.hasOwnProperty(script)) { return; } checkGlyphIndexStatus.call(this); var ranges = this.tokenizer.getContextRanges("arabicWord"); ranges.forEach(function(range) { arabicPresentationForms.call(this$1, range); }); } function applyArabicRequireLigatures() { var this$1 = this; var script = "arab"; if (!this.featuresTags.hasOwnProperty(script)) { return; } var tags = this.featuresTags[script]; if (tags.indexOf("rlig") === -1) { return; } checkGlyphIndexStatus.call(this); var ranges = this.tokenizer.getContextRanges("arabicWord"); ranges.forEach(function(range) { arabicRequiredLigatures.call(this$1, range); }); } function applyLatinLigatures() { var this$1 = this; var script = "latn"; if (!this.featuresTags.hasOwnProperty(script)) { return; } var tags = this.featuresTags[script]; if (tags.indexOf("liga") === -1) { return; } checkGlyphIndexStatus.call(this); var ranges = this.tokenizer.getContextRanges("latinWord"); ranges.forEach(function(range) { latinLigature.call(this$1, range); }); } Bidi.prototype.checkContextReady = function(contextId) { return !!this.tokenizer.getContext(contextId); }; Bidi.prototype.applyFeaturesToContexts = function() { if (this.checkContextReady("arabicWord")) { applyArabicPresentationForms.call(this); applyArabicRequireLigatures.call(this); } if (this.checkContextReady("latinWord")) { applyLatinLigatures.call(this); } if (this.checkContextReady("arabicSentence")) { reverseArabicSentences.call(this); } }; Bidi.prototype.processText = function(text) { if (!this.text || this.text !== text) { this.setText(text); tokenizeText.call(this); this.applyFeaturesToContexts(); } }; Bidi.prototype.getBidiText = function(text) { this.processText(text); return this.tokenizer.getText(); }; Bidi.prototype.getTextGlyphs = function(text) { this.processText(text); var indexes = []; for (var i = 0; i < this.tokenizer.tokens.length; i++) { var token = this.tokenizer.tokens[i]; if (token.state.deleted) { continue; } var index = token.activeState.value; indexes.push(Array.isArray(index) ? index[0] : index); } return indexes; }; function Font(options) { options = options || {}; options.tables = options.tables || {}; if (!options.empty) { checkArgument( options.familyName, "When creating a new Font object, familyName is required." ); checkArgument( options.styleName, "When creating a new Font object, styleName is required." ); checkArgument( options.unitsPerEm, "When creating a new Font object, unitsPerEm is required." ); checkArgument( options.ascender, "When creating a new Font object, ascender is required." ); checkArgument( options.descender <= 0, "When creating a new Font object, negative descender value is required." ); this.unitsPerEm = options.unitsPerEm || 1e3; this.ascender = options.ascender; this.descender = options.descender; this.createdTimestamp = options.createdTimestamp; this.tables = Object.assign(options.tables, { os2: Object.assign( { usWeightClass: options.weightClass || this.usWeightClasses.MEDIUM, usWidthClass: options.widthClass || this.usWidthClasses.MEDIUM, fsSelection: options.fsSelection || this.fsSelectionValues.REGULAR }, options.tables.os2 ) }); } this.supported = true; this.glyphs = new glyphset.GlyphSet(this, options.glyphs || []); this.encoding = new DefaultEncoding(this); this.position = new Position(this); this.substitution = new Substitution(this); this.tables = this.tables || {}; this._push = null; this._hmtxTableData = {}; Object.defineProperty(this, "hinting", { get: function() { if (this._hinting) { return this._hinting; } if (this.outlinesFormat === "truetype") { return this._hinting = new Hinting(this); } } }); } Font.prototype.hasChar = function(c2) { return this.encoding.charToGlyphIndex(c2) !== null; }; Font.prototype.charToGlyphIndex = function(s) { return this.encoding.charToGlyphIndex(s); }; Font.prototype.charToGlyph = function(c2) { var glyphIndex = this.charToGlyphIndex(c2); var glyph = this.glyphs.get(glyphIndex); if (!glyph) { glyph = this.glyphs.get(0); } return glyph; }; Font.prototype.updateFeatures = function(options) { return this.defaultRenderOptions.features.map(function(feature) { if (feature.script === "latn") { return { script: "latn", tags: feature.tags.filter(function(tag) { return options[tag]; }) }; } else { return feature; } }); }; Font.prototype.stringToGlyphs = function(s, options) { var this$1 = this; var bidi = new Bidi(); var charToGlyphIndexMod = function(token) { return this$1.charToGlyphIndex(token.char); }; bidi.registerModifier("glyphIndex", null, charToGlyphIndexMod); var features = options ? this.updateFeatures(options.features) : this.defaultRenderOptions.features; bidi.applyFeatures(this, features); var indexes = bidi.getTextGlyphs(s); var length = indexes.length; var glyphs = new Array(length); var notdef = this.glyphs.get(0); for (var i = 0; i < length; i += 1) { glyphs[i] = this.glyphs.get(indexes[i]) || notdef; } return glyphs; }; Font.prototype.getKerningValue = function(leftGlyph, rightGlyph) { leftGlyph = leftGlyph.index || leftGlyph; rightGlyph = rightGlyph.index || rightGlyph; var gposKerning = this.position.defaultKerningTables; if (gposKerning) { return this.position.getKerningValue( gposKerning, leftGlyph, rightGlyph ); } return this.kerningPairs[leftGlyph + "," + rightGlyph] || 0; }; Font.prototype.defaultRenderOptions = { kerning: true, features: [ /** * these 4 features are required to render Arabic text properly * and shouldn't be turned off when rendering arabic text. */ { script: "arab", tags: ["init", "medi", "fina", "rlig"] }, { script: "latn", tags: ["liga", "rlig"] } ] }; Font.prototype.forEachGlyph = function(text, x2, y, fontSize, options, callback) { x2 = x2 !== void 0 ? x2 : 0; y = y !== void 0 ? y : 0; fontSize = fontSize !== void 0 ? fontSize : 72; options = Object.assign({}, this.defaultRenderOptions, options); var fontScale = 1 / this.unitsPerEm * fontSize; var glyphs = this.stringToGlyphs(text, options); var kerningLookups; if (options.kerning) { var script = options.script || this.position.getDefaultScriptName(); kerningLookups = this.position.getKerningTables( script, options.language ); } for (var i = 0; i < glyphs.length; i += 1) { var glyph = glyphs[i]; callback.call(this, glyph, x2, y, fontSize, options); if (glyph.advanceWidth) { x2 += glyph.advanceWidth * fontScale; } if (options.kerning && i < glyphs.length - 1) { var kerningValue = kerningLookups ? this.position.getKerningValue( kerningLookups, glyph.index, glyphs[i + 1].index ) : this.getKerningValue(glyph, glyphs[i + 1]); x2 += kerningValue * fontScale; } if (options.letterSpacing) { x2 += options.letterSpacing * fontSize; } else if (options.tracking) { x2 += options.tracking / 1e3 * fontSize; } } return x2; }; Font.prototype.getPath = function(text, x2, y, fontSize, options) { var fullPath = new Path(); this.forEachGlyph( text, x2, y, fontSize, options, function(glyph, gX, gY, gFontSize) { var glyphPath = glyph.getPath(gX, gY, gFontSize, options, this); fullPath.extend(glyphPath); } ); return fullPath; }; Font.prototype.getPaths = function(text, x2, y, fontSize, options) { var glyphPaths = []; this.forEachGlyph( text, x2, y, fontSize, options, function(glyph, gX, gY, gFontSize) { var glyphPath = glyph.getPath(gX, gY, gFontSize, options, this); glyphPaths.push(glyphPath); } ); return glyphPaths; }; Font.prototype.getAdvanceWidth = function(text, fontSize, options) { return this.forEachGlyph(text, 0, 0, fontSize, options, function() { }); }; Font.prototype.fsSelectionValues = { ITALIC: 1, //1 UNDERSCORE: 2, //2 NEGATIVE: 4, //4 OUTLINED: 8, //8 STRIKEOUT: 16, //16 BOLD: 32, //32 REGULAR: 64, //64 USER_TYPO_METRICS: 128, //128 WWS: 256, //256 OBLIQUE: 512 //512 }; Font.prototype.usWidthClasses = { ULTRA_CONDENSED: 1, EXTRA_CONDENSED: 2, CONDENSED: 3, SEMI_CONDENSED: 4, MEDIUM: 5, SEMI_EXPANDED: 6, EXPANDED: 7, EXTRA_EXPANDED: 8, ULTRA_EXPANDED: 9 }; Font.prototype.usWeightClasses = { THIN: 100, EXTRA_LIGHT: 200, LIGHT: 300, NORMAL: 400, MEDIUM: 500, SEMI_BOLD: 600, BOLD: 700, EXTRA_BOLD: 800, BLACK: 900 }; function parseCmapTableFormat12(cmap2, p) { p.parseUShort(); cmap2.length = p.parseULong(); cmap2.language = p.parseULong(); var groupCount; cmap2.groupCount = groupCount = p.parseULong(); cmap2.glyphIndexMap = {}; for (var i = 0; i < groupCount; i += 1) { var startCharCode = p.parseULong(); var endCharCode = p.parseULong(); var startGlyphId = p.parseULong(); for (var c2 = startCharCode; c2 <= endCharCode; c2 += 1) { cmap2.glyphIndexMap[c2] = startGlyphId; startGlyphId++; } } } function parseCmapTableFormat4(cmap2, p, data, start, offset) { cmap2.length = p.parseUShort(); cmap2.language = p.parseUShort(); var segCount; cmap2.segCount = segCount = p.parseUShort() >> 1; p.skip("uShort", 3); cmap2.glyphIndexMap = {}; var endCountParser = new parse.Parser(data, start + offset + 14); var startCountParser = new parse.Parser( data, start + offset + 16 + segCount * 2 ); var idDeltaParser = new parse.Parser( data, start + offset + 16 + segCount * 4 ); var idRangeOffsetParser = new parse.Parser( data, start + offset + 16 + segCount * 6 ); var glyphIndexOffset = start + offset + 16 + segCount * 8; for (var i = 0; i < segCount - 1; i += 1) { var glyphIndex = void 0; var endCount = endCountParser.parseUShort(); var startCount = startCountParser.parseUShort(); var idDelta = idDeltaParser.parseShort(); var idRangeOffset = idRangeOffsetParser.parseUShort(); for (var c2 = startCount; c2 <= endCount; c2 += 1) { if (idRangeOffset !== 0) { glyphIndexOffset = idRangeOffsetParser.offset + idRangeOffsetParser.relativeOffset - 2; glyphIndexOffset += idRangeOffset; glyphIndexOffset += (c2 - startCount) * 2; glyphIndex = parse.getUShort(data, glyphIndexOffset); if (glyphIndex !== 0) { glyphIndex = glyphIndex + idDelta & 65535; } } else { glyphIndex = c2 + idDelta & 65535; } cmap2.glyphIndexMap[c2] = glyphIndex; } } } function parseCmapTable(data, start) { var cmap2 = {}; cmap2.version = parse.getUShort(data, start); check.argument(cmap2.version === 0, "cmap table version should be 0."); cmap2.numTables = parse.getUShort(data, start + 2); var offset = -1; for (var i = cmap2.numTables - 1; i >= 0; i -= 1) { var platformId = parse.getUShort(data, start + 4 + i * 8); var encodingId = parse.getUShort(data, start + 4 + i * 8 + 2); if (platformId === 3 && (encodingId === 0 || encodingId === 1 || encodingId === 10) || platformId === 0 && (encodingId === 0 || encodingId === 1 || encodingId === 2 || encodingId === 3 || encodingId === 4)) { offset = parse.getULong(data, start + 4 + i * 8 + 4); break; } } if (offset === -1) { throw new Error("No valid cmap sub-tables found."); } var p = new parse.Parser(data, start + offset); cmap2.format = p.parseUShort(); if (cmap2.format === 12) { parseCmapTableFormat12(cmap2, p); } else if (cmap2.format === 4) { parseCmapTableFormat4(cmap2, p, data, start, offset); } else { throw new Error( "Only format 4 and 12 cmap tables are supported (found format " + cmap2.format + ")." ); } return cmap2; } var cmap = { parse: parseCmapTable }; function calcCFFSubroutineBias(subrs) { var bias; if (subrs.length < 1240) { bias = 107; } else if (subrs.length < 33900) { bias = 1131; } else { bias = 32768; } return bias; } function parseCFFIndex(data, start, conversionFn) { var offsets = []; var objects = []; var count = parse.getCard16(data, start); var objectOffset; var endOffset; if (count !== 0) { var offsetSize = parse.getByte(data, start + 2); objectOffset = start + (count + 1) * offsetSize + 2; var pos = start + 3; for (var i = 0; i < count + 1; i += 1) { offsets.push(parse.getOffset(data, pos, offsetSize)); pos += offsetSize; } endOffset = objectOffset + offsets[count]; } else { endOffset = start + 2; } for (var i$1 = 0; i$1 < offsets.length - 1; i$1 += 1) { var value = parse.getBytes( data, objectOffset + offsets[i$1], objectOffset + offsets[i$1 + 1] ); if (conversionFn) { value = conversionFn(value); } objects.push(value); } return { objects, startOffset: start, endOffset }; } function parseCFFIndexLowMemory(data, start) { var offsets = []; var count = parse.getCard16(data, start); var objectOffset; var endOffset; if (count !== 0) { var offsetSize = parse.getByte(data, start + 2); objectOffset = start + (count + 1) * offsetSize + 2; var pos = start + 3; for (var i = 0; i < count + 1; i += 1) { offsets.push(parse.getOffset(data, pos, offsetSize)); pos += offsetSize; } endOffset = objectOffset + offsets[count]; } else { endOffset = start + 2; } return { offsets, startOffset: start, endOffset }; } function getCffIndexObject(i, offsets, data, start, conversionFn) { var count = parse.getCard16(data, start); var objectOffset = 0; if (count !== 0) { var offsetSize = parse.getByte(data, start + 2); objectOffset = start + (count + 1) * offsetSize + 2; } var value = parse.getBytes( data, objectOffset + offsets[i], objectOffset + offsets[i + 1] ); if (conversionFn) { value = conversionFn(value); } return value; } function parseFloatOperand(parser) { var s = ""; var eof = 15; var lookup = [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ".", "E", "E-", null, "-" ]; while (true) { var b = parser.parseByte(); var n1 = b >> 4; var n2 = b & 15; if (n1 === eof) { break; } s += lookup[n1]; if (n2 === eof) { break; } s += lookup[n2]; } return parseFloat(s); } function parseOperand(parser, b0) { var b1; var b2; var b3; var b4; if (b0 === 28) { b1 = parser.parseByte(); b2 = parser.parseByte(); return b1 << 8 | b2; } if (b0 === 29) { b1 = parser.parseByte(); b2 = parser.parseByte(); b3 = parser.parseByte(); b4 = parser.parseByte(); return b1 << 24 | b2 << 16 | b3 << 8 | b4; } if (b0 === 30) { return parseFloatOperand(parser); } if (b0 >= 32 && b0 <= 246) { return b0 - 139; } if (b0 >= 247 && b0 <= 250) { b1 = parser.parseByte(); return (b0 - 247) * 256 + b1 + 108; } if (b0 >= 251 && b0 <= 254) { b1 = parser.parseByte(); return -(b0 - 251) * 256 - b1 - 108; } throw new Error("Invalid b0 " + b0); } function entriesToObject(entries) { var o = {}; for (var i = 0; i < entries.length; i += 1) { var key = entries[i][0]; var values = entries[i][1]; var value = void 0; if (values.length === 1) { value = values[0]; } else { value = values; } if (o.hasOwnProperty(key) && !isNaN(o[key])) { throw new Error("Object " + o + " already has key " + key); } o[key] = value; } return o; } function parseCFFDict(data, start, size) { start = start !== void 0 ? start : 0; var parser = new parse.Parser(data, start); var entries = []; var operands = []; size = size !== void 0 ? size : data.length; while (parser.relativeOffset < size) { var op = parser.parseByte(); if (op <= 21) { if (op === 12) { op = 1200 + parser.parseByte(); } entries.push([op, operands]); operands = []; } else { operands.push(parseOperand(parser, op)); } } return entriesToObject(entries); } function getCFFString(strings, index) { if (index <= 390) { index = cffStandardStrings[index]; } else { index = strings[index - 391]; } return index; } function interpretDict(dict, meta2, strings) { var newDict = {}; var value; for (var i = 0; i < meta2.length; i += 1) { var m2 = meta2[i]; if (Array.isArray(m2.type)) { var values = []; values.length = m2.type.length; for (var j = 0; j < m2.type.length; j++) { value = dict[m2.op] !== void 0 ? dict[m2.op][j] : void 0; if (value === void 0) { value = m2.value !== void 0 && m2.value[j] !== void 0 ? m2.value[j] : null; } if (m2.type[j] === "SID") { value = getCFFString(strings, value); } values[j] = value; } newDict[m2.name] = values; } else { value = dict[m2.op]; if (value === void 0) { value = m2.value !== void 0 ? m2.value : null; } if (m2.type === "SID") { value = getCFFString(strings, value); } newDict[m2.name] = value; } } return newDict; } function parseCFFHeader(data, start) { var header = {}; header.formatMajor = parse.getCard8(data, start); header.formatMinor = parse.getCard8(data, start + 1); header.size = parse.getCard8(data, start + 2); header.offsetSize = parse.getCard8(data, start + 3); header.startOffset = start; header.endOffset = start + 4; return header; } var TOP_DICT_META = [ { name: "version", op: 0, type: "SID" }, { name: "notice", op: 1, type: "SID" }, { name: "copyright", op: 1200, type: "SID" }, { name: "fullName", op: 2, type: "SID" }, { name: "familyName", op: 3, type: "SID" }, { name: "weight", op: 4, type: "SID" }, { name: "isFixedPitch", op: 1201, type: "number", value: 0 }, { name: "italicAngle", op: 1202, type: "number", value: 0 }, { name: "underlinePosition", op: 1203, type: "number", value: -100 }, { name: "underlineThickness", op: 1204, type: "number", value: 50 }, { name: "paintType", op: 1205, type: "number", value: 0 }, { name: "charstringType", op: 1206, type: "number", value: 2 }, { name: "fontMatrix", op: 1207, type: ["real", "real", "real", "real", "real", "real"], value: [1e-3, 0, 0, 1e-3, 0, 0] }, { name: "uniqueId", op: 13, type: "number" }, { name: "fontBBox", op: 5, type: ["number", "number", "number", "number"], value: [0, 0, 0, 0] }, { name: "strokeWidth", op: 1208, type: "number", value: 0 }, { name: "xuid", op: 14, type: [], value: null }, { name: "charset", op: 15, type: "offset", value: 0 }, { name: "encoding", op: 16, type: "offset", value: 0 }, { name: "charStrings", op: 17, type: "offset", value: 0 }, { name: "private", op: 18, type: ["number", "offset"], value: [0, 0] }, { name: "ros", op: 1230, type: ["SID", "SID", "number"] }, { name: "cidFontVersion", op: 1231, type: "number", value: 0 }, { name: "cidFontRevision", op: 1232, type: "number", value: 0 }, { name: "cidFontType", op: 1233, type: "number", value: 0 }, { name: "cidCount", op: 1234, type: "number", value: 8720 }, { name: "uidBase", op: 1235, type: "number" }, { name: "fdArray", op: 1236, type: "offset" }, { name: "fdSelect", op: 1237, type: "offset" }, { name: "fontName", op: 1238, type: "SID" } ]; var PRIVATE_DICT_META = [ { name: "subrs", op: 19, type: "offset", value: 0 }, { name: "defaultWidthX", op: 20, type: "number", value: 0 }, { name: "nominalWidthX", op: 21, type: "number", value: 0 } ]; function parseCFFTopDict(data, strings) { var dict = parseCFFDict(data, 0, data.byteLength); return interpretDict(dict, TOP_DICT_META, strings); } function parseCFFPrivateDict(data, start, size, strings) { var dict = parseCFFDict(data, start, size); return interpretDict(dict, PRIVATE_DICT_META, strings); } function gatherCFFTopDicts(data, start, cffIndex, strings) { var topDictArray = []; for (var iTopDict = 0; iTopDict < cffIndex.length; iTopDict += 1) { var topDictData = new DataView( new Uint8Array(cffIndex[iTopDict]).buffer ); var topDict = parseCFFTopDict(topDictData, strings); topDict._subrs = []; topDict._subrsBias = 0; topDict._defaultWidthX = 0; topDict._nominalWidthX = 0; var privateSize = topDict.private[0]; var privateOffset = topDict.private[1]; if (privateSize !== 0 && privateOffset !== 0) { var privateDict = parseCFFPrivateDict( data, privateOffset + start, privateSize, strings ); topDict._defaultWidthX = privateDict.defaultWidthX; topDict._nominalWidthX = privateDict.nominalWidthX; if (privateDict.subrs !== 0) { var subrOffset = privateOffset + privateDict.subrs; var subrIndex = parseCFFIndex(data, subrOffset + start); topDict._subrs = subrIndex.objects; topDict._subrsBias = calcCFFSubroutineBias(topDict._subrs); } topDict._privateDict = privateDict; } topDictArray.push(topDict); } return topDictArray; } function parseCFFCharset(data, start, nGlyphs, strings) { var sid; var count; var parser = new parse.Parser(data, start); nGlyphs -= 1; var charset = [".notdef"]; var format = parser.parseCard8(); if (format === 0) { for (var i = 0; i < nGlyphs; i += 1) { sid = parser.parseSID(); charset.push(getCFFString(strings, sid)); } } else if (format === 1) { while (charset.length <= nGlyphs) { sid = parser.parseSID(); count = parser.parseCard8(); for (var i$1 = 0; i$1 <= count; i$1 += 1) { charset.push(getCFFString(strings, sid)); sid += 1; } } } else if (format === 2) { while (charset.length <= nGlyphs) { sid = parser.parseSID(); count = parser.parseCard16(); for (var i$2 = 0; i$2 <= count; i$2 += 1) { charset.push(getCFFString(strings, sid)); sid += 1; } } } else { throw new Error("Unknown charset format " + format); } return charset; } function parseCFFEncoding(data, start, charset) { var code; var enc = {}; var parser = new parse.Parser(data, start); var format = parser.parseCard8(); if (format === 0) { var nCodes = parser.parseCard8(); for (var i = 0; i < nCodes; i += 1) { code = parser.parseCard8(); enc[code] = i; } } else if (format === 1) { var nRanges = parser.parseCard8(); code = 1; for (var i$1 = 0; i$1 < nRanges; i$1 += 1) { var first = parser.parseCard8(); var nLeft = parser.parseCard8(); for (var j = first; j <= first + nLeft; j += 1) { enc[j] = code; code += 1; } } } else { throw new Error("Unknown encoding format " + format); } return new CffEncoding(enc, charset); } function parseCFFCharstring(font, glyph, code) { var c1x; var c1y; var c2x; var c2y; var p = new Path(); var stack = []; var nStems = 0; var haveWidth = false; var open = false; var x2 = 0; var y = 0; var subrs; var subrsBias; var defaultWidthX; var nominalWidthX; if (font.isCIDFont) { var fdIndex = font.tables.cff.topDict._fdSelect[glyph.index]; var fdDict = font.tables.cff.topDict._fdArray[fdIndex]; subrs = fdDict._subrs; subrsBias = fdDict._subrsBias; defaultWidthX = fdDict._defaultWidthX; nominalWidthX = fdDict._nominalWidthX; } else { subrs = font.tables.cff.topDict._subrs; subrsBias = font.tables.cff.topDict._subrsBias; defaultWidthX = font.tables.cff.topDict._defaultWidthX; nominalWidthX = font.tables.cff.topDict._nominalWidthX; } var width = defaultWidthX; function newContour(x3, y2) { if (open) { p.closePath(); } p.moveTo(x3, y2); open = true; } function parseStems() { var hasWidthArg; hasWidthArg = stack.length % 2 !== 0; if (hasWidthArg && !haveWidth) { width = stack.shift() + nominalWidthX; } nStems += stack.length >> 1; stack.length = 0; haveWidth = true; } function parse2(code2) { var b1; var b2; var b3; var b4; var codeIndex; var subrCode; var jpx; var jpy; var c3x; var c3y; var c4x; var c4y; var i = 0; while (i < code2.length) { var v2 = code2[i]; i += 1; switch (v2) { case 1: parseStems(); break; case 3: parseStems(); break; case 4: if (stack.length > 1 && !haveWidth) { width = stack.shift() + nominalWidthX; haveWidth = true; } y += stack.pop(); newContour(x2, y); break; case 5: while (stack.length > 0) { x2 += stack.shift(); y += stack.shift(); p.lineTo(x2, y); } break; case 6: while (stack.length > 0) { x2 += stack.shift(); p.lineTo(x2, y); if (stack.length === 0) { break; } y += stack.shift(); p.lineTo(x2, y); } break; case 7: while (stack.length > 0) { y += stack.shift(); p.lineTo(x2, y); if (stack.length === 0) { break; } x2 += stack.shift(); p.lineTo(x2, y); } break; case 8: while (stack.length > 0) { c1x = x2 + stack.shift(); c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x + stack.shift(); y = c2y + stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, x2, y); } break; case 10: codeIndex = stack.pop() + subrsBias; subrCode = subrs[codeIndex]; if (subrCode) { parse2(subrCode); } break; case 11: return; case 12: v2 = code2[i]; i += 1; switch (v2) { case 35: c1x = x2 + stack.shift(); c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); jpx = c2x + stack.shift(); jpy = c2y + stack.shift(); c3x = jpx + stack.shift(); c3y = jpy + stack.shift(); c4x = c3x + stack.shift(); c4y = c3y + stack.shift(); x2 = c4x + stack.shift(); y = c4y + stack.shift(); stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, jpx, jpy); p.curveTo(c3x, c3y, c4x, c4y, x2, y); break; case 34: c1x = x2 + stack.shift(); c1y = y; c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); jpx = c2x + stack.shift(); jpy = c2y; c3x = jpx + stack.shift(); c3y = c2y; c4x = c3x + stack.shift(); c4y = y; x2 = c4x + stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, jpx, jpy); p.curveTo(c3x, c3y, c4x, c4y, x2, y); break; case 36: c1x = x2 + stack.shift(); c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); jpx = c2x + stack.shift(); jpy = c2y; c3x = jpx + stack.shift(); c3y = c2y; c4x = c3x + stack.shift(); c4y = c3y + stack.shift(); x2 = c4x + stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, jpx, jpy); p.curveTo(c3x, c3y, c4x, c4y, x2, y); break; case 37: c1x = x2 + stack.shift(); c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); jpx = c2x + stack.shift(); jpy = c2y + stack.shift(); c3x = jpx + stack.shift(); c3y = jpy + stack.shift(); c4x = c3x + stack.shift(); c4y = c3y + stack.shift(); if (Math.abs(c4x - x2) > Math.abs(c4y - y)) { x2 = c4x + stack.shift(); } else { y = c4y + stack.shift(); } p.curveTo(c1x, c1y, c2x, c2y, jpx, jpy); p.curveTo(c3x, c3y, c4x, c4y, x2, y); break; default: console.log( "Glyph " + glyph.index + ": unknown operator 1200" + v2 ); stack.length = 0; } break; case 14: if (stack.length > 0 && !haveWidth) { width = stack.shift() + nominalWidthX; haveWidth = true; } if (open) { p.closePath(); open = false; } break; case 18: parseStems(); break; case 19: case 20: parseStems(); i += nStems + 7 >> 3; break; case 21: if (stack.length > 2 && !haveWidth) { width = stack.shift() + nominalWidthX; haveWidth = true; } y += stack.pop(); x2 += stack.pop(); newContour(x2, y); break; case 22: if (stack.length > 1 && !haveWidth) { width = stack.shift() + nominalWidthX; haveWidth = true; } x2 += stack.pop(); newContour(x2, y); break; case 23: parseStems(); break; case 24: while (stack.length > 2) { c1x = x2 + stack.shift(); c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x + stack.shift(); y = c2y + stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, x2, y); } x2 += stack.shift(); y += stack.shift(); p.lineTo(x2, y); break; case 25: while (stack.length > 6) { x2 += stack.shift(); y += stack.shift(); p.lineTo(x2, y); } c1x = x2 + stack.shift(); c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x + stack.shift(); y = c2y + stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, x2, y); break; case 26: if (stack.length % 2) { x2 += stack.shift(); } while (stack.length > 0) { c1x = x2; c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x; y = c2y + stack.shift(); p.curveTo(c1x, c1y, c2x, c2y, x2, y); } break; case 27: if (stack.length % 2) { y += stack.shift(); } while (stack.length > 0) { c1x = x2 + stack.shift(); c1y = y; c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x + stack.shift(); y = c2y; p.curveTo(c1x, c1y, c2x, c2y, x2, y); } break; case 28: b1 = code2[i]; b2 = code2[i + 1]; stack.push((b1 << 24 | b2 << 16) >> 16); i += 2; break; case 29: codeIndex = stack.pop() + font.gsubrsBias; subrCode = font.gsubrs[codeIndex]; if (subrCode) { parse2(subrCode); } break; case 30: while (stack.length > 0) { c1x = x2; c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x + stack.shift(); y = c2y + (stack.length === 1 ? stack.shift() : 0); p.curveTo(c1x, c1y, c2x, c2y, x2, y); if (stack.length === 0) { break; } c1x = x2 + stack.shift(); c1y = y; c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); y = c2y + stack.shift(); x2 = c2x + (stack.length === 1 ? stack.shift() : 0); p.curveTo(c1x, c1y, c2x, c2y, x2, y); } break; case 31: while (stack.length > 0) { c1x = x2 + stack.shift(); c1y = y; c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); y = c2y + stack.shift(); x2 = c2x + (stack.length === 1 ? stack.shift() : 0); p.curveTo(c1x, c1y, c2x, c2y, x2, y); if (stack.length === 0) { break; } c1x = x2; c1y = y + stack.shift(); c2x = c1x + stack.shift(); c2y = c1y + stack.shift(); x2 = c2x + stack.shift(); y = c2y + (stack.length === 1 ? stack.shift() : 0); p.curveTo(c1x, c1y, c2x, c2y, x2, y); } break; default: if (v2 < 32) { console.log( "Glyph " + glyph.index + ": unknown operator " + v2 ); } else if (v2 < 247) { stack.push(v2 - 139); } else if (v2 < 251) { b1 = code2[i]; i += 1; stack.push((v2 - 247) * 256 + b1 + 108); } else if (v2 < 255) { b1 = code2[i]; i += 1; stack.push(-(v2 - 251) * 256 - b1 - 108); } else { b1 = code2[i]; b2 = code2[i + 1]; b3 = code2[i + 2]; b4 = code2[i + 3]; i += 4; stack.push( (b1 << 24 | b2 << 16 | b3 << 8 | b4) / 65536 ); } } } } parse2(code); glyph.advanceWidth = width; return p; } function parseCFFFDSelect(data, start, nGlyphs, fdArrayCount) { var fdSelect = []; var fdIndex; var parser = new parse.Parser(data, start); var format = parser.parseCard8(); if (format === 0) { for (var iGid = 0; iGid < nGlyphs; iGid++) { fdIndex = parser.parseCard8(); if (fdIndex >= fdArrayCount) { throw new Error( "CFF table CID Font FDSelect has bad FD index value " + fdIndex + " (FD count " + fdArrayCount + ")" ); } fdSelect.push(fdIndex); } } else if (format === 3) { var nRanges = parser.parseCard16(); var first = parser.parseCard16(); if (first !== 0) { throw new Error( "CFF Table CID Font FDSelect format 3 range has bad initial GID " + first ); } var next; for (var iRange = 0; iRange < nRanges; iRange++) { fdIndex = parser.parseCard8(); next = parser.parseCard16(); if (fdIndex >= fdArrayCount) { throw new Error( "CFF table CID Font FDSelect has bad FD index value " + fdIndex + " (FD count " + fdArrayCount + ")" ); } if (next > nGlyphs) { throw new Error( "CFF Table CID Font FDSelect format 3 range has bad GID " + next ); } for (; first < next; first++) { fdSelect.push(fdIndex); } first = next; } if (next !== nGlyphs) { throw new Error( "CFF Table CID Font FDSelect format 3 range has bad final GID " + next ); } } else { throw new Error( "CFF Table CID Font FDSelect table has unsupported format " + format ); } return fdSelect; } function parseCFFTable(data, start, font, opt) { font.tables.cff = {}; var header = parseCFFHeader(data, start); var nameIndex = parseCFFIndex( data, header.endOffset, parse.bytesToString ); var topDictIndex = parseCFFIndex(data, nameIndex.endOffset); var stringIndex = parseCFFIndex( data, topDictIndex.endOffset, parse.bytesToString ); var globalSubrIndex = parseCFFIndex(data, stringIndex.endOffset); font.gsubrs = globalSubrIndex.objects; font.gsubrsBias = calcCFFSubroutineBias(font.gsubrs); var topDictArray = gatherCFFTopDicts( data, start, topDictIndex.objects, stringIndex.objects ); if (topDictArray.length !== 1) { throw new Error( "CFF table has too many fonts in 'FontSet' - count of fonts NameIndex.length = " + topDictArray.length ); } var topDict = topDictArray[0]; font.tables.cff.topDict = topDict; if (topDict._privateDict) { font.defaultWidthX = topDict._privateDict.defaultWidthX; font.nominalWidthX = topDict._privateDict.nominalWidthX; } if (topDict.ros[0] !== void 0 && topDict.ros[1] !== void 0) { font.isCIDFont = true; } if (font.isCIDFont) { var fdArrayOffset = topDict.fdArray; var fdSelectOffset = topDict.fdSelect; if (fdArrayOffset === 0 || fdSelectOffset === 0) { throw new Error( "Font is marked as a CID font, but FDArray and/or FDSelect information is missing" ); } fdArrayOffset += start; var fdArrayIndex = parseCFFIndex(data, fdArrayOffset); var fdArray = gatherCFFTopDicts( data, start, fdArrayIndex.objects, stringIndex.objects ); topDict._fdArray = fdArray; fdSelectOffset += start; topDict._fdSelect = parseCFFFDSelect( data, fdSelectOffset, font.numGlyphs, fdArray.length ); } var privateDictOffset = start + topDict.private[1]; var privateDict = parseCFFPrivateDict( data, privateDictOffset, topDict.private[0], stringIndex.objects ); font.defaultWidthX = privateDict.defaultWidthX; font.nominalWidthX = privateDict.nominalWidthX; if (privateDict.subrs !== 0) { var subrOffset = privateDictOffset + privateDict.subrs; var subrIndex = parseCFFIndex(data, subrOffset); font.subrs = subrIndex.objects; font.subrsBias = calcCFFSubroutineBias(font.subrs); } else { font.subrs = []; font.subrsBias = 0; } var charStringsIndex; if (opt.lowMemory) { charStringsIndex = parseCFFIndexLowMemory( data, start + topDict.charStrings ); font.nGlyphs = charStringsIndex.offsets.length; } else { charStringsIndex = parseCFFIndex(data, start + topDict.charStrings); font.nGlyphs = charStringsIndex.objects.length; } var charset = parseCFFCharset( data, start + topDict.charset, font.nGlyphs, stringIndex.objects ); if (topDict.encoding === 0) { font.cffEncoding = new CffEncoding(cffStandardEncoding, charset); } else if (topDict.encoding === 1) { font.cffEncoding = new CffEncoding(cffExpertEncoding, charset); } else { font.cffEncoding = parseCFFEncoding( data, start + topDict.encoding, charset ); } font.encoding = font.encoding || font.cffEncoding; font.glyphs = new glyphset.GlyphSet(font); if (opt.lowMemory) { font._push = function(i2) { var charString2 = getCffIndexObject( i2, charStringsIndex.offsets, data, start + topDict.charStrings ); font.glyphs.push( i2, glyphset.cffGlyphLoader(font, i2, parseCFFCharstring, charString2) ); }; } else { for (var i = 0; i < font.nGlyphs; i += 1) { var charString = charStringsIndex.objects[i]; font.glyphs.push( i, glyphset.cffGlyphLoader(font, i, parseCFFCharstring, charString) ); } } } var cff = { parse: parseCFFTable }; function parseFvarAxis(data, start, names) { var axis = {}; var p = new parse.Parser(data, start); axis.tag = p.parseTag(); axis.minValue = p.parseFixed(); axis.defaultValue = p.parseFixed(); axis.maxValue = p.parseFixed(); p.skip("uShort", 1); axis.name = names[p.parseUShort()] || {}; return axis; } function parseFvarInstance(data, start, axes, names) { var inst = {}; var p = new parse.Parser(data, start); inst.name = names[p.parseUShort()] || {}; p.skip("uShort", 1); inst.coordinates = {}; for (var i = 0; i < axes.length; ++i) { inst.coordinates[axes[i].tag] = p.parseFixed(); } return inst; } function parseFvarTable(data, start, names) { var p = new parse.Parser(data, start); var tableVersion = p.parseULong(); check.argument( tableVersion === 65536, "Unsupported fvar table version." ); var offsetToData = p.parseOffset16(); p.skip("uShort", 1); var axisCount = p.parseUShort(); var axisSize = p.parseUShort(); var instanceCount = p.parseUShort(); var instanceSize = p.parseUShort(); var axes = []; for (var i = 0; i < axisCount; i++) { axes.push( parseFvarAxis(data, start + offsetToData + i * axisSize, names) ); } var instances = []; var instanceStart = start + offsetToData + axisCount * axisSize; for (var j = 0; j < instanceCount; j++) { instances.push( parseFvarInstance( data, instanceStart + j * instanceSize, axes, names ) ); } return { axes, instances }; } var fvar = { parse: parseFvarTable }; var attachList = function() { return { coverage: this.parsePointer(Parser.coverage), attachPoints: this.parseList(Parser.pointer(Parser.uShortList)) }; }; var caretValue = function() { var format = this.parseUShort(); check.argument( format === 1 || format === 2 || format === 3, "Unsupported CaretValue table version." ); if (format === 1) { return { coordinate: this.parseShort() }; } else if (format === 2) { return { pointindex: this.parseShort() }; } else if (format === 3) { return { coordinate: this.parseShort() }; } }; var ligGlyph = function() { return this.parseList(Parser.pointer(caretValue)); }; var ligCaretList = function() { return { coverage: this.parsePointer(Parser.coverage), ligGlyphs: this.parseList(Parser.pointer(ligGlyph)) }; }; var markGlyphSets = function() { this.parseUShort(); return this.parseList(Parser.pointer(Parser.coverage)); }; function parseGDEFTable(data, start) { start = start || 0; var p = new Parser(data, start); var tableVersion = p.parseVersion(1); check.argument( tableVersion === 1 || tableVersion === 1.2 || tableVersion === 1.3, "Unsupported GDEF table version." ); var gdef2 = { version: tableVersion, classDef: p.parsePointer(Parser.classDef), attachList: p.parsePointer(attachList), ligCaretList: p.parsePointer(ligCaretList), markAttachClassDef: p.parsePointer(Parser.classDef) }; if (tableVersion >= 1.2) { gdef2.markGlyphSets = p.parsePointer(markGlyphSets); } return gdef2; } var gdef = { parse: parseGDEFTable }; var subtableParsers = new Array(10); subtableParsers[1] = function parseLookup1() { var start = this.offset + this.relativeOffset; var posformat = this.parseUShort(); if (posformat === 1) { return { posFormat: 1, coverage: this.parsePointer(Parser.coverage), value: this.parseValueRecord() }; } else if (posformat === 2) { return { posFormat: 2, coverage: this.parsePointer(Parser.coverage), values: this.parseValueRecordList() }; } check.assert( false, "0x" + start.toString(16) + ": GPOS lookup type 1 format must be 1 or 2." ); }; subtableParsers[2] = function parseLookup2() { var start = this.offset + this.relativeOffset; var posFormat = this.parseUShort(); check.assert( posFormat === 1 || posFormat === 2, "0x" + start.toString(16) + ": GPOS lookup type 2 format must be 1 or 2." ); var coverage = this.parsePointer(Parser.coverage); var valueFormat1 = this.parseUShort(); var valueFormat2 = this.parseUShort(); if (posFormat === 1) { return { posFormat, coverage, valueFormat1, valueFormat2, pairSets: this.parseList( Parser.pointer( Parser.list(function() { return { // pairValueRecord secondGlyph: this.parseUShort(), value1: this.parseValueRecord(valueFormat1), value2: this.parseValueRecord(valueFormat2) }; }) ) ) }; } else if (posFormat === 2) { var classDef1 = this.parsePointer(Parser.classDef); var classDef2 = this.parsePointer(Parser.classDef); var class1Count = this.parseUShort(); var class2Count = this.parseUShort(); return { // Class Pair Adjustment posFormat, coverage, valueFormat1, valueFormat2, classDef1, classDef2, class1Count, class2Count, classRecords: this.parseList( class1Count, Parser.list(class2Count, function() { return { value1: this.parseValueRecord(valueFormat1), value2: this.parseValueRecord(valueFormat2) }; }) ) }; } }; subtableParsers[3] = function parseLookup3() { return { error: "GPOS Lookup 3 not supported" }; }; subtableParsers[4] = function parseLookup4() { return { error: "GPOS Lookup 4 not supported" }; }; subtableParsers[5] = function parseLookup5() { return { error: "GPOS Lookup 5 not supported" }; }; subtableParsers[6] = function parseLookup6() { return { error: "GPOS Lookup 6 not supported" }; }; subtableParsers[7] = function parseLookup7() { return { error: "GPOS Lookup 7 not supported" }; }; subtableParsers[8] = function parseLookup8() { return { error: "GPOS Lookup 8 not supported" }; }; subtableParsers[9] = function parseLookup9() { return { error: "GPOS Lookup 9 not supported" }; }; function parseGposTable(data, start) { start = start || 0; var p = new Parser(data, start); var tableVersion = p.parseVersion(1); check.argument( tableVersion === 1 || tableVersion === 1.1, "Unsupported GPOS table version " + tableVersion ); if (tableVersion === 1) { return { version: tableVersion, scripts: p.parseScriptList(), features: p.parseFeatureList(), lookups: p.parseLookupList(subtableParsers) }; } else { return { version: tableVersion, scripts: p.parseScriptList(), features: p.parseFeatureList(), lookups: p.parseLookupList(subtableParsers), variations: p.parseFeatureVariationsList() }; } } var gpos = { parse: parseGposTable }; var subtableParsers$1 = new Array(9); subtableParsers$1[1] = function parseLookup12() { var start = this.offset + this.relativeOffset; var substFormat = this.parseUShort(); if (substFormat === 1) { return { substFormat: 1, coverage: this.parsePointer(Parser.coverage), deltaGlyphId: this.parseUShort() }; } else if (substFormat === 2) { return { substFormat: 2, coverage: this.parsePointer(Parser.coverage), substitute: this.parseOffset16List() }; } check.assert( false, "0x" + start.toString(16) + ": lookup type 1 format must be 1 or 2." ); }; subtableParsers$1[2] = function parseLookup22() { var substFormat = this.parseUShort(); check.argument( substFormat === 1, "GSUB Multiple Substitution Subtable identifier-format must be 1" ); return { substFormat, coverage: this.parsePointer(Parser.coverage), sequences: this.parseListOfLists() }; }; subtableParsers$1[3] = function parseLookup32() { var substFormat = this.parseUShort(); check.argument( substFormat === 1, "GSUB Alternate Substitution Subtable identifier-format must be 1" ); return { substFormat, coverage: this.parsePointer(Parser.coverage), alternateSets: this.parseListOfLists() }; }; subtableParsers$1[4] = function parseLookup42() { var substFormat = this.parseUShort(); check.argument( substFormat === 1, "GSUB ligature table identifier-format must be 1" ); return { substFormat, coverage: this.parsePointer(Parser.coverage), ligatureSets: this.parseListOfLists(function() { return { ligGlyph: this.parseUShort(), components: this.parseUShortList(this.parseUShort() - 1) }; }) }; }; var lookupRecordDesc = { sequenceIndex: Parser.uShort, lookupListIndex: Parser.uShort }; subtableParsers$1[5] = function parseLookup52() { var start = this.offset + this.relativeOffset; var substFormat = this.parseUShort(); if (substFormat === 1) { return { substFormat, coverage: this.parsePointer(Parser.coverage), ruleSets: this.parseListOfLists(function() { var glyphCount2 = this.parseUShort(); var substCount2 = this.parseUShort(); return { input: this.parseUShortList(glyphCount2 - 1), lookupRecords: this.parseRecordList( substCount2, lookupRecordDesc ) }; }) }; } else if (substFormat === 2) { return { substFormat, coverage: this.parsePointer(Parser.coverage), classDef: this.parsePointer(Parser.classDef), classSets: this.parseListOfLists(function() { var glyphCount2 = this.parseUShort(); var substCount2 = this.parseUShort(); return { classes: this.parseUShortList(glyphCount2 - 1), lookupRecords: this.parseRecordList( substCount2, lookupRecordDesc ) }; }) }; } else if (substFormat === 3) { var glyphCount = this.parseUShort(); var substCount = this.parseUShort(); return { substFormat, coverages: this.parseList( glyphCount, Parser.pointer(Parser.coverage) ), lookupRecords: this.parseRecordList(substCount, lookupRecordDesc) }; } check.assert( false, "0x" + start.toString(16) + ": lookup type 5 format must be 1, 2 or 3." ); }; subtableParsers$1[6] = function parseLookup62() { var start = this.offset + this.relativeOffset; var substFormat = this.parseUShort(); if (substFormat === 1) { return { substFormat: 1, coverage: this.parsePointer(Parser.coverage), chainRuleSets: this.parseListOfLists(function() { return { backtrack: this.parseUShortList(), input: this.parseUShortList(this.parseShort() - 1), lookahead: this.parseUShortList(), lookupRecords: this.parseRecordList(lookupRecordDesc) }; }) }; } else if (substFormat === 2) { return { substFormat: 2, coverage: this.parsePointer(Parser.coverage), backtrackClassDef: this.parsePointer(Parser.classDef), inputClassDef: this.parsePointer(Parser.classDef), lookaheadClassDef: this.parsePointer(Parser.classDef), chainClassSet: this.parseListOfLists(function() { return { backtrack: this.parseUShortList(), input: this.parseUShortList(this.parseShort() - 1), lookahead: this.parseUShortList(), lookupRecords: this.parseRecordList(lookupRecordDesc) }; }) }; } else if (substFormat === 3) { return { substFormat: 3, backtrackCoverage: this.parseList(Parser.pointer(Parser.coverage)), inputCoverage: this.parseList(Parser.pointer(Parser.coverage)), lookaheadCoverage: this.parseList(Parser.pointer(Parser.coverage)), lookupRecords: this.parseRecordList(lookupRecordDesc) }; } check.assert( false, "0x" + start.toString(16) + ": lookup type 6 format must be 1, 2 or 3." ); }; subtableParsers$1[7] = function parseLookup72() { var substFormat = this.parseUShort(); check.argument( substFormat === 1, "GSUB Extension Substitution subtable identifier-format must be 1" ); var extensionLookupType = this.parseUShort(); var extensionParser = new Parser( this.data, this.offset + this.parseULong() ); return { substFormat: 1, lookupType: extensionLookupType, extension: subtableParsers$1[extensionLookupType].call(extensionParser) }; }; subtableParsers$1[8] = function parseLookup82() { var substFormat = this.parseUShort(); check.argument( substFormat === 1, "GSUB Reverse Chaining Contextual Single Substitution Subtable identifier-format must be 1" ); return { substFormat, coverage: this.parsePointer(Parser.coverage), backtrackCoverage: this.parseList(Parser.pointer(Parser.coverage)), lookaheadCoverage: this.parseList(Parser.pointer(Parser.coverage)), substitutes: this.parseUShortList() }; }; function parseGsubTable(data, start) { start = start || 0; var p = new Parser(data, start); var tableVersion = p.parseVersion(1); check.argument( tableVersion === 1 || tableVersion === 1.1, "Unsupported GSUB table version." ); if (tableVersion === 1) { return { version: tableVersion, scripts: p.parseScriptList(), features: p.parseFeatureList(), lookups: p.parseLookupList(subtableParsers$1) }; } else { return { version: tableVersion, scripts: p.parseScriptList(), features: p.parseFeatureList(), lookups: p.parseLookupList(subtableParsers$1), variations: p.parseFeatureVariationsList() }; } } var gsub = { parse: parseGsubTable }; function parseHeadTable(data, start) { var head2 = {}; var p = new parse.Parser(data, start); head2.version = p.parseVersion(); head2.fontRevision = Math.round(p.parseFixed() * 1e3) / 1e3; head2.checkSumAdjustment = p.parseULong(); head2.magicNumber = p.parseULong(); check.argument( head2.magicNumber === 1594834165, "Font header has wrong magic number." ); head2.flags = p.parseUShort(); head2.unitsPerEm = p.parseUShort(); head2.created = p.parseLongDateTime(); head2.modified = p.parseLongDateTime(); head2.xMin = p.parseShort(); head2.yMin = p.parseShort(); head2.xMax = p.parseShort(); head2.yMax = p.parseShort(); head2.macStyle = p.parseUShort(); head2.lowestRecPPEM = p.parseUShort(); head2.fontDirectionHint = p.parseShort(); head2.indexToLocFormat = p.parseShort(); head2.glyphDataFormat = p.parseShort(); return head2; } var head = { parse: parseHeadTable }; function parseHheaTable(data, start) { var hhea2 = {}; var p = new parse.Parser(data, start); hhea2.version = p.parseVersion(); hhea2.ascender = p.parseShort(); hhea2.descender = p.parseShort(); hhea2.lineGap = p.parseShort(); hhea2.advanceWidthMax = p.parseUShort(); hhea2.minLeftSideBearing = p.parseShort(); hhea2.minRightSideBearing = p.parseShort(); hhea2.xMaxExtent = p.parseShort(); hhea2.caretSlopeRise = p.parseShort(); hhea2.caretSlopeRun = p.parseShort(); hhea2.caretOffset = p.parseShort(); p.relativeOffset += 8; hhea2.metricDataFormat = p.parseShort(); hhea2.numberOfHMetrics = p.parseUShort(); return hhea2; } var hhea = { parse: parseHheaTable }; function parseHmtxTableAll(data, start, numMetrics, numGlyphs, glyphs) { var advanceWidth; var leftSideBearing; var p = new parse.Parser(data, start); for (var i = 0; i < numGlyphs; i += 1) { if (i < numMetrics) { advanceWidth = p.parseUShort(); leftSideBearing = p.parseShort(); } var glyph = glyphs.get(i); glyph.advanceWidth = advanceWidth; glyph.leftSideBearing = leftSideBearing; } } function parseHmtxTableOnLowMemory(font, data, start, numMetrics, numGlyphs) { font._hmtxTableData = {}; var advanceWidth; var leftSideBearing; var p = new parse.Parser(data, start); for (var i = 0; i < numGlyphs; i += 1) { if (i < numMetrics) { advanceWidth = p.parseUShort(); leftSideBearing = p.parseShort(); } font._hmtxTableData[i] = { advanceWidth, leftSideBearing }; } } function parseHmtxTable(font, data, start, numMetrics, numGlyphs, glyphs, opt) { if (opt.lowMemory) { parseHmtxTableOnLowMemory(font, data, start, numMetrics, numGlyphs); } else { parseHmtxTableAll(data, start, numMetrics, numGlyphs, glyphs); } } var hmtx = { parse: parseHmtxTable }; function parseWindowsKernTable(p) { var pairs = {}; p.skip("uShort"); var subtableVersion = p.parseUShort(); check.argument(subtableVersion === 0, "Unsupported kern sub-table version."); p.skip("uShort", 2); var nPairs = p.parseUShort(); p.skip("uShort", 3); for (var i = 0; i < nPairs; i += 1) { var leftIndex = p.parseUShort(); var rightIndex = p.parseUShort(); var value = p.parseShort(); pairs[leftIndex + "," + rightIndex] = value; } return pairs; } function parseMacKernTable(p) { var pairs = {}; p.skip("uShort"); var nTables = p.parseULong(); if (nTables > 1) { console.warn("Only the first kern subtable is supported."); } p.skip("uLong"); var coverage = p.parseUShort(); var subtableVersion = coverage & 255; p.skip("uShort"); if (subtableVersion === 0) { var nPairs = p.parseUShort(); p.skip("uShort", 3); for (var i = 0; i < nPairs; i += 1) { var leftIndex = p.parseUShort(); var rightIndex = p.parseUShort(); var value = p.parseShort(); pairs[leftIndex + "," + rightIndex] = value; } } return pairs; } function parseKernTable(data, start) { var p = new parse.Parser(data, start); var tableVersion = p.parseUShort(); if (tableVersion === 0) { return parseWindowsKernTable(p); } else if (tableVersion === 1) { return parseMacKernTable(p); } else { throw new Error("Unsupported kern table version (" + tableVersion + ")."); } } var kern = { parse: parseKernTable }; function parseLtagTable(data, start) { var p = new parse.Parser(data, start); var tableVersion = p.parseULong(); check.argument(tableVersion === 1, "Unsupported ltag table version."); p.skip("uLong", 1); var numTags = p.parseULong(); var tags = []; for (var i = 0; i < numTags; i++) { var tag = ""; var offset = start + p.parseUShort(); var length = p.parseUShort(); for (var j = offset; j < offset + length; ++j) { tag += String.fromCharCode(data.getInt8(j)); } tags.push(tag); } return tags; } var ltag = { parse: parseLtagTable }; function parseLocaTable(data, start, numGlyphs, shortVersion) { var p = new parse.Parser(data, start); var parseFn = shortVersion ? p.parseUShort : p.parseULong; var glyphOffsets = []; for (var i = 0; i < numGlyphs + 1; i += 1) { var glyphOffset = parseFn.call(p); if (shortVersion) { glyphOffset *= 2; } glyphOffsets.push(glyphOffset); } return glyphOffsets; } var loca = { parse: parseLocaTable }; function parseMaxpTable(data, start) { var maxp2 = {}; var p = new parse.Parser(data, start); maxp2.version = p.parseVersion(); maxp2.numGlyphs = p.parseUShort(); if (maxp2.version === 1) { maxp2.maxPoints = p.parseUShort(); maxp2.maxContours = p.parseUShort(); maxp2.maxCompositePoints = p.parseUShort(); maxp2.maxCompositeContours = p.parseUShort(); maxp2.maxZones = p.parseUShort(); maxp2.maxTwilightPoints = p.parseUShort(); maxp2.maxStorage = p.parseUShort(); maxp2.maxFunctionDefs = p.parseUShort(); maxp2.maxInstructionDefs = p.parseUShort(); maxp2.maxStackElements = p.parseUShort(); maxp2.maxSizeOfInstructions = p.parseUShort(); maxp2.maxComponentElements = p.parseUShort(); maxp2.maxComponentDepth = p.parseUShort(); } return maxp2; } var maxp = { parse: parseMaxpTable }; function parseOS2Table(data, start) { var os22 = {}; var p = new parse.Parser(data, start); os22.version = p.parseUShort(); os22.xAvgCharWidth = p.parseShort(); os22.usWeightClass = p.parseUShort(); os22.usWidthClass = p.parseUShort(); os22.fsType = p.parseUShort(); os22.ySubscriptXSize = p.parseShort(); os22.ySubscriptYSize = p.parseShort(); os22.ySubscriptXOffset = p.parseShort(); os22.ySubscriptYOffset = p.parseShort(); os22.ySuperscriptXSize = p.parseShort(); os22.ySuperscriptYSize = p.parseShort(); os22.ySuperscriptXOffset = p.parseShort(); os22.ySuperscriptYOffset = p.parseShort(); os22.yStrikeoutSize = p.parseShort(); os22.yStrikeoutPosition = p.parseShort(); os22.sFamilyClass = p.parseShort(); os22.panose = []; for (var i = 0; i < 10; i++) { os22.panose[i] = p.parseByte(); } os22.ulUnicodeRange1 = p.parseULong(); os22.ulUnicodeRange2 = p.parseULong(); os22.ulUnicodeRange3 = p.parseULong(); os22.ulUnicodeRange4 = p.parseULong(); os22.achVendID = String.fromCharCode( p.parseByte(), p.parseByte(), p.parseByte(), p.parseByte() ); os22.fsSelection = p.parseUShort(); os22.usFirstCharIndex = p.parseUShort(); os22.usLastCharIndex = p.parseUShort(); os22.sTypoAscender = p.parseShort(); os22.sTypoDescender = p.parseShort(); os22.sTypoLineGap = p.parseShort(); os22.usWinAscent = p.parseUShort(); os22.usWinDescent = p.parseUShort(); if (os22.version >= 1) { os22.ulCodePageRange1 = p.parseULong(); os22.ulCodePageRange2 = p.parseULong(); } if (os22.version >= 2) { os22.sxHeight = p.parseShort(); os22.sCapHeight = p.parseShort(); os22.usDefaultChar = p.parseUShort(); os22.usBreakChar = p.parseUShort(); os22.usMaxContent = p.parseUShort(); } return os22; } var os2 = { parse: parseOS2Table }; function parsePostTable(data, start) { var post2 = {}; var p = new parse.Parser(data, start); post2.version = p.parseVersion(); post2.italicAngle = p.parseFixed(); post2.underlinePosition = p.parseShort(); post2.underlineThickness = p.parseShort(); post2.isFixedPitch = p.parseULong(); post2.minMemType42 = p.parseULong(); post2.maxMemType42 = p.parseULong(); post2.minMemType1 = p.parseULong(); post2.maxMemType1 = p.parseULong(); post2.names = []; switch (post2.version) { case 1: break; case 2: post2.numberOfGlyphs = p.parseUShort(); post2.glyphNameIndex = new Array(post2.numberOfGlyphs); for (var i = 0; i < post2.numberOfGlyphs; i++) { post2.glyphNameIndex[i] = p.parseUShort(); } break; case 2.5: post2.numberOfGlyphs = p.parseUShort(); post2.offset = new Array(post2.numberOfGlyphs); for (var i$1 = 0; i$1 < post2.numberOfGlyphs; i$1++) { post2.offset[i$1] = p.parseChar(); } break; } return post2; } var post = { parse: parsePostTable }; var decode = {}; decode.UTF8 = function(data, offset, numBytes) { var codePoints = []; var numChars = numBytes; for (var j = 0; j < numChars; j++, offset += 1) { codePoints[j] = data.getUint8(offset); } return String.fromCharCode.apply(null, codePoints); }; decode.UTF16 = function(data, offset, numBytes) { var codePoints = []; var numChars = numBytes / 2; for (var j = 0; j < numChars; j++, offset += 2) { codePoints[j] = data.getUint16(offset); } return String.fromCharCode.apply(null, codePoints); }; var eightBitMacEncodings = { "x-mac-croatian": ( // Python: 'mac_croatian' "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\u0160\u2122\xB4\xA8\u2260\u017D\xD8\u221E\xB1\u2264\u2265\u2206\xB5\u2202\u2211\u220F\u0161\u222B\xAA\xBA\u03A9\u017E\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u0106\xAB\u010C\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u0110\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\uF8FF\xA9\u2044\u20AC\u2039\u203A\xC6\xBB\u2013\xB7\u201A\u201E\u2030\xC2\u0107\xC1\u010D\xC8\xCD\xCE\xCF\xCC\xD3\xD4\u0111\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u03C0\xCB\u02DA\xB8\xCA\xE6\u02C7" ), "x-mac-cyrillic": ( // Python: 'mac_cyrillic' "\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041A\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A\u042B\u042C\u042D\u042E\u042F\u2020\xB0\u0490\xA3\xA7\u2022\xB6\u0406\xAE\xA9\u2122\u0402\u0452\u2260\u0403\u0453\u221E\xB1\u2264\u2265\u0456\xB5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040A\u045A\u0458\u0405\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\u040B\u045B\u040C\u045C\u0455\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u201E\u040E\u045E\u040F\u045F\u2116\u0401\u0451\u044F\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043A\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A\u044B\u044C\u044D\u044E" ), "x-mac-gaelic": ( // http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/GAELIC.TXT "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u1E02\xB1\u2264\u2265\u1E03\u010A\u010B\u1E0A\u1E0B\u1E1E\u1E1F\u0120\u0121\u1E40\xE6\xF8\u1E41\u1E56\u1E57\u027C\u0192\u017F\u1E60\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\u1E61\u1E9B\xFF\u0178\u1E6A\u20AC\u2039\u203A\u0176\u0177\u1E6B\xB7\u1EF2\u1EF3\u204A\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\u2663\xD2\xDA\xDB\xD9\u0131\xDD\xFD\u0174\u0175\u1E84\u1E85\u1E80\u1E81\u1E82\u1E83" ), "x-mac-greek": ( // Python: 'mac_greek' "\xC4\xB9\xB2\xC9\xB3\xD6\xDC\u0385\xE0\xE2\xE4\u0384\xA8\xE7\xE9\xE8\xEA\xEB\xA3\u2122\xEE\xEF\u2022\xBD\u2030\xF4\xF6\xA6\u20AC\xF9\xFB\xFC\u2020\u0393\u0394\u0398\u039B\u039E\u03A0\xDF\xAE\xA9\u03A3\u03AA\xA7\u2260\xB0\xB7\u0391\xB1\u2264\u2265\xA5\u0392\u0395\u0396\u0397\u0399\u039A\u039C\u03A6\u03AB\u03A8\u03A9\u03AC\u039D\xAC\u039F\u03A1\u2248\u03A4\xAB\xBB\u2026\xA0\u03A5\u03A7\u0386\u0388\u0153\u2013\u2015\u201C\u201D\u2018\u2019\xF7\u0389\u038A\u038C\u038E\u03AD\u03AE\u03AF\u03CC\u038F\u03CD\u03B1\u03B2\u03C8\u03B4\u03B5\u03C6\u03B3\u03B7\u03B9\u03BE\u03BA\u03BB\u03BC\u03BD\u03BF\u03C0\u03CE\u03C1\u03C3\u03C4\u03B8\u03C9\u03C2\u03C7\u03C5\u03B6\u03CA\u03CB\u0390\u03B0\xAD" ), "x-mac-icelandic": ( // Python: 'mac_iceland' "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\xDD\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u03A9\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\u20AC\xD0\xF0\xDE\xFE\xFD\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uF8FF\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7" ), "x-mac-inuit": ( // http://unicode.org/Public/MAPPINGS/VENDORS/APPLE/INUIT.TXT "\u1403\u1404\u1405\u1406\u140A\u140B\u1431\u1432\u1433\u1434\u1438\u1439\u1449\u144E\u144F\u1450\u1451\u1455\u1456\u1466\u146D\u146E\u146F\u1470\u1472\u1473\u1483\u148B\u148C\u148D\u148E\u1490\u1491\xB0\u14A1\u14A5\u14A6\u2022\xB6\u14A7\xAE\xA9\u2122\u14A8\u14AA\u14AB\u14BB\u14C2\u14C3\u14C4\u14C5\u14C7\u14C8\u14D0\u14EF\u14F0\u14F1\u14F2\u14F4\u14F5\u1505\u14D5\u14D6\u14D7\u14D8\u14DA\u14DB\u14EA\u1528\u1529\u152A\u152B\u152D\u2026\xA0\u152E\u153E\u1555\u1556\u1557\u2013\u2014\u201C\u201D\u2018\u2019\u1558\u1559\u155A\u155D\u1546\u1547\u1548\u1549\u154B\u154C\u1550\u157F\u1580\u1581\u1582\u1583\u1584\u1585\u158F\u1590\u1591\u1592\u1593\u1594\u1595\u1671\u1672\u1673\u1674\u1675\u1676\u1596\u15A0\u15A1\u15A2\u15A3\u15A4\u15A5\u15A6\u157C\u0141\u0142" ), "x-mac-ce": ( // Python: 'mac_latin2' "\xC4\u0100\u0101\xC9\u0104\xD6\xDC\xE1\u0105\u010C\xE4\u010D\u0106\u0107\xE9\u0179\u017A\u010E\xED\u010F\u0112\u0113\u0116\xF3\u0117\xF4\xF6\xF5\xFA\u011A\u011B\xFC\u2020\xB0\u0118\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\u0119\xA8\u2260\u0123\u012E\u012F\u012A\u2264\u2265\u012B\u0136\u2202\u2211\u0142\u013B\u013C\u013D\u013E\u0139\u013A\u0145\u0146\u0143\xAC\u221A\u0144\u0147\u2206\xAB\xBB\u2026\xA0\u0148\u0150\xD5\u0151\u014C\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\u014D\u0154\u0155\u0158\u2039\u203A\u0159\u0156\u0157\u0160\u201A\u201E\u0161\u015A\u015B\xC1\u0164\u0165\xCD\u017D\u017E\u016A\xD3\xD4\u016B\u016E\xDA\u016F\u0170\u0171\u0172\u0173\xDD\xFD\u0137\u017B\u0141\u017C\u0122\u02C7" ), macintosh: ( // Python: 'mac_roman' "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u03A9\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\u20AC\u2039\u203A\uFB01\uFB02\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uF8FF\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7" ), "x-mac-romanian": ( // Python: 'mac_romanian' "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\u0102\u0218\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u03A9\u0103\u0219\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u2044\u20AC\u2039\u203A\u021A\u021B\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uF8FF\xD2\xDA\xDB\xD9\u0131\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7" ), "x-mac-turkish": ( // Python: 'mac_turkish' "\xC4\xC5\xC7\xC9\xD1\xD6\xDC\xE1\xE0\xE2\xE4\xE3\xE5\xE7\xE9\xE8\xEA\xEB\xED\xEC\xEE\xEF\xF1\xF3\xF2\xF4\xF6\xF5\xFA\xF9\xFB\xFC\u2020\xB0\xA2\xA3\xA7\u2022\xB6\xDF\xAE\xA9\u2122\xB4\xA8\u2260\xC6\xD8\u221E\xB1\u2264\u2265\xA5\xB5\u2202\u2211\u220F\u03C0\u222B\xAA\xBA\u03A9\xE6\xF8\xBF\xA1\xAC\u221A\u0192\u2248\u2206\xAB\xBB\u2026\xA0\xC0\xC3\xD5\u0152\u0153\u2013\u2014\u201C\u201D\u2018\u2019\xF7\u25CA\xFF\u0178\u011E\u011F\u0130\u0131\u015E\u015F\u2021\xB7\u201A\u201E\u2030\xC2\xCA\xC1\xCB\xC8\xCD\xCE\xCF\xCC\xD3\xD4\uF8FF\xD2\xDA\xDB\xD9\uF8A0\u02C6\u02DC\xAF\u02D8\u02D9\u02DA\xB8\u02DD\u02DB\u02C7" ) }; decode.MACSTRING = function(dataView, offset, dataLength, encoding) { var table = eightBitMacEncodings[encoding]; if (table === void 0) { return void 0; } var result = ""; for (var i = 0; i < dataLength; i++) { var c2 = dataView.getUint8(offset + i); if (c2 <= 127) { result += String.fromCharCode(c2); } else { result += table[c2 & 127]; } } return result; }; function parseMetaTable(data, start) { var p = new parse.Parser(data, start); var tableVersion = p.parseULong(); check.argument(tableVersion === 1, "Unsupported META table version."); p.parseULong(); p.parseULong(); var numDataMaps = p.parseULong(); var tags = {}; for (var i = 0; i < numDataMaps; i++) { var tag = p.parseTag(); var dataOffset = p.parseULong(); var dataLength = p.parseULong(); var text = decode.UTF8(data, start + dataOffset, dataLength); tags[tag] = text; } return tags; } var meta = { parse: parseMetaTable }; function parseOpenTypeTableEntries(data, numTables) { var tableEntries = []; var p = 12; for (var i = 0; i < numTables; i += 1) { var tag = parse.getTag(data, p); var checksum = parse.getULong(data, p + 4); var offset = parse.getULong(data, p + 8); var length = parse.getULong(data, p + 12); tableEntries.push({ tag, checksum, offset, length, compression: false }); p += 16; } return tableEntries; } function parseWOFFTableEntries(data, numTables) { var tableEntries = []; var p = 44; for (var i = 0; i < numTables; i += 1) { var tag = parse.getTag(data, p); var offset = parse.getULong(data, p + 4); var compLength = parse.getULong(data, p + 8); var origLength = parse.getULong(data, p + 12); var compression = void 0; if (compLength < origLength) { compression = "WOFF"; } else { compression = false; } tableEntries.push({ tag, offset, compression, compressedLength: compLength, length: origLength }); p += 20; } return tableEntries; } function uncompressTable(data, tableEntry) { if (tableEntry.compression === "WOFF") { var inBuffer = new Uint8Array( data.buffer, tableEntry.offset + 2, tableEntry.compressedLength - 2 ); var outBuffer = new Uint8Array(tableEntry.length); inflateSync(inBuffer, outBuffer); if (outBuffer.byteLength !== tableEntry.length) { throw new Error( "Decompression error: " + tableEntry.tag + " decompressed length doesn't match recorded length" ); } var view = new DataView(outBuffer.buffer, 0); return { data: view, offset: 0 }; } else { return { data, offset: tableEntry.offset }; } } function parseBuffer(buffer, opt) { opt = opt === void 0 || opt === null ? {} : opt; var indexToLocFormat; var font = new Font({ empty: true }); var data = new DataView(buffer, 0); var numTables; var tableEntries = []; var signature = parse.getTag(data, 0); if (signature === String.fromCharCode(0, 1, 0, 0) || signature === "true" || signature === "typ1") { font.outlinesFormat = "truetype"; numTables = parse.getUShort(data, 4); tableEntries = parseOpenTypeTableEntries(data, numTables); } else if (signature === "OTTO") { font.outlinesFormat = "cff"; numTables = parse.getUShort(data, 4); tableEntries = parseOpenTypeTableEntries(data, numTables); } else if (signature === "wOFF") { var flavor = parse.getTag(data, 4); if (flavor === String.fromCharCode(0, 1, 0, 0)) { font.outlinesFormat = "truetype"; } else if (flavor === "OTTO") { font.outlinesFormat = "cff"; } else { throw new Error("Unsupported OpenType flavor " + signature); } numTables = parse.getUShort(data, 12); tableEntries = parseWOFFTableEntries(data, numTables); } else { throw new Error("Unsupported OpenType signature " + signature); } var cffTableEntry; var fvarTableEntry; var glyfTableEntry; var gdefTableEntry; var gposTableEntry; var gsubTableEntry; var hmtxTableEntry; var kernTableEntry; var locaTableEntry; var metaTableEntry; var p; for (var i = 0; i < numTables; i += 1) { var tableEntry = tableEntries[i]; var table = void 0; switch (tableEntry.tag) { case "cmap": table = uncompressTable(data, tableEntry); font.tables.cmap = cmap.parse(table.data, table.offset); font.encoding = new CmapEncoding(font.tables.cmap); break; case "cvt ": table = uncompressTable(data, tableEntry); p = new parse.Parser(table.data, table.offset); font.tables.cvt = p.parseShortList(tableEntry.length / 2); break; case "fvar": fvarTableEntry = tableEntry; break; case "fpgm": table = uncompressTable(data, tableEntry); p = new parse.Parser(table.data, table.offset); font.tables.fpgm = p.parseByteList(tableEntry.length); break; case "head": table = uncompressTable(data, tableEntry); font.tables.head = head.parse(table.data, table.offset); font.unitsPerEm = font.tables.head.unitsPerEm; indexToLocFormat = font.tables.head.indexToLocFormat; break; case "hhea": table = uncompressTable(data, tableEntry); font.tables.hhea = hhea.parse(table.data, table.offset); font.ascender = font.tables.hhea.ascender; font.descender = font.tables.hhea.descender; font.numberOfHMetrics = font.tables.hhea.numberOfHMetrics; break; case "hmtx": hmtxTableEntry = tableEntry; break; case "ltag": table = uncompressTable(data, tableEntry); ltagTable = ltag.parse(table.data, table.offset); break; case "maxp": table = uncompressTable(data, tableEntry); font.tables.maxp = maxp.parse(table.data, table.offset); font.numGlyphs = font.tables.maxp.numGlyphs; break; case "OS/2": table = uncompressTable(data, tableEntry); font.tables.os2 = os2.parse(table.data, table.offset); break; case "post": table = uncompressTable(data, tableEntry); font.tables.post = post.parse(table.data, table.offset); break; case "prep": table = uncompressTable(data, tableEntry); p = new parse.Parser(table.data, table.offset); font.tables.prep = p.parseByteList(tableEntry.length); break; case "glyf": glyfTableEntry = tableEntry; break; case "loca": locaTableEntry = tableEntry; break; case "CFF ": cffTableEntry = tableEntry; break; case "kern": kernTableEntry = tableEntry; break; case "GDEF": gdefTableEntry = tableEntry; break; case "GPOS": gposTableEntry = tableEntry; break; case "GSUB": gsubTableEntry = tableEntry; break; case "meta": metaTableEntry = tableEntry; break; } } if (glyfTableEntry && locaTableEntry) { var shortVersion = indexToLocFormat === 0; var locaTable = uncompressTable(data, locaTableEntry); var locaOffsets = loca.parse( locaTable.data, locaTable.offset, font.numGlyphs, shortVersion ); var glyfTable = uncompressTable(data, glyfTableEntry); font.glyphs = glyf.parse( glyfTable.data, glyfTable.offset, locaOffsets, font, opt ); } else if (cffTableEntry) { var cffTable = uncompressTable(data, cffTableEntry); cff.parse(cffTable.data, cffTable.offset, font, opt); } else { throw new Error("Font doesn't contain TrueType or CFF outlines."); } var hmtxTable = uncompressTable(data, hmtxTableEntry); hmtx.parse( font, hmtxTable.data, hmtxTable.offset, font.numberOfHMetrics, font.numGlyphs, font.glyphs, opt ); addGlyphNames(font, opt); if (kernTableEntry) { var kernTable = uncompressTable(data, kernTableEntry); font.kerningPairs = kern.parse(kernTable.data, kernTable.offset); } else { font.kerningPairs = {}; } if (gdefTableEntry) { var gdefTable = uncompressTable(data, gdefTableEntry); font.tables.gdef = gdef.parse(gdefTable.data, gdefTable.offset); } if (gposTableEntry) { var gposTable = uncompressTable(data, gposTableEntry); font.tables.gpos = gpos.parse(gposTable.data, gposTable.offset); font.position.init(); } if (gsubTableEntry) { var gsubTable = uncompressTable(data, gsubTableEntry); font.tables.gsub = gsub.parse(gsubTable.data, gsubTable.offset); } if (fvarTableEntry) { var fvarTable = uncompressTable(data, fvarTableEntry); font.tables.fvar = fvar.parse( fvarTable.data, fvarTable.offset, font.names ); } if (metaTableEntry) { var metaTable = uncompressTable(data, metaTableEntry); font.tables.meta = meta.parse(metaTable.data, metaTable.offset); font.metas = font.tables.meta; } return font; } function load() { } function loadSync() { } var opentype = /* @__PURE__ */ Object.freeze({ __proto__: null, Font, Glyph, Path, _parse: parse, parse: parseBuffer, load, loadSync }); var opentype_module_default = opentype; // node_modules/.pnpm/satori@0.15.2/node_modules/satori/dist/index.wasm.js var Rl = Object.create; var Cr = Object.defineProperty; var Ll = Object.getOwnPropertyDescriptor; var Cl = Object.getOwnPropertyNames; var Ml = Object.getPrototypeOf; var Dl = Object.prototype.hasOwnProperty; var xn = (e, t) => () => (e && (t = e(e = 0)), t); var P2 = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports); var wn = (e, t) => { for (var n in t) Cr(e, n, { get: t[n], enumerable: true }); }; var jo = (e, t, n, r) => { if (t && typeof t == "object" || typeof t == "function") for (let i of Cl(t)) !Dl.call(e, i) && i !== n && Cr(e, i, { get: () => t[i], enumerable: !(r = Ll(t, i)) || r.enumerable }); return e; }; var Nl = (e, t, n) => (n = e != null ? Rl(Ml(e)) : {}, jo(t || !e || !e.__esModule ? Cr(n, "default", { value: e, enumerable: true }) : n, e)); var Mr = (e) => jo(Cr({}, "__esModule", { value: true }), e); var Ho = {}; wn(Ho, { getYogaModule: () => Fl }); async function Fl() { return {}; } var Vo = xn(() => { }); var Yn = P2((Vn) => { "use strict"; Object.defineProperty(Vn, "__esModule", { value: true }); Object.defineProperty(Vn, "default", { enumerable: true, get: () => Qf }); function Qf(e) { if (e = `${e}`, e === "0") return "0"; if (/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(e)) return e.replace(/^[+-]?/, (t) => t === "-" ? "" : "-"); if (e.includes("var(") || e.includes("calc(")) return `calc(${e} * -1)`; } }); var Hs = P2((Xn) => { "use strict"; Object.defineProperty(Xn, "__esModule", { value: true }); Object.defineProperty(Xn, "default", { enumerable: true, get: () => Kf }); var Kf = ["preflight", "container", "accessibility", "pointerEvents", "visibility", "position", "inset", "isolation", "zIndex", "order", "gridColumn", "gridColumnStart", "gridColumnEnd", "gridRow", "gridRowStart", "gridRowEnd", "float", "clear", "margin", "boxSizing", "display", "aspectRatio", "height", "maxHeight", "minHeight", "width", "minWidth", "maxWidth", "flex", "flexShrink", "flexGrow", "flexBasis", "tableLayout", "borderCollapse", "borderSpacing", "transformOrigin", "translate", "rotate", "skew", "scale", "transform", "animation", "cursor", "touchAction", "userSelect", "resize", "scrollSnapType", "scrollSnapAlign", "scrollSnapStop", "scrollMargin", "scrollPadding", "listStylePosition", "listStyleType", "appearance", "columns", "breakBefore", "breakInside", "breakAfter", "gridAutoColumns", "gridAutoFlow", "gridAutoRows", "gridTemplateColumns", "gridTemplateRows", "flexDirection", "flexWrap", "placeContent", "placeItems", "alignContent", "alignItems", "justifyContent", "justifyItems", "gap", "space", "divideWidth", "divideStyle", "divideColor", "divideOpacity", "placeSelf", "alignSelf", "justifySelf", "overflow", "overscrollBehavior", "scrollBehavior", "textOverflow", "whitespace", "wordBreak", "borderRadius", "borderWidth", "borderStyle", "borderColor", "borderOpacity", "backgroundColor", "backgroundOpacity", "backgroundImage", "gradientColorStops", "boxDecorationBreak", "backgroundSize", "backgroundAttachment", "backgroundClip", "backgroundPosition", "backgroundRepeat", "backgroundOrigin", "fill", "stroke", "strokeWidth", "objectFit", "objectPosition", "padding", "textAlign", "textIndent", "verticalAlign", "fontFamily", "fontSize", "fontWeight", "textTransform", "fontStyle", "fontVariantNumeric", "lineHeight", "letterSpacing", "textColor", "textOpacity", "textDecoration", "textDecorationColor", "textDecorationStyle", "textDecorationThickness", "textUnderlineOffset", "fontSmoothing", "placeholderColor", "placeholderOpacity", "caretColor", "accentColor", "opacity", "backgroundBlendMode", "mixBlendMode", "boxShadow", "boxShadowColor", "outlineStyle", "outlineWidth", "outlineOffset", "outlineColor", "ringWidth", "ringColor", "ringOpacity", "ringOffsetWidth", "ringOffsetColor", "blur", "brightness", "contrast", "dropShadow", "grayscale", "hueRotate", "invert", "saturate", "sepia", "filter", "backdropBlur", "backdropBrightness", "backdropContrast", "backdropGrayscale", "backdropHueRotate", "backdropInvert", "backdropOpacity", "backdropSaturate", "backdropSepia", "backdropFilter", "transitionProperty", "transitionDelay", "transitionDuration", "transitionTimingFunction", "willChange", "content"]; }); var Vs = P2((Qn) => { "use strict"; Object.defineProperty(Qn, "__esModule", { value: true }); Object.defineProperty(Qn, "default", { enumerable: true, get: () => Jf }); function Jf(e, t) { return e === void 0 ? t : Array.isArray(e) ? e : [...new Set(t.filter((r) => e !== false && e[r] !== false).concat(Object.keys(e).filter((r) => e[r] !== false)))]; } }); var Kn = P2((Iv, Ys) => { Ys.exports = { content: [], presets: [], darkMode: "media", theme: { screens: { sm: "640px", md: "768px", lg: "1024px", xl: "1280px", "2xl": "1536px" }, colors: ({ colors: e }) => ({ inherit: e.inherit, current: e.current, transparent: e.transparent, black: e.black, white: e.white, slate: e.slate, gray: e.gray, zinc: e.zinc, neutral: e.neutral, stone: e.stone, red: e.red, orange: e.orange, amber: e.amber, yellow: e.yellow, lime: e.lime, green: e.green, emerald: e.emerald, teal: e.teal, cyan: e.cyan, sky: e.sky, blue: e.blue, indigo: e.indigo, violet: e.violet, purple: e.purple, fuchsia: e.fuchsia, pink: e.pink, rose: e.rose }), columns: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", "3xs": "16rem", "2xs": "18rem", xs: "20rem", sm: "24rem", md: "28rem", lg: "32rem", xl: "36rem", "2xl": "42rem", "3xl": "48rem", "4xl": "56rem", "5xl": "64rem", "6xl": "72rem", "7xl": "80rem" }, spacing: { px: "1px", 0: "0px", 0.5: "0.125rem", 1: "0.25rem", 1.5: "0.375rem", 2: "0.5rem", 2.5: "0.625rem", 3: "0.75rem", 3.5: "0.875rem", 4: "1rem", 5: "1.25rem", 6: "1.5rem", 7: "1.75rem", 8: "2rem", 9: "2.25rem", 10: "2.5rem", 11: "2.75rem", 12: "3rem", 14: "3.5rem", 16: "4rem", 20: "5rem", 24: "6rem", 28: "7rem", 32: "8rem", 36: "9rem", 40: "10rem", 44: "11rem", 48: "12rem", 52: "13rem", 56: "14rem", 60: "15rem", 64: "16rem", 72: "18rem", 80: "20rem", 96: "24rem" }, animation: { none: "none", spin: "spin 1s linear infinite", ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite", pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite", bounce: "bounce 1s infinite" }, aspectRatio: { auto: "auto", square: "1 / 1", video: "16 / 9" }, backdropBlur: ({ theme: e }) => e("blur"), backdropBrightness: ({ theme: e }) => e("brightness"), backdropContrast: ({ theme: e }) => e("contrast"), backdropGrayscale: ({ theme: e }) => e("grayscale"), backdropHueRotate: ({ theme: e }) => e("hueRotate"), backdropInvert: ({ theme: e }) => e("invert"), backdropOpacity: ({ theme: e }) => e("opacity"), backdropSaturate: ({ theme: e }) => e("saturate"), backdropSepia: ({ theme: e }) => e("sepia"), backgroundColor: ({ theme: e }) => e("colors"), backgroundImage: { none: "none", "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))", "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))", "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))", "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))", "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))", "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))", "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))", "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))" }, backgroundOpacity: ({ theme: e }) => e("opacity"), backgroundPosition: { bottom: "bottom", center: "center", left: "left", "left-bottom": "left bottom", "left-top": "left top", right: "right", "right-bottom": "right bottom", "right-top": "right top", top: "top" }, backgroundSize: { auto: "auto", cover: "cover", contain: "contain" }, blur: { 0: "0", none: "0", sm: "4px", DEFAULT: "8px", md: "12px", lg: "16px", xl: "24px", "2xl": "40px", "3xl": "64px" }, brightness: { 0: "0", 50: ".5", 75: ".75", 90: ".9", 95: ".95", 100: "1", 105: "1.05", 110: "1.1", 125: "1.25", 150: "1.5", 200: "2" }, borderColor: ({ theme: e }) => ({ ...e("colors"), DEFAULT: e("colors.gray.200", "currentColor") }), borderOpacity: ({ theme: e }) => e("opacity"), borderRadius: { none: "0px", sm: "0.125rem", DEFAULT: "0.25rem", md: "0.375rem", lg: "0.5rem", xl: "0.75rem", "2xl": "1rem", "3xl": "1.5rem", full: "9999px" }, borderSpacing: ({ theme: e }) => ({ ...e("spacing") }), borderWidth: { DEFAULT: "1px", 0: "0px", 2: "2px", 4: "4px", 8: "8px" }, boxShadow: { sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)", DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)", md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)", lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)", xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)", "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)", inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)", none: "none" }, boxShadowColor: ({ theme: e }) => e("colors"), caretColor: ({ theme: e }) => e("colors"), accentColor: ({ theme: e }) => ({ ...e("colors"), auto: "auto" }), contrast: { 0: "0", 50: ".5", 75: ".75", 100: "1", 125: "1.25", 150: "1.5", 200: "2" }, container: {}, content: { none: "none" }, cursor: { auto: "auto", default: "default", pointer: "pointer", wait: "wait", text: "text", move: "move", help: "help", "not-allowed": "not-allowed", none: "none", "context-menu": "context-menu", progress: "progress", cell: "cell", crosshair: "crosshair", "vertical-text": "vertical-text", alias: "alias", copy: "copy", "no-drop": "no-drop", grab: "grab", grabbing: "grabbing", "all-scroll": "all-scroll", "col-resize": "col-resize", "row-resize": "row-resize", "n-resize": "n-resize", "e-resize": "e-resize", "s-resize": "s-resize", "w-resize": "w-resize", "ne-resize": "ne-resize", "nw-resize": "nw-resize", "se-resize": "se-resize", "sw-resize": "sw-resize", "ew-resize": "ew-resize", "ns-resize": "ns-resize", "nesw-resize": "nesw-resize", "nwse-resize": "nwse-resize", "zoom-in": "zoom-in", "zoom-out": "zoom-out" }, divideColor: ({ theme: e }) => e("borderColor"), divideOpacity: ({ theme: e }) => e("borderOpacity"), divideWidth: ({ theme: e }) => e("borderWidth"), dropShadow: { sm: "0 1px 1px rgb(0 0 0 / 0.05)", DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"], md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"], lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"], xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"], "2xl": "0 25px 25px rgb(0 0 0 / 0.15)", none: "0 0 #0000" }, fill: ({ theme: e }) => e("colors"), grayscale: { 0: "0", DEFAULT: "100%" }, hueRotate: { 0: "0deg", 15: "15deg", 30: "30deg", 60: "60deg", 90: "90deg", 180: "180deg" }, invert: { 0: "0", DEFAULT: "100%" }, flex: { 1: "1 1 0%", auto: "1 1 auto", initial: "0 1 auto", none: "none" }, flexBasis: ({ theme: e }) => ({ auto: "auto", ...e("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", "1/12": "8.333333%", "2/12": "16.666667%", "3/12": "25%", "4/12": "33.333333%", "5/12": "41.666667%", "6/12": "50%", "7/12": "58.333333%", "8/12": "66.666667%", "9/12": "75%", "10/12": "83.333333%", "11/12": "91.666667%", full: "100%" }), flexGrow: { 0: "0", DEFAULT: "1" }, flexShrink: { 0: "0", DEFAULT: "1" }, fontFamily: { sans: ["ui-sans-serif", "system-ui", "-apple-system", "BlinkMacSystemFont", '"Segoe UI"', "Roboto", '"Helvetica Neue"', "Arial", '"Noto Sans"', "sans-serif", '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"'], serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"], mono: ["ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", '"Liberation Mono"', '"Courier New"', "monospace"] }, fontSize: { xs: ["0.75rem", { lineHeight: "1rem" }], sm: ["0.875rem", { lineHeight: "1.25rem" }], base: ["1rem", { lineHeight: "1.5rem" }], lg: ["1.125rem", { lineHeight: "1.75rem" }], xl: ["1.25rem", { lineHeight: "1.75rem" }], "2xl": ["1.5rem", { lineHeight: "2rem" }], "3xl": ["1.875rem", { lineHeight: "2.25rem" }], "4xl": ["2.25rem", { lineHeight: "2.5rem" }], "5xl": ["3rem", { lineHeight: "1" }], "6xl": ["3.75rem", { lineHeight: "1" }], "7xl": ["4.5rem", { lineHeight: "1" }], "8xl": ["6rem", { lineHeight: "1" }], "9xl": ["8rem", { lineHeight: "1" }] }, fontWeight: { thin: "100", extralight: "200", light: "300", normal: "400", medium: "500", semibold: "600", bold: "700", extrabold: "800", black: "900" }, gap: ({ theme: e }) => e("spacing"), gradientColorStops: ({ theme: e }) => e("colors"), gridAutoColumns: { auto: "auto", min: "min-content", max: "max-content", fr: "minmax(0, 1fr)" }, gridAutoRows: { auto: "auto", min: "min-content", max: "max-content", fr: "minmax(0, 1fr)" }, gridColumn: { auto: "auto", "span-1": "span 1 / span 1", "span-2": "span 2 / span 2", "span-3": "span 3 / span 3", "span-4": "span 4 / span 4", "span-5": "span 5 / span 5", "span-6": "span 6 / span 6", "span-7": "span 7 / span 7", "span-8": "span 8 / span 8", "span-9": "span 9 / span 9", "span-10": "span 10 / span 10", "span-11": "span 11 / span 11", "span-12": "span 12 / span 12", "span-full": "1 / -1" }, gridColumnEnd: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", 13: "13" }, gridColumnStart: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", 13: "13" }, gridRow: { auto: "auto", "span-1": "span 1 / span 1", "span-2": "span 2 / span 2", "span-3": "span 3 / span 3", "span-4": "span 4 / span 4", "span-5": "span 5 / span 5", "span-6": "span 6 / span 6", "span-full": "1 / -1" }, gridRowStart: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7" }, gridRowEnd: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7" }, gridTemplateColumns: { none: "none", 1: "repeat(1, minmax(0, 1fr))", 2: "repeat(2, minmax(0, 1fr))", 3: "repeat(3, minmax(0, 1fr))", 4: "repeat(4, minmax(0, 1fr))", 5: "repeat(5, minmax(0, 1fr))", 6: "repeat(6, minmax(0, 1fr))", 7: "repeat(7, minmax(0, 1fr))", 8: "repeat(8, minmax(0, 1fr))", 9: "repeat(9, minmax(0, 1fr))", 10: "repeat(10, minmax(0, 1fr))", 11: "repeat(11, minmax(0, 1fr))", 12: "repeat(12, minmax(0, 1fr))" }, gridTemplateRows: { none: "none", 1: "repeat(1, minmax(0, 1fr))", 2: "repeat(2, minmax(0, 1fr))", 3: "repeat(3, minmax(0, 1fr))", 4: "repeat(4, minmax(0, 1fr))", 5: "repeat(5, minmax(0, 1fr))", 6: "repeat(6, minmax(0, 1fr))" }, height: ({ theme: e }) => ({ auto: "auto", ...e("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", full: "100%", screen: "100vh", min: "min-content", max: "max-content", fit: "fit-content" }), inset: ({ theme: e }) => ({ auto: "auto", ...e("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", full: "100%" }), keyframes: { spin: { to: { transform: "rotate(360deg)" } }, ping: { "75%, 100%": { transform: "scale(2)", opacity: "0" } }, pulse: { "50%": { opacity: ".5" } }, bounce: { "0%, 100%": { transform: "translateY(-25%)", animationTimingFunction: "cubic-bezier(0.8,0,1,1)" }, "50%": { transform: "none", animationTimingFunction: "cubic-bezier(0,0,0.2,1)" } } }, letterSpacing: { tighter: "-0.05em", tight: "-0.025em", normal: "0em", wide: "0.025em", wider: "0.05em", widest: "0.1em" }, lineHeight: { none: "1", tight: "1.25", snug: "1.375", normal: "1.5", relaxed: "1.625", loose: "2", 3: ".75rem", 4: "1rem", 5: "1.25rem", 6: "1.5rem", 7: "1.75rem", 8: "2rem", 9: "2.25rem", 10: "2.5rem" }, listStyleType: { none: "none", disc: "disc", decimal: "decimal" }, margin: ({ theme: e }) => ({ auto: "auto", ...e("spacing") }), maxHeight: ({ theme: e }) => ({ ...e("spacing"), full: "100%", screen: "100vh", min: "min-content", max: "max-content", fit: "fit-content" }), maxWidth: ({ theme: e, breakpoints: t }) => ({ none: "none", 0: "0rem", xs: "20rem", sm: "24rem", md: "28rem", lg: "32rem", xl: "36rem", "2xl": "42rem", "3xl": "48rem", "4xl": "56rem", "5xl": "64rem", "6xl": "72rem", "7xl": "80rem", full: "100%", min: "min-content", max: "max-content", fit: "fit-content", prose: "65ch", ...t(e("screens")) }), minHeight: { 0: "0px", full: "100%", screen: "100vh", min: "min-content", max: "max-content", fit: "fit-content" }, minWidth: { 0: "0px", full: "100%", min: "min-content", max: "max-content", fit: "fit-content" }, objectPosition: { bottom: "bottom", center: "center", left: "left", "left-bottom": "left bottom", "left-top": "left top", right: "right", "right-bottom": "right bottom", "right-top": "right top", top: "top" }, opacity: { 0: "0", 5: "0.05", 10: "0.1", 20: "0.2", 25: "0.25", 30: "0.3", 40: "0.4", 50: "0.5", 60: "0.6", 70: "0.7", 75: "0.75", 80: "0.8", 90: "0.9", 95: "0.95", 100: "1" }, order: { first: "-9999", last: "9999", none: "0", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12" }, padding: ({ theme: e }) => e("spacing"), placeholderColor: ({ theme: e }) => e("colors"), placeholderOpacity: ({ theme: e }) => e("opacity"), outlineColor: ({ theme: e }) => e("colors"), outlineOffset: { 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, outlineWidth: { 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, ringColor: ({ theme: e }) => ({ DEFAULT: e("colors.blue.500", "#3b82f6"), ...e("colors") }), ringOffsetColor: ({ theme: e }) => e("colors"), ringOffsetWidth: { 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, ringOpacity: ({ theme: e }) => ({ DEFAULT: "0.5", ...e("opacity") }), ringWidth: { DEFAULT: "3px", 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, rotate: { 0: "0deg", 1: "1deg", 2: "2deg", 3: "3deg", 6: "6deg", 12: "12deg", 45: "45deg", 90: "90deg", 180: "180deg" }, saturate: { 0: "0", 50: ".5", 100: "1", 150: "1.5", 200: "2" }, scale: { 0: "0", 50: ".5", 75: ".75", 90: ".9", 95: ".95", 100: "1", 105: "1.05", 110: "1.1", 125: "1.25", 150: "1.5" }, scrollMargin: ({ theme: e }) => ({ ...e("spacing") }), scrollPadding: ({ theme: e }) => e("spacing"), sepia: { 0: "0", DEFAULT: "100%" }, skew: { 0: "0deg", 1: "1deg", 2: "2deg", 3: "3deg", 6: "6deg", 12: "12deg" }, space: ({ theme: e }) => ({ ...e("spacing") }), stroke: ({ theme: e }) => e("colors"), strokeWidth: { 0: "0", 1: "1", 2: "2" }, textColor: ({ theme: e }) => e("colors"), textDecorationColor: ({ theme: e }) => e("colors"), textDecorationThickness: { auto: "auto", "from-font": "from-font", 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, textUnderlineOffset: { auto: "auto", 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, textIndent: ({ theme: e }) => ({ ...e("spacing") }), textOpacity: ({ theme: e }) => e("opacity"), transformOrigin: { center: "center", top: "top", "top-right": "top right", right: "right", "bottom-right": "bottom right", bottom: "bottom", "bottom-left": "bottom left", left: "left", "top-left": "top left" }, transitionDelay: { 75: "75ms", 100: "100ms", 150: "150ms", 200: "200ms", 300: "300ms", 500: "500ms", 700: "700ms", 1e3: "1000ms" }, transitionDuration: { DEFAULT: "150ms", 75: "75ms", 100: "100ms", 150: "150ms", 200: "200ms", 300: "300ms", 500: "500ms", 700: "700ms", 1e3: "1000ms" }, transitionProperty: { none: "none", all: "all", DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter", colors: "color, background-color, border-color, text-decoration-color, fill, stroke", opacity: "opacity", shadow: "box-shadow", transform: "transform" }, transitionTimingFunction: { DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)", linear: "linear", in: "cubic-bezier(0.4, 0, 1, 1)", out: "cubic-bezier(0, 0, 0.2, 1)", "in-out": "cubic-bezier(0.4, 0, 0.2, 1)" }, translate: ({ theme: e }) => ({ ...e("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", full: "100%" }), width: ({ theme: e }) => ({ auto: "auto", ...e("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", "1/12": "8.333333%", "2/12": "16.666667%", "3/12": "25%", "4/12": "33.333333%", "5/12": "41.666667%", "6/12": "50%", "7/12": "58.333333%", "8/12": "66.666667%", "9/12": "75%", "10/12": "83.333333%", "11/12": "91.666667%", full: "100%", screen: "100vw", min: "min-content", max: "max-content", fit: "fit-content" }), willChange: { auto: "auto", scroll: "scroll-position", contents: "contents", transform: "transform" }, zIndex: { auto: "auto", 0: "0", 10: "10", 20: "20", 30: "30", 40: "40", 50: "50" } }, variantOrder: ["first", "last", "odd", "even", "visited", "checked", "empty", "read-only", "group-hover", "group-focus", "focus-within", "hover", "focus", "focus-visible", "active", "disabled"], plugins: [] }; }); var Kr = {}; wn(Kr, { default: () => Zf }); var Zf; var Jr = xn(() => { Zf = { info(e, t) { console.info(...Array.isArray(e) ? [e] : [t, e]); }, warn(e, t) { console.warn(...Array.isArray(e) ? [e] : [t, e]); }, risk(e, t) { console.error(...Array.isArray(e) ? [e] : [t, e]); } }; }); var Xs = P2((Jn) => { "use strict"; Object.defineProperty(Jn, "__esModule", { value: true }); Object.defineProperty(Jn, "default", { enumerable: true, get: () => rc }); var ec2 = tc((Jr(), Mr(Kr))); function tc(e) { return e && e.__esModule ? e : { default: e }; } function zt({ version: e, from: t, to: n }) { ec2.default.warn(`${t}-color-renamed`, [`As of Tailwind CSS ${e}, \`${t}\` has been renamed to \`${n}\`.`, "Update your configuration file to silence this warning."]); } var rc = { inherit: "inherit", current: "currentColor", transparent: "transparent", black: "#000", white: "#fff", slate: { 50: "#f8fafc", 100: "#f1f5f9", 200: "#e2e8f0", 300: "#cbd5e1", 400: "#94a3b8", 500: "#64748b", 600: "#475569", 700: "#334155", 800: "#1e293b", 900: "#0f172a" }, gray: { 50: "#f9fafb", 100: "#f3f4f6", 200: "#e5e7eb", 300: "#d1d5db", 400: "#9ca3af", 500: "#6b7280", 600: "#4b5563", 700: "#374151", 800: "#1f2937", 900: "#111827" }, zinc: { 50: "#fafafa", 100: "#f4f4f5", 200: "#e4e4e7", 300: "#d4d4d8", 400: "#a1a1aa", 500: "#71717a", 600: "#52525b", 700: "#3f3f46", 800: "#27272a", 900: "#18181b" }, neutral: { 50: "#fafafa", 100: "#f5f5f5", 200: "#e5e5e5", 300: "#d4d4d4", 400: "#a3a3a3", 500: "#737373", 600: "#525252", 700: "#404040", 800: "#262626", 900: "#171717" }, stone: { 50: "#fafaf9", 100: "#f5f5f4", 200: "#e7e5e4", 300: "#d6d3d1", 400: "#a8a29e", 500: "#78716c", 600: "#57534e", 700: "#44403c", 800: "#292524", 900: "#1c1917" }, red: { 50: "#fef2f2", 100: "#fee2e2", 200: "#fecaca", 300: "#fca5a5", 400: "#f87171", 500: "#ef4444", 600: "#dc2626", 700: "#b91c1c", 800: "#991b1b", 900: "#7f1d1d" }, orange: { 50: "#fff7ed", 100: "#ffedd5", 200: "#fed7aa", 300: "#fdba74", 400: "#fb923c", 500: "#f97316", 600: "#ea580c", 700: "#c2410c", 800: "#9a3412", 900: "#7c2d12" }, amber: { 50: "#fffbeb", 100: "#fef3c7", 200: "#fde68a", 300: "#fcd34d", 400: "#fbbf24", 500: "#f59e0b", 600: "#d97706", 700: "#b45309", 800: "#92400e", 900: "#78350f" }, yellow: { 50: "#fefce8", 100: "#fef9c3", 200: "#fef08a", 300: "#fde047", 400: "#facc15", 500: "#eab308", 600: "#ca8a04", 700: "#a16207", 800: "#854d0e", 900: "#713f12" }, lime: { 50: "#f7fee7", 100: "#ecfccb", 200: "#d9f99d", 300: "#bef264", 400: "#a3e635", 500: "#84cc16", 600: "#65a30d", 700: "#4d7c0f", 800: "#3f6212", 900: "#365314" }, green: { 50: "#f0fdf4", 100: "#dcfce7", 200: "#bbf7d0", 300: "#86efac", 400: "#4ade80", 500: "#22c55e", 600: "#16a34a", 700: "#15803d", 800: "#166534", 900: "#14532d" }, emerald: { 50: "#ecfdf5", 100: "#d1fae5", 200: "#a7f3d0", 300: "#6ee7b7", 400: "#34d399", 500: "#10b981", 600: "#059669", 700: "#047857", 800: "#065f46", 900: "#064e3b" }, teal: { 50: "#f0fdfa", 100: "#ccfbf1", 200: "#99f6e4", 300: "#5eead4", 400: "#2dd4bf", 500: "#14b8a6", 600: "#0d9488", 700: "#0f766e", 800: "#115e59", 900: "#134e4a" }, cyan: { 50: "#ecfeff", 100: "#cffafe", 200: "#a5f3fc", 300: "#67e8f9", 400: "#22d3ee", 500: "#06b6d4", 600: "#0891b2", 700: "#0e7490", 800: "#155e75", 900: "#164e63" }, sky: { 50: "#f0f9ff", 100: "#e0f2fe", 200: "#bae6fd", 300: "#7dd3fc", 400: "#38bdf8", 500: "#0ea5e9", 600: "#0284c7", 700: "#0369a1", 800: "#075985", 900: "#0c4a6e" }, blue: { 50: "#eff6ff", 100: "#dbeafe", 200: "#bfdbfe", 300: "#93c5fd", 400: "#60a5fa", 500: "#3b82f6", 600: "#2563eb", 700: "#1d4ed8", 800: "#1e40af", 900: "#1e3a8a" }, indigo: { 50: "#eef2ff", 100: "#e0e7ff", 200: "#c7d2fe", 300: "#a5b4fc", 400: "#818cf8", 500: "#6366f1", 600: "#4f46e5", 700: "#4338ca", 800: "#3730a3", 900: "#312e81" }, violet: { 50: "#f5f3ff", 100: "#ede9fe", 200: "#ddd6fe", 300: "#c4b5fd", 400: "#a78bfa", 500: "#8b5cf6", 600: "#7c3aed", 700: "#6d28d9", 800: "#5b21b6", 900: "#4c1d95" }, purple: { 50: "#faf5ff", 100: "#f3e8ff", 200: "#e9d5ff", 300: "#d8b4fe", 400: "#c084fc", 500: "#a855f7", 600: "#9333ea", 700: "#7e22ce", 800: "#6b21a8", 900: "#581c87" }, fuchsia: { 50: "#fdf4ff", 100: "#fae8ff", 200: "#f5d0fe", 300: "#f0abfc", 400: "#e879f9", 500: "#d946ef", 600: "#c026d3", 700: "#a21caf", 800: "#86198f", 900: "#701a75" }, pink: { 50: "#fdf2f8", 100: "#fce7f3", 200: "#fbcfe8", 300: "#f9a8d4", 400: "#f472b6", 500: "#ec4899", 600: "#db2777", 700: "#be185d", 800: "#9d174d", 900: "#831843" }, rose: { 50: "#fff1f2", 100: "#ffe4e6", 200: "#fecdd3", 300: "#fda4af", 400: "#fb7185", 500: "#f43f5e", 600: "#e11d48", 700: "#be123c", 800: "#9f1239", 900: "#881337" }, get lightBlue() { return zt({ version: "v2.2", from: "lightBlue", to: "sky" }), this.sky; }, get warmGray() { return zt({ version: "v3.0", from: "warmGray", to: "stone" }), this.stone; }, get trueGray() { return zt({ version: "v3.0", from: "trueGray", to: "neutral" }), this.neutral; }, get coolGray() { return zt({ version: "v3.0", from: "coolGray", to: "gray" }), this.gray; }, get blueGray() { return zt({ version: "v3.0", from: "blueGray", to: "slate" }), this.slate; } }; }); var Qs = P2((Zn) => { "use strict"; Object.defineProperty(Zn, "__esModule", { value: true }); Object.defineProperty(Zn, "defaults", { enumerable: true, get: () => nc }); function nc(e, ...t) { for (let i of t) { for (let o in i) { var n; !(e == null || (n = e.hasOwnProperty) === null || n === void 0) && n.call(e, o) || (e[o] = i[o]); } for (let o of Object.getOwnPropertySymbols(i)) { var r; !(e == null || (r = e.hasOwnProperty) === null || r === void 0) && r.call(e, o) || (e[o] = i[o]); } } return e; } }); var Ks = P2((ei) => { "use strict"; Object.defineProperty(ei, "__esModule", { value: true }); Object.defineProperty(ei, "toPath", { enumerable: true, get: () => ic }); function ic(e) { if (Array.isArray(e)) return e; let t = e.split("[").length - 1, n = e.split("]").length - 1; if (t !== n) throw new Error(`Path is invalid. Has unbalanced brackets: ${e}`); return e.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean); } }); var Zs = P2((ti) => { "use strict"; Object.defineProperty(ti, "__esModule", { value: true }); Object.defineProperty(ti, "normalizeConfig", { enumerable: true, get: () => sc }); var Ut = oc((Jr(), Mr(Kr))); function Js(e) { if (typeof WeakMap != "function") return null; var t = /* @__PURE__ */ new WeakMap(), n = /* @__PURE__ */ new WeakMap(); return (Js = function(r) { return r ? n : t; })(e); } function oc(e, t) { if (!t && e && e.__esModule) return e; if (e === null || typeof e != "object" && typeof e != "function") return { default: e }; var n = Js(t); if (n && n.has(e)) return n.get(e); var r = {}, i = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var o in e) if (o !== "default" && Object.prototype.hasOwnProperty.call(e, o)) { var s = i ? Object.getOwnPropertyDescriptor(e, o) : null; s && (s.get || s.set) ? Object.defineProperty(r, o, s) : r[o] = e[o]; } return r.default = e, n && n.set(e, r), r; } function sc(e) { if ((() => { if (e.purge || !e.content || !Array.isArray(e.content) && !(typeof e.content == "object" && e.content !== null)) return false; if (Array.isArray(e.content)) return e.content.every((r) => typeof r == "string" ? true : !(typeof (r == null ? void 0 : r.raw) != "string" || r != null && r.extension && typeof (r == null ? void 0 : r.extension) != "string")); if (typeof e.content == "object" && e.content !== null) { if (Object.keys(e.content).some((r) => !["files", "extract", "transform"].includes(r))) return false; if (Array.isArray(e.content.files)) { if (!e.content.files.every((r) => typeof r == "string" ? true : !(typeof (r == null ? void 0 : r.raw) != "string" || r != null && r.extension && typeof (r == null ? void 0 : r.extension) != "string"))) return false; if (typeof e.content.extract == "object") { for (let r of Object.values(e.content.extract)) if (typeof r != "function") return false; } else if (!(e.content.extract === void 0 || typeof e.content.extract == "function")) return false; if (typeof e.content.transform == "object") { for (let r of Object.values(e.content.transform)) if (typeof r != "function") return false; } else if (!(e.content.transform === void 0 || typeof e.content.transform == "function")) return false; } return true; } return false; })() || Ut.default.warn("purge-deprecation", ["The `purge`/`content` options have changed in Tailwind CSS v3.0.", "Update your configuration file to eliminate this warning.", "https://tailwindcss.com/docs/upgrade-guide#configure-content-sources"]), e.safelist = (() => { var r; let { content: i, purge: o, safelist: s } = e; return Array.isArray(s) ? s : Array.isArray(i == null ? void 0 : i.safelist) ? i.safelist : Array.isArray(o == null ? void 0 : o.safelist) ? o.safelist : Array.isArray(o == null || (r = o.options) === null || r === void 0 ? void 0 : r.safelist) ? o.options.safelist : []; })(), typeof e.prefix == "function") Ut.default.warn("prefix-function", ["As of Tailwind CSS v3.0, `prefix` cannot be a function.", "Update `prefix` in your configuration to be a string to eliminate this warning.", "https://tailwindcss.com/docs/upgrade-guide#prefix-cannot-be-a-function"]), e.prefix = ""; else { var n; e.prefix = (n = e.prefix) !== null && n !== void 0 ? n : ""; } e.content = { files: (() => { let { content: r, purge: i } = e; return Array.isArray(i) ? i : Array.isArray(i == null ? void 0 : i.content) ? i.content : Array.isArray(r) ? r : Array.isArray(r == null ? void 0 : r.content) ? r.content : Array.isArray(r == null ? void 0 : r.files) ? r.files : []; })(), extract: (() => { let r = (() => { var s, a, u2, l2, f, c2, p, d2, h2, m2; return !((s = e.purge) === null || s === void 0) && s.extract ? e.purge.extract : !((a = e.content) === null || a === void 0) && a.extract ? e.content.extract : !((u2 = e.purge) === null || u2 === void 0 || (l2 = u2.extract) === null || l2 === void 0) && l2.DEFAULT ? e.purge.extract.DEFAULT : !((f = e.content) === null || f === void 0 || (c2 = f.extract) === null || c2 === void 0) && c2.DEFAULT ? e.content.extract.DEFAULT : !((p = e.purge) === null || p === void 0 || (d2 = p.options) === null || d2 === void 0) && d2.extractors ? e.purge.options.extractors : !((h2 = e.content) === null || h2 === void 0 || (m2 = h2.options) === null || m2 === void 0) && m2.extractors ? e.content.options.extractors : {}; })(), i = {}, o = (() => { var s, a, u2, l2; if (!((s = e.purge) === null || s === void 0 || (a = s.options) === null || a === void 0) && a.defaultExtractor) return e.purge.options.defaultExtractor; if (!((u2 = e.content) === null || u2 === void 0 || (l2 = u2.options) === null || l2 === void 0) && l2.defaultExtractor) return e.content.options.defaultExtractor; })(); if (o !== void 0 && (i.DEFAULT = o), typeof r == "function") i.DEFAULT = r; else if (Array.isArray(r)) for (let { extensions: s, extractor: a } of r ?? []) for (let u2 of s) i[u2] = a; else typeof r == "object" && r !== null && Object.assign(i, r); return i; })(), transform: (() => { let r = (() => { var o, s, a, u2, l2, f; return !((o = e.purge) === null || o === void 0) && o.transform ? e.purge.transform : !((s = e.content) === null || s === void 0) && s.transform ? e.content.transform : !((a = e.purge) === null || a === void 0 || (u2 = a.transform) === null || u2 === void 0) && u2.DEFAULT ? e.purge.transform.DEFAULT : !((l2 = e.content) === null || l2 === void 0 || (f = l2.transform) === null || f === void 0) && f.DEFAULT ? e.content.transform.DEFAULT : {}; })(), i = {}; return typeof r == "function" && (i.DEFAULT = r), typeof r == "object" && r !== null && Object.assign(i, r), i; })() }; for (let r of e.content.files) if (typeof r == "string" && /{([^,]*?)}/g.test(r)) { Ut.default.warn("invalid-glob-braces", [`The glob pattern ${(0, Ut.dim)(r)} in your Tailwind CSS configuration is invalid.`, `Update it to ${(0, Ut.dim)(r.replace(/{([^,]*?)}/g, "$1"))} to silence this warning.`]); break; } return e; } }); var ea = P2((ri) => { "use strict"; Object.defineProperty(ri, "__esModule", { value: true }); Object.defineProperty(ri, "default", { enumerable: true, get: () => ac }); function ac(e) { if (Object.prototype.toString.call(e) !== "[object Object]") return false; let t = Object.getPrototypeOf(e); return t === null || t === Object.prototype; } }); var ta = P2((ii) => { "use strict"; Object.defineProperty(ii, "__esModule", { value: true }); Object.defineProperty(ii, "cloneDeep", { enumerable: true, get: () => ni }); function ni(e) { return Array.isArray(e) ? e.map((t) => ni(t)) : typeof e == "object" && e !== null ? Object.fromEntries(Object.entries(e).map(([t, n]) => [t, ni(n)])) : e; } }); var oi = P2((Zr, ra) => { "use strict"; Zr.__esModule = true; Zr.default = fc; function uc(e) { for (var t = e.toLowerCase(), n = "", r = false, i = 0; i < 6 && t[i] !== void 0; i++) { var o = t.charCodeAt(i), s = o >= 97 && o <= 102 || o >= 48 && o <= 57; if (r = o === 32, !s) break; n += t[i]; } if (n.length !== 0) { var a = parseInt(n, 16), u2 = a >= 55296 && a <= 57343; return u2 || a === 0 || a > 1114111 ? ["\uFFFD", n.length + (r ? 1 : 0)] : [String.fromCodePoint(a), n.length + (r ? 1 : 0)]; } } var lc = /\\/; function fc(e) { var t = lc.test(e); if (!t) return e; for (var n = "", r = 0; r < e.length; r++) { if (e[r] === "\\") { var i = uc(e.slice(r + 1, r + 7)); if (i !== void 0) { n += i[0], r += i[1]; continue; } if (e[r + 1] === "\\") { n += "\\", r++; continue; } e.length === r + 1 && (n += e[r]); continue; } n += e[r]; } return n; } ra.exports = Zr.default; }); var ia = P2((en, na) => { "use strict"; en.__esModule = true; en.default = cc; function cc(e) { for (var t = arguments.length, n = new Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) n[r - 1] = arguments[r]; for (; n.length > 0; ) { var i = n.shift(); if (!e[i]) return; e = e[i]; } return e; } na.exports = en.default; }); var sa = P2((tn, oa) => { "use strict"; tn.__esModule = true; tn.default = dc; function dc(e) { for (var t = arguments.length, n = new Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++) n[r - 1] = arguments[r]; for (; n.length > 0; ) { var i = n.shift(); e[i] || (e[i] = {}), e = e[i]; } } oa.exports = tn.default; }); var ua = P2((rn, aa) => { "use strict"; rn.__esModule = true; rn.default = pc; function pc(e) { for (var t = "", n = e.indexOf("/*"), r = 0; n >= 0; ) { t = t + e.slice(r, n); var i = e.indexOf("*/", n + 2); if (i < 0) return t; r = i + 2, n = e.indexOf("/*", r); } return t = t + e.slice(r), t; } aa.exports = rn.default; }); var Gt = P2((Le) => { "use strict"; Le.__esModule = true; Le.stripComments = Le.ensureObject = Le.getProp = Le.unesc = void 0; var hc = nn(oi()); Le.unesc = hc.default; var mc = nn(ia()); Le.getProp = mc.default; var gc = nn(sa()); Le.ensureObject = gc.default; var bc = nn(ua()); Le.stripComments = bc.default; function nn(e) { return e && e.__esModule ? e : { default: e }; } }); var Fe = P2((jt, ca) => { "use strict"; jt.__esModule = true; jt.default = void 0; var la = Gt(); function fa(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function vc(e, t, n) { return t && fa(e.prototype, t), n && fa(e, n), e; } var yc = function e(t, n) { if (typeof t != "object" || t === null) return t; var r = new t.constructor(); for (var i in t) if (t.hasOwnProperty(i)) { var o = t[i], s = typeof o; i === "parent" && s === "object" ? n && (r[i] = n) : o instanceof Array ? r[i] = o.map(function(a) { return e(a, r); }) : r[i] = e(o, r); } return r; }, xc = function() { function e(n) { n === void 0 && (n = {}), Object.assign(this, n), this.spaces = this.spaces || {}, this.spaces.before = this.spaces.before || "", this.spaces.after = this.spaces.after || ""; } var t = e.prototype; return t.remove = function() { return this.parent && this.parent.removeChild(this), this.parent = void 0, this; }, t.replaceWith = function() { if (this.parent) { for (var r in arguments) this.parent.insertBefore(this, arguments[r]); this.remove(); } return this; }, t.next = function() { return this.parent.at(this.parent.index(this) + 1); }, t.prev = function() { return this.parent.at(this.parent.index(this) - 1); }, t.clone = function(r) { r === void 0 && (r = {}); var i = yc(this); for (var o in r) i[o] = r[o]; return i; }, t.appendToPropertyAndEscape = function(r, i, o) { this.raws || (this.raws = {}); var s = this[r], a = this.raws[r]; this[r] = s + i, a || o !== i ? this.raws[r] = (a || s) + o : delete this.raws[r]; }, t.setPropertyAndEscape = function(r, i, o) { this.raws || (this.raws = {}), this[r] = i, this.raws[r] = o; }, t.setPropertyWithoutEscape = function(r, i) { this[r] = i, this.raws && delete this.raws[r]; }, t.isAtPosition = function(r, i) { if (this.source && this.source.start && this.source.end) return !(this.source.start.line > r || this.source.end.line < r || this.source.start.line === r && this.source.start.column > i || this.source.end.line === r && this.source.end.column < i); }, t.stringifyProperty = function(r) { return this.raws && this.raws[r] || this[r]; }, t.valueToString = function() { return String(this.stringifyProperty("value")); }, t.toString = function() { return [this.rawSpaceBefore, this.valueToString(), this.rawSpaceAfter].join(""); }, vc(e, [{ key: "rawSpaceBefore", get: function() { var r = this.raws && this.raws.spaces && this.raws.spaces.before; return r === void 0 && (r = this.spaces && this.spaces.before), r || ""; }, set: function(r) { (0, la.ensureObject)(this, "raws", "spaces"), this.raws.spaces.before = r; } }, { key: "rawSpaceAfter", get: function() { var r = this.raws && this.raws.spaces && this.raws.spaces.after; return r === void 0 && (r = this.spaces.after), r || ""; }, set: function(r) { (0, la.ensureObject)(this, "raws", "spaces"), this.raws.spaces.after = r; } }]), e; }(); jt.default = xc; ca.exports = jt.default; }); var ne = P2((G) => { "use strict"; G.__esModule = true; G.UNIVERSAL = G.ATTRIBUTE = G.CLASS = G.COMBINATOR = G.COMMENT = G.ID = G.NESTING = G.PSEUDO = G.ROOT = G.SELECTOR = G.STRING = G.TAG = void 0; var wc = "tag"; G.TAG = wc; var Sc = "string"; G.STRING = Sc; var _c = "selector"; G.SELECTOR = _c; var kc = "root"; G.ROOT = kc; var Tc = "pseudo"; G.PSEUDO = Tc; var Ec = "nesting"; G.NESTING = Ec; var Oc = "id"; G.ID = Oc; var Pc = "comment"; G.COMMENT = Pc; var Ic = "combinator"; G.COMBINATOR = Ic; var Ac = "class"; G.CLASS = Ac; var Rc = "attribute"; G.ATTRIBUTE = Rc; var Lc = "universal"; G.UNIVERSAL = Lc; }); var on = P2((Ht, ma) => { "use strict"; Ht.__esModule = true; Ht.default = void 0; var Cc = Dc(Fe()), We = Mc(ne()); function ha() { if (typeof WeakMap != "function") return null; var e = /* @__PURE__ */ new WeakMap(); return ha = function() { return e; }, e; } function Mc(e) { if (e && e.__esModule) return e; if (e === null || typeof e != "object" && typeof e != "function") return { default: e }; var t = ha(); if (t && t.has(e)) return t.get(e); var n = {}, r = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var i in e) if (Object.prototype.hasOwnProperty.call(e, i)) { var o = r ? Object.getOwnPropertyDescriptor(e, i) : null; o && (o.get || o.set) ? Object.defineProperty(n, i, o) : n[i] = e[i]; } return n.default = e, t && t.set(e, n), n; } function Dc(e) { return e && e.__esModule ? e : { default: e }; } function Nc(e, t) { var n; if (typeof Symbol > "u" || e[Symbol.iterator] == null) { if (Array.isArray(e) || (n = Fc(e)) || t && e && typeof e.length == "number") { n && (e = n); var r = 0; return function() { return r >= e.length ? { done: true } : { done: false, value: e[r++] }; }; } throw new TypeError(`Invalid attempt to iterate non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`); } return n = e[Symbol.iterator](), n.next.bind(n); } function Fc(e, t) { if (e) { if (typeof e == "string") return da(e, t); var n = Object.prototype.toString.call(e).slice(8, -1); if (n === "Object" && e.constructor && (n = e.constructor.name), n === "Map" || n === "Set") return Array.from(e); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return da(e, t); } } function da(e, t) { (t == null || t > e.length) && (t = e.length); for (var n = 0, r = new Array(t); n < t; n++) r[n] = e[n]; return r; } function pa(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function Wc(e, t, n) { return t && pa(e.prototype, t), n && pa(e, n), e; } function $c(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, si(e, t); } function si(e, t) { return si = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, si(e, t); } var qc = function(e) { $c(t, e); function t(r) { var i; return i = e.call(this, r) || this, i.nodes || (i.nodes = []), i; } var n = t.prototype; return n.append = function(i) { return i.parent = this, this.nodes.push(i), this; }, n.prepend = function(i) { return i.parent = this, this.nodes.unshift(i), this; }, n.at = function(i) { return this.nodes[i]; }, n.index = function(i) { return typeof i == "number" ? i : this.nodes.indexOf(i); }, n.removeChild = function(i) { i = this.index(i), this.at(i).parent = void 0, this.nodes.splice(i, 1); var o; for (var s in this.indexes) o = this.indexes[s], o >= i && (this.indexes[s] = o - 1); return this; }, n.removeAll = function() { for (var i = Nc(this.nodes), o; !(o = i()).done; ) { var s = o.value; s.parent = void 0; } return this.nodes = [], this; }, n.empty = function() { return this.removeAll(); }, n.insertAfter = function(i, o) { o.parent = this; var s = this.index(i); this.nodes.splice(s + 1, 0, o), o.parent = this; var a; for (var u2 in this.indexes) a = this.indexes[u2], s <= a && (this.indexes[u2] = a + 1); return this; }, n.insertBefore = function(i, o) { o.parent = this; var s = this.index(i); this.nodes.splice(s, 0, o), o.parent = this; var a; for (var u2 in this.indexes) a = this.indexes[u2], a <= s && (this.indexes[u2] = a + 1); return this; }, n._findChildAtPosition = function(i, o) { var s = void 0; return this.each(function(a) { if (a.atPosition) { var u2 = a.atPosition(i, o); if (u2) return s = u2, false; } else if (a.isAtPosition(i, o)) return s = a, false; }), s; }, n.atPosition = function(i, o) { if (this.isAtPosition(i, o)) return this._findChildAtPosition(i, o) || this; }, n._inferEndPosition = function() { this.last && this.last.source && this.last.source.end && (this.source = this.source || {}, this.source.end = this.source.end || {}, Object.assign(this.source.end, this.last.source.end)); }, n.each = function(i) { this.lastEach || (this.lastEach = 0), this.indexes || (this.indexes = {}), this.lastEach++; var o = this.lastEach; if (this.indexes[o] = 0, !!this.length) { for (var s, a; this.indexes[o] < this.length && (s = this.indexes[o], a = i(this.at(s), s), a !== false); ) this.indexes[o] += 1; if (delete this.indexes[o], a === false) return false; } }, n.walk = function(i) { return this.each(function(o, s) { var a = i(o, s); if (a !== false && o.length && (a = o.walk(i)), a === false) return false; }); }, n.walkAttributes = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.ATTRIBUTE) return i.call(o, s); }); }, n.walkClasses = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.CLASS) return i.call(o, s); }); }, n.walkCombinators = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.COMBINATOR) return i.call(o, s); }); }, n.walkComments = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.COMMENT) return i.call(o, s); }); }, n.walkIds = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.ID) return i.call(o, s); }); }, n.walkNesting = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.NESTING) return i.call(o, s); }); }, n.walkPseudos = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.PSEUDO) return i.call(o, s); }); }, n.walkTags = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.TAG) return i.call(o, s); }); }, n.walkUniversals = function(i) { var o = this; return this.walk(function(s) { if (s.type === We.UNIVERSAL) return i.call(o, s); }); }, n.split = function(i) { var o = this, s = []; return this.reduce(function(a, u2, l2) { var f = i.call(o, u2); return s.push(u2), f ? (a.push(s), s = []) : l2 === o.length - 1 && a.push(s), a; }, []); }, n.map = function(i) { return this.nodes.map(i); }, n.reduce = function(i, o) { return this.nodes.reduce(i, o); }, n.every = function(i) { return this.nodes.every(i); }, n.some = function(i) { return this.nodes.some(i); }, n.filter = function(i) { return this.nodes.filter(i); }, n.sort = function(i) { return this.nodes.sort(i); }, n.toString = function() { return this.map(String).join(""); }, Wc(t, [{ key: "first", get: function() { return this.at(0); } }, { key: "last", get: function() { return this.at(this.length - 1); } }, { key: "length", get: function() { return this.nodes.length; } }]), t; }(Cc.default); Ht.default = qc; ma.exports = Ht.default; }); var ui = P2((Vt, ba) => { "use strict"; Vt.__esModule = true; Vt.default = void 0; var Bc = Uc(on()), zc = ne(); function Uc(e) { return e && e.__esModule ? e : { default: e }; } function ga(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function Gc(e, t, n) { return t && ga(e.prototype, t), n && ga(e, n), e; } function jc(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, ai(e, t); } function ai(e, t) { return ai = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, ai(e, t); } var Hc = function(e) { jc(t, e); function t(r) { var i; return i = e.call(this, r) || this, i.type = zc.ROOT, i; } var n = t.prototype; return n.toString = function() { var i = this.reduce(function(o, s) { return o.push(String(s)), o; }, []).join(","); return this.trailingComma ? i + "," : i; }, n.error = function(i, o) { return this._error ? this._error(i, o) : new Error(i); }, Gc(t, [{ key: "errorGenerator", set: function(i) { this._error = i; } }]), t; }(Bc.default); Vt.default = Hc; ba.exports = Vt.default; }); var fi = P2((Yt, va) => { "use strict"; Yt.__esModule = true; Yt.default = void 0; var Vc = Xc(on()), Yc = ne(); function Xc(e) { return e && e.__esModule ? e : { default: e }; } function Qc(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, li(e, t); } function li(e, t) { return li = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, li(e, t); } var Kc = function(e) { Qc(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = Yc.SELECTOR, r; } return t; }(Vc.default); Yt.default = Kc; va.exports = Yt.default; }); var sn = P2((Wv, ya) => { "use strict"; var Jc = {}, Zc = Jc.hasOwnProperty, ed = function(t, n) { if (!t) return n; var r = {}; for (var i in n) r[i] = Zc.call(t, i) ? t[i] : n[i]; return r; }, td2 = /[ -,\.\/:-@\[-\^`\{-~]/, rd = /[ -,\.\/:-@\[\]\^`\{-~]/, nd = /(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g, ci = function e(t, n) { n = ed(n, e.options), n.quotes != "single" && n.quotes != "double" && (n.quotes = "single"); for (var r = n.quotes == "double" ? '"' : "'", i = n.isIdentifier, o = t.charAt(0), s = "", a = 0, u2 = t.length; a < u2; ) { var l2 = t.charAt(a++), f = l2.charCodeAt(), c2 = void 0; if (f < 32 || f > 126) { if (f >= 55296 && f <= 56319 && a < u2) { var p = t.charCodeAt(a++); (p & 64512) == 56320 ? f = ((f & 1023) << 10) + (p & 1023) + 65536 : a--; } c2 = "\\" + f.toString(16).toUpperCase() + " "; } else n.escapeEverything ? td2.test(l2) ? c2 = "\\" + l2 : c2 = "\\" + f.toString(16).toUpperCase() + " " : /[\t\n\f\r\x0B]/.test(l2) ? c2 = "\\" + f.toString(16).toUpperCase() + " " : l2 == "\\" || !i && (l2 == '"' && r == l2 || l2 == "'" && r == l2) || i && rd.test(l2) ? c2 = "\\" + l2 : c2 = l2; s += c2; } return i && (/^-[-\d]/.test(s) ? s = "\\-" + s.slice(1) : /\d/.test(o) && (s = "\\3" + o + " " + s.slice(1))), s = s.replace(nd, function(d2, h2, m2) { return h2 && h2.length % 2 ? d2 : (h2 || "") + m2; }), !i && n.wrap ? r + s + r : s; }; ci.options = { escapeEverything: false, isIdentifier: false, quotes: "single", wrap: false }; ci.version = "3.0.0"; ya.exports = ci; }); var pi = P2((Xt, Sa) => { "use strict"; Xt.__esModule = true; Xt.default = void 0; var id = wa(sn()), od = Gt(), sd = wa(Fe()), ad = ne(); function wa(e) { return e && e.__esModule ? e : { default: e }; } function xa(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function ud(e, t, n) { return t && xa(e.prototype, t), n && xa(e, n), e; } function ld(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, di(e, t); } function di(e, t) { return di = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, di(e, t); } var fd2 = function(e) { ld(t, e); function t(r) { var i; return i = e.call(this, r) || this, i.type = ad.CLASS, i._constructed = true, i; } var n = t.prototype; return n.valueToString = function() { return "." + e.prototype.valueToString.call(this); }, ud(t, [{ key: "value", get: function() { return this._value; }, set: function(i) { if (this._constructed) { var o = (0, id.default)(i, { isIdentifier: true }); o !== i ? ((0, od.ensureObject)(this, "raws"), this.raws.value = o) : this.raws && delete this.raws.value; } this._value = i; } }]), t; }(sd.default); Xt.default = fd2; Sa.exports = Xt.default; }); var mi = P2((Qt, _a2) => { "use strict"; Qt.__esModule = true; Qt.default = void 0; var cd = pd(Fe()), dd = ne(); function pd(e) { return e && e.__esModule ? e : { default: e }; } function hd(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, hi(e, t); } function hi(e, t) { return hi = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, hi(e, t); } var md = function(e) { hd(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = dd.COMMENT, r; } return t; }(cd.default); Qt.default = md; _a2.exports = Qt.default; }); var bi = P2((Kt, ka) => { "use strict"; Kt.__esModule = true; Kt.default = void 0; var gd = vd(Fe()), bd = ne(); function vd(e) { return e && e.__esModule ? e : { default: e }; } function yd(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, gi(e, t); } function gi(e, t) { return gi = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, gi(e, t); } var xd = function(e) { yd(t, e); function t(r) { var i; return i = e.call(this, r) || this, i.type = bd.ID, i; } var n = t.prototype; return n.valueToString = function() { return "#" + e.prototype.valueToString.call(this); }, t; }(gd.default); Kt.default = xd; ka.exports = Kt.default; }); var an = P2((Jt, Oa) => { "use strict"; Jt.__esModule = true; Jt.default = void 0; var wd = Ea(sn()), Sd = Gt(), _d = Ea(Fe()); function Ea(e) { return e && e.__esModule ? e : { default: e }; } function Ta(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function kd(e, t, n) { return t && Ta(e.prototype, t), n && Ta(e, n), e; } function Td(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, vi(e, t); } function vi(e, t) { return vi = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, vi(e, t); } var Ed = function(e) { Td(t, e); function t() { return e.apply(this, arguments) || this; } var n = t.prototype; return n.qualifiedName = function(i) { return this.namespace ? this.namespaceString + "|" + i : i; }, n.valueToString = function() { return this.qualifiedName(e.prototype.valueToString.call(this)); }, kd(t, [{ key: "namespace", get: function() { return this._namespace; }, set: function(i) { if (i === true || i === "*" || i === "&") { this._namespace = i, this.raws && delete this.raws.namespace; return; } var o = (0, wd.default)(i, { isIdentifier: true }); this._namespace = i, o !== i ? ((0, Sd.ensureObject)(this, "raws"), this.raws.namespace = o) : this.raws && delete this.raws.namespace; } }, { key: "ns", get: function() { return this._namespace; }, set: function(i) { this.namespace = i; } }, { key: "namespaceString", get: function() { if (this.namespace) { var i = this.stringifyProperty("namespace"); return i === true ? "" : i; } else return ""; } }]), t; }(_d.default); Jt.default = Ed; Oa.exports = Jt.default; }); var xi = P2((Zt, Pa) => { "use strict"; Zt.__esModule = true; Zt.default = void 0; var Od = Id(an()), Pd = ne(); function Id(e) { return e && e.__esModule ? e : { default: e }; } function Ad(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, yi(e, t); } function yi(e, t) { return yi = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, yi(e, t); } var Rd = function(e) { Ad(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = Pd.TAG, r; } return t; }(Od.default); Zt.default = Rd; Pa.exports = Zt.default; }); var Si = P2((er, Ia) => { "use strict"; er.__esModule = true; er.default = void 0; var Ld = Md(Fe()), Cd = ne(); function Md(e) { return e && e.__esModule ? e : { default: e }; } function Dd(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, wi(e, t); } function wi(e, t) { return wi = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, wi(e, t); } var Nd = function(e) { Dd(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = Cd.STRING, r; } return t; }(Ld.default); er.default = Nd; Ia.exports = er.default; }); var ki = P2((tr, Aa) => { "use strict"; tr.__esModule = true; tr.default = void 0; var Fd = $d(on()), Wd = ne(); function $d(e) { return e && e.__esModule ? e : { default: e }; } function qd(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, _i(e, t); } function _i(e, t) { return _i = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, _i(e, t); } var Bd = function(e) { qd(t, e); function t(r) { var i; return i = e.call(this, r) || this, i.type = Wd.PSEUDO, i; } var n = t.prototype; return n.toString = function() { var i = this.length ? "(" + this.map(String).join(",") + ")" : ""; return [this.rawSpaceBefore, this.stringifyProperty("value"), i, this.rawSpaceAfter].join(""); }, t; }(Fd.default); tr.default = Bd; Aa.exports = tr.default; }); var La = P2(($v, Ra) => { Ra.exports = function(t, n) { return function(...r) { return console.warn(n), t(...r); }; }; }); var Ai = P2((ir) => { "use strict"; ir.__esModule = true; ir.unescapeValue = Ii; ir.default = void 0; var rr = Pi(sn()), zd = Pi(oi()), Ud = Pi(an()), Gd = ne(), Ti; function Pi(e) { return e && e.__esModule ? e : { default: e }; } function Ca(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function jd(e, t, n) { return t && Ca(e.prototype, t), n && Ca(e, n), e; } function Hd(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, Oi(e, t); } function Oi(e, t) { return Oi = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, Oi(e, t); } var nr = La(), Vd = /^('|")([^]*)\1$/, Yd = nr(function() { }, "Assigning an attribute a value containing characters that might need to be escaped is deprecated. Call attribute.setValue() instead."), Xd = nr(function() { }, "Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead."), Qd = nr(function() { }, "Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now."); function Ii(e) { var t = false, n = null, r = e, i = r.match(Vd); return i && (n = i[1], r = i[2]), r = (0, zd.default)(r), r !== e && (t = true), { deprecatedUsage: t, unescaped: r, quoteMark: n }; } function Kd(e) { if (e.quoteMark !== void 0 || e.value === void 0) return e; Qd(); var t = Ii(e.value), n = t.quoteMark, r = t.unescaped; return e.raws || (e.raws = {}), e.raws.value === void 0 && (e.raws.value = e.value), e.value = r, e.quoteMark = n, e; } var un = function(e) { Hd(t, e); function t(r) { var i; return r === void 0 && (r = {}), i = e.call(this, Kd(r)) || this, i.type = Gd.ATTRIBUTE, i.raws = i.raws || {}, Object.defineProperty(i.raws, "unquoted", { get: nr(function() { return i.value; }, "attr.raws.unquoted is deprecated. Call attr.value instead."), set: nr(function() { return i.value; }, "Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.") }), i._constructed = true, i; } var n = t.prototype; return n.getQuotedValue = function(i) { i === void 0 && (i = {}); var o = this._determineQuoteMark(i), s = Ei[o], a = (0, rr.default)(this._value, s); return a; }, n._determineQuoteMark = function(i) { return i.smart ? this.smartQuoteMark(i) : this.preferredQuoteMark(i); }, n.setValue = function(i, o) { o === void 0 && (o = {}), this._value = i, this._quoteMark = this._determineQuoteMark(o), this._syncRawValue(); }, n.smartQuoteMark = function(i) { var o = this.value, s = o.replace(/[^']/g, "").length, a = o.replace(/[^"]/g, "").length; if (s + a === 0) { var u2 = (0, rr.default)(o, { isIdentifier: true }); if (u2 === o) return t.NO_QUOTE; var l2 = this.preferredQuoteMark(i); if (l2 === t.NO_QUOTE) { var f = this.quoteMark || i.quoteMark || t.DOUBLE_QUOTE, c2 = Ei[f], p = (0, rr.default)(o, c2); if (p.length < u2.length) return f; } return l2; } else return a === s ? this.preferredQuoteMark(i) : a < s ? t.DOUBLE_QUOTE : t.SINGLE_QUOTE; }, n.preferredQuoteMark = function(i) { var o = i.preferCurrentQuoteMark ? this.quoteMark : i.quoteMark; return o === void 0 && (o = i.preferCurrentQuoteMark ? i.quoteMark : this.quoteMark), o === void 0 && (o = t.DOUBLE_QUOTE), o; }, n._syncRawValue = function() { var i = (0, rr.default)(this._value, Ei[this.quoteMark]); i === this._value ? this.raws && delete this.raws.value : this.raws.value = i; }, n._handleEscapes = function(i, o) { if (this._constructed) { var s = (0, rr.default)(o, { isIdentifier: true }); s !== o ? this.raws[i] = s : delete this.raws[i]; } }, n._spacesFor = function(i) { var o = { before: "", after: "" }, s = this.spaces[i] || {}, a = this.raws.spaces && this.raws.spaces[i] || {}; return Object.assign(o, s, a); }, n._stringFor = function(i, o, s) { o === void 0 && (o = i), s === void 0 && (s = Ma); var a = this._spacesFor(o); return s(this.stringifyProperty(i), a); }, n.offsetOf = function(i) { var o = 1, s = this._spacesFor("attribute"); if (o += s.before.length, i === "namespace" || i === "ns") return this.namespace ? o : -1; if (i === "attributeNS" || (o += this.namespaceString.length, this.namespace && (o += 1), i === "attribute")) return o; o += this.stringifyProperty("attribute").length, o += s.after.length; var a = this._spacesFor("operator"); o += a.before.length; var u2 = this.stringifyProperty("operator"); if (i === "operator") return u2 ? o : -1; o += u2.length, o += a.after.length; var l2 = this._spacesFor("value"); o += l2.before.length; var f = this.stringifyProperty("value"); if (i === "value") return f ? o : -1; o += f.length, o += l2.after.length; var c2 = this._spacesFor("insensitive"); return o += c2.before.length, i === "insensitive" && this.insensitive ? o : -1; }, n.toString = function() { var i = this, o = [this.rawSpaceBefore, "["]; return o.push(this._stringFor("qualifiedAttribute", "attribute")), this.operator && (this.value || this.value === "") && (o.push(this._stringFor("operator")), o.push(this._stringFor("value")), o.push(this._stringFor("insensitiveFlag", "insensitive", function(s, a) { return s.length > 0 && !i.quoted && a.before.length === 0 && !(i.spaces.value && i.spaces.value.after) && (a.before = " "), Ma(s, a); }))), o.push("]"), o.push(this.rawSpaceAfter), o.join(""); }, jd(t, [{ key: "quoted", get: function() { var i = this.quoteMark; return i === "'" || i === '"'; }, set: function(i) { Xd(); } }, { key: "quoteMark", get: function() { return this._quoteMark; }, set: function(i) { if (!this._constructed) { this._quoteMark = i; return; } this._quoteMark !== i && (this._quoteMark = i, this._syncRawValue()); } }, { key: "qualifiedAttribute", get: function() { return this.qualifiedName(this.raws.attribute || this.attribute); } }, { key: "insensitiveFlag", get: function() { return this.insensitive ? "i" : ""; } }, { key: "value", get: function() { return this._value; }, set: function(i) { if (this._constructed) { var o = Ii(i), s = o.deprecatedUsage, a = o.unescaped, u2 = o.quoteMark; if (s && Yd(), a === this._value && u2 === this._quoteMark) return; this._value = a, this._quoteMark = u2, this._syncRawValue(); } else this._value = i; } }, { key: "attribute", get: function() { return this._attribute; }, set: function(i) { this._handleEscapes("attribute", i), this._attribute = i; } }]), t; }(Ud.default); ir.default = un; un.NO_QUOTE = null; un.SINGLE_QUOTE = "'"; un.DOUBLE_QUOTE = '"'; var Ei = (Ti = { "'": { quotes: "single", wrap: true }, '"': { quotes: "double", wrap: true } }, Ti[null] = { isIdentifier: true }, Ti); function Ma(e, t) { return "" + t.before + e + t.after; } }); var Li = P2((or, Da) => { "use strict"; or.__esModule = true; or.default = void 0; var Jd = ep(an()), Zd = ne(); function ep(e) { return e && e.__esModule ? e : { default: e }; } function tp(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, Ri(e, t); } function Ri(e, t) { return Ri = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, Ri(e, t); } var rp = function(e) { tp(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = Zd.UNIVERSAL, r.value = "*", r; } return t; }(Jd.default); or.default = rp; Da.exports = or.default; }); var Mi = P2((sr, Na) => { "use strict"; sr.__esModule = true; sr.default = void 0; var np = op(Fe()), ip = ne(); function op(e) { return e && e.__esModule ? e : { default: e }; } function sp(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, Ci(e, t); } function Ci(e, t) { return Ci = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, Ci(e, t); } var ap = function(e) { sp(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = ip.COMBINATOR, r; } return t; }(np.default); sr.default = ap; Na.exports = sr.default; }); var Ni = P2((ar, Fa) => { "use strict"; ar.__esModule = true; ar.default = void 0; var up = fp(Fe()), lp = ne(); function fp(e) { return e && e.__esModule ? e : { default: e }; } function cp(e, t) { e.prototype = Object.create(t.prototype), e.prototype.constructor = e, Di(e, t); } function Di(e, t) { return Di = Object.setPrototypeOf || function(r, i) { return r.__proto__ = i, r; }, Di(e, t); } var dp = function(e) { cp(t, e); function t(n) { var r; return r = e.call(this, n) || this, r.type = lp.NESTING, r.value = "&", r; } return t; }(up.default); ar.default = dp; Fa.exports = ar.default; }); var $a = P2((ln, Wa) => { "use strict"; ln.__esModule = true; ln.default = pp; function pp(e) { return e.sort(function(t, n) { return t - n; }); } Wa.exports = ln.default; }); var Fi = P2((O) => { "use strict"; O.__esModule = true; O.combinator = O.word = O.comment = O.str = O.tab = O.newline = O.feed = O.cr = O.backslash = O.bang = O.slash = O.doubleQuote = O.singleQuote = O.space = O.greaterThan = O.pipe = O.equals = O.plus = O.caret = O.tilde = O.dollar = O.closeSquare = O.openSquare = O.closeParenthesis = O.openParenthesis = O.semicolon = O.colon = O.comma = O.at = O.asterisk = O.ampersand = void 0; var hp = 38; O.ampersand = hp; var mp = 42; O.asterisk = mp; var gp = 64; O.at = gp; var bp = 44; O.comma = bp; var vp = 58; O.colon = vp; var yp = 59; O.semicolon = yp; var xp = 40; O.openParenthesis = xp; var wp = 41; O.closeParenthesis = wp; var Sp = 91; O.openSquare = Sp; var _p = 93; O.closeSquare = _p; var kp = 36; O.dollar = kp; var Tp = 126; O.tilde = Tp; var Ep = 94; O.caret = Ep; var Op = 43; O.plus = Op; var Pp = 61; O.equals = Pp; var Ip = 124; O.pipe = Ip; var Ap = 62; O.greaterThan = Ap; var Rp = 32; O.space = Rp; var qa = 39; O.singleQuote = qa; var Lp = 34; O.doubleQuote = Lp; var Cp = 47; O.slash = Cp; var Mp = 33; O.bang = Mp; var Dp = 92; O.backslash = Dp; var Np = 13; O.cr = Np; var Fp = 12; O.feed = Fp; var Wp = 10; O.newline = Wp; var $p = 9; O.tab = $p; var qp = qa; O.str = qp; var Bp = -1; O.comment = Bp; var zp = -2; O.word = zp; var Up = -3; O.combinator = Up; }); var Ua = P2((ur) => { "use strict"; ur.__esModule = true; ur.default = Qp; ur.FIELDS = void 0; var k = Gp(Fi()), xt, U; function za() { if (typeof WeakMap != "function") return null; var e = /* @__PURE__ */ new WeakMap(); return za = function() { return e; }, e; } function Gp(e) { if (e && e.__esModule) return e; if (e === null || typeof e != "object" && typeof e != "function") return { default: e }; var t = za(); if (t && t.has(e)) return t.get(e); var n = {}, r = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var i in e) if (Object.prototype.hasOwnProperty.call(e, i)) { var o = r ? Object.getOwnPropertyDescriptor(e, i) : null; o && (o.get || o.set) ? Object.defineProperty(n, i, o) : n[i] = e[i]; } return n.default = e, t && t.set(e, n), n; } var jp = (xt = {}, xt[k.tab] = true, xt[k.newline] = true, xt[k.cr] = true, xt[k.feed] = true, xt), Hp = (U = {}, U[k.space] = true, U[k.tab] = true, U[k.newline] = true, U[k.cr] = true, U[k.feed] = true, U[k.ampersand] = true, U[k.asterisk] = true, U[k.bang] = true, U[k.comma] = true, U[k.colon] = true, U[k.semicolon] = true, U[k.openParenthesis] = true, U[k.closeParenthesis] = true, U[k.openSquare] = true, U[k.closeSquare] = true, U[k.singleQuote] = true, U[k.doubleQuote] = true, U[k.plus] = true, U[k.pipe] = true, U[k.tilde] = true, U[k.greaterThan] = true, U[k.equals] = true, U[k.dollar] = true, U[k.caret] = true, U[k.slash] = true, U), Wi = {}, Ba = "0123456789abcdefABCDEF"; for (fn = 0; fn < Ba.length; fn++) Wi[Ba.charCodeAt(fn)] = true; var fn; function Vp(e, t) { var n = t, r; do { if (r = e.charCodeAt(n), Hp[r]) return n - 1; r === k.backslash ? n = Yp(e, n) + 1 : n++; } while (n < e.length); return n - 1; } function Yp(e, t) { var n = t, r = e.charCodeAt(n + 1); if (!jp[r]) if (Wi[r]) { var i = 0; do n++, i++, r = e.charCodeAt(n + 1); while (Wi[r] && i < 6); i < 6 && r === k.space && n++; } else n++; return n; } var Xp = { TYPE: 0, START_LINE: 1, START_COL: 2, END_LINE: 3, END_COL: 4, START_POS: 5, END_POS: 6 }; ur.FIELDS = Xp; function Qp(e) { var t = [], n = e.css.valueOf(), r = n, i = r.length, o = -1, s = 1, a = 0, u2 = 0, l2, f, c2, p, d2, h2, m2, w2, b, T, y, v2, x2; function I(A, L) { if (e.safe) n += L, b = n.length - 1; else throw e.error("Unclosed " + A, s, a - o, a); } for (; a < i; ) { switch (l2 = n.charCodeAt(a), l2 === k.newline && (o = a, s += 1), l2) { case k.space: case k.tab: case k.newline: case k.cr: case k.feed: b = a; do b += 1, l2 = n.charCodeAt(b), l2 === k.newline && (o = b, s += 1); while (l2 === k.space || l2 === k.newline || l2 === k.tab || l2 === k.cr || l2 === k.feed); x2 = k.space, p = s, c2 = b - o - 1, u2 = b; break; case k.plus: case k.greaterThan: case k.tilde: case k.pipe: b = a; do b += 1, l2 = n.charCodeAt(b); while (l2 === k.plus || l2 === k.greaterThan || l2 === k.tilde || l2 === k.pipe); x2 = k.combinator, p = s, c2 = a - o, u2 = b; break; case k.asterisk: case k.ampersand: case k.bang: case k.comma: case k.equals: case k.dollar: case k.caret: case k.openSquare: case k.closeSquare: case k.colon: case k.semicolon: case k.openParenthesis: case k.closeParenthesis: b = a, x2 = l2, p = s, c2 = a - o, u2 = b + 1; break; case k.singleQuote: case k.doubleQuote: v2 = l2 === k.singleQuote ? "'" : '"', b = a; do for (d2 = false, b = n.indexOf(v2, b + 1), b === -1 && I("quote", v2), h2 = b; n.charCodeAt(h2 - 1) === k.backslash; ) h2 -= 1, d2 = !d2; while (d2); x2 = k.str, p = s, c2 = a - o, u2 = b + 1; break; default: l2 === k.slash && n.charCodeAt(a + 1) === k.asterisk ? (b = n.indexOf("*/", a + 2) + 1, b === 0 && I("comment", "*/"), f = n.slice(a, b + 1), w2 = f.split(` `), m2 = w2.length - 1, m2 > 0 ? (T = s + m2, y = b - w2[m2].length) : (T = s, y = o), x2 = k.comment, s = T, p = T, c2 = b - y) : l2 === k.slash ? (b = a, x2 = l2, p = s, c2 = a - o, u2 = b + 1) : (b = Vp(n, a), x2 = k.word, p = s, c2 = b - o), u2 = b + 1; break; } t.push([x2, s, a - o, p, c2, a, u2]), y && (o = y, y = null), a = u2; } return t; } }); var Ka = P2((lr, Qa) => { "use strict"; lr.__esModule = true; lr.default = void 0; var Kp = ve(ui()), $i = ve(fi()), Jp = ve(pi()), Ga = ve(mi()), Zp = ve(bi()), eh = ve(xi()), qi = ve(Si()), th = ve(ki()), ja = cn(Ai()), rh = ve(Li()), Bi = ve(Mi()), nh = ve(Ni()), ih = ve($a()), S2 = cn(Ua()), E = cn(Fi()), oh = cn(ne()), X = Gt(), nt, zi; function Xa() { if (typeof WeakMap != "function") return null; var e = /* @__PURE__ */ new WeakMap(); return Xa = function() { return e; }, e; } function cn(e) { if (e && e.__esModule) return e; if (e === null || typeof e != "object" && typeof e != "function") return { default: e }; var t = Xa(); if (t && t.has(e)) return t.get(e); var n = {}, r = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var i in e) if (Object.prototype.hasOwnProperty.call(e, i)) { var o = r ? Object.getOwnPropertyDescriptor(e, i) : null; o && (o.get || o.set) ? Object.defineProperty(n, i, o) : n[i] = e[i]; } return n.default = e, t && t.set(e, n), n; } function ve(e) { return e && e.__esModule ? e : { default: e }; } function Ha(e, t) { for (var n = 0; n < t.length; n++) { var r = t[n]; r.enumerable = r.enumerable || false, r.configurable = true, "value" in r && (r.writable = true), Object.defineProperty(e, r.key, r); } } function sh(e, t, n) { return t && Ha(e.prototype, t), n && Ha(e, n), e; } var ji = (nt = {}, nt[E.space] = true, nt[E.cr] = true, nt[E.feed] = true, nt[E.newline] = true, nt[E.tab] = true, nt), ah = Object.assign({}, ji, (zi = {}, zi[E.comment] = true, zi)); function Va(e) { return { line: e[S2.FIELDS.START_LINE], column: e[S2.FIELDS.START_COL] }; } function Ya(e) { return { line: e[S2.FIELDS.END_LINE], column: e[S2.FIELDS.END_COL] }; } function it(e, t, n, r) { return { start: { line: e, column: t }, end: { line: n, column: r } }; } function wt(e) { return it(e[S2.FIELDS.START_LINE], e[S2.FIELDS.START_COL], e[S2.FIELDS.END_LINE], e[S2.FIELDS.END_COL]); } function Ui(e, t) { if (e) return it(e[S2.FIELDS.START_LINE], e[S2.FIELDS.START_COL], t[S2.FIELDS.END_LINE], t[S2.FIELDS.END_COL]); } function St(e, t) { var n = e[t]; if (typeof n == "string") return n.indexOf("\\") !== -1 && ((0, X.ensureObject)(e, "raws"), e[t] = (0, X.unesc)(n), e.raws[t] === void 0 && (e.raws[t] = n)), e; } function Gi(e, t) { for (var n = -1, r = []; (n = e.indexOf(t, n + 1)) !== -1; ) r.push(n); return r; } function uh() { var e = Array.prototype.concat.apply([], arguments); return e.filter(function(t, n) { return n === e.indexOf(t); }); } var lh = function() { function e(n, r) { r === void 0 && (r = {}), this.rule = n, this.options = Object.assign({ lossy: false, safe: false }, r), this.position = 0, this.css = typeof this.rule == "string" ? this.rule : this.rule.selector, this.tokens = (0, S2.default)({ css: this.css, error: this._errorGenerator(), safe: this.options.safe }); var i = Ui(this.tokens[0], this.tokens[this.tokens.length - 1]); this.root = new Kp.default({ source: i }), this.root.errorGenerator = this._errorGenerator(); var o = new $i.default({ source: { start: { line: 1, column: 1 } } }); this.root.append(o), this.current = o, this.loop(); } var t = e.prototype; return t._errorGenerator = function() { var r = this; return function(i, o) { return typeof r.rule == "string" ? new Error(i) : r.rule.error(i, o); }; }, t.attribute = function() { var r = [], i = this.currToken; for (this.position++; this.position < this.tokens.length && this.currToken[S2.FIELDS.TYPE] !== E.closeSquare; ) r.push(this.currToken), this.position++; if (this.currToken[S2.FIELDS.TYPE] !== E.closeSquare) return this.expected("closing square bracket", this.currToken[S2.FIELDS.START_POS]); var o = r.length, s = { source: it(i[1], i[2], this.currToken[3], this.currToken[4]), sourceIndex: i[S2.FIELDS.START_POS] }; if (o === 1 && !~[E.word].indexOf(r[0][S2.FIELDS.TYPE])) return this.expected("attribute", r[0][S2.FIELDS.START_POS]); for (var a = 0, u2 = "", l2 = "", f = null, c2 = false; a < o; ) { var p = r[a], d2 = this.content(p), h2 = r[a + 1]; switch (p[S2.FIELDS.TYPE]) { case E.space: if (c2 = true, this.options.lossy) break; if (f) { (0, X.ensureObject)(s, "spaces", f); var m2 = s.spaces[f].after || ""; s.spaces[f].after = m2 + d2; var w2 = (0, X.getProp)(s, "raws", "spaces", f, "after") || null; w2 && (s.raws.spaces[f].after = w2 + d2); } else u2 = u2 + d2, l2 = l2 + d2; break; case E.asterisk: if (h2[S2.FIELDS.TYPE] === E.equals) s.operator = d2, f = "operator"; else if ((!s.namespace || f === "namespace" && !c2) && h2) { u2 && ((0, X.ensureObject)(s, "spaces", "attribute"), s.spaces.attribute.before = u2, u2 = ""), l2 && ((0, X.ensureObject)(s, "raws", "spaces", "attribute"), s.raws.spaces.attribute.before = u2, l2 = ""), s.namespace = (s.namespace || "") + d2; var b = (0, X.getProp)(s, "raws", "namespace") || null; b && (s.raws.namespace += d2), f = "namespace"; } c2 = false; break; case E.dollar: if (f === "value") { var T = (0, X.getProp)(s, "raws", "value"); s.value += "$", T && (s.raws.value = T + "$"); break; } case E.caret: h2[S2.FIELDS.TYPE] === E.equals && (s.operator = d2, f = "operator"), c2 = false; break; case E.combinator: if (d2 === "~" && h2[S2.FIELDS.TYPE] === E.equals && (s.operator = d2, f = "operator"), d2 !== "|") { c2 = false; break; } h2[S2.FIELDS.TYPE] === E.equals ? (s.operator = d2, f = "operator") : !s.namespace && !s.attribute && (s.namespace = true), c2 = false; break; case E.word: if (h2 && this.content(h2) === "|" && r[a + 2] && r[a + 2][S2.FIELDS.TYPE] !== E.equals && !s.operator && !s.namespace) s.namespace = d2, f = "namespace"; else if (!s.attribute || f === "attribute" && !c2) { u2 && ((0, X.ensureObject)(s, "spaces", "attribute"), s.spaces.attribute.before = u2, u2 = ""), l2 && ((0, X.ensureObject)(s, "raws", "spaces", "attribute"), s.raws.spaces.attribute.before = l2, l2 = ""), s.attribute = (s.attribute || "") + d2; var y = (0, X.getProp)(s, "raws", "attribute") || null; y && (s.raws.attribute += d2), f = "attribute"; } else if (!s.value && s.value !== "" || f === "value" && !c2) { var v2 = (0, X.unesc)(d2), x2 = (0, X.getProp)(s, "raws", "value") || "", I = s.value || ""; s.value = I + v2, s.quoteMark = null, (v2 !== d2 || x2) && ((0, X.ensureObject)(s, "raws"), s.raws.value = (x2 || I) + d2), f = "value"; } else { var A = d2 === "i" || d2 === "I"; (s.value || s.value === "") && (s.quoteMark || c2) ? (s.insensitive = A, (!A || d2 === "I") && ((0, X.ensureObject)(s, "raws"), s.raws.insensitiveFlag = d2), f = "insensitive", u2 && ((0, X.ensureObject)(s, "spaces", "insensitive"), s.spaces.insensitive.before = u2, u2 = ""), l2 && ((0, X.ensureObject)(s, "raws", "spaces", "insensitive"), s.raws.spaces.insensitive.before = l2, l2 = "")) : (s.value || s.value === "") && (f = "value", s.value += d2, s.raws.value && (s.raws.value += d2)); } c2 = false; break; case E.str: if (!s.attribute || !s.operator) return this.error("Expected an attribute followed by an operator preceding the string.", { index: p[S2.FIELDS.START_POS] }); var L = (0, ja.unescapeValue)(d2), H = L.unescaped, ie = L.quoteMark; s.value = H, s.quoteMark = ie, f = "value", (0, X.ensureObject)(s, "raws"), s.raws.value = d2, c2 = false; break; case E.equals: if (!s.attribute) return this.expected("attribute", p[S2.FIELDS.START_POS], d2); if (s.value) return this.error('Unexpected "=" found; an operator was already defined.', { index: p[S2.FIELDS.START_POS] }); s.operator = s.operator ? s.operator + d2 : d2, f = "operator", c2 = false; break; case E.comment: if (f) if (c2 || h2 && h2[S2.FIELDS.TYPE] === E.space || f === "insensitive") { var ae = (0, X.getProp)(s, "spaces", f, "after") || "", le = (0, X.getProp)(s, "raws", "spaces", f, "after") || ae; (0, X.ensureObject)(s, "raws", "spaces", f), s.raws.spaces[f].after = le + d2; } else { var K2 = s[f] || "", oe = (0, X.getProp)(s, "raws", f) || K2; (0, X.ensureObject)(s, "raws"), s.raws[f] = oe + d2; } else l2 = l2 + d2; break; default: return this.error('Unexpected "' + d2 + '" found.', { index: p[S2.FIELDS.START_POS] }); } a++; } St(s, "attribute"), St(s, "namespace"), this.newNode(new ja.default(s)), this.position++; }, t.parseWhitespaceEquivalentTokens = function(r) { r < 0 && (r = this.tokens.length); var i = this.position, o = [], s = "", a = void 0; do if (ji[this.currToken[S2.FIELDS.TYPE]]) this.options.lossy || (s += this.content()); else if (this.currToken[S2.FIELDS.TYPE] === E.comment) { var u2 = {}; s && (u2.before = s, s = ""), a = new Ga.default({ value: this.content(), source: wt(this.currToken), sourceIndex: this.currToken[S2.FIELDS.START_POS], spaces: u2 }), o.push(a); } while (++this.position < r); if (s) { if (a) a.spaces.after = s; else if (!this.options.lossy) { var l2 = this.tokens[i], f = this.tokens[this.position - 1]; o.push(new qi.default({ value: "", source: it(l2[S2.FIELDS.START_LINE], l2[S2.FIELDS.START_COL], f[S2.FIELDS.END_LINE], f[S2.FIELDS.END_COL]), sourceIndex: l2[S2.FIELDS.START_POS], spaces: { before: s, after: "" } })); } } return o; }, t.convertWhitespaceNodesToSpace = function(r, i) { var o = this; i === void 0 && (i = false); var s = "", a = ""; r.forEach(function(l2) { var f = o.lossySpace(l2.spaces.before, i), c2 = o.lossySpace(l2.rawSpaceBefore, i); s += f + o.lossySpace(l2.spaces.after, i && f.length === 0), a += f + l2.value + o.lossySpace(l2.rawSpaceAfter, i && c2.length === 0); }), a === s && (a = void 0); var u2 = { space: s, rawSpace: a }; return u2; }, t.isNamedCombinator = function(r) { return r === void 0 && (r = this.position), this.tokens[r + 0] && this.tokens[r + 0][S2.FIELDS.TYPE] === E.slash && this.tokens[r + 1] && this.tokens[r + 1][S2.FIELDS.TYPE] === E.word && this.tokens[r + 2] && this.tokens[r + 2][S2.FIELDS.TYPE] === E.slash; }, t.namedCombinator = function() { if (this.isNamedCombinator()) { var r = this.content(this.tokens[this.position + 1]), i = (0, X.unesc)(r).toLowerCase(), o = {}; i !== r && (o.value = "/" + r + "/"); var s = new Bi.default({ value: "/" + i + "/", source: it(this.currToken[S2.FIELDS.START_LINE], this.currToken[S2.FIELDS.START_COL], this.tokens[this.position + 2][S2.FIELDS.END_LINE], this.tokens[this.position + 2][S2.FIELDS.END_COL]), sourceIndex: this.currToken[S2.FIELDS.START_POS], raws: o }); return this.position = this.position + 3, s; } else this.unexpected(); }, t.combinator = function() { var r = this; if (this.content() === "|") return this.namespace(); var i = this.locateNextMeaningfulToken(this.position); if (i < 0 || this.tokens[i][S2.FIELDS.TYPE] === E.comma) { var o = this.parseWhitespaceEquivalentTokens(i); if (o.length > 0) { var s = this.current.last; if (s) { var a = this.convertWhitespaceNodesToSpace(o), u2 = a.space, l2 = a.rawSpace; l2 !== void 0 && (s.rawSpaceAfter += l2), s.spaces.after += u2; } else o.forEach(function(x2) { return r.newNode(x2); }); } return; } var f = this.currToken, c2 = void 0; i > this.position && (c2 = this.parseWhitespaceEquivalentTokens(i)); var p; if (this.isNamedCombinator() ? p = this.namedCombinator() : this.currToken[S2.FIELDS.TYPE] === E.combinator ? (p = new Bi.default({ value: this.content(), source: wt(this.currToken), sourceIndex: this.currToken[S2.FIELDS.START_POS] }), this.position++) : ji[this.currToken[S2.FIELDS.TYPE]] || c2 || this.unexpected(), p) { if (c2) { var d2 = this.convertWhitespaceNodesToSpace(c2), h2 = d2.space, m2 = d2.rawSpace; p.spaces.before = h2, p.rawSpaceBefore = m2; } } else { var w2 = this.convertWhitespaceNodesToSpace(c2, true), b = w2.space, T = w2.rawSpace; T || (T = b); var y = {}, v2 = { spaces: {} }; b.endsWith(" ") && T.endsWith(" ") ? (y.before = b.slice(0, b.length - 1), v2.spaces.before = T.slice(0, T.length - 1)) : b.startsWith(" ") && T.startsWith(" ") ? (y.after = b.slice(1), v2.spaces.after = T.slice(1)) : v2.value = T, p = new Bi.default({ value: " ", source: Ui(f, this.tokens[this.position - 1]), sourceIndex: f[S2.FIELDS.START_POS], spaces: y, raws: v2 }); } return this.currToken && this.currToken[S2.FIELDS.TYPE] === E.space && (p.spaces.after = this.optionalSpace(this.content()), this.position++), this.newNode(p); }, t.comma = function() { if (this.position === this.tokens.length - 1) { this.root.trailingComma = true, this.position++; return; } this.current._inferEndPosition(); var r = new $i.default({ source: { start: Va(this.tokens[this.position + 1]) } }); this.current.parent.append(r), this.current = r, this.position++; }, t.comment = function() { var r = this.currToken; this.newNode(new Ga.default({ value: this.content(), source: wt(r), sourceIndex: r[S2.FIELDS.START_POS] })), this.position++; }, t.error = function(r, i) { throw this.root.error(r, i); }, t.missingBackslash = function() { return this.error("Expected a backslash preceding the semicolon.", { index: this.currToken[S2.FIELDS.START_POS] }); }, t.missingParenthesis = function() { return this.expected("opening parenthesis", this.currToken[S2.FIELDS.START_POS]); }, t.missingSquareBracket = function() { return this.expected("opening square bracket", this.currToken[S2.FIELDS.START_POS]); }, t.unexpected = function() { return this.error("Unexpected '" + this.content() + "'. Escaping special characters with \\ may help.", this.currToken[S2.FIELDS.START_POS]); }, t.namespace = function() { var r = this.prevToken && this.content(this.prevToken) || true; if (this.nextToken[S2.FIELDS.TYPE] === E.word) return this.position++, this.word(r); if (this.nextToken[S2.FIELDS.TYPE] === E.asterisk) return this.position++, this.universal(r); }, t.nesting = function() { if (this.nextToken) { var r = this.content(this.nextToken); if (r === "|") { this.position++; return; } } var i = this.currToken; this.newNode(new nh.default({ value: this.content(), source: wt(i), sourceIndex: i[S2.FIELDS.START_POS] })), this.position++; }, t.parentheses = function() { var r = this.current.last, i = 1; if (this.position++, r && r.type === oh.PSEUDO) { var o = new $i.default({ source: { start: Va(this.tokens[this.position - 1]) } }), s = this.current; for (r.append(o), this.current = o; this.position < this.tokens.length && i; ) this.currToken[S2.FIELDS.TYPE] === E.openParenthesis && i++, this.currToken[S2.FIELDS.TYPE] === E.closeParenthesis && i--, i ? this.parse() : (this.current.source.end = Ya(this.currToken), this.current.parent.source.end = Ya(this.currToken), this.position++); this.current = s; } else { for (var a = this.currToken, u2 = "(", l2; this.position < this.tokens.length && i; ) this.currToken[S2.FIELDS.TYPE] === E.openParenthesis && i++, this.currToken[S2.FIELDS.TYPE] === E.closeParenthesis && i--, l2 = this.currToken, u2 += this.parseParenthesisToken(this.currToken), this.position++; r ? r.appendToPropertyAndEscape("value", u2, u2) : this.newNode(new qi.default({ value: u2, source: it(a[S2.FIELDS.START_LINE], a[S2.FIELDS.START_COL], l2[S2.FIELDS.END_LINE], l2[S2.FIELDS.END_COL]), sourceIndex: a[S2.FIELDS.START_POS] })); } if (i) return this.expected("closing parenthesis", this.currToken[S2.FIELDS.START_POS]); }, t.pseudo = function() { for (var r = this, i = "", o = this.currToken; this.currToken && this.currToken[S2.FIELDS.TYPE] === E.colon; ) i += this.content(), this.position++; if (!this.currToken) return this.expected(["pseudo-class", "pseudo-element"], this.position - 1); if (this.currToken[S2.FIELDS.TYPE] === E.word) this.splitWord(false, function(s, a) { i += s, r.newNode(new th.default({ value: i, source: Ui(o, r.currToken), sourceIndex: o[S2.FIELDS.START_POS] })), a > 1 && r.nextToken && r.nextToken[S2.FIELDS.TYPE] === E.openParenthesis && r.error("Misplaced parenthesis.", { index: r.nextToken[S2.FIELDS.START_POS] }); }); else return this.expected(["pseudo-class", "pseudo-element"], this.currToken[S2.FIELDS.START_POS]); }, t.space = function() { var r = this.content(); this.position === 0 || this.prevToken[S2.FIELDS.TYPE] === E.comma || this.prevToken[S2.FIELDS.TYPE] === E.openParenthesis || this.current.nodes.every(function(i) { return i.type === "comment"; }) ? (this.spaces = this.optionalSpace(r), this.position++) : this.position === this.tokens.length - 1 || this.nextToken[S2.FIELDS.TYPE] === E.comma || this.nextToken[S2.FIELDS.TYPE] === E.closeParenthesis ? (this.current.last.spaces.after = this.optionalSpace(r), this.position++) : this.combinator(); }, t.string = function() { var r = this.currToken; this.newNode(new qi.default({ value: this.content(), source: wt(r), sourceIndex: r[S2.FIELDS.START_POS] })), this.position++; }, t.universal = function(r) { var i = this.nextToken; if (i && this.content(i) === "|") return this.position++, this.namespace(); var o = this.currToken; this.newNode(new rh.default({ value: this.content(), source: wt(o), sourceIndex: o[S2.FIELDS.START_POS] }), r), this.position++; }, t.splitWord = function(r, i) { for (var o = this, s = this.nextToken, a = this.content(); s && ~[E.dollar, E.caret, E.equals, E.word].indexOf(s[S2.FIELDS.TYPE]); ) { this.position++; var u2 = this.content(); if (a += u2, u2.lastIndexOf("\\") === u2.length - 1) { var l2 = this.nextToken; l2 && l2[S2.FIELDS.TYPE] === E.space && (a += this.requiredSpace(this.content(l2)), this.position++); } s = this.nextToken; } var f = Gi(a, ".").filter(function(h2) { var m2 = a[h2 - 1] === "\\", w2 = /^\d+\.\d+%$/.test(a); return !m2 && !w2; }), c2 = Gi(a, "#").filter(function(h2) { return a[h2 - 1] !== "\\"; }), p = Gi(a, "#{"); p.length && (c2 = c2.filter(function(h2) { return !~p.indexOf(h2); })); var d2 = (0, ih.default)(uh([0].concat(f, c2))); d2.forEach(function(h2, m2) { var w2 = d2[m2 + 1] || a.length, b = a.slice(h2, w2); if (m2 === 0 && i) return i.call(o, b, d2.length); var T, y = o.currToken, v2 = y[S2.FIELDS.START_POS] + d2[m2], x2 = it(y[1], y[2] + h2, y[3], y[2] + (w2 - 1)); if (~f.indexOf(h2)) { var I = { value: b.slice(1), source: x2, sourceIndex: v2 }; T = new Jp.default(St(I, "value")); } else if (~c2.indexOf(h2)) { var A = { value: b.slice(1), source: x2, sourceIndex: v2 }; T = new Zp.default(St(A, "value")); } else { var L = { value: b, source: x2, sourceIndex: v2 }; St(L, "value"), T = new eh.default(L); } o.newNode(T, r), r = null; }), this.position++; }, t.word = function(r) { var i = this.nextToken; return i && this.content(i) === "|" ? (this.position++, this.namespace()) : this.splitWord(r); }, t.loop = function() { for (; this.position < this.tokens.length; ) this.parse(true); return this.current._inferEndPosition(), this.root; }, t.parse = function(r) { switch (this.currToken[S2.FIELDS.TYPE]) { case E.space: this.space(); break; case E.comment: this.comment(); break; case E.openParenthesis: this.parentheses(); break; case E.closeParenthesis: r && this.missingParenthesis(); break; case E.openSquare: this.attribute(); break; case E.dollar: case E.caret: case E.equals: case E.word: this.word(); break; case E.colon: this.pseudo(); break; case E.comma: this.comma(); break; case E.asterisk: this.universal(); break; case E.ampersand: this.nesting(); break; case E.slash: case E.combinator: this.combinator(); break; case E.str: this.string(); break; case E.closeSquare: this.missingSquareBracket(); case E.semicolon: this.missingBackslash(); default: this.unexpected(); } }, t.expected = function(r, i, o) { if (Array.isArray(r)) { var s = r.pop(); r = r.join(", ") + " or " + s; } var a = /^[aeiou]/.test(r[0]) ? "an" : "a"; return o ? this.error("Expected " + a + " " + r + ', found "' + o + '" instead.', { index: i }) : this.error("Expected " + a + " " + r + ".", { index: i }); }, t.requiredSpace = function(r) { return this.options.lossy ? " " : r; }, t.optionalSpace = function(r) { return this.options.lossy ? "" : r; }, t.lossySpace = function(r, i) { return this.options.lossy ? i ? " " : "" : r; }, t.parseParenthesisToken = function(r) { var i = this.content(r); return r[S2.FIELDS.TYPE] === E.space ? this.requiredSpace(i) : i; }, t.newNode = function(r, i) { return i && (/^ +$/.test(i) && (this.options.lossy || (this.spaces = (this.spaces || "") + i), i = true), r.namespace = i, St(r, "namespace")), this.spaces && (r.spaces.before = this.spaces, this.spaces = ""), this.current.append(r); }, t.content = function(r) { return r === void 0 && (r = this.currToken), this.css.slice(r[S2.FIELDS.START_POS], r[S2.FIELDS.END_POS]); }, t.locateNextMeaningfulToken = function(r) { r === void 0 && (r = this.position + 1); for (var i = r; i < this.tokens.length; ) if (ah[this.tokens[i][S2.FIELDS.TYPE]]) { i++; continue; } else return i; return -1; }, sh(e, [{ key: "currToken", get: function() { return this.tokens[this.position]; } }, { key: "nextToken", get: function() { return this.tokens[this.position + 1]; } }, { key: "prevToken", get: function() { return this.tokens[this.position - 1]; } }]), e; }(); lr.default = lh; Qa.exports = lr.default; }); var Za = P2((fr, Ja) => { "use strict"; fr.__esModule = true; fr.default = void 0; var fh = ch(Ka()); function ch(e) { return e && e.__esModule ? e : { default: e }; } var dh = function() { function e(n, r) { this.func = n || function() { }, this.funcRes = null, this.options = r; } var t = e.prototype; return t._shouldUpdateSelector = function(r, i) { i === void 0 && (i = {}); var o = Object.assign({}, this.options, i); return o.updateSelector === false ? false : typeof r != "string"; }, t._isLossy = function(r) { r === void 0 && (r = {}); var i = Object.assign({}, this.options, r); return i.lossless === false; }, t._root = function(r, i) { i === void 0 && (i = {}); var o = new fh.default(r, this._parseOptions(i)); return o.root; }, t._parseOptions = function(r) { return { lossy: this._isLossy(r) }; }, t._run = function(r, i) { var o = this; return i === void 0 && (i = {}), new Promise(function(s, a) { try { var u2 = o._root(r, i); Promise.resolve(o.func(u2)).then(function(l2) { var f = void 0; return o._shouldUpdateSelector(r, i) && (f = u2.toString(), r.selector = f), { transform: l2, root: u2, string: f }; }).then(s, a); } catch (l2) { a(l2); return; } }); }, t._runSync = function(r, i) { i === void 0 && (i = {}); var o = this._root(r, i), s = this.func(o); if (s && typeof s.then == "function") throw new Error("Selector processor returned a promise to a synchronous call."); var a = void 0; return i.updateSelector && typeof r != "string" && (a = o.toString(), r.selector = a), { transform: s, root: o, string: a }; }, t.ast = function(r, i) { return this._run(r, i).then(function(o) { return o.root; }); }, t.astSync = function(r, i) { return this._runSync(r, i).root; }, t.transform = function(r, i) { return this._run(r, i).then(function(o) { return o.transform; }); }, t.transformSync = function(r, i) { return this._runSync(r, i).transform; }, t.process = function(r, i) { return this._run(r, i).then(function(o) { return o.string || o.root.toString(); }); }, t.processSync = function(r, i) { var o = this._runSync(r, i); return o.string || o.root.toString(); }, e; }(); fr.default = dh; Ja.exports = fr.default; }); var eu = P2((j) => { "use strict"; j.__esModule = true; j.universal = j.tag = j.string = j.selector = j.root = j.pseudo = j.nesting = j.id = j.comment = j.combinator = j.className = j.attribute = void 0; var ph = ye(Ai()), hh = ye(pi()), mh = ye(Mi()), gh = ye(mi()), bh = ye(bi()), vh = ye(Ni()), yh = ye(ki()), xh = ye(ui()), wh = ye(fi()), Sh = ye(Si()), _h = ye(xi()), kh = ye(Li()); function ye(e) { return e && e.__esModule ? e : { default: e }; } var Th = function(t) { return new ph.default(t); }; j.attribute = Th; var Eh = function(t) { return new hh.default(t); }; j.className = Eh; var Oh = function(t) { return new mh.default(t); }; j.combinator = Oh; var Ph = function(t) { return new gh.default(t); }; j.comment = Ph; var Ih = function(t) { return new bh.default(t); }; j.id = Ih; var Ah = function(t) { return new vh.default(t); }; j.nesting = Ah; var Rh = function(t) { return new yh.default(t); }; j.pseudo = Rh; var Lh = function(t) { return new xh.default(t); }; j.root = Lh; var Ch = function(t) { return new wh.default(t); }; j.selector = Ch; var Mh = function(t) { return new Sh.default(t); }; j.string = Mh; var Dh = function(t) { return new _h.default(t); }; j.tag = Dh; var Nh = function(t) { return new kh.default(t); }; j.universal = Nh; }); var iu = P2((N) => { "use strict"; N.__esModule = true; N.isNode = Hi; N.isPseudoElement = nu; N.isPseudoClass = Vh; N.isContainer = Yh; N.isNamespace = Xh; N.isUniversal = N.isTag = N.isString = N.isSelector = N.isRoot = N.isPseudo = N.isNesting = N.isIdentifier = N.isComment = N.isCombinator = N.isClassName = N.isAttribute = void 0; var Q = ne(), ce, Fh = (ce = {}, ce[Q.ATTRIBUTE] = true, ce[Q.CLASS] = true, ce[Q.COMBINATOR] = true, ce[Q.COMMENT] = true, ce[Q.ID] = true, ce[Q.NESTING] = true, ce[Q.PSEUDO] = true, ce[Q.ROOT] = true, ce[Q.SELECTOR] = true, ce[Q.STRING] = true, ce[Q.TAG] = true, ce[Q.UNIVERSAL] = true, ce); function Hi(e) { return typeof e == "object" && Fh[e.type]; } function xe(e, t) { return Hi(t) && t.type === e; } var tu = xe.bind(null, Q.ATTRIBUTE); N.isAttribute = tu; var Wh = xe.bind(null, Q.CLASS); N.isClassName = Wh; var $h = xe.bind(null, Q.COMBINATOR); N.isCombinator = $h; var qh = xe.bind(null, Q.COMMENT); N.isComment = qh; var Bh = xe.bind(null, Q.ID); N.isIdentifier = Bh; var zh = xe.bind(null, Q.NESTING); N.isNesting = zh; var Vi = xe.bind(null, Q.PSEUDO); N.isPseudo = Vi; var Uh = xe.bind(null, Q.ROOT); N.isRoot = Uh; var Gh = xe.bind(null, Q.SELECTOR); N.isSelector = Gh; var jh = xe.bind(null, Q.STRING); N.isString = jh; var ru = xe.bind(null, Q.TAG); N.isTag = ru; var Hh = xe.bind(null, Q.UNIVERSAL); N.isUniversal = Hh; function nu(e) { return Vi(e) && e.value && (e.value.startsWith("::") || e.value.toLowerCase() === ":before" || e.value.toLowerCase() === ":after" || e.value.toLowerCase() === ":first-letter" || e.value.toLowerCase() === ":first-line"); } function Vh(e) { return Vi(e) && !nu(e); } function Yh(e) { return !!(Hi(e) && e.walk); } function Xh(e) { return tu(e) || ru(e); } }); var ou = P2((Oe) => { "use strict"; Oe.__esModule = true; var Yi = ne(); Object.keys(Yi).forEach(function(e) { e === "default" || e === "__esModule" || e in Oe && Oe[e] === Yi[e] || (Oe[e] = Yi[e]); }); var Xi = eu(); Object.keys(Xi).forEach(function(e) { e === "default" || e === "__esModule" || e in Oe && Oe[e] === Xi[e] || (Oe[e] = Xi[e]); }); var Qi = iu(); Object.keys(Qi).forEach(function(e) { e === "default" || e === "__esModule" || e in Oe && Oe[e] === Qi[e] || (Oe[e] = Qi[e]); }); }); var uu = P2((cr, au) => { "use strict"; cr.__esModule = true; cr.default = void 0; var Qh = Zh(Za()), Kh = Jh(ou()); function su() { if (typeof WeakMap != "function") return null; var e = /* @__PURE__ */ new WeakMap(); return su = function() { return e; }, e; } function Jh(e) { if (e && e.__esModule) return e; if (e === null || typeof e != "object" && typeof e != "function") return { default: e }; var t = su(); if (t && t.has(e)) return t.get(e); var n = {}, r = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var i in e) if (Object.prototype.hasOwnProperty.call(e, i)) { var o = r ? Object.getOwnPropertyDescriptor(e, i) : null; o && (o.get || o.set) ? Object.defineProperty(n, i, o) : n[i] = e[i]; } return n.default = e, t && t.set(e, n), n; } function Zh(e) { return e && e.__esModule ? e : { default: e }; } var Ki = function(t) { return new Qh.default(t); }; Object.assign(Ki, Kh); delete Ki.__esModule; var em = Ki; cr.default = em; au.exports = cr.default; }); var lu = P2((Ji) => { "use strict"; Object.defineProperty(Ji, "__esModule", { value: true }); Object.defineProperty(Ji, "default", { enumerable: true, get: () => tm }); function tm(e) { return e.replace(/\\,/g, "\\2c "); } }); var cu = P2((Vv, fu) => { "use strict"; fu.exports = { aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], grey: [128, 128, 128], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], rebeccapurple: [102, 51, 153], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] }; }); var eo = P2((Zi) => { "use strict"; Object.defineProperty(Zi, "__esModule", { value: true }); function rm(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } rm(Zi, { parseColor: () => um, formatColor: () => lm }); var du = nm(cu()); function nm(e) { return e && e.__esModule ? e : { default: e }; } var im = /^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i, om = /^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i, Ye = /(?:\d+|\d*\.\d+)%?/, dn = /(?:\s*,\s*|\s+)/, pu = /\s*[,/]\s*/, Xe = /var\(--(?:[^ )]*?)\)/, sm = new RegExp(`^(rgb)a?\\(\\s*(${Ye.source}|${Xe.source})(?:${dn.source}(${Ye.source}|${Xe.source}))?(?:${dn.source}(${Ye.source}|${Xe.source}))?(?:${pu.source}(${Ye.source}|${Xe.source}))?\\s*\\)$`), am = new RegExp(`^(hsl)a?\\(\\s*((?:${Ye.source})(?:deg|rad|grad|turn)?|${Xe.source})(?:${dn.source}(${Ye.source}|${Xe.source}))?(?:${dn.source}(${Ye.source}|${Xe.source}))?(?:${pu.source}(${Ye.source}|${Xe.source}))?\\s*\\)$`); function um(e, { loose: t = false } = {}) { var n, r; if (typeof e != "string") return null; if (e = e.trim(), e === "transparent") return { mode: "rgb", color: ["0", "0", "0"], alpha: "0" }; if (e in du.default) return { mode: "rgb", color: du.default[e].map((u2) => u2.toString()) }; let i = e.replace(om, (u2, l2, f, c2, p) => ["#", l2, l2, f, f, c2, c2, p ? p + p : ""].join("")).match(im); if (i !== null) return { mode: "rgb", color: [parseInt(i[1], 16), parseInt(i[2], 16), parseInt(i[3], 16)].map((u2) => u2.toString()), alpha: i[4] ? (parseInt(i[4], 16) / 255).toString() : void 0 }; var o; let s = (o = e.match(sm)) !== null && o !== void 0 ? o : e.match(am); if (s === null) return null; let a = [s[2], s[3], s[4]].filter(Boolean).map((u2) => u2.toString()); return !t && a.length !== 3 || a.length < 3 && !a.some((u2) => /^var\(.*?\)$/.test(u2)) ? null : { mode: s[1], color: a, alpha: (n = s[5]) === null || n === void 0 || (r = n.toString) === null || r === void 0 ? void 0 : r.call(n) }; } function lm({ mode: e, color: t, alpha: n }) { let r = n !== void 0; return `${e}(${t.join(" ")}${r ? ` / ${n}` : ""})`; } }); var ro = P2((to) => { "use strict"; Object.defineProperty(to, "__esModule", { value: true }); function fm(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } fm(to, { withAlphaValue: () => cm, default: () => dm }); var pn = eo(); function cm(e, t, n) { if (typeof e == "function") return e({ opacityValue: t }); let r = (0, pn.parseColor)(e, { loose: true }); return r === null ? n : (0, pn.formatColor)({ ...r, alpha: t }); } function dm({ color: e, property: t, variable: n }) { let r = [].concat(t); if (typeof e == "function") return { [n]: "1", ...Object.fromEntries(r.map((o) => [o, e({ opacityVariable: n, opacityValue: `var(${n})` })])) }; let i = (0, pn.parseColor)(e); return i === null ? Object.fromEntries(r.map((o) => [o, e])) : i.alpha !== void 0 ? Object.fromEntries(r.map((o) => [o, e])) : { [n]: "1", ...Object.fromEntries(r.map((o) => [o, (0, pn.formatColor)({ ...i, alpha: `var(${n})` })])) }; } }); var vu = P2((no) => { "use strict"; Object.defineProperty(no, "__esModule", { value: true }); function pm(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } pm(no, { pattern: () => mm, withoutCapturing: () => mu, any: () => gu, optional: () => gm, zeroOrMore: () => bm, nestedBrackets: () => bu, escape: () => ot }); var hu = /[\\^$.*+?()[\]{}|]/g, hm = RegExp(hu.source); function dr(e) { return e = Array.isArray(e) ? e : [e], e = e.map((t) => t instanceof RegExp ? t.source : t), e.join(""); } function mm(e) { return new RegExp(dr(e), "g"); } function mu(e) { return new RegExp(`(?:${dr(e)})`, "g"); } function gu(e) { return `(?:${e.map(dr).join("|")})`; } function gm(e) { return `(?:${dr(e)})?`; } function bm(e) { return `(?:${dr(e)})*`; } function bu(e, t, n = 1) { return mu([ot(e), /[^\s]*/, n === 1 ? `[^${ot(e)}${ot(t)}s]*` : gu([`[^${ot(e)}${ot(t)}s]*`, bu(e, t, n - 1)]), /[^\s]*/, ot(t)]); } function ot(e) { return e && hm.test(e) ? e.replace(hu, "\\$&") : e || ""; } }); var xu = P2((io) => { "use strict"; Object.defineProperty(io, "__esModule", { value: true }); Object.defineProperty(io, "splitAtTopLevelOnly", { enumerable: true, get: () => xm }); var vm = ym(vu()); function yu(e) { if (typeof WeakMap != "function") return null; var t = /* @__PURE__ */ new WeakMap(), n = /* @__PURE__ */ new WeakMap(); return (yu = function(r) { return r ? n : t; })(e); } function ym(e, t) { if (!t && e && e.__esModule) return e; if (e === null || typeof e != "object" && typeof e != "function") return { default: e }; var n = yu(t); if (n && n.has(e)) return n.get(e); var r = {}, i = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var o in e) if (o !== "default" && Object.prototype.hasOwnProperty.call(e, o)) { var s = i ? Object.getOwnPropertyDescriptor(e, o) : null; s && (s.get || s.set) ? Object.defineProperty(r, o, s) : r[o] = e[o]; } return r.default = e, n && n.set(e, r), r; } function* xm(e, t) { let n = new RegExp(`[(){}\\[\\]${vm.escape(t)}]`, "g"), r = 0, i = 0, o = false, s = 0, a = 0, u2 = t.length; for (let l2 of e.matchAll(n)) { let f = l2[0] === t[s], c2 = s === u2 - 1, p = f && c2; l2[0] === "(" && r++, l2[0] === ")" && r--, l2[0] === "[" && r++, l2[0] === "]" && r--, l2[0] === "{" && r++, l2[0] === "}" && r--, f && r === 0 && (a === 0 && (a = l2.index), s++), p && r === 0 && (o = true, yield e.substring(i, a), i = a + u2), s === u2 && (s = 0, a = 0); } o ? yield e.substring(i) : yield e; } }); var Su = P2((oo) => { "use strict"; Object.defineProperty(oo, "__esModule", { value: true }); function wm(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } wm(oo, { parseBoxShadowValue: () => Tm, formatBoxShadowValue: () => Em }); var Sm = xu(), _m = /* @__PURE__ */ new Set(["inset", "inherit", "initial", "revert", "unset"]), km = /\ +(?![^(]*\))/g, wu = /^-?(\d+|\.\d+)(.*?)$/g; function Tm(e) { return Array.from((0, Sm.splitAtTopLevelOnly)(e, ",")).map((n) => { let r = n.trim(), i = { raw: r }, o = r.split(km), s = /* @__PURE__ */ new Set(); for (let a of o) wu.lastIndex = 0, !s.has("KEYWORD") && _m.has(a) ? (i.keyword = a, s.add("KEYWORD")) : wu.test(a) ? s.has("X") ? s.has("Y") ? s.has("BLUR") ? s.has("SPREAD") || (i.spread = a, s.add("SPREAD")) : (i.blur = a, s.add("BLUR")) : (i.y = a, s.add("Y")) : (i.x = a, s.add("X")) : i.color ? (i.unknown || (i.unknown = []), i.unknown.push(a)) : i.color = a; return i.valid = i.x !== void 0 && i.y !== void 0, i; }); } function Em(e) { return e.map((t) => t.valid ? [t.keyword, t.x, t.y, t.blur, t.spread, t.color].filter(Boolean).join(" ") : t.raw).join(", "); } }); var Iu = P2((ao) => { "use strict"; Object.defineProperty(ao, "__esModule", { value: true }); function Om(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } Om(ao, { normalize: () => Qe, url: () => Tu, number: () => Am, percentage: () => Eu, length: () => Ou, lineWidth: () => Cm, shadow: () => Mm, color: () => Dm, image: () => Nm, gradient: () => Pu, position: () => $m, familyName: () => qm, genericName: () => zm, absoluteSize: () => Gm, relativeSize: () => Hm }); var Pm = eo(), Im = Su(), so = ["min", "max", "clamp", "calc"], ku = /,(?![^(]*\))/g, hn = /_(?![^(]*\))/g; function Qe(e, t = true) { return e.includes("url(") ? e.split(/(url\(.*?\))/g).filter(Boolean).map((n) => /^url\(.*?\)$/.test(n) ? n : Qe(n, false)).join("") : (e = e.replace(/([^\\])_+/g, (n, r) => r + " ".repeat(n.length - 1)).replace(/^_/g, " ").replace(/\\_/g, "_"), t && (e = e.trim()), e = e.replace(/(calc|min|max|clamp)\(.+\)/g, (n) => n.replace(/(-?\d*\.?\d(?!\b-.+[,)](?![^+\-/*])\D)(?:%|[a-z]+)?|\))([+\-/*])/g, "$1 $2 ")), e); } function Tu(e) { return e.startsWith("url("); } function Am(e) { return !isNaN(Number(e)) || so.some((t) => new RegExp(`^${t}\\(.+?`).test(e)); } function Eu(e) { return e.split(hn).every((t) => /%$/g.test(t) || so.some((n) => new RegExp(`^${n}\\(.+?%`).test(t))); } var Rm = ["cm", "mm", "Q", "in", "pc", "pt", "px", "em", "ex", "ch", "rem", "lh", "vw", "vh", "vmin", "vmax"], _u = `(?:${Rm.join("|")})`; function Ou(e) { return e.split(hn).every((t) => t === "0" || new RegExp(`${_u}$`).test(t) || so.some((n) => new RegExp(`^${n}\\(.+?${_u}`).test(t))); } var Lm = /* @__PURE__ */ new Set(["thin", "medium", "thick"]); function Cm(e) { return Lm.has(e); } function Mm(e) { let t = (0, Im.parseBoxShadowValue)(Qe(e)); for (let n of t) if (!n.valid) return false; return true; } function Dm(e) { let t = 0; return e.split(hn).every((r) => (r = Qe(r), r.startsWith("var(") ? true : (0, Pm.parseColor)(r, { loose: true }) !== null ? (t++, true) : false)) ? t > 0 : false; } function Nm(e) { let t = 0; return e.split(ku).every((r) => (r = Qe(r), r.startsWith("var(") ? true : Tu(r) || Pu(r) || ["element(", "image(", "cross-fade(", "image-set("].some((i) => r.startsWith(i)) ? (t++, true) : false)) ? t > 0 : false; } var Fm = /* @__PURE__ */ new Set(["linear-gradient", "radial-gradient", "repeating-linear-gradient", "repeating-radial-gradient", "conic-gradient"]); function Pu(e) { e = Qe(e); for (let t of Fm) if (e.startsWith(`${t}(`)) return true; return false; } var Wm = /* @__PURE__ */ new Set(["center", "top", "right", "bottom", "left"]); function $m(e) { let t = 0; return e.split(hn).every((r) => (r = Qe(r), r.startsWith("var(") ? true : Wm.has(r) || Ou(r) || Eu(r) ? (t++, true) : false)) ? t > 0 : false; } function qm(e) { let t = 0; return e.split(ku).every((r) => (r = Qe(r), r.startsWith("var(") ? true : r.includes(" ") && !/(['"])([^"']+)\1/g.test(r) || /^\d/g.test(r) ? false : (t++, true))) ? t > 0 : false; } var Bm = /* @__PURE__ */ new Set(["serif", "sans-serif", "monospace", "cursive", "fantasy", "system-ui", "ui-serif", "ui-sans-serif", "ui-monospace", "ui-rounded", "math", "emoji", "fangsong"]); function zm(e) { return Bm.has(e); } var Um = /* @__PURE__ */ new Set(["xx-small", "x-small", "small", "medium", "large", "x-large", "x-large", "xxx-large"]); function Gm(e) { return Um.has(e); } var jm = /* @__PURE__ */ new Set(["larger", "smaller"]); function Hm(e) { return jm.has(e); } }); var Fu = P2((fo) => { "use strict"; Object.defineProperty(fo, "__esModule", { value: true }); function Vm(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } Vm(fo, { updateAllClasses: () => Qm, asValue: () => hr, parseColorFormat: () => uo, asColor: () => Mu, asLookupValue: () => Du, coerceValue: () => e0 }); var Ym = lo(uu()), Xm = lo(lu()), Au = ro(), de = Iu(), Ru = lo(Yn()); function lo(e) { return e && e.__esModule ? e : { default: e }; } function Qm(e, t) { return (0, Ym.default)((i) => { i.walkClasses((o) => { let s = t(o.value); o.value = s, o.raws && o.raws.value && (o.raws.value = (0, Xm.default)(o.raws.value)); }); }).processSync(e); } function Cu(e, t) { if (!pr(e)) return; let n = e.slice(1, -1); if (t(n)) return (0, de.normalize)(n); } function Km(e, t = {}, n) { let r = t[e]; if (r !== void 0) return (0, Ru.default)(r); if (pr(e)) { let i = Cu(e, n); return i === void 0 ? void 0 : (0, Ru.default)(i); } } function hr(e, t = {}, { validate: n = () => true } = {}) { var r; let i = (r = t.values) === null || r === void 0 ? void 0 : r[e]; return i !== void 0 ? i : t.supportsNegativeValues && e.startsWith("-") ? Km(e.slice(1), t.values, n) : Cu(e, n); } function pr(e) { return e.startsWith("[") && e.endsWith("]"); } function Jm(e) { let t = e.lastIndexOf("/"); return t === -1 || t === e.length - 1 ? [e] : [e.slice(0, t), e.slice(t + 1)]; } function uo(e) { if (typeof e == "string" && e.includes("")) { let t = e; return ({ opacityValue: n = 1 }) => t.replace("", n); } return e; } function Mu(e, t = {}, { tailwindConfig: n = {} } = {}) { var r; if (((r = t.values) === null || r === void 0 ? void 0 : r[e]) !== void 0) { var i; return uo((i = t.values) === null || i === void 0 ? void 0 : i[e]); } let [o, s] = Jm(e); if (s !== void 0) { var a, u2, l2, f; let c2 = (f = (a = t.values) === null || a === void 0 ? void 0 : a[o]) !== null && f !== void 0 ? f : pr(o) ? o.slice(1, -1) : void 0; return c2 === void 0 ? void 0 : (c2 = uo(c2), pr(s) ? (0, Au.withAlphaValue)(c2, s.slice(1, -1)) : ((u2 = n.theme) === null || u2 === void 0 || (l2 = u2.opacity) === null || l2 === void 0 ? void 0 : l2[s]) === void 0 ? void 0 : (0, Au.withAlphaValue)(c2, n.theme.opacity[s])); } return hr(e, t, { validate: de.color }); } function Du(e, t = {}) { var n; return (n = t.values) === null || n === void 0 ? void 0 : n[e]; } function we(e) { return (t, n) => hr(t, n, { validate: e }); } var Nu = { any: hr, color: Mu, url: we(de.url), image: we(de.image), length: we(de.length), percentage: we(de.percentage), position: we(de.position), lookup: Du, "generic-name": we(de.genericName), "family-name": we(de.familyName), number: we(de.number), "line-width": we(de.lineWidth), "absolute-size": we(de.absoluteSize), "relative-size": we(de.relativeSize), shadow: we(de.shadow) }, Lu = Object.keys(Nu); function Zm(e, t) { let n = e.indexOf(t); return n === -1 ? [void 0, e] : [e.slice(0, n), e.slice(n + 1)]; } function e0(e, t, n, r) { if (pr(t)) { let i = t.slice(1, -1), [o, s] = Zm(i, ":"); if (!/^[\w-_]+$/g.test(o)) s = i; else if (o !== void 0 && !Lu.includes(o)) return []; if (s.length > 0 && Lu.includes(o)) return [hr(`[${s}]`, n), o]; } for (let i of [].concat(e)) { let o = Nu[i](t, n, { tailwindConfig: r }); if (o !== void 0) return [o, i]; } return []; } }); var Wu = P2((co) => { "use strict"; Object.defineProperty(co, "__esModule", { value: true }); Object.defineProperty(co, "default", { enumerable: true, get: () => t0 }); function t0(e) { return typeof e == "function" ? e({}) : e; } }); var Uu = P2((ho) => { "use strict"; Object.defineProperty(ho, "__esModule", { value: true }); Object.defineProperty(ho, "default", { enumerable: true, get: () => w0 }); var r0 = st(Yn()), n0 = st(Hs()), i0 = st(Vs()), o0 = st(Kn()), s0 = st(Xs()), Bu = Qs(), $u = Ks(), a0 = Zs(), u0 = st(ea()), l0 = ta(), f0 = Fu(), c0 = ro(), d0 = st(Wu()); function st(e) { return e && e.__esModule ? e : { default: e }; } function _t(e) { return typeof e == "function"; } function mr(e) { return typeof e == "object" && e !== null; } function gr(e, ...t) { let n = t.pop(); for (let r of t) for (let i in r) { let o = n(e[i], r[i]); o === void 0 ? mr(e[i]) && mr(r[i]) ? e[i] = gr(e[i], r[i], n) : e[i] = r[i] : e[i] = o; } return e; } var po = { colors: s0.default, negative(e) { return Object.keys(e).filter((t) => e[t] !== "0").reduce((t, n) => { let r = (0, r0.default)(e[n]); return r !== void 0 && (t[`-${n}`] = r), t; }, {}); }, breakpoints(e) { return Object.keys(e).filter((t) => typeof e[t] == "string").reduce((t, n) => ({ ...t, [`screen-${n}`]: e[n] }), {}); } }; function p0(e, ...t) { return _t(e) ? e(...t) : e; } function h0(e) { return e.reduce((t, { extend: n }) => gr(t, n, (r, i) => r === void 0 ? [i] : Array.isArray(r) ? [i, ...r] : [i, r]), {}); } function m0(e) { return { ...e.reduce((t, n) => (0, Bu.defaults)(t, n), {}), extend: h0(e) }; } function qu(e, t) { if (Array.isArray(e) && mr(e[0])) return e.concat(t); if (Array.isArray(t) && mr(t[0]) && mr(e)) return [e, ...t]; if (Array.isArray(t)) return t; } function g0({ extend: e, ...t }) { return gr(t, e, (n, r) => !_t(n) && !r.some(_t) ? gr({}, n, ...r, qu) : (i, o) => gr({}, ...[n, ...r].map((s) => p0(s, i, o)), qu)); } function* b0(e) { let t = (0, $u.toPath)(e); if (t.length === 0 || (yield t, Array.isArray(e))) return; let n = /^(.*?)\s*\/\s*([^/]+)$/, r = e.match(n); if (r !== null) { let [, i, o] = r, s = (0, $u.toPath)(i); s.alpha = o, yield s; } } function v0(e) { let t = (n, r) => { for (let i of b0(n)) { let o = 0, s = e; for (; s != null && o < i.length; ) s = s[i[o++]], s = _t(s) && (i.alpha === void 0 || o <= i.length - 1) ? s(t, po) : s; if (s !== void 0) { if (i.alpha !== void 0) { let a = (0, f0.parseColorFormat)(s); return (0, c0.withAlphaValue)(a, i.alpha, (0, d0.default)(a)); } return (0, u0.default)(s) ? (0, l0.cloneDeep)(s) : s; } } return r; }; return Object.assign(t, { theme: t, ...po }), Object.keys(e).reduce((n, r) => (n[r] = _t(e[r]) ? e[r](t, po) : e[r], n), {}); } function zu(e) { let t = []; return e.forEach((n) => { t = [...t, n]; var r; let i = (r = n == null ? void 0 : n.plugins) !== null && r !== void 0 ? r : []; i.length !== 0 && i.forEach((o) => { o.__isOptionsFunction && (o = o()); var s; t = [...t, ...zu([(s = o == null ? void 0 : o.config) !== null && s !== void 0 ? s : {}])]; }); }), t; } function y0(e) { return [...e].reduceRight((n, r) => _t(r) ? r({ corePlugins: n }) : (0, i0.default)(r, n), n0.default); } function x0(e) { return [...e].reduceRight((n, r) => [...n, ...r], []); } function w0(e) { let t = [...zu(e), { prefix: "", important: false, separator: ":", variantOrder: o0.default.variantOrder }]; var n, r; return (0, a0.normalizeConfig)((0, Bu.defaults)({ theme: v0(g0(m0(t.map((i) => (n = i == null ? void 0 : i.theme) !== null && n !== void 0 ? n : {})))), corePlugins: y0(t.map((i) => i.corePlugins)), plugins: x0(e.map((i) => (r = i == null ? void 0 : i.plugins) !== null && r !== void 0 ? r : [])) }, ...t)); } }); var Gu = {}; wn(Gu, { default: () => S0 }); var S0; var ju = xn(() => { S0 = { yellow: (e) => e }; }); var Xu = P2((mo) => { "use strict"; Object.defineProperty(mo, "__esModule", { value: true }); function _0(e, t) { for (var n in t) Object.defineProperty(e, n, { enumerable: true, get: t[n] }); } _0(mo, { flagEnabled: () => E0, issueFlagNotices: () => O0, default: () => P0 }); var k0 = Yu((ju(), Mr(Gu))), T0 = Yu((Jr(), Mr(Kr))); function Yu(e) { return e && e.__esModule ? e : { default: e }; } var Hu = { optimizeUniversalDefaults: false }, br = { future: ["hoverOnlyWhenSupported", "respectDefaultRingColorOpacity"], experimental: ["optimizeUniversalDefaults", "matchVariant"] }; function E0(e, t) { if (br.future.includes(t)) { var n, r, i; return e.future === "all" || ((i = (r = e == null || (n = e.future) === null || n === void 0 ? void 0 : n[t]) !== null && r !== void 0 ? r : Hu[t]) !== null && i !== void 0 ? i : false); } if (br.experimental.includes(t)) { var o, s, a; return e.experimental === "all" || ((a = (s = e == null || (o = e.experimental) === null || o === void 0 ? void 0 : o[t]) !== null && s !== void 0 ? s : Hu[t]) !== null && a !== void 0 ? a : false); } return false; } function Vu(e) { if (e.experimental === "all") return br.experimental; var t; return Object.keys((t = e == null ? void 0 : e.experimental) !== null && t !== void 0 ? t : {}).filter((n) => br.experimental.includes(n) && e.experimental[n]); } function O0(e) { if (process.env.JEST_WORKER_ID === void 0 && Vu(e).length > 0) { let t = Vu(e).map((n) => k0.default.yellow(n)).join(", "); T0.default.warn("experimental-flags-enabled", [`You have enabled experimental features: ${t}`, "Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."]); } } var P0 = br; }); var Ku = P2((go) => { "use strict"; Object.defineProperty(go, "__esModule", { value: true }); Object.defineProperty(go, "default", { enumerable: true, get: () => Qu }); var I0 = R0(Kn()), A0 = Xu(); function R0(e) { return e && e.__esModule ? e : { default: e }; } function Qu(e) { var t; let n = ((t = e == null ? void 0 : e.presets) !== null && t !== void 0 ? t : [I0.default]).slice().reverse().flatMap((o) => Qu(typeof o == "function" ? o() : o)), r = { respectDefaultRingColorOpacity: { theme: { ringColor: { DEFAULT: "#3b82f67f" } } } }, i = Object.keys(r).filter((o) => (0, A0.flagEnabled)(e, o)).map((o) => r[o]); return [e, ...i, ...n]; } }); var Zu = P2((bo) => { "use strict"; Object.defineProperty(bo, "__esModule", { value: true }); Object.defineProperty(bo, "default", { enumerable: true, get: () => M0 }); var L0 = Ju(Uu()), C0 = Ju(Ku()); function Ju(e) { return e && e.__esModule ? e : { default: e }; } function M0(...e) { let [, ...t] = (0, C0.default)(e[0]); return (0, L0.default)([...e, ...t]); } }); var tl = P2((sy, el) => { var vo = Zu(); el.exports = (vo.__esModule ? vo : { default: vo }).default; }); var mt; function Wl(e) { mt = e; } var At = null; async function De() { return mt || (At ? (await At, mt) : (At = Promise.resolve().then(() => (Vo(), Ho)).then((e) => e.getYogaModule()).then((e) => mt = e), await At, At = null, mt)); } var Rt = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports); var $l = Rt((e, t) => { t.exports = ["em", "ex", "ch", "rem", "vh", "vw", "vmin", "vmax", "px", "mm", "cm", "in", "pt", "pc", "mozmm"]; }); var ql = Rt((e, t) => { t.exports = ["deg", "grad", "rad", "turn"]; }); var Bl = Rt((e, t) => { t.exports = ["dpi", "dpcm", "dppx"]; }); var zl = Rt((e, t) => { t.exports = ["Hz", "kHz"]; }); var Ul = Rt((e, t) => { t.exports = ["s", "ms"]; }); var Gl = $l(); var Yo = ql(); var Xo = Bl(); var Qo = zl(); var Ko = Ul(); function _n(e) { if (/\.\D?$/.test(e)) throw new Error("The dot should be followed by a number"); if (/^[+-]{2}/.test(e)) throw new Error("Only one leading +/- is allowed"); if (jl(e) > 1) throw new Error("Only one dot is allowed"); if (/%$/.test(e)) { this.type = "percentage", this.value = Sn(e), this.unit = "%"; return; } var t = Vl(e); if (!t) { this.type = "number", this.value = Sn(e); return; } this.type = Xl(t), this.value = Sn(e.substr(0, e.length - t.length)), this.unit = t; } _n.prototype.valueOf = function() { return this.value; }; _n.prototype.toString = function() { return this.value + (this.unit || ""); }; function Ne(e) { return new _n(e); } function jl(e) { var t = e.match(/\./g); return t ? t.length : 0; } function Sn(e) { var t = parseFloat(e); if (isNaN(t)) throw new Error("Invalid number: " + e); return t; } var Hl = [].concat(Yo, Qo, Gl, Xo, Ko); function Vl(e) { var t = e.match(/\D+$/), n = t && t[0]; if (n && Hl.indexOf(n) === -1) throw new Error("Invalid unit: " + n); return n; } var Yl = Object.assign(Dr(Yo, "angle"), Dr(Qo, "frequency"), Dr(Xo, "resolution"), Dr(Ko, "time")); function Dr(e, t) { return Object.fromEntries(e.map((n) => [n, t])); } function Xl(e) { return Yl[e] || "length"; } function gt(e) { let t = typeof e; return !(t === "number" || t === "bigint" || t === "string" || t === "boolean"); } function Jo(e) { return /^class\s/.test(e.toString()); } function Zo(e) { return "dangerouslySetInnerHTML" in e; } function es(e) { let t = typeof e > "u" ? [] : [].concat(e).flat(1 / 0), n = []; for (let r = 0; r < t.length; r++) { let i = t[r]; typeof i > "u" || typeof i == "boolean" || i === null || (typeof i == "number" && (i = String(i)), typeof i == "string" && n.length && typeof n[n.length - 1] == "string" ? n[n.length - 1] += i : n.push(i)); } return n; } function R2(e, t, n, r, i = false) { if (typeof e == "number") return e; try { if (e = e.trim(), /[ /\(,]/.test(e)) return; if (e === String(+e)) return +e; let o = new Ne(e); if (o.type === "length") switch (o.unit) { case "em": return o.value * t; case "rem": return o.value * 16; case "vw": return ~~(o.value * r._viewportWidth / 100); case "vh": return ~~(o.value * r._viewportHeight / 100); default: return o.value; } else { if (o.type === "angle") return En(e); if (o.type === "percentage" && i) return o.value / 100 * n; } } catch { } } function En(e) { let t = new Ne(e); switch (t.unit) { case "deg": return t.value; case "rad": return t.value * 180 / Math.PI; case "turn": return t.value * 360; case "grad": return 0.9 * t.value; } } function Lt(e, t) { return [e[0] * t[0] + e[2] * t[1], e[1] * t[0] + e[3] * t[1], e[0] * t[2] + e[2] * t[3], e[1] * t[2] + e[3] * t[3], e[0] * t[4] + e[2] * t[5] + e[4], e[1] * t[4] + e[3] * t[5] + e[5]]; } function fe(e, t, n, r) { let i = t[e]; if (typeof i > "u") { if (r && typeof e < "u") throw new Error(`Invalid value for CSS property "${r}". Allowed values: ${Object.keys(t).map((o) => `"${o}"`).join(" | ")}. Received: "${e}".`); i = n; } return i; } var kn; var Tn; var ts = [32, 160, 4961, 65792, 65793, 4153, 4241, 10].map((e) => String.fromCodePoint(e)); function ue(e, t, n) { if (!kn || !Tn) { if (!(typeof Intl < "u" && "Segmenter" in Intl)) throw new Error("Intl.Segmenter does not exist, please use import a polyfill."); kn = new Intl.Segmenter(n, { granularity: "word" }), Tn = new Intl.Segmenter(n, { granularity: "grapheme" }); } if (t === "grapheme") return [...Tn.segment(e)].map((r) => r.segment); { let r = [...kn.segment(e)].map((s) => s.segment), i = [], o = 0; for (; o < r.length; ) { let s = r[o]; if (s == "\xA0") { let a = o === 0 ? "" : i.pop(), u2 = o === r.length - 1 ? "" : r[o + 1]; i.push(a + "\xA0" + u2), o += 2; } else i.push(s), o++; } return i; } } function _(e, t, n) { let r = ""; for (let [i, o] of Object.entries(t)) typeof o < "u" && (r += ` ${i}="${o}"`); return n ? `<${e}${r}>${n}` : `<${e}${r}/>`; } function rs(e = 20) { let t = /* @__PURE__ */ new Map(); function n(o, s) { if (t.size >= e) { let a = t.keys().next().value; t.delete(a); } t.set(o, s); } function r(o) { if (!t.has(o)) return; let a = t.get(o); return t.delete(o), t.set(o, a), a; } function i() { t.clear(); } return { set: n, get: r, clear: i }; } function bt(e) { return e ? e.split(/[, ]/).filter(Boolean).map(Number) : null; } function Kl(e) { return Object.prototype.toString.call(e); } function Nr(e) { return typeof e == "string"; } function ns(e) { return typeof e == "number"; } function is(e) { return Kl(e) === "[object Undefined]"; } function os(e, t) { if (t === "break-all") return { words: ue(e, "grapheme"), requiredBreaks: [] }; if (t === "keep-all") return { words: ue(e, "word"), requiredBreaks: [] }; let n = new $557adaaeb0c7885f$exports(e), r = 0, i = n.nextBreak(), o = [], s = [false]; for (; i; ) { let a = e.slice(r, i.position); o.push(a), i.required ? s.push(true) : s.push(false), r = i.position, i = n.nextBreak(); } return { words: o, requiredBreaks: s }; } var ss = (e) => e.replaceAll(/([A-Z])/g, (t, n) => `-${n.toLowerCase()}`); function Fr(e, t = ",") { let n = [], r = 0, i = 0; t = new RegExp(t); for (let o = 0; o < e.length; o++) e[o] === "(" ? i++ : e[o] === ")" && i--, i === 0 && t.test(e[o]) && (n.push(e.slice(r, o).trim()), r = o + 1); return n.push(e.slice(r).trim()), n; } var Jl = "image/avif"; var Zl = "image/webp"; var Wr = "image/apng"; var $r = "image/png"; var qr = "image/jpeg"; var Br = "image/gif"; var On = "image/svg+xml"; function ls(e) { let t = new DataView(e), n = 4, r = t.byteLength; for (; n < r; ) { let i = t.getUint16(n, false); if (i > r) throw new TypeError("Invalid JPEG"); let o = t.getUint8(i + 1 + n); if (o === 192 || o === 193 || o === 194) return [t.getUint16(i + 7 + n, false), t.getUint16(i + 5 + n, false)]; n += i + 2; } throw new TypeError("Invalid JPEG"); } function fs(e) { let t = new Uint8Array(e.slice(6, 10)); return [t[0] | t[1] << 8, t[2] | t[3] << 8]; } function cs(e) { let t = new DataView(e); return [t.getUint16(18, false), t.getUint16(22, false)]; } var Re = rs(100); var Ct = /* @__PURE__ */ new Map(); var ef = [$r, Wr, qr, Br, On]; function tf(e) { let t = "", n = new Uint8Array(e); for (let r = 0; r < n.byteLength; r++) t += String.fromCharCode(n[r]); return btoa(t); } function rf(e) { let t = atob(e), n = t.length, r = new Uint8Array(n); for (let i = 0; i < n; i++) r[i] = t.charCodeAt(i); return r.buffer; } function as(e, t) { let n = t.match(/]*>/)[0], r = n.match(/viewBox=['"](.+)['"]/), i = r ? bt(r[1]) : null, o = n.match(/width=['"](\d*\.\d+|\d+)['"]/), s = n.match(/height=['"](\d*\.\d+|\d+)['"]/); if (!i && (!o || !s)) throw new Error(`Failed to parse SVG from ${e}: missing "viewBox"`); let a = i ? [i[2], i[3]] : [+o[1], +s[1]], u2 = a[0] / a[1]; return o && s ? [+o[1], +s[1]] : o ? [+o[1], +o[1] / u2] : s ? [+s[1] * u2, +s[1]] : [a[0], a[1]]; } function us(e) { let t, n = nf(new Uint8Array(e)); switch (n) { case $r: case Wr: t = cs(e); break; case Br: t = fs(e); break; case qr: t = ls(e); break; } if (!ef.includes(n)) throw new Error(`Unsupported image type: ${n || "unknown"}`); return [`data:${n};base64,${tf(e)}`, t]; } async function vt(e) { if (!e) throw new Error("Image source is not provided."); if (typeof e == "object") { let [i, o] = us(e); return [i, ...o]; } if ((e.startsWith('"') && e.endsWith('"') || e.startsWith("'") && e.endsWith("'")) && (e = e.slice(1, -1)), typeof window > "u" && !e.startsWith("http") && !e.startsWith("data:")) throw new Error(`Image source must be an absolute URL: ${e}`); if (e.startsWith("data:")) { let i; try { i = /data:(?[a-z/+]+)(;[^;=]+=[^;=]+)*?(;(?[^;,]+))?,(?.*)/g.exec(e).groups; } catch { return console.warn("Image data URI resolved without size:" + e), [e]; } let { imageType: o, encodingType: s, dataString: a } = i; if (o === On) { let u2 = s === "base64" ? atob(a) : decodeURIComponent(a.replace(/ /g, "%20")), l2 = s === "base64" ? e : `data:image/svg+xml;base64,${btoa(u2)}`, f = as(e, u2); return Re.set(e, [l2, ...f]), [l2, ...f]; } else if (s === "base64") { let u2, l2 = rf(a); switch (o) { case $r: case Wr: u2 = cs(l2); break; case Br: u2 = fs(l2); break; case qr: u2 = ls(l2); break; } return Re.set(e, [e, ...u2]), [e, ...u2]; } else return console.warn("Image data URI resolved without size:" + e), Re.set(e, [e]), [e]; } if (!globalThis.fetch) throw new Error("`fetch` is required to be polyfilled to load images."); if (Ct.has(e)) return Ct.get(e); let t = Re.get(e); if (t) return t; let n = e, r = fetch(n).then((i) => { let o = i.headers.get("content-type"); return o === "image/svg+xml" || o === "application/svg+xml" ? i.text() : i.arrayBuffer(); }).then((i) => { if (typeof i == "string") try { let a = `data:image/svg+xml;base64,${btoa(i)}`, u2 = as(n, i); return [a, ...u2]; } catch (a) { throw new Error(`Failed to parse SVG image: ${a.message}`); } let [o, s] = us(i); return [o, ...s]; }).then((i) => (Re.set(n, i), i)).catch((i) => (console.error(`Can't load image ${n}: ` + i.message), Re.set(n, []), [])); return Ct.set(n, r), r; } function nf(e) { return [255, 216, 255].every((t, n) => e[n] === t) ? qr : [137, 80, 78, 71, 13, 10, 26, 10].every((t, n) => e[n] === t) ? of(e) ? Wr : $r : [71, 73, 70, 56].every((t, n) => e[n] === t) ? Br : [82, 73, 70, 70, 0, 0, 0, 0, 87, 69, 66, 80].every((t, n) => !t || e[n] === t) ? Zl : [60, 63, 120, 109, 108].every((t, n) => e[n] === t) ? On : [0, 0, 0, 0, 102, 116, 121, 112, 97, 118, 105, 102].every((t, n) => !t || e[n] === t) ? Jl : null; } function of(e) { let t = new DataView(e.buffer), n, r, i = 8, o = false; for (; !o && n !== "IEND" && i < e.length; ) { r = t.getUint32(i); let s = e.subarray(i + 4, i + 8); n = String.fromCharCode(...s), o = n === "acTL", i += 12 + r; } return o; } var Pn = { accentHeight: "accent-height", alignmentBaseline: "alignment-baseline", arabicForm: "arabic-form", baselineShift: "baseline-shift", capHeight: "cap-height", clipPath: "clip-path", clipRule: "clip-rule", colorInterpolation: "color-interpolation", colorInterpolationFilters: "color-interpolation-filters", colorProfile: "color-profile", colorRendering: "color-rendering", dominantBaseline: "dominant-baseline", enableBackground: "enable-background", fillOpacity: "fill-opacity", fillRule: "fill-rule", floodColor: "flood-color", floodOpacity: "flood-opacity", fontFamily: "font-family", fontSize: "font-size", fontSizeAdjust: "font-size-adjust", fontStretch: "font-stretch", fontStyle: "font-style", fontVariant: "font-variant", fontWeight: "font-weight", glyphName: "glyph-name", glyphOrientationHorizontal: "glyph-orientation-horizontal", glyphOrientationVertical: "glyph-orientation-vertical", horizAdvX: "horiz-adv-x", horizOriginX: "horiz-origin-x", href: "href", imageRendering: "image-rendering", letterSpacing: "letter-spacing", lightingColor: "lighting-color", markerEnd: "marker-end", markerMid: "marker-mid", markerStart: "marker-start", overlinePosition: "overline-position", overlineThickness: "overline-thickness", paintOrder: "paint-order", panose1: "panose-1", pointerEvents: "pointer-events", renderingIntent: "rendering-intent", shapeRendering: "shape-rendering", stopColor: "stop-color", stopOpacity: "stop-opacity", strikethroughPosition: "strikethrough-position", strikethroughThickness: "strikethrough-thickness", strokeDasharray: "stroke-dasharray", strokeDashoffset: "stroke-dashoffset", strokeLinecap: "stroke-linecap", strokeLinejoin: "stroke-linejoin", strokeMiterlimit: "stroke-miterlimit", strokeOpacity: "stroke-opacity", strokeWidth: "stroke-width", textAnchor: "text-anchor", textDecoration: "text-decoration", textRendering: "text-rendering", underlinePosition: "underline-position", underlineThickness: "underline-thickness", unicodeBidi: "unicode-bidi", unicodeRange: "unicode-range", unitsPerEm: "units-per-em", vAlphabetic: "v-alphabetic", vHanging: "v-hanging", vIdeographic: "v-ideographic", vMathematical: "v-mathematical", vectorEffect: "vector-effect", vertAdvY: "vert-adv-y", vertOriginX: "vert-origin-x", vertOriginY: "vert-origin-y", wordSpacing: "word-spacing", writingMode: "writing-mode", xHeight: "x-height", xlinkActuate: "xlink:actuate", xlinkArcrole: "xlink:arcrole", xlinkHref: "xlink:href", xlinkRole: "xlink:role", xlinkShow: "xlink:show", xlinkTitle: "xlink:title", xlinkType: "xlink:type", xmlBase: "xml:base", xmlLang: "xml:lang", xmlSpace: "xml:space", xmlnsXlink: "xmlns:xlink" }; var sf = /[\r\n%#()<>?[\\\]^`{|}"']/g; function In(e, t) { if (!e) return ""; if (Array.isArray(e)) return e.map((l2) => In(l2, t)).join(""); if (typeof e != "object") return String(e); let n = e.type; if (n === "text") throw new Error(" nodes are not currently supported, please convert them to "); let { children: r, style: i, ...o } = e.props || {}, s = (i == null ? void 0 : i.color) || t, a = `${Object.entries(o).map(([l2, f]) => (typeof f == "string" && f.toLowerCase() === "currentcolor" && (f = s), l2 === "href" && n === "image" ? ` ${Pn[l2] || l2}="${Re.get(f)[0]}"` : ` ${Pn[l2] || l2}="${f}"`)).join("")}`, u2 = i ? ` style="${Object.entries(i).map(([l2, f]) => `${ss(l2)}:${f}`).join(";")}"` : ""; return `<${n}${a}${u2}>${In(r, s)}`; } async function ds(e) { let t = /* @__PURE__ */ new Set(), n = (r) => { if (r && gt(r)) { if (Array.isArray(r)) { r.forEach((i) => n(i)); return; } else typeof r == "object" && (r.type === "image" ? t.has(r.props.href) || t.add(r.props.href) : r.type === "img" && (t.has(r.props.src) || t.add(r.props.src))); Array.isArray(r.props.children) ? r.props.children.map((i) => n(i)) : n(r.props.children); } }; return n(e), Promise.all(Array.from(t).map((r) => vt(r))); } async function ps(e, t) { let { viewBox: n, viewbox: r, width: i, height: o, className: s, style: a, children: u2, ...l2 } = e.props || {}; n ||= r, l2.xmlns = "http://www.w3.org/2000/svg"; let f = (a == null ? void 0 : a.color) || t, c2 = bt(n), p = c2 ? c2[3] / c2[2] : null; return i = i || p && o ? o / p : null, o = o || p && i ? i * p : null, l2.width = i, l2.height = o, n && (l2.viewBox = n), `data:image/svg+xml;utf8,${` (typeof h2 == "string" && h2.toLowerCase() === "currentcolor" && (h2 = f), ` ${Pn[d2] || d2}="${h2}"`)).join("")}>${In(u2, f)}`.replace(sf, encodeURIComponent)}`; } var be = "flex"; var hs = { p: { display: be, marginTop: "1em", marginBottom: "1em" }, div: { display: be }, blockquote: { display: be, marginTop: "1em", marginBottom: "1em", marginLeft: 40, marginRight: 40 }, center: { display: be, textAlign: "center" }, hr: { display: be, marginTop: "0.5em", marginBottom: "0.5em", marginLeft: "auto", marginRight: "auto", borderWidth: 1, borderStyle: "solid" }, h1: { display: be, fontSize: "2em", marginTop: "0.67em", marginBottom: "0.67em", marginLeft: 0, marginRight: 0, fontWeight: "bold" }, h2: { display: be, fontSize: "1.5em", marginTop: "0.83em", marginBottom: "0.83em", marginLeft: 0, marginRight: 0, fontWeight: "bold" }, h3: { display: be, fontSize: "1.17em", marginTop: "1em", marginBottom: "1em", marginLeft: 0, marginRight: 0, fontWeight: "bold" }, h4: { display: be, marginTop: "1.33em", marginBottom: "1.33em", marginLeft: 0, marginRight: 0, fontWeight: "bold" }, h5: { display: be, fontSize: "0.83em", marginTop: "1.67em", marginBottom: "1.67em", marginLeft: 0, marginRight: 0, fontWeight: "bold" }, h6: { display: be, fontSize: "0.67em", marginTop: "2.33em", marginBottom: "2.33em", marginLeft: 0, marginRight: 0, fontWeight: "bold" }, u: { textDecoration: "underline" }, strong: { fontWeight: "bold" }, b: { fontWeight: "bold" }, i: { fontStyle: "italic" }, em: { fontStyle: "italic" }, code: { fontFamily: "monospace" }, kbd: { fontFamily: "monospace" }, pre: { display: be, fontFamily: "monospace", whiteSpace: "pre", marginTop: "1em", marginBottom: "1em" }, mark: { backgroundColor: "yellow", color: "black" }, big: { fontSize: "larger" }, small: { fontSize: "smaller" }, s: { textDecoration: "line-through" } }; var af = /* @__PURE__ */ new Set(["color", "font", "fontFamily", "fontSize", "fontStyle", "fontWeight", "letterSpacing", "lineHeight", "textAlign", "textTransform", "textShadowOffset", "textShadowColor", "textShadowRadius", "WebkitTextStrokeWidth", "WebkitTextStrokeColor", "textDecorationLine", "textDecorationStyle", "textDecorationColor", "whiteSpace", "transform", "wordBreak", "tabSize", "opacity", "filter", "_viewportWidth", "_viewportHeight", "_inheritedClipPathId", "_inheritedMaskId", "_inheritedBackgroundClipTextPath"]); function An(e) { let t = {}; for (let n in e) af.has(n) && (t[n] = e[n]); return t; } function lf(e, t) { try { let n = new Ne(e); switch (n.unit) { case "px": return { absolute: n.value }; case "em": return { absolute: n.value * t }; case "rem": return { absolute: n.value * 16 }; case "%": return { relative: n.value }; default: return {}; } } catch { return {}; } } function Rn(e, t, n) { switch (e) { case "top": return { yRelative: 0 }; case "left": return { xRelative: 0 }; case "right": return { xRelative: 100 }; case "bottom": return { yRelative: 100 }; case "center": return {}; default: { let r = lf(e, t); return r.absolute ? { [n ? "xAbsolute" : "yAbsolute"]: r.absolute } : r.relative ? { [n ? "xRelative" : "yRelative"]: r.relative } : {}; } } } function Ln(e, t) { if (typeof e == "number") return { xAbsolute: e }; let n; try { n = (0, import_postcss_value_parser.default)(e).nodes.filter((r) => r.type === "word").map((r) => r.value); } catch { return {}; } return n.length === 1 ? Rn(n[0], t, true) : n.length === 2 ? ((n[0] === "top" || n[0] === "bottom" || n[1] === "left" || n[1] === "right") && n.reverse(), { ...Rn(n[0], t, true), ...Rn(n[1], t, false) }) : {}; } function Mt(e, t) { let n = (0, import_css_to_react_native2.getPropertyName)(`mask-${t}`); return e[n] || e[`WebkitM${n.substring(1)}`]; } function ms(e) { let t = e.maskImage || e.WebkitMaskImage, n = { position: Mt(e, "position") || "0% 0%", size: Mt(e, "size") || "100% 100%", repeat: Mt(e, "repeat") || "repeat", origin: Mt(e, "origin") || "border-box", clip: Mt(e, "origin") || "border-box" }; return Fr(t).filter((i) => i && i !== "none").reverse().map((i) => ({ image: i, ...n })); } var mf = /* @__PURE__ */ new Set(["flex", "flexGrow", "flexShrink", "flexBasis", "fontWeight", "lineHeight", "opacity", "scale", "scaleX", "scaleY"]); var gf = /* @__PURE__ */ new Set(["lineHeight"]); function bf(e, t, n, r) { return e === "textDecoration" && !n.includes(t.textDecorationColor) && (t.textDecorationColor = r), t; } function tt(e, t) { let n = Number(t); return isNaN(n) ? t : mf.has(e) ? gf.has(e) ? n : String(t) : n + "px"; } function vf(e, t, n) { if (e === "lineHeight") return { lineHeight: tt(e, t) }; if (e === "fontFamily") return { fontFamily: t.split(",").map((r) => r.trim().replace(/(^['"])|(['"]$)/g, "").toLocaleLowerCase()) }; if (e === "borderRadius") { if (typeof t != "string" || !t.includes("/")) return; let [r, i] = t.split("/"), o = (0, import_css_to_react_native.getStylesForProperty)(e, r, true), s = (0, import_css_to_react_native.getStylesForProperty)(e, i, true); for (let a in o) s[a] = tt(e, o[a]) + " " + tt(e, s[a]); return s; } if (/^border(Top|Right|Bottom|Left)?$/.test(e)) { let r = (0, import_css_to_react_native.getStylesForProperty)("border", t, true); r.borderWidth === 1 && !String(t).includes("1px") && (r.borderWidth = 3), r.borderColor === "black" && !String(t).includes("black") && (r.borderColor = n); let i = { Width: tt(e + "Width", r.borderWidth), Style: fe(r.borderStyle, { solid: "solid", dashed: "dashed" }, "solid", e + "Style"), Color: r.borderColor }, o = {}; for (let s of e === "border" ? ["Top", "Right", "Bottom", "Left"] : [e.slice(6)]) for (let a in i) o["border" + s + a] = i[a]; return o; } if (e === "boxShadow") { if (!t) throw new Error('Invalid `boxShadow` value: "' + t + '".'); return { [e]: typeof t == "string" ? (0, import_css_box_shadow.parse)(t) : t }; } if (e === "transform") { if (typeof t != "string") throw new Error("Invalid `transform` value."); let r = {}, i = t.replace(/(-?[\d.]+%)/g, (s, a) => { let u2 = ~~(Math.random() * 1e9); return r[u2] = a, u2 + "px"; }), o = (0, import_css_to_react_native.getStylesForProperty)("transform", i, true); for (let s of o.transform) for (let a in s) r[s[a]] && (s[a] = r[s[a]]); return o; } if (e === "background") return t = t.toString().trim(), /^(linear-gradient|radial-gradient|url|repeating-linear-gradient)\(/.test(t) ? (0, import_css_to_react_native.getStylesForProperty)("backgroundImage", t, true) : (0, import_css_to_react_native.getStylesForProperty)("background", t, true); if (e === "textShadow") { t = t.toString().trim(); let r = {}, i = Fr(t); for (let o of i) { let s = (0, import_css_to_react_native.getStylesForProperty)("textShadow", o, true); for (let a in s) r[a] ? r[a].push(s[a]) : r[a] = [s[a]]; } return r; } if (e === "WebkitTextStroke") { t = t.toString().trim(); let r = t.split(" "); if (r.length !== 2) throw new Error("Invalid `WebkitTextStroke` value."); return { WebkitTextStrokeWidth: tt(e, r[0]), WebkitTextStrokeColor: tt(e, r[1]) }; } } function gs(e) { return e === "transform" ? " Only absolute lengths such as `10px` are supported." : ""; } var bs = /rgb\((\d+)\s+(\d+)\s+(\d+)\s*\/\s*([\.\d]+)\)/; function ys(e) { if (typeof e == "string" && bs.test(e.trim())) return e.trim().replace(bs, (t, n, r, i, o) => `rgba(${n}, ${r}, ${i}, ${o})`); if (typeof e == "object" && e !== null) { for (let t in e) e[t] = ys(e[t]); return e; } return e; } function zr(e, t) { let n = {}; if (e) { let i = xf(e.color, t.color); n.color = i; for (let o in e) { if (o.startsWith("_")) { n[o] = e[o]; continue; } if (o === "color") continue; let s = (0, import_css_to_react_native.getPropertyName)(o), a = Sf(e[o], i); try { let u2 = vf(s, a, i) || bf(s, (0, import_css_to_react_native.getStylesForProperty)(s, tt(s, a), true), a, i); Object.assign(n, u2); } catch (u2) { throw new Error(u2.message + (u2.message.includes(a) ? ` ` + gs(s) : ` in CSS rule \`${s}: ${a}\`.${gs(s)}`)); } } } if (n.backgroundImage) { let { backgrounds: i } = (0, import_css_background_parser.parseElementStyle)(n); n.backgroundImage = i; } (n.maskImage || n.WebkitMaskImage) && (n.maskImage = ms(n)); let r = yf(n.fontSize, t.fontSize); typeof n.fontSize < "u" && (n.fontSize = r), n.transformOrigin && (n.transformOrigin = Ln(n.transformOrigin, r)); for (let i in n) { let o = n[i]; if (i === "lineHeight") typeof o == "string" && o !== "normal" && (o = n[i] = R2(o, r, r, t, true) / r); else { if (typeof o == "string") { let s = R2(o, r, r, t); typeof s < "u" && (n[i] = s), o = n[i]; } if (typeof o == "string" || typeof o == "object") { let s = ys(o); s && (n[i] = s), o = n[i]; } } if (i === "opacity" && typeof o == "number" && (n.opacity = o * t.opacity), i === "transform") { let s = o; for (let a of s) { let u2 = Object.keys(a)[0], l2 = a[u2], f = typeof l2 == "string" ? R2(l2, r, r, t) ?? l2 : l2; a[u2] = f; } } if (i === "textShadowRadius") { let s = o; n.textShadowRadius = s.map((a) => R2(a, r, 0, t, false)); } if (i === "textShadowOffset") { let s = o; n.textShadowOffset = s.map(({ height: a, width: u2 }) => ({ height: R2(a, r, 0, t, false), width: R2(u2, r, 0, t, false) })); } } return n; } function yf(e, t) { if (typeof e == "number") return e; try { let n = new Ne(e); switch (n.unit) { case "em": return n.value * t; case "rem": return n.value * 16; } } catch { return t; } } function vs(e) { if (e.startsWith("hsl")) { let t = index_esm_default(e), [n, r, i] = t.values; return `hsl(${[n, `${r}%`, `${i}%`].concat(t.alpha === 1 ? [] : [t.alpha]).join(",")})`; } return e; } function xf(e, t) { return e && e.toLowerCase() !== "currentcolor" ? vs(e) : vs(t); } function wf(e, t) { return e.replace(/currentcolor/gi, t); } function Sf(e, t) { return Nr(e) && (e = wf(e, t)), e; } async function Cn(e, t, n, r, i) { let o = await De(), s = { ...n, ...zr(hs[t], n), ...zr(r, n) }; if (t === "img") { let [a, u2, l2] = await vt(i.src); if (u2 === void 0 && l2 === void 0) { if (i.width === void 0 || i.height === void 0) throw new Error("Image size cannot be determined. Please provide the width and height of the image."); u2 = parseInt(i.width), l2 = parseInt(i.height); } let f = l2 / u2, c2 = (s.borderLeftWidth || 0) + (s.borderRightWidth || 0) + (s.paddingLeft || 0) + (s.paddingRight || 0), p = (s.borderTopWidth || 0) + (s.borderBottomWidth || 0) + (s.paddingTop || 0) + (s.paddingBottom || 0), d2 = s.width || i.width, h2 = s.height || i.height, m2 = typeof d2 == "number" && typeof h2 == "number"; m2 && (d2 -= c2, h2 -= p), d2 === void 0 && h2 === void 0 ? (d2 = "100%", e.setAspectRatio(1 / f)) : d2 === void 0 ? typeof h2 == "number" ? d2 = h2 / f : e.setAspectRatio(1 / f) : h2 === void 0 && (typeof d2 == "number" ? h2 = d2 * f : e.setAspectRatio(1 / f)), s.width = m2 ? d2 + c2 : d2, s.height = m2 ? h2 + p : h2, s.__src = a; } if (t === "svg") { let a = i.viewBox || i.viewbox, u2 = bt(a), l2 = u2 ? u2[3] / u2[2] : null, { width: f, height: c2 } = i; typeof f > "u" && c2 ? l2 == null ? f = 0 : typeof c2 == "string" && c2.endsWith("%") ? f = parseInt(c2) / l2 + "%" : (c2 = R2(c2, n.fontSize, 1, n), f = c2 / l2) : typeof c2 > "u" && f ? l2 == null ? f = 0 : typeof f == "string" && f.endsWith("%") ? c2 = parseInt(f) * l2 + "%" : (f = R2(f, n.fontSize, 1, n), c2 = f * l2) : (typeof f < "u" && (f = R2(f, n.fontSize, 1, n) || f), typeof c2 < "u" && (c2 = R2(c2, n.fontSize, 1, n) || c2), f ||= u2 == null ? void 0 : u2[2], c2 ||= u2 == null ? void 0 : u2[3]), !s.width && f && (s.width = f), !s.height && c2 && (s.height = c2); } return e.setDisplay(fe(s.display, { flex: o.DISPLAY_FLEX, block: o.DISPLAY_FLEX, none: o.DISPLAY_NONE, "-webkit-box": o.DISPLAY_FLEX }, o.DISPLAY_FLEX, "display")), e.setAlignContent(fe(s.alignContent, { stretch: o.ALIGN_STRETCH, center: o.ALIGN_CENTER, "flex-start": o.ALIGN_FLEX_START, "flex-end": o.ALIGN_FLEX_END, "space-between": o.ALIGN_SPACE_BETWEEN, "space-around": o.ALIGN_SPACE_AROUND, baseline: o.ALIGN_BASELINE, normal: o.ALIGN_AUTO }, o.ALIGN_AUTO, "alignContent")), e.setAlignItems(fe(s.alignItems, { stretch: o.ALIGN_STRETCH, center: o.ALIGN_CENTER, "flex-start": o.ALIGN_FLEX_START, "flex-end": o.ALIGN_FLEX_END, baseline: o.ALIGN_BASELINE, normal: o.ALIGN_AUTO }, o.ALIGN_STRETCH, "alignItems")), e.setAlignSelf(fe(s.alignSelf, { stretch: o.ALIGN_STRETCH, center: o.ALIGN_CENTER, "flex-start": o.ALIGN_FLEX_START, "flex-end": o.ALIGN_FLEX_END, baseline: o.ALIGN_BASELINE, normal: o.ALIGN_AUTO }, o.ALIGN_AUTO, "alignSelf")), e.setJustifyContent(fe(s.justifyContent, { center: o.JUSTIFY_CENTER, "flex-start": o.JUSTIFY_FLEX_START, "flex-end": o.JUSTIFY_FLEX_END, "space-between": o.JUSTIFY_SPACE_BETWEEN, "space-around": o.JUSTIFY_SPACE_AROUND }, o.JUSTIFY_FLEX_START, "justifyContent")), e.setFlexDirection(fe(s.flexDirection, { row: o.FLEX_DIRECTION_ROW, column: o.FLEX_DIRECTION_COLUMN, "row-reverse": o.FLEX_DIRECTION_ROW_REVERSE, "column-reverse": o.FLEX_DIRECTION_COLUMN_REVERSE }, o.FLEX_DIRECTION_ROW, "flexDirection")), e.setFlexWrap(fe(s.flexWrap, { wrap: o.WRAP_WRAP, nowrap: o.WRAP_NO_WRAP, "wrap-reverse": o.WRAP_WRAP_REVERSE }, o.WRAP_NO_WRAP, "flexWrap")), typeof s.gap < "u" && e.setGap(o.GUTTER_ALL, s.gap), typeof s.rowGap < "u" && e.setGap(o.GUTTER_ROW, s.rowGap), typeof s.columnGap < "u" && e.setGap(o.GUTTER_COLUMN, s.columnGap), typeof s.flexBasis < "u" && e.setFlexBasis(s.flexBasis), e.setFlexGrow(typeof s.flexGrow > "u" ? 0 : s.flexGrow), e.setFlexShrink(typeof s.flexShrink > "u" ? 0 : s.flexShrink), typeof s.maxHeight < "u" && e.setMaxHeight(s.maxHeight), typeof s.maxWidth < "u" && e.setMaxWidth(s.maxWidth), typeof s.minHeight < "u" && e.setMinHeight(s.minHeight), typeof s.minWidth < "u" && e.setMinWidth(s.minWidth), e.setOverflow(fe(s.overflow, { visible: o.OVERFLOW_VISIBLE, hidden: o.OVERFLOW_HIDDEN }, o.OVERFLOW_VISIBLE, "overflow")), e.setMargin(o.EDGE_TOP, s.marginTop || 0), e.setMargin(o.EDGE_BOTTOM, s.marginBottom || 0), e.setMargin(o.EDGE_LEFT, s.marginLeft || 0), e.setMargin(o.EDGE_RIGHT, s.marginRight || 0), e.setBorder(o.EDGE_TOP, s.borderTopWidth || 0), e.setBorder(o.EDGE_BOTTOM, s.borderBottomWidth || 0), e.setBorder(o.EDGE_LEFT, s.borderLeftWidth || 0), e.setBorder(o.EDGE_RIGHT, s.borderRightWidth || 0), e.setPadding(o.EDGE_TOP, s.paddingTop || 0), e.setPadding(o.EDGE_BOTTOM, s.paddingBottom || 0), e.setPadding(o.EDGE_LEFT, s.paddingLeft || 0), e.setPadding(o.EDGE_RIGHT, s.paddingRight || 0), e.setPositionType(fe(s.position, { absolute: o.POSITION_TYPE_ABSOLUTE, relative: o.POSITION_TYPE_RELATIVE }, o.POSITION_TYPE_RELATIVE, "position")), typeof s.top < "u" && e.setPosition(o.EDGE_TOP, s.top), typeof s.bottom < "u" && e.setPosition(o.EDGE_BOTTOM, s.bottom), typeof s.left < "u" && e.setPosition(o.EDGE_LEFT, s.left), typeof s.right < "u" && e.setPosition(o.EDGE_RIGHT, s.right), typeof s.height < "u" ? e.setHeight(s.height) : e.setHeightAuto(), typeof s.width < "u" ? e.setWidth(s.width) : e.setWidthAuto(), [s, An(s)]; } var xs = [1, 0, 0, 1, 0, 0]; function _f(e, t, n) { let r = [...xs]; for (let i of e) { let o = Object.keys(i)[0], s = i[o]; if (typeof s == "string") if (o === "translateX") s = parseFloat(s) / 100 * t, i[o] = s; else if (o === "translateY") s = parseFloat(s) / 100 * n, i[o] = s; else throw new Error(`Invalid transform: "${o}: ${s}".`); let a = s, u2 = [...xs]; switch (o) { case "translateX": u2[4] = a; break; case "translateY": u2[5] = a; break; case "scale": u2[0] = a, u2[3] = a; break; case "scaleX": u2[0] = a; break; case "scaleY": u2[3] = a; break; case "rotate": { let l2 = a * Math.PI / 180, f = Math.cos(l2), c2 = Math.sin(l2); u2[0] = f, u2[1] = c2, u2[2] = -c2, u2[3] = f; break; } case "skewX": u2[2] = Math.tan(a * Math.PI / 180); break; case "skewY": u2[1] = Math.tan(a * Math.PI / 180); break; } r = Lt(u2, r); } e.splice(0, e.length), e.push(...r), e.__resolved = true; } function Dt({ left: e, top: t, width: n, height: r }, i, o, s) { let a; i.__resolved || _f(i, n, r); let u2 = i; if (o) a = u2; else { let l2 = (s == null ? void 0 : s.xAbsolute) ?? ((s == null ? void 0 : s.xRelative) ?? 50) * n / 100, f = (s == null ? void 0 : s.yAbsolute) ?? ((s == null ? void 0 : s.yRelative) ?? 50) * r / 100, c2 = e + l2, p = t + f; a = Lt([1, 0, 0, 1, c2, p], Lt(u2, [1, 0, 0, 1, -c2, -p])), u2.__parent && (a = Lt(u2.__parent, a)), u2.splice(0, 6, ...a); } return `matrix(${a.map((l2) => l2.toFixed(2)).join(",")})`; } function Ss({ left: e, top: t, width: n, height: r, isInheritingTransform: i }, o) { let s = "", a = 1; return o.transform && (s = Dt({ left: e, top: t, width: n, height: r }, o.transform, i, o.transformOrigin)), o.opacity !== void 0 && (a = +o.opacity), { matrix: s, opacity: a }; } function Mn({ id: e, content: t, filter: n, left: r, top: i, width: o, height: s, matrix: a, opacity: u2, image: l2, clipPathId: f, debug: c2, shape: p, decorationShape: d2 }, h2) { let m2 = ""; if (c2 && (m2 = _("rect", { x: r, y: i - s, width: o, height: s, fill: "transparent", stroke: "#575eff", "stroke-width": 1, transform: a || void 0, "clip-path": f ? `url(#${f})` : void 0 })), l2) { let b = { href: l2, x: r, y: i, width: o, height: s, transform: a || void 0, "clip-path": f ? `url(#${f})` : void 0, style: h2.filter ? `filter:${h2.filter}` : void 0 }; return [(n ? `${n}` : "") + _("image", { ...b, opacity: u2 !== 1 ? u2 : void 0 }) + (d2 || "") + (n ? "" : "") + m2, ""]; } let w2 = { x: r, y: i, width: o, height: s, "font-weight": h2.fontWeight, "font-style": h2.fontStyle, "font-size": h2.fontSize, "font-family": h2.fontFamily, "letter-spacing": h2.letterSpacing || void 0, transform: a || void 0, "clip-path": f ? `url(#${f})` : void 0, style: h2.filter ? `filter:${h2.filter}` : void 0, "stroke-width": h2.WebkitTextStrokeWidth ? `${h2.WebkitTextStrokeWidth}px` : void 0, stroke: h2.WebkitTextStrokeWidth ? h2.WebkitTextStrokeColor : void 0, "stroke-linejoin": h2.WebkitTextStrokeWidth ? "round" : void 0, "paint-order": h2.WebkitTextStrokeWidth ? "stroke" : void 0 }; return [(n ? `${n}` : "") + _("text", { ...w2, fill: h2.color, opacity: u2 !== 1 ? u2 : void 0 }, (0, import_escape_html.default)(t)) + (d2 || "") + (n ? "" : "") + m2, p ? _("text", w2, (0, import_escape_html.default)(t)) : ""]; } function kf(e, t, n) { return e.replace(/([MA])([0-9.-]+),([0-9.-]+)/g, function(r, i, o, s) { return i + (parseFloat(o) + t) + "," + (parseFloat(s) + n); }); } var Ur = 1.1; function _s({ id: e, width: t, height: n }, r) { if (!r.shadowColor || !r.shadowOffset || typeof r.shadowRadius > "u") return ""; let i = r.shadowColor.length, o = "", s = "", a = 0, u2 = t, l2 = 0, f = n; for (let c2 = 0; c2 < i; c2++) { let p = r.shadowRadius[c2] * r.shadowRadius[c2] / 4; a = Math.min(r.shadowOffset[c2].width - p, a), u2 = Math.max(r.shadowOffset[c2].width + p + t, u2), l2 = Math.min(r.shadowOffset[c2].height - p, l2), f = Math.max(r.shadowOffset[c2].height + p + n, f), o += _("feDropShadow", { dx: r.shadowOffset[c2].width, dy: r.shadowOffset[c2].height, stdDeviation: r.shadowRadius[c2] / 2, "flood-color": r.shadowColor[c2], "flood-opacity": 1, ...i > 1 ? { in: "SourceGraphic", result: `satori_s-${e}-result-${c2}` } : {} }), i > 1 && (s = _("feMergeNode", { in: `satori_s-${e}-result-${c2}` }) + s); } return _("filter", { id: `satori_s-${e}`, x: (a / t * 100 * Ur).toFixed(2) + "%", y: (l2 / n * 100 * Ur).toFixed(2) + "%", width: ((u2 - a) / t * 100 * Ur).toFixed(2) + "%", height: ((f - l2) / n * 100 * Ur).toFixed(2) + "%" }, o + (s ? _("feMerge", {}, s) : "")); } function ks({ width: e, height: t, shape: n, opacity: r, id: i }, o) { if (!o.boxShadow) return null; let s = "", a = ""; for (let u2 = o.boxShadow.length - 1; u2 >= 0; u2--) { let l2 = "", f = o.boxShadow[u2]; f.spreadRadius && f.inset && (f.spreadRadius = -f.spreadRadius); let c2 = f.blurRadius * f.blurRadius / 4 + (f.spreadRadius || 0), p = Math.min(-c2 - (f.inset ? f.offsetX : 0), 0), d2 = Math.max(c2 + e - (f.inset ? f.offsetX : 0), e), h2 = Math.min(-c2 - (f.inset ? f.offsetY : 0), 0), m2 = Math.max(c2 + t - (f.inset ? f.offsetY : 0), t), w2 = `satori_s-${i}-${u2}`, b = `satori_ms-${i}-${u2}`, T = f.spreadRadius ? n.replace('stroke-width="0"', `stroke-width="${f.spreadRadius * 2}"`) : n; l2 += _("mask", { id: b, maskUnits: "userSpaceOnUse" }, _("rect", { x: 0, y: 0, width: o._viewportWidth || "100%", height: o._viewportHeight || "100%", fill: f.inset ? "#000" : "#fff" }) + T.replace('fill="#fff"', f.inset ? 'fill="#fff"' : 'fill="#000"').replace('stroke="#fff"', "")); let y = T.replace(/d="([^"]+)"/, (v2, x2) => 'd="' + kf(x2, f.offsetX, f.offsetY) + '"').replace(/x="([^"]+)"/, (v2, x2) => 'x="' + (parseFloat(x2) + f.offsetX) + '"').replace(/y="([^"]+)"/, (v2, x2) => 'y="' + (parseFloat(x2) + f.offsetY) + '"'); f.spreadRadius && f.spreadRadius < 0 && (l2 += _("mask", { id: b + "-neg", maskUnits: "userSpaceOnUse" }, y.replace('stroke="#fff"', 'stroke="#000"').replace(/stroke-width="[^"]+"/, `stroke-width="${-f.spreadRadius * 2}"`))), f.spreadRadius && f.spreadRadius < 0 && (y = _("g", { mask: `url(#${b}-neg)` }, y)), l2 += _("defs", {}, _("filter", { id: w2, x: `${p / e * 100}%`, y: `${h2 / t * 100}%`, width: `${(d2 - p) / e * 100}%`, height: `${(m2 - h2) / t * 100}%` }, _("feGaussianBlur", { stdDeviation: f.blurRadius / 2, result: "b" }) + _("feFlood", { "flood-color": f.color, in: "SourceGraphic", result: "f" }) + _("feComposite", { in: "f", in2: "b", operator: f.inset ? "out" : "in" }))) + _("g", { mask: `url(#${b})`, filter: `url(#${w2})`, opacity: r }, y), f.inset ? a += l2 : s += l2; } return [s, a]; } function Dn({ width: e, left: t, top: n, ascender: r, clipPathId: i, matrix: o }, s) { let { textDecorationColor: a, textDecorationStyle: u2, textDecorationLine: l2, fontSize: f, color: c2 } = s; if (!l2 || l2 === "none") return ""; let p = Math.max(1, f * 0.1), d2 = l2 === "line-through" ? n + r * 0.7 : l2 === "underline" ? n + r * 1.1 : n, h2 = u2 === "dashed" ? `${p * 1.2} ${p * 2}` : u2 === "dotted" ? `0 ${p * 2}` : void 0, m2 = u2 === "double" ? _("line", { x1: t, y1: d2 + p + 1, x2: t + e, y2: d2 + p + 1, stroke: a || c2, "stroke-width": p, "stroke-dasharray": h2, "stroke-linecap": u2 === "dotted" ? "round" : "square", transform: o }) : ""; return (i ? `` : "") + _("line", { x1: t, y1: d2, x2: t + e, y2: d2, stroke: a || c2, "stroke-width": p, "stroke-dasharray": h2, "stroke-linecap": u2 === "dotted" ? "round" : "square", transform: o }) + m2 + (i ? "" : ""); } function Nn(e) { return e = e.replace("U+", "0x"), String.fromCodePoint(Number(e)); } var rt = Nn("U+0020"); var Fn = Nn("U+0009"); var yt = Nn("U+2026"); function Ts(e, t, n) { let { fontSize: r, letterSpacing: i } = n, o = /* @__PURE__ */ new Map(); function s(l2) { if (o.has(l2)) return o.get(l2); let f = e.measure(l2, { fontSize: r, letterSpacing: i }); return o.set(l2, f), f; } function a(l2) { let f = 0; for (let c2 of l2) t(c2) ? f += r : f += s(c2); return f; } function u2(l2) { return a(ue(l2, "grapheme")); } return { measureGrapheme: s, measureGraphemeArray: a, measureText: u2 }; } function Es(e, t, n) { let { textTransform: r, whiteSpace: i, wordBreak: o } = t; e = Tf(e, r, n); let { content: s, shouldCollapseTabsAndSpaces: a, allowSoftWrap: u2 } = Pf(e, i), { words: l2, requiredBreaks: f, allowBreakWord: c2 } = Of(s, o), [p, d2] = Ef(t, u2); return { words: l2, requiredBreaks: f, allowSoftWrap: u2, allowBreakWord: c2, processedContent: s, shouldCollapseTabsAndSpaces: a, lineLimit: p, blockEllipsis: d2 }; } function Tf(e, t, n) { return t === "uppercase" ? e = e.toLocaleUpperCase(n) : t === "lowercase" ? e = e.toLocaleLowerCase(n) : t === "capitalize" && (e = ue(e, "word", n).map((r) => ue(r, "grapheme", n).map((i, o) => o === 0 ? i.toLocaleUpperCase(n) : i).join("")).join("")), e; } function Ef(e, t) { let { textOverflow: n, lineClamp: r, WebkitLineClamp: i, WebkitBoxOrient: o, overflow: s, display: a } = e; if (a === "block" && r) { let [u2, l2 = yt] = If(r); if (u2) return [u2, l2]; } return n === "ellipsis" && a === "-webkit-box" && o === "vertical" && ns(i) && i > 0 ? [i, yt] : n === "ellipsis" && s === "hidden" && !t ? [1, yt] : [1 / 0]; } function Of(e, t) { let n = ["break-all", "break-word"].includes(t), { words: r, requiredBreaks: i } = os(e, t); return { words: r, requiredBreaks: i, allowBreakWord: n }; } function Pf(e, t) { let n = ["pre", "pre-wrap", "pre-line"].includes(t), r = ["normal", "nowrap", "pre-line"].includes(t), i = !["pre", "nowrap"].includes(t); return n || (e = e.replace(/\n/g, rt)), r && (e = e.replace(/([ ]|\t)+/g, rt).replace(/^[ ]|[ ]$/g, "")), { content: e, shouldCollapseTabsAndSpaces: r, allowSoftWrap: i }; } function If(e) { if (typeof e == "number") return [e]; let t = /^(\d+)\s*"(.*)"$/, n = /^(\d+)\s*'(.*)'$/, r = t.exec(e), i = n.exec(e); if (r) { let o = +r[1], s = r[2]; return [o, s]; } else if (i) { let o = +i[1], s = i[2]; return [o, s]; } return []; } var Af = /* @__PURE__ */ new Set([Fn]); function Rf(e) { return Af.has(e); } async function* Wn(e, t) { let n = await De(), { parentStyle: r, inheritedStyle: i, parent: o, font: s, id: a, isInheritingTransform: u2, debug: l2, embedFont: f, graphemeImages: c2, locale: p, canLoadAdditionalAssets: d2 } = t, { textAlign: h2, lineHeight: m2, textWrap: w2, fontSize: b, filter: T, tabSize: y = 8, letterSpacing: v2, _inheritedBackgroundClipTextPath: x2, flexShrink: I } = r, { words: A, requiredBreaks: L, allowSoftWrap: H, allowBreakWord: ie, processedContent: ae, shouldCollapseTabsAndSpaces: le, lineLimit: K2, blockEllipsis: oe } = Es(e, r, p), te = Lf(n, h2); o.insertChild(te, o.getChildCount()), is(I) && o.setFlexShrink(1); let W = s.getEngine(b, m2, r, p), _e = d2 ? ue(ae, "grapheme").filter((M) => !Rf(M) && !W.has(M)) : []; yield _e.map((M) => ({ word: M, locale: p })), _e.length && (W = s.getEngine(b, m2, r, p)); function Pe(M) { return !!(c2 && c2[M]); } let { measureGrapheme: he, measureGraphemeArray: _r, measureText: Je } = Ts(W, Pe, { fontSize: b, letterSpacing: v2 }), Et = Nr(y) ? R2(y, b, 1, r) : he(rt) * y, kr = (M, $) => { if (M.length === 0) return { originWidth: 0, endingSpacesWidth: 0, text: M }; let { index: J, tabCount: q } = Cf(M), Z = 0; if (q > 0) { let ee = M.slice(0, J), V = M.slice(J + q), z = Je(ee), Ae = z + $; Z = (Et === 0 ? z : (Math.floor(Ae / Et) + q) * Et) + Je(V); } else Z = Je(M); let B = M.trimEnd() === M ? Z : Je(M.trimEnd()); return { originWidth: Z, endingSpacesWidth: Z - B, text: M }; }, C = [], me = [], lt = [], ft = [], Ot = []; function Tr(M) { let $ = 0, J = 0, q = -1, Z = 0, B = 0, ee = 0, V = 0; C = [], lt = [0], ft = [], Ot = []; let z = 0, Ae = 0; for (; z < A.length && $ < K2; ) { let D = A[z], Ze = L[z], ge = 0, { originWidth: ze, endingSpacesWidth: Rr, text: Ue } = kr(D, B); D = Ue, ge = ze; let Y = Rr; Ze && ee === 0 && (ee = W.height(D)); let se = h2 === "justify", Ge = z && B + ge > M + Y && H; if (ie && ge > M && (!B || Ge || Ze)) { let ke = ue(D, "grapheme"); A.splice(z, 1, ...ke), B > 0 && (C.push(B - Ae), me.push(V), $++, Z += ee, B = 0, ee = 0, V = 0, lt.push(1), q = -1), Ae = Y; continue; } if (Ze || Ge) le && D === rt && (ge = 0), C.push(B - Ae), me.push(V), $++, Z += ee, B = ge, ee = ge ? Math.round(W.height(D)) : 0, V = ge ? Math.round(W.baseline(D)) : 0, lt.push(1), q = -1, Ze || (J = Math.max(J, M)); else { B += ge; let ke = Math.round(W.height(D)); ke > ee && (ee = ke, V = Math.round(W.baseline(D))), se && lt[lt.length - 1]++; } se && q++, J = Math.max(J, B); let Lr = B - ge; if (ge === 0) Ot.push({ y: Z, x: Lr, width: 0, line: $, lineIndex: q, isImage: false }); else { let ke = ue(D, "word"); for (let Te = 0; Te < ke.length; Te++) { let Ee = ke[Te], je = 0, et2 = false; Pe(Ee) ? (je = b, et2 = true) : je = he(Ee), ft.push(Ee), Ot.push({ y: Z, x: Lr, width: je, line: $, lineIndex: q, isImage: et2 }), Lr += je; } } z++, Ae = Y; } return B && ($ < K2 && (Z += ee), $++, C.push(B), me.push(V)), { width: J, height: Z }; } let Pt = { width: 0, height: 0 }; te.setMeasureFunc((M) => { let { width: $, height: J } = Tr(M); if (w2 === "balance") { let Z = $ / 2, B = $, ee = $; for (; Z + 1 < B; ) { ee = (Z + B) / 2; let { height: z } = Tr(ee); z > J ? Z = ee : B = ee; } Tr(B); let V = Math.ceil(B); return Pt = { width: V, height: J }, { width: V, height: J }; } if (w2 === "pretty" && C[C.length - 1] < $ / 3) { let ee = $ * 0.9, V = Tr(ee); if (V.height <= J * 1.3) return Pt = { width: $, height: V.height }, { width: $, height: V.height }; } let q = Math.ceil($); return Pt = { width: q, height: J }, { width: q, height: J }; }); let [Pl, Il] = yield, vn = "", Er = "", qe = i._inheritedClipPathId, No = i._inheritedMaskId, { left: Fo, top: Wo, width: yn, height: Al } = te.getComputedLayout(), Or = o.getComputedWidth() - o.getComputedPadding(n.EDGE_LEFT) - o.getComputedPadding(n.EDGE_RIGHT) - o.getComputedBorder(n.EDGE_LEFT) - o.getComputedBorder(n.EDGE_RIGHT), ct = Pl + Fo, dt = Il + Wo, { matrix: Ie, opacity: Pr } = Ss({ left: Fo, top: Wo, width: yn, height: Al, isInheritingTransform: u2 }, r), pt = ""; if (r.textShadowOffset) { let { textShadowColor: M, textShadowOffset: $, textShadowRadius: J } = r; pt = _s({ width: Pt.width, height: Pt.height, id: a }, { shadowColor: M, shadowOffset: $, shadowRadius: J }), pt = _("defs", {}, pt); } let It = "", Ir = "", $o = "", Ar = -1, ht = {}, Be = null, qo = 0; for (let M = 0; M < ft.length; M++) { let $ = Ot[M], J = Ot[M + 1]; if (!$) continue; let q = ft[M], Z = null, B = false, ee = c2 ? c2[q] : null, V = $.y, z = $.x, Ae = $.width, D = $.line; if (D === Ar) continue; let Ze = false; if (C.length > 1) { let Y = yn - C[D]; if (h2 === "right" || h2 === "end") z += Y; else if (h2 === "center") z += Y / 2; else if (h2 === "justify" && D < C.length - 1) { let se = lt[D], Ge = se > 1 ? Y / (se - 1) : 0; z += Ge * $.lineIndex, Ze = true; } z = Math.round(z); } let ge = me[D], ze = W.baseline(q), Rr = W.height(q), Ue = ge - ze; if (ht[D] || (ht[D] = [z, dt + V + Ue, ze, Ze ? yn : C[D]]), K2 !== 1 / 0) { let ke = function(Te, Ee) { let je = ue(Ee, "grapheme", p), et2 = "", zo = 0; for (let Uo of je) { let Go = Te + _r([et2 + Uo]); if (et2 && Go + se > Or) break; et2 += Uo, zo = Go; } return { subset: et2, resolvedWidth: zo }; }, Y = oe, se = he(oe); se > Or && (Y = yt, se = he(Y)); let Ge = he(rt), Bo = D < C.length - 1; if (D + 1 === K2 && (Bo || C[D] > Or)) { if (z + Ae + se + Ge > Or) { let { subset: Te, resolvedWidth: Ee } = ke(z, q); q = Te + Y, Ar = D, ht[D][2] = Ee, B = true; } else if (J && J.line !== D) if (h2 === "center") { let { subset: Te, resolvedWidth: Ee } = ke(z, q); q = Te + Y, Ar = D, ht[D][2] = Ee, B = true; } else { let Te = ft[M + 1], { subset: Ee, resolvedWidth: je } = ke(Ae + z, Te); q = q + Ee + Y, Ar = D, ht[D][2] = je, B = true; } } } if (ee) V += 0; else if (f) { if (!q.includes(Fn) && !ts.includes(q) && ft[M + 1] && J && !J.isImage && V === J.y && !B) { Be === null && (qo = z), Be = Be === null ? q : Be + q; continue; } let Y = Be === null ? q : Be + q, se = Be === null ? z : qo, Ge = $.width + z - se; Z = W.getSVG(Y.replace(/(\t)+/g, ""), { fontSize: b, left: ct + se, top: dt + V + ze + Ue, letterSpacing: v2 }), Be = null, l2 && ($o += _("rect", { x: ct + se, y: dt + V + Ue, width: Ge, height: Rr, fill: "transparent", stroke: "#575eff", "stroke-width": 1, transform: Ie || void 0, "clip-path": qe ? `url(#${qe})` : void 0 }) + _("line", { x1: ct + z, x2: ct + z + $.width, y1: dt + V + Ue + ze, y2: dt + V + Ue + ze, stroke: "#14c000", "stroke-width": 1, transform: Ie || void 0, "clip-path": qe ? `url(#${qe})` : void 0 })); } else V += ze + Ue; if (r.textDecorationLine) { let Y = ht[D]; Y && !Y[4] && (It += Dn({ left: ct + Y[0], top: Y[1], width: Y[3], ascender: Y[2], clipPathId: qe, matrix: Ie }, r), Y[4] = 1); } if (Z !== null) Ir += Z + " "; else { let [Y, se] = Mn({ content: q, filter: pt, id: a, left: ct + z, top: dt + V, width: Ae, height: Rr, matrix: Ie, opacity: Pr, image: ee, clipPathId: qe, debug: l2, shape: !!x2, decorationShape: It }, r); vn += Y, Er += se, It = ""; } if (B) break; } if (Ir) { let M = r.color !== "transparent" && Pr !== 0 ? `` + _("path", { fill: r.color, d: Ir, transform: Ie || void 0, opacity: Pr !== 1 ? Pr : void 0, style: T ? `filter:${T}` : void 0, "stroke-width": i.WebkitTextStrokeWidth ? `${i.WebkitTextStrokeWidth}px` : void 0, stroke: i.WebkitTextStrokeWidth ? i.WebkitTextStrokeColor : void 0, "stroke-linejoin": i.WebkitTextStrokeWidth ? "round" : void 0, "paint-order": i.WebkitTextStrokeWidth ? "stroke" : void 0 }) + "" : ""; x2 && (Er = _("path", { d: Ir, transform: Ie || void 0 })), vn += (pt ? pt + _("g", { filter: `url(#satori_s-${a})` }, M + It) : M + It) + $o; } return Er && (r._inheritedBackgroundClipTextPath.value += Er), vn; } function Lf(e, t) { let n = e.Node.create(); return n.setAlignItems(e.ALIGN_BASELINE), n.setJustifyContent(fe(t, { left: e.JUSTIFY_FLEX_START, right: e.JUSTIFY_FLEX_END, center: e.JUSTIFY_CENTER, justify: e.JUSTIFY_SPACE_BETWEEN, start: e.JUSTIFY_FLEX_START, end: e.JUSTIFY_FLEX_END }, e.JUSTIFY_FLEX_START, "textAlign")), n; } function Cf(e) { let t = /(\t)+/.exec(e); return t ? { index: t.index, tabCount: t[0].length } : { index: null, tabCount: 0 }; } function Gr(e, t, n, r, i) { let o = []; for (let l2 of t) { let { color: f } = l2; if (!o.length && (o.push({ offset: 0, color: f }), !l2.offset || l2.offset.value === "0")) continue; let c2 = typeof l2.offset > "u" ? void 0 : l2.offset.unit === "%" ? +l2.offset.value / 100 : Number(R2(`${l2.offset.value}${l2.offset.unit}`, n.fontSize, e, n, true)) / e; o.push({ offset: c2, color: f }); } o.length || o.push({ offset: 0, color: "transparent" }); let s = o[o.length - 1]; s.offset !== 1 && (typeof s.offset > "u" ? s.offset = 1 : r ? o[o.length - 1] = { offset: 1, color: s.color } : o.push({ offset: 1, color: s.color })); let a = 0, u2 = 1; for (let l2 = 0; l2 < o.length; l2++) if (typeof o[l2].offset > "u") { for (u2 < l2 && (u2 = l2); typeof o[u2].offset > "u"; ) u2++; o[l2].offset = (o[u2].offset - o[a].offset) / (u2 - a) * (l2 - a) + o[a].offset; } else a = l2; return i === "mask" ? o.map((l2) => { let f = index_esm_default(l2.color); return f ? f.alpha === 0 ? { ...l2, color: "rgba(0, 0, 0, 1)" } : { ...l2, color: `rgba(255, 255, 255, ${f.alpha})` } : l2; }) : o; } function Os({ id: e, width: t, height: n, repeatX: r, repeatY: i }, o, s, a, u2, l2) { let f = P(o), [c2, p] = s, d2 = o.startsWith("repeating"), h2, m2, w2; if (f.orientation.type === "directional") h2 = Ff(f.orientation.value), m2 = Math.sqrt(Math.pow((h2.x2 - h2.x1) * c2, 2) + Math.pow((h2.y2 - h2.y1) * p, 2)); else if (f.orientation.type === "angular") { let { length: x2, ...I } = Wf(En(`${f.orientation.value.value}${f.orientation.value.unit}`) / 180 * Math.PI, c2, p); m2 = x2, h2 = I; } w2 = d2 ? $f(f.stops, m2, h2, u2) : h2; let b = Gr(d2 ? Nf(f.stops, m2) : m2, f.stops, u2, d2, l2), T = `satori_bi${e}`, y = `satori_pattern_${e}`, v2 = _("pattern", { id: y, x: a[0] / t, y: a[1] / n, width: r ? c2 / t : "1", height: i ? p / n : "1", patternUnits: "objectBoundingBox" }, _("linearGradient", { id: T, ...w2, spreadMethod: d2 ? "repeat" : "pad" }, b.map((x2) => _("stop", { offset: (x2.offset ?? 0) * 100 + "%", "stop-color": x2.color })).join("")) + _("rect", { x: 0, y: 0, width: c2, height: p, fill: `url(#${T})` })); return [y, v2]; } function Nf(e, t) { let n = e[e.length - 1], { offset: r } = n; return r ? r.unit === "%" ? Number(r.value) / 100 * t : Number(r.value) : t; } function Ff(e) { let t = 0, n = 0, r = 0, i = 0; return e.includes("top") ? n = 1 : e.includes("bottom") && (i = 1), e.includes("left") ? t = 1 : e.includes("right") && (r = 1), !t && !r && !n && !i && (n = 1), { x1: t, y1: n, x2: r, y2: i }; } function Wf(e, t, n) { let r = Math.pow(n / t, 2); e = (e % (Math.PI * 2) + Math.PI * 2) % (Math.PI * 2); let i, o, s, a, u2, l2, f, c2, p = (d2) => { if (d2 === 0) { i = 0, o = n, s = 0, a = 0, u2 = n; return; } else if (d2 === Math.PI / 2) { i = 0, o = 0, s = t, a = 0, u2 = t; return; } if (d2 > 0 && d2 < Math.PI / 2) { i = (r * t / 2 / Math.tan(d2) - n / 2) / (Math.tan(d2) + r / Math.tan(d2)), o = Math.tan(d2) * i + n, s = Math.abs(t / 2 - i) + t / 2, a = n / 2 - Math.abs(o - n / 2), u2 = Math.sqrt(Math.pow(s - i, 2) + Math.pow(a - o, 2)), f = (t / 2 / Math.tan(d2) - n / 2) / (Math.tan(d2) + 1 / Math.tan(d2)), c2 = Math.tan(d2) * f + n, u2 = 2 * Math.sqrt(Math.pow(t / 2 - f, 2) + Math.pow(n / 2 - c2, 2)); return; } else if (d2 > Math.PI / 2 && d2 < Math.PI) { i = (n / 2 + r * t / 2 / Math.tan(d2)) / (Math.tan(d2) + r / Math.tan(d2)), o = Math.tan(d2) * i, s = Math.abs(t / 2 - i) + t / 2, a = n / 2 + Math.abs(o - n / 2), f = (t / 2 / Math.tan(d2) + n / 2) / (Math.tan(d2) + 1 / Math.tan(d2)), c2 = Math.tan(d2) * f, u2 = 2 * Math.sqrt(Math.pow(t / 2 - f, 2) + Math.pow(n / 2 - c2, 2)); return; } else d2 >= Math.PI && (p(d2 - Math.PI), l2 = i, i = s, s = l2, l2 = o, o = a, a = l2); }; return p(e), { x1: i / t, y1: o / n, x2: s / t, y2: a / n, length: u2 }; } function $f(e, t, n, r) { let { x1: i, x2: o, y1: s, y2: a } = n, u2 = e[0].offset ? e[0].offset.unit === "%" ? Number(e[0].offset.value) / 100 : R2(`${e[0].offset.value}${e[0].offset.unit}`, r.fontSize, t, r, true) / t : 0, l2 = e.at(-1).offset ? e.at(-1).offset.unit === "%" ? Number(e.at(-1).offset.value) / 100 : R2(`${e.at(-1).offset.value}${e.at(-1).offset.unit}`, r.fontSize, t, r, true) / t : 1, f = (o - i) * u2 + i, c2 = (a - s) * u2 + s, p = (o - i) * l2 + i, d2 = (a - s) * l2 + s; return { x1: f, y1: c2, x2: p, y2: d2 }; } function Is({ id: e, width: t, height: n, repeatX: r, repeatY: i }, o, s, a, u2, l2) { var ie; let { shape: f, stops: c2, position: p, size: d2 } = K(o), [h2, m2] = s, w2 = h2 / 2, b = m2 / 2, T = Bf(p.x, p.y, h2, m2, u2.fontSize, u2); w2 = T.x, b = T.y; let y = Gr(t, c2, u2, false, l2), v2 = `satori_radial_${e}`, x2 = `satori_pattern_${e}`, I = `satori_mask_${e}`, A = zf(f, d2, u2.fontSize, { x: w2, y: b }, [h2, m2], u2), L = _("pattern", { id: x2, x: a[0] / t, y: a[1] / n, width: r ? h2 / t : "1", height: i ? m2 / n : "1", patternUnits: "objectBoundingBox" }, _("radialGradient", { id: v2 }, y.map((ae) => _("stop", { offset: ae.offset || 0, "stop-color": ae.color })).join("")) + _("mask", { id: I }, _("rect", { x: 0, y: 0, width: h2, height: m2, fill: "#fff" })) + _("rect", { x: 0, y: 0, width: h2, height: m2, fill: ((ie = y.at(-1)) == null ? void 0 : ie.color) || "transparent" }) + _(f, { cx: w2, cy: b, width: h2, height: m2, ...A, fill: `url(#${v2})`, mask: `url(#${I})` })); return [x2, L]; } function Bf(e, t, n, r, i, o) { let s = { x: n / 2, y: r / 2 }; return e.type === "keyword" ? Object.assign(s, Ps(e.value, n, r, "x")) : s.x = R2(`${e.value.value}${e.value.unit}`, i, n, o, true) || n / 2, t.type === "keyword" ? Object.assign(s, Ps(t.value, n, r, "y")) : s.y = R2(`${t.value.value}${t.value.unit}`, i, r, o, true) || r / 2, s; } function Ps(e, t, n, r) { switch (e) { case "center": return { [r]: r === "x" ? t / 2 : n / 2 }; case "left": return { x: 0 }; case "top": return { y: 0 }; case "right": return { x: t }; case "bottom": return { y: n }; } } function zf(e, t, n, r, i, o) { let [s, a] = i, { x: u2, y: l2 } = r, f = {}, c2 = 0, p = 0; if (Uf(t)) { if (t.some((d2) => d2.value.value.startsWith("-"))) throw new Error("disallow setting negative values to the size of the shape. Check https://w3c.github.io/csswg-drafts/css-images/#valdef-rg-size-length-0"); return e === "circle" ? { r: Number(R2(`${t[0].value.value}${t[0].value.unit}`, n, s, o, true)) } : { rx: Number(R2(`${t[0].value.value}${t[0].value.unit}`, n, s, o, true)), ry: Number(R2(`${t[1].value.value}${t[1].value.unit}`, n, a, o, true)) }; } switch (t[0].value) { case "farthest-corner": c2 = Math.max(Math.abs(s - u2), Math.abs(u2)), p = Math.max(Math.abs(a - l2), Math.abs(l2)); break; case "closest-corner": c2 = Math.min(Math.abs(s - u2), Math.abs(u2)), p = Math.min(Math.abs(a - l2), Math.abs(l2)); break; case "farthest-side": return e === "circle" ? f.r = Math.max(Math.abs(s - u2), Math.abs(u2), Math.abs(a - l2), Math.abs(l2)) : (f.rx = Math.max(Math.abs(s - u2), Math.abs(u2)), f.ry = Math.max(Math.abs(a - l2), Math.abs(l2))), f; case "closest-side": return e === "circle" ? f.r = Math.min(Math.abs(s - u2), Math.abs(u2), Math.abs(a - l2), Math.abs(l2)) : (f.rx = Math.min(Math.abs(s - u2), Math.abs(u2)), f.ry = Math.min(Math.abs(a - l2), Math.abs(l2))), f; } if (e === "circle") f.r = Math.sqrt(c2 * c2 + p * p); else { let d2 = p !== 0 ? c2 / p : 1; c2 === 0 ? (f.rx = 0, f.ry = 0) : (f.ry = Math.sqrt(c2 * c2 + p * p * d2 * d2) / d2, f.rx = f.ry * d2); } return f; } function Uf(e) { return !e.some((t) => t.type === "keyword"); } function Gf(e, t) { return typeof e == "string" && e.endsWith("%") ? t * parseFloat(e) / 100 : +e; } function $n(e, { x: t, y: n, defaultX: r, defaultY: i }) { return (e ? e.split(" ").map((o) => { try { let s = new Ne(o); return s.type === "length" || s.type === "number" ? s.value : s.value + s.unit; } catch { return null; } }).filter((o) => o !== null) : [r, i]).map((o, s) => Gf(o, [t, n][s])); } async function Nt({ id: e, width: t, height: n, left: r, top: i }, { image: o, size: s, position: a, repeat: u2 }, l2, f) { u2 = u2 || "repeat", f = f || "background"; let c2 = u2 === "repeat-x" || u2 === "repeat", p = u2 === "repeat-y" || u2 === "repeat", d2 = $n(s, { x: t, y: n, defaultX: t, defaultY: n }), h2 = $n(a, { x: t, y: n, defaultX: 0, defaultY: 0 }); if (o.startsWith("linear-gradient(") || o.startsWith("repeating-linear-gradient(")) return Os({ id: e, width: t, height: n, repeatX: c2, repeatY: p }, o, d2, h2, l2, f); if (o.startsWith("radial-gradient(")) return Is({ id: e, width: t, height: n, repeatX: c2, repeatY: p }, o, d2, h2, l2, f); if (o.startsWith("url(")) { let m2 = $n(s, { x: t, y: n, defaultX: 0, defaultY: 0 }), [w2, b, T] = await vt(o.slice(4, -1)), y = f === "mask" ? b || m2[0] : m2[0] || b, v2 = f === "mask" ? T || m2[1] : m2[1] || T; return [`satori_bi${e}`, _("pattern", { id: `satori_bi${e}`, patternContentUnits: "userSpaceOnUse", patternUnits: "userSpaceOnUse", x: h2[0] + r, y: h2[1] + i, width: c2 ? y : "100%", height: p ? v2 : "100%" }, _("image", { x: 0, y: 0, width: y, height: v2, preserveAspectRatio: "none", href: w2 }))]; } throw new Error(`Invalid background image: "${o}"`); } function jf([e, t]) { return Math.round(e * 1e3) === 0 && Math.round(t * 1e3) === 0 ? 0 : Math.round(e * t / Math.sqrt(e * e + t * t) * 1e3) / 1e3; } function jr(e, t, n) { return n < e + t && (n / 2 < e && n / 2 < t ? e = t = n / 2 : n / 2 < e ? e = n - t : n / 2 < t && (t = n - e)), [e, t]; } function Hr(e) { e[0] = e[1] = Math.min(e[0], e[1]); } function Vr(e, t, n, r, i) { if (typeof e == "string") { let o = e.split(" ").map((a) => a.trim()), s = !o[1] && !o[0].endsWith("%"); return o[1] = o[1] || o[0], [s, [Math.min(R2(o[0], r, t, i, true), t), Math.min(R2(o[1], r, n, i, true), n)]]; } return typeof e == "number" ? [true, [Math.min(e, t), Math.min(e, n)]] : [true, void 0]; } var Yr = (e) => e && e[0] !== 0 && e[1] !== 0; function As({ id: e, borderRadiusPath: t, borderType: n, left: r, top: i, width: o, height: s }, a) { let u2 = `satori_brc-${e}`; return [_("clipPath", { id: u2 }, _(n, { x: r, y: i, width: o, height: s, d: t || void 0 })), u2]; } function Ve({ left: e, top: t, width: n, height: r }, i, o) { let { borderTopLeftRadius: s, borderTopRightRadius: a, borderBottomLeftRadius: u2, borderBottomRightRadius: l2, fontSize: f } = i, c2, p, d2, h2; if ([c2, s] = Vr(s, n, r, f, i), [p, a] = Vr(a, n, r, f, i), [d2, u2] = Vr(u2, n, r, f, i), [h2, l2] = Vr(l2, n, r, f, i), !o && !Yr(s) && !Yr(a) && !Yr(u2) && !Yr(l2)) return ""; s ||= [0, 0], a ||= [0, 0], u2 ||= [0, 0], l2 ||= [0, 0], [s[0], a[0]] = jr(s[0], a[0], n), [u2[0], l2[0]] = jr(u2[0], l2[0], n), [s[1], u2[1]] = jr(s[1], u2[1], r), [a[1], l2[1]] = jr(a[1], l2[1], r), c2 && Hr(s), p && Hr(a), d2 && Hr(u2), h2 && Hr(l2); let m2 = []; m2[0] = [a, a], m2[1] = [l2, [-l2[0], l2[1]]], m2[2] = [u2, [-u2[0], -u2[1]]], m2[3] = [s, [s[0], -s[1]]]; let w2 = `h${n - s[0] - a[0]} a${m2[0][0]} 0 0 1 ${m2[0][1]}`, b = `v${r - a[1] - l2[1]} a${m2[1][0]} 0 0 1 ${m2[1][1]}`, T = `h${l2[0] + u2[0] - n} a${m2[2][0]} 0 0 1 ${m2[2][1]}`, y = `v${u2[1] + s[1] - r} a${m2[3][0]} 0 0 1 ${m2[3][1]}`; if (o) { let x2 = function(le) { let K2 = jf([s, a, l2, u2][le]); return le === 0 ? [[e + s[0] - K2, t + s[1] - K2], [e + s[0], t]] : le === 1 ? [[e + n - a[0] + K2, t + a[1] - K2], [e + n, t + a[1]]] : le === 2 ? [[e + n - l2[0] + K2, t + r - l2[1] + K2], [e + n - l2[0], t + r]] : [[e + u2[0] - K2, t + r - u2[1] + K2], [e, t + r - u2[1]]]; }, v2 = o.indexOf(false); if (!o.includes(true)) throw new Error("Invalid `partialSides`."); if (v2 === -1) v2 = 0; else for (; !o[v2]; ) v2 = (v2 + 1) % 4; let I = "", A = x2(v2), L = `M${A[0]} A${m2[(v2 + 3) % 4][0]} 0 0 1 ${A[1]}`, H = 0; for (; H < 4 && o[(v2 + H) % 4]; H++) I += L + " ", L = [w2, b, T, y][(v2 + H) % 4]; let ie = (v2 + H) % 4; I += L.split(" ")[0]; let ae = x2(ie); return I += ` A${m2[(ie + 3) % 4][0]} 0 0 1 ${ae[0]}`, I; } return `M${e + s[0]},${t} ${w2} ${b} ${T} ${y}`; } function Rs(e, t, n) { return n[e + "Width"] === n[t + "Width"] && n[e + "Style"] === n[t + "Style"] && n[e + "Color"] === n[t + "Color"]; } function Ls({ id: e, currentClipPathId: t, borderPath: n, borderType: r, left: i, top: o, width: s, height: a }, u2) { if (!(u2.borderTopWidth || u2.borderRightWidth || u2.borderBottomWidth || u2.borderLeftWidth)) return null; let f = `satori_bc-${e}`; return [_("clipPath", { id: f, "clip-path": t ? `url(#${t})` : void 0 }, _(r, { x: i, y: o, width: s, height: a, d: n || void 0 })), f]; } function Ft({ left: e, top: t, width: n, height: r, props: i, asContentMask: o, maskBorderOnly: s }, a) { let u2 = ["borderTop", "borderRight", "borderBottom", "borderLeft"]; if (!o && !u2.some((d2) => a[d2 + "Width"])) return ""; let l2 = "", f = 0; for (; f > 0 && Rs(u2[f], u2[(f + 3) % 4], a); ) f = (f + 3) % 4; let c2 = [false, false, false, false], p = []; for (let d2 = 0; d2 < 4; d2++) { let h2 = (f + d2) % 4, m2 = (f + d2 + 1) % 4, w2 = u2[h2], b = u2[m2]; if (c2[h2] = true, p = [a[w2 + "Width"], a[w2 + "Style"], a[w2 + "Color"], w2], !Rs(w2, b, a)) { let T = (p[0] || 0) + (o && !s && a[w2.replace("border", "padding")] || 0); T && (l2 += _("path", { width: n, height: r, ...i, fill: "none", stroke: o ? "#000" : p[2], "stroke-width": T * 2, "stroke-dasharray": !o && p[1] === "dashed" ? T * 2 + " " + T : void 0, d: Ve({ left: e, top: t, width: n, height: r }, a, c2) })), c2 = [false, false, false, false]; } } if (c2.some(Boolean)) { let d2 = (p[0] || 0) + (o && !s && a[p[3].replace("border", "padding")] || 0); d2 && (l2 += _("path", { width: n, height: r, ...i, fill: "none", stroke: o ? "#000" : p[2], "stroke-width": d2 * 2, "stroke-dasharray": !o && p[1] === "dashed" ? d2 * 2 + " " + d2 : void 0, d: Ve({ left: e, top: t, width: n, height: r }, a, c2) })); } return l2; } function qn({ id: e, left: t, top: n, width: r, height: i, matrix: o, borderOnly: s }, a) { let u2 = (a.borderLeftWidth || 0) + (s ? 0 : a.paddingLeft || 0), l2 = (a.borderTopWidth || 0) + (s ? 0 : a.paddingTop || 0), f = (a.borderRightWidth || 0) + (s ? 0 : a.paddingRight || 0), c2 = (a.borderBottomWidth || 0) + (s ? 0 : a.paddingBottom || 0), p = { x: t + u2, y: n + l2, width: r - u2 - f, height: i - l2 - c2 }; return _("mask", { id: e }, _("rect", { ...p, fill: "#fff", transform: a.overflow === "hidden" && a.transform && o ? o : void 0, mask: a._inheritedMaskId ? `url(#${a._inheritedMaskId})` : void 0 }) + Ft({ left: t, top: n, width: r, height: i, props: { transform: o || void 0 }, asContentMask: true, maskBorderOnly: s }, a)); } var Wt = { circle: /circle\((.+)\)/, ellipse: /ellipse\((.+)\)/, path: /path\((.+)\)/, polygon: /polygon\((.+)\)/, inset: /inset\((.+)\)/ }; function Ns({ width: e, height: t }, n, r) { function i(l2) { let f = l2.match(Wt.circle); if (!f) return null; let [, c2] = f, [p, d2 = ""] = c2.split("at").map((w2) => w2.trim()), { x: h2, y: m2 } = Ds(d2, e, t); return { type: "circle", r: R2(p, r.fontSize, Math.sqrt(Math.pow(e, 2) + Math.pow(t, 2)) / Math.sqrt(2), r, true), cx: R2(h2, r.fontSize, e, r, true), cy: R2(m2, r.fontSize, t, r, true) }; } function o(l2) { let f = l2.match(Wt.ellipse); if (!f) return null; let [, c2] = f, [p, d2 = ""] = c2.split("at").map((T) => T.trim()), [h2, m2] = p.split(" "), { x: w2, y: b } = Ds(d2, e, t); return { type: "ellipse", rx: R2(h2 || "50%", r.fontSize, e, r, true), ry: R2(m2 || "50%", r.fontSize, t, r, true), cx: R2(w2, r.fontSize, e, r, true), cy: R2(b, r.fontSize, t, r, true) }; } function s(l2) { let f = l2.match(Wt.path); if (!f) return null; let [c2, p] = Ms(f[1]); return { type: "path", d: p, "fill-rule": c2 }; } function a(l2) { let f = l2.match(Wt.polygon); if (!f) return null; let [c2, p] = Ms(f[1]); return { type: "polygon", "fill-rule": c2, points: p.split(",").map((d2) => d2.split(" ").map((h2, m2) => R2(h2, r.fontSize, m2 === 0 ? e : t, r, true)).join(" ")).join(",") }; } function u2(l2) { let f = l2.match(Wt.inset); if (!f) return null; let [c2, p] = (f[1].includes("round") ? f[1] : `${f[1].trim()} round 0`).split("round"), d2 = (0, import_css_to_react_native3.getStylesForProperty)("borderRadius", p, true), h2 = Object.values(d2).map((v2) => String(v2)).map((v2, x2) => R2(v2, r.fontSize, x2 === 0 || x2 === 2 ? t : e, r, true) || 0), m2 = Object.values((0, import_css_to_react_native3.getStylesForProperty)("margin", c2, true)).map((v2) => String(v2)).map((v2, x2) => R2(v2, r.fontSize, x2 === 0 || x2 === 2 ? t : e, r, true) || 0), w2 = m2[3], b = m2[0], T = e - (m2[1] + m2[3]), y = t - (m2[0] + m2[2]); return h2.some((v2) => v2 > 0) ? { type: "path", d: Ve({ left: w2, top: b, width: T, height: y }, { ...n, ...d2 }) } : { type: "rect", x: w2, y: b, width: T, height: y }; } return { parseCircle: i, parseEllipse: o, parsePath: s, parsePolygon: a, parseInset: u2 }; } function Ms(e) { let [, t = "nonzero", n] = e.replace(/('|")/g, "").match(/^(nonzero|evenodd)?,?(.+)/) || []; return [t, n]; } function Ds(e, t, n) { let r = e.split(" "), i = { x: r[0] || "50%", y: r[1] || "50%" }; return r.forEach((o) => { o === "top" ? i.y = 0 : o === "bottom" ? i.y = n : o === "left" ? i.x = 0 : o === "right" ? i.x = t : o === "center" && (i.x = t / 2, i.y = n / 2); }), i; } function Xr(e) { return `satori_cp-${e}`; } function Fs(e) { return `url(#${Xr(e)})`; } function Ws(e, t, n) { if (t.clipPath === "none") return ""; let r = Ns(e, t, n), i = t.clipPath, o = { type: "" }; for (let s of Object.keys(r)) if (o = r[s](i), o) break; if (o) { let { type: s, ...a } = o; return _("clipPath", { id: Xr(e.id), "clip-path": e.currentClipPath, transform: `translate(${e.left}, ${e.top})` }, _(s, a)); } return ""; } function Bn({ left: e, top: t, width: n, height: r, path: i, matrix: o, id: s, currentClipPath: a, src: u2 }, l2, f) { let c2 = "", p = l2.clipPath && l2.clipPath !== "none" ? Ws({ left: e, top: t, width: n, height: r, path: i, id: s, matrix: o, currentClipPath: a, src: u2 }, l2, f) : ""; if (l2.overflow !== "hidden" && !u2) c2 = ""; else { let h2 = p ? `satori_ocp-${s}` : Xr(s); c2 = _("clipPath", { id: h2, "clip-path": a }, _(i ? "path" : "rect", { x: e, y: t, width: n, height: r, d: i || void 0, transform: l2.overflow === "hidden" && l2.transform && o ? o : void 0 })); } let d2 = qn({ id: `satori_om-${s}`, left: e, top: t, width: n, height: r, matrix: o, borderOnly: !u2 }, l2); return p + c2 + d2; } var Hf = (e) => `satori_mi-${e}`; async function zn(e, t, n) { if (!t.maskImage) return ["", ""]; let { left: r, top: i, width: o, height: s, id: a } = e, u2 = t.maskImage, l2 = u2.length; if (!l2) return ["", ""]; let f = Hf(a), c2 = ""; for (let p = 0; p < l2; p++) { let d2 = u2[p], [h2, m2] = await Nt({ id: `${f}-${p}`, left: r, top: i, width: o, height: s }, d2, n, "mask"); c2 += m2 + _("rect", { x: r, y: i, width: o, height: s, fill: `url(#${h2})` }); } return c2 = _("mask", { id: f }, c2), [f, c2]; } async function $t({ id: e, left: t, top: n, width: r, height: i, isInheritingTransform: o, src: s, debug: a }, u2, l2) { if (u2.display === "none") return ""; let f = !!s, c2 = "rect", p = "", d2 = "", h2 = [], m2 = 1, w2 = ""; u2.backgroundColor && h2.push(u2.backgroundColor), u2.opacity !== void 0 && (m2 = +u2.opacity), u2.transform && (p = Dt({ left: t, top: n, width: r, height: i }, u2.transform, o, u2.transformOrigin)); let b = ""; if (u2.backgroundImage) { let te = []; for (let W = 0; W < u2.backgroundImage.length; W++) { let _e = u2.backgroundImage[W], Pe = await Nt({ id: e + "_" + W, width: r, height: i, left: t, top: n }, _e, l2); Pe && te.unshift(Pe); } for (let W of te) h2.push(`url(#${W[0]})`), d2 += W[1], W[2] && (b += W[2]); } let [T, y] = await zn({ id: e, left: t, top: n, width: r, height: i }, u2, l2); d2 += y; let v2 = T ? `url(#${T})` : u2._inheritedMaskId ? `url(#${u2._inheritedMaskId})` : void 0, x2 = Ve({ left: t, top: n, width: r, height: i }, u2); x2 && (c2 = "path"); let I = u2._inheritedClipPathId; a && (w2 = _("rect", { x: t, y: n, width: r, height: i, fill: "transparent", stroke: "#ff5757", "stroke-width": 1, transform: p || void 0, "clip-path": I ? `url(#${I})` : void 0 })); let { backgroundClip: A, filter: L } = u2, H = A === "text" ? `url(#satori_bct-${e})` : I ? `url(#${I})` : u2.clipPath ? Fs(e) : void 0, ie = Bn({ left: t, top: n, width: r, height: i, path: x2, id: e, matrix: p, currentClipPath: H, src: s }, u2, l2), ae = h2.map((te) => _(c2, { x: t, y: n, width: r, height: i, fill: te, d: x2 || void 0, transform: p || void 0, "clip-path": u2.transform ? void 0 : H, style: L ? `filter:${L}` : void 0, mask: u2.transform ? void 0 : v2 })).join(""), le = Ls({ id: e, left: t, top: n, width: r, height: i, currentClipPathId: I, borderPath: x2, borderType: c2 }, u2), K2; if (f) { let te = (u2.borderLeftWidth || 0) + (u2.paddingLeft || 0), W = (u2.borderTopWidth || 0) + (u2.paddingTop || 0), _e = (u2.borderRightWidth || 0) + (u2.paddingRight || 0), Pe = (u2.borderBottomWidth || 0) + (u2.paddingBottom || 0), he = u2.objectFit === "contain" ? "xMidYMid" : u2.objectFit === "cover" ? "xMidYMid slice" : "none"; u2.transform && (K2 = As({ id: e, borderRadiusPath: x2, borderType: c2, left: t, top: n, width: r, height: i }, u2)), ae += _("image", { x: t + te, y: n + W, width: r - te - _e, height: i - W - Pe, href: s, preserveAspectRatio: he, transform: p || void 0, style: L ? `filter:${L}` : void 0, "clip-path": u2.transform ? K2 ? `url(#${K2[1]})` : void 0 : `url(#satori_cp-${e})`, mask: u2.transform ? void 0 : T ? `url(#${T})` : `url(#satori_om-${e})` }); } if (le) { d2 += le[0]; let te = le[1]; ae += Ft({ left: t, top: n, width: r, height: i, props: { transform: p || void 0, "clip-path": `url(#${te})` } }, u2); } let oe = ks({ width: r, height: i, id: e, opacity: m2, shape: _(c2, { x: t, y: n, width: r, height: i, fill: "#fff", stroke: "#fff", "stroke-width": 0, d: x2 || void 0, transform: p || void 0, "clip-path": H, mask: v2 }) }, u2); return (d2 ? _("defs", {}, d2) : "") + (oe ? oe[0] : "") + (K2 ? K2[0] : "") + ie + (m2 !== 1 ? `` : "") + (u2.transform && (H || v2) ? `` : "") + (b || ae) + (u2.transform && (H || v2) ? "" : "") + (m2 !== 1 ? "" : "") + (oe ? oe[1] : "") + w2; } var qs = String.raw; var $s = qs`\p{Emoji}(?:\p{EMod}|[\u{E0020}-\u{E007E}]+\u{E007F}|\uFE0F?\u20E3?)`; var Bs = () => new RegExp(qs`\p{RI}{2}|(?![#*\d](?!\uFE0F?\u20E3))${$s}(?:\u200D${$s})*`, "gu"); var Vf = new RegExp(Bs(), "u"); var Un = { emoji: Vf, symbol: /\p{Symbol}/u, math: /\p{Math}/u }; var Gn = { "ja-JP": /\p{scx=Hira}|\p{scx=Kana}|\p{scx=Han}|[\u3000]|[\uFF00-\uFFEF]/u, "ko-KR": /\p{scx=Hangul}/u, "zh-CN": /\p{scx=Han}/u, "zh-TW": /\p{scx=Han}/u, "zh-HK": /\p{scx=Han}/u, "th-TH": /\p{scx=Thai}/u, "bn-IN": /\p{scx=Bengali}/u, "ar-AR": /\p{scx=Arabic}/u, "ta-IN": /\p{scx=Tamil}/u, "ml-IN": /\p{scx=Malayalam}/u, "he-IL": /\p{scx=Hebrew}/u, "te-IN": /\p{scx=Telugu}/u, devanagari: /\p{scx=Devanagari}/u, kannada: /\p{scx=Kannada}/u }; var Qr = Object.keys({ ...Gn, ...Un }); function zs(e) { return Qr.includes(e); } function Us(e, t) { for (let r of Object.keys(Un)) if (Un[r].test(e)) return [r]; let n = Object.keys(Gn).filter((r) => Gn[r].test(e)); if (n.length === 0) return ["unknown"]; if (t) { let r = n.findIndex((i) => i === t); r !== -1 && (n.splice(r, 1), n.unshift(t)); } return n; } function Gs(e) { if (e) return Qr.find((t) => t.toLowerCase().startsWith(e.toLowerCase())); } async function* qt(e, t) { var kr; let n = await De(), { id: r, inheritedStyle: i, parent: o, font: s, debug: a, locale: u2, embedFont: l2 = true, graphemeImages: f, canLoadAdditionalAssets: c2, getTwStyles: p } = t; if (e === null || typeof e > "u") return yield, yield, ""; if (!gt(e) || typeof e.type == "function") { let C; if (!gt(e)) C = Wn(String(e), t), yield (await C.next()).value; else { if (Jo(e.type)) throw new Error("Class component is not supported."); C = qt(await e.type(e.props), t), yield (await C.next()).value; } await C.next(); let me = yield; return (await C.next(me)).value; } let { type: d2, props: h2 } = e; if (h2 && Zo(h2)) throw new Error("dangerouslySetInnerHTML property is not supported. See documentation for more information https://github.com/vercel/satori#jsx."); let { style: m2, children: w2, tw: b, lang: T = u2 } = h2 || {}, y = Gs(T); if (b) { let C = p(b, m2); m2 = Object.assign(C, m2); } let v2 = n.Node.create(); o.insertChild(v2, o.getChildCount()); let [x2, I] = await Cn(v2, d2, i, m2, h2), A = x2.transform === i.transform; if (A || (x2.transform.__parent = i.transform), (x2.overflow === "hidden" || x2.clipPath && x2.clipPath !== "none") && (I._inheritedClipPathId = `satori_cp-${r}`, I._inheritedMaskId = `satori_om-${r}`), x2.maskImage && (I._inheritedMaskId = `satori_mi-${r}`), x2.backgroundClip === "text") { let C = { value: "" }; I._inheritedBackgroundClipTextPath = C, x2._inheritedBackgroundClipTextPath = C; } let L = es(w2), H = [], ie = 0, ae = []; for (let C of L) { let me = qt(C, { id: r + "-" + ie++, parentStyle: x2, inheritedStyle: I, isInheritingTransform: true, parent: v2, font: s, embedFont: l2, debug: a, graphemeImages: f, canLoadAdditionalAssets: c2, locale: y, getTwStyles: p, onNodeDetected: t.onNodeDetected }); c2 ? ae.push(...(await me.next()).value || []) : await me.next(), H.push(me); } yield ae; for (let C of H) await C.next(); let [le, K2] = yield, { left: oe, top: te, width: W, height: _e } = v2.getComputedLayout(); oe += le, te += K2; let Pe = "", he = "", _r = "", { children: Je, ...Et } = h2; if ((kr = t.onNodeDetected) == null || kr.call(t, { left: oe, top: te, width: W, height: _e, type: d2, props: Et, key: e.key, textContent: gt(Je) ? void 0 : Je }), d2 === "img") { let C = x2.__src; he = await $t({ id: r, left: oe, top: te, width: W, height: _e, src: C, isInheritingTransform: A, debug: a }, x2, I); } else if (d2 === "svg") { let C = x2.color, me = await ps(e, C); he = await $t({ id: r, left: oe, top: te, width: W, height: _e, src: me, isInheritingTransform: A, debug: a }, x2, I); } else { let C = m2 == null ? void 0 : m2.display; if (d2 === "div" && w2 && typeof w2 != "string" && C !== "flex" && C !== "none") throw new Error('Expected
to have explicit "display: flex" or "display: none" if it has more than one child node.'); he = await $t({ id: r, left: oe, top: te, width: W, height: _e, isInheritingTransform: A, debug: a }, x2, I); } for (let C of H) Pe += (await C.next([oe, te])).value; return x2._inheritedBackgroundClipTextPath && (_r += _("clipPath", { id: `satori_bct-${r}`, "clip-path": x2._inheritedClipPathId ? `url(#${x2._inheritedClipPathId})` : void 0 }, x2._inheritedBackgroundClipTextPath.value)), _r + he + Pe; } var js = "unknown"; function Yf(e, t, [n, r], [i, o]) { if (n !== i) return n ? !i || n === e ? -1 : i === e ? 1 : e === 400 && n === 500 || e === 500 && n === 400 ? -1 : e === 400 && i === 500 || e === 500 && i === 400 ? 1 : e < 400 ? n < e && i < e ? i - n : n < e ? -1 : i < e ? 1 : n - i : e < n && e < i ? n - i : e < n ? -1 : e < i ? 1 : i - n : 1; if (r !== o) { if (r === t) return -1; if (o === t) return 1; } return -1; } var Bt = class { constructor(t) { __publicField(this, "defaultFont"); __publicField(this, "fonts", /* @__PURE__ */ new Map()); this.addFonts(t); } get({ name: t, weight: n, style: r }) { if (!this.fonts.has(t)) return null; n === "normal" && (n = 400), n === "bold" && (n = 700), typeof n == "string" && (n = Number.parseInt(n, 10)); let i = [...this.fonts.get(t)], o = i[0]; for (let s = 1; s < i.length; s++) { let [, a, u2] = o, [, l2, f] = i[s]; Yf(n, r, [a, u2], [l2, f]) > 0 && (o = i[s]); } return o[0]; } addFonts(t) { for (let n of t) { let { name: r, data: i, lang: o } = n; if (o && !zs(o)) throw new Error(`Invalid value for props \`lang\`: "${o}". The value must be one of the following: ${Qr.join(", ")}.`); let s = o ?? js, a = opentype_module_default.parse("buffer" in i ? i.buffer.slice(i.byteOffset, i.byteOffset + i.byteLength) : i, { lowMemory: true }), u2 = a.charToGlyphIndex; a.charToGlyphIndex = (f) => { let c2 = u2.call(a, f); return c2 === 0 && a._trackBrokenChars && a._trackBrokenChars.push(f), c2; }, this.defaultFont || (this.defaultFont = a); let l2 = `${r.toLowerCase()}_${s}`; this.fonts.has(l2) || this.fonts.set(l2, []), this.fonts.get(l2).push([a, n.weight, n.style]); } } getEngine(t = 16, n = "normal", { fontFamily: r = "sans-serif", fontWeight: i = 400, fontStyle: o = "normal" }, s) { if (!this.fonts.size) throw new Error("No fonts are loaded. At least one font is required to calculate the layout."); r = (Array.isArray(r) ? r : [r]).map((y) => y.toLowerCase()); let a = []; r.forEach((y) => { let v2 = this.get({ name: y, weight: i, style: o }); if (v2) { a.push(v2); return; } let x2 = this.get({ name: y + "_unknown", weight: i, style: o }); if (x2) { a.push(x2); return; } }); let u2 = Array.from(this.fonts.keys()), l2 = [], f = [], c2 = []; for (let y of u2) if (!r.includes(y)) if (s) { let v2 = Xf(y); v2 ? v2 === s ? l2.push(this.get({ name: y, weight: i, style: o })) : f.push(this.get({ name: y, weight: i, style: o })) : c2.push(this.get({ name: y, weight: i, style: o })); } else c2.push(this.get({ name: y, weight: i, style: o })); let p = /* @__PURE__ */ new Map(), d2 = (y, v2 = true) => { let x2 = [...a, ...c2, ...l2, ...v2 ? f : []]; if (typeof y > "u") return v2 ? x2[x2.length - 1] : void 0; let I = y.charCodeAt(0); if (p.has(I)) return p.get(I); let A = x2.find((L, H) => !!L.charToGlyphIndex(y) || v2 && H === x2.length - 1); return A && p.set(I, A), A; }, h2 = (y, v2 = false) => { var I, A; return ((v2 ? (A = (I = y.tables) == null ? void 0 : I.os2) == null ? void 0 : A.sTypoAscender : 0) || y.ascender) / y.unitsPerEm * t; }, m2 = (y, v2 = false) => { var I, A; return ((v2 ? (A = (I = y.tables) == null ? void 0 : I.os2) == null ? void 0 : A.sTypoDescender : 0) || y.descender) / y.unitsPerEm * t; }, w2 = (y, v2 = false) => { var x2, I; if (typeof n == "string" && n === "normal") { let A = (v2 ? (I = (x2 = y.tables) == null ? void 0 : x2.os2) == null ? void 0 : I.sTypoLineGap : 0) || 0; return h2(y, v2) - m2(y, v2) + A / y.unitsPerEm * t; } else if (typeof n == "number") return t * n; }, b = (y) => d2(y, false); return { has: (y) => { if (y === ` `) return true; let v2 = b(y); return v2 ? (v2._trackBrokenChars = [], v2.stringToGlyphs(y), v2._trackBrokenChars.length ? (v2._trackBrokenChars = void 0, false) : true) : false; }, baseline: (y, v2 = typeof y > "u" ? a[0] : d2(y)) => { let x2 = h2(v2), I = m2(v2), A = x2 - I; return x2 + (w2(v2) - A) / 2; }, height: (y, v2 = typeof y > "u" ? a[0] : d2(y)) => w2(v2), measure: (y, v2) => this.measure(d2, y, v2), getSVG: (y, v2) => this.getSVG(d2, y, v2) }; } patchFontFallbackResolver(t, n) { let r = []; t._trackBrokenChars = r; let i = t.stringToGlyphs; return t.stringToGlyphs = (o, ...s) => { let a = i.call(t, o, ...s); for (let u2 = 0; u2 < a.length; u2++) if (a[u2].unicode === void 0) { let l2 = r.shift(), f = n(l2); if (f !== t) { let c2 = f.charToGlyph(l2), p = t.unitsPerEm / f.unitsPerEm, d2 = new opentype_module_default.Path(); d2.unitsPerEm = t.unitsPerEm, d2.commands = c2.path.commands.map((m2) => { let w2 = { ...m2 }; for (let b in w2) typeof w2[b] == "number" && (w2[b] *= p); return w2; }); let h2 = new opentype_module_default.Glyph({ ...c2, advanceWidth: c2.advanceWidth * p, xMin: c2.xMin * p, xMax: c2.xMax * p, yMin: c2.yMin * p, yMax: c2.yMax * p, path: d2 }); a[u2] = h2; } } return a; }, () => { t.stringToGlyphs = i, t._trackBrokenChars = void 0; }; } measure(t, n, { fontSize: r, letterSpacing: i = 0 }) { let o = t(n), s = this.patchFontFallbackResolver(o, t); try { return o.getAdvanceWidth(n, r, { letterSpacing: i / r }); } finally { s(); } } getSVG(t, n, { fontSize: r, top: i, left: o, letterSpacing: s = 0 }) { let a = t(n), u2 = this.patchFontFallbackResolver(a, t); try { return r === 0 ? "" : a.getPath(n.replace(/\n/g, ""), o, i, r, { letterSpacing: s / r }).toPathData(1); } finally { u2(); } } }; function Xf(e) { let t = e.split("_"), n = t[t.length - 1]; return n === js ? void 0 : n; } function Hn({ width: e, height: t, content: n }) { return _("svg", { width: e, height: t, viewBox: `0 0 ${e} ${t}`, xmlns: "http://www.w3.org/2000/svg" }, n); } var kl = Nl(tl()); var D0 = ["ios", "android", "windows", "macos", "web"]; function nl(e) { return D0.includes(e); } var N0 = ["portrait", "landscape"]; function il(e) { return N0.includes(e); } var rl; (function(e) { e.fontSize = "fontSize", e.lineHeight = "lineHeight"; })(rl || (rl = {})); var F; (function(e) { e.rem = "rem", e.em = "em", e.px = "px", e.percent = "%", e.vw = "vw", e.vh = "vh", e.none = ""; })(F || (F = {})); function yo(e) { return typeof e == "string"; } function xo(e) { return typeof e == "object"; } var wo; function g2(e) { return { kind: "complete", style: e }; } function re(e, t = {}) { let { fractions: n } = t; if (n && e.includes("/")) { let [o = "", s = ""] = e.split("/", 2), a = re(o), u2 = re(s); return !a || !u2 ? null : [a[0] / u2[0], u2[1]]; } let r = parseFloat(e); if (Number.isNaN(r)) return null; let i = e.match(/(([a-z]{2,}|%))$/); if (!i) return [r, F.none]; switch (i == null ? void 0 : i[1]) { case "rem": return [r, F.rem]; case "px": return [r, F.px]; case "em": return [r, F.em]; case "%": return [r, F.percent]; case "vw": return [r, F.vw]; case "vh": return [r, F.vh]; default: return null; } } function $e(e, t, n = {}) { let r = Ce(t, n); return r === null ? null : g2({ [e]: r }); } function mn(e, t, n) { let r = Ce(t); return r !== null && (n[e] = r), n; } function sl(e, t) { let n = Ce(t); return n === null ? null : { [e]: n }; } function Ce(e, t = {}) { if (e === void 0) return null; let n = re(String(e), t); return n ? Ke(...n, t) : null; } function Ke(e, t, n = {}) { let { isNegative: r, device: i } = n; switch (t) { case F.rem: return e * 16 * (r ? -1 : 1); case F.px: return e * (r ? -1 : 1); case F.percent: return `${r ? "-" : ""}${e}%`; case F.none: return e * (r ? -1 : 1); case F.vw: return i != null && i.windowDimensions ? i.windowDimensions.width * (e / 100) : (pe("`vw` CSS unit requires configuration with `useDeviceContext()`"), null); case F.vh: return i != null && i.windowDimensions ? i.windowDimensions.height * (e / 100) : (pe("`vh` CSS unit requires configuration with `useDeviceContext()`"), null); default: return null; } } function So(e) { let t = re(e); if (!t) return null; let [n, r] = t; switch (r) { case F.rem: return n * 16; case F.px: return n; default: return null; } } var F0 = { t: "Top", tr: "TopRight", tl: "TopLeft", b: "Bottom", br: "BottomRight", bl: "BottomLeft", l: "Left", r: "Right", x: "Horizontal", y: "Vertical" }; function _o(e) { return F0[e ?? ""] || "All"; } function ko(e) { let t = "All"; return [e.replace(/^-(t|b|r|l|tr|tl|br|bl)(-|$)/, (r, i) => (t = _o(i), "")), t]; } function at(e, t = {}) { if (e.includes("/")) { let n = ol(e, { ...t, fractions: true }); if (n) return n; } return e[0] === "[" && (e = e.slice(1, -1)), ol(e, t); } function Se(e, t, n = {}) { let r = at(t, n); return r === null ? null : g2({ [e]: r }); } function ol(e, t = {}) { if (e === "px") return 1; let n = re(e, t); if (!n) return null; let [r, i] = n; return t.fractions && (i = F.percent, r *= 100), i === F.none && (r = r / 4, i = F.rem), Ke(r, i, t); } function W0(...e) { console.warn(...e); } function $0(...e) { } var pe = typeof process > "u" || ((wo = process == null ? void 0 : process.env) === null || wo === void 0 ? void 0 : wo.JEST_WORKER_ID) === void 0 ? W0 : $0; var q0 = [["aspect-square", g2({ aspectRatio: 1 })], ["aspect-video", g2({ aspectRatio: 16 / 9 })], ["items-center", g2({ alignItems: "center" })], ["items-start", g2({ alignItems: "flex-start" })], ["items-end", g2({ alignItems: "flex-end" })], ["items-baseline", g2({ alignItems: "baseline" })], ["items-stretch", g2({ alignItems: "stretch" })], ["justify-start", g2({ justifyContent: "flex-start" })], ["justify-end", g2({ justifyContent: "flex-end" })], ["justify-center", g2({ justifyContent: "center" })], ["justify-between", g2({ justifyContent: "space-between" })], ["justify-around", g2({ justifyContent: "space-around" })], ["justify-evenly", g2({ justifyContent: "space-evenly" })], ["content-start", g2({ alignContent: "flex-start" })], ["content-end", g2({ alignContent: "flex-end" })], ["content-between", g2({ alignContent: "space-between" })], ["content-around", g2({ alignContent: "space-around" })], ["content-stretch", g2({ alignContent: "stretch" })], ["content-center", g2({ alignContent: "center" })], ["self-auto", g2({ alignSelf: "auto" })], ["self-start", g2({ alignSelf: "flex-start" })], ["self-end", g2({ alignSelf: "flex-end" })], ["self-center", g2({ alignSelf: "center" })], ["self-stretch", g2({ alignSelf: "stretch" })], ["self-baseline", g2({ alignSelf: "baseline" })], ["direction-inherit", g2({ direction: "inherit" })], ["direction-ltr", g2({ direction: "ltr" })], ["direction-rtl", g2({ direction: "rtl" })], ["hidden", g2({ display: "none" })], ["flex", g2({ display: "flex" })], ["flex-row", g2({ flexDirection: "row" })], ["flex-row-reverse", g2({ flexDirection: "row-reverse" })], ["flex-col", g2({ flexDirection: "column" })], ["flex-col-reverse", g2({ flexDirection: "column-reverse" })], ["flex-wrap", g2({ flexWrap: "wrap" })], ["flex-wrap-reverse", g2({ flexWrap: "wrap-reverse" })], ["flex-nowrap", g2({ flexWrap: "nowrap" })], ["flex-auto", g2({ flexGrow: 1, flexShrink: 1, flexBasis: "auto" })], ["flex-initial", g2({ flexGrow: 0, flexShrink: 1, flexBasis: "auto" })], ["flex-none", g2({ flexGrow: 0, flexShrink: 0, flexBasis: "auto" })], ["overflow-hidden", g2({ overflow: "hidden" })], ["overflow-visible", g2({ overflow: "visible" })], ["overflow-scroll", g2({ overflow: "scroll" })], ["absolute", g2({ position: "absolute" })], ["relative", g2({ position: "relative" })], ["italic", g2({ fontStyle: "italic" })], ["not-italic", g2({ fontStyle: "normal" })], ["oldstyle-nums", vr("oldstyle-nums")], ["small-caps", vr("small-caps")], ["lining-nums", vr("lining-nums")], ["tabular-nums", vr("tabular-nums")], ["proportional-nums", vr("proportional-nums")], ["font-thin", g2({ fontWeight: "100" })], ["font-100", g2({ fontWeight: "100" })], ["font-extralight", g2({ fontWeight: "200" })], ["font-200", g2({ fontWeight: "200" })], ["font-light", g2({ fontWeight: "300" })], ["font-300", g2({ fontWeight: "300" })], ["font-normal", g2({ fontWeight: "normal" })], ["font-400", g2({ fontWeight: "400" })], ["font-medium", g2({ fontWeight: "500" })], ["font-500", g2({ fontWeight: "500" })], ["font-semibold", g2({ fontWeight: "600" })], ["font-600", g2({ fontWeight: "600" })], ["font-bold", g2({ fontWeight: "bold" })], ["font-700", g2({ fontWeight: "700" })], ["font-extrabold", g2({ fontWeight: "800" })], ["font-800", g2({ fontWeight: "800" })], ["font-black", g2({ fontWeight: "900" })], ["font-900", g2({ fontWeight: "900" })], ["include-font-padding", g2({ includeFontPadding: true })], ["remove-font-padding", g2({ includeFontPadding: false })], ["max-w-none", g2({ maxWidth: "99999%" })], ["text-left", g2({ textAlign: "left" })], ["text-center", g2({ textAlign: "center" })], ["text-right", g2({ textAlign: "right" })], ["text-justify", g2({ textAlign: "justify" })], ["text-auto", g2({ textAlign: "auto" })], ["underline", g2({ textDecorationLine: "underline" })], ["line-through", g2({ textDecorationLine: "line-through" })], ["no-underline", g2({ textDecorationLine: "none" })], ["uppercase", g2({ textTransform: "uppercase" })], ["lowercase", g2({ textTransform: "lowercase" })], ["capitalize", g2({ textTransform: "capitalize" })], ["normal-case", g2({ textTransform: "none" })], ["w-auto", g2({ width: "auto" })], ["h-auto", g2({ height: "auto" })], ["shadow-sm", g2({ shadowOffset: { width: 1, height: 1 }, shadowColor: "#000", shadowRadius: 1, shadowOpacity: 0.025, elevation: 1 })], ["shadow", g2({ shadowOffset: { width: 1, height: 1 }, shadowColor: "#000", shadowRadius: 1, shadowOpacity: 0.075, elevation: 2 })], ["shadow-md", g2({ shadowOffset: { width: 1, height: 1 }, shadowColor: "#000", shadowRadius: 3, shadowOpacity: 0.125, elevation: 3 })], ["shadow-lg", g2({ shadowOffset: { width: 1, height: 1 }, shadowColor: "#000", shadowOpacity: 0.15, shadowRadius: 8, elevation: 8 })], ["shadow-xl", g2({ shadowOffset: { width: 1, height: 1 }, shadowColor: "#000", shadowOpacity: 0.19, shadowRadius: 20, elevation: 12 })], ["shadow-2xl", g2({ shadowOffset: { width: 1, height: 1 }, shadowColor: "#000", shadowOpacity: 0.25, shadowRadius: 30, elevation: 16 })], ["shadow-none", g2({ shadowOffset: { width: 0, height: 0 }, shadowColor: "#000", shadowRadius: 0, shadowOpacity: 0, elevation: 0 })]]; var To = q0; function vr(e) { return { kind: "dependent", complete(t) { (!t.fontVariant || !Array.isArray(t.fontVariant)) && (t.fontVariant = []), t.fontVariant.push(e); } }; } var yr = class { constructor(t) { this.ir = new Map(To), this.styles = /* @__PURE__ */ new Map(), this.prefixes = /* @__PURE__ */ new Map(), this.ir = new Map([...To, ...t ?? []]); } getStyle(t) { return this.styles.get(t); } setStyle(t, n) { this.styles.set(t, n); } getIr(t) { return this.ir.get(t); } setIr(t, n) { this.ir.set(t, n); } getPrefixMatch(t) { return this.prefixes.get(t); } setPrefixMatch(t, n) { this.prefixes.set(t, n); } }; function Eo(e, t, n = {}) { let r = t == null ? void 0 : t[e]; if (!r) return Se("fontSize", e, n); if (typeof r == "string") return $e("fontSize", r); let i = {}, [o, s] = r, a = sl("fontSize", o); if (a && (i = a), typeof s == "string") return g2(mn("lineHeight", al(s, i), i)); let { lineHeight: u2, letterSpacing: l2 } = s; return u2 && mn("lineHeight", al(u2, i), i), l2 && mn("letterSpacing", l2, i), g2(i); } function al(e, t) { let n = re(e); if (n) { let [r, i] = n; if ((i === F.none || i === F.em) && typeof t.fontSize == "number") return t.fontSize * r; } return e; } function Oo(e, t) { var n; let r = (n = t == null ? void 0 : t[e]) !== null && n !== void 0 ? n : e.startsWith("[") ? e.slice(1, -1) : e, i = re(r); if (!i) return null; let [o, s] = i; if (s === F.none) return { kind: "dependent", complete(u2) { if (typeof u2.fontSize != "number") return "relative line-height utilities require that font-size be set"; u2.lineHeight = u2.fontSize * o; } }; let a = Ke(o, s); return a !== null ? g2({ lineHeight: a }) : null; } function Po(e, t, n, r, i) { let o = ""; if (r[0] === "[") o = r.slice(1, -1); else { let l2 = i == null ? void 0 : i[r]; if (l2) o = l2; else { let f = at(r); return f && typeof f == "number" ? ul(f, F.px, t, e) : null; } } if (o === "auto") return ll(t, e, "auto"); let s = re(o); if (!s) return null; let [a, u2] = s; return n && (a = -a), ul(a, u2, t, e); } function ul(e, t, n, r) { let i = Ke(e, t); return i === null ? null : ll(n, r, i); } function ll(e, t, n) { switch (e) { case "All": return { kind: "complete", style: { [`${t}Top`]: n, [`${t}Right`]: n, [`${t}Bottom`]: n, [`${t}Left`]: n } }; case "Bottom": case "Top": case "Left": case "Right": return { kind: "complete", style: { [`${t}${e}`]: n } }; case "Vertical": return { kind: "complete", style: { [`${t}Top`]: n, [`${t}Bottom`]: n } }; case "Horizontal": return { kind: "complete", style: { [`${t}Left`]: n, [`${t}Right`]: n } }; default: return null; } } function Io(e) { if (!e) return {}; let t = Object.entries(e).reduce((i, [o, s]) => { let a = [0, 1 / 0, 0], u2 = typeof s == "string" ? { min: s } : s, l2 = u2.min ? So(u2.min) : 0; l2 === null ? pe(`invalid screen config value: ${o}->min: ${u2.min}`) : a[0] = l2; let f = u2.max ? So(u2.max) : 1 / 0; return f === null ? pe(`invalid screen config value: ${o}->max: ${u2.max}`) : a[1] = f, i[o] = a, i; }, {}), n = Object.values(t); n.sort((i, o) => { let [s, a] = i, [u2, l2] = o; return a === 1 / 0 || l2 === 1 / 0 ? s - u2 : a - l2; }); let r = 0; return n.forEach((i) => i[2] = r++), t; } function Ao(e, t) { let n = t == null ? void 0 : t[e]; if (!n) return null; if (typeof n == "string") return g2({ fontFamily: n }); let r = n[0]; return r ? g2({ fontFamily: r }) : null; } function ut(e, t, n) { if (!n) return null; let r; t.includes("/") && ([t = "", r] = t.split("/", 2)); let i = ""; if (t.startsWith("[#") || t.startsWith("[rgb") ? i = t.slice(1, -1) : i = dl(t, n), !i) return null; if (r) { let o = Number(r); if (!Number.isNaN(o)) return i = fl2(i, o / 100), g2({ [gn[e].color]: i }); } return { kind: "dependent", complete(o) { let s = gn[e].opacity, a = o[s]; typeof a == "number" && (i = fl2(i, a)), o[gn[e].color] = i; } }; } function xr(e, t) { let n = parseInt(t, 10); if (Number.isNaN(n)) return null; let r = n / 100; return { kind: "complete", style: { [gn[e].opacity]: r } }; } function fl2(e, t) { return e.startsWith("#") ? e = B0(e) : e.startsWith("rgb(") && (e = e.replace(/^rgb\(/, "rgba(").replace(/\)$/, ", 1)")), e.replace(/, ?\d*\.?(\d+)\)$/, `, ${t})`); } function cl(e) { for (let t in e) t.startsWith("__opacity_") && delete e[t]; } var gn = { bg: { opacity: "__opacity_bg", color: "backgroundColor" }, text: { opacity: "__opacity_text", color: "color" }, border: { opacity: "__opacity_border", color: "borderColor" }, borderTop: { opacity: "__opacity_border", color: "borderTopColor" }, borderBottom: { opacity: "__opacity_border", color: "borderBottomColor" }, borderLeft: { opacity: "__opacity_border", color: "borderLeftColor" }, borderRight: { opacity: "__opacity_border", color: "borderRightColor" }, shadow: { opacity: "__opacity_shadow", color: "shadowColor" }, tint: { opacity: "__opacity_tint", color: "tintColor" } }; function B0(e) { let t = e; e = e.replace(z0, (s, a, u2, l2) => a + a + u2 + u2 + l2 + l2); let n = U0.exec(e); if (!n) return pe(`invalid config hex color value: ${t}`), "rgba(0, 0, 0, 1)"; let r = parseInt(n[1], 16), i = parseInt(n[2], 16), o = parseInt(n[3], 16); return `rgba(${r}, ${i}, ${o}, 1)`; } function dl(e, t) { let n = t[e]; if (yo(n)) return n; if (xo(n) && yo(n.DEFAULT)) return n.DEFAULT; let [r = "", ...i] = e.split("-"); for (; r !== e; ) { let o = t[r]; if (xo(o)) return dl(i.join("-"), o); if (i.length === 0) return ""; r = `${r}-${i.shift()}`; } return ""; } var z0 = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; var U0 = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i; function hl(e, t) { let [n, r] = ko(e); if (n.match(/^(-?(\d)+)?$/)) return G0(n, r, t == null ? void 0 : t.borderWidth); if (n = n.replace(/^-/, ""), ["dashed", "solid", "dotted"].includes(n)) return g2({ borderStyle: n }); let o = "border"; switch (r) { case "Bottom": o = "borderBottom"; break; case "Top": o = "borderTop"; break; case "Left": o = "borderLeft"; break; case "Right": o = "borderRight"; break; } let s = ut(o, n, t == null ? void 0 : t.borderColor); if (s) return s; let a = `border${r === "All" ? "" : r}Width`; n = n.replace(/^-/, ""); let u2 = n.slice(1, -1), l2 = Se(a, u2); return typeof (l2 == null ? void 0 : l2.style[a]) != "number" ? null : l2; } function G0(e, t, n) { if (!n) return null; e = e.replace(/^-/, ""); let i = n[e === "" ? "DEFAULT" : e]; if (i === void 0) return null; let o = `border${t === "All" ? "" : t}Width`; return $e(o, i); } function ml(e, t) { if (!t) return null; let [n, r] = ko(e); n = n.replace(/^-/, ""), n === "" && (n = "DEFAULT"); let i = `border${r === "All" ? "" : r}Radius`, o = t[n]; if (o) return pl($e(i, o)); let s = Se(i, n); return typeof (s == null ? void 0 : s.style[i]) != "number" ? null : pl(s); } function pl(e) { if ((e == null ? void 0 : e.kind) !== "complete") return e; let t = e.style.borderTopRadius; t !== void 0 && (e.style.borderTopLeftRadius = t, e.style.borderTopRightRadius = t, delete e.style.borderTopRadius); let n = e.style.borderBottomRadius; n !== void 0 && (e.style.borderBottomLeftRadius = n, e.style.borderBottomRightRadius = n, delete e.style.borderBottomRadius); let r = e.style.borderLeftRadius; r !== void 0 && (e.style.borderBottomLeftRadius = r, e.style.borderTopLeftRadius = r, delete e.style.borderLeftRadius); let i = e.style.borderRightRadius; return i !== void 0 && (e.style.borderBottomRightRadius = i, e.style.borderTopRightRadius = i, delete e.style.borderRightRadius), e; } function kt(e, t, n, r) { let i = null; e === "inset" && (t = t.replace(/^(x|y)-/, (a, u2) => (i = u2 === "x" ? "x" : "y", ""))); let o = r == null ? void 0 : r[t]; if (o) { let a = Ce(o, { isNegative: n }); if (a !== null) return gl(e, i, a); } let s = at(t, { isNegative: n }); return s !== null ? gl(e, i, s) : null; } function gl(e, t, n) { if (e !== "inset") return g2({ [e]: n }); switch (t) { case null: return g2({ top: n, left: n, right: n, bottom: n }); case "y": return g2({ top: n, bottom: n }); case "x": return g2({ left: n, right: n }); } } function wr(e, t, n) { var r; t = t.replace(/^-/, ""); let i = t === "" ? "DEFAULT" : t, o = Number((r = n == null ? void 0 : n[i]) !== null && r !== void 0 ? r : t); return Number.isNaN(o) ? null : g2({ [`flex${e}`]: o }); } function bl(e, t) { var n, r; if (e = (t == null ? void 0 : t[e]) || e, ["min-content", "revert", "unset"].includes(e)) return null; if (e.match(/^\d+(\.\d+)?$/)) return g2({ flexGrow: Number(e), flexBasis: "0%" }); let i = e.match(/^(\d+)\s+(\d+)$/); if (i) return g2({ flexGrow: Number(i[1]), flexShrink: Number(i[2]) }); if (i = e.match(/^(\d+)\s+([^ ]+)$/), i) { let o = Ce((n = i[2]) !== null && n !== void 0 ? n : ""); return o ? g2({ flexGrow: Number(i[1]), flexBasis: o }) : null; } if (i = e.match(/^(\d+)\s+(\d+)\s+(.+)$/), i) { let o = Ce((r = i[3]) !== null && r !== void 0 ? r : ""); return o ? g2({ flexGrow: Number(i[1]), flexShrink: Number(i[2]), flexBasis: o }) : null; } return null; } function Ro(e, t, n = {}, r) { let i = r == null ? void 0 : r[t]; return i !== void 0 ? $e(e, i, n) : Se(e, t, n); } function Sr(e, t, n = {}, r) { let i = Ce(r == null ? void 0 : r[t], n); return i ? g2({ [e]: i }) : (t === "screen" && (t = e.includes("Width") ? "100vw" : "100vh"), Se(e, t, n)); } function vl(e, t, n) { let r = n == null ? void 0 : n[e]; if (r) { let i = re(r, { isNegative: t }); if (!i) return null; let [o, s] = i; if (s === F.em) return j0(o); if (s === F.percent) return pe("percentage-based letter-spacing configuration currently unsupported, switch to `em`s, or open an issue if you'd like to see support added."), null; let a = Ke(o, s, { isNegative: t }); return a !== null ? g2({ letterSpacing: a }) : null; } return Se("letterSpacing", e, { isNegative: t }); } function j0(e) { return { kind: "dependent", complete(t) { let n = t.fontSize; if (typeof n != "number" || Number.isNaN(n)) return "tracking-X relative letter spacing classes require font-size to be set"; t.letterSpacing = Math.round((e * n + Number.EPSILON) * 100) / 100; } }; } function yl(e, t) { let n = t == null ? void 0 : t[e]; if (n) { let i = re(String(n)); if (i) return g2({ opacity: i[0] }); } let r = re(e); return r ? g2({ opacity: r[0] / 100 }) : null; } function xl(e) { let t = parseInt(e, 10); return Number.isNaN(t) ? null : { kind: "complete", style: { shadowOpacity: t / 100 } }; } function wl(e) { if (e.includes("/")) { let [n = "", r = ""] = e.split("/", 2), i = Lo(n), o = Lo(r); return i === null || o === null ? null : { kind: "complete", style: { shadowOffset: { width: i, height: o } } }; } let t = Lo(e); return t === null ? null : { kind: "complete", style: { shadowOffset: { width: t, height: t } } }; } function Lo(e) { let t = at(e); return typeof t == "number" ? t : null; } var Tt = class { constructor(t, n = {}, r, i, o) { var s, a, u2, l2, f, c2; this.config = n, this.cache = r, this.position = 0, this.isNull = false, this.isNegative = false, this.context = {}, this.context.device = i; let p = t.trim().split(":"), d2 = []; p.length === 1 ? this.string = t : (this.string = (s = p.pop()) !== null && s !== void 0 ? s : "", d2 = p), this.char = this.string[0]; let h2 = Io((a = this.config.theme) === null || a === void 0 ? void 0 : a.screens); for (let m2 of d2) if (h2[m2]) { let w2 = (u2 = h2[m2]) === null || u2 === void 0 ? void 0 : u2[2]; w2 !== void 0 && (this.order = ((l2 = this.order) !== null && l2 !== void 0 ? l2 : 0) + w2); let b = (f = i.windowDimensions) === null || f === void 0 ? void 0 : f.width; if (b) { let [T, y] = (c2 = h2[m2]) !== null && c2 !== void 0 ? c2 : [0, 0]; (b <= T || b > y) && (this.isNull = true); } else this.isNull = true; } else nl(m2) ? this.isNull = m2 !== o : il(m2) ? i.windowDimensions ? (i.windowDimensions.width > i.windowDimensions.height ? "landscape" : "portrait") !== m2 ? this.isNull = true : this.incrementOrder() : this.isNull = true : m2 === "retina" ? i.pixelDensity === 2 ? this.incrementOrder() : this.isNull = true : m2 === "dark" ? i.colorScheme !== "dark" ? this.isNull = true : this.incrementOrder() : this.handlePossibleArbitraryBreakpointPrefix(m2) || (this.isNull = true); } parse() { if (this.isNull) return { kind: "null" }; let t = this.cache.getIr(this.rest); if (t) return t; this.parseIsNegative(); let n = this.parseUtility(); return n ? this.order !== void 0 ? { kind: "ordered", order: this.order, styleIr: n } : n : { kind: "null" }; } parseUtility() { var t, n, r, i, o; let s = this.config.theme, a = null; switch (this.char) { case "m": case "p": { let u2 = this.peekSlice(1, 3).match(/^(t|b|r|l|x|y)?-/); if (u2) { let l2 = this.char === "m" ? "margin" : "padding"; this.advance(((n = (t = u2[0]) === null || t === void 0 ? void 0 : t.length) !== null && n !== void 0 ? n : 0) + 1); let f = _o(u2[1]), c2 = Po(l2, f, this.isNegative, this.rest, (r = this.config.theme) === null || r === void 0 ? void 0 : r[l2]); if (c2) return c2; } } } if (this.consumePeeked("h-") && (a = Ro("height", this.rest, this.context, s == null ? void 0 : s.height), a) || this.consumePeeked("w-") && (a = Ro("width", this.rest, this.context, s == null ? void 0 : s.width), a) || this.consumePeeked("min-w-") && (a = Sr("minWidth", this.rest, this.context, s == null ? void 0 : s.minWidth), a) || this.consumePeeked("min-h-") && (a = Sr("minHeight", this.rest, this.context, s == null ? void 0 : s.minHeight), a) || this.consumePeeked("max-w-") && (a = Sr("maxWidth", this.rest, this.context, s == null ? void 0 : s.maxWidth), a) || this.consumePeeked("max-h-") && (a = Sr("maxHeight", this.rest, this.context, s == null ? void 0 : s.maxHeight), a) || this.consumePeeked("leading-") && (a = Oo(this.rest, s == null ? void 0 : s.lineHeight), a) || this.consumePeeked("text-") && (a = Eo(this.rest, s == null ? void 0 : s.fontSize, this.context), a || (a = ut("text", this.rest, s == null ? void 0 : s.textColor), a) || this.consumePeeked("opacity-") && (a = xr("text", this.rest), a)) || this.consumePeeked("font-") && (a = Ao(this.rest, s == null ? void 0 : s.fontFamily), a) || this.consumePeeked("aspect-") && (this.consumePeeked("ratio-") && pe("`aspect-ratio-{ratio}` is deprecated, use `aspect-{ratio}` instead"), a = $e("aspectRatio", this.rest, { fractions: true }), a) || this.consumePeeked("tint-") && (a = ut("tint", this.rest, s == null ? void 0 : s.colors), a) || this.consumePeeked("bg-") && (a = ut("bg", this.rest, s == null ? void 0 : s.backgroundColor), a || this.consumePeeked("opacity-") && (a = xr("bg", this.rest), a)) || this.consumePeeked("border") && (a = hl(this.rest, s), a || this.consumePeeked("-opacity-") && (a = xr("border", this.rest), a)) || this.consumePeeked("rounded") && (a = ml(this.rest, s == null ? void 0 : s.borderRadius), a) || this.consumePeeked("bottom-") && (a = kt("bottom", this.rest, this.isNegative, s == null ? void 0 : s.inset), a) || this.consumePeeked("top-") && (a = kt("top", this.rest, this.isNegative, s == null ? void 0 : s.inset), a) || this.consumePeeked("left-") && (a = kt("left", this.rest, this.isNegative, s == null ? void 0 : s.inset), a) || this.consumePeeked("right-") && (a = kt("right", this.rest, this.isNegative, s == null ? void 0 : s.inset), a) || this.consumePeeked("inset-") && (a = kt("inset", this.rest, this.isNegative, s == null ? void 0 : s.inset), a) || this.consumePeeked("flex-") && (this.consumePeeked("grow") ? a = wr("Grow", this.rest, s == null ? void 0 : s.flexGrow) : this.consumePeeked("shrink") ? a = wr("Shrink", this.rest, s == null ? void 0 : s.flexShrink) : a = bl(this.rest, s == null ? void 0 : s.flex), a) || this.consumePeeked("grow") && (a = wr("Grow", this.rest, s == null ? void 0 : s.flexGrow), a) || this.consumePeeked("shrink") && (a = wr("Shrink", this.rest, s == null ? void 0 : s.flexShrink), a) || this.consumePeeked("shadow-color-opacity-") && (a = xr("shadow", this.rest), a) || this.consumePeeked("shadow-opacity-") && (a = xl(this.rest), a) || this.consumePeeked("shadow-offset-") && (a = wl(this.rest), a) || this.consumePeeked("shadow-radius-") && (a = Se("shadowRadius", this.rest), a) || this.consumePeeked("shadow-") && (a = ut("shadow", this.rest, s == null ? void 0 : s.colors), a)) return a; if (this.consumePeeked("elevation-")) { let u2 = parseInt(this.rest, 10); if (!Number.isNaN(u2)) return g2({ elevation: u2 }); } if (this.consumePeeked("opacity-") && (a = yl(this.rest, s == null ? void 0 : s.opacity), a) || this.consumePeeked("tracking-") && (a = vl(this.rest, this.isNegative, s == null ? void 0 : s.letterSpacing), a)) return a; if (this.consumePeeked("z-")) { let u2 = Number((o = (i = s == null ? void 0 : s.zIndex) === null || i === void 0 ? void 0 : i[this.rest]) !== null && o !== void 0 ? o : this.rest); if (!Number.isNaN(u2)) return g2({ zIndex: u2 }); } return pe(`\`${this.rest}\` unknown or invalid utility`), null; } handlePossibleArbitraryBreakpointPrefix(t) { var n; if (t[0] !== "m") return false; let r = t.match(/^(min|max)-(w|h)-\[([^\]]+)\]$/); if (!r) return false; if (!(!((n = this.context.device) === null || n === void 0) && n.windowDimensions)) return this.isNull = true, true; let i = this.context.device.windowDimensions, [, o = "", s = "", a = ""] = r, u2 = s === "w" ? i.width : i.height, l2 = re(a, this.context); if (l2 === null) return this.isNull = true, true; let [f, c2] = l2; return c2 !== "px" && (this.isNull = true), (o === "min" ? u2 >= f : u2 <= f) ? this.incrementOrder() : this.isNull = true, true; } advance(t = 1) { this.position += t, this.char = this.string[this.position]; } get rest() { return this.peekSlice(0, this.string.length); } peekSlice(t, n) { return this.string.slice(this.position + t, this.position + n); } consumePeeked(t) { return this.peekSlice(0, t.length) === t ? (this.advance(t.length), true) : false; } parseIsNegative() { this.char === "-" && (this.advance(), this.isNegative = true, this.context.isNegative = true); } incrementOrder() { var t; this.order = ((t = this.order) !== null && t !== void 0 ? t : 0) + 1; } }; function Sl(e) { let t = [], n = null; return e.forEach((r) => { if (typeof r == "string") t = [...t, ...Co(r)]; else if (Array.isArray(r)) t = [...t, ...r.flatMap(Co)]; else if (typeof r == "object" && r !== null) for (let [i, o] of Object.entries(r)) typeof o == "boolean" ? t = [...t, ...o ? Co(i) : []] : n ? n[i] = o : n = { [i]: o }; }), [t.filter(Boolean).filter(H0), n]; } function Co(e) { return e.trim().split(/\s+/); } function H0(e, t, n) { return n.indexOf(e) === t; } function _l(e) { var t; return (t = e == null ? void 0 : e.reduce((n, r) => ({ ...n, ...V0(r.handler) }), {})) !== null && t !== void 0 ? t : {}; } function V0(e) { let t = {}; return e({ addUtilities: (n) => { t = n; }, ...Y0 }), t; } function Me(e) { throw new Error(`tailwindcss plugin function argument object prop "${e}" not implemented`); } var Y0 = { addComponents: Me, addBase: Me, addVariant: Me, e: Me, prefix: Me, theme: Me, variants: Me, config: Me, corePlugins: Me, matchUtilities: Me, postcss: null }; function Tl(e, t) { let n = (0, kl.default)(X0(e)), r = {}, i = _l(n.plugins), o = {}, s = Object.entries(i).map(([h2, m2]) => typeof m2 == "string" ? (o[h2] = m2, [h2, { kind: "null" }]) : [h2, g2(m2)]).filter(([, h2]) => h2.kind !== "null"); function a() { return [r.windowDimensions ? `w${r.windowDimensions.width}` : false, r.windowDimensions ? `h${r.windowDimensions.height}` : false, r.fontScale ? `fs${r.fontScale}` : false, r.colorScheme === "dark" ? "dark" : false, r.pixelDensity === 2 ? "retina" : false].filter(Boolean).join("--") || "default"; } let u2 = a(), l2 = {}; function f() { let h2 = l2[u2]; if (h2) return h2; let m2 = new yr(s); return l2[u2] = m2, m2; } function c2(...h2) { let m2 = f(), w2 = {}, b = [], T = [], [y, v2] = Sl(h2), x2 = y.join(" "), I = m2.getStyle(x2); if (I) return { ...I, ...v2 || {} }; for (let A of y) { let L = m2.getIr(A); if (!L && A in o) { let ie = c2(o[A]); m2.setIr(A, g2(ie)), w2 = { ...w2, ...ie }; continue; } switch (L = new Tt(A, n, m2, r, t).parse(), L.kind) { case "complete": w2 = { ...w2, ...L.style }, m2.setIr(A, L); break; case "dependent": b.push(L); break; case "ordered": T.push(L); break; case "null": m2.setIr(A, L); break; } } if (T.length > 0) { T.sort((A, L) => A.order - L.order); for (let A of T) switch (A.styleIr.kind) { case "complete": w2 = { ...w2, ...A.styleIr.style }; break; case "dependent": b.push(A.styleIr); break; } } if (b.length > 0) { for (let A of b) { let L = A.complete(w2); L && pe(L); } cl(w2); } return x2 !== "" && m2.setStyle(x2, w2), v2 && (w2 = { ...w2, ...v2 }), w2; } function p(h2) { let m2 = c2(h2.split(/\s+/g).map((w2) => w2.replace(/^(bg|text|border)-/, "")).map((w2) => `bg-${w2}`).join(" ")); return typeof m2.backgroundColor == "string" ? m2.backgroundColor : void 0; } let d2 = (h2, ...m2) => { let w2 = ""; return h2.forEach((b, T) => { var y; w2 += b + ((y = m2[T]) !== null && y !== void 0 ? y : ""); }), c2(w2); }; return d2.style = c2, d2.color = p, d2.prefixMatch = (...h2) => { let m2 = h2.sort().join(":"), w2 = f(), b = w2.getPrefixMatch(m2); if (b !== void 0) return b; let v2 = new Tt(`${m2}:flex`, n, w2, r, t).parse().kind !== "null"; return w2.setPrefixMatch(m2, v2), v2; }, d2.setWindowDimensions = (h2) => { r.windowDimensions = h2, u2 = a(); }, d2.setFontScale = (h2) => { r.fontScale = h2, u2 = a(); }, d2.setPixelDensity = (h2) => { r.pixelDensity = h2, u2 = a(); }, d2.setColorScheme = (h2) => { r.colorScheme = h2, u2 = a(); }, d2; } function X0(e) { return { ...e, content: ["_no_warnings_please"] }; } var K0 = { handler: ({ addUtilities: e }) => { e({ "shadow-sm": { boxShadow: "0 1px 2px 0 rgb(0 0 0 / 0.05)" }, shadow: { boxShadow: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)" }, "shadow-md": { boxShadow: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)" }, "shadow-lg": { boxShadow: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)" }, "shadow-xl": { boxShadow: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)" }, "shadow-2xl": { boxShadow: "0 25px 50px -12px rgb(0 0 0 / 0.25)" }, "shadow-inner": { boxShadow: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)" }, "shadow-none": { boxShadow: "0 0 #0000" } }); } }; function J0(e) { return Tl({ ...e, plugins: [...(e == null ? void 0 : e.plugins) ?? [], K0] }, "web"); } var bn; function Mo({ width: e, height: t, config: n }) { return bn || (bn = J0(n)), bn.setWindowDimensions({ width: +e, height: +t }), bn; } var Do = /* @__PURE__ */ new WeakMap(); async function Ol(e, t) { let n = await De(); if (!n || !n.Node) throw new Error("Satori is not initialized: expect `yoga` to be loaded, got " + n); t.fonts = t.fonts || []; let r; Do.has(t.fonts) ? r = Do.get(t.fonts) : Do.set(t.fonts, r = new Bt(t.fonts)); let i = "width" in t ? t.width : void 0, o = "height" in t ? t.height : void 0, s = Z0(n, t.pointScaleFactor); i && s.setWidth(i), o && s.setHeight(o), s.setFlexDirection(n.FLEX_DIRECTION_ROW), s.setFlexWrap(n.WRAP_WRAP), s.setAlignContent(n.ALIGN_AUTO), s.setAlignItems(n.ALIGN_FLEX_START), s.setJustifyContent(n.JUSTIFY_FLEX_START), s.setOverflow(n.OVERFLOW_HIDDEN); let a = { ...t.graphemeImages }, u2 = /* @__PURE__ */ new Set(); Re.clear(), Ct.clear(), await ds(e); let l2 = qt(e, { id: "id", parentStyle: {}, inheritedStyle: { fontSize: 16, fontWeight: "normal", fontFamily: "serif", fontStyle: "normal", lineHeight: "normal", color: "black", opacity: 1, whiteSpace: "normal", _viewportWidth: i, _viewportHeight: o }, parent: s, font: r, embedFont: t.embedFont, debug: t.debug, graphemeImages: a, canLoadAdditionalAssets: !!t.loadAdditionalAsset, onNodeDetected: t.onNodeDetected, getTwStyles: (h2, m2) => { let b = { ...Mo({ width: i, height: o, config: t.tailwindConfig })([h2]) }; return typeof b.lineHeight == "number" && (b.lineHeight = b.lineHeight / (+b.fontSize || m2.fontSize || 16)), b.shadowColor && b.boxShadow && (b.boxShadow = b.boxShadow.replace(/rgba?\([^)]+\)/, b.shadowColor)), b; } }), f = (await l2.next()).value; if (t.loadAdditionalAsset && f.length) { let h2 = eg(f), m2 = [], w2 = {}; await Promise.all(Object.entries(h2).flatMap(([b, T]) => T.map((y) => { let v2 = `${b}_${y}`; return u2.has(v2) ? null : (u2.add(v2), t.loadAdditionalAsset(b, y).then((x2) => { typeof x2 == "string" ? w2[y] = x2 : x2 && (Array.isArray(x2) ? m2.push(...x2) : m2.push(x2)); })); }))), r.addFonts(m2), Object.assign(a, w2); } await l2.next(), s.calculateLayout(i, o, n.DIRECTION_LTR); let c2 = (await l2.next([0, 0])).value, p = s.getComputedWidth(), d2 = s.getComputedHeight(); return s.freeRecursive(), Hn({ width: p, height: d2, content: c2 }); } function Z0(e, t) { if (t) { let n = e.Config.create(); return n.setPointScaleFactor(t), e.Node.createWithConfig(n); } else return e.Node.create(); } function eg(e) { let t = {}, n = {}; for (let { word: r, locale: i } of e) { let o = Us(r, i).join("|"); n[o] = n[o] || "", n[o] += r; } return Object.keys(n).forEach((r) => { t[r] = t[r] || [], r === "emoji" ? t[r].push(...El(ue(n[r], "grapheme"))) : (t[r][0] = t[r][0] || "", t[r][0] += El(ue(n[r], "grapheme", r === "unknown" ? void 0 : r)).join("")); }), t; } function El(e) { return Array.from(new Set(e)); } // node_modules/.pnpm/yoga-wasm-web@0.3.3/node_modules/yoga-wasm-web/dist/wrapAsm-f766f97f.js var YGEnums = {}; var ALIGN_AUTO = YGEnums.ALIGN_AUTO = 0; var ALIGN_FLEX_START = YGEnums.ALIGN_FLEX_START = 1; var ALIGN_CENTER = YGEnums.ALIGN_CENTER = 2; var ALIGN_FLEX_END = YGEnums.ALIGN_FLEX_END = 3; var ALIGN_STRETCH = YGEnums.ALIGN_STRETCH = 4; var ALIGN_BASELINE = YGEnums.ALIGN_BASELINE = 5; var ALIGN_SPACE_BETWEEN = YGEnums.ALIGN_SPACE_BETWEEN = 6; var ALIGN_SPACE_AROUND = YGEnums.ALIGN_SPACE_AROUND = 7; var DIMENSION_WIDTH = YGEnums.DIMENSION_WIDTH = 0; var DIMENSION_HEIGHT = YGEnums.DIMENSION_HEIGHT = 1; var DIRECTION_INHERIT = YGEnums.DIRECTION_INHERIT = 0; var DIRECTION_LTR = YGEnums.DIRECTION_LTR = 1; var DIRECTION_RTL = YGEnums.DIRECTION_RTL = 2; var DISPLAY_FLEX = YGEnums.DISPLAY_FLEX = 0; var DISPLAY_NONE = YGEnums.DISPLAY_NONE = 1; var EDGE_LEFT = YGEnums.EDGE_LEFT = 0; var EDGE_TOP = YGEnums.EDGE_TOP = 1; var EDGE_RIGHT = YGEnums.EDGE_RIGHT = 2; var EDGE_BOTTOM = YGEnums.EDGE_BOTTOM = 3; var EDGE_START = YGEnums.EDGE_START = 4; var EDGE_END = YGEnums.EDGE_END = 5; var EDGE_HORIZONTAL = YGEnums.EDGE_HORIZONTAL = 6; var EDGE_VERTICAL = YGEnums.EDGE_VERTICAL = 7; var EDGE_ALL = YGEnums.EDGE_ALL = 8; var EXPERIMENTAL_FEATURE_WEB_FLEX_BASIS = YGEnums.EXPERIMENTAL_FEATURE_WEB_FLEX_BASIS = 0; var EXPERIMENTAL_FEATURE_ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE = YGEnums.EXPERIMENTAL_FEATURE_ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE = 1; var EXPERIMENTAL_FEATURE_FIX_ABSOLUTE_TRAILING_COLUMN_MARGIN = YGEnums.EXPERIMENTAL_FEATURE_FIX_ABSOLUTE_TRAILING_COLUMN_MARGIN = 2; var FLEX_DIRECTION_COLUMN = YGEnums.FLEX_DIRECTION_COLUMN = 0; var FLEX_DIRECTION_COLUMN_REVERSE = YGEnums.FLEX_DIRECTION_COLUMN_REVERSE = 1; var FLEX_DIRECTION_ROW = YGEnums.FLEX_DIRECTION_ROW = 2; var FLEX_DIRECTION_ROW_REVERSE = YGEnums.FLEX_DIRECTION_ROW_REVERSE = 3; var GUTTER_COLUMN = YGEnums.GUTTER_COLUMN = 0; var GUTTER_ROW = YGEnums.GUTTER_ROW = 1; var GUTTER_ALL = YGEnums.GUTTER_ALL = 2; var JUSTIFY_FLEX_START = YGEnums.JUSTIFY_FLEX_START = 0; var JUSTIFY_CENTER = YGEnums.JUSTIFY_CENTER = 1; var JUSTIFY_FLEX_END = YGEnums.JUSTIFY_FLEX_END = 2; var JUSTIFY_SPACE_BETWEEN = YGEnums.JUSTIFY_SPACE_BETWEEN = 3; var JUSTIFY_SPACE_AROUND = YGEnums.JUSTIFY_SPACE_AROUND = 4; var JUSTIFY_SPACE_EVENLY = YGEnums.JUSTIFY_SPACE_EVENLY = 5; var LOG_LEVEL_ERROR = YGEnums.LOG_LEVEL_ERROR = 0; var LOG_LEVEL_WARN = YGEnums.LOG_LEVEL_WARN = 1; var LOG_LEVEL_INFO = YGEnums.LOG_LEVEL_INFO = 2; var LOG_LEVEL_DEBUG = YGEnums.LOG_LEVEL_DEBUG = 3; var LOG_LEVEL_VERBOSE = YGEnums.LOG_LEVEL_VERBOSE = 4; var LOG_LEVEL_FATAL = YGEnums.LOG_LEVEL_FATAL = 5; var MEASURE_MODE_UNDEFINED = YGEnums.MEASURE_MODE_UNDEFINED = 0; var MEASURE_MODE_EXACTLY = YGEnums.MEASURE_MODE_EXACTLY = 1; var MEASURE_MODE_AT_MOST = YGEnums.MEASURE_MODE_AT_MOST = 2; var NODE_TYPE_DEFAULT = YGEnums.NODE_TYPE_DEFAULT = 0; var NODE_TYPE_TEXT = YGEnums.NODE_TYPE_TEXT = 1; var OVERFLOW_VISIBLE = YGEnums.OVERFLOW_VISIBLE = 0; var OVERFLOW_HIDDEN = YGEnums.OVERFLOW_HIDDEN = 1; var OVERFLOW_SCROLL = YGEnums.OVERFLOW_SCROLL = 2; var POSITION_TYPE_STATIC = YGEnums.POSITION_TYPE_STATIC = 0; var POSITION_TYPE_RELATIVE = YGEnums.POSITION_TYPE_RELATIVE = 1; var POSITION_TYPE_ABSOLUTE = YGEnums.POSITION_TYPE_ABSOLUTE = 2; var PRINT_OPTIONS_LAYOUT = YGEnums.PRINT_OPTIONS_LAYOUT = 1; var PRINT_OPTIONS_STYLE = YGEnums.PRINT_OPTIONS_STYLE = 2; var PRINT_OPTIONS_CHILDREN = YGEnums.PRINT_OPTIONS_CHILDREN = 4; var UNIT_UNDEFINED = YGEnums.UNIT_UNDEFINED = 0; var UNIT_POINT = YGEnums.UNIT_POINT = 1; var UNIT_PERCENT = YGEnums.UNIT_PERCENT = 2; var UNIT_AUTO = YGEnums.UNIT_AUTO = 3; var WRAP_NO_WRAP = YGEnums.WRAP_NO_WRAP = 0; var WRAP_WRAP = YGEnums.WRAP_WRAP = 1; var WRAP_WRAP_REVERSE = YGEnums.WRAP_WRAP_REVERSE = 2; var wrapAsm = (E) => { function _2(E2, _3, T2) { let N2 = E2[_3]; E2[_3] = function(...E3) { return T2.call(this, N2, ...E3); }; } for (let T2 of ["setPosition", "setMargin", "setFlexBasis", "setWidth", "setHeight", "setMinWidth", "setMinHeight", "setMaxWidth", "setMaxHeight", "setPadding"]) { let N2 = { [YGEnums.UNIT_POINT]: E.Node.prototype[T2], [YGEnums.UNIT_PERCENT]: E.Node.prototype[`${T2}Percent`], [YGEnums.UNIT_AUTO]: E.Node.prototype[`${T2}Auto`] }; _2(E.Node.prototype, T2, function(E2, ..._3) { let I, L; let O = _3.pop(); if ("auto" === O) I = YGEnums.UNIT_AUTO, L = void 0; else if ("object" == typeof O) I = O.unit, L = O.valueOf(); else if (I = "string" == typeof O && O.endsWith("%") ? YGEnums.UNIT_PERCENT : YGEnums.UNIT_POINT, L = parseFloat(O), !Number.isNaN(O) && Number.isNaN(L)) throw Error(`Invalid value ${O} for ${T2}`); if (!N2[I]) throw Error(`Failed to execute "${T2}": Unsupported unit '${O}'`); return void 0 !== L ? N2[I].call(this, ..._3, L) : N2[I].call(this, ..._3); }); } function T(_3) { return E.MeasureCallback.implement({ measure: (...E2) => { let { width: T2, height: N2 } = _3(...E2); return { width: T2 ?? NaN, height: N2 ?? NaN }; } }); } function N(_3) { return E.DirtiedCallback.implement({ dirtied: _3 }); } return _2(E.Node.prototype, "setMeasureFunc", function(E2, _3) { return _3 ? E2.call(this, T(_3)) : this.unsetMeasureFunc(); }), _2(E.Node.prototype, "setDirtiedFunc", function(E2, _3) { E2.call(this, N(_3)); }), _2(E.Config.prototype, "free", function() { E.Config.destroy(this); }), _2(E.Node, "create", (_3, T2) => T2 ? E.Node.createWithConfig(T2) : E.Node.createDefault()), _2(E.Node.prototype, "free", function() { E.Node.destroy(this); }), _2(E.Node.prototype, "freeRecursive", function() { for (let E2 = 0, _3 = this.getChildCount(); E2 < _3; ++E2) this.getChild(0).freeRecursive(); this.free(); }), _2(E.Node.prototype, "calculateLayout", function(E2, _3 = NaN, T2 = NaN, N2 = YGEnums.DIRECTION_LTR) { return E2.call(this, _3, T2, N2); }), { Config: E.Config, Node: E.Node, ...YGEnums }; }; // node_modules/.pnpm/yoga-wasm-web@0.3.3/node_modules/yoga-wasm-web/dist/index.js var yoga = (() => { var n = "undefined" != typeof document && document.currentScript ? document.currentScript.src : void 0; return function(t = {}) { u2 || (u2 = void 0 !== t ? t : {}), u2.ready = new Promise(function(n2, t2) { c2 = n2, f = t2; }); var r, e, a = Object.assign({}, u2), i = ""; "undefined" != typeof document && document.currentScript && (i = document.currentScript.src), n && (i = n), i = 0 !== i.indexOf("blob:") ? i.substr(0, i.replace(/[?#].*/, "").lastIndexOf("/") + 1) : ""; var o = console.log.bind(console), s = console.warn.bind(console); Object.assign(u2, a), a = null, "object" != typeof WebAssembly && w2("no native wasm support detected"); var u2, c2, f, l2, h2 = false; function p(n2, t2, r2) { r2 = t2 + r2; for (var e2 = ""; !(t2 >= r2); ) { var a2 = n2[t2++]; if (!a2) break; if (128 & a2) { var i2 = 63 & n2[t2++]; if (192 == (224 & a2)) e2 += String.fromCharCode((31 & a2) << 6 | i2); else { var o2 = 63 & n2[t2++]; 65536 > (a2 = 224 == (240 & a2) ? (15 & a2) << 12 | i2 << 6 | o2 : (7 & a2) << 18 | i2 << 12 | o2 << 6 | 63 & n2[t2++]) ? e2 += String.fromCharCode(a2) : (a2 -= 65536, e2 += String.fromCharCode(55296 | a2 >> 10, 56320 | 1023 & a2)); } } else e2 += String.fromCharCode(a2); } return e2; } function v2() { var n2 = l2.buffer; u2.HEAP8 = d2 = new Int8Array(n2), u2.HEAP16 = m2 = new Int16Array(n2), u2.HEAP32 = g3 = new Int32Array(n2), u2.HEAPU8 = y = new Uint8Array(n2), u2.HEAPU16 = E = new Uint16Array(n2), u2.HEAPU32 = _2 = new Uint32Array(n2), u2.HEAPF32 = T = new Float32Array(n2), u2.HEAPF64 = L = new Float64Array(n2); } var d2, y, m2, E, g3, _2, T, L, A, O = [], P3 = [], b = [], N = 0, I = null; function w2(n2) { throw s(n2 = "Aborted(" + n2 + ")"), h2 = true, f(n2 = new WebAssembly.RuntimeError(n2 + ". Build with -sASSERTIONS for more info.")), n2; } function S2() { return r.startsWith("data:application/octet-stream;base64,"); } function R3() { try { throw "both async and sync fetching of the wasm failed"; } catch (n2) { w2(n2); } } function C(n2) { for (; 0 < n2.length; ) n2.shift()(u2); } function W(n2) { if (void 0 === n2) return "_unknown"; var t2 = (n2 = n2.replace(/[^a-zA-Z0-9_]/g, "$")).charCodeAt(0); return 48 <= t2 && 57 >= t2 ? "_" + n2 : n2; } function U(n2, t2) { return n2 = W(n2), function() { return t2.apply(this, arguments); }; } r = "yoga.wasm", S2() || (r = i + r); var M = [{}, { value: void 0 }, { value: null }, { value: true }, { value: false }], F2 = []; function D(n2) { var t2 = Error, r2 = U(n2, function(t3) { this.name = n2, this.message = t3, void 0 !== (t3 = Error(t3).stack) && (this.stack = this.toString() + "\n" + t3.replace(/^Error(:[^\n]*)?\n/, "")); }); return r2.prototype = Object.create(t2.prototype), r2.prototype.constructor = r2, r2.prototype.toString = function() { return void 0 === this.message ? this.name : this.name + ": " + this.message; }, r2; } var k = void 0; function V(n2) { throw new k(n2); } var j = (n2) => (n2 || V("Cannot use deleted val. handle = " + n2), M[n2].value), G = (n2) => { switch (n2) { case void 0: return 1; case null: return 2; case true: return 3; case false: return 4; default: var t2 = F2.length ? F2.pop() : M.length; return M[t2] = { fa: 1, value: n2 }, t2; } }, Y = void 0, X = void 0; function B(n2) { for (var t2 = ""; y[n2]; ) t2 += X[y[n2++]]; return t2; } var H = []; function x2() { for (; H.length; ) { var n2 = H.pop(); n2.L.Z = false, n2.delete(); } } var z = void 0, $ = {}; function Z(n2, t2) { for (void 0 === t2 && V("ptr should not be undefined"); n2.P; ) t2 = n2.aa(t2), n2 = n2.P; return t2; } var J = {}; function q(n2) { var t2 = B(n2 = nz(n2)); return nZ(n2), t2; } function K2(n2, t2) { var r2 = J[n2]; return void 0 === r2 && V(t2 + " has unknown type " + q(n2)), r2; } function Q() { } var nn = false; function nt(n2) { --n2.count.value, 0 === n2.count.value && (n2.S ? n2.T.V(n2.S) : n2.O.M.V(n2.N)); } var nr = {}, ne2 = void 0; function na(n2) { throw new ne2(n2); } function ni(n2, t2) { return t2.O && t2.N || na("makeClassHandle requires ptr and ptrType"), !!t2.T != !!t2.S && na("Both smartPtrType and smartPtr must be specified"), t2.count = { value: 1 }, no(Object.create(n2, { L: { value: t2 } })); } function no(n2) { return "undefined" == typeof FinalizationRegistry ? (no = (n3) => n3, n2) : (nn = new FinalizationRegistry((n3) => { nt(n3.L); }), no = (n3) => { var t2 = n3.L; return t2.S && nn.register(n3, { L: t2 }, n3), n3; }, Q = (n3) => { nn.unregister(n3); }, no(n2)); } var ns2 = {}; function nu(n2) { for (; n2.length; ) { var t2 = n2.pop(); n2.pop()(t2); } } function nc(n2) { return this.fromWireType(g3[n2 >> 2]); } var nf2 = {}, nl2 = {}; function nh(n2, t2, r2) { function e2(t3) { (t3 = r2(t3)).length !== n2.length && na("Mismatched type converter count"); for (var e3 = 0; e3 < n2.length; ++e3) nv(n2[e3], t3[e3]); } n2.forEach(function(n3) { nl2[n3] = t2; }); var a2 = Array(t2.length), i2 = [], o2 = 0; t2.forEach((n3, t3) => { J.hasOwnProperty(n3) ? a2[t3] = J[n3] : (i2.push(n3), nf2.hasOwnProperty(n3) || (nf2[n3] = []), nf2[n3].push(() => { a2[t3] = J[n3], ++o2 === i2.length && e2(a2); })); }), 0 === i2.length && e2(a2); } function np(n2) { switch (n2) { case 1: return 0; case 2: return 1; case 4: return 2; case 8: return 3; default: throw TypeError("Unknown type size: " + n2); } } function nv(n2, t2, r2 = {}) { if (!("argPackAdvance" in t2)) throw TypeError("registerType registeredInstance requires argPackAdvance"); var e2 = t2.name; if (n2 || V('type "' + e2 + '" must have a positive integer typeid pointer'), J.hasOwnProperty(n2)) { if (r2.ta) return; V("Cannot register type '" + e2 + "' twice"); } J[n2] = t2, delete nl2[n2], nf2.hasOwnProperty(n2) && (t2 = nf2[n2], delete nf2[n2], t2.forEach((n3) => n3())); } function nd(n2) { V(n2.L.O.M.name + " instance already deleted"); } function ny() { } function nm(n2, t2, r2) { if (void 0 === n2[t2].R) { var e2 = n2[t2]; n2[t2] = function() { return n2[t2].R.hasOwnProperty(arguments.length) || V("Function '" + r2 + "' called with an invalid number of arguments (" + arguments.length + ") - expects one of (" + n2[t2].R + ")!"), n2[t2].R[arguments.length].apply(this, arguments); }, n2[t2].R = [], n2[t2].R[e2.Y] = e2; } } function nE(n2, t2, r2, e2, a2, i2, o2, s2) { this.name = n2, this.constructor = t2, this.W = r2, this.V = e2, this.P = a2, this.oa = i2, this.aa = o2, this.ma = s2, this.ia = []; } function ng(n2, t2, r2) { for (; t2 !== r2; ) t2.aa || V("Expected null or instance of " + r2.name + ", got an instance of " + t2.name), n2 = t2.aa(n2), t2 = t2.P; return n2; } function n_(n2, t2) { return null === t2 ? (this.da && V("null is not a valid " + this.name), 0) : (t2.L || V('Cannot pass "' + nC(t2) + '" as a ' + this.name), t2.L.N || V("Cannot pass deleted object as a pointer of type " + this.name), ng(t2.L.N, t2.L.O.M, this.M)); } function nT(n2, t2) { if (null === t2) { if (this.da && V("null is not a valid " + this.name), this.ca) { var r2 = this.ea(); return null !== n2 && n2.push(this.V, r2), r2; } return 0; } if (t2.L || V('Cannot pass "' + nC(t2) + '" as a ' + this.name), t2.L.N || V("Cannot pass deleted object as a pointer of type " + this.name), !this.ba && t2.L.O.ba && V("Cannot convert argument of type " + (t2.L.T ? t2.L.T.name : t2.L.O.name) + " to parameter type " + this.name), r2 = ng(t2.L.N, t2.L.O.M, this.M), this.ca) switch (void 0 === t2.L.S && V("Passing raw pointer to smart pointer is illegal"), this.Aa) { case 0: t2.L.T === this ? r2 = t2.L.S : V("Cannot convert argument of type " + (t2.L.T ? t2.L.T.name : t2.L.O.name) + " to parameter type " + this.name); break; case 1: r2 = t2.L.S; break; case 2: if (t2.L.T === this) r2 = t2.L.S; else { var e2 = t2.clone(); r2 = this.wa(r2, G(function() { e2.delete(); })), null !== n2 && n2.push(this.V, r2); } break; default: V("Unsupporting sharing policy"); } return r2; } function nL(n2, t2) { return null === t2 ? (this.da && V("null is not a valid " + this.name), 0) : (t2.L || V('Cannot pass "' + nC(t2) + '" as a ' + this.name), t2.L.N || V("Cannot pass deleted object as a pointer of type " + this.name), t2.L.O.ba && V("Cannot convert argument of type " + t2.L.O.name + " to parameter type " + this.name), ng(t2.L.N, t2.L.O.M, this.M)); } function nA(n2, t2, r2, e2) { this.name = n2, this.M = t2, this.da = r2, this.ba = e2, this.ca = false, this.V = this.wa = this.ea = this.ja = this.Aa = this.va = void 0, void 0 !== t2.P ? this.toWireType = nT : (this.toWireType = e2 ? n_ : nL, this.U = null); } var nO = []; function nP(n2) { var t2 = nO[n2]; return t2 || (n2 >= nO.length && (nO.length = n2 + 1), nO[n2] = t2 = A.get(n2)), t2; } function nb(n2, t2) { var r2, e2, a2 = (n2 = B(n2)).includes("j") ? (r2 = n2, e2 = [], function() { if (e2.length = 0, Object.assign(e2, arguments), r2.includes("j")) { var n3 = u2["dynCall_" + r2]; n3 = e2 && e2.length ? n3.apply(null, [t2].concat(e2)) : n3.call(null, t2); } else n3 = nP(t2).apply(null, e2); return n3; }) : nP(t2); return "function" != typeof a2 && V("unknown function pointer with signature " + n2 + ": " + t2), a2; } var nN = void 0; function nI(n2, t2) { var r2 = [], e2 = {}; throw t2.forEach(function n3(t3) { e2[t3] || J[t3] || (nl2[t3] ? nl2[t3].forEach(n3) : (r2.push(t3), e2[t3] = true)); }), new nN(n2 + ": " + r2.map(q).join([", "])); } function nw(n2, t2, r2, e2, a2) { var i2 = t2.length; 2 > i2 && V("argTypes array size mismatch! Must at least get return value and 'this' types!"); var o2 = null !== t2[1] && null !== r2, s2 = false; for (r2 = 1; r2 < t2.length; ++r2) if (null !== t2[r2] && void 0 === t2[r2].U) { s2 = true; break; } var u3 = "void" !== t2[0].name, c3 = i2 - 2, f2 = Array(c3), l3 = [], h3 = []; return function() { if (arguments.length !== c3 && V("function " + n2 + " called with " + arguments.length + " arguments, expected " + c3 + " args!"), h3.length = 0, l3.length = o2 ? 2 : 1, l3[0] = a2, o2) { var r3 = t2[1].toWireType(h3, this); l3[1] = r3; } for (var i3 = 0; i3 < c3; ++i3) f2[i3] = t2[i3 + 2].toWireType(h3, arguments[i3]), l3.push(f2[i3]); if (i3 = e2.apply(null, l3), s2) nu(h3); else for (var p2 = o2 ? 1 : 2; p2 < t2.length; p2++) { var v3 = 1 === p2 ? r3 : f2[p2 - 2]; null !== t2[p2].U && t2[p2].U(v3); } return u3 ? t2[0].fromWireType(i3) : void 0; }; } function nS(n2, t2) { for (var r2 = [], e2 = 0; e2 < n2; e2++) r2.push(_2[t2 + 4 * e2 >> 2]); return r2; } function nR(n2) { 4 < n2 && 0 == --M[n2].fa && (M[n2] = void 0, F2.push(n2)); } function nC(n2) { if (null === n2) return "null"; var t2 = typeof n2; return "object" === t2 || "array" === t2 || "function" === t2 ? n2.toString() : "" + n2; } function nW(n2, t2) { for (var r2 = "", e2 = 0; !(e2 >= t2 / 2); ++e2) { var a2 = m2[n2 + 2 * e2 >> 1]; if (0 == a2) break; r2 += String.fromCharCode(a2); } return r2; } function nU(n2, t2, r2) { if (void 0 === r2 && (r2 = 2147483647), 2 > r2) return 0; r2 -= 2; var e2 = t2; r2 = r2 < 2 * n2.length ? r2 / 2 : n2.length; for (var a2 = 0; a2 < r2; ++a2) m2[t2 >> 1] = n2.charCodeAt(a2), t2 += 2; return m2[t2 >> 1] = 0, t2 - e2; } function nM(n2) { return 2 * n2.length; } function nF(n2, t2) { for (var r2 = 0, e2 = ""; !(r2 >= t2 / 4); ) { var a2 = g3[n2 + 4 * r2 >> 2]; if (0 == a2) break; ++r2, 65536 <= a2 ? (a2 -= 65536, e2 += String.fromCharCode(55296 | a2 >> 10, 56320 | 1023 & a2)) : e2 += String.fromCharCode(a2); } return e2; } function nD(n2, t2, r2) { if (void 0 === r2 && (r2 = 2147483647), 4 > r2) return 0; var e2 = t2; r2 = e2 + r2 - 4; for (var a2 = 0; a2 < n2.length; ++a2) { var i2 = n2.charCodeAt(a2); if (55296 <= i2 && 57343 >= i2 && (i2 = 65536 + ((1023 & i2) << 10) | 1023 & n2.charCodeAt(++a2)), g3[t2 >> 2] = i2, (t2 += 4) + 4 > r2) break; } return g3[t2 >> 2] = 0, t2 - e2; } function nk(n2) { for (var t2 = 0, r2 = 0; r2 < n2.length; ++r2) { var e2 = n2.charCodeAt(r2); 55296 <= e2 && 57343 >= e2 && ++r2, t2 += 4; } return t2; } var nV = {}; function nj(n2) { var t2 = nV[n2]; return void 0 === t2 ? B(n2) : t2; } var nG = [], nY = [], nX = [null, [], []]; k = u2.BindingError = D("BindingError"), u2.count_emval_handles = function() { for (var n2 = 0, t2 = 5; t2 < M.length; ++t2) void 0 !== M[t2] && ++n2; return n2; }, u2.get_first_emval = function() { for (var n2 = 5; n2 < M.length; ++n2) if (void 0 !== M[n2]) return M[n2]; return null; }, Y = u2.PureVirtualError = D("PureVirtualError"); for (var nB = Array(256), nH = 0; 256 > nH; ++nH) nB[nH] = String.fromCharCode(nH); X = nB, u2.getInheritedInstanceCount = function() { return Object.keys($).length; }, u2.getLiveInheritedInstances = function() { var n2, t2 = []; for (n2 in $) $.hasOwnProperty(n2) && t2.push($[n2]); return t2; }, u2.flushPendingDeletes = x2, u2.setDelayFunction = function(n2) { z = n2, H.length && z && z(x2); }, ne2 = u2.InternalError = D("InternalError"), ny.prototype.isAliasOf = function(n2) { if (!(this instanceof ny && n2 instanceof ny)) return false; var t2 = this.L.O.M, r2 = this.L.N, e2 = n2.L.O.M; for (n2 = n2.L.N; t2.P; ) r2 = t2.aa(r2), t2 = t2.P; for (; e2.P; ) n2 = e2.aa(n2), e2 = e2.P; return t2 === e2 && r2 === n2; }, ny.prototype.clone = function() { if (this.L.N || nd(this), this.L.$) return this.L.count.value += 1, this; var n2 = no, t2 = Object, r2 = t2.create, e2 = Object.getPrototypeOf(this), a2 = this.L; return n2 = n2(r2.call(t2, e2, { L: { value: { count: a2.count, Z: a2.Z, $: a2.$, N: a2.N, O: a2.O, S: a2.S, T: a2.T } } })), n2.L.count.value += 1, n2.L.Z = false, n2; }, ny.prototype.delete = function() { this.L.N || nd(this), this.L.Z && !this.L.$ && V("Object already scheduled for deletion"), Q(this), nt(this.L), this.L.$ || (this.L.S = void 0, this.L.N = void 0); }, ny.prototype.isDeleted = function() { return !this.L.N; }, ny.prototype.deleteLater = function() { return this.L.N || nd(this), this.L.Z && !this.L.$ && V("Object already scheduled for deletion"), H.push(this), 1 === H.length && z && z(x2), this.L.Z = true, this; }, nA.prototype.pa = function(n2) { return this.ja && (n2 = this.ja(n2)), n2; }, nA.prototype.ga = function(n2) { this.V && this.V(n2); }, nA.prototype.argPackAdvance = 8, nA.prototype.readValueFromPointer = nc, nA.prototype.deleteObject = function(n2) { null !== n2 && n2.delete(); }, nA.prototype.fromWireType = function(n2) { function t2() { return this.ca ? ni(this.M.W, { O: this.va, N: e2, T: this, S: n2 }) : ni(this.M.W, { O: this, N: n2 }); } var r2, e2 = this.pa(n2); if (!e2) return this.ga(n2), null; var a2 = $[Z(this.M, e2)]; if (void 0 !== a2) return 0 === a2.L.count.value ? (a2.L.N = e2, a2.L.S = n2, a2.clone()) : (a2 = a2.clone(), this.ga(n2), a2); if (!(a2 = nr[a2 = this.M.oa(e2)])) return t2.call(this); a2 = this.ba ? a2.ka : a2.pointerType; var i2 = function n3(t3, r3, e3) { return r3 === e3 ? t3 : void 0 === e3.P ? null : null === (t3 = n3(t3, r3, e3.P)) ? null : e3.ma(t3); }(e2, this.M, a2.M); return null === i2 ? t2.call(this) : this.ca ? ni(a2.M.W, { O: a2, N: i2, T: this, S: n2 }) : ni(a2.M.W, { O: a2, N: i2 }); }, nN = u2.UnboundTypeError = D("UnboundTypeError"); var nx = { q: function(n2, t2, r2) { n2 = B(n2), t2 = K2(t2, "wrapper"), r2 = j(r2); var e2 = [].slice, a2 = t2.M, i2 = a2.W, o2 = a2.P.W, s2 = a2.P.constructor; for (var u3 in n2 = U(n2, function() { a2.P.ia.forEach(function(n3) { if (this[n3] === o2[n3]) throw new Y("Pure virtual function " + n3 + " must be implemented in JavaScript"); }.bind(this)), Object.defineProperty(this, "__parent", { value: i2 }), this.__construct.apply(this, e2.call(arguments)); }), i2.__construct = function() { this === i2 && V("Pass correct 'this' to __construct"); var n3 = s2.implement.apply(void 0, [this].concat(e2.call(arguments))); Q(n3); var t3 = n3.L; n3.notifyOnDestruction(), t3.$ = true, Object.defineProperties(this, { L: { value: t3 } }), no(this), n3 = Z(a2, n3 = t3.N), $.hasOwnProperty(n3) ? V("Tried to register registered instance: " + n3) : $[n3] = this; }, i2.__destruct = function() { this === i2 && V("Pass correct 'this' to __destruct"), Q(this); var n3 = this.L.N; n3 = Z(a2, n3), $.hasOwnProperty(n3) ? delete $[n3] : V("Tried to unregister unregistered instance: " + n3); }, n2.prototype = Object.create(i2), r2) n2.prototype[u3] = r2[u3]; return G(n2); }, l: function(n2) { var t2 = ns2[n2]; delete ns2[n2]; var r2 = t2.ea, e2 = t2.V, a2 = t2.ha; nh([n2], a2.map((n3) => n3.sa).concat(a2.map((n3) => n3.ya)), (n3) => { var i2 = {}; return a2.forEach((t3, r3) => { var e3 = n3[r3], o2 = t3.qa, s2 = t3.ra, u3 = n3[r3 + a2.length], c3 = t3.xa, f2 = t3.za; i2[t3.na] = { read: (n4) => e3.fromWireType(o2(s2, n4)), write: (n4, t4) => { var r4 = []; c3(f2, n4, u3.toWireType(r4, t4)), nu(r4); } }; }), [{ name: t2.name, fromWireType: function(n4) { var t3, r3 = {}; for (t3 in i2) r3[t3] = i2[t3].read(n4); return e2(n4), r3; }, toWireType: function(n4, t3) { for (var a3 in i2) if (!(a3 in t3)) throw TypeError('Missing field: "' + a3 + '"'); var o2 = r2(); for (a3 in i2) i2[a3].write(o2, t3[a3]); return null !== n4 && n4.push(e2, o2), o2; }, argPackAdvance: 8, readValueFromPointer: nc, U: e2 }]; }); }, v: function() { }, B: function(n2, t2, r2, e2, a2) { var i2 = np(r2); nv(n2, { name: t2 = B(t2), fromWireType: function(n3) { return !!n3; }, toWireType: function(n3, t3) { return t3 ? e2 : a2; }, argPackAdvance: 8, readValueFromPointer: function(n3) { if (1 === r2) var e3 = d2; else if (2 === r2) e3 = m2; else if (4 === r2) e3 = g3; else throw TypeError("Unknown boolean type size: " + t2); return this.fromWireType(e3[n3 >> i2]); }, U: null }); }, h: function(n2, t2, r2, e2, a2, i2, o2, s2, c3, f2, l3, h3, p2) { l3 = B(l3), i2 = nb(a2, i2), s2 && (s2 = nb(o2, s2)), f2 && (f2 = nb(c3, f2)), p2 = nb(h3, p2); var v3, d3 = W(l3); v3 = function() { nI("Cannot construct " + l3 + " due to unbound types", [e2]); }, u2.hasOwnProperty(d3) ? (V("Cannot register public name '" + d3 + "' twice"), nm(u2, d3, d3), u2.hasOwnProperty(void 0) && V("Cannot register multiple overloads of a function with the same number of arguments (undefined)!"), u2[d3].R[void 0] = v3) : u2[d3] = v3, nh([n2, t2, r2], e2 ? [e2] : [], function(t3) { if (t3 = t3[0], e2) var r3, a3 = t3.M, o3 = a3.W; else o3 = ny.prototype; t3 = U(d3, function() { if (Object.getPrototypeOf(this) !== c4) throw new k("Use 'new' to construct " + l3); if (void 0 === h4.X) throw new k(l3 + " has no accessible constructor"); var n3 = h4.X[arguments.length]; if (void 0 === n3) throw new k("Tried to invoke ctor of " + l3 + " with invalid number of parameters (" + arguments.length + ") - expected (" + Object.keys(h4.X).toString() + ") parameters instead!"); return n3.apply(this, arguments); }); var c4 = Object.create(o3, { constructor: { value: t3 } }); t3.prototype = c4; var h4 = new nE(l3, t3, c4, p2, a3, i2, s2, f2); a3 = new nA(l3, h4, true, false), o3 = new nA(l3 + "*", h4, false, false); var v4 = new nA(l3 + " const*", h4, false, true); return nr[n2] = { pointerType: o3, ka: v4 }, r3 = t3, u2.hasOwnProperty(d3) || na("Replacing nonexistant public symbol"), u2[d3] = r3, u2[d3].Y = void 0, [a3, o3, v4]; }); }, d: function(n2, t2, r2, e2, a2, i2, o2) { var s2 = nS(r2, e2); t2 = B(t2), i2 = nb(a2, i2), nh([], [n2], function(n3) { function e3() { nI("Cannot call " + a3 + " due to unbound types", s2); } var a3 = (n3 = n3[0]).name + "." + t2; t2.startsWith("@@") && (t2 = Symbol[t2.substring(2)]); var u3 = n3.M.constructor; return void 0 === u3[t2] ? (e3.Y = r2 - 1, u3[t2] = e3) : (nm(u3, t2, a3), u3[t2].R[r2 - 1] = e3), nh([], s2, function(n4) { return n4 = nw(a3, [n4[0], null].concat(n4.slice(1)), null, i2, o2), void 0 === u3[t2].R ? (n4.Y = r2 - 1, u3[t2] = n4) : u3[t2].R[r2 - 1] = n4, []; }), []; }); }, p: function(n2, t2, r2, e2, a2, i2) { 0 < t2 || w2(); var o2 = nS(t2, r2); a2 = nb(e2, a2), nh([], [n2], function(n3) { var r3 = "constructor " + (n3 = n3[0]).name; if (void 0 === n3.M.X && (n3.M.X = []), void 0 !== n3.M.X[t2 - 1]) throw new k("Cannot register multiple constructors with identical number of parameters (" + (t2 - 1) + ") for class '" + n3.name + "'! Overload resolution is currently only performed using the parameter count, not actual type info!"); return n3.M.X[t2 - 1] = () => { nI("Cannot construct " + n3.name + " due to unbound types", o2); }, nh([], o2, function(e3) { return e3.splice(1, 0, null), n3.M.X[t2 - 1] = nw(r3, e3, null, a2, i2), []; }), []; }); }, a: function(n2, t2, r2, e2, a2, i2, o2, s2) { var u3 = nS(r2, e2); t2 = B(t2), i2 = nb(a2, i2), nh([], [n2], function(n3) { function e3() { nI("Cannot call " + a3 + " due to unbound types", u3); } var a3 = (n3 = n3[0]).name + "." + t2; t2.startsWith("@@") && (t2 = Symbol[t2.substring(2)]), s2 && n3.M.ia.push(t2); var c3 = n3.M.W, f2 = c3[t2]; return void 0 === f2 || void 0 === f2.R && f2.className !== n3.name && f2.Y === r2 - 2 ? (e3.Y = r2 - 2, e3.className = n3.name, c3[t2] = e3) : (nm(c3, t2, a3), c3[t2].R[r2 - 2] = e3), nh([], u3, function(e4) { return e4 = nw(a3, e4, n3, i2, o2), void 0 === c3[t2].R ? (e4.Y = r2 - 2, c3[t2] = e4) : c3[t2].R[r2 - 2] = e4, []; }), []; }); }, A: function(n2, t2) { nv(n2, { name: t2 = B(t2), fromWireType: function(n3) { var t3 = j(n3); return nR(n3), t3; }, toWireType: function(n3, t3) { return G(t3); }, argPackAdvance: 8, readValueFromPointer: nc, U: null }); }, n: function(n2, t2, r2) { r2 = np(r2), nv(n2, { name: t2 = B(t2), fromWireType: function(n3) { return n3; }, toWireType: function(n3, t3) { return t3; }, argPackAdvance: 8, readValueFromPointer: function(n3, t3) { switch (t3) { case 2: return function(n4) { return this.fromWireType(T[n4 >> 2]); }; case 3: return function(n4) { return this.fromWireType(L[n4 >> 3]); }; default: throw TypeError("Unknown float type: " + n3); } }(t2, r2), U: null }); }, e: function(n2, t2, r2, e2, a2) { t2 = B(t2), -1 === a2 && (a2 = 4294967295), a2 = np(r2); var i2 = (n3) => n3; if (0 === e2) { var o2 = 32 - 8 * r2; i2 = (n3) => n3 << o2 >>> o2; } r2 = t2.includes("unsigned") ? function(n3, t3) { return t3 >>> 0; } : function(n3, t3) { return t3; }, nv(n2, { name: t2, fromWireType: i2, toWireType: r2, argPackAdvance: 8, readValueFromPointer: function(n3, t3, r3) { switch (t3) { case 0: return r3 ? function(n4) { return d2[n4]; } : function(n4) { return y[n4]; }; case 1: return r3 ? function(n4) { return m2[n4 >> 1]; } : function(n4) { return E[n4 >> 1]; }; case 2: return r3 ? function(n4) { return g3[n4 >> 2]; } : function(n4) { return _2[n4 >> 2]; }; default: throw TypeError("Unknown integer type: " + n3); } }(t2, a2, 0 !== e2), U: null }); }, b: function(n2, t2, r2) { function e2(n3) { n3 >>= 2; var t3 = _2; return new a2(t3.buffer, t3[n3 + 1], t3[n3]); } var a2 = [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array, Float64Array][t2]; nv(n2, { name: r2 = B(r2), fromWireType: e2, argPackAdvance: 8, readValueFromPointer: e2 }, { ta: true }); }, o: function(n2, t2) { var r2 = "std::string" === (t2 = B(t2)); nv(n2, { name: t2, fromWireType: function(n3) { var t3 = _2[n3 >> 2], e2 = n3 + 4; if (r2) for (var a2 = e2, i2 = 0; i2 <= t3; ++i2) { var o2 = e2 + i2; if (i2 == t3 || 0 == y[o2]) { if (a2 = a2 ? p(y, a2, o2 - a2) : "", void 0 === s2) var s2 = a2; else s2 += "\0" + a2; a2 = o2 + 1; } } else { for (i2 = 0, s2 = Array(t3); i2 < t3; ++i2) s2[i2] = String.fromCharCode(y[e2 + i2]); s2 = s2.join(""); } return nZ(n3), s2; }, toWireType: function(n3, t3) { t3 instanceof ArrayBuffer && (t3 = new Uint8Array(t3)); var e2, a2 = "string" == typeof t3; if (a2 || t3 instanceof Uint8Array || t3 instanceof Uint8ClampedArray || t3 instanceof Int8Array || V("Cannot pass non-string to std::string"), r2 && a2) { var i2 = 0; for (e2 = 0; e2 < t3.length; ++e2) { var o2 = t3.charCodeAt(e2); 127 >= o2 ? i2++ : 2047 >= o2 ? i2 += 2 : 55296 <= o2 && 57343 >= o2 ? (i2 += 4, ++e2) : i2 += 3; } e2 = i2; } else e2 = t3.length; if (o2 = (i2 = n$(4 + e2 + 1)) + 4, _2[i2 >> 2] = e2, r2 && a2) { if (a2 = o2, o2 = e2 + 1, e2 = y, 0 < o2) { o2 = a2 + o2 - 1; for (var s2 = 0; s2 < t3.length; ++s2) { var u3 = t3.charCodeAt(s2); if (55296 <= u3 && 57343 >= u3 && (u3 = 65536 + ((1023 & u3) << 10) | 1023 & t3.charCodeAt(++s2)), 127 >= u3) { if (a2 >= o2) break; e2[a2++] = u3; } else { if (2047 >= u3) { if (a2 + 1 >= o2) break; e2[a2++] = 192 | u3 >> 6; } else { if (65535 >= u3) { if (a2 + 2 >= o2) break; e2[a2++] = 224 | u3 >> 12; } else { if (a2 + 3 >= o2) break; e2[a2++] = 240 | u3 >> 18, e2[a2++] = 128 | u3 >> 12 & 63; } e2[a2++] = 128 | u3 >> 6 & 63; } e2[a2++] = 128 | 63 & u3; } } e2[a2] = 0; } } else if (a2) for (a2 = 0; a2 < e2; ++a2) 255 < (s2 = t3.charCodeAt(a2)) && (nZ(o2), V("String has UTF-16 code units that do not fit in 8 bits")), y[o2 + a2] = s2; else for (a2 = 0; a2 < e2; ++a2) y[o2 + a2] = t3[a2]; return null !== n3 && n3.push(nZ, i2), i2; }, argPackAdvance: 8, readValueFromPointer: nc, U: function(n3) { nZ(n3); } }); }, k: function(n2, t2, r2) { if (r2 = B(r2), 2 === t2) var e2 = nW, a2 = nU, i2 = nM, o2 = () => E, s2 = 1; else 4 === t2 && (e2 = nF, a2 = nD, i2 = nk, o2 = () => _2, s2 = 2); nv(n2, { name: r2, fromWireType: function(n3) { for (var r3, a3 = _2[n3 >> 2], i3 = o2(), u3 = n3 + 4, c3 = 0; c3 <= a3; ++c3) { var f2 = n3 + 4 + c3 * t2; (c3 == a3 || 0 == i3[f2 >> s2]) && (u3 = e2(u3, f2 - u3), void 0 === r3 ? r3 = u3 : r3 += "\0" + u3, u3 = f2 + t2); } return nZ(n3), r3; }, toWireType: function(n3, e3) { "string" != typeof e3 && V("Cannot pass non-string to C++ string type " + r2); var o3 = i2(e3), u3 = n$(4 + o3 + t2); return _2[u3 >> 2] = o3 >> s2, a2(e3, u3 + 4, o3 + t2), null !== n3 && n3.push(nZ, u3), u3; }, argPackAdvance: 8, readValueFromPointer: nc, U: function(n3) { nZ(n3); } }); }, m: function(n2, t2, r2, e2, a2, i2) { ns2[n2] = { name: B(t2), ea: nb(r2, e2), V: nb(a2, i2), ha: [] }; }, c: function(n2, t2, r2, e2, a2, i2, o2, s2, u3, c3) { ns2[n2].ha.push({ na: B(t2), sa: r2, qa: nb(e2, a2), ra: i2, ya: o2, xa: nb(s2, u3), za: c3 }); }, C: function(n2, t2) { nv(n2, { ua: true, name: t2 = B(t2), argPackAdvance: 0, fromWireType: function() { }, toWireType: function() { } }); }, t: function(n2, t2, r2, e2, a2) { n2 = nG[n2], t2 = j(t2), r2 = nj(r2); var i2 = []; return _2[e2 >> 2] = G(i2), n2(t2, r2, i2, a2); }, j: function(n2, t2, r2, e2) { n2 = nG[n2], n2(t2 = j(t2), r2 = nj(r2), null, e2); }, f: nR, g: function(n2, t2) { var r2, e2, a2 = function(n3, t3) { for (var r3 = Array(n3), e3 = 0; e3 < n3; ++e3) r3[e3] = K2(_2[t3 + 4 * e3 >> 2], "parameter " + e3); return r3; }(n2, t2), i2 = a2[0], o2 = nY[t2 = i2.name + "_$" + a2.slice(1).map(function(n3) { return n3.name; }).join("_") + "$"]; if (void 0 !== o2) return o2; var s2 = Array(n2 - 1); return r2 = (t3, r3, e3, o3) => { for (var u3 = 0, c3 = 0; c3 < n2 - 1; ++c3) s2[c3] = a2[c3 + 1].readValueFromPointer(o3 + u3), u3 += a2[c3 + 1].argPackAdvance; for (c3 = 0, t3 = t3[r3].apply(t3, s2); c3 < n2 - 1; ++c3) a2[c3 + 1].la && a2[c3 + 1].la(s2[c3]); if (!i2.ua) return i2.toWireType(e3, t3); }, e2 = nG.length, nG.push(r2), o2 = e2, nY[t2] = o2; }, r: function(n2) { 4 < n2 && (M[n2].fa += 1); }, s: function(n2) { nu(j(n2)), nR(n2); }, i: function() { w2(""); }, x: function(n2, t2, r2) { y.copyWithin(n2, t2, t2 + r2); }, w: function(n2) { var t2 = y.length; if (2147483648 < (n2 >>>= 0)) return false; for (var r2 = 1; 4 >= r2; r2 *= 2) { var e2 = t2 * (1 + 0.2 / r2); e2 = Math.min(e2, n2 + 100663296); var a2 = Math, i2 = a2.min; e2 = Math.max(n2, e2), e2 += (65536 - e2 % 65536) % 65536; n: { var o2 = l2.buffer; try { l2.grow(i2.call(a2, 2147483648, e2) - o2.byteLength + 65535 >>> 16), v2(); var s2 = 1; break n; } catch (n3) { } s2 = void 0; } if (s2) return true; } return false; }, z: function() { return 52; }, u: function() { return 70; }, y: function(n2, t2, r2, e2) { for (var a2 = 0, i2 = 0; i2 < r2; i2++) { var u3 = _2[t2 >> 2], c3 = _2[t2 + 4 >> 2]; t2 += 8; for (var f2 = 0; f2 < c3; f2++) { var l3 = y[u3 + f2], h3 = nX[n2]; 0 === l3 || 10 === l3 ? ((1 === n2 ? o : s)(p(h3, 0)), h3.length = 0) : h3.push(l3); } a2 += c3; } return _2[e2 >> 2] = a2, 0; } }; !function() { function n2(n3) { u2.asm = n3.exports, l2 = u2.asm.D, v2(), A = u2.asm.I, P3.unshift(u2.asm.E), 0 == --N && I && (n3 = I, I = null, n3()); } function t2(t3) { n2(t3.instance); } function e2(n3) { return ("function" == typeof fetch ? fetch(r, { credentials: "same-origin" }).then(function(n4) { if (!n4.ok) throw "failed to load wasm binary file at '" + r + "'"; return n4.arrayBuffer(); }).catch(function() { return R3(); }) : Promise.resolve().then(function() { return R3(); })).then(function(n4) { return WebAssembly.instantiate(n4, a2); }).then(function(n4) { return n4; }).then(n3, function(n4) { s("failed to asynchronously prepare wasm: " + n4), w2(n4); }); } var a2 = { a: nx }; if (N++, u2.instantiateWasm) try { return u2.instantiateWasm(a2, n2); } catch (n3) { s("Module.instantiateWasm callback failed with error: " + n3), f(n3); } ("function" != typeof WebAssembly.instantiateStreaming || S2() || "function" != typeof fetch ? e2(t2) : fetch(r, { credentials: "same-origin" }).then(function(n3) { return WebAssembly.instantiateStreaming(n3, a2).then(t2, function(n4) { return s("wasm streaming compile failed: " + n4), s("falling back to ArrayBuffer instantiation"), e2(t2); }); })).catch(f); }(); var nz = u2.___getTypeName = function() { return (nz = u2.___getTypeName = u2.asm.F).apply(null, arguments); }; function n$() { return (n$ = u2.asm.H).apply(null, arguments); } function nZ() { return (nZ = u2.asm.J).apply(null, arguments); } function nJ() { 0 < N || (C(O), 0 < N || e || (e = true, u2.calledRun = true, h2 || (C(P3), c2(u2), C(b)))); } return u2.__embind_initialize_bindings = function() { return (u2.__embind_initialize_bindings = u2.asm.G).apply(null, arguments); }, u2.dynCall_jiji = function() { return (u2.dynCall_jiji = u2.asm.K).apply(null, arguments); }, I = function n2() { e || nJ(), e || (I = n2); }, nJ(), t.ready; }; })(); async function initYoga(t) { let r = await yoga({ instantiateWasm(n, r2) { WebAssembly.instantiate(t, n).then((n2) => { n2 instanceof WebAssembly.Instance ? r2(n2) : r2(n2.instance); }); } }); return wrapAsm(r); } // node_modules/.pnpm/@resvg+resvg-wasm@2.4.0/node_modules/@resvg/resvg-wasm/index.mjs var resvg_wasm_exports = {}; __export(resvg_wasm_exports, { Resvg: () => Resvg2, initWasm: () => initWasm }); var wasm; var heap = new Array(128).fill(void 0); heap.push(void 0, null, true, false); var heap_next = heap.length; function addHeapObject(obj) { if (heap_next === heap.length) heap.push(heap.length + 1); const idx = heap_next; heap_next = heap[idx]; heap[idx] = obj; return idx; } function getObject(idx) { return heap[idx]; } function dropObject(idx) { if (idx < 132) return; heap[idx] = heap_next; heap_next = idx; } function takeObject(idx) { const ret = getObject(idx); dropObject(idx); return ret; } var WASM_VECTOR_LEN = 0; var cachedUint8Memory0 = null; function getUint8Memory0() { if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) { cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer); } return cachedUint8Memory0; } var cachedTextEncoder = new TextEncoder("utf-8"); var encodeString = typeof cachedTextEncoder.encodeInto === "function" ? function(arg, view) { return cachedTextEncoder.encodeInto(arg, view); } : function(arg, view) { const buf = cachedTextEncoder.encode(arg); view.set(buf); return { read: arg.length, written: buf.length }; }; function passStringToWasm0(arg, malloc, realloc) { if (realloc === void 0) { const buf = cachedTextEncoder.encode(arg); const ptr2 = malloc(buf.length); getUint8Memory0().subarray(ptr2, ptr2 + buf.length).set(buf); WASM_VECTOR_LEN = buf.length; return ptr2; } let len = arg.length; let ptr = malloc(len); const mem = getUint8Memory0(); let offset = 0; for (; offset < len; offset++) { const code = arg.charCodeAt(offset); if (code > 127) break; mem[ptr + offset] = code; } if (offset !== len) { if (offset !== 0) { arg = arg.slice(offset); } ptr = realloc(ptr, len, len = offset + arg.length * 3); const view = getUint8Memory0().subarray(ptr + offset, ptr + len); const ret = encodeString(arg, view); offset += ret.written; } WASM_VECTOR_LEN = offset; return ptr; } function isLikeNone(x2) { return x2 === void 0 || x2 === null; } var cachedInt32Memory0 = null; function getInt32Memory0() { if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) { cachedInt32Memory0 = new Int32Array(wasm.memory.buffer); } return cachedInt32Memory0; } var cachedTextDecoder = new TextDecoder("utf-8", { ignoreBOM: true, fatal: true }); cachedTextDecoder.decode(); function getStringFromWasm0(ptr, len) { return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len)); } function _assertClass(instance, klass) { if (!(instance instanceof klass)) { throw new Error(`expected instance of ${klass.name}`); } return instance.ptr; } var BBox = class { static __wrap(ptr) { const obj = Object.create(BBox.prototype); obj.ptr = ptr; return obj; } __destroy_into_raw() { const ptr = this.ptr; this.ptr = 0; return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_bbox_free(ptr); } /** * @returns {number} */ get x() { const ret = wasm.__wbg_get_bbox_x(this.ptr); return ret; } /** * @param {number} arg0 */ set x(arg0) { wasm.__wbg_set_bbox_x(this.ptr, arg0); } /** * @returns {number} */ get y() { const ret = wasm.__wbg_get_bbox_y(this.ptr); return ret; } /** * @param {number} arg0 */ set y(arg0) { wasm.__wbg_set_bbox_y(this.ptr, arg0); } /** * @returns {number} */ get width() { const ret = wasm.__wbg_get_bbox_width(this.ptr); return ret; } /** * @param {number} arg0 */ set width(arg0) { wasm.__wbg_set_bbox_width(this.ptr, arg0); } /** * @returns {number} */ get height() { const ret = wasm.__wbg_get_bbox_height(this.ptr); return ret; } /** * @param {number} arg0 */ set height(arg0) { wasm.__wbg_set_bbox_height(this.ptr, arg0); } }; var RenderedImage = class { static __wrap(ptr) { const obj = Object.create(RenderedImage.prototype); obj.ptr = ptr; return obj; } __destroy_into_raw() { const ptr = this.ptr; this.ptr = 0; return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_renderedimage_free(ptr); } /** * Get the PNG width * @returns {number} */ get width() { const ret = wasm.renderedimage_width(this.ptr); return ret >>> 0; } /** * Get the PNG height * @returns {number} */ get height() { const ret = wasm.renderedimage_height(this.ptr); return ret >>> 0; } /** * Write the image data to Uint8Array * @returns {Uint8Array} */ asPng() { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); wasm.renderedimage_asPng(retptr, this.ptr); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; var r2 = getInt32Memory0()[retptr / 4 + 2]; if (r2) { throw takeObject(r1); } return takeObject(r0); } finally { wasm.__wbindgen_add_to_stack_pointer(16); } } /** * Get the RGBA pixels of the image * @returns {Uint8Array} */ get pixels() { const ret = wasm.renderedimage_pixels(this.ptr); return takeObject(ret); } }; var Resvg = class { static __wrap(ptr) { const obj = Object.create(Resvg.prototype); obj.ptr = ptr; return obj; } __destroy_into_raw() { const ptr = this.ptr; this.ptr = 0; return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_resvg_free(ptr); } /** * @param {Uint8Array | string} svg * @param {string | undefined} options */ constructor(svg, options) { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); var ptr0 = isLikeNone(options) ? 0 : passStringToWasm0(options, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); var len0 = WASM_VECTOR_LEN; wasm.resvg_new(retptr, addHeapObject(svg), ptr0, len0); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; var r2 = getInt32Memory0()[retptr / 4 + 2]; if (r2) { throw takeObject(r1); } return Resvg.__wrap(r0); } finally { wasm.__wbindgen_add_to_stack_pointer(16); } } /** * Get the SVG width * @returns {number} */ get width() { const ret = wasm.resvg_width(this.ptr); return ret; } /** * Get the SVG height * @returns {number} */ get height() { const ret = wasm.resvg_height(this.ptr); return ret; } /** * Renders an SVG in Wasm * @returns {RenderedImage} */ render() { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); wasm.resvg_render(retptr, this.ptr); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; var r2 = getInt32Memory0()[retptr / 4 + 2]; if (r2) { throw takeObject(r1); } return RenderedImage.__wrap(r0); } finally { wasm.__wbindgen_add_to_stack_pointer(16); } } /** * Output usvg-simplified SVG string * @returns {string} */ toString() { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); wasm.resvg_toString(retptr, this.ptr); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; return getStringFromWasm0(r0, r1); } finally { wasm.__wbindgen_add_to_stack_pointer(16); wasm.__wbindgen_free(r0, r1); } } /** * Calculate a maximum bounding box of all visible elements in this SVG. * * Note: path bounding box are approx values. * @returns {BBox | undefined} */ innerBBox() { const ret = wasm.resvg_innerBBox(this.ptr); return ret === 0 ? void 0 : BBox.__wrap(ret); } /** * Calculate a maximum bounding box of all visible elements in this SVG. * This will first apply transform. * Similar to `SVGGraphicsElement.getBBox()` DOM API. * @returns {BBox | undefined} */ getBBox() { const ret = wasm.resvg_getBBox(this.ptr); return ret === 0 ? void 0 : BBox.__wrap(ret); } /** * Use a given `BBox` to crop the svg. Currently this method simply changes * the viewbox/size of the svg and do not move the elements for simplicity * @param {BBox} bbox */ cropByBBox(bbox) { _assertClass(bbox, BBox); wasm.resvg_cropByBBox(this.ptr, bbox.ptr); } /** * @returns {Array} */ imagesToResolve() { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); wasm.resvg_imagesToResolve(retptr, this.ptr); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; var r2 = getInt32Memory0()[retptr / 4 + 2]; if (r2) { throw takeObject(r1); } return takeObject(r0); } finally { wasm.__wbindgen_add_to_stack_pointer(16); } } /** * @param {string} href * @param {Uint8Array} buffer */ resolveImage(href, buffer) { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); const ptr0 = passStringToWasm0(href, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len0 = WASM_VECTOR_LEN; wasm.resvg_resolveImage(retptr, this.ptr, ptr0, len0, addHeapObject(buffer)); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; if (r1) { throw takeObject(r0); } } finally { wasm.__wbindgen_add_to_stack_pointer(16); } } }; async function load2(module, imports) { if (typeof Response === "function" && module instanceof Response) { if (typeof WebAssembly.instantiateStreaming === "function") { try { return await WebAssembly.instantiateStreaming(module, imports); } catch (e) { if (module.headers.get("Content-Type") != "application/wasm") { console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e); } else { throw e; } } } const bytes = await module.arrayBuffer(); return await WebAssembly.instantiate(bytes, imports); } else { const instance = await WebAssembly.instantiate(module, imports); if (instance instanceof WebAssembly.Instance) { return { instance, module }; } else { return instance; } } } function getImports() { const imports = {}; imports.wbg = {}; imports.wbg.__wbg_new_15d3966e9981a196 = function(arg0, arg1) { const ret = new Error(getStringFromWasm0(arg0, arg1)); return addHeapObject(ret); }; imports.wbg.__wbindgen_memory = function() { const ret = wasm.memory; return addHeapObject(ret); }; imports.wbg.__wbg_buffer_cf65c07de34b9a08 = function(arg0) { const ret = getObject(arg0).buffer; return addHeapObject(ret); }; imports.wbg.__wbg_newwithbyteoffsetandlength_9fb2f11355ecadf5 = function(arg0, arg1, arg2) { const ret = new Uint8Array(getObject(arg0), arg1 >>> 0, arg2 >>> 0); return addHeapObject(ret); }; imports.wbg.__wbindgen_object_drop_ref = function(arg0) { takeObject(arg0); }; imports.wbg.__wbg_new_537b7341ce90bb31 = function(arg0) { const ret = new Uint8Array(getObject(arg0)); return addHeapObject(ret); }; imports.wbg.__wbg_instanceof_Uint8Array_01cebe79ca606cca = function(arg0) { let result; try { result = getObject(arg0) instanceof Uint8Array; } catch (e) { result = false; } const ret = result; return ret; }; imports.wbg.__wbindgen_string_get = function(arg0, arg1) { const obj = getObject(arg1); const ret = typeof obj === "string" ? obj : void 0; var ptr0 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); var len0 = WASM_VECTOR_LEN; getInt32Memory0()[arg0 / 4 + 1] = len0; getInt32Memory0()[arg0 / 4 + 0] = ptr0; }; imports.wbg.__wbg_new_b525de17f44a8943 = function() { const ret = new Array(); return addHeapObject(ret); }; imports.wbg.__wbindgen_string_new = function(arg0, arg1) { const ret = getStringFromWasm0(arg0, arg1); return addHeapObject(ret); }; imports.wbg.__wbg_push_49c286f04dd3bf59 = function(arg0, arg1) { const ret = getObject(arg0).push(getObject(arg1)); return ret; }; imports.wbg.__wbg_length_27a2afe8ab42b09f = function(arg0) { const ret = getObject(arg0).length; return ret; }; imports.wbg.__wbg_set_17499e8aa4003ebd = function(arg0, arg1, arg2) { getObject(arg0).set(getObject(arg1), arg2 >>> 0); }; imports.wbg.__wbindgen_throw = function(arg0, arg1) { throw new Error(getStringFromWasm0(arg0, arg1)); }; return imports; } function initMemory(imports, maybe_memory) { } function finalizeInit(instance, module) { wasm = instance.exports; init.__wbindgen_wasm_module = module; cachedInt32Memory0 = null; cachedUint8Memory0 = null; return wasm; } async function init(input) { if (typeof input === "undefined") { input = new URL("index_bg.wasm", void 0); } const imports = getImports(); if (typeof input === "string" || typeof Request === "function" && input instanceof Request || typeof URL === "function" && input instanceof URL) { input = fetch(input); } initMemory(imports); const { instance, module } = await load2(await input, imports); return finalizeInit(instance, module); } var dist_default = init; var initialized = false; var initWasm = async (module_or_path) => { if (initialized) { throw new Error("Already initialized. The `initWasm()` function can be used only once."); } await dist_default(await module_or_path); initialized = true; }; var Resvg2 = class extends Resvg { /** * @param {Uint8Array | string} svg * @param {ResvgRenderOptions | undefined} options */ constructor(svg, options) { if (!initialized) throw new Error("Wasm has not been initialized. Call `initWasm()` function."); super(svg, JSON.stringify(options)); } }; // src/index.edge.ts import resvg_wasm from "./resvg.wasm?module"; import yoga_wasm from "./yoga.wasm?module"; // src/emoji/index.ts var U200D = String.fromCharCode(8205); var UFE0Fg = /\uFE0F/g; function getIconCode(char) { return toCodePoint(char.indexOf(U200D) < 0 ? char.replace(UFE0Fg, "") : char); } function toCodePoint(unicodeSurrogates) { var r = [], c2 = 0, p = 0, i = 0; while (i < unicodeSurrogates.length) { c2 = unicodeSurrogates.charCodeAt(i++); if (p) { r.push((65536 + (p - 55296 << 10) + (c2 - 56320)).toString(16)); p = 0; } else if (55296 <= c2 && c2 <= 56319) { p = c2; } else { r.push(c2.toString(16)); } } return r.join("-"); } var apis = { twemoji: (code) => "https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/svg/" + code.toLowerCase() + ".svg", openmoji: "https://cdn.jsdelivr.net/npm/@svgmoji/openmoji@2.0.0/svg/", blobmoji: "https://cdn.jsdelivr.net/npm/@svgmoji/blob@2.0.0/svg/", noto: "https://cdn.jsdelivr.net/gh/svgmoji/svgmoji/packages/svgmoji__noto/svg/", fluent: (code) => "https://cdn.jsdelivr.net/gh/shuding/fluentui-emoji-unicode/assets/" + code.toLowerCase() + "_color.svg", fluentFlat: (code) => "https://cdn.jsdelivr.net/gh/shuding/fluentui-emoji-unicode/assets/" + code.toLowerCase() + "_flat.svg" }; function loadEmoji(code, type) { if (!type || !apis[type]) { type = "twemoji"; } const api = apis[type]; if (typeof api === "function") { return fetch(api(code)); } return fetch(`${api}${code.toUpperCase()}.svg`); } // src/language/index.ts var FontDetector = class { constructor() { this.rangesByLang = {}; } async detect(text, fonts) { await this.load(fonts); const result = {}; for (const segment of text) { const lang = this.detectSegment(segment, fonts); if (lang) { result[lang] = result[lang] || ""; result[lang] += segment; } } return result; } detectSegment(segment, fonts) { for (const font of fonts) { const range = this.rangesByLang[font]; if (range && checkSegmentInRange(segment, range)) { return font; } } return null; } async load(fonts) { let params = ""; const existingLang = Object.keys(this.rangesByLang); const langNeedsToLoad = fonts.filter((font) => !existingLang.includes(font)); if (langNeedsToLoad.length === 0) { return; } for (const font of langNeedsToLoad) { params += `family=${font}&`; } params += "display=swap"; const API = `https://fonts.googleapis.com/css2?${params}`; const fontFace = await (await fetch(API, { headers: { // Make sure it returns TTF. "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36" } })).text(); this.addDetectors(fontFace); } addDetectors(input) { const regex = /font-family:\s*'(.+?)';.+?unicode-range:\s*(.+?);/gms; const matches = input.matchAll(regex); for (const [, _lang, range] of matches) { const lang = _lang.replaceAll(" ", "+"); if (!this.rangesByLang[lang]) { this.rangesByLang[lang] = []; } this.rangesByLang[lang].push(...convert(range)); } } }; function convert(input) { return input.split(", ").map((range) => { range = range.replaceAll("U+", ""); const [start, end] = range.split("-").map((hex) => parseInt(hex, 16)); if (isNaN(end)) { return start; } return [start, end]; }); } function checkSegmentInRange(segment, range) { const codePoint = segment.codePointAt(0); if (!codePoint) return false; return range.some((val) => { if (typeof val === "number") { return codePoint === val; } else { const [start, end] = val; return start <= codePoint && codePoint <= end; } }); } var languageFontMap = { "ja-JP": "Noto+Sans+JP", "ko-KR": "Noto+Sans+KR", "zh-CN": "Noto+Sans+SC", "zh-TW": "Noto+Sans+TC", "zh-HK": "Noto+Sans+HK", "th-TH": "Noto+Sans+Thai", "bn-IN": "Noto+Sans+Bengali", "ar-AR": "Noto+Sans+Arabic", "ta-IN": "Noto+Sans+Tamil", "ml-IN": "Noto+Sans+Malayalam", "he-IL": "Noto+Sans+Hebrew", "te-IN": "Noto+Sans+Telugu", devanagari: "Noto+Sans+Devanagari", kannada: "Noto+Sans+Kannada", symbol: ["Noto+Sans+Symbols", "Noto+Sans+Symbols+2"], math: "Noto+Sans+Math", unknown: "Noto+Sans" }; // src/og.ts async function loadGoogleFont(font, text) { if (!font || !text) return; const API = `https://fonts.googleapis.com/css2?family=${font}&text=${encodeURIComponent( text )}`; const css = await (await fetch(API, { headers: { // Make sure it returns TTF. "User-Agent": "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; de-at) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1" } })).text(); const resource = css.match(/src: url\((.+)\) format\('(opentype|truetype)'\)/); if (!resource) throw new Error("Failed to download dynamic font"); const res = await fetch(resource[1]); if (!res.ok) { throw new Error("Failed to download dynamic font. Status: " + res.status); } return res.arrayBuffer(); } var detector = new FontDetector(); var assetCache = /* @__PURE__ */ new Map(); var loadDynamicAsset = ({ emoji }) => { const fn = async (code, text) => { if (code === "emoji") { return `data:image/svg+xml;base64,` + btoa(await (await loadEmoji(getIconCode(text), emoji)).text()); } const codes = code.split("|"); const names = codes.map((code2) => languageFontMap[code2]).filter(Boolean).flat(); if (names.length === 0) return []; try { const textByFont = await detector.detect(text, names); const fonts = Object.keys(textByFont); const fontData = await Promise.all( fonts.map((font) => loadGoogleFont(font, textByFont[font])) ); return fontData.map((data, index) => ({ name: `satori_${codes[index]}_fallback_${text}`, data, weight: 400, style: "normal", lang: codes[index] === "unknown" ? void 0 : codes[index] })); } catch (e) { console.error("Failed to load dynamic font for", text, ". Error:", e); } }; return async (...args) => { const key = JSON.stringify(args); const cache = assetCache.get(key); if (cache) return cache; const asset = await fn(...args); assetCache.set(key, asset); return asset; }; }; async function render(satori, resvg, opts, defaultFonts, element) { const options = Object.assign( { width: 1200, height: 630, debug: false }, opts ); const svg = await satori(element, { width: options.width, height: options.height, debug: options.debug, fonts: options.fonts || defaultFonts, loadAdditionalAsset: loadDynamicAsset({ emoji: options.emoji }) }); const resvgJS = new resvg.Resvg(svg, { fitTo: { mode: "width", value: options.width } }); const pngData = resvgJS.render(); const pngBuffer = pngData.asPng(); pngData.free(); resvgJS.free(); return pngBuffer; } // src/figma/index.tsx var FigmaImageResponse = async ({ url, template, fonts, imageResponseOptions, Response: Response2 }) => { const { fileId, nodeId } = parseFigmaUrl(url); const figmaAPIToken = assertValue( process.env.FIGMA_PERSONAL_ACCESS_TOKEN, "Missing environment variable: `FIGMA_PERSONAL_ACCESS_TOKEN`. You can get one at https://www.figma.com/developers/api#authentication" ); const figmaResponse = await fetch( `https://api.figma.com/v1/images/${fileId}?ids=${nodeId}&svg_outline_text=false&format=svg&svg_include_id=true`, { method: "GET", headers: { "X-FIGMA-TOKEN": figmaAPIToken }, cache: "no-store" } ); const figmaResponseJson = await figmaResponse.json(); const svgDownloadPath = figmaResponseJson.images[nodeId.replace("-", ":")]; const svgResponse = await fetch(svgDownloadPath, { cache: "no-store" }); const svg = await svgResponse.text(); const { width, height } = getSvgDimensions(svg); const textNodes = getTextNodes(svg); const textNodeAttributes = textNodes.map(parseSvgText); return new Response2( { key: "0", type: "div", props: { style: { display: "flex" }, children: [ { type: "img", props: { style: { position: "absolute" }, alt: "", width, height, src: svgToBase64(svg) } }, { type: "div", props: { style: { display: "flex", position: "relative", width: "100%" }, children: textNodeAttributes.map((textNode) => { const t = template[textNode.id]; let value = ""; if (t === void 0) { value = textNode.content; } else if (isComplexTemplate(t)) { value = t.value; } else { value = t; } let cssProps = {}; let centerHorizontally = false; if (isComplexTemplate(t) && t.props) { const { centerHorizontally: centerHorizontallyProp, ...otherCSSProps } = t.props; cssProps = otherCSSProps; centerHorizontally = centerHorizontallyProp || false; } if (centerHorizontally) { const templateStyles = { color: textNode.fill, marginTop: `${parseInt(textNode.y) - parseInt(textNode.fontSize)}px`, fontWeight: textNode.fontWeight || "400", fontSize: textNode.fontSize, fontFamily: textNode.fontFamily, letterSpacing: textNode.letterSpacing, textAlign: "center", ...cssProps }; return { type: "div", props: { style: { display: "flex", justifyContent: "center", position: "absolute", width: "100%" }, children: { type: "div", props: { style: templateStyles, children: value } } } }; } return { type: "div", props: { style: { position: "absolute", color: textNode.fill, left: `${textNode.x}px`, top: `${parseInt(textNode.y) - parseInt(textNode.fontSize)}px`, fontWeight: textNode.fontWeight || "400", fontSize: textNode.fontSize, fontFamily: textNode.fontFamily, letterSpacing: textNode.letterSpacing, ...cssProps }, children: value } }; }) } } ] } }, { width, height, fonts, ...imageResponseOptions } ); }; var isComplexTemplate = (template) => { return typeof template !== "string" && template !== void 0 && "value" in template; }; function svgToBase64(svg) { const base64 = Buffer.from(svg).toString("base64"); return "data:image/svg+xml;base64," + base64; } function getSvgDimensions(svg) { const widthMatch = svg.match(/width="(\d+)/); const heightMatch = svg.match(/height="(\d+)/); if (widthMatch && heightMatch) { const width = parseInt(widthMatch[1], 10); const height = parseInt(heightMatch[1], 10); return { width, height }; } return { width: 0, height: 0 }; } function getTextNodes(svg) { const regex = /]*>(.*?)<\/text>/g; let match; const matches = []; while ((match = regex.exec(svg)) !== null) { matches.push(match[0]); } return matches; } function parseSvgText(svgText) { const id = svgText.match(/id="([^"]*)"/)?.[1] || ""; const fill = svgText.match(/fill="([^"]*)"/)?.[1] || ""; const fontFamily = svgText.match(/font-family="([^"]*)"/)?.[1] || ""; const fontSize = svgText.match(/font-size="([^"]*)"/)?.[1] || ""; const fontWeight = svgText.match(/font-weight="([^"]*)"/)?.[1] || ""; const letterSpacing = svgText.match(/letter-spacing="([^"]*)"/)?.[1] || ""; const x2 = svgText.match(/]*x="([^"]*)"/)?.[1] || ""; const y = svgText.match(/]*y="([^"]*)"/)?.[1] || ""; const content = svgText.match(/]*>([^<]*)<\/tspan>/)?.[1] || ""; return { id, fill, fontFamily, fontSize, fontWeight, letterSpacing, x: x2, y, content }; } function parseFigmaUrl(figmaUrl) { const regex = /\/file\/([^/]+)\/[^?]+\?[^#]*node-id=([^&#]+)/; const match = figmaUrl.match(regex); let fileId = ""; let nodeId = ""; if (match) { fileId = match[1] || ""; nodeId = match[2] || ""; } return { fileId, nodeId }; } function assertValue(v2, errorMessage) { if (v2 === void 0) { throw new Error(errorMessage); } return v2; } // src/index.edge.ts var initializedResvg = initWasm(resvg_wasm); var initializedYoga = initYoga(yoga_wasm).then((yoga2) => Wl(yoga2)); var fallbackFont = fetch( new URL("./noto-sans-v27-latin-regular.ttf", import.meta.url) ).then((res) => res.arrayBuffer()); var ImageResponse = class extends Response { constructor(element, options = {}) { const result = new ReadableStream({ async start(controller) { const [fontData] = await Promise.all([ fallbackFont, initializedYoga, initializedResvg ]); const fonts = [ { name: "sans serif", data: fontData, weight: 700, style: "normal" } ]; const result2 = await render(Ol, resvg_wasm_exports, options, fonts, element); controller.enqueue(result2); controller.close(); } }); super(result, { headers: { "content-type": "image/png", "cache-control": process.env.NODE_ENV === "development" ? "no-cache, no-store" : "public, immutable, no-transform, max-age=31536000", ...options.headers }, status: options.status, statusText: options.statusText }); } }; var experimental_FigmaImageResponse = async (props) => { return FigmaImageResponse({ ...props, Response: ImageResponse }); }; export { ImageResponse, experimental_FigmaImageResponse }; /*! Copyright Twitter Inc. and other contributors. Licensed under MIT */ /*! Bundled license information: css-background-parser/index.js: (*! * https://github.com/gilmoreorless/css-background-parser * Copyright © 2015 Gilmore Davidson under the MIT license: http://gilmoreorless.mit-license.org/ *) escape-html/index.js: (*! * escape-html * Copyright(c) 2012-2013 TJ Holowaychuk * Copyright(c) 2015 Andreas Lubbe * Copyright(c) 2015 Tiancheng "Timothy" Gu * MIT Licensed *) parse-css-color/dist/index.esm.js: (** * parse-css-color * @version v0.2.1 * @link http://github.com/noeldelgado/parse-css-color/ * @license MIT *) */ //# sourceMappingURL=index.edge.js.map