/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/compiled/@vercel/og
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/compiled/@vercel/og/index.node.js (721770B)
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}>` : `<${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(/