@bluepic/embed 0.4.0-next.204 → 0.4.0-next.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bluepic-embed.iife.js +136 -136
- package/dist/bluepic-embed.umd.js +136 -136
- package/dist/components/BxTabs.vue.d.ts +7 -0
- package/dist/main.cjs +78 -78
- package/dist/main.mjs +19542 -19516
- package/dist/{markdown-it-BEy9XzVB.js → markdown-it-5-ieF6Bh.js} +1183 -1174
- package/dist/markdown-it-CLB5Jta6.cjs +16 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/markdown-it-csfK_Q_K.cjs +0 -16
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var T = (e, n, t) =>
|
|
4
|
-
const
|
|
5
|
-
function
|
|
6
|
-
let n =
|
|
1
|
+
var En = Object.defineProperty;
|
|
2
|
+
var Fn = (e, n, t) => n in e ? En(e, n, { enumerable: !0, configurable: !0, writable: !0, value: t }) : e[n] = t;
|
|
3
|
+
var T = (e, n, t) => Fn(e, typeof n != "symbol" ? n + "" : n, t);
|
|
4
|
+
const ve = {};
|
|
5
|
+
function yn(e) {
|
|
6
|
+
let n = ve[e];
|
|
7
7
|
if (n)
|
|
8
8
|
return n;
|
|
9
|
-
n =
|
|
9
|
+
n = ve[e] = [];
|
|
10
10
|
for (let t = 0; t < 128; t++) {
|
|
11
|
-
const
|
|
12
|
-
n.push(
|
|
11
|
+
const i = String.fromCharCode(t);
|
|
12
|
+
n.push(i);
|
|
13
13
|
}
|
|
14
14
|
for (let t = 0; t < e.length; t++) {
|
|
15
|
-
const
|
|
16
|
-
n[
|
|
15
|
+
const i = e.charCodeAt(t);
|
|
16
|
+
n[i] = "%" + ("0" + i.toString(16).toUpperCase()).slice(-2);
|
|
17
17
|
}
|
|
18
18
|
return n;
|
|
19
19
|
}
|
|
20
20
|
function Y(e, n) {
|
|
21
21
|
typeof n != "string" && (n = Y.defaultChars);
|
|
22
|
-
const t =
|
|
23
|
-
return e.replace(/(%[a-f0-9]{2})+/gi, function(
|
|
22
|
+
const t = yn(n);
|
|
23
|
+
return e.replace(/(%[a-f0-9]{2})+/gi, function(i) {
|
|
24
24
|
let r = "";
|
|
25
|
-
for (let
|
|
26
|
-
const u = parseInt(
|
|
25
|
+
for (let o = 0, s = i.length; o < s; o += 3) {
|
|
26
|
+
const u = parseInt(i.slice(o + 1, o + 3), 16);
|
|
27
27
|
if (u < 128) {
|
|
28
28
|
r += t[u];
|
|
29
29
|
continue;
|
|
30
30
|
}
|
|
31
|
-
if ((u & 224) === 192 &&
|
|
32
|
-
const l = parseInt(
|
|
31
|
+
if ((u & 224) === 192 && o + 3 < s) {
|
|
32
|
+
const l = parseInt(i.slice(o + 4, o + 6), 16);
|
|
33
33
|
if ((l & 192) === 128) {
|
|
34
34
|
const c = u << 6 & 1984 | l & 63;
|
|
35
|
-
c < 128 ? r += "��" : r += String.fromCharCode(c),
|
|
35
|
+
c < 128 ? r += "��" : r += String.fromCharCode(c), o += 3;
|
|
36
36
|
continue;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
if ((u & 240) === 224 &&
|
|
40
|
-
const l = parseInt(
|
|
39
|
+
if ((u & 240) === 224 && o + 6 < s) {
|
|
40
|
+
const l = parseInt(i.slice(o + 4, o + 6), 16), c = parseInt(i.slice(o + 7, o + 9), 16);
|
|
41
41
|
if ((l & 192) === 128 && (c & 192) === 128) {
|
|
42
|
-
const
|
|
43
|
-
|
|
42
|
+
const h = u << 12 & 61440 | l << 6 & 4032 | c & 63;
|
|
43
|
+
h < 2048 || h >= 55296 && h <= 57343 ? r += "���" : r += String.fromCharCode(h), o += 6;
|
|
44
44
|
continue;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
if ((u & 248) === 240 &&
|
|
48
|
-
const l = parseInt(
|
|
49
|
-
if ((l & 192) === 128 && (c & 192) === 128 && (
|
|
50
|
-
let
|
|
51
|
-
|
|
47
|
+
if ((u & 248) === 240 && o + 9 < s) {
|
|
48
|
+
const l = parseInt(i.slice(o + 4, o + 6), 16), c = parseInt(i.slice(o + 7, o + 9), 16), h = parseInt(i.slice(o + 10, o + 12), 16);
|
|
49
|
+
if ((l & 192) === 128 && (c & 192) === 128 && (h & 192) === 128) {
|
|
50
|
+
let f = u << 18 & 1835008 | l << 12 & 258048 | c << 6 & 4032 | h & 63;
|
|
51
|
+
f < 65536 || f > 1114111 ? r += "����" : (f -= 65536, r += String.fromCharCode(55296 + (f >> 10), 56320 + (f & 1023))), o += 9;
|
|
52
52
|
continue;
|
|
53
53
|
}
|
|
54
54
|
}
|
|
@@ -59,51 +59,51 @@ function Y(e, n) {
|
|
|
59
59
|
}
|
|
60
60
|
Y.defaultChars = ";/?:@&=+$,#";
|
|
61
61
|
Y.componentChars = "";
|
|
62
|
-
const
|
|
63
|
-
function
|
|
64
|
-
let n =
|
|
62
|
+
const De = {};
|
|
63
|
+
function Bn(e) {
|
|
64
|
+
let n = De[e];
|
|
65
65
|
if (n)
|
|
66
66
|
return n;
|
|
67
|
-
n =
|
|
67
|
+
n = De[e] = [];
|
|
68
68
|
for (let t = 0; t < 128; t++) {
|
|
69
|
-
const
|
|
70
|
-
/^[0-9a-z]$/i.test(
|
|
69
|
+
const i = String.fromCharCode(t);
|
|
70
|
+
/^[0-9a-z]$/i.test(i) ? n.push(i) : n.push("%" + ("0" + t.toString(16).toUpperCase()).slice(-2));
|
|
71
71
|
}
|
|
72
72
|
for (let t = 0; t < e.length; t++)
|
|
73
73
|
n[e.charCodeAt(t)] = e[t];
|
|
74
74
|
return n;
|
|
75
75
|
}
|
|
76
|
-
function
|
|
77
|
-
typeof n != "string" && (t = n, n =
|
|
78
|
-
const
|
|
76
|
+
function $(e, n, t) {
|
|
77
|
+
typeof n != "string" && (t = n, n = $.defaultChars), typeof t > "u" && (t = !0);
|
|
78
|
+
const i = Bn(n);
|
|
79
79
|
let r = "";
|
|
80
|
-
for (let
|
|
81
|
-
const u = e.charCodeAt(
|
|
82
|
-
if (t && u === 37 &&
|
|
83
|
-
r += e.slice(
|
|
80
|
+
for (let o = 0, s = e.length; o < s; o++) {
|
|
81
|
+
const u = e.charCodeAt(o);
|
|
82
|
+
if (t && u === 37 && o + 2 < s && /^[0-9a-f]{2}$/i.test(e.slice(o + 1, o + 3))) {
|
|
83
|
+
r += e.slice(o, o + 3), o += 2;
|
|
84
84
|
continue;
|
|
85
85
|
}
|
|
86
86
|
if (u < 128) {
|
|
87
|
-
r +=
|
|
87
|
+
r += i[u];
|
|
88
88
|
continue;
|
|
89
89
|
}
|
|
90
90
|
if (u >= 55296 && u <= 57343) {
|
|
91
|
-
if (u >= 55296 && u <= 56319 &&
|
|
92
|
-
const l = e.charCodeAt(
|
|
91
|
+
if (u >= 55296 && u <= 56319 && o + 1 < s) {
|
|
92
|
+
const l = e.charCodeAt(o + 1);
|
|
93
93
|
if (l >= 56320 && l <= 57343) {
|
|
94
|
-
r += encodeURIComponent(e[
|
|
94
|
+
r += encodeURIComponent(e[o] + e[o + 1]), o++;
|
|
95
95
|
continue;
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
r += "%EF%BF%BD";
|
|
99
99
|
continue;
|
|
100
100
|
}
|
|
101
|
-
r += encodeURIComponent(e[
|
|
101
|
+
r += encodeURIComponent(e[o]);
|
|
102
102
|
}
|
|
103
103
|
return r;
|
|
104
104
|
}
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
$.defaultChars = ";/?:@&=+$,-_.!~*'()#";
|
|
106
|
+
$.componentChars = "-_.!~*'()";
|
|
107
107
|
function ge(e) {
|
|
108
108
|
let n = "";
|
|
109
109
|
return n += e.protocol || "", n += e.slashes ? "//" : "", n += e.auth ? e.auth + "@" : "", e.hostname && e.hostname.indexOf(":") !== -1 ? n += "[" + e.hostname + "]" : n += e.hostname || "", n += e.port ? ":" + e.port : "", n += e.pathname || "", n += e.search || "", n += e.hash || "", n;
|
|
@@ -111,8 +111,8 @@ function ge(e) {
|
|
|
111
111
|
function oe() {
|
|
112
112
|
this.protocol = null, this.slashes = null, this.auth = null, this.port = null, this.hostname = null, this.hash = null, this.search = null, this.pathname = null;
|
|
113
113
|
}
|
|
114
|
-
const
|
|
115
|
-
`, " "],
|
|
114
|
+
const Tn = /^([a-z0-9.+-]+:)/i, zn = /:[0-9]*$/, Sn = /^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/, jn = ["<", ">", '"', "`", " ", "\r", `
|
|
115
|
+
`, " "], In = ["{", "}", "|", "\\", "^", "`"].concat(jn), Jn = ["'"].concat(In), we = ["%", "/", "?", ";", "#"].concat(Jn), Ae = ["/", "?", "#"], Mn = 255, Ee = /^[+a-z0-9A-Z_-]{0,63}$/, Pn = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, Fe = {
|
|
116
116
|
javascript: !0,
|
|
117
117
|
"javascript:": !0
|
|
118
118
|
}, ye = {
|
|
@@ -133,66 +133,66 @@ function ke(e, n) {
|
|
|
133
133
|
return t.parse(e, n), t;
|
|
134
134
|
}
|
|
135
135
|
oe.prototype.parse = function(e, n) {
|
|
136
|
-
let t,
|
|
137
|
-
if (
|
|
138
|
-
const c =
|
|
136
|
+
let t, i, r, o = e;
|
|
137
|
+
if (o = o.trim(), !n && e.split("#").length === 1) {
|
|
138
|
+
const c = Sn.exec(o);
|
|
139
139
|
if (c)
|
|
140
140
|
return this.pathname = c[1], c[2] && (this.search = c[2]), this;
|
|
141
141
|
}
|
|
142
|
-
let s =
|
|
143
|
-
if (s && (s = s[0], t = s.toLowerCase(), this.protocol = s,
|
|
142
|
+
let s = Tn.exec(o);
|
|
143
|
+
if (s && (s = s[0], t = s.toLowerCase(), this.protocol = s, o = o.substr(s.length)), (n || s || o.match(/^\/\/[^@\/]+@[^@\/]+/)) && (r = o.substr(0, 2) === "//", r && !(s && Fe[s]) && (o = o.substr(2), this.slashes = !0)), !Fe[s] && (r || s && !ye[s])) {
|
|
144
144
|
let c = -1;
|
|
145
145
|
for (let a = 0; a < Ae.length; a++)
|
|
146
|
-
|
|
147
|
-
let
|
|
148
|
-
c === -1 ?
|
|
146
|
+
i = o.indexOf(Ae[a]), i !== -1 && (c === -1 || i < c) && (c = i);
|
|
147
|
+
let h, f;
|
|
148
|
+
c === -1 ? f = o.lastIndexOf("@") : f = o.lastIndexOf("@", c), f !== -1 && (h = o.slice(0, f), o = o.slice(f + 1), this.auth = h), c = -1;
|
|
149
149
|
for (let a = 0; a < we.length; a++)
|
|
150
|
-
|
|
151
|
-
c === -1 && (c =
|
|
152
|
-
const
|
|
153
|
-
|
|
150
|
+
i = o.indexOf(we[a]), i !== -1 && (c === -1 || i < c) && (c = i);
|
|
151
|
+
c === -1 && (c = o.length), o[c - 1] === ":" && c--;
|
|
152
|
+
const d = o.slice(0, c);
|
|
153
|
+
o = o.slice(c), this.parseHost(d), this.hostname = this.hostname || "";
|
|
154
154
|
const p = this.hostname[0] === "[" && this.hostname[this.hostname.length - 1] === "]";
|
|
155
155
|
if (!p) {
|
|
156
156
|
const a = this.hostname.split(/\./);
|
|
157
157
|
for (let b = 0, g = a.length; b < g; b++) {
|
|
158
|
-
const
|
|
159
|
-
if (
|
|
160
|
-
let
|
|
161
|
-
for (let m = 0,
|
|
162
|
-
|
|
163
|
-
if (!
|
|
164
|
-
const m = a.slice(0, b),
|
|
165
|
-
k && (m.push(k[1]),
|
|
158
|
+
const x = a[b];
|
|
159
|
+
if (x && !x.match(Ee)) {
|
|
160
|
+
let C = "";
|
|
161
|
+
for (let m = 0, _ = x.length; m < _; m++)
|
|
162
|
+
x.charCodeAt(m) > 127 ? C += "x" : C += x[m];
|
|
163
|
+
if (!C.match(Ee)) {
|
|
164
|
+
const m = a.slice(0, b), _ = a.slice(b + 1), k = x.match(Pn);
|
|
165
|
+
k && (m.push(k[1]), _.unshift(k[2])), _.length && (o = _.join(".") + o), this.hostname = m.join(".");
|
|
166
166
|
break;
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
|
-
this.hostname.length >
|
|
171
|
+
this.hostname.length > Mn && (this.hostname = ""), p && (this.hostname = this.hostname.substr(1, this.hostname.length - 2));
|
|
172
172
|
}
|
|
173
|
-
const u =
|
|
174
|
-
u !== -1 && (this.hash =
|
|
175
|
-
const l =
|
|
176
|
-
return l !== -1 && (this.search =
|
|
173
|
+
const u = o.indexOf("#");
|
|
174
|
+
u !== -1 && (this.hash = o.substr(u), o = o.slice(0, u));
|
|
175
|
+
const l = o.indexOf("?");
|
|
176
|
+
return l !== -1 && (this.search = o.substr(l), o = o.slice(0, l)), o && (this.pathname = o), ye[t] && this.hostname && !this.pathname && (this.pathname = ""), this;
|
|
177
177
|
};
|
|
178
178
|
oe.prototype.parseHost = function(e) {
|
|
179
|
-
let n =
|
|
179
|
+
let n = zn.exec(e);
|
|
180
180
|
n && (n = n[0], n !== ":" && (this.port = n.substr(1)), e = e.substr(0, e.length - n.length)), e && (this.hostname = e);
|
|
181
181
|
};
|
|
182
|
-
const
|
|
182
|
+
const Ln = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
183
183
|
__proto__: null,
|
|
184
184
|
decode: Y,
|
|
185
|
-
encode:
|
|
185
|
+
encode: $,
|
|
186
186
|
format: ge,
|
|
187
187
|
parse: ke
|
|
188
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
188
|
+
}, Symbol.toStringTag, { value: "Module" })), Ye = /[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, Ke = /[\0-\x1F\x7F-\x9F]/, Nn = /[\xAD\u0600-\u0605\u061C\u06DD\u070F\u0890\u0891\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD80D[\uDC30-\uDC3F]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/, Re = /[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061D-\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B4E\u1B4F\u1B5A-\u1B60\u1B7D-\u1B7F\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52-\u2E5D\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDD6E\uDEAD\uDED0\uDF55-\uDF59\uDF86-\uDF89]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9\uDFD4\uDFD5\uDFD7\uDFD8]|\uD805[\uDC4B-\uDC4F\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDEB9\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2\uDF00-\uDF09\uDFE1]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDF43-\uDF4F\uDFFF]|\uD809[\uDC70-\uDC74]|\uD80B[\uDFF1\uDFF2]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDD6D-\uDD6F\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD839\uDDFF|\uD83A[\uDD5E\uDD5F]/, He = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u0888\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20C1\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2429\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E5\u31EF\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBD2\uFD40-\uFD4F\uFD90\uFD91\uFDC8-\uFDCF\uFDFC-\uFDFF\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD803[\uDD8E\uDD8F\uDED1-\uDED8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD833[\uDC00-\uDCEF\uDCFA-\uDCFC\uDD00-\uDEB3\uDEBA-\uDED0\uDEE0-\uDEF0\uDF50-\uDFC3]|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDEA\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED8\uDEDC-\uDEEC\uDEF0-\uDEFC\uDF00-\uDFD9\uDFE0-\uDFEB\uDFF0]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0-\uDCBB\uDCC0\uDCC1\uDCD0-\uDCD8\uDD00-\uDE57\uDE60-\uDE6D\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF-\uDEF8\uDF00-\uDF92\uDF94-\uDFEF\uDFFA]/, Ge = /[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/, On = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
189
189
|
__proto__: null,
|
|
190
|
-
Any:
|
|
191
|
-
Cc:
|
|
192
|
-
Cf:
|
|
190
|
+
Any: Ye,
|
|
191
|
+
Cc: Ke,
|
|
192
|
+
Cf: Nn,
|
|
193
193
|
P: Re,
|
|
194
|
-
S:
|
|
195
|
-
Z:
|
|
194
|
+
S: He,
|
|
195
|
+
Z: Ge
|
|
196
196
|
}, Symbol.toStringTag, { value: "Module" })), $n = [
|
|
197
197
|
8364,
|
|
198
198
|
0,
|
|
@@ -230,11 +230,11 @@ const Pn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
230
230
|
function qn(e) {
|
|
231
231
|
return e === 0 || e >= 55296 && e <= 57343 || e > 1114111;
|
|
232
232
|
}
|
|
233
|
-
function
|
|
233
|
+
function Un(e) {
|
|
234
234
|
return qn(e) ? 65533 : e >= 128 && e <= 159 && $n[e - 128] || e;
|
|
235
235
|
}
|
|
236
|
-
function
|
|
237
|
-
return e - 1 >>> 0 < 127 || e - 160 >>> 0 < 55136 ? String.fromCharCode(e) : String.fromCodePoint(
|
|
236
|
+
function Zn(e) {
|
|
237
|
+
return e - 1 >>> 0 < 127 || e - 160 >>> 0 < 55136 ? String.fromCharCode(e) : String.fromCodePoint(Un(e));
|
|
238
238
|
}
|
|
239
239
|
const M = /* @__PURE__ */ (() => {
|
|
240
240
|
const e = new Uint8Array(127);
|
|
@@ -243,75 +243,75 @@ const M = /* @__PURE__ */ (() => {
|
|
|
243
243
|
t !== 34 && t !== 36 && t !== 92 && (e[t] = n++);
|
|
244
244
|
return e;
|
|
245
245
|
})();
|
|
246
|
-
function
|
|
247
|
-
const u = e.length, l =
|
|
246
|
+
function Wn(e, n, t, i, r, o) {
|
|
247
|
+
const u = e.length, l = o * 90;
|
|
248
248
|
let c = 0;
|
|
249
|
-
const
|
|
250
|
-
const
|
|
251
|
-
return
|
|
252
|
-
},
|
|
253
|
-
p.fill(-1,
|
|
254
|
-
const a = new Int32Array(
|
|
255
|
-
function g(
|
|
256
|
-
let w = 0,
|
|
257
|
-
const
|
|
258
|
-
for (;
|
|
259
|
-
const
|
|
260
|
-
if (
|
|
261
|
-
w +=
|
|
262
|
-
else if (
|
|
249
|
+
const h = () => {
|
|
250
|
+
const D = M[e.charCodeAt(c++)];
|
|
251
|
+
return D < o ? D : D * 91 - l + M[e.charCodeAt(c++)];
|
|
252
|
+
}, f = t - i, d = t + r, p = new Int32Array(d);
|
|
253
|
+
p.fill(-1, i, o), p.fill(-1, o + f, d);
|
|
254
|
+
const a = new Int32Array(d), b = new Int32Array(d);
|
|
255
|
+
function g(D, y) {
|
|
256
|
+
let w = 0, B = y;
|
|
257
|
+
const I = y + D;
|
|
258
|
+
for (; B < I; ) {
|
|
259
|
+
const J = M[e.charCodeAt(c++)];
|
|
260
|
+
if (J < 89)
|
|
261
|
+
w += J, p[B++] = w;
|
|
262
|
+
else if (J === 89) {
|
|
263
263
|
let S = M[e.charCodeAt(c++)] + 2;
|
|
264
264
|
for (; S--; )
|
|
265
|
-
p[
|
|
265
|
+
p[B++] = ++w;
|
|
266
266
|
} else {
|
|
267
267
|
const S = M[e.charCodeAt(c++)];
|
|
268
268
|
w += 89 + // eslint-disable-next-line unicorn/prefer-minimal-ternary -- branches read a different number of side-effecting input bytes
|
|
269
|
-
(S < 90 ? S * 91 + M[e.charCodeAt(c++)] : M[e.charCodeAt(c++)] * 8281 + M[e.charCodeAt(c++)] * 91 + M[e.charCodeAt(c++)]), p[
|
|
269
|
+
(S < 90 ? S * 91 + M[e.charCodeAt(c++)] : M[e.charCodeAt(c++)] * 8281 + M[e.charCodeAt(c++)] * 91 + M[e.charCodeAt(c++)]), p[B++] = w;
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
}
|
|
273
|
-
g(
|
|
274
|
-
const
|
|
275
|
-
let
|
|
276
|
-
function
|
|
277
|
-
for (let w = 0; w <
|
|
278
|
-
const
|
|
279
|
-
|
|
280
|
-
const S = (p[
|
|
281
|
-
b[
|
|
273
|
+
g(i, 0), g(f, o);
|
|
274
|
+
const x = new Int32Array(r * 2);
|
|
275
|
+
let C = 0, m = 0;
|
|
276
|
+
function _(D, y) {
|
|
277
|
+
for (let w = 0; w < D; w++) {
|
|
278
|
+
const B = y + w, I = h(), J = h();
|
|
279
|
+
x[m * 2] = I, x[m * 2 + 1] = J, m += 1, a[B] = C;
|
|
280
|
+
const S = (p[I] < 0 ? b[I] : 1) + (p[J] < 0 ? b[J] : 1);
|
|
281
|
+
b[B] = S, C += S;
|
|
282
282
|
}
|
|
283
283
|
}
|
|
284
|
-
|
|
285
|
-
const k = new Uint16Array(
|
|
286
|
-
let
|
|
287
|
-
for (let
|
|
288
|
-
for (let
|
|
289
|
-
const w =
|
|
290
|
-
if (
|
|
291
|
-
let
|
|
292
|
-
const
|
|
293
|
-
for (;
|
|
294
|
-
k[
|
|
284
|
+
_(r - o + i, o + f), _(o - i, i);
|
|
285
|
+
const k = new Uint16Array(C);
|
|
286
|
+
let v = 0;
|
|
287
|
+
for (let D = 0; D < m; D++)
|
|
288
|
+
for (let y = 0; y < 2; y++) {
|
|
289
|
+
const w = x[D * 2 + y], B = p[w];
|
|
290
|
+
if (B < 0) {
|
|
291
|
+
let I = a[w];
|
|
292
|
+
const J = I + b[w];
|
|
293
|
+
for (; I < J; )
|
|
294
|
+
k[v++] = k[I++];
|
|
295
295
|
} else
|
|
296
|
-
k[
|
|
296
|
+
k[v++] = B;
|
|
297
297
|
}
|
|
298
298
|
const A = new Uint16Array(n);
|
|
299
|
-
let
|
|
299
|
+
let F = 0;
|
|
300
300
|
for (; c < u; ) {
|
|
301
|
-
let
|
|
302
|
-
|
|
303
|
-
const
|
|
304
|
-
if (
|
|
305
|
-
let w = a[
|
|
306
|
-
const
|
|
307
|
-
for (; w <
|
|
308
|
-
A[
|
|
301
|
+
let D = M[e.charCodeAt(c++)];
|
|
302
|
+
D >= o && (D = D * 91 - l + M[e.charCodeAt(c++)]);
|
|
303
|
+
const y = p[D];
|
|
304
|
+
if (y < 0) {
|
|
305
|
+
let w = a[D];
|
|
306
|
+
const B = w + b[D];
|
|
307
|
+
for (; w < B; )
|
|
308
|
+
A[F++] = k[w++];
|
|
309
309
|
} else
|
|
310
|
-
A[
|
|
310
|
+
A[F++] = y;
|
|
311
311
|
}
|
|
312
312
|
return A;
|
|
313
313
|
}
|
|
314
|
-
const Wn = /* @__PURE__ */ Zn("!}.&u%}'&}*'~!6*)%&,~!J~!J~%L~y<~!R,~~%Lu~~#GD~~#|)1#%}^%}2%+#.##%##%}&%##%'#%##&%#%#'%#&#%#&#'#%%#&#%##%#)%''%&%#%#'%#%%#%%}%%%#%#&(23#%%#&-%0%('1#(##%#'##+%'*.:1}#%#6-+(%'%%#%%%}#L'2351&('%}&/N'(0(/*-%(%%}#'+&T%7.2}#&%&#%#36/5##%&%%#&#%%#))2%%##%&&'0~!#*+&'%1~!%).'3q?&%'1~!.##%6(~!+%%%(Gw'rT~!E#<nA%#jZ~!H%(~!42##~!*31&~!G%U~#)5~#`3~!J~!Z~%]~%Y~%C~!q~!u~#kz~%#~!6'~!D~!U~!?~#T~!c%~!G#'~%7|~!G~!J~!G&~#pb~(Df}#%}*&}#%##%##%##&#-}&'#'&%#.++}%mI,#,@&(}*%}*'%&##&#%##%}&0}#.},U},%}+%}&%}#%##&}B%(}(%}+%)})%##%#&}&%##%&}<%}>%#%&}*%}(%}9%}/%})%}*%}*%}?&}&%}3%}&*#%})%#%#)}#&#-#+*%E%%'%'#%}#*V##&##I}#&&##%&%#&&Qf%%))w/0+&%#(#.%-''''++++7}>%4'',##1,#%#&%##&#'##&#*#9)%&%}#*}%,#+P(%A&%#'&##wSD',9E00#y#@}(+}&%&>~!#~!X}#*}(&&}(&}(,%}%&#+&}#&}I%#%}%)#(},'%#*}4%%#%}(''}#/##(##),%-##%%)#&}(.}&%#&}%%}*&#%},&&}&%}#%*'#%})%}D&}&%}-&}6&#&}-,%}#%})-(~+`~,=?~I9'9%~!,#%})%})%}@%}?%}(~!?~#<~#pP~#BG~#=1#%K+~#?#~%;)~#A~#mF1~#A'~'X%'~#lR~#N~'N~#r~#m#-~#i'?%#'%~#B%##%,%#~#_%#0%~#]732~,w~2+#:&#%&'0%&>%}#>##F+)#%&&#(+_}4&}-%}(&}@&}O7Fdf0@+/v4}&WU##&/0#&'('B#%}.%}'+#%}#%%&#&%#%##+#&#)#6#'#.},%}c%},%#%##%&#&%#&~#>'*-.%##%##%}#%%}%'~#)D1}#%*&~#_%%'(~#S2%'.}#~#=##*'*-%}&'%'##&&~'E%.#&~#M4}%%##&'%#~#O1##%&#'+~#<B%##%%'%+~#;#@%}#&%#&&%#(~#H1}'%'##&&~#?A}&'~#D#%32}'&&&&~#[}'(#%}'~#;C})&}%%#%~#=&%,3}%'(#%%~#^'#&&)#%'~#Y%-~#d-%'~#^%%&#&&&}#~#b~2t*&'~&(~&@~0%~e~3}%*''0})&}+~!9##-}#%-hD*)1fC#%/&/fB#40~!+#)*4~!+~!K'&:~!/*7~!.#~!H~!L':~%x&~!H#~!*~%1~!I#~!+A~#p'~!F~~#-#~,,(~.Z~!V~%;'B'mq-W~!N~%I%#&&#&}#%},%%}'%}+X#%}#&}(%}'%}<%}#%}%%'}'%}:~![)9@~%>~#UA%-%##&~!C%~!-.9:~!1~!-^2/:a~!y,D*J#-5)/4~%23,~#G~!L1~!0X3`~!2+~!!0-~&E~!W~!o,>Y&]~%cZx_&~#O*9#A#'#+I'%#)~!0B*-5A+-((F&*M#)(-7-5+'-3a5Vi~!Y~!?+[)%3),ERHm~!+:D,VG.+)?fB%%*(%)'(#&80%1'8`K8?`+'Z#&O&'H5#*9)A%%5&3))0%39+.*7#()&&*=4@**L)<'_&*+..;(#*+)./&0#3)%')-8(4ixD(&.}%,('aI:,)%,k2231T)I'#/-W7,/'Q#.'Y24+h')37</31&83##&0#),H(?'&?/1##%#&&#%''-%&&&#(&''&#.-'%#%%(,')*'&#&#'##%(%(#%('#&##%%%%('%#%#%%#%#&%##h>w+v<ayvyvcg.uuhKr}g/v|g>u9i[~>g5uI~=RvdwEg;v/g;uk!!TTSx]@RT!U!#!@VBRUU!'UTe-d0c`e&gSdicedFcrdTaqb.kYcAohdYd@a3e+d}dMdtd.aJ#bqcK`dle/e.e'dwdPdodddjbEb}ogd^ofdpduc6j?l%d{drdqc)d7bacOdQ%T#Y)X.sR[yH>6Vyv3[xwLu>vo'!*.[yBacahoj>6Rew3[xqdZa#!a&#^(X-[yG>6Vyu3[xvg3sEr|g.u/Ri9db0T#^(Xa)!-[y;>6Vylg4wKs{JwNZt3@3r=c4Z([xlg;wKt!cpq's@v7A'*a(a+!-a#[y<3Dt?3Dt'>6Vym3[xmg9rxsNJwLZt4~?r?db1T#`-!(Xa,!0[yS>6Vz%NuQs.g4wKtnJwNZtS@3r>c4Z([y%g;wKtrdga8!a(!#&T*Y-Xa#!a0<or[yc3Dtq>6Vz43[y3JwNZtf@3s!Ju}!%Dti:pm3c_%X#tjB5pkd6q!r]u?voC'*-a.a2!0a&a+[yI3DtI3Ds~3DtH>6Vyw3[xx;:s#~<5pKJwNZtE@3r~d`a)!a2T#a.(!+U.X1[yT3Dt`3Dtv>6Vz&3[y&g9rxwzcxstPu.<rAJwLZtT~?r@dZa%!a.&^*Za(/Reu[ya>6Vz23[y1g3sEr}wkg{NuQRg{ci(U#5@b`~,cg#U(2WnH5wugcRh7dX#T(Y,a'Ta!!a,[yZ<]mj>6Vz,3[y+Pv#5ReZKu+=,%!H}7ABwkaS?Rh:BcW(X#<]mrj:ubv/ARekdg%!(!a.*Ta(Y.X1!#sP>Rl*Dt6[y>>6Vyo3Wf*jOvuumvuRgRJuq*!:9<B@bX~3jVv&v@s@5Re[d/rQt{uAvo&a&a*)a2!,0Wf!3Dt0=Bs'>6Re}3[xy~<5s%JwJZt1~Gs)c;&!#2sJkNuXvzq7rxu,Re8dka4!a8(aEZ+a@Y.X1Xa)[yd=Bs(3DtP>6Vz53[y4cX#X&Re:avRe9~<5s&JwJZtQ~Gs*i^rzvdRg+Jv{%!2sbB@bX}kdga,!Za?&^*T1/!a'Dt+[y6>6Vyf3Wf%g/u;s4hGu6?Rh-JvZ,!c%#&RoX54Rivj7uyvf8RgTKvZB%*!2sGh<vu5Rgq<=C::9bb~#dZ#T&Ta6Y.X*Dt>[y93Wf)coZ(T,6VyifluvRgC@95@B@bX~/hFu34cC#T,k/unq8w8Q5RkUklwQuzunq8w8Q5Rk8d/rJu?v8w9)-&!a0a;a&aIWejg3sEr/h1s<DtDJvyZqY5aws3Jvy!&Wei~Hr1:au5@Bag>23E~5c:Z&bX};kKv?w&unuVu5Rjc;>bs)#~@:Rh.=ay<a]C;b`}Vd6s/t{uAvoaxa()!a,a7%-a#a2Dt,[yF2Wo[>6Vyt3[xuNuPRi&NuPwpi#RoWh?vf8Ri%Jv]!%Ri:KvxD!.'2WeAjZu`q9rxu,Re7woeAg-unLq(qA_/*2Wg_g3u5q^9:4E}/jTrxrzv=Wkkd~0UX#^^Xa-a1a5T&a=U1a'*aEa]!a*aPaA-adok[y54Rn>;:p3~Dp5g9rpsFNvZqjg3uJp4~<5p0Pw;5qlJwNZt*@3p1Pw:5p/Ou!5p2JvG'!6Vye=<qnJvh_[xhg3v,Rh3kOwOw-sDuev/Re^dha[a%!%!a+#Ta7)-5TaCaO!aka!a)sf[yb2>Rl!9ARiq5E}Qg=ucRkBE|oJrJ_@Wk~@Wk{JrJ_@Wk|@WkyJrJ_@Wk}@WkzJvO_[y2g-vMRmiKuYC!)&>Ri;>Ri<@3RkNc](X#@9Rk=g5vuRmhKvDB!+'=]meg3u4Rmgd)#Y'Vz3CARmfd`a+!%T'!+#Ta1Ta6TaM-sTDt9[yA9sYd'%Y#s[[xpj:ueunaXRgEjRq,v-vuqdd2'`#6Rev<32@5>:2<E}5xIo9a*X#Y(;5RePJvD_g>vyRgNj8w)v8<wggs:RgXiZt|vjx,hSq3ah!-(~@:Ro/Ou!5RhWj^v(pyw8unRhUdx-UY#^Ua.a3a70!)%UX1TaDa)'omRiRRhE[y:3Dsz=Br,>6Vyj3[xkg6ruwjcqsrPw;5r*Ku]D'Zt-@3r(~?r.i[vwv]dU1a--U#`a4(g/vsRhPOu!5RhLj:rmu9Wo!~@:wdh@g/vsRiTjXuvvNr}:RhBj^v(pyw8unRn]dz1UYa'a+^Y(!aETZalaRY.Ta?a4[yDJw1!#qLsW>6Vyrfzq-pLflpwRe|Js>%!Dt@3Dt&Jvy_[xs~HrnjMuwpsw'RecKu+D#'!t<~Grl~?rjg5u-x,gwp{ah!-(~@:Rg~Ou!5Rh'jXuvvNr}:Rh#cW#X/c;&!#2sLi[v7u7RgpJv)(!iLrxu,Re6j7v@s@5Se[e7d`aW!Za(a`T.a#!a3!&aDa-!9)Dt_=6s+3[x~~DR|h~DS6avhGun5RkZj3w)v-]mkKunB!&*]kb97R|i<ARk<c:Z(6Vy}Juh'!wziMRoS:F|vkLuauJv5vtvQRh1d='T+Y#VyO~DR|jcF#T'7R|g97R|kJv3'!ay<Rj,Jvh&!:ReXcsa6*a+#a#_aIRf9aLRf?c,Z&Rf5Rf7c.Z&Rf;Rf>cQ#%T'p-Rf8Rf=ct#%'(*!,p,Rf4p+Rf6Rf:Rf<d~'Ua%U*^UYa(!a,-!#a4YaTalaEX0a8a<Weo3Dt/3Dsx=Br93Wen~Dr;~<5p<JwNZt2@3p=Pw:5p;Ou!5r3c7&!#:p>3Ds}KvGB)_6Vyk2sM=<r7x'eovA(!hFu1ARf}cV#X&@r5j6rvwQa^Rf3c=Za'wkghJv__g;unRggA53B9=b^}%j6uduo5Jq;!(hIv%2Re`Ou4ARe_e%a#^^^Xa&!a*a2!&a6YaP!*ad!#a:aE/5Rn?[y@>6Vyp;:pE~DrY~<5pBJwNZt8@3pCh=rt3rWPw:5pAJup_[xoNuPpF9c!#'45pD5ARn)d8#X'X*3@rU72s]h>v<<sSjJpqvewOJq/(!hNw'5ReBk0s2u3w/w'5ReE5@Jq.!a+JQ!&WeU23d(#Y&RjG5]jBk!u7w&u0udARjEe#+^^^Ub#!a2/a`Z(agT1!a-a;|@TaG!aS[yV=Re~fow'RguNuPRe?bz#'>RoUWeL>:Cbb|?JwPZtVg6ruRmzJvD'!6Vz(g/vmRh~Jvy_[y(g9voRgyx*cy(#2>Ri2B9b]~9kIw9u7rluJu3Rg]dI#a%UY'@=p%CAx.gQZ&RhwwygtRm{x5g_Z'+ABqR9Woa=Bp&dV#^*Xa'!&@o{g4v]Rk;Jv{!%Rk[wkkiA5RkiwwfUB=x,fUuqC&*!>RfTg8v0RfV~ARfSd;rJsAuAv9wR'ae+/aO!a@aza/a#[yQ@Wg!2Wemg3sEr0JvB_g>uvReWg2v+Re=KupB_+[y!2AbY~-~Hr2AJwD!(h<~El>h<~El?Kun@+_:9b`}Kg-v/Ri3g;vtwyk_9]k_d=&T#*U.6qh@Ab`|K9:H|CJv[!&3Dtex'fDwC%!Rf[9WlMd[(^X,!a%Z06Vz!@WgBg=v~Rgvg,QRe@awd,#Y+jTv|Q~EfWj]uNr|~FRfXdy#Y&^Ua%!aO.!(a)Ua;=!a@aKap!a-,a!Ta]a[rSa]p?[y82sK=Bq~;:p:~<5p8Pw:5p7d'#Y'Wf(;RnRi[u4w&RgJJvG'!6Vyh=<r#ijuuv/sIKuYD'ZtG@3p9~Gr&d2#`(g<vtRgFj`u5w&rqpxRf2CJuY!+:wfnTOu!5Rg}jNs1ucv&RfwJvA!&3@q|BDcC#T,k/unq8w8Q5RkTklwQuzunq8w8Q5Rk9dga#!a'!a=#a0!:+Tb*b@aO.a4!aba8aFJv^}?!VyR~Dr<g;u%Rn.~<5p[x'e`wNZtR@3p]Pw:5pZhNvjBp.woe_g5u-r4JwF!%DtO3:ooc7&!#:p^3DtpLuGw(!+%)Dtk6Vz#2sd=<r8d'#Y([y#<x3gJt`w@!)%}MRiowzikRij=]ilxAf3,U(#B2Rf#g0v-Rm[ck{`U#]giKv3>)!&6Ri154s,KuGB_%@r68r:dJ|t`#X(9<E|u2@H|rx3gJu?w'!+'1Nu7Reg4=H~+9<wxgY95Rm]xLggZ-`(X}U2:Ri4h<uOawRmsJv__5@bb{jbV~3dka#a'a]!,#a+U=a>b6a3b%!/aKa/)!arwve^VyJ;:pR~DpTg3uJpS~<5pOPw;5qmPw:5pNOu!5pQJvG'!6Vyx=<qoJvA!{~Jup!%@qk7Rn/KvyD!}''[xz;>wkh'?Rh,x8gyt`w5D!&),(SgyccRgztJ@3pPB5p#d'(Y#<]mmifubw&RgoJvE&!82s^JvF&!8Rf,ADb]~;x=h'rNu]vK!,%'*0RnORh)4Rh*AqQg-vaRnNg;wHwkh'ba~4cE#Ta*x3gctyw@'!+%RnFRnD<4Rn@hFvK5RnCxWg[#`&a0Ua()`1Rm75Rg[c]%X#qi8Rg^NvdRj>BwzgZauwji7Rm6A4wgg]d1#&(*,.0a#Rm;Rm<Rm=Rm>Rm?Rm@RmARmBe%#^^^Xaea?aC/b+(,!a+a#!a/!>a&Ta<aKbD!2wphBRnk[yPw}hE|.=Br-3Dtm>6Vy~g6urRf.x,hPrNav!%'RnqRo%Ro#Nu;q[Pw;5r+JwNZtM@3r)d'#Y'Weh;xChL#`&RnmRnoKu}>%(!Rne~Bs-;2wjcussJv+'!aYSO}6@B<5?ba~8LrNvj!.%*ROwungw~ng~:9;Ri^>wtnig;wHRnixDh@|(UZ.x1h@|)!#:2<H|*xHn]#-UX'3Ro)z=iT}6ARns=Bwsn_wpnaRncw]aR(#UXa&Ua*a/=]iPd'#Y&Ro'WnXf{QRm2hNvj]nZd`'T~&1`{|`#9b]{}c:'!#Wl{>@=be}]?cl{{U#:5Abb}Jds#^YaF!a*b4a#a3aPa>&Tb!bH!*a_!Eau?/a&RjY<]gj>6Vz*;:pe~DrZg,QRj1JwNZtX@wihspcJvZ&!VyX9WmOJu|!|N2WmHJvh&!]ht~Bpbcn&T(!#RmQ<s7Nu;padH#X'`+WmJ@>RmKCARhnKup=!)&Wf+:RhqNuPpf9c!#'45pd5AwghpARn(Ls@w!%,)!RmP@Wfe<E|IJva!&WmNg8vsRmLd`*.`#Y'Xa!axRn*]hrA8Rhug5s@rXg8u!RmMd8#X'X*3@rV72smdI*#UY&RmICARho~GsgxVgd)Ta'U-Y&Xa!T#RnEWnA@Wffg1uDRi0hFvK5RnBxGnG&#`%owp)@wsf+bX}Ze-*1!a*^^^Ua|!#a.aq&Ya2!a>.a6!a:aO`aJDtL[y`@Wg#>6Vz12@wzoYRoZNuPRi!NuPRhzg=ucRi,@=b`{Yg=ucRi-ACJvB!&Sh[ebSh]ebi`wUuFRm4Jw2_[y0JvB!.<Ju(!&SoG}6Shd}6<Ju(!&SoH}6She}6Kur@._g5vHRieJvx!{L2G{Kx6gd'T#?Rh82Wi5cZ#X(g1w)Rm5dW-Y(Ta#!a)!#aYa=wnfE=su2>>bU{0j9udv:<svj8uQv-7RgHdE%#^'sq9sp=>Bb_{TJv`!&g/r|snj6v(us5d,#Y(56H}[978H}]Jw5!&g1rushJvB!+j;v{u5?zDhd}6}bj;v{u5?zDhe}6}ce*#`(^^^a[aea!=!a6a*aoXb1a.!aAbL!b>,b'aL!aV@Wf|2Wlg3[y/JwNZt^@3piPw:5pgJunZou3@rsJva&!Vy_g<v~Rm#JvG'!6Vz0=<r{Ju{%!:pj@WfsiXuJu3Rm:JvZ&!WfA~Bph@c4Z&Dtwax5rubx(#:awRk1@d,#Y&RfjRfid1#,Y(@Wfp2Wlrg5s@ryKu[@!,'=]ig9wlk?Rk>g5u-rqJvy'!@9RkQcH(T#=>Ri~@<wkj(Wj(KuZB*!&<7rw@9RkRcH(T#=>Ri}@<wkj)Wj)dg(Ta2Xa9X#`-!a*CARhg@@=I}d9x;c~#X%so=<sj>2@@=aybb}XjWv0Q~EfEj3vLv;<d,#Y(56H}`978H}_dgaPaFa'a/!#a3Y0a_a;a|!1(a7-[yE3[xt;:pJNvZrrg3uJrvJwNZt=@3pIh=rt3rxPw:5pGOu!5rpJvG'!6Vys=<rz@c4Z&Dt(ax5rtJvZ!&~BpH@wsfNg-vaRlNci*U#=<wei<F}a5@Jq.!a*JQ!%@qZ23d(#Y&RjH5]jCk!u7w&u0udARjFd/prq=tyvpaEa(a:.!a1aZ(@@=I}:9wpd%=<sX55w_h}@@=I{t=ay<aU@@=I}T=ay<2@@=I})?C9:9au@9Cb]}DP~=x-fAZ(2Wl1=ay<aU@@=I}>5@d##Y+jTv|vV~EfFj]uNpn~FRfGdgaK!Z2&!a8a-Tb({E!acTbM*!a(DtY[yYd'%Y#sl[y*hHvh>Re5x2c{Z}.j4uCvcawRiMd+#X+_x&d!},<5RkX;2Hzw@x,gavfB-!{CcF&T#Roe;RodwWbBg5urRgaKvHC*_6Vz+<4opieuew&Rmq@d]&Y)X,T#X0Rh}<BqP=4qS9:ReMg/ujReNJw0!/<Jui%!bd{kawwnemRelAxUa?a3#*.&UX(Ya+a/RhvRnQ<o}9Wmtd-#Y&RgSRmw9;Rmxay=Rmyg-vaRmuxEhSrNu,v-voC!%(aR.a(a7+1Ro1>Ro5CE{A9b]{@;5x#eO{:g;urRi+KrNA!%(Ro3>Ro79;Ri_Ku@>{;&!x%gX|{KunA_+g5QRj/g3u5Rj#g>uERj%wio/xRhS&!,!#^1U}wba{8>>@=be}qC@:D5ba{7Ku+A&!}x?ba}t>>@=be}se(aA^^^Uat!b0#{pa+awUazbGa#aLb9bgaWac'a5TbS=Br!d1#`%scp_Jvl!#rT>Re0JvX&!VyN=H{Fcm#U&:pY=ReaJv2&!]h0=]nUJvG'!6Vy|=<r%JrM_=]h2@Wlud'#)U'Wf'b]{i=]h/Jvh!&~BpWg=v]RnMx+ny#'Nu;pVwjnu=]nwxJnx,T#`&Reqwjnt=]nvieu9vrRjLLuYwP(#+!th@wih5pX~Gr'g5v/Rh4KunA'!-CARnP@wwiN:Rm_9x'cvw>!|l=<saKvAA!0&3@q}>w^e1bp#&Re2Re3BDx7gH#T|f5H|eKuZ>!%(:qNAH{]Jv6!+3B2B9=b^{X<5<B92:E{ZLvhwA(a;a%!igQuyRmad+#Y}m@3Rh5d8#X'X*:AqUAHzmaxwbh<aXRnVcF}RT#Nw&cj#U(BWnug/vsRntdka)(a3+.Zb7aYYan1!bVa@Xa}[y^@b[{G=H{+hFu73Rj&Pv#5ReQcK%T#sig1v{Rj'Ku+D#'!t]~Grm~?rkKuMB!01d5#`'Vy.ta3Dtu~Hroc8#'{^45s85AwZbP&!#Rn!wghxWn#KvEA!)&2RlA2RlBx:h|#(T,=]j09Wobz>x]z/@awRoTd+#Y(az]hFhCrm4d,#Y+jTv|Q~EfMj]uNr|~FRfOdCa!Xa9_X#@<plJvf!%b`{(9;Rgwc;.!#2x7cw#T|UDb]|T5Ju={(!=@E{&Jv)&!Ab`{'awJvf!~*>>@=be{#KuY>!+&4Ezyi[ugv&RjIdea+T)#UXa&T-T&a!Rh9auRmW=]kLg5vuRn+g3u4Rn-Ow6ARn,hHus5xNk?#UX(U~)/g8v0RkD~AwkkF?Ri.OuNBwkkA?Ri/d|a2`a*^UYa.!aBTZaTa'Xa;!(!2!-a#b2[yC>6Vyq3[xr2Wi?g1rusVh%s?DtF~<5rbJs;%!DtBfswKtCj[uvuSsEu3RgVx3o:u+wN'*Zt;@3rd~Grh~?rfg8w)Lq)qE&-a%!>bI|`jWv0vV~EfCjTv|vV~Ef@j]uNpn~FRfBcK#T']gWNu7x,k7q4ai(0!hHv8<RhmkMu9vrsBuev/RhlCJvB!,g<v{wchh~@:Rhji[vrv{wchi~@:RhkdS&a5UY#Ta!RgPwwiI5BwciI~@:Rh`x'iJvj'!5]iJPu8Bwch]~@:Rhach)U#h3rp]gLh@t|Ax,hTq3ah!-(~@:Ro0Ou!5RhXj^v(pyw8unRhVd|)`,^UYas!a?/a2Z'a^Ta{Tb7Ta(a#!a,Wf&9sZ3DtAadamov=Bqt3[xig8vsRm~>waiL2b`{QJv*_Ouv2qgj<v]v2BqfdR'X*X#Y-@3qr~Gqv~?p6hHv-]glPup5Lq+q?_%*b_{qF{n9b^{rOu4ARhpKvCD!+&~Bqp:5Dbb}nwoiKl&unuTuBv]v+ueunaXRf0=Jvh!0nKufu8v1w&w7q%w&uHrz:Rgnj5w,uxDJq/(!hNw'5ReCk0s2u3w/w'5ReFd>Za&!*UaA=<wkgsRnSJv^!%Refifw3vyRgOKu_B'!,<]gkiiu:w&Rh<=C@a^<B57@2F{[<B5@aW:=3away9A5aW=<B=C@a^<B57@2F{Ie-#`(^^^bCara.b8aza6!/bZ,!adTbnTbOb+aFaS!aAT9@Wf~2Wli3Dtl2@d,#Y&RfnRfmJwJZtN~GqyJva&!VyMg<v~Rm%iXuJu3Rm9Jv[_=]ih9wlkDRkCd1#`(@Wg>2Wls3cH#T(@<Rj*=>Ri|b~'#23s9h<~El.d'#Y&Dtxi^rzvdRl#d*#U%(o|B2s`hJwSaxRmDKv4B&!1:Rmdd5#`'Vx}to~Hq{x'f1v3(!BA5ba|bJv_&!Wfug1v]ReIdO+U/Y#&G}-8wze=Rh{g1v]ReHg/uQRf/by#)ibQwERl/cH#T(@<Rj+=>Ri{cNu+vlax-!(#a0qa9<Rii2;;bU{H;x<i=&X#Rk`<4wwi=C9H~8xAI(Y#<azRi@45wXI<B9;5bb~7dL(X#Xa(+!aL6Vy{g5QqOau:5au2@ay547EzbxOcU(UX-T#Ta#:Cbb|A?wjh/b_|SOw6ARgtihr}u7Rhy<d1#T)X1@@=I|~=ay<2@@=aybb}Sj3vLv;<d,#Y(56H}A978H}@dGpvs@uAu`vcw9*!aFa+ai%(b!aXa8.a?a[ozWey=sU2@G}Nch&U#Rf_WexKu+D#'!t:~Gr`~?r^j]uNr|~FRg*j^psurwJt|RmcKv)@&!)7Rkv~Br[@wxfO:Rl3co#U'6Rezj_q#vIuavjRltwzeyh@vr5JqD0!>aY?C9:9au@9Cb]}9cl#U*5;5<H||jbuus1ucv&Rfvg1v~d/pppzqFr^a--a~!aMat1(hFv;Wiz@@=Izoj5uuv-7Rix~Cw`fk2WlVcZ#X,k)u3vWs@u2]ktg;wEx'fBq(_2Wg/jTv|vV~EfoJv]!15x'hzqG!(P~EfU~CRl_j6v(us5x4i-#T(2WmZ?C2F|d>Kq<aj1!*jTqIsBv=Wl`~Cw`fi2WlWj`v0u*~>RlR=c>Z,k#u3vWs@u2]kr<c1Z+jTqIsBv=Wla~Cw`fm2WlXdmb3!a{(arZa`bkTa%TbQTa-a9+c'!aM!/[yL=Bqug.w'RifhFvyDRj.g>vgwyk^9]k^Jv3_@WfbAARkhJw2_[x|JvB_wkoIRoKwkoJRoLd'(Y#<]gm=<9<H|yd'%_X#skDtb3awwqkgNulRkgdB#^',9:p'hJwSaxRmEBwVb8@4=H|qLu+w50&!)@3qs~?pU>Awwn;;Rn=c:Z'ARn<=<qwKvC@!/&~BqqJv6!&]eVb^z^xRge'/a%+^`#Sge}6<4Rn3=]n0Pw2>Rn8Jw0!&>Rn:>Rn6cY#a7+!a&=<wkaNw~h3z_c5Z{=wjh#=]nLKv^D!&)Vyz=bW|swYb<WetcG#T(2wxa@qVx@gD#Y&b^|V5JwG&!5bb|pg/w&RgD@x=kHs=uAvn!a%%/'+RmSRh694Ro`g-vaRmRhHv-]mlxCcS#`&ba~.5cD#Ta)P~=d,#Y(56H{>978H{Dd_#{2^Y%_+qbbb{6g3sERhsbU{?dfa.,`a(Xa<!aiX#(55RiG54RiHcI#T'WiU3RiVNvdwtfcRlKNvdd,#Y&RlHRlExQgf.1*^T'X#Sgf}6Wn4=]hfPrk>Rn7Jw0!&>Rn5>Rn9Lunw?&a2!,5<oq@@wqfdRlJj5Q~=d,#Y(~ARfcOuN]fdDKw;ay(}i!547E}j?cI#T(@5bV}iCbV}hdv(^^Tb?a40,b##Tbo!a*bR!a<b|a/!aKai!aU[yK=]o^g:v>ReGJwPZtK<7Rh+h<~El,Pv#5ReR@awwxjCg,ulRjDJv6&!]j!z?aQeeg>w=Sh<eeJw;!&axEzOg,Qosc!#*:wkeJ]eJ>x'h-u(!%Ro.w~h.zPdNZ(X,Ya![x{;9ReY;wkgxRiF:x?ap#Y&RmUg<s2Rkod]+UY0TZ'!a&A9sw<=bczLNvuw{gqzNhJwSaxRmCKuLay!#&s_Rf-55b^{uJvZa!!c%#(55Ri654wmiu5RiuawLu,vp!+}^%b_}Y9;wkgxba}o>A9:=b^}zKuh=a''!3awRk3c*'!#aHRk6c+Z&Rk5Rk4Jv)&!awRjSawd9*`#0?C2@EzMj8u<uJ5RmbjQrquJu3x,k>uq@_+=ayb^|W~ARkEOuN]k@7dhzV^X/X&a-#zRzSb`zXcJzTT#2WkVKvDBzW!%FzY9;5bbzWjQrquJu3Jw3%!b`zU=ayb^zQd:#X(T-a!6Vyywxh}=b]{Jg=u1RiAdGp~qHtzv!w(wA+a+a;<!aJaYai'anasb(=azRmV:Cbb{MLq2vb!%')RjuRjrRjtRjqx3jnqCw3!%')Rk(Rk+Rk&Rk)Lq2vb!%')Rj{RjxRjzRjwLq2vb!%')RjsRjpRjfRjex3jcqCw3!%')Rk'Rk*RjkRjl9<CbbzfOu4ARhxLq2vb!%')RjyRjvRjhRjgx=joq*uKvb!%')+-Rk.Rk%Rj~Rk-Rk#Rj}x=jdq*uKvb!%')+-Rk,Rk!Rj|RjmRjjRjidAq&qKs@uAv8Aa.'*-a@a&0!aM@a5[y73Dsy3Ds|3Dt):wxgI2sHJwJZt.~Gqxwsf0ikrzt}Rl0Jvy_[xj~HqzKv_A|D!&WfP8axRoVcf,U#k(v]v+ueunaXRf1Ju}'!g8u#Ri=jQw!sCunLprq>!,')~<5qeGzq9F{W=c##%s5au:5aU3CBE|;d4#X(D!a&6Vygx(b;#(=]ed?C2F{N<capoq2r[a&!aPa9,'Pw;5s:@@=I|,55w_h|@@=IzcP~=x'fCqB_2Wl2>aU@@=I|1OuNBc1Z+jTqIsBv=Wlc~Cw`fl2WlZ~AcTa%!Z+jTqIsBv=Wlb~Cw`fh2WlYk+uNqJsBv=WlSg,u3dca3#UXaMYa)TaB-=cM|7T#<bI}l5@B932:aV2G{BOuNBJq:|M!5Ezt=<B=C@a^<B57@2F{v>cB{/T#=ay<bI{3Jv6!a.6BKq0ah&+!5E}HP~Ef{978BaU@@=Iza<7d#.Y#978BaU@@=IzH~AJq0!(@@=IzG978BaU@@=IzFe,aU*Y&^^^bvJb,b:bFad!a,c2Ta>aL.bo6!a#CbTa'T#Re{2Wlh2@G{yg6t~Ro_NvdRfticuRQRllJv3&!x&c|zs@Jw3!%RflwpfkRlpKuL;%(!Re<@G|C2GzdhIvuBwgjAg-u0RjAKQB%!(GzZ@G|5NuuRl7d='T+Y#Vy[g<v~Rm!==G|>JvA!)@wma=]m1ifuaw&RmnLs@vT'!|/+[y,g:v>ReTJw1!#qX=x!eC{bLu+wT&)ZtZauq_~Graci&U#F|89:r_Lupvq!.)&2RlG8RfaC=x!eF{_h?rpWlmd&'!#X|&]k::xJey#`'T|+<E|&2@H|%dE#(^,g;u.RiEg6vjRiC9xCkA{O|zY#g=ucRmXKs0@!&*@G|m@awRknJuh!,3d(}gY}eJvj!%Rm):Jw3!%Rm+Rm-Ls0w(&!a(a#@b[|6cZ#X'7RkxWgAOu4ARn'dH'U#Y*Vz-Wm'CARm}d]*#a%^a*T'aK!a<9bV{PC=p*Jw4!&SgxcbB5r]idw(wBRmF7xFkt#&`(Rm/Rm8E|!JuY_9:Rl5=wrgr2:bbxd@xXfB(a*#T+!.X0X1Ta/a'T&RlDRfL>RlyARl9b[z[>RfZ:RlL:RfRwlg/ARl;9;RlxKv,A/!%7s69<74=BA5ba{-8Bde#`a<XaKYa1,a'P~=wxfB2bZ}}?C972@@=I}r8@55B9;5bb}G978B2@@=aybb}3j3vLv;<Jw3&!>Rfk=ayb^}4~Ad1#`*@@=aybb{w2@>==<bbz]dx+UY#^UaF!a9!bB'Ya1.!ajXa#%olRhD[y=3Dt#Ov5BrHKuMB%!(Rf^Wep~HrJwkiQjKr|~FRg)Ku+D#'!t5~GrF~?rDdV)UY,Z/_7RkuG{<~BrBg,rlsO:235B@bX}|d?a1!#`(6Vyn5@d##Y+jTv|vV~EfIj]uNpn~FRfH7Lq2vb1!a9-978BaU@@=Iz9978BbU}#~AJq0!(@@=Iz8978BaU@@=Iz7~AJQ|}!978BbU}!JvkaK!AdUa21-U#`a+(g/vsRn~Ou!5RPj:rmu9WhOjXuvvNr}:RhAj^v(pyw8unRn[kPr}p|u7vwv]RiSBd;pppzq@qHQa?(b.!a.a`@.|xa(hFv;Wiyj5uuv-7Riw~Cw`fg2WlU978BbU|wOuNBJqG!(P~EfD~CRlQcZ#X,k)u3vWs@u2]ksg;wEx'f@q1_2Wg.j]uNpn~FRfqJv]!15x'h{qG!(@@=IzK~CRl^j6v(us5x4i,#T(2WmY?C2F{1>Kq<aj1!*jTqIsBv=Wld~Cw`fj2Wl[j`v0u*~>RlT=c>Z,k#u3vWs@u2]kq<c1Z+jTqIsBv=Wle~Cw`fn2Wl]dn1#c(a(b^a2!b/bAT(bj!aDa7bu,a_a{c0!2T0g:v>ReD2@G{42@G{5~DpM~<5rc=Bx6i>{RT#RnI@zCx]y]z:2Jv[!zr5Awyk]9]k]dD(Y+X#6Vz.g=wKtgwhaCwgmTWj2Lu,w%_+/[y-B;b^xeg3u3Rj-2@bX{*KrJ<!+'@Wg(g?QRlC@Jv`!%b[zIwsfII}8JQ_@w|kW|=Jv(%!AqcOuNBJvEzh!bYzjLs@wP#(0!oy@>RkdJwMZtc3Dtd@BcG#T'9bWxg2@2Fznd*#Y+;2x'c}w<zizixNgwa#Z'U+!/!a'!a+w~g~z6wcn{Rn}wcnzRn|5Rh%=]nJg5vuRmvNvdRlvcprJu}w*az*a#!%.a.'Bot9qT]kj@Wg'ay2Gzv@Jv`!%b[zEwsfHI}1;ck#Ux`<Cbbx_Lu+w!a&0*!wko*wwo,So,}6Juqxf!E}PigQuyRm`d3(`#8>Rn%:A5B;bZ~%KvhCa!a2!x>k7#Uxb@b{#xaRk7Jw0!)>wwhlShl}6>wwhmShm}6CJvB!.x'hhvj{!!5Bwkhhbaz}x'hivjz~!5Bwkhibaz|xEhTrNu,v-vpD!a%&/)a3a.,%Ro2t[CE{)@3re9b]{%wjo09:rgc:Z&Ro6=<riifuaw&RmoKrNA!%(Ro4>Ro89;Ri`dSaL'UYzxZb)7Rka3xRhT&!,!#^1U}vbaz{>>@=be}yC@:D5bazzKu+A&!}{?ba}y>>@=be}wxBh[t`u~vJvr!%a!a()a,a0a4RoC=]o;Ju(!%RoGRhdwjh`=]oAg>w#Ro?g5vuRo=NvdRl|Ku]C.!&;RoEJvB!%RoORoMBx'h[v+_?w~h`}~5?w~hd~!xKh]oiptu-utv.vp!#%&a30a@a'a+(a/aOp(o~p!RoDJu(!%RoHRhewjha=]oBNvdRl}g>w#Ro@g5vuRo>c[#X']o<CauRoRAd-#Y':RkpauRoQKu]C.!&;RoFJvB!%RoNRoPBx'h]v+_?w~ha}t5?w~he}ue!/UbhYacXaW^Tc&a;b:a-c/#b&aja1(!cL+!bKbt!bmcRc9aIc?8[yW3Dtt94Rg`Jv}!&SiRMzBhEebShEMNuPRe>x7gL#TzuwjirRipc<Z&>on;>z=h-MSh.Mwqczx'a7vj&!>Re4@=ResJt__NuPRi*NuPRi)j]uNr|~FRfzKrJ>_+@Wfy@Wf]2WocKrJ<!+'@Wg%g/QRl@@Jv`!&awRl<wsfFIzgLu(w*!.*&ShBMwvhIRhI9;RhNx1hK'!#Sn]Mx1hK~0!#:2<H~7cNu+w7D*'1ZtW>Rn1~?rOc:Z&Rn2=<rQ<7wjh&=BSnLMc]#X(6Vz)w[b=a!U#9wzgMc3#&(RgMRitRis<x,gKt`ax!&+SioM=BSilMc3#&(RgKRinRimKurB,!&SiQMzBhDebShDM6BJQ!(P~Efx978B2@@=I}WLrJw!!,a*&@G}O@9wkibRid@@x'fKwC!&SlDMSfLMjUv~Q~EfKKv3@a+!(hFv-]mpx/hYZ(C5RiWz<o/MwkhY?So/M@x,gbvfB*&!SgEM:SoeeehFu3:Rgbda(,^TZa)X/7Sg[eb:2RgI~BrMC@wgkc:wwkcRerx3h(uUvK!&*,SnOM4Sh*MArRg;wHRh(x=h;rJvPwI!a4',a'0@Wg&=BSh/Mg>w=Rh=g3w*wwgGRgGcW(X#;Sg}M2Gzk@Jv`!&awRl=wsfGIz`dKZ*T'Y-:RhR7RhQg5u-p`j6v(us5d,#Y+~Awkia?RicOuNBwkibba}Ld6p~tyu_vbAa'a+!a/'a3aEa8a!>Sh,ebJv{!&Sh@ebSaReb9;SgwebNuPRi(NvdRl)NuPRi'hHu^<Rm^Jvv_@Wl(g;u1Si/ebKu'B&!*Sh?eb@Wl'z@aPeb95Si.ebcpputyvjB)!,&a+0a%ShAMWeK@G}C@WfJ9;RhMwvhH9w{ia}ix,hJvRA1(!zAn[MRhHx1hJ~*!#hFv(BSn[MBJQ!(@@=I~'978B2@@=I}2db.Ua<'X}+T#a0XaG2G}E;wkg|wuh!Rh!x,hZu,@)!&So0MVy)C5RiXACJvB!&5RiY5RiZg8w)cG}*T#2@bU}=KsA>(!a.3wkhZba~(x,h^u(A!&(SoCMRhb5Bz=h[eb?w~hb~6x,h_u(A!&(SoDMRhc5Bz=h]eb?w~hc~6e)aA1T#T,^^^c-bMb&blcPaP(a/!0!bA=b5c@a(!bfbrc#2afwmhARnjwchORnp2Wlf3DtsNvdRl-2@wpa<]m0bx(#:awRk2@Jw3!%RfhwpfgRlnKQB%!(G{V@G|'NuuRl6d='T+Y#VyUg<v~Rl~==G|<Jv+'!aYShC}6@B<5?ba~8@Jw3'!g2QRljhLrpWlOd+#Y'g.w'rIg>w*wgj@g-u0Rj@Lu+wT&)ZtUauq]~GrGci&U#F|39:rELrNvj!.%*RhCwunfw~nf~:9;Ri]>wtnhg;wHRnhx3hDs@v~!/+'@Wfr@9RkSNu&Rlo=@<5GzoKs0@_+@Wl+@awRkmJuh!-3d(}pY#qWJvj!%Rm(:Jw3!%Rm,Rm*de&!1U-U#`)Re;@G|.@9Ri82@wjfvRlq=@<5GzpLvOvr!).&2RlF8Rf`C=x!eE{.Jw3_g2QRlkhLrpWlPde(!#U{s,UXa*Ta'[y'g:v>ReS;x0PZ&RnlRnn~HrKJw1}f!=x!eB|2w]aP(#Xa&a*Ta.Ua2a7=]iOd'#Y&Ro&WnWg;u.RiDg6vjRiBNvdRlzhNvj]nYJuW_2Wm3x)kFze{9d])!a.!,Y01!#&aC!a3RndC=ox~BrC@2b^{pg,rlse7x'ksuq!%Rm.E{xidw(wBRmGx9o+)X#wwo-So-}69:Rl4@xSf@a#XZ'X)X,Ta(/ARl8b[xc>RfY:RlI:RfQwlg.ARl:9;Rlwdn'#^XafaQa1X1TaHTa)@b[{zcZ#X'7RkwWg@Ou4ARn&x)kG#{,g7u/RkGdH'U#Y*Vz'Wm&CARm|bx#(A]gUbUzJj9Q~=d,#Y(56H}l978H{U7d,0#U*2>ABb_xZ978BbU{e~AJQ{g!978BbU{hxMh?ad{oUYZ.x1h?{l!#:2<H{mx3n[t{vl!,&a%3Ro(z=iS}6ARnr=Bwsn^wvn`Rnbd`*T}B0!#^X'BG{c9b]{a>>@=be}F?JvS!&BG{d7BG}(Bde#`a1X,Ya@!a'P~=wxf@2bZ}I56B2@@=aybb}08@55B9;5bb}<j3vLv;<Jw3&!>Rfg=ayb^}&OuNBKuLA!)a!P~=x#fD{f2@>==<bbzl?C972@@=Ix^d6rSu,v7w*C(0a)a6#B+a%!sQ[y?3Dt%3[xn~<5rLOu!5p@Ku+D#'!t7~GrP~?rNKvlaya7'!h+v-5qMg=t|cd,U#5AAaa5Abb{S@52B5@a[@52B5Gx[iXueu;d<#`a(!/549C;ag>23ExY5@Dah89b^~689Jv)!~2b[~1Lv'w(%*!a#bX|aPrmawRe]keu7uhv-q6rxu,q`xTo]/a5aU!bNaDXbi!b-!ao!b<bwA!#5@B932:aV2G|:d-)Y#hJrL>RhG<7@C5<H|_=Cau:5aj5@B932:bJ|ng>vIbs)#?C2F|9jPv0w.vISh-MKvUaz(.!9ABbb|[5;5<H|Eg>unwfh;9:4E|YjQsBt|vjx'hYq3!(?C2F|J:2<BaY?C2F|GOu!5x,g|p{ah!-(?C2F|c9:4E|OjXuvvNr}:Rh&i[w*t|cd+U#jJvsu)vsSn~Mkfrmu9p}u7vwv]So!McW#Xa!ax5@A5aY:5;5<H|>kJv~vYrquJu3x4ib#T)2@SmZM?C2F|Bj:rmu9@xPhI(a*a#U#`a3-5Abb|L~@:RhK9:4E|0@52B5G|#C::aY?C2F|-:2<BaY?C2F|.5Jvk!a)javYrquJu3x4ia#T)2@SmYM?C2F|HAxPhH(!a#U#`a*-5Abb|4~@:RhJ9:4E|R@52B5G|F:2<BaY?C2F|Sc^#Xa2j=Qq5CJvB!-g<v{z;hhM?C2F|Zi[vrv{z;hiM?C2F|XKsA>!a)-g<v{z;h[eb?C2F|]i[vrv{z;h]eb?C2F|^iZu.vix,hZq3ah!.(?C2F|QOu!5ShXM:2<BaY?C2F|P", 13494, 2713, 49, 25, 61);
|
|
314
|
+
const Xn = /* @__PURE__ */ Wn("!}.&u%}'&}*'~!6*)%&,~!J~!J~%L~y<~!R,~~%Lu~~#GD~~#|)1#%}^%}2%+#.##%##%}&%##%'#%##&%#%#'%#&#%#&#'#%%#&#%##%#)%''%&%#%#'%#%%#%%}%%%#%#&(23#%%#&-%0%('1#(##%#'##+%'*.:1}#%#6-+(%'%%#%%%}#L'2351&('%}&/N'(0(/*-%(%%}#'+&T%7.2}#&%&#%#36/5##%&%%#&#%%#))2%%##%&&'0~!#*+&'%1~!%).'3q?&%'1~!.##%6(~!+%%%(Gw'rT~!E#<nA%#jZ~!H%(~!42##~!*31&~!G%U~#)5~#`3~!J~!Z~%]~%Y~%C~!q~!u~#kz~%#~!6'~!D~!U~!?~#T~!c%~!G#'~%7|~!G~!J~!G&~#pb~(Df}#%}*&}#%##%##%##&#-}&'#'&%#.++}%mI,#,@&(}*%}*'%&##&#%##%}&0}#.},U},%}+%}&%}#%##&}B%(}(%}+%)})%##%#&}&%##%&}<%}>%#%&}*%}(%}9%}/%})%}*%}*%}?&}&%}3%}&*#%})%#%#)}#&#-#+*%E%%'%'#%}#*V##&##I}#&&##%&%#&&Qf%%))w/0+&%#(#.%-''''++++7}>%4'',##1,#%#&%##&#'##&#*#9)%&%}#*}%,#+P(%A&%#'&##wSD',9E00#y#@}(+}&%&>~!#~!X}#*}(&&}(&}(,%}%&#+&}#&}I%#%}%)#(},'%#*}4%%#%}(''}#/##(##),%-##%%)#&}(.}&%#&}%%}*&#%},&&}&%}#%*'#%})%}D&}&%}-&}6&#&}-,%}#%})-(~+`~,=?~I9'9%~!,#%})%})%}@%}?%}(~!?~#<~#pP~#BG~#=1#%K+~#?#~%;)~#A~#mF1~#A'~'X%'~#lR~#N~'N~#r~#m#-~#i'?%#'%~#B%##%,%#~#_%#0%~#]732~,w~2+#:&#%&'0%&>%}#>##F+)#%&&#(+_}4&}-%}(&}@&}O7Fdf0@+/v4}&WU##&/0#&'('B#%}.%}'+#%}#%%&#&%#%##+#&#)#6#'#.},%}c%},%#%##%&#&%#&~#>'*-.%##%##%}#%%}%'~#)D1}#%*&~#_%%'(~#S2%'.}#~#=##*'*-%}&'%'##&&~'E%.#&~#M4}%%##&'%#~#O1##%&#'+~#<B%##%%'%+~#;#@%}#&%#&&%#(~#H1}'%'##&&~#?A}&'~#D#%32}'&&&&~#[}'(#%}'~#;C})&}%%#%~#=&%,3}%'(#%%~#^'#&&)#%'~#Y%-~#d-%'~#^%%&#&&&}#~#b~2t*&'~&(~&@~0%~e~3}%*''0})&}+~!9##-}#%-hD*)1fC#%/&/fB#40~!+#)*4~!+~!K'&:~!/*7~!.#~!H~!L':~%x&~!H#~!*~%1~!I#~!+A~#p'~!F~~#-#~,,(~.Z~!V~%;'B'mq-W~!N~%I%#&&#&}#%},%%}'%}+X#%}#&}(%}'%}<%}#%}%%'}'%}:~![)9@~%>~#UA%-%##&~!C%~!-.9:~!1~!-^2/:a~!y,D*J#-5)/4~%23,~#G~!L1~!0X3`~!2+~!!0-~&E~!W~!o,>Y&]~%cZx_&~#O*9#A#'#+I'%#)~!0B*-5A+-((F&*M#)(-7-5+'-3a5Vi~!Y~!?+[)%3),ERHm~!+:D,VG.+)?fB%%*(%)'(#&80%1'8`K8?`+'Z#&O&'H5#*9)A%%5&3))0%39+.*7#()&&*=4@**L)<'_&*+..;(#*+)./&0#3)%')-8(4ixD(&.}%,('aI:,)%,k2231T)I'#/-W7,/'Q#.'Y24+h')37</31&83##&0#),H(?'&?/1##%#&&#%''-%&&&#(&''&#.-'%#%%(,')*'&#&#'##%(%(#%('#&##%%%%('%#%#%%#%#&%##h>w+v<ayvyvcg.uuhKr}g/v|g>u9i[~>g5uI~=RvdwEg;v/g;uk!!TTSx]@RT!U!#!@VBRUU!'UTe-d0c`e&gSdicedFcrdTaqb.kYcAohdYd@a3e+d}dMdtd.aJ#bqcK`dle/e.e'dwdPdodddjbEb}ogd^ofdpduc6j?l%d{drdqc)d7bacOdQ%T#Y)X.sR[yH>6Vyv3[xwLu>vo'!*.[yBacahoj>6Rew3[xqdZa#!a&#^(X-[yG>6Vyu3[xvg3sEr|g.u/Ri9db0T#^(Xa)!-[y;>6Vylg4wKs{JwNZt3@3r=c4Z([xlg;wKt!cpq's@v7A'*a(a+!-a#[y<3Dt?3Dt'>6Vym3[xmg9rxsNJwLZt4~?r?db1T#`-!(Xa,!0[yS>6Vz%NuQs.g4wKtnJwNZtS@3r>c4Z([y%g;wKtrdga8!a(!#&T*Y-Xa#!a0<or[yc3Dtq>6Vz43[y3JwNZtf@3s!Ju}!%Dti:pm3c_%X#tjB5pkd6q!r]u?voC'*-a.a2!0a&a+[yI3DtI3Ds~3DtH>6Vyw3[xx;:s#~<5pKJwNZtE@3r~d`a)!a2T#a.(!+U.X1[yT3Dt`3Dtv>6Vz&3[y&g9rxwzcxstPu.<rAJwLZtT~?r@dZa%!a.&^*Za(/Reu[ya>6Vz23[y1g3sEr}wkg{NuQRg{ci(U#5@b`~,cg#U(2WnH5wugcRh7dX#T(Y,a'Ta!!a,[yZ<]mj>6Vz,3[y+Pv#5ReZKu+=,%!H}7ABwkaS?Rh:BcW(X#<]mrj:ubv/ARekdg%!(!a.*Ta(Y.X1!#sP>Rl*Dt6[y>>6Vyo3Wf*jOvuumvuRgRJuq*!:9<B@bX~3jVv&v@s@5Re[d/rQt{uAvo&a&a*)a2!,0Wf!3Dt0=Bs'>6Re}3[xy~<5s%JwJZt1~Gs)c;&!#2sJkNuXvzq7rxu,Re8dka4!a8(aEZ+a@Y.X1Xa)[yd=Bs(3DtP>6Vz53[y4cX#X&Re:avRe9~<5s&JwJZtQ~Gs*i^rzvdRg+Jv{%!2sbB@bX}kdga,!Za?&^*T1/!a'Dt+[y6>6Vyf3Wf%g/u;s4hGu6?Rh-JvZ,!c%#&RoX54Rivj7uyvf8RgTKvZB%*!2sGh<vu5Rgq<=C::9bb~#dZ#T&Ta6Y.X*Dt>[y93Wf)coZ(T,6VyifluvRgC@95@B@bX~/hFu34cC#T,k/unq8w8Q5RkUklwQuzunq8w8Q5Rk8d/rJu?v8w9)-&!a0a;a&aIWejg3sEr/h1s<DtDJvyZqY5aws3Jvy!&Wei~Hr1:au5@Bag>23E~5c:Z&bX};kKv?w&unuVu5Rjc;>bs)#~@:Rh.=ay<a]C;b`}Vd6s/t{uAvoaxa()!a,a7%-a#a2Dt,[yF2Wo[>6Vyt3[xuNuPRi&NuPwpi#RoWh?vf8Ri%Jv]!%Ri:KvxD!.'2WeAjZu`q9rxu,Re7woeAg-unLq(qA_/*2Wg_g3u5q^9:4E}/jTrxrzv=Wkkd~0UX#^^Xa-a1a5T&a=U1a'*aEa]!a*aPaA-adok[y54Rn>;:p3~Dp5g9rpsFNvZqjg3uJp4~<5p0Pw;5qlJwNZt*@3p1Pw:5p/Ou!5p2JvG'!6Vye=<qnJvh_[xhg3v,Rh3kOwOw-sDuev/Re^dha[a%!%!a+#Ta7)-5TaCaO!aka!a)sf[yb2>Rl!9ARiq5E}Qg=ucRkBE|oJrJ_@Wk~@Wk{JrJ_@Wk|@WkyJrJ_@Wk}@WkzJvO_[y2g-vMRmiKuYC!)&>Ri;>Ri<@3RkNc](X#@9Rk=g5vuRmhKvDB!+'=]meg3u4Rmgd)#Y'Vz3CARmfd`a+!%T'!+#Ta1Ta6TaM-sTDt9[yA9sYd'%Y#s[[xpj:ueunaXRgEjRq,v-vuqdd2'`#6Rev<32@5>:2<E}5xIo9a*X#Y(;5RePJvD_g>vyRgNj8w)v8<wggs:RgXiZt|vjx,hSq3ah!-(~@:Ro/Ou!5RhWj^v(pyw8unRhUdx-UY#^Ua.a3a70!)%UX1TaDa)'omRiRRhE[y:3Dsz=Br,>6Vyj3[xkg6ruwjcqsrPw;5r*Ku]D'Zt-@3r(~?r.i[vwv]dU1a--U#`a4(g/vsRhPOu!5RhLj:rmu9Wo!~@:wdh@g/vsRiTjXuvvNr}:RhBj^v(pyw8unRn]dz1UYa'a+^Y(!aETZalaRY.Ta?a4[yDJw1!#qLsW>6Vyrfzq-pLflpwRe|Js>%!Dt@3Dt&Jvy_[xs~HrnjMuwpsw'RecKu+D#'!t<~Grl~?rjg5u-x,gwp{ah!-(~@:Rg~Ou!5Rh'jXuvvNr}:Rh#cW#X/c;&!#2sLi[v7u7RgpJv)(!iLrxu,Re6j7v@s@5Se[e7d`aW!Za(a`T.a#!a3!&aDa-!9)Dt_=6s+3[x~~DR|h~DS6avhGun5RkZj3w)v-]mkKunB!&*]kb97R|i<ARk<c:Z(6Vy}Juh'!wziMRoS:F|vkLuauJv5vtvQRh1d='T+Y#VyO~DR|jcF#T'7R|g97R|kJv3'!ay<Rj,Jvh&!:ReXcsa6*a+#a#_aIRf9aLRf?c,Z&Rf5Rf7c.Z&Rf;Rf>cQ#%T'p-Rf8Rf=ct#%'(*!,p,Rf4p+Rf6Rf:Rf<d~'Ua%U*^UYa(!a,-!#a4YaTalaEX0a8a<Weo3Dt/3Dsx=Br93Wen~Dr;~<5p<JwNZt2@3p=Pw:5p;Ou!5r3c7&!#:p>3Ds}KvGB)_6Vyk2sM=<r7x'eovA(!hFu1ARf}cV#X&@r5j6rvwQa^Rf3c=Za'wkghJv__g;unRggA53B9=b^}%j6uduo5Jq;!(hIv%2Re`Ou4ARe_e%a#^^^Xa&!a*a2!&a6YaP!*ad!#a:aE/5Rn?[y@>6Vyp;:pE~DrY~<5pBJwNZt8@3pCh=rt3rWPw:5pAJup_[xoNuPpF9c!#'45pD5ARn)d8#X'X*3@rU72s]h>v<<sSjJpqvewOJq/(!hNw'5ReBk0s2u3w/w'5ReE5@Jq.!a+JQ!&WeU23d(#Y&RjG5]jBk!u7w&u0udARjEe#+^^^Ub#!a2/a`Z(agT1!a-a;|@TaG!aS[yV=Re~fow'RguNuPRe?bz#'>RoUWeL>:Cbb|?JwPZtVg6ruRmzJvD'!6Vz(g/vmRh~Jvy_[y(g9voRgyx*cy(#2>Ri2B9b]~9kIw9u7rluJu3Rg]dI#a%UY'@=p%CAx.gQZ&RhwwygtRm{x5g_Z'+ABqR9Woa=Bp&dV#^*Xa'!&@o{g4v]Rk;Jv{!%Rk[wkkiA5RkiwwfUB=x,fUuqC&*!>RfTg8v0RfV~ARfSd;rJsAuAv9wR'ae+/aO!a@aza/a#[yQ@Wg!2Wemg3sEr0JvB_g>uvReWg2v+Re=KupB_+[y!2AbY~-~Hr2AJwD!(h<~El>h<~El?Kun@+_:9b`}Kg-v/Ri3g;vtwyk_9]k_d=&T#*U.6qh@Ab`|K9:H|CJv[!&3Dtex'fDwC%!Rf[9WlMd[(^X,!a%Z06Vz!@WgBg=v~Rgvg,QRe@awd,#Y+jTv|Q~EfWj]uNr|~FRfXdy#Y&^Ua%!aO.!(a)Ua;=!a@aKap!a-,a!Ta]a[rSa]p?[y82sK=Bq~;:p:~<5p8Pw:5p7d'#Y'Wf(;RnRi[u4w&RgJJvG'!6Vyh=<r#ijuuv/sIKuYD'ZtG@3p9~Gr&d2#`(g<vtRgFj`u5w&rqpxRf2CJuY!+:wfnTOu!5Rg}jNs1ucv&RfwJvA!&3@q|BDcC#T,k/unq8w8Q5RkTklwQuzunq8w8Q5Rk9dga#!a'!a=#a0!:+Tb*b@aO.a4!aba8aFJv^}?!VyR~Dr<g;u%Rn.~<5p[x'e`wNZtR@3p]Pw:5pZhNvjBp.woe_g5u-r4JwF!%DtO3:ooc7&!#:p^3DtpLuGw(!+%)Dtk6Vz#2sd=<r8d'#Y([y#<x3gJt`w@!)%}MRiowzikRij=]ilxAf3,U(#B2Rf#g0v-Rm[ck{`U#]giKv3>)!&6Ri154s,KuGB_%@r68r:dJ|t`#X(9<E|u2@H|rx3gJu?w'!+'1Nu7Reg4=H~+9<wxgY95Rm]xLggZ-`(X}U2:Ri4h<uOawRmsJv__5@bb{jbV~3dka#a'a]!,#a+U=a>b6a3b%!/aKa/)!arwve^VyJ;:pR~DpTg3uJpS~<5pOPw;5qmPw:5pNOu!5pQJvG'!6Vyx=<qoJvA!{~Jup!%@qk7Rn/KvyD!}''[xz;>wkh'?Rh,x8gyt`w5D!&),(SgyccRgztJ@3pPB5p#d'(Y#<]mmifubw&RgoJvE&!82s^JvF&!8Rf,ADb]~;x=h'rNu]vK!,%'*0RnORh)4Rh*AqQg-vaRnNg;wHwkh'ba~4cE#Ta*x3gctyw@'!+%RnFRnD<4Rn@hFvK5RnCxWg[#`&a0Ua()`1Rm75Rg[c]%X#qi8Rg^NvdRj>BwzgZauwji7Rm6A4wgg]d1#&(*,.0a#Rm;Rm<Rm=Rm>Rm?Rm@RmARmBe%#^^^Xaea?aC/b+(,!a+a#!a/!>a&Ta<aKbD!2wphBRnk[yPw}hE|.=Br-3Dtm>6Vy~g6urRf.x,hPrNav!%'RnqRo%Ro#Nu;q[Pw;5r+JwNZtM@3r)d'#Y'Weh;xChL#`&RnmRnoKu}>%(!Rne~Bs-;2wjcussJv+'!aYSO}6@B<5?ba~8LrNvj!.%*ROwungw~ng~:9;Ri^>wtnig;wHRnixDh@|(UZ.x1h@|)!#:2<H|*xHn]#-UX'3Ro)z=iT}6ARns=Bwsn_wpnaRncw]aR(#UXa&Ua*a/=]iPd'#Y&Ro'WnXf{QRm2hNvj]nZd`'T~&1`{|`#9b]{}c:'!#Wl{>@=be}]?cl{{U#:5Abb}Jds#^YaF!a*b4a#a3aPa>&Tb!bH!*a_!Eau?/a&RjY<]gj>6Vz*;:pe~DrZg,QRj1JwNZtX@wihspcJvZ&!VyX9WmOJu|!|N2WmHJvh&!]ht~Bpbcn&T(!#RmQ<s7Nu;padH#X'`+WmJ@>RmKCARhnKup=!)&Wf+:RhqNuPpf9c!#'45pd5AwghpARn(Ls@w!%,)!RmP@Wfe<E|IJva!&WmNg8vsRmLd`*.`#Y'Xa!axRn*]hrA8Rhug5s@rXg8u!RmMd8#X'X*3@rV72smdI*#UY&RmICARho~GsgxVgd)Ta'U-Y&Xa!T#RnEWnA@Wffg1uDRi0hFvK5RnBxGnG&#`%owp)@wsf+bX}Ze-*1!a*^^^Ua|!#a.aq&Ya2!a>.a6!a:aO`aJDtL[y`@Wg#>6Vz12@wzoYRoZNuPRi!NuPRhzg=ucRi,@=b`{Yg=ucRi-ACJvB!&Sh[ebSh]ebi`wUuFRm4Jw2_[y0JvB!.<Ju(!&SoG}6Shd}6<Ju(!&SoH}6She}6Kur@._g5vHRieJvx!{L2G{Kx6gd'T#?Rh82Wi5cZ#X(g1w)Rm5dW-Y(Ta#!a)!#aYa=wnfE=su2>>bU{0j9udv:<svj8uQv-7RgHdE%#^'sq9sp=>Bb_{TJv`!&g/r|snj6v(us5d,#Y(56H}[978H}]Jw5!&g1rushJvB!+j;v{u5?zDhd}6}bj;v{u5?zDhe}6}ce*#`(^^^a[aea!=!a6a*aoXb1a.!aAbL!b>,b'aL!aV@Wf|2Wlg3[y/JwNZt^@3piPw:5pgJunZou3@rsJva&!Vy_g<v~Rm#JvG'!6Vz0=<r{Ju{%!:pj@WfsiXuJu3Rm:JvZ&!WfA~Bph@c4Z&Dtwax5rubx(#:awRk1@d,#Y&RfjRfid1#,Y(@Wfp2Wlrg5s@ryKu[@!,'=]ig9wlk?Rk>g5u-rqJvy'!@9RkQcH(T#=>Ri~@<wkj(Wj(KuZB*!&<7rw@9RkRcH(T#=>Ri}@<wkj)Wj)dg(Ta2Xa9X#`-!a*CARhg@@=I}d9x;c~#X%so=<sj>2@@=aybb}XjWv0Q~EfEj3vLv;<d,#Y(56H}`978H}_dgaPaFa'a/!#a3Y0a_a;a|!1(a7-[yE3[xt;:pJNvZrrg3uJrvJwNZt=@3pIh=rt3rxPw:5pGOu!5rpJvG'!6Vys=<rz@c4Z&Dt(ax5rtJvZ!&~BpH@wsfNg-vaRlNci*U#=<wei<F}a5@Jq.!a*JQ!%@qZ23d(#Y&RjH5]jCk!u7w&u0udARjFd/prq=tyvpaEa(a:.!a1aZ(@@=I}:9wpd%=<sX55w_h}@@=I{t=ay<aU@@=I}T=ay<2@@=I})?C9:9au@9Cb]}DP~=x-fAZ(2Wl1=ay<aU@@=I}>5@d##Y+jTv|vV~EfFj]uNpn~FRfGdgaK!Z2&!a8a-Tb({E!acTbM*!a(DtY[yYd'%Y#sl[y*hHvh>Re5x2c{Z}.j4uCvcawRiMd+#X+_x&d!},<5RkX;2Hzw@x,gavfB-!{CcF&T#Roe;RodwWbBg5urRgaKvHC*_6Vz+<4opieuew&Rmq@d]&Y)X,T#X0Rh}<BqP=4qS9:ReMg/ujReNJw0!/<Jui%!bd{kawwnemRelAxUa?a3#*.&UX(Ya+a/RhvRnQ<o}9Wmtd-#Y&RgSRmw9;Rmxay=Rmyg-vaRmuxEhSrNu,v-voC!%(aR.a(a7+1Ro1>Ro5CE{A9b]{@;5x#eO{:g;urRi+KrNA!%(Ro3>Ro79;Ri_Ku@>{;&!x%gX|{KunA_+g5QRj/g3u5Rj#g>uERj%wio/xRhS&!,!#^1U}wba{8>>@=be}qC@:D5ba{7Ku+A&!}x?ba}t>>@=be}se(aA^^^Uat!b0#{pa+awUazbGa#aLb9bgaWac'a5TbS=Br!d1#`%scp_Jvl!#rT>Re0JvX&!VyN=H{Fcm#U&:pY=ReaJv2&!]h0=]nUJvG'!6Vy|=<r%JrM_=]h2@Wlud'#)U'Wf'b]{i=]h/Jvh!&~BpWg=v]RnMx+ny#'Nu;pVwjnu=]nwxJnx,T#`&Reqwjnt=]nvieu9vrRjLLuYwP(#+!th@wih5pX~Gr'g5v/Rh4KunA'!-CARnP@wwiN:Rm_9x'cvw>!|l=<saKvAA!0&3@q}>w^e1bp#&Re2Re3BDx7gH#T|f5H|eKuZ>!%(:qNAH{]Jv6!+3B2B9=b^{X<5<B92:E{ZLvhwA(a;a%!igQuyRmad+#Y}m@3Rh5d8#X'X*:AqUAHzmaxwbh<aXRnVcF}RT#Nw&cj#U(BWnug/vsRntdka)(a3+.Zb7aYYan1!bVa@Xa}[y^@b[{G=H{+hFu73Rj&Pv#5ReQcK%T#sig1v{Rj'Ku+D#'!t]~Grm~?rkKuMB!01d5#`'Vy.ta3Dtu~Hroc8#'{^45s85AwZbP&!#Rn!wghxWn#KvEA!)&2RlA2RlBx:h|#(T,=]j09Wobz>x]z/@awRoTd+#Y(az]hFhCrm4d,#Y+jTv|Q~EfMj]uNr|~FRfOdCa!Xa9_X#@<plJvf!%b`{(9;Rgwc;.!#2x7cw#T|UDb]|T5Ju={(!=@E{&Jv)&!Ab`{'awJvf!~*>>@=be{#KuY>!+&4Ezyi[ugv&RjIdea+T)#UXa&T-T&a!Rh9auRmW=]kLg5vuRn+g3u4Rn-Ow6ARn,hHus5xNk?#UX(U~)/g8v0RkD~AwkkF?Ri.OuNBwkkA?Ri/d|a2`a*^UYa.!aBTZaTa'Xa;!(!2!-a#b2[yC>6Vyq3[xr2Wi?g1rusVh%s?DtF~<5rbJs;%!DtBfswKtCj[uvuSsEu3RgVx3o:u+wN'*Zt;@3rd~Grh~?rfg8w)Lq)qE&-a%!>bI|`jWv0vV~EfCjTv|vV~Ef@j]uNpn~FRfBcK#T']gWNu7x,k7q4ai(0!hHv8<RhmkMu9vrsBuev/RhlCJvB!,g<v{wchh~@:Rhji[vrv{wchi~@:RhkdS&a5UY#Ta!RgPwwiI5BwciI~@:Rh`x'iJvj'!5]iJPu8Bwch]~@:Rhach)U#h3rp]gLh@t|Ax,hTq3ah!-(~@:Ro0Ou!5RhXj^v(pyw8unRhVd|)`,^UYas!a?/a2Z'a^Ta{Tb7Ta(a#!a,Wf&9sZ3DtAadamov=Bqt3[xig8vsRm~>waiL2b`{QJv*_Ouv2qgj<v]v2BqfdR'X*X#Y-@3qr~Gqv~?p6hHv-]glPup5Lq+q?_%*b_{qF{n9b^{rOu4ARhpKvCD!+&~Bqp:5Dbb}nwoiKl&unuTuBv]v+ueunaXRf0=Jvh!0nKufu8v1w&w7q%w&uHrz:Rgnj5w,uxDJq/(!hNw'5ReCk0s2u3w/w'5ReFd>Za&!*UaA=<wkgsRnSJv^!%Refifw3vyRgOKu_B'!,<]gkiiu:w&Rh<=C@a^<B57@2F{[<B5@aW:=3away9A5aW=<B=C@a^<B57@2F{Ie-#`(^^^bCara.b8aza6!/bZ,!adTbnTbOb+aFaS!aAT9@Wf~2Wli3Dtl2@d,#Y&RfnRfmJwJZtN~GqyJva&!VyMg<v~Rm%iXuJu3Rm9Jv[_=]ih9wlkDRkCd1#`(@Wg>2Wls3cH#T(@<Rj*=>Ri|b~'#23s9h<~El.d'#Y&Dtxi^rzvdRl#d*#U%(o|B2s`hJwSaxRmDKv4B&!1:Rmdd5#`'Vx}to~Hq{x'f1v3(!BA5ba|bJv_&!Wfug1v]ReIdO+U/Y#&G}-8wze=Rh{g1v]ReHg/uQRf/by#)ibQwERl/cH#T(@<Rj+=>Ri{cNu+vlax-!(#a0qa9<Rii2;;bU{H;x<i=&X#Rk`<4wwi=C9H~8xAI(Y#<azRi@45wXI<B9;5bb~7dL(X#Xa(+!aL6Vy{g5QqOau:5au2@ay547EzbxOcU(UX-T#Ta#:Cbb|A?wjh/b_|SOw6ARgtihr}u7Rhy<d1#T)X1@@=I|~=ay<2@@=aybb}Sj3vLv;<d,#Y(56H}A978H}@dGpvs@uAu`vcw9*!aFa+ai%(b!aXa8.a?a[ozWey=sU2@G}Nch&U#Rf_WexKu+D#'!t:~Gr`~?r^j]uNr|~FRg*j^psurwJt|RmcKv)@&!)7Rkv~Br[@wxfO:Rl3co#U'6Rezj_q#vIuavjRltwzeyh@vr5JqD0!>aY?C9:9au@9Cb]}9cl#U*5;5<H||jbuus1ucv&Rfvg1v~d/pppzqFr^a--a~!aMat1(hFv;Wiz@@=Izoj5uuv-7Rix~Cw`fk2WlVcZ#X,k)u3vWs@u2]ktg;wEx'fBq(_2Wg/jTv|vV~EfoJv]!15x'hzqG!(P~EfU~CRl_j6v(us5x4i-#T(2WmZ?C2F|d>Kq<aj1!*jTqIsBv=Wl`~Cw`fi2WlWj`v0u*~>RlR=c>Z,k#u3vWs@u2]kr<c1Z+jTqIsBv=Wla~Cw`fm2WlXdmb3!a{(arZa`bkTa%TbQTa-a9+c'!aM!/[yL=Bqug.w'RifhFvyDRj.g>vgwyk^9]k^Jv3_@WfbAARkhJw2_[x|JvB_wkoIRoKwkoJRoLd'(Y#<]gm=<9<H|yd'%_X#skDtb3awwqkgNulRkgdB#^',9:p'hJwSaxRmEBwVb8@4=H|qLu+w50&!)@3qs~?pU>Awwn;;Rn=c:Z'ARn<=<qwKvC@!/&~BqqJv6!&]eVb^z^xRge'/a%+^`#Sge}6<4Rn3=]n0Pw2>Rn8Jw0!&>Rn:>Rn6cY#a7+!a&=<wkaNw~h3z_c5Z{=wjh#=]nLKv^D!&)Vyz=bW|swYb<WetcG#T(2wxa@qVx@gD#Y&b^|V5JwG&!5bb|pg/w&RgD@x=kHs=uAvn!a%%/'+RmSRh694Ro`g-vaRmRhHv-]mlxCcS#`&ba~.5cD#Ta)P~=d,#Y(56H{>978H{Dd_#{2^Y%_+qbbb{6g3sERhsbU{?dfa.,`a(Xa<!aiX#(55RiG54RiHcI#T'WiU3RiVNvdwtfcRlKNvdd,#Y&RlHRlExQgf.1*^T'X#Sgf}6Wn4=]hfPrk>Rn7Jw0!&>Rn5>Rn9Lunw?&a2!,5<oq@@wqfdRlJj5Q~=d,#Y(~ARfcOuN]fdDKw;ay(}i!547E}j?cI#T(@5bV}iCbV}hdv(^^Tb?a40,b##Tbo!a*bR!a<b|a/!aKai!aU[yK=]o^g:v>ReGJwPZtK<7Rh+h<~El,Pv#5ReR@awwxjCg,ulRjDJv6&!]j!z?aQeeg>w=Sh<eeJw;!&axEzOg,Qosc!#*:wkeJ]eJ>x'h-u(!%Ro.w~h.zPdNZ(X,Ya![x{;9ReY;wkgxRiF:x?ap#Y&RmUg<s2Rkod]+UY0TZ'!a&A9sw<=bczLNvuw{gqzNhJwSaxRmCKuLay!#&s_Rf-55b^{uJvZa!!c%#(55Ri654wmiu5RiuawLu,vp!+}^%b_}Y9;wkgxba}o>A9:=b^}zKuh=a''!3awRk3c*'!#aHRk6c+Z&Rk5Rk4Jv)&!awRjSawd9*`#0?C2@EzMj8u<uJ5RmbjQrquJu3x,k>uq@_+=ayb^|W~ARkEOuN]k@7dhzV^X/X&a-#zRzSb`zXcJzTT#2WkVKvDBzW!%FzY9;5bbzWjQrquJu3Jw3%!b`zU=ayb^zQd:#X(T-a!6Vyywxh}=b]{Jg=u1RiAdGp~qHtzv!w(wA+a+a;<!aJaYai'anasb(=azRmV:Cbb{MLq2vb!%')RjuRjrRjtRjqx3jnqCw3!%')Rk(Rk+Rk&Rk)Lq2vb!%')Rj{RjxRjzRjwLq2vb!%')RjsRjpRjfRjex3jcqCw3!%')Rk'Rk*RjkRjl9<CbbzfOu4ARhxLq2vb!%')RjyRjvRjhRjgx=joq*uKvb!%')+-Rk.Rk%Rj~Rk-Rk#Rj}x=jdq*uKvb!%')+-Rk,Rk!Rj|RjmRjjRjidAq&qKs@uAv8Aa.'*-a@a&0!aM@a5[y73Dsy3Ds|3Dt):wxgI2sHJwJZt.~Gqxwsf0ikrzt}Rl0Jvy_[xj~HqzKv_A|D!&WfP8axRoVcf,U#k(v]v+ueunaXRf1Ju}'!g8u#Ri=jQw!sCunLprq>!,')~<5qeGzq9F{W=c##%s5au:5aU3CBE|;d4#X(D!a&6Vygx(b;#(=]ed?C2F{N<capoq2r[a&!aPa9,'Pw;5s:@@=I|,55w_h|@@=IzcP~=x'fCqB_2Wl2>aU@@=I|1OuNBc1Z+jTqIsBv=Wlc~Cw`fl2WlZ~AcTa%!Z+jTqIsBv=Wlb~Cw`fh2WlYk+uNqJsBv=WlSg,u3dca3#UXaMYa)TaB-=cM|7T#<bI}l5@B932:aV2G{BOuNBJq:|M!5Ezt=<B=C@a^<B57@2F{v>cB{/T#=ay<bI{3Jv6!a.6BKq0ah&+!5E}HP~Ef{978BaU@@=Iza<7d#.Y#978BaU@@=IzH~AJq0!(@@=IzG978BaU@@=IzFe,aU*Y&^^^bvJb,b:bFad!a,c2Ta>aL.bo6!a#CbTa'T#Re{2Wlh2@G{yg6t~Ro_NvdRfticuRQRllJv3&!x&c|zs@Jw3!%RflwpfkRlpKuL;%(!Re<@G|C2GzdhIvuBwgjAg-u0RjAKQB%!(GzZ@G|5NuuRl7d='T+Y#Vy[g<v~Rm!==G|>JvA!)@wma=]m1ifuaw&RmnLs@vT'!|/+[y,g:v>ReTJw1!#qX=x!eC{bLu+wT&)ZtZauq_~Graci&U#F|89:r_Lupvq!.)&2RlG8RfaC=x!eF{_h?rpWlmd&'!#X|&]k::xJey#`'T|+<E|&2@H|%dE#(^,g;u.RiEg6vjRiC9xCkA{O|zY#g=ucRmXKs0@!&*@G|m@awRknJuh!,3d(}gY}eJvj!%Rm):Jw3!%Rm+Rm-Ls0w(&!a(a#@b[|6cZ#X'7RkxWgAOu4ARn'dH'U#Y*Vz-Wm'CARm}d]*#a%^a*T'aK!a<9bV{PC=p*Jw4!&SgxcbB5r]idw(wBRmF7xFkt#&`(Rm/Rm8E|!JuY_9:Rl5=wrgr2:bbxd@xXfB(a*#T+!.X0X1Ta/a'T&RlDRfL>RlyARl9b[z[>RfZ:RlL:RfRwlg/ARl;9;RlxKv,A/!%7s69<74=BA5ba{-8Bde#`a<XaKYa1,a'P~=wxfB2bZ}}?C972@@=I}r8@55B9;5bb}G978B2@@=aybb}3j3vLv;<Jw3&!>Rfk=ayb^}4~Ad1#`*@@=aybb{w2@>==<bbz]dx+UY#^UaF!a9!bB'Ya1.!ajXa#%olRhD[y=3Dt#Ov5BrHKuMB%!(Rf^Wep~HrJwkiQjKr|~FRg)Ku+D#'!t5~GrF~?rDdV)UY,Z/_7RkuG{<~BrBg,rlsO:235B@bX}|d?a1!#`(6Vyn5@d##Y+jTv|vV~EfIj]uNpn~FRfH7Lq2vb1!a9-978BaU@@=Iz9978BbU}#~AJq0!(@@=Iz8978BaU@@=Iz7~AJQ|}!978BbU}!JvkaK!AdUa21-U#`a+(g/vsRn~Ou!5RPj:rmu9WhOjXuvvNr}:RhAj^v(pyw8unRn[kPr}p|u7vwv]RiSBd;pppzq@qHQa?(b.!a.a`@.|xa(hFv;Wiyj5uuv-7Riw~Cw`fg2WlU978BbU|wOuNBJqG!(P~EfD~CRlQcZ#X,k)u3vWs@u2]ksg;wEx'f@q1_2Wg.j]uNpn~FRfqJv]!15x'h{qG!(@@=IzK~CRl^j6v(us5x4i,#T(2WmY?C2F{1>Kq<aj1!*jTqIsBv=Wld~Cw`fj2Wl[j`v0u*~>RlT=c>Z,k#u3vWs@u2]kq<c1Z+jTqIsBv=Wle~Cw`fn2Wl]dn1#c(a(b^a2!b/bAT(bj!aDa7bu,a_a{c0!2T0g:v>ReD2@G{42@G{5~DpM~<5rc=Bx6i>{RT#RnI@zCx]y]z:2Jv[!zr5Awyk]9]k]dD(Y+X#6Vz.g=wKtgwhaCwgmTWj2Lu,w%_+/[y-B;b^xeg3u3Rj-2@bX{*KrJ<!+'@Wg(g?QRlC@Jv`!%b[zIwsfII}8JQ_@w|kW|=Jv(%!AqcOuNBJvEzh!bYzjLs@wP#(0!oy@>RkdJwMZtc3Dtd@BcG#T'9bWxg2@2Fznd*#Y+;2x'c}w<zizixNgwa#Z'U+!/!a'!a+w~g~z6wcn{Rn}wcnzRn|5Rh%=]nJg5vuRmvNvdRlvcprJu}w*az*a#!%.a.'Bot9qT]kj@Wg'ay2Gzv@Jv`!%b[zEwsfHI}1;ck#Ux`<Cbbx_Lu+w!a&0*!wko*wwo,So,}6Juqxf!E}PigQuyRm`d3(`#8>Rn%:A5B;bZ~%KvhCa!a2!x>k7#Uxb@b{#xaRk7Jw0!)>wwhlShl}6>wwhmShm}6CJvB!.x'hhvj{!!5Bwkhhbaz}x'hivjz~!5Bwkhibaz|xEhTrNu,v-vpD!a%&/)a3a.,%Ro2t[CE{)@3re9b]{%wjo09:rgc:Z&Ro6=<riifuaw&RmoKrNA!%(Ro4>Ro89;Ri`dSaL'UYzxZb)7Rka3xRhT&!,!#^1U}vbaz{>>@=be}yC@:D5bazzKu+A&!}{?ba}y>>@=be}wxBh[t`u~vJvr!%a!a()a,a0a4RoC=]o;Ju(!%RoGRhdwjh`=]oAg>w#Ro?g5vuRo=NvdRl|Ku]C.!&;RoEJvB!%RoORoMBx'h[v+_?w~h`}~5?w~hd~!xKh]oiptu-utv.vp!#%&a30a@a'a+(a/aOp(o~p!RoDJu(!%RoHRhewjha=]oBNvdRl}g>w#Ro@g5vuRo>c[#X']o<CauRoRAd-#Y':RkpauRoQKu]C.!&;RoFJvB!%RoNRoPBx'h]v+_?w~ha}t5?w~he}ue!/UbhYacXaW^Tc&a;b:a-c/#b&aja1(!cL+!bKbt!bmcRc9aIc?8[yW3Dtt94Rg`Jv}!&SiRMzBhEebShEMNuPRe>x7gL#TzuwjirRipc<Z&>on;>z=h-MSh.Mwqczx'a7vj&!>Re4@=ResJt__NuPRi*NuPRi)j]uNr|~FRfzKrJ>_+@Wfy@Wf]2WocKrJ<!+'@Wg%g/QRl@@Jv`!&awRl<wsfFIzgLu(w*!.*&ShBMwvhIRhI9;RhNx1hK'!#Sn]Mx1hK~0!#:2<H~7cNu+w7D*'1ZtW>Rn1~?rOc:Z&Rn2=<rQ<7wjh&=BSnLMc]#X(6Vz)w[b=a!U#9wzgMc3#&(RgMRitRis<x,gKt`ax!&+SioM=BSilMc3#&(RgKRinRimKurB,!&SiQMzBhDebShDM6BJQ!(P~Efx978B2@@=I}WLrJw!!,a*&@G}O@9wkibRid@@x'fKwC!&SlDMSfLMjUv~Q~EfKKv3@a+!(hFv-]mpx/hYZ(C5RiWz<o/MwkhY?So/M@x,gbvfB*&!SgEM:SoeeehFu3:Rgbda(,^TZa)X/7Sg[eb:2RgI~BrMC@wgkc:wwkcRerx3h(uUvK!&*,SnOM4Sh*MArRg;wHRh(x=h;rJvPwI!a4',a'0@Wg&=BSh/Mg>w=Rh=g3w*wwgGRgGcW(X#;Sg}M2Gzk@Jv`!&awRl=wsfGIz`dKZ*T'Y-:RhR7RhQg5u-p`j6v(us5d,#Y+~Awkia?RicOuNBwkibba}Ld6p~tyu_vbAa'a+!a/'a3aEa8a!>Sh,ebJv{!&Sh@ebSaReb9;SgwebNuPRi(NvdRl)NuPRi'hHu^<Rm^Jvv_@Wl(g;u1Si/ebKu'B&!*Sh?eb@Wl'z@aPeb95Si.ebcpputyvjB)!,&a+0a%ShAMWeK@G}C@WfJ9;RhMwvhH9w{ia}ix,hJvRA1(!zAn[MRhHx1hJ~*!#hFv(BSn[MBJQ!(@@=I~'978B2@@=I}2db.Ua<'X}+T#a0XaG2G}E;wkg|wuh!Rh!x,hZu,@)!&So0MVy)C5RiXACJvB!&5RiY5RiZg8w)cG}*T#2@bU}=KsA>(!a.3wkhZba~(x,h^u(A!&(SoCMRhb5Bz=h[eb?w~hb~6x,h_u(A!&(SoDMRhc5Bz=h]eb?w~hc~6e)aA1T#T,^^^c-bMb&blcPaP(a/!0!bA=b5c@a(!bfbrc#2afwmhARnjwchORnp2Wlf3DtsNvdRl-2@wpa<]m0bx(#:awRk2@Jw3!%RfhwpfgRlnKQB%!(G{V@G|'NuuRl6d='T+Y#VyUg<v~Rl~==G|<Jv+'!aYShC}6@B<5?ba~8@Jw3'!g2QRljhLrpWlOd+#Y'g.w'rIg>w*wgj@g-u0Rj@Lu+wT&)ZtUauq]~GrGci&U#F|39:rELrNvj!.%*RhCwunfw~nf~:9;Ri]>wtnhg;wHRnhx3hDs@v~!/+'@Wfr@9RkSNu&Rlo=@<5GzoKs0@_+@Wl+@awRkmJuh!-3d(}pY#qWJvj!%Rm(:Jw3!%Rm,Rm*de&!1U-U#`)Re;@G|.@9Ri82@wjfvRlq=@<5GzpLvOvr!).&2RlF8Rf`C=x!eE{.Jw3_g2QRlkhLrpWlPde(!#U{s,UXa*Ta'[y'g:v>ReS;x0PZ&RnlRnn~HrKJw1}f!=x!eB|2w]aP(#Xa&a*Ta.Ua2a7=]iOd'#Y&Ro&WnWg;u.RiDg6vjRiBNvdRlzhNvj]nYJuW_2Wm3x)kFze{9d])!a.!,Y01!#&aC!a3RndC=ox~BrC@2b^{pg,rlse7x'ksuq!%Rm.E{xidw(wBRmGx9o+)X#wwo-So-}69:Rl4@xSf@a#XZ'X)X,Ta(/ARl8b[xc>RfY:RlI:RfQwlg.ARl:9;Rlwdn'#^XafaQa1X1TaHTa)@b[{zcZ#X'7RkwWg@Ou4ARn&x)kG#{,g7u/RkGdH'U#Y*Vz'Wm&CARm|bx#(A]gUbUzJj9Q~=d,#Y(56H}l978H{U7d,0#U*2>ABb_xZ978BbU{e~AJQ{g!978BbU{hxMh?ad{oUYZ.x1h?{l!#:2<H{mx3n[t{vl!,&a%3Ro(z=iS}6ARnr=Bwsn^wvn`Rnbd`*T}B0!#^X'BG{c9b]{a>>@=be}F?JvS!&BG{d7BG}(Bde#`a1X,Ya@!a'P~=wxf@2bZ}I56B2@@=aybb}08@55B9;5bb}<j3vLv;<Jw3&!>Rfg=ayb^}&OuNBKuLA!)a!P~=x#fD{f2@>==<bbzl?C972@@=Ix^d6rSu,v7w*C(0a)a6#B+a%!sQ[y?3Dt%3[xn~<5rLOu!5p@Ku+D#'!t7~GrP~?rNKvlaya7'!h+v-5qMg=t|cd,U#5AAaa5Abb{S@52B5@a[@52B5Gx[iXueu;d<#`a(!/549C;ag>23ExY5@Dah89b^~689Jv)!~2b[~1Lv'w(%*!a#bX|aPrmawRe]keu7uhv-q6rxu,q`xTo]/a5aU!bNaDXbi!b-!ao!b<bwA!#5@B932:aV2G|:d-)Y#hJrL>RhG<7@C5<H|_=Cau:5aj5@B932:bJ|ng>vIbs)#?C2F|9jPv0w.vISh-MKvUaz(.!9ABbb|[5;5<H|Eg>unwfh;9:4E|YjQsBt|vjx'hYq3!(?C2F|J:2<BaY?C2F|GOu!5x,g|p{ah!-(?C2F|c9:4E|OjXuvvNr}:Rh&i[w*t|cd+U#jJvsu)vsSn~Mkfrmu9p}u7vwv]So!McW#Xa!ax5@A5aY:5;5<H|>kJv~vYrquJu3x4ib#T)2@SmZM?C2F|Bj:rmu9@xPhI(a*a#U#`a3-5Abb|L~@:RhK9:4E|0@52B5G|#C::aY?C2F|-:2<BaY?C2F|.5Jvk!a)javYrquJu3x4ia#T)2@SmYM?C2F|HAxPhH(!a#U#`a*-5Abb|4~@:RhJ9:4E|R@52B5G|F:2<BaY?C2F|Sc^#Xa2j=Qq5CJvB!-g<v{z;hhM?C2F|Zi[vrv{z;hiM?C2F|XKsA>!a)-g<v{z;h[eb?C2F|]i[vrv{z;h]eb?C2F|^iZu.vix,hZq3ah!.(?C2F|QOu!5ShXM:2<BaY?C2F|P", 13494, 2713, 49, 25, 61);
|
|
315
315
|
var z;
|
|
316
316
|
(function(e) {
|
|
317
317
|
e[e.VALUE_LENGTH = 49152] = "VALUE_LENGTH", e[e.FLAG13 = 8192] = "FLAG13", e[e.BRANCH_LENGTH = 8064] = "BRANCH_LENGTH", e[e.JUMP_TABLE = 127] = "JUMP_TABLE", e[e.VALUE_MASK = 8191] = "VALUE_MASK";
|
|
@@ -320,19 +320,19 @@ var j;
|
|
|
320
320
|
(function(e) {
|
|
321
321
|
e[e.AMP = 38] = "AMP", e[e.NUM = 35] = "NUM", e[e.SEMI = 59] = "SEMI", e[e.EQUALS = 61] = "EQUALS", e[e.ZERO = 48] = "ZERO", e[e.NINE = 57] = "NINE", e[e.LOWER_A = 97] = "LOWER_A", e[e.LOWER_X = 120] = "LOWER_X";
|
|
322
322
|
})(j || (j = {}));
|
|
323
|
-
const se = 32,
|
|
324
|
-
let
|
|
325
|
-
function Yn(e) {
|
|
326
|
-
const n = e >>> Ge;
|
|
327
|
-
return n === me ? Ve : n;
|
|
328
|
-
}
|
|
323
|
+
const se = 32, Ve = 21, Yn = 2097151, me = 2047;
|
|
324
|
+
let Qe = 0;
|
|
329
325
|
function Kn(e) {
|
|
330
|
-
|
|
326
|
+
const n = e >>> Ve;
|
|
327
|
+
return n === me ? Qe : n;
|
|
331
328
|
}
|
|
332
329
|
function Hn(e) {
|
|
333
|
-
return
|
|
330
|
+
return e - j.ZERO >>> 0 <= 9;
|
|
334
331
|
}
|
|
335
332
|
function Gn(e) {
|
|
333
|
+
return (e | se) - j.LOWER_A >>> 0 <= 5;
|
|
334
|
+
}
|
|
335
|
+
function Vn(e) {
|
|
336
336
|
return (e | se) - j.LOWER_A >>> 0 <= 25;
|
|
337
337
|
}
|
|
338
338
|
var Be;
|
|
@@ -343,12 +343,12 @@ var Te;
|
|
|
343
343
|
(function(e) {
|
|
344
344
|
e[e.Legacy = 0] = "Legacy", e[e.Strict = 1] = "Strict", e[e.Attribute = 2] = "Attribute";
|
|
345
345
|
})(Te || (Te = {}));
|
|
346
|
-
function
|
|
347
|
-
const r = (n & z.BRANCH_LENGTH) >> 7,
|
|
348
|
-
if (
|
|
346
|
+
function Qn(e, n, t, i) {
|
|
347
|
+
const r = (n & z.BRANCH_LENGTH) >> 7, o = n & z.JUMP_TABLE;
|
|
348
|
+
if (o) {
|
|
349
349
|
if (r === 0)
|
|
350
|
-
return
|
|
351
|
-
const l =
|
|
350
|
+
return i === o ? t : -1;
|
|
351
|
+
const l = i - o;
|
|
352
352
|
if (l >>> 0 >= r)
|
|
353
353
|
return -1;
|
|
354
354
|
const c = e[t + l];
|
|
@@ -358,12 +358,12 @@ function Vn(e, n, t, o) {
|
|
|
358
358
|
return -1;
|
|
359
359
|
const s = r + 1 >> 1, u = t + s + r;
|
|
360
360
|
for (let l = 0; l < r; l++) {
|
|
361
|
-
const
|
|
362
|
-
if (
|
|
363
|
-
const
|
|
364
|
-
return u + e[
|
|
361
|
+
const h = e[t + (l >> 1)] >> ((l & 1) << 3) & 255;
|
|
362
|
+
if (h === i) {
|
|
363
|
+
const f = t + s + l;
|
|
364
|
+
return u + e[f] & 65535;
|
|
365
365
|
}
|
|
366
|
-
if (
|
|
366
|
+
if (h > i)
|
|
367
367
|
return -1;
|
|
368
368
|
}
|
|
369
369
|
return -1;
|
|
@@ -371,129 +371,129 @@ function Vn(e, n, t, o) {
|
|
|
371
371
|
function ze(e, n, t) {
|
|
372
372
|
return t === 1 ? String.fromCharCode(e[n] & z.VALUE_MASK) : t === 2 ? String.fromCharCode(e[n + 1]) : String.fromCharCode(e[n + 1], e[n + 2]);
|
|
373
373
|
}
|
|
374
|
-
function
|
|
375
|
-
let
|
|
376
|
-
if (
|
|
377
|
-
for (
|
|
378
|
-
const u = e.charCodeAt(
|
|
379
|
-
if (
|
|
374
|
+
function et(e, n, t) {
|
|
375
|
+
let i = n + 1, r = 0, o = i;
|
|
376
|
+
if (i < t && (e.charCodeAt(i) | se) === j.LOWER_X)
|
|
377
|
+
for (i += 1, o = i; i < t; ) {
|
|
378
|
+
const u = e.charCodeAt(i);
|
|
379
|
+
if (Hn(u))
|
|
380
380
|
r = r * 16 + (u - j.ZERO);
|
|
381
|
-
else if (
|
|
381
|
+
else if (Gn(u))
|
|
382
382
|
r = r * 16 + ((u | se) - j.LOWER_A + 10);
|
|
383
383
|
else
|
|
384
384
|
break;
|
|
385
|
-
|
|
385
|
+
i += 1;
|
|
386
386
|
}
|
|
387
387
|
else
|
|
388
|
-
for (;
|
|
389
|
-
const u = e.charCodeAt(
|
|
388
|
+
for (; i < t; ) {
|
|
389
|
+
const u = e.charCodeAt(i) - j.ZERO;
|
|
390
390
|
if (u >>> 0 > 9)
|
|
391
391
|
break;
|
|
392
|
-
r = r * 10 + u,
|
|
392
|
+
r = r * 10 + u, i += 1;
|
|
393
393
|
}
|
|
394
|
-
if (
|
|
394
|
+
if (i === o)
|
|
395
395
|
return 0;
|
|
396
|
-
|
|
397
|
-
let s =
|
|
398
|
-
return s >= me && (
|
|
396
|
+
i < t && e.charCodeAt(i) === j.SEMI && (i += 1), r > 1114111 && (r = 1114112);
|
|
397
|
+
let s = i - n;
|
|
398
|
+
return s >= me && (Qe = s, s = me), s << Ve | r;
|
|
399
399
|
}
|
|
400
|
-
function
|
|
401
|
-
const
|
|
400
|
+
function nt(e, n, t) {
|
|
401
|
+
const i = Xn;
|
|
402
402
|
let r = e.indexOf("&");
|
|
403
403
|
if (r < 0)
|
|
404
404
|
return e;
|
|
405
|
-
const
|
|
405
|
+
const o = e.length;
|
|
406
406
|
let s = 0, u = "";
|
|
407
|
-
const l =
|
|
407
|
+
const l = i[0], c = l & z.JUMP_TABLE, h = (l & z.BRANCH_LENGTH) >> 7;
|
|
408
408
|
do {
|
|
409
|
-
const
|
|
409
|
+
const f = r + 1, d = e.charCodeAt(f);
|
|
410
410
|
let p, a;
|
|
411
|
-
if (
|
|
412
|
-
const b =
|
|
413
|
-
p =
|
|
414
|
-
} else if (
|
|
411
|
+
if (d === j.NUM) {
|
|
412
|
+
const b = et(e, f, o);
|
|
413
|
+
p = Kn(b), p > 0 && e.charCodeAt(f + p - 1) !== j.SEMI && (p = 0), a = p === 0 ? "" : Zn(b & Yn);
|
|
414
|
+
} else if (Vn(d)) {
|
|
415
415
|
p = 0, a = "";
|
|
416
|
-
const b =
|
|
416
|
+
const b = d - c;
|
|
417
417
|
let g;
|
|
418
|
-
if (b >>> 0 <
|
|
419
|
-
const k =
|
|
420
|
-
g = k === 0 ? -1 :
|
|
418
|
+
if (b >>> 0 < h) {
|
|
419
|
+
const k = i[1 + b];
|
|
420
|
+
g = k === 0 ? -1 : h + k & 65535;
|
|
421
421
|
} else
|
|
422
422
|
g = -1;
|
|
423
|
-
let
|
|
424
|
-
e: for (;
|
|
423
|
+
let x = 0, C = 0, m = g < 0 ? 0 : i[g], _ = f + 1;
|
|
424
|
+
e: for (; _ < o; ) {
|
|
425
425
|
for (
|
|
426
426
|
;
|
|
427
427
|
// Value-less, non-run node with a nonzero jump offset.
|
|
428
428
|
!(m & (z.VALUE_LENGTH | z.FLAG13)) && m & z.JUMP_TABLE;
|
|
429
429
|
) {
|
|
430
|
-
const
|
|
431
|
-
if (
|
|
432
|
-
if (e.charCodeAt(
|
|
430
|
+
const F = m & z.JUMP_TABLE, D = (m & z.BRANCH_LENGTH) >> 7;
|
|
431
|
+
if (D === 0) {
|
|
432
|
+
if (e.charCodeAt(_) !== F)
|
|
433
433
|
break e;
|
|
434
434
|
g += 1;
|
|
435
435
|
} else {
|
|
436
|
-
const
|
|
437
|
-
if (
|
|
436
|
+
const y = e.charCodeAt(_) - F;
|
|
437
|
+
if (y >>> 0 >= D)
|
|
438
438
|
break e;
|
|
439
|
-
const w =
|
|
439
|
+
const w = i[g + 1 + y];
|
|
440
440
|
if (w === 0)
|
|
441
441
|
break e;
|
|
442
|
-
g = g +
|
|
442
|
+
g = g + D + w & 65535;
|
|
443
443
|
}
|
|
444
|
-
if (m =
|
|
444
|
+
if (m = i[g], _ += 1, _ >= o)
|
|
445
445
|
break e;
|
|
446
446
|
}
|
|
447
447
|
if ((m & (z.VALUE_LENGTH | z.FLAG13)) === z.FLAG13) {
|
|
448
|
-
const
|
|
449
|
-
if (e.charCodeAt(
|
|
448
|
+
const F = (m & z.BRANCH_LENGTH) >> 7;
|
|
449
|
+
if (e.charCodeAt(_) !== (m & z.JUMP_TABLE))
|
|
450
450
|
break;
|
|
451
|
-
|
|
452
|
-
const
|
|
453
|
-
let
|
|
454
|
-
for (; w + 1 <
|
|
455
|
-
const
|
|
456
|
-
if (e.charCodeAt(
|
|
451
|
+
_ += 1;
|
|
452
|
+
const D = F - 1;
|
|
453
|
+
let y = g + 1, w = 0;
|
|
454
|
+
for (; w + 1 < D; w += 2) {
|
|
455
|
+
const B = i[y];
|
|
456
|
+
if (e.charCodeAt(_) !== (B & 255) || (_ += 1, e.charCodeAt(_) !== (B >> 8 & 255)))
|
|
457
457
|
break e;
|
|
458
|
-
|
|
458
|
+
_ += 1, y += 1;
|
|
459
459
|
}
|
|
460
|
-
if (w <
|
|
461
|
-
if (e.charCodeAt(
|
|
460
|
+
if (w < D) {
|
|
461
|
+
if (e.charCodeAt(_) !== (i[y] & 255))
|
|
462
462
|
break;
|
|
463
|
-
|
|
463
|
+
_ += 1;
|
|
464
464
|
}
|
|
465
|
-
g += 1 + (
|
|
465
|
+
g += 1 + (F >> 1), m = i[g];
|
|
466
466
|
continue;
|
|
467
467
|
}
|
|
468
|
-
const k = m >>> 14,
|
|
468
|
+
const k = m >>> 14, v = e.charCodeAt(_);
|
|
469
469
|
if (k !== 0) {
|
|
470
|
-
if (
|
|
471
|
-
p =
|
|
470
|
+
if (v === j.SEMI) {
|
|
471
|
+
p = _ - f + 1, a = k === 1 ? String.fromCharCode(m & z.VALUE_MASK) : ze(i, g, k);
|
|
472
472
|
break;
|
|
473
473
|
}
|
|
474
474
|
if (k === 1)
|
|
475
475
|
break;
|
|
476
476
|
}
|
|
477
|
-
const A =
|
|
477
|
+
const A = Qn(i, m, g + (k || 1), v);
|
|
478
478
|
if (A < 0)
|
|
479
479
|
break;
|
|
480
|
-
g = A, m =
|
|
480
|
+
g = A, m = i[g], _ += 1;
|
|
481
481
|
}
|
|
482
|
-
a === "" && p > 0 && (a = ze(
|
|
482
|
+
a === "" && p > 0 && (a = ze(i, x, C));
|
|
483
483
|
} else
|
|
484
484
|
p = 0, a = "";
|
|
485
|
-
p === 0 || t ? r =
|
|
485
|
+
p === 0 || t ? r = f : (s < r && (u += e.slice(s, r)), u += a, r = s = f + p), e.charCodeAt(r) !== j.AMP && (r = e.indexOf("&", r));
|
|
486
486
|
} while (r >= 0);
|
|
487
487
|
return u + e.slice(s);
|
|
488
488
|
}
|
|
489
|
-
function
|
|
490
|
-
return
|
|
489
|
+
function en(e) {
|
|
490
|
+
return nt(e, !0, !1);
|
|
491
491
|
}
|
|
492
|
-
var
|
|
492
|
+
var tt = class {
|
|
493
493
|
constructor(e = {}) {
|
|
494
|
-
T(this, "src_Any",
|
|
495
|
-
T(this, "src_Cc",
|
|
496
|
-
T(this, "src_Z",
|
|
494
|
+
T(this, "src_Any", Ye.source);
|
|
495
|
+
T(this, "src_Cc", Ke.source);
|
|
496
|
+
T(this, "src_Z", Ge.source);
|
|
497
497
|
T(this, "src_P", Re.source);
|
|
498
498
|
T(this, "src_ZPCc", [
|
|
499
499
|
this.src_Z,
|
|
@@ -522,9 +522,9 @@ var nt = class {
|
|
|
522
522
|
return e.replace(/[.?*+^$[\]\\(){}|-]/g, "\\$&");
|
|
523
523
|
}
|
|
524
524
|
nestedPairRE(e, n, t = 4) {
|
|
525
|
-
const
|
|
526
|
-
let s = `${
|
|
527
|
-
for (let u = 2; u <= t; u++) s = `${
|
|
525
|
+
const i = this.escapeRE(e), r = this.escapeRE(n), o = `(?:(?!${this.src_ZCc}|${i}|${r}).)`;
|
|
526
|
+
let s = `${i}${o}{0,1000}${r}`;
|
|
527
|
+
for (let u = 2; u <= t; u++) s = `${i}(?:${o}|${s}){0,1000}${r}`;
|
|
528
528
|
return s;
|
|
529
529
|
}
|
|
530
530
|
get_text_separators() {
|
|
@@ -651,52 +651,52 @@ var nt = class {
|
|
|
651
651
|
}
|
|
652
652
|
}, ce = {
|
|
653
653
|
validate: (e, n, t) => {
|
|
654
|
-
const
|
|
655
|
-
|
|
656
|
-
const r =
|
|
654
|
+
const i = t.re.get_http_validator();
|
|
655
|
+
i.lastIndex = n;
|
|
656
|
+
const r = i.exec(e);
|
|
657
657
|
return r ? r[0].length : 0;
|
|
658
658
|
},
|
|
659
659
|
normalize: (e, n) => n.normalize(e)
|
|
660
|
-
},
|
|
660
|
+
}, rt = {
|
|
661
661
|
"http:": ce,
|
|
662
662
|
"https:": ce,
|
|
663
663
|
"ftp:": ce,
|
|
664
664
|
"//": {
|
|
665
665
|
validate: function(e, n, t) {
|
|
666
|
-
const
|
|
667
|
-
|
|
668
|
-
const r =
|
|
666
|
+
const i = t.re.get_relative_proto_validator();
|
|
667
|
+
i.lastIndex = n;
|
|
668
|
+
const r = i.exec(e);
|
|
669
669
|
return r ? n >= 3 && e[n - 3] === ":" || n >= 3 && e[n - 3] === "/" ? 0 : r[0].length : 0;
|
|
670
670
|
},
|
|
671
671
|
normalize: (e, n) => n.normalize(e)
|
|
672
672
|
},
|
|
673
673
|
"mailto:": {
|
|
674
674
|
validate: function(e, n, t) {
|
|
675
|
-
const
|
|
676
|
-
|
|
677
|
-
const r =
|
|
675
|
+
const i = t.re.get_mailto_validator();
|
|
676
|
+
i.lastIndex = n;
|
|
677
|
+
const r = i.exec(e);
|
|
678
678
|
return r ? r[0].length : 0;
|
|
679
679
|
},
|
|
680
680
|
normalize: (e, n) => n.normalize(e)
|
|
681
681
|
}
|
|
682
|
-
},
|
|
683
|
-
function
|
|
684
|
-
const e =
|
|
685
|
-
return
|
|
686
|
-
const t = n.indexOf(":"),
|
|
687
|
-
for (const r of n.slice(t + 1)) e.push(
|
|
682
|
+
}, it = "a:cdefgilmnoqrstuwxz|b:abdefghijmnorstvwyz|c:acdfghiklmnoruvwxyz|d:ejkmoz|e:cegrstu|f:ijkmor|g:abdefghilmnpqrstuwy|h:kmnrtu|i:delmnoqrst|j:emop|k:eghimnprwyz|l:abcikrstuvy|m:acdeghklmnopqrstuvwxyz|n:acefgilopruz|o:m|p:aefghklmnrstwy|q:a|r:eosuw|s:abcdeghijklmnortuvxyz|t:cdfghjklmnortvwz|u:agksyz|v:aceginu|w:fs|y:et|z:amw", ot = "biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф";
|
|
683
|
+
function st() {
|
|
684
|
+
const e = ot.split("|");
|
|
685
|
+
return it.split("|").forEach((n) => {
|
|
686
|
+
const t = n.indexOf(":"), i = n.slice(0, t);
|
|
687
|
+
for (const r of n.slice(t + 1)) e.push(i + r);
|
|
688
688
|
}), e;
|
|
689
689
|
}
|
|
690
|
-
var
|
|
690
|
+
var ut = {
|
|
691
691
|
fuzzyLink: !1,
|
|
692
692
|
fuzzyEmail: !0,
|
|
693
693
|
fuzzyIP: !1,
|
|
694
694
|
"---": !1,
|
|
695
|
-
tlds:
|
|
695
|
+
tlds: st(),
|
|
696
696
|
urlAuth: !1,
|
|
697
697
|
maxLength: 1e4
|
|
698
698
|
}, Se = class {
|
|
699
|
-
constructor(e, n, t,
|
|
699
|
+
constructor(e, n, t, i) {
|
|
700
700
|
/** Prefix (protocol) for matched string. Empty for fuzzy links. */
|
|
701
701
|
T(this, "schema");
|
|
702
702
|
/** First position of matched string. */
|
|
@@ -709,10 +709,10 @@ var st = {
|
|
|
709
709
|
T(this, "text");
|
|
710
710
|
/** Normalized URL of matched string. */
|
|
711
711
|
T(this, "url");
|
|
712
|
-
const r = e.slice(t,
|
|
713
|
-
this.schema = n.toLowerCase(), this.index = t, this.lastIndex =
|
|
712
|
+
const r = e.slice(t, i);
|
|
713
|
+
this.schema = n.toLowerCase(), this.index = t, this.lastIndex = i, this.raw = r, this.text = r, this.url = r;
|
|
714
714
|
}
|
|
715
|
-
},
|
|
715
|
+
}, lt = class {
|
|
716
716
|
/**
|
|
717
717
|
* Creates new linkifier instance.
|
|
718
718
|
*
|
|
@@ -747,9 +747,9 @@ var st = {
|
|
|
747
747
|
T(this, "re");
|
|
748
748
|
const { rebuilder: n, ...t } = e;
|
|
749
749
|
this.__opts__ = {
|
|
750
|
-
...
|
|
750
|
+
...ut,
|
|
751
751
|
...t
|
|
752
|
-
}, this.__schemas__ = { ...
|
|
752
|
+
}, this.__schemas__ = { ...rt }, this.re = n || new tt(), this.re.set({
|
|
753
753
|
...this.__opts__,
|
|
754
754
|
schema_names: Object.keys(this.__schemas__)
|
|
755
755
|
});
|
|
@@ -774,7 +774,7 @@ var st = {
|
|
|
774
774
|
if (!n) delete this.__schemas__[e];
|
|
775
775
|
else {
|
|
776
776
|
const t = {
|
|
777
|
-
normalize: (
|
|
777
|
+
normalize: (i, r) => r.normalize(i),
|
|
778
778
|
...n
|
|
779
779
|
};
|
|
780
780
|
this.__schemas__[e] = t;
|
|
@@ -810,10 +810,10 @@ var st = {
|
|
|
810
810
|
if (this.__opts__.fuzzyLink && this.__schemas__["http:"] && (t = this.re.get_fuzzy_link_search(), t.lastIndex = 0, t.exec(e) !== null))
|
|
811
811
|
return !0;
|
|
812
812
|
if (this.__opts__.fuzzyEmail && this.__schemas__["mailto:"] && e.indexOf("@") >= 0) {
|
|
813
|
-
const
|
|
814
|
-
for (
|
|
815
|
-
const
|
|
816
|
-
if (r.test(
|
|
813
|
+
const i = this.re.get_fuzzy_mail_host_search(), r = this.re.get_mail_name_validator();
|
|
814
|
+
for (i.lastIndex = 0; (n = i.exec(e)) !== null; ) {
|
|
815
|
+
const o = e.slice(Math.max(0, n.index - 65), n.index);
|
|
816
|
+
if (r.test(o)) return !0;
|
|
817
817
|
}
|
|
818
818
|
}
|
|
819
819
|
return !1;
|
|
@@ -837,40 +837,40 @@ var st = {
|
|
|
837
837
|
*/
|
|
838
838
|
match(e) {
|
|
839
839
|
const n = [], t = this.re.get_schema_search();
|
|
840
|
-
let
|
|
840
|
+
let i, r, o, s, u, l, c = !1, h = !1, f = !1, d = 0;
|
|
841
841
|
if (!e.length) return null;
|
|
842
|
-
for (t.lastIndex = 0, this.__opts__.fuzzyLink && this.__schemas__["http:"] && (
|
|
843
|
-
const p = Math.max(
|
|
844
|
-
if (r &&
|
|
842
|
+
for (t.lastIndex = 0, this.__opts__.fuzzyLink && this.__schemas__["http:"] && (i = this.re.get_fuzzy_link_search(), i.lastIndex = 0), this.__opts__.fuzzyEmail && this.__schemas__["mailto:"] && (r = this.re.get_fuzzy_mail_host_search(), r.lastIndex = 0, o = this.re.get_mail_name_validator()); ; ) {
|
|
843
|
+
const p = Math.max(d - 1, 0);
|
|
844
|
+
if (r && o && !f && (!u || u.index < d))
|
|
845
845
|
for (r.lastIndex < p && (r.lastIndex = p); ; ) {
|
|
846
|
-
const
|
|
847
|
-
if (!
|
|
848
|
-
|
|
846
|
+
const C = r.exec(e);
|
|
847
|
+
if (!C) {
|
|
848
|
+
f = !0, u = void 0;
|
|
849
849
|
break;
|
|
850
850
|
}
|
|
851
|
-
const m =
|
|
851
|
+
const m = o.exec(e.slice(Math.max(0, C.index - 65), C.index));
|
|
852
852
|
if (m) {
|
|
853
853
|
if (u = {
|
|
854
854
|
schema: "mailto:",
|
|
855
|
-
index:
|
|
856
|
-
lastIndex:
|
|
857
|
-
}, u.index >=
|
|
855
|
+
index: C.index - m[1].length,
|
|
856
|
+
lastIndex: C.index + C[0].length
|
|
857
|
+
}, u.index >= d) break;
|
|
858
858
|
r.lastIndex < p && (r.lastIndex = p);
|
|
859
859
|
}
|
|
860
860
|
}
|
|
861
|
-
if (
|
|
862
|
-
for (
|
|
863
|
-
const
|
|
864
|
-
if (!
|
|
865
|
-
|
|
861
|
+
if (i && !h && (!s || s.index < d))
|
|
862
|
+
for (i.lastIndex < p && (i.lastIndex = p); ; ) {
|
|
863
|
+
const C = i.exec(e);
|
|
864
|
+
if (!C) {
|
|
865
|
+
h = !0, s = void 0;
|
|
866
866
|
break;
|
|
867
867
|
}
|
|
868
868
|
if (s = {
|
|
869
869
|
schema: "",
|
|
870
|
-
index:
|
|
871
|
-
lastIndex:
|
|
872
|
-
}, s.index >=
|
|
873
|
-
|
|
870
|
+
index: C.index + C[1].length,
|
|
871
|
+
lastIndex: C.index + C[0].length
|
|
872
|
+
}, s.index >= d) break;
|
|
873
|
+
i.lastIndex < p && (i.lastIndex = p);
|
|
874
874
|
}
|
|
875
875
|
let a = u;
|
|
876
876
|
(!a || s && (s.index < a.index || s.index === a.index && s.lastIndex > a.lastIndex)) && (a = s);
|
|
@@ -878,30 +878,30 @@ var st = {
|
|
|
878
878
|
if (!c) for (; ; ) {
|
|
879
879
|
if (!l) {
|
|
880
880
|
t.lastIndex < p && (t.lastIndex = p);
|
|
881
|
-
const
|
|
882
|
-
if (!
|
|
881
|
+
const _ = t.exec(e);
|
|
882
|
+
if (!_) {
|
|
883
883
|
c = !0;
|
|
884
884
|
break;
|
|
885
885
|
}
|
|
886
886
|
l = {
|
|
887
|
-
schema:
|
|
888
|
-
index:
|
|
889
|
-
lastIndex:
|
|
887
|
+
schema: _[2],
|
|
888
|
+
index: _.index + _[1].length,
|
|
889
|
+
lastIndex: _.index + _[0].length
|
|
890
890
|
};
|
|
891
891
|
}
|
|
892
|
-
if (l.index <
|
|
892
|
+
if (l.index < d) {
|
|
893
893
|
l = void 0;
|
|
894
894
|
continue;
|
|
895
895
|
}
|
|
896
896
|
if (a && l.index > a.index) break;
|
|
897
|
-
const
|
|
897
|
+
const C = l;
|
|
898
898
|
l = void 0;
|
|
899
|
-
const m = this.testSchemaAt(e,
|
|
899
|
+
const m = this.testSchemaAt(e, C.schema, C.lastIndex);
|
|
900
900
|
if (m) {
|
|
901
901
|
b = {
|
|
902
|
-
schema:
|
|
903
|
-
index:
|
|
904
|
-
lastIndex:
|
|
902
|
+
schema: C.schema,
|
|
903
|
+
index: C.index,
|
|
904
|
+
lastIndex: C.lastIndex + m
|
|
905
905
|
};
|
|
906
906
|
break;
|
|
907
907
|
}
|
|
@@ -909,8 +909,8 @@ var st = {
|
|
|
909
909
|
let g = b;
|
|
910
910
|
if ((!g || u && (u.index < g.index || u.index === g.index && u.lastIndex > g.lastIndex)) && (g = u), (!g || s && (s.index < g.index || s.index === g.index && s.lastIndex > g.lastIndex)) && (g = s), !g) break;
|
|
911
911
|
g === u ? u = void 0 : g === s && (s = void 0);
|
|
912
|
-
const
|
|
913
|
-
|
|
912
|
+
const x = new Se(e, g.schema, g.index, g.lastIndex);
|
|
913
|
+
x.schema ? this.__schemas__[x.schema].normalize(x, this) : this.normalize(x), n.push(x), d = g.lastIndex;
|
|
914
914
|
}
|
|
915
915
|
return n.length ? n : null;
|
|
916
916
|
}
|
|
@@ -926,8 +926,8 @@ var st = {
|
|
|
926
926
|
if (!n) return null;
|
|
927
927
|
const t = this.testSchemaAt(e, n[2], n[0].length);
|
|
928
928
|
if (!t) return null;
|
|
929
|
-
const
|
|
930
|
-
return this.__schemas__[
|
|
929
|
+
const i = new Se(e, n[2], n.index + n[1].length, n.index + n[0].length + t);
|
|
930
|
+
return this.__schemas__[i.schema].normalize(i, this), i;
|
|
931
931
|
}
|
|
932
932
|
/**
|
|
933
933
|
* Load (or merge) new TLDs list. Those are used for fuzzy links (without
|
|
@@ -958,114 +958,114 @@ var st = {
|
|
|
958
958
|
e.schema || (e.url = `http://${e.url}`), e.schema === "mailto:" && !/^mailto:/i.test(e.url) && (e.url = `mailto:${e.url}`);
|
|
959
959
|
}
|
|
960
960
|
};
|
|
961
|
-
const X = 2147483647, P = 36, be = 1, H = 26,
|
|
961
|
+
const X = 2147483647, P = 36, be = 1, H = 26, ct = 38, at = 700, nn = 72, tn = 128, rn = "-", ht = /^xn--/, ft = /[^\0-\x7F]/, pt = /[\x2E\u3002\uFF0E\uFF61]/g, dt = {
|
|
962
962
|
overflow: "Overflow: input needs wider integers to process",
|
|
963
963
|
"not-basic": "Illegal input >= 0x80 (not a basic code point)",
|
|
964
964
|
"invalid-input": "Invalid input"
|
|
965
965
|
}, ae = P - be, L = Math.floor, he = String.fromCharCode;
|
|
966
|
-
function
|
|
967
|
-
throw new RangeError(
|
|
966
|
+
function q(e) {
|
|
967
|
+
throw new RangeError(dt[e]);
|
|
968
968
|
}
|
|
969
|
-
function
|
|
969
|
+
function _t(e, n) {
|
|
970
970
|
const t = [];
|
|
971
|
-
let
|
|
972
|
-
for (;
|
|
973
|
-
t[
|
|
971
|
+
let i = e.length;
|
|
972
|
+
for (; i--; )
|
|
973
|
+
t[i] = n(e[i]);
|
|
974
974
|
return t;
|
|
975
975
|
}
|
|
976
|
-
function
|
|
976
|
+
function on(e, n) {
|
|
977
977
|
const t = e.split("@");
|
|
978
|
-
let
|
|
979
|
-
t.length > 1 && (
|
|
980
|
-
const r = e.split("."),
|
|
981
|
-
return
|
|
978
|
+
let i = "";
|
|
979
|
+
t.length > 1 && (i = t[0] + "@", e = t[1]), e = e.replace(pt, ".");
|
|
980
|
+
const r = e.split("."), o = _t(r, n).join(".");
|
|
981
|
+
return i + o;
|
|
982
982
|
}
|
|
983
|
-
function
|
|
983
|
+
function sn(e) {
|
|
984
984
|
const n = [];
|
|
985
985
|
let t = 0;
|
|
986
|
-
const
|
|
987
|
-
for (; t <
|
|
986
|
+
const i = e.length;
|
|
987
|
+
for (; t < i; ) {
|
|
988
988
|
const r = e.charCodeAt(t++);
|
|
989
|
-
if (r >= 55296 && r <= 56319 && t <
|
|
990
|
-
const
|
|
991
|
-
(
|
|
989
|
+
if (r >= 55296 && r <= 56319 && t < i) {
|
|
990
|
+
const o = e.charCodeAt(t++);
|
|
991
|
+
(o & 64512) == 56320 ? n.push(((r & 1023) << 10) + (o & 1023) + 65536) : (n.push(r), t--);
|
|
992
992
|
} else
|
|
993
993
|
n.push(r);
|
|
994
994
|
}
|
|
995
995
|
return n;
|
|
996
996
|
}
|
|
997
|
-
const
|
|
997
|
+
const gt = (e) => String.fromCodePoint(...e), kt = function(e) {
|
|
998
998
|
return e >= 48 && e < 58 ? 26 + (e - 48) : e >= 65 && e < 91 ? e - 65 : e >= 97 && e < 123 ? e - 97 : P;
|
|
999
999
|
}, je = function(e, n) {
|
|
1000
1000
|
return e + 22 + 75 * (e < 26) - ((n != 0) << 5);
|
|
1001
|
-
},
|
|
1002
|
-
let
|
|
1003
|
-
for (e = t ? L(e /
|
|
1001
|
+
}, un = function(e, n, t) {
|
|
1002
|
+
let i = 0;
|
|
1003
|
+
for (e = t ? L(e / at) : e >> 1, e += L(e / n); e > ae * H >> 1; i += P)
|
|
1004
1004
|
e = L(e / ae);
|
|
1005
|
-
return L(
|
|
1006
|
-
},
|
|
1005
|
+
return L(i + (ae + 1) * e / (e + ct));
|
|
1006
|
+
}, ln = function(e) {
|
|
1007
1007
|
const n = [], t = e.length;
|
|
1008
|
-
let
|
|
1008
|
+
let i = 0, r = tn, o = nn, s = e.lastIndexOf(rn);
|
|
1009
1009
|
s < 0 && (s = 0);
|
|
1010
1010
|
for (let u = 0; u < s; ++u)
|
|
1011
|
-
e.charCodeAt(u) >= 128 &&
|
|
1011
|
+
e.charCodeAt(u) >= 128 && q("not-basic"), n.push(e.charCodeAt(u));
|
|
1012
1012
|
for (let u = s > 0 ? s + 1 : 0; u < t; ) {
|
|
1013
|
-
const l =
|
|
1014
|
-
for (let
|
|
1015
|
-
u >= t &&
|
|
1016
|
-
const
|
|
1017
|
-
|
|
1018
|
-
const p =
|
|
1019
|
-
if (
|
|
1013
|
+
const l = i;
|
|
1014
|
+
for (let h = 1, f = P; ; f += P) {
|
|
1015
|
+
u >= t && q("invalid-input");
|
|
1016
|
+
const d = kt(e.charCodeAt(u++));
|
|
1017
|
+
d >= P && q("invalid-input"), d > L((X - i) / h) && q("overflow"), i += d * h;
|
|
1018
|
+
const p = f <= o ? be : f >= o + H ? H : f - o;
|
|
1019
|
+
if (d < p)
|
|
1020
1020
|
break;
|
|
1021
1021
|
const a = P - p;
|
|
1022
|
-
|
|
1022
|
+
h > L(X / a) && q("overflow"), h *= a;
|
|
1023
1023
|
}
|
|
1024
1024
|
const c = n.length + 1;
|
|
1025
|
-
|
|
1025
|
+
o = un(i - l, c, l == 0), L(i / c) > X - r && q("overflow"), r += L(i / c), i %= c, n.splice(i++, 0, r);
|
|
1026
1026
|
}
|
|
1027
1027
|
return String.fromCodePoint(...n);
|
|
1028
|
-
},
|
|
1028
|
+
}, cn = function(e) {
|
|
1029
1029
|
const n = [];
|
|
1030
|
-
e =
|
|
1030
|
+
e = sn(e);
|
|
1031
1031
|
const t = e.length;
|
|
1032
|
-
let
|
|
1032
|
+
let i = tn, r = 0, o = nn;
|
|
1033
1033
|
for (const l of e)
|
|
1034
1034
|
l < 128 && n.push(he(l));
|
|
1035
1035
|
const s = n.length;
|
|
1036
1036
|
let u = s;
|
|
1037
|
-
for (s && n.push(
|
|
1037
|
+
for (s && n.push(rn); u < t; ) {
|
|
1038
1038
|
let l = X;
|
|
1039
|
-
for (const
|
|
1040
|
-
|
|
1039
|
+
for (const h of e)
|
|
1040
|
+
h >= i && h < l && (l = h);
|
|
1041
1041
|
const c = u + 1;
|
|
1042
|
-
l -
|
|
1043
|
-
for (const
|
|
1044
|
-
if (
|
|
1045
|
-
let
|
|
1046
|
-
for (let
|
|
1047
|
-
const p =
|
|
1048
|
-
if (
|
|
1042
|
+
l - i > L((X - r) / c) && q("overflow"), r += (l - i) * c, i = l;
|
|
1043
|
+
for (const h of e)
|
|
1044
|
+
if (h < i && ++r > X && q("overflow"), h === i) {
|
|
1045
|
+
let f = r;
|
|
1046
|
+
for (let d = P; ; d += P) {
|
|
1047
|
+
const p = d <= o ? be : d >= o + H ? H : d - o;
|
|
1048
|
+
if (f < p)
|
|
1049
1049
|
break;
|
|
1050
|
-
const a =
|
|
1050
|
+
const a = f - p, b = P - p;
|
|
1051
1051
|
n.push(
|
|
1052
1052
|
he(je(p + a % b, 0))
|
|
1053
|
-
),
|
|
1053
|
+
), f = L(a / b);
|
|
1054
1054
|
}
|
|
1055
|
-
n.push(he(je(
|
|
1055
|
+
n.push(he(je(f, 0))), o = un(r, c, u === s), r = 0, ++u;
|
|
1056
1056
|
}
|
|
1057
|
-
++r, ++
|
|
1057
|
+
++r, ++i;
|
|
1058
1058
|
}
|
|
1059
1059
|
return n.join("");
|
|
1060
|
-
}, kt = function(e) {
|
|
1061
|
-
return rn(e, function(n) {
|
|
1062
|
-
return at.test(n) ? un(n.slice(4).toLowerCase()) : n;
|
|
1063
|
-
});
|
|
1064
1060
|
}, mt = function(e) {
|
|
1065
|
-
return
|
|
1066
|
-
return ht.test(n) ?
|
|
1061
|
+
return on(e, function(n) {
|
|
1062
|
+
return ht.test(n) ? ln(n.slice(4).toLowerCase()) : n;
|
|
1063
|
+
});
|
|
1064
|
+
}, Rt = function(e) {
|
|
1065
|
+
return on(e, function(n) {
|
|
1066
|
+
return ft.test(n) ? "xn--" + cn(n) : n;
|
|
1067
1067
|
});
|
|
1068
|
-
},
|
|
1068
|
+
}, Ie = {
|
|
1069
1069
|
/**
|
|
1070
1070
|
* A string representing the current Punycode.js version number.
|
|
1071
1071
|
* @memberOf punycode
|
|
@@ -1080,47 +1080,47 @@ const _t = (e) => String.fromCodePoint(...e), gt = function(e) {
|
|
|
1080
1080
|
* @type Object
|
|
1081
1081
|
*/
|
|
1082
1082
|
ucs2: {
|
|
1083
|
-
decode:
|
|
1084
|
-
encode:
|
|
1083
|
+
decode: sn,
|
|
1084
|
+
encode: gt
|
|
1085
1085
|
},
|
|
1086
|
-
decode:
|
|
1087
|
-
encode:
|
|
1088
|
-
toASCII:
|
|
1089
|
-
toUnicode:
|
|
1086
|
+
decode: ln,
|
|
1087
|
+
encode: cn,
|
|
1088
|
+
toASCII: Rt,
|
|
1089
|
+
toUnicode: mt
|
|
1090
1090
|
};
|
|
1091
|
-
/*! markdown-it 15.0.
|
|
1092
|
-
var
|
|
1091
|
+
/*! markdown-it 15.0.2 https://github.com/markdown-it/markdown-it @license MIT */
|
|
1092
|
+
var Je = Object.defineProperty, an = (e, n) => {
|
|
1093
1093
|
let t = {};
|
|
1094
|
-
for (var
|
|
1095
|
-
get: e[
|
|
1094
|
+
for (var i in e) Je(t, i, {
|
|
1095
|
+
get: e[i],
|
|
1096
1096
|
enumerable: !0
|
|
1097
1097
|
});
|
|
1098
|
-
return
|
|
1099
|
-
},
|
|
1100
|
-
arrayReplaceAt: () =>
|
|
1098
|
+
return Je(t, Symbol.toStringTag, { value: "Module" }), t;
|
|
1099
|
+
}, bt = /* @__PURE__ */ an({
|
|
1100
|
+
arrayReplaceAt: () => xt,
|
|
1101
1101
|
asciiTrim: () => le,
|
|
1102
|
-
callable: () =>
|
|
1102
|
+
callable: () => hn,
|
|
1103
1103
|
escapeHtml: () => U,
|
|
1104
|
-
escapeRE: () =>
|
|
1104
|
+
escapeRE: () => Tt,
|
|
1105
1105
|
fromCodePoint: () => G,
|
|
1106
1106
|
isMdAsciiPunct: () => ee,
|
|
1107
|
-
isPunctChar: () =>
|
|
1107
|
+
isPunctChar: () => pn,
|
|
1108
1108
|
isPunctCharCode: () => Q,
|
|
1109
1109
|
isSpace: () => E,
|
|
1110
1110
|
isValidEntityCode: () => xe,
|
|
1111
1111
|
isWhiteSpace: () => V,
|
|
1112
|
-
lib: () =>
|
|
1112
|
+
lib: () => zt,
|
|
1113
1113
|
normalizeReference: () => ue,
|
|
1114
1114
|
unescapeAll: () => K,
|
|
1115
|
-
unescapeMd: () =>
|
|
1115
|
+
unescapeMd: () => wt
|
|
1116
1116
|
});
|
|
1117
|
-
function
|
|
1117
|
+
function hn(e) {
|
|
1118
1118
|
const n = function(...t) {
|
|
1119
1119
|
return Reflect.construct(e, t, new.target && new.target !== n ? new.target : e);
|
|
1120
1120
|
};
|
|
1121
1121
|
return Object.defineProperty(n, "name", { value: e.name }), Object.setPrototypeOf(n, e), n.prototype = e.prototype, n;
|
|
1122
1122
|
}
|
|
1123
|
-
function
|
|
1123
|
+
function xt(e, n, t) {
|
|
1124
1124
|
return [].concat(e.slice(0, n), t, e.slice(n + 1));
|
|
1125
1125
|
}
|
|
1126
1126
|
function xe(e) {
|
|
@@ -1134,38 +1134,38 @@ function G(e) {
|
|
|
1134
1134
|
}
|
|
1135
1135
|
return String.fromCharCode(e);
|
|
1136
1136
|
}
|
|
1137
|
-
var
|
|
1137
|
+
var fn = /\\([!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~])/g, Ct = new RegExp(`${fn.source}|${/&([a-z#][a-z0-9]{1,31});/gi.source}`, "gi"), vt = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i;
|
|
1138
1138
|
function Dt(e, n) {
|
|
1139
|
-
if (n.charCodeAt(0) === 35 &&
|
|
1140
|
-
const
|
|
1141
|
-
return xe(
|
|
1139
|
+
if (n.charCodeAt(0) === 35 && vt.test(n)) {
|
|
1140
|
+
const i = n[1].toLowerCase() === "x" ? parseInt(n.slice(2), 16) : parseInt(n.slice(1), 10);
|
|
1141
|
+
return xe(i) ? G(i) : e;
|
|
1142
1142
|
}
|
|
1143
|
-
const t =
|
|
1143
|
+
const t = en(e);
|
|
1144
1144
|
return t !== e ? t : e;
|
|
1145
1145
|
}
|
|
1146
|
-
function
|
|
1147
|
-
return e.indexOf("\\") < 0 ? e : e.replace(
|
|
1146
|
+
function wt(e) {
|
|
1147
|
+
return e.indexOf("\\") < 0 ? e : e.replace(fn, "$1");
|
|
1148
1148
|
}
|
|
1149
1149
|
function K(e) {
|
|
1150
|
-
return e.indexOf("\\") < 0 && e.indexOf("&") < 0 ? e : e.replace(
|
|
1151
|
-
return t || Dt(n,
|
|
1150
|
+
return e.indexOf("\\") < 0 && e.indexOf("&") < 0 ? e : e.replace(Ct, function(n, t, i) {
|
|
1151
|
+
return t || Dt(n, i);
|
|
1152
1152
|
});
|
|
1153
1153
|
}
|
|
1154
|
-
var
|
|
1154
|
+
var At = /[&<>"]/, Et = /[&<>"]/g, Ft = {
|
|
1155
1155
|
"&": "&",
|
|
1156
1156
|
"<": "<",
|
|
1157
1157
|
">": ">",
|
|
1158
1158
|
'"': """
|
|
1159
1159
|
};
|
|
1160
|
-
function
|
|
1161
|
-
return
|
|
1160
|
+
function yt(e) {
|
|
1161
|
+
return Ft[e];
|
|
1162
1162
|
}
|
|
1163
1163
|
function U(e) {
|
|
1164
|
-
return
|
|
1164
|
+
return At.test(e) ? e.replace(Et, yt) : e;
|
|
1165
1165
|
}
|
|
1166
|
-
var
|
|
1167
|
-
function
|
|
1168
|
-
return e.replace(
|
|
1166
|
+
var Bt = /[.?*+^$[\]\\(){}|-]/g;
|
|
1167
|
+
function Tt(e) {
|
|
1168
|
+
return e.replace(Bt, "\\$&");
|
|
1169
1169
|
}
|
|
1170
1170
|
function E(e) {
|
|
1171
1171
|
switch (e) {
|
|
@@ -1193,11 +1193,11 @@ function V(e) {
|
|
|
1193
1193
|
}
|
|
1194
1194
|
return !1;
|
|
1195
1195
|
}
|
|
1196
|
-
function
|
|
1197
|
-
return Re.test(e) ||
|
|
1196
|
+
function pn(e) {
|
|
1197
|
+
return Re.test(e) || He.test(e);
|
|
1198
1198
|
}
|
|
1199
1199
|
function Q(e) {
|
|
1200
|
-
return
|
|
1200
|
+
return pn(G(e));
|
|
1201
1201
|
}
|
|
1202
1202
|
function ee(e) {
|
|
1203
1203
|
switch (e) {
|
|
@@ -1251,20 +1251,20 @@ function le(e) {
|
|
|
1251
1251
|
for (; t >= n && Me(e.charCodeAt(t)); t--) ;
|
|
1252
1252
|
return e.slice(n, t + 1);
|
|
1253
1253
|
}
|
|
1254
|
-
var
|
|
1255
|
-
mdurl:
|
|
1256
|
-
ucmicro:
|
|
1254
|
+
var zt = {
|
|
1255
|
+
mdurl: Ln,
|
|
1256
|
+
ucmicro: On
|
|
1257
1257
|
};
|
|
1258
|
-
function
|
|
1259
|
-
let
|
|
1258
|
+
function St(e, n, t) {
|
|
1259
|
+
let i, r, o, s;
|
|
1260
1260
|
const u = e.posMax, l = e.pos;
|
|
1261
|
-
for (e.pos = n + 1,
|
|
1262
|
-
if (
|
|
1261
|
+
for (e.pos = n + 1, i = 1; e.pos < u; ) {
|
|
1262
|
+
if (o = e.src.charCodeAt(e.pos), o === 93 && (i--, i === 0)) {
|
|
1263
1263
|
r = !0;
|
|
1264
1264
|
break;
|
|
1265
1265
|
}
|
|
1266
|
-
if (s = e.pos, e.md.inline.skipToken(e),
|
|
1267
|
-
if (s === e.pos - 1)
|
|
1266
|
+
if (s = e.pos, e.md.inline.skipToken(e), o === 91) {
|
|
1267
|
+
if (s === e.pos - 1) i++;
|
|
1268
1268
|
else if (t)
|
|
1269
1269
|
return e.pos = l, -1;
|
|
1270
1270
|
}
|
|
@@ -1272,29 +1272,29 @@ function zt(e, n, t) {
|
|
|
1272
1272
|
let c = -1;
|
|
1273
1273
|
return r && (c = e.pos), e.pos = l, c;
|
|
1274
1274
|
}
|
|
1275
|
-
function
|
|
1276
|
-
let
|
|
1277
|
-
const
|
|
1275
|
+
function jt(e, n, t) {
|
|
1276
|
+
let i, r = n;
|
|
1277
|
+
const o = {
|
|
1278
1278
|
ok: !1,
|
|
1279
1279
|
pos: 0,
|
|
1280
1280
|
str: ""
|
|
1281
1281
|
};
|
|
1282
1282
|
if (e.charCodeAt(r) === 60) {
|
|
1283
1283
|
for (r++; r < t; ) {
|
|
1284
|
-
if (
|
|
1285
|
-
if (
|
|
1286
|
-
return
|
|
1287
|
-
if (
|
|
1284
|
+
if (i = e.charCodeAt(r), i === 10 || i === 60) return o;
|
|
1285
|
+
if (i === 62)
|
|
1286
|
+
return o.pos = r + 1, o.str = K(e.slice(n + 1, r)), o.ok = !0, o;
|
|
1287
|
+
if (i === 92 && r + 1 < t) {
|
|
1288
1288
|
r += 2;
|
|
1289
1289
|
continue;
|
|
1290
1290
|
}
|
|
1291
1291
|
r++;
|
|
1292
1292
|
}
|
|
1293
|
-
return
|
|
1293
|
+
return o;
|
|
1294
1294
|
}
|
|
1295
1295
|
let s = 0;
|
|
1296
|
-
for (; r < t && (
|
|
1297
|
-
if (
|
|
1296
|
+
for (; r < t && (i = e.charCodeAt(r), !(i === 32 || i < 32 || i === 127)); ) {
|
|
1297
|
+
if (i === 92 && r + 1 < t) {
|
|
1298
1298
|
if (e.charCodeAt(r + 1) === 32) {
|
|
1299
1299
|
r++;
|
|
1300
1300
|
continue;
|
|
@@ -1302,18 +1302,18 @@ function St(e, n, t) {
|
|
|
1302
1302
|
r += 2;
|
|
1303
1303
|
continue;
|
|
1304
1304
|
}
|
|
1305
|
-
if (
|
|
1306
|
-
return
|
|
1307
|
-
if (
|
|
1305
|
+
if (i === 40 && (s++, s > 32))
|
|
1306
|
+
return o;
|
|
1307
|
+
if (i === 41) {
|
|
1308
1308
|
if (s === 0) break;
|
|
1309
1309
|
s--;
|
|
1310
1310
|
}
|
|
1311
1311
|
r++;
|
|
1312
1312
|
}
|
|
1313
|
-
return n === r || s !== 0 || (
|
|
1313
|
+
return n === r || s !== 0 || (o.str = K(e.slice(n, r)), o.pos = r, o.ok = !0), o;
|
|
1314
1314
|
}
|
|
1315
|
-
function
|
|
1316
|
-
let r,
|
|
1315
|
+
function It(e, n, t, i) {
|
|
1316
|
+
let r, o = n;
|
|
1317
1317
|
const s = {
|
|
1318
1318
|
ok: !1,
|
|
1319
1319
|
can_continue: !1,
|
|
@@ -1321,26 +1321,26 @@ function jt(e, n, t, o) {
|
|
|
1321
1321
|
str: "",
|
|
1322
1322
|
marker: 0
|
|
1323
1323
|
};
|
|
1324
|
-
if (
|
|
1325
|
-
s.str =
|
|
1324
|
+
if (i)
|
|
1325
|
+
s.str = i.str, s.marker = i.marker;
|
|
1326
1326
|
else {
|
|
1327
|
-
if (
|
|
1328
|
-
let u = e.charCodeAt(
|
|
1327
|
+
if (o >= t) return s;
|
|
1328
|
+
let u = e.charCodeAt(o);
|
|
1329
1329
|
if (u !== 34 && u !== 39 && u !== 40) return s;
|
|
1330
|
-
n++,
|
|
1330
|
+
n++, o++, u === 40 && (u = 41), s.marker = u;
|
|
1331
1331
|
}
|
|
1332
|
-
for (;
|
|
1333
|
-
if (r = e.charCodeAt(
|
|
1334
|
-
return s.pos =
|
|
1332
|
+
for (; o < t; ) {
|
|
1333
|
+
if (r = e.charCodeAt(o), r === s.marker)
|
|
1334
|
+
return s.pos = o + 1, s.str += K(e.slice(n, o)), s.ok = !0, s;
|
|
1335
1335
|
if (r === 40 && s.marker === 41) return s;
|
|
1336
|
-
r === 92 &&
|
|
1336
|
+
r === 92 && o + 1 < t && o++, o++;
|
|
1337
1337
|
}
|
|
1338
|
-
return s.can_continue = !0, s.str += K(e.slice(n,
|
|
1338
|
+
return s.can_continue = !0, s.str += K(e.slice(n, o)), s;
|
|
1339
1339
|
}
|
|
1340
|
-
var Jt = /* @__PURE__ */
|
|
1341
|
-
parseLinkDestination: () =>
|
|
1342
|
-
parseLinkLabel: () =>
|
|
1343
|
-
parseLinkTitle: () =>
|
|
1340
|
+
var Jt = /* @__PURE__ */ an({
|
|
1341
|
+
parseLinkDestination: () => jt,
|
|
1342
|
+
parseLinkLabel: () => St,
|
|
1343
|
+
parseLinkTitle: () => It
|
|
1344
1344
|
});
|
|
1345
1345
|
function ne(e) {
|
|
1346
1346
|
"@babel/helpers - typeof";
|
|
@@ -1350,22 +1350,22 @@ function ne(e) {
|
|
|
1350
1350
|
return n && typeof Symbol == "function" && n.constructor === Symbol && n !== Symbol.prototype ? "symbol" : typeof n;
|
|
1351
1351
|
}, ne(e);
|
|
1352
1352
|
}
|
|
1353
|
-
function
|
|
1353
|
+
function Mt(e, n) {
|
|
1354
1354
|
if (ne(e) != "object" || !e) return e;
|
|
1355
1355
|
var t = e[Symbol.toPrimitive];
|
|
1356
1356
|
if (t !== void 0) {
|
|
1357
|
-
var
|
|
1358
|
-
if (ne(
|
|
1357
|
+
var i = t.call(e, n);
|
|
1358
|
+
if (ne(i) != "object") return i;
|
|
1359
1359
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
1360
1360
|
}
|
|
1361
1361
|
return (n === "string" ? String : Number)(e);
|
|
1362
1362
|
}
|
|
1363
|
-
function
|
|
1364
|
-
var n =
|
|
1363
|
+
function Pt(e) {
|
|
1364
|
+
var n = Mt(e, "string");
|
|
1365
1365
|
return ne(n) == "symbol" ? n : n + "";
|
|
1366
1366
|
}
|
|
1367
1367
|
function R(e, n, t) {
|
|
1368
|
-
return (n =
|
|
1368
|
+
return (n = Pt(n)) in e ? Object.defineProperty(e, n, {
|
|
1369
1369
|
value: t,
|
|
1370
1370
|
enumerable: !0,
|
|
1371
1371
|
configurable: !0,
|
|
@@ -1445,7 +1445,7 @@ var W = class {
|
|
|
1445
1445
|
attrIndex(e) {
|
|
1446
1446
|
if (!this.attrs) return -1;
|
|
1447
1447
|
const n = this.attrs;
|
|
1448
|
-
for (let t = 0,
|
|
1448
|
+
for (let t = 0, i = n.length; t < i; t++) if (n[t][0] === e) return t;
|
|
1449
1449
|
return -1;
|
|
1450
1450
|
}
|
|
1451
1451
|
/**
|
|
@@ -1458,8 +1458,8 @@ var W = class {
|
|
|
1458
1458
|
* Set `name` attribute to `value`. Override old value if exists.
|
|
1459
1459
|
*/
|
|
1460
1460
|
attrSet(e, n) {
|
|
1461
|
-
const t = this.attrIndex(e),
|
|
1462
|
-
t < 0 ? this.attrPush(
|
|
1461
|
+
const t = this.attrIndex(e), i = [e, n];
|
|
1462
|
+
t < 0 ? this.attrPush(i) : this.attrs[t] = i;
|
|
1463
1463
|
}
|
|
1464
1464
|
/**
|
|
1465
1465
|
* Get the value of attribute `name`, or null if it does not exist.
|
|
@@ -1526,9 +1526,9 @@ var W = class {
|
|
|
1526
1526
|
* ```
|
|
1527
1527
|
*/
|
|
1528
1528
|
at(e, n, t = {}) {
|
|
1529
|
-
const
|
|
1530
|
-
if (
|
|
1531
|
-
this.__rules__[
|
|
1529
|
+
const i = this.__find__(e);
|
|
1530
|
+
if (i === -1) throw new Error(`Parser rule not found: ${e}`);
|
|
1531
|
+
this.__rules__[i].fn = n, this.__rules__[i].alt = t.alt || [], this.__cache__ = null;
|
|
1532
1532
|
}
|
|
1533
1533
|
/**
|
|
1534
1534
|
* Add new rule to chain before one with given name. See also
|
|
@@ -1544,14 +1544,14 @@ var W = class {
|
|
|
1544
1544
|
* });
|
|
1545
1545
|
* ```
|
|
1546
1546
|
*/
|
|
1547
|
-
before(e, n, t,
|
|
1547
|
+
before(e, n, t, i = {}) {
|
|
1548
1548
|
const r = this.__find__(e);
|
|
1549
1549
|
if (r === -1) throw new Error(`Parser rule not found: ${e}`);
|
|
1550
1550
|
this.__rules__.splice(r, 0, {
|
|
1551
1551
|
name: n,
|
|
1552
1552
|
enabled: !0,
|
|
1553
1553
|
fn: t,
|
|
1554
|
-
alt:
|
|
1554
|
+
alt: i.alt || []
|
|
1555
1555
|
}), this.__cache__ = null;
|
|
1556
1556
|
}
|
|
1557
1557
|
/**
|
|
@@ -1568,14 +1568,14 @@ var W = class {
|
|
|
1568
1568
|
* });
|
|
1569
1569
|
* ```
|
|
1570
1570
|
*/
|
|
1571
|
-
after(e, n, t,
|
|
1571
|
+
after(e, n, t, i = {}) {
|
|
1572
1572
|
const r = this.__find__(e);
|
|
1573
1573
|
if (r === -1) throw new Error(`Parser rule not found: ${e}`);
|
|
1574
1574
|
this.__rules__.splice(r + 1, 0, {
|
|
1575
1575
|
name: n,
|
|
1576
1576
|
enabled: !0,
|
|
1577
1577
|
fn: t,
|
|
1578
|
-
alt:
|
|
1578
|
+
alt: i.alt || []
|
|
1579
1579
|
}), this.__cache__ = null;
|
|
1580
1580
|
}
|
|
1581
1581
|
/**
|
|
@@ -1611,13 +1611,13 @@ var W = class {
|
|
|
1611
1611
|
enable(e, n = !1) {
|
|
1612
1612
|
Array.isArray(e) || (e = [e]);
|
|
1613
1613
|
const t = [];
|
|
1614
|
-
return e.forEach((
|
|
1615
|
-
const r = this.__find__(
|
|
1614
|
+
return e.forEach((i) => {
|
|
1615
|
+
const r = this.__find__(i);
|
|
1616
1616
|
if (r < 0) {
|
|
1617
1617
|
if (n) return;
|
|
1618
|
-
throw new Error(`Rules manager: invalid rule name ${
|
|
1618
|
+
throw new Error(`Rules manager: invalid rule name ${i}`);
|
|
1619
1619
|
}
|
|
1620
|
-
this.__rules__[r].enabled = !0, t.push(
|
|
1620
|
+
this.__rules__[r].enabled = !0, t.push(i);
|
|
1621
1621
|
}), this.__cache__ = null, t;
|
|
1622
1622
|
}
|
|
1623
1623
|
/**
|
|
@@ -1642,13 +1642,13 @@ var W = class {
|
|
|
1642
1642
|
disable(e, n = !1) {
|
|
1643
1643
|
Array.isArray(e) || (e = [e]);
|
|
1644
1644
|
const t = [];
|
|
1645
|
-
return e.forEach((
|
|
1646
|
-
const r = this.__find__(
|
|
1645
|
+
return e.forEach((i) => {
|
|
1646
|
+
const r = this.__find__(i);
|
|
1647
1647
|
if (r < 0) {
|
|
1648
1648
|
if (n) return;
|
|
1649
|
-
throw new Error(`Rules manager: invalid rule name ${
|
|
1649
|
+
throw new Error(`Rules manager: invalid rule name ${i}`);
|
|
1650
1650
|
}
|
|
1651
|
-
this.__rules__[r].enabled = !1, t.push(
|
|
1651
|
+
this.__rules__[r].enabled = !1, t.push(i);
|
|
1652
1652
|
}), this.__cache__ = null, t;
|
|
1653
1653
|
}
|
|
1654
1654
|
/**
|
|
@@ -1662,38 +1662,38 @@ var W = class {
|
|
|
1662
1662
|
return this.__cache__ || this.__compile__(), this.__cache__[e] || [];
|
|
1663
1663
|
}
|
|
1664
1664
|
}, N = {};
|
|
1665
|
-
N.code_inline = function(e, n, t,
|
|
1666
|
-
const
|
|
1667
|
-
return `<code${r.renderAttrs(
|
|
1665
|
+
N.code_inline = function(e, n, t, i, r) {
|
|
1666
|
+
const o = e[n];
|
|
1667
|
+
return `<code${r.renderAttrs(o)}>${U(o.content)}</code>`;
|
|
1668
1668
|
};
|
|
1669
|
-
N.code_block = function(e, n, t,
|
|
1670
|
-
const
|
|
1671
|
-
return `<pre${r.renderAttrs(
|
|
1669
|
+
N.code_block = function(e, n, t, i, r) {
|
|
1670
|
+
const o = e[n];
|
|
1671
|
+
return `<pre${r.renderAttrs(o)}><code>${U(e[n].content)}</code></pre>
|
|
1672
1672
|
`;
|
|
1673
1673
|
};
|
|
1674
|
-
N.fence = function(e, n, t,
|
|
1675
|
-
const
|
|
1674
|
+
N.fence = function(e, n, t, i, r) {
|
|
1675
|
+
const o = e[n], s = o.info ? K(o.info).trim() : "";
|
|
1676
1676
|
let u = "", l = "";
|
|
1677
1677
|
if (s) {
|
|
1678
|
-
const
|
|
1679
|
-
u =
|
|
1678
|
+
const h = s.split(/(\s+)/g);
|
|
1679
|
+
u = h[0], l = h.slice(2).join("");
|
|
1680
1680
|
}
|
|
1681
1681
|
let c;
|
|
1682
|
-
if (t.highlight ? c = t.highlight(
|
|
1682
|
+
if (t.highlight ? c = t.highlight(o.content, u, l) || U(o.content) : c = U(o.content), c.indexOf("<pre") === 0) return c + `
|
|
1683
1683
|
`;
|
|
1684
1684
|
if (s) {
|
|
1685
|
-
const
|
|
1686
|
-
|
|
1687
|
-
const
|
|
1688
|
-
return `<pre><code${r.renderAttrs(
|
|
1685
|
+
const h = o.attrIndex("class"), f = o.attrs ? o.attrs.slice() : [];
|
|
1686
|
+
h < 0 ? f.push(["class", `${t.langPrefix}${u}`]) : (f[h] = [f[h][0], f[h][1]], f[h][1] += ` ${t.langPrefix}${u}`);
|
|
1687
|
+
const d = { attrs: f };
|
|
1688
|
+
return `<pre><code${r.renderAttrs(d)}>${c}</code></pre>
|
|
1689
1689
|
`;
|
|
1690
1690
|
}
|
|
1691
|
-
return `<pre><code${r.renderAttrs(
|
|
1691
|
+
return `<pre><code${r.renderAttrs(o)}>${c}</code></pre>
|
|
1692
1692
|
`;
|
|
1693
1693
|
};
|
|
1694
|
-
N.image = function(e, n, t,
|
|
1695
|
-
const
|
|
1696
|
-
return
|
|
1694
|
+
N.image = function(e, n, t, i, r) {
|
|
1695
|
+
const o = e[n];
|
|
1696
|
+
return o.attrs[o.attrIndex("alt")][1] = r.renderInlineAsText(o.children, t, i), r.renderToken(e, n, t);
|
|
1697
1697
|
};
|
|
1698
1698
|
N.hardbreak = function(e, n, t) {
|
|
1699
1699
|
return t.xhtmlOut ? `<br />
|
|
@@ -1715,7 +1715,7 @@ N.html_block = function(e, n) {
|
|
|
1715
1715
|
N.html_inline = function(e, n) {
|
|
1716
1716
|
return e[n].content;
|
|
1717
1717
|
};
|
|
1718
|
-
var
|
|
1718
|
+
var dn = class {
|
|
1719
1719
|
constructor() {
|
|
1720
1720
|
R(
|
|
1721
1721
|
this,
|
|
@@ -1752,30 +1752,30 @@ var pn = class {
|
|
|
1752
1752
|
* Render token attributes to string.
|
|
1753
1753
|
*/
|
|
1754
1754
|
renderAttrs(e) {
|
|
1755
|
-
let n, t,
|
|
1755
|
+
let n, t, i;
|
|
1756
1756
|
if (!e.attrs) return "";
|
|
1757
|
-
for (
|
|
1758
|
-
return
|
|
1757
|
+
for (i = "", n = 0, t = e.attrs.length; n < t; n++) i += ` ${U(e.attrs[n][0])}="${U(String(e.attrs[n][1]))}"`;
|
|
1758
|
+
return i;
|
|
1759
1759
|
}
|
|
1760
1760
|
/**
|
|
1761
1761
|
* Default token renderer. Can be overriden by custom function
|
|
1762
1762
|
* in {@link Renderer.rules}.
|
|
1763
1763
|
*/
|
|
1764
1764
|
renderToken(e, n, t) {
|
|
1765
|
-
const
|
|
1765
|
+
const i = e[n];
|
|
1766
1766
|
let r = "";
|
|
1767
|
-
if (
|
|
1768
|
-
let
|
|
1769
|
-
for (;
|
|
1770
|
-
|
|
1771
|
-
`), r += (
|
|
1767
|
+
if (i.hidden) return "";
|
|
1768
|
+
let o = n - 1;
|
|
1769
|
+
for (; o >= 0 && e[o].hidden && e[o].nesting === 0; ) o--;
|
|
1770
|
+
i.block && i.nesting !== -1 && o >= 0 && e[o].hidden && e[o].nesting === -1 && (r += `
|
|
1771
|
+
`), r += (i.nesting === -1 ? "</" : "<") + i.tag, r += this.renderAttrs(i), i.nesting === 0 && t.xhtmlOut && (r += " /");
|
|
1772
1772
|
let s = !1;
|
|
1773
|
-
if (
|
|
1773
|
+
if (i.block && (s = !0, i.nesting === 1)) {
|
|
1774
1774
|
let u = n + 1;
|
|
1775
1775
|
for (; u < e.length && e[u].hidden && e[u].nesting === 0; ) u++;
|
|
1776
1776
|
if (u < e.length) {
|
|
1777
1777
|
const l = e[u];
|
|
1778
|
-
(l.type === "inline" || l.hidden || l.nesting === -1 && l.tag ===
|
|
1778
|
+
(l.type === "inline" || l.hidden || l.nesting === -1 && l.tag === i.tag) && (s = !1);
|
|
1779
1779
|
}
|
|
1780
1780
|
}
|
|
1781
1781
|
return r += s ? `>
|
|
@@ -1785,13 +1785,13 @@ var pn = class {
|
|
|
1785
1785
|
* The same as {@link Renderer.render}, but for single token of `inline` type.
|
|
1786
1786
|
*/
|
|
1787
1787
|
renderInline(e, n, t) {
|
|
1788
|
-
let
|
|
1788
|
+
let i = "";
|
|
1789
1789
|
const r = this.rules;
|
|
1790
|
-
for (let
|
|
1791
|
-
const u = e[
|
|
1792
|
-
typeof r[u] < "u" ?
|
|
1790
|
+
for (let o = 0, s = e.length; o < s; o++) {
|
|
1791
|
+
const u = e[o].type;
|
|
1792
|
+
typeof r[u] < "u" ? i += r[u](e, o, n, t, this) : i += this.renderToken(e, o, n);
|
|
1793
1793
|
}
|
|
1794
|
-
return
|
|
1794
|
+
return i;
|
|
1795
1795
|
}
|
|
1796
1796
|
/**
|
|
1797
1797
|
* Special kludge for image `alt` attributes to conform CommonMark spec.
|
|
@@ -1799,48 +1799,48 @@ var pn = class {
|
|
|
1799
1799
|
* instead of simple escaping.
|
|
1800
1800
|
*/
|
|
1801
1801
|
renderInlineAsText(e, n, t) {
|
|
1802
|
-
let
|
|
1803
|
-
for (let r = 0,
|
|
1802
|
+
let i = "";
|
|
1803
|
+
for (let r = 0, o = e.length; r < o; r++) switch (e[r].type) {
|
|
1804
1804
|
case "text":
|
|
1805
1805
|
case "code_inline":
|
|
1806
|
-
|
|
1806
|
+
i += e[r].content;
|
|
1807
1807
|
break;
|
|
1808
1808
|
case "image":
|
|
1809
|
-
|
|
1809
|
+
i += this.renderInlineAsText(e[r].children, n, t);
|
|
1810
1810
|
break;
|
|
1811
1811
|
case "html_inline":
|
|
1812
1812
|
case "html_block":
|
|
1813
|
-
|
|
1813
|
+
i += e[r].content;
|
|
1814
1814
|
break;
|
|
1815
1815
|
case "softbreak":
|
|
1816
1816
|
case "hardbreak":
|
|
1817
|
-
|
|
1817
|
+
i += `
|
|
1818
1818
|
`;
|
|
1819
1819
|
}
|
|
1820
|
-
return
|
|
1820
|
+
return i;
|
|
1821
1821
|
}
|
|
1822
1822
|
/**
|
|
1823
1823
|
* Takes token stream and generates HTML. Probably, you will never need to call
|
|
1824
1824
|
* this method directly.
|
|
1825
1825
|
*/
|
|
1826
1826
|
render(e, n, t) {
|
|
1827
|
-
let
|
|
1827
|
+
let i = "";
|
|
1828
1828
|
const r = this.rules;
|
|
1829
|
-
for (let
|
|
1830
|
-
const u = e[
|
|
1831
|
-
u === "inline" ?
|
|
1829
|
+
for (let o = 0, s = e.length; o < s; o++) {
|
|
1830
|
+
const u = e[o].type;
|
|
1831
|
+
u === "inline" ? i += this.renderInline(e[o].children, n, t) : typeof r[u] < "u" ? i += r[u](e, o, n, t, this) : i += this.renderToken(e, o, n);
|
|
1832
1832
|
}
|
|
1833
|
-
return
|
|
1833
|
+
return i;
|
|
1834
1834
|
}
|
|
1835
|
-
},
|
|
1835
|
+
}, _n = class {
|
|
1836
1836
|
constructor(e, n, t) {
|
|
1837
1837
|
R(this, "tokens", []), R(this, "inlineMode", !1), R(this, "Token", W), this.src = e, this.env = t, this.md = n;
|
|
1838
1838
|
}
|
|
1839
|
-
},
|
|
1840
|
-
function
|
|
1839
|
+
}, Lt = /\r\n?/g, Nt = /\0/g;
|
|
1840
|
+
function Ot(e) {
|
|
1841
1841
|
let n;
|
|
1842
|
-
n = e.src.replace(
|
|
1843
|
-
`), n = n.replace(
|
|
1842
|
+
n = e.src.replace(Lt, `
|
|
1843
|
+
`), n = n.replace(Nt, "�"), e.src = n;
|
|
1844
1844
|
}
|
|
1845
1845
|
function $t(e) {
|
|
1846
1846
|
let n;
|
|
@@ -1849,29 +1849,29 @@ function $t(e) {
|
|
|
1849
1849
|
function qt(e) {
|
|
1850
1850
|
const n = e.tokens;
|
|
1851
1851
|
let t = 0;
|
|
1852
|
-
for (let
|
|
1853
|
-
n[
|
|
1852
|
+
for (let i = 0; i < n.length; i++)
|
|
1853
|
+
n[i].type !== "reference_definition" && (i !== t && (n[t] = n[i]), t++);
|
|
1854
1854
|
n.length !== t && (n.length = t);
|
|
1855
1855
|
}
|
|
1856
|
-
function
|
|
1856
|
+
function Ut(e) {
|
|
1857
1857
|
const n = e.tokens;
|
|
1858
|
-
for (let t = 0,
|
|
1858
|
+
for (let t = 0, i = n.length; t < i; t++) {
|
|
1859
1859
|
const r = n[t];
|
|
1860
1860
|
r.type === "inline" && e.md.inline.parse(r.content, e.md, e.env, r.children);
|
|
1861
1861
|
}
|
|
1862
1862
|
}
|
|
1863
|
-
function
|
|
1863
|
+
function Zt(e) {
|
|
1864
1864
|
return /^<a[>\s]/i.test(e);
|
|
1865
1865
|
}
|
|
1866
|
-
function
|
|
1866
|
+
function Wt(e) {
|
|
1867
1867
|
return /^<\/a\s*>/i.test(e);
|
|
1868
1868
|
}
|
|
1869
|
-
function
|
|
1869
|
+
function Xt(e) {
|
|
1870
1870
|
const n = e.tokens;
|
|
1871
1871
|
if (e.md.options.linkify)
|
|
1872
|
-
for (let t = 0,
|
|
1872
|
+
for (let t = 0, i = n.length; t < i; t++) {
|
|
1873
1873
|
if (n[t].type !== "inline" || !e.md.linkify.test(n[t].content)) continue;
|
|
1874
|
-
const r = n[t].children,
|
|
1874
|
+
const r = n[t].children, o = [];
|
|
1875
1875
|
let s = 0;
|
|
1876
1876
|
for (let u = r.length - 1; u >= 0; u--) {
|
|
1877
1877
|
const l = r[u];
|
|
@@ -1879,193 +1879,202 @@ function Wt(e) {
|
|
|
1879
1879
|
for (u--; r[u].level !== l.level && r[u].type !== "link_open"; ) u--;
|
|
1880
1880
|
continue;
|
|
1881
1881
|
}
|
|
1882
|
-
if (l.type === "html_inline" && (
|
|
1882
|
+
if (l.type === "html_inline" && (Zt(l.content) && s > 0 && s--, Wt(l.content) && s++), !(s > 0) && l.type === "text" && e.md.linkify.test(l.content)) {
|
|
1883
1883
|
const c = l.content;
|
|
1884
|
-
let
|
|
1885
|
-
const
|
|
1886
|
-
let
|
|
1887
|
-
|
|
1888
|
-
for (let a = 0; a <
|
|
1889
|
-
const b =
|
|
1884
|
+
let h = e.md.linkify.match(c);
|
|
1885
|
+
const f = [];
|
|
1886
|
+
let d = l.level, p = 0;
|
|
1887
|
+
h.length > 0 && h[0].index === 0 && u > 0 && r[u - 1].type === "text_special" && (h = h.slice(1));
|
|
1888
|
+
for (let a = 0; a < h.length; a++) {
|
|
1889
|
+
const b = h[a].url, g = e.md.normalizeLink(b);
|
|
1890
1890
|
if (!e.md.validateLink(g)) continue;
|
|
1891
|
-
let
|
|
1892
|
-
|
|
1893
|
-
const
|
|
1894
|
-
if (
|
|
1895
|
-
const
|
|
1896
|
-
|
|
1891
|
+
let x = h[a].text;
|
|
1892
|
+
h[a].schema ? h[a].schema === "mailto:" && !/^mailto:/i.test(x) ? x = e.md.normalizeLinkText(`mailto:${x}`).replace(/^mailto:/, "") : x = e.md.normalizeLinkText(x) : x = e.md.normalizeLinkText(`http://${x}`).replace(/^http:\/\//, "");
|
|
1893
|
+
const C = h[a].index;
|
|
1894
|
+
if (C > p) {
|
|
1895
|
+
const v = new e.Token("text", "", 0);
|
|
1896
|
+
v.content = c.slice(p, C), v.level = d, f.push(v);
|
|
1897
1897
|
}
|
|
1898
1898
|
const m = new e.Token("link_open", "a", 1);
|
|
1899
|
-
m.attrs = [["href", g]], m.level =
|
|
1900
|
-
const
|
|
1901
|
-
|
|
1899
|
+
m.attrs = [["href", g]], m.level = d++, m.markup = "linkify", m.info = "auto", f.push(m);
|
|
1900
|
+
const _ = new e.Token("text", "", 0);
|
|
1901
|
+
_.content = x, _.level = d, f.push(_);
|
|
1902
1902
|
const k = new e.Token("link_close", "a", -1);
|
|
1903
|
-
k.level = --
|
|
1903
|
+
k.level = --d, k.markup = "linkify", k.info = "auto", f.push(k), p = h[a].lastIndex;
|
|
1904
1904
|
}
|
|
1905
1905
|
if (p < c.length) {
|
|
1906
1906
|
const a = new e.Token("text", "", 0);
|
|
1907
|
-
a.content = c.slice(p), a.level =
|
|
1907
|
+
a.content = c.slice(p), a.level = d, f.push(a);
|
|
1908
1908
|
}
|
|
1909
|
-
|
|
1909
|
+
o.push({
|
|
1910
1910
|
index: u,
|
|
1911
|
-
nodes:
|
|
1911
|
+
nodes: f
|
|
1912
1912
|
});
|
|
1913
1913
|
}
|
|
1914
1914
|
}
|
|
1915
|
-
if (
|
|
1915
|
+
if (o.length > 0) {
|
|
1916
1916
|
let u = r.length;
|
|
1917
|
-
for (const
|
|
1917
|
+
for (const f of o) u += f.nodes.length - 1;
|
|
1918
1918
|
const l = new Array(u);
|
|
1919
|
-
let c = 0,
|
|
1920
|
-
|
|
1921
|
-
for (let
|
|
1922
|
-
const
|
|
1923
|
-
if ((
|
|
1924
|
-
for (const p of
|
|
1919
|
+
let c = 0, h = 0;
|
|
1920
|
+
o.reverse();
|
|
1921
|
+
for (let f = 0; f < r.length; f++) {
|
|
1922
|
+
const d = o[c];
|
|
1923
|
+
if ((d == null ? void 0 : d.index) === f) {
|
|
1924
|
+
for (const p of d.nodes) l[h++] = p;
|
|
1925
1925
|
c++;
|
|
1926
|
-
} else l[
|
|
1926
|
+
} else l[h++] = r[f];
|
|
1927
1927
|
}
|
|
1928
1928
|
n[t].children = l;
|
|
1929
1929
|
}
|
|
1930
1930
|
}
|
|
1931
1931
|
}
|
|
1932
|
-
var
|
|
1932
|
+
var gn = /\+-|\.\.|\?\?\?\?|!!!!|,,|--/, Yt = /\((c|tm|r)\)/i, Kt = /\((c|tm|r)\)/gi, Ht = {
|
|
1933
1933
|
c: "©",
|
|
1934
1934
|
r: "®",
|
|
1935
1935
|
tm: "™"
|
|
1936
1936
|
};
|
|
1937
|
-
function
|
|
1938
|
-
return
|
|
1937
|
+
function Gt(e, n) {
|
|
1938
|
+
return Ht[n.toLowerCase()];
|
|
1939
1939
|
}
|
|
1940
|
-
function
|
|
1940
|
+
function Vt(e) {
|
|
1941
1941
|
let n = 0;
|
|
1942
1942
|
for (let t = e.length - 1; t >= 0; t--) {
|
|
1943
|
-
const
|
|
1944
|
-
|
|
1943
|
+
const i = e[t];
|
|
1944
|
+
i.type === "text" && !n && (i.content = i.content.replace(Kt, Gt)), i.type === "link_open" && i.info === "auto" && n--, i.type === "link_close" && i.info === "auto" && n++;
|
|
1945
1945
|
}
|
|
1946
1946
|
}
|
|
1947
|
-
function
|
|
1947
|
+
function Qt(e) {
|
|
1948
1948
|
let n = 0;
|
|
1949
1949
|
for (let t = e.length - 1; t >= 0; t--) {
|
|
1950
|
-
const
|
|
1951
|
-
|
|
1950
|
+
const i = e[t];
|
|
1951
|
+
i.type === "text" && !n && gn.test(i.content) && (i.content = i.content.replace(/\+-/g, "±").replace(/\.{2,}/g, "…").replace(/([?!])…/g, "$1..").replace(/([?!]){4,}/g, "$1$1$1").replace(/,{2,}/g, ",").replace(/(^|[^-])---(?=[^-]|$)/gm, "$1—").replace(/(^|\s)--(?=\s|$)/gm, "$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm, "$1–")), i.type === "link_open" && i.info === "auto" && n--, i.type === "link_close" && i.info === "auto" && n++;
|
|
1952
1952
|
}
|
|
1953
1953
|
}
|
|
1954
|
-
function
|
|
1954
|
+
function er(e) {
|
|
1955
1955
|
let n;
|
|
1956
1956
|
if (e.md.options.typographer)
|
|
1957
1957
|
for (n = e.tokens.length - 1; n >= 0; n--)
|
|
1958
|
-
e.tokens[n].type === "inline" && (
|
|
1958
|
+
e.tokens[n].type === "inline" && (Yt.test(e.tokens[n].content) && Vt(e.tokens[n].children), gn.test(e.tokens[n].content) && Qt(e.tokens[n].children));
|
|
1959
|
+
}
|
|
1960
|
+
var nr = /['"]/, Pe = /['"]/g, Le = "’", tr = 1e3;
|
|
1961
|
+
function Ne(e, n, t) {
|
|
1962
|
+
for (; e.length > t; ) {
|
|
1963
|
+
const i = e.pop();
|
|
1964
|
+
i.isSingleQuote ? n.single = i.prevSameQuoteIdx : n.double = i.prevSameQuoteIdx;
|
|
1965
|
+
}
|
|
1959
1966
|
}
|
|
1960
|
-
|
|
1961
|
-
function re(e, n, t, o) {
|
|
1967
|
+
function re(e, n, t, i) {
|
|
1962
1968
|
e[n] || (e[n] = []), e[n].push({
|
|
1963
1969
|
pos: t,
|
|
1964
|
-
ch:
|
|
1970
|
+
ch: i
|
|
1965
1971
|
});
|
|
1966
1972
|
}
|
|
1967
|
-
function
|
|
1968
|
-
let t = "",
|
|
1969
|
-
n.sort((r,
|
|
1973
|
+
function rr(e, n) {
|
|
1974
|
+
let t = "", i = 0;
|
|
1975
|
+
n.sort((r, o) => r.pos - o.pos);
|
|
1970
1976
|
for (let r = 0; r < n.length; r++) {
|
|
1971
|
-
const
|
|
1972
|
-
t += e.slice(
|
|
1977
|
+
const o = n[r];
|
|
1978
|
+
t += e.slice(i, o.pos) + o.ch, i = o.pos + 1;
|
|
1973
1979
|
}
|
|
1974
|
-
return t + e.slice(
|
|
1980
|
+
return t + e.slice(i);
|
|
1975
1981
|
}
|
|
1976
|
-
function
|
|
1982
|
+
function ir(e, n) {
|
|
1977
1983
|
let t;
|
|
1978
|
-
const
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
const l = s.
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
let
|
|
1994
|
-
|
|
1995
|
-
|
|
1984
|
+
const i = [], r = {
|
|
1985
|
+
single: -1,
|
|
1986
|
+
double: -1
|
|
1987
|
+
}, o = {};
|
|
1988
|
+
for (let s = 0; s < e.length; s++) {
|
|
1989
|
+
const u = e[s], l = e[s].level;
|
|
1990
|
+
for (t = i.length - 1; t >= 0 && !(i[t].level <= l); t--) ;
|
|
1991
|
+
if (Ne(i, r, t + 1), u.type !== "text") continue;
|
|
1992
|
+
const c = u.content;
|
|
1993
|
+
let h = 0;
|
|
1994
|
+
const f = c.length;
|
|
1995
|
+
e: for (; h < f; ) {
|
|
1996
|
+
Pe.lastIndex = h;
|
|
1997
|
+
const d = Pe.exec(c);
|
|
1998
|
+
if (!d) break;
|
|
1999
|
+
let p = !0, a = !0;
|
|
2000
|
+
h = d.index + 1;
|
|
2001
|
+
const b = d[0] === "'";
|
|
2002
|
+
let g = 32;
|
|
2003
|
+
if (d.index - 1 >= 0) g = c.charCodeAt(d.index - 1);
|
|
2004
|
+
else for (t = s - 1; t >= 0 && !(e[t].type === "softbreak" || e[t].type === "hardbreak"); t--)
|
|
1996
2005
|
if (e[t].content) {
|
|
1997
|
-
|
|
2006
|
+
g = e[t].content.charCodeAt(e[t].content.length - 1);
|
|
1998
2007
|
break;
|
|
1999
2008
|
}
|
|
2000
|
-
let
|
|
2001
|
-
if (
|
|
2002
|
-
else for (t =
|
|
2009
|
+
let x = 32;
|
|
2010
|
+
if (h < f) x = c.charCodeAt(h);
|
|
2011
|
+
else for (t = s + 1; t < e.length && !(e[t].type === "softbreak" || e[t].type === "hardbreak"); t++)
|
|
2003
2012
|
if (e[t].content) {
|
|
2004
|
-
|
|
2013
|
+
x = e[t].content.charCodeAt(0);
|
|
2005
2014
|
break;
|
|
2006
2015
|
}
|
|
2007
|
-
const C = ee(
|
|
2008
|
-
if (
|
|
2009
|
-
|
|
2016
|
+
const C = ee(g) || Q(g), m = ee(x) || Q(x), _ = V(g), k = V(x);
|
|
2017
|
+
if (k ? p = !1 : m && (_ || C || (p = !1)), _ ? a = !1 : C && (k || m || (a = !1)), x === 34 && d[0] === '"' && g >= 48 && g <= 57 && (a = p = !1), p && a && (p = C, a = m), !p && !a) {
|
|
2018
|
+
b && re(o, s, d.index, Le);
|
|
2010
2019
|
continue;
|
|
2011
2020
|
}
|
|
2012
|
-
if (
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
let D, A;
|
|
2018
|
-
a ? (D = n.md.options.quotes[2], A = n.md.options.quotes[3]) : (D = n.md.options.quotes[0], A = n.md.options.quotes[1]), re(r, i, h.index, A), re(r, k.token, k.pos, D), o.length = t;
|
|
2019
|
-
continue e;
|
|
2020
|
-
}
|
|
2021
|
+
if (a && (t = b ? r.single : r.double, t >= 0 && i[t].level === l)) {
|
|
2022
|
+
const v = i[t];
|
|
2023
|
+
let A, F;
|
|
2024
|
+
b ? (A = n.md.options.quotes[2], F = n.md.options.quotes[3]) : (A = n.md.options.quotes[0], F = n.md.options.quotes[1]), re(o, s, d.index, F), re(o, v.tokenIdx, v.contentPos, A), Ne(i, r, t);
|
|
2025
|
+
continue e;
|
|
2021
2026
|
}
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2027
|
+
if (p) {
|
|
2028
|
+
if (i.length >= tr) return;
|
|
2029
|
+
i.push({
|
|
2030
|
+
tokenIdx: s,
|
|
2031
|
+
contentPos: d.index,
|
|
2032
|
+
isSingleQuote: b,
|
|
2033
|
+
level: l,
|
|
2034
|
+
prevSameQuoteIdx: b ? r.single : r.double
|
|
2035
|
+
}), b ? r.single = i.length - 1 : r.double = i.length - 1;
|
|
2036
|
+
} else a && b && re(o, s, d.index, Le);
|
|
2028
2037
|
}
|
|
2029
2038
|
}
|
|
2030
|
-
Object.keys(
|
|
2031
|
-
const
|
|
2032
|
-
e[
|
|
2039
|
+
Object.keys(o).forEach(function(s) {
|
|
2040
|
+
const u = Number(s);
|
|
2041
|
+
e[u].content = rr(e[u].content, o[s]);
|
|
2033
2042
|
});
|
|
2034
2043
|
}
|
|
2035
|
-
function
|
|
2044
|
+
function or(e) {
|
|
2036
2045
|
if (e.md.options.typographer)
|
|
2037
2046
|
for (let n = e.tokens.length - 1; n >= 0; n--)
|
|
2038
|
-
e.tokens[n].type !== "inline" || !
|
|
2047
|
+
e.tokens[n].type !== "inline" || !nr.test(e.tokens[n].content) || ir(e.tokens[n].children, e);
|
|
2039
2048
|
}
|
|
2040
|
-
function
|
|
2049
|
+
function sr(e) {
|
|
2041
2050
|
let n, t;
|
|
2042
|
-
const
|
|
2043
|
-
for (n = 0; n <
|
|
2044
|
-
for (n = t = 0; n <
|
|
2051
|
+
const i = e.length;
|
|
2052
|
+
for (n = 0; n < i; n++) e[n].type === "text_special" && (e[n].type = "text");
|
|
2053
|
+
for (n = t = 0; n < i; n++) e[n].type === "text" && n + 1 < i && e[n + 1].type === "text" ? e[n + 1].content = e[n].content + e[n + 1].content : (n !== t && (e[t] = e[n]), t++);
|
|
2045
2054
|
n !== t && (e.length = t);
|
|
2046
2055
|
}
|
|
2047
|
-
function
|
|
2056
|
+
function ur(e) {
|
|
2048
2057
|
let n, t;
|
|
2049
|
-
const
|
|
2050
|
-
for (let
|
|
2051
|
-
if (o
|
|
2052
|
-
const s = o
|
|
2058
|
+
const i = e.tokens, r = i.length;
|
|
2059
|
+
for (let o = 0; o < r; o++) {
|
|
2060
|
+
if (i[o].type !== "inline") continue;
|
|
2061
|
+
const s = i[o].children, u = s.length;
|
|
2053
2062
|
for (n = 0; n < u; n++)
|
|
2054
|
-
s[n].type === "text_special" && (s[n].type = "text"), s[n].children &&
|
|
2063
|
+
s[n].type === "text_special" && (s[n].type = "text"), s[n].children && sr(s[n].children);
|
|
2055
2064
|
for (n = t = 0; n < u; n++) s[n].type === "text" && n + 1 < u && s[n + 1].type === "text" ? s[n + 1].content = s[n].content + s[n + 1].content : (n !== t && (s[t] = s[n]), t++);
|
|
2056
2065
|
n !== t && (s.length = t);
|
|
2057
2066
|
}
|
|
2058
2067
|
}
|
|
2059
2068
|
var fe = [
|
|
2060
|
-
["normalize",
|
|
2069
|
+
["normalize", Ot],
|
|
2061
2070
|
["block", $t],
|
|
2062
2071
|
["strip_references", qt],
|
|
2063
|
-
["inline",
|
|
2064
|
-
["linkify",
|
|
2065
|
-
["replacements",
|
|
2066
|
-
["smartquotes",
|
|
2067
|
-
["text_join",
|
|
2068
|
-
],
|
|
2072
|
+
["inline", Ut],
|
|
2073
|
+
["linkify", Xt],
|
|
2074
|
+
["replacements", er],
|
|
2075
|
+
["smartquotes", or],
|
|
2076
|
+
["text_join", ur]
|
|
2077
|
+
], kn = class {
|
|
2069
2078
|
constructor() {
|
|
2070
2079
|
R(
|
|
2071
2080
|
this,
|
|
@@ -2074,7 +2083,7 @@ var fe = [
|
|
|
2074
2083
|
*/
|
|
2075
2084
|
"ruler",
|
|
2076
2085
|
new te()
|
|
2077
|
-
), R(this, "State",
|
|
2086
|
+
), R(this, "State", _n);
|
|
2078
2087
|
for (let e = 0; e < fe.length; e++) this.ruler.push(fe[e][0], fe[e][1]);
|
|
2079
2088
|
}
|
|
2080
2089
|
/**
|
|
@@ -2082,25 +2091,25 @@ var fe = [
|
|
|
2082
2091
|
*/
|
|
2083
2092
|
process(e) {
|
|
2084
2093
|
const n = this.ruler.getRules("");
|
|
2085
|
-
for (let t = 0,
|
|
2094
|
+
for (let t = 0, i = n.length; t < i; t++) n[t](e);
|
|
2086
2095
|
}
|
|
2087
|
-
},
|
|
2088
|
-
constructor(e, n, t,
|
|
2089
|
-
R(this, "bMarks", []), R(this, "eMarks", []), R(this, "tShift", []), R(this, "sCount", []), R(this, "bsCount", []), R(this, "blkIndent", 0), R(this, "line", 0), R(this, "lineMax", 0), R(this, "tight", !1), R(this, "listIndent", -1), R(this, "parentType", "root"), R(this, "level", 0), R(this, "Token", W), this.src = e, this.md = n, this.env = t, this.tokens =
|
|
2096
|
+
}, mn = class {
|
|
2097
|
+
constructor(e, n, t, i) {
|
|
2098
|
+
R(this, "bMarks", []), R(this, "eMarks", []), R(this, "tShift", []), R(this, "sCount", []), R(this, "bsCount", []), R(this, "blkIndent", 0), R(this, "line", 0), R(this, "lineMax", 0), R(this, "tight", !1), R(this, "listIndent", -1), R(this, "parentType", "root"), R(this, "level", 0), R(this, "Token", W), this.src = e, this.md = n, this.env = t, this.tokens = i;
|
|
2090
2099
|
const r = this.src;
|
|
2091
|
-
for (let
|
|
2092
|
-
const
|
|
2093
|
-
if (!
|
|
2094
|
-
u++,
|
|
2100
|
+
for (let o = 0, s = 0, u = 0, l = 0, c = r.length, h = !1; s < c; s++) {
|
|
2101
|
+
const f = r.charCodeAt(s);
|
|
2102
|
+
if (!h) if (E(f)) {
|
|
2103
|
+
u++, f === 9 ? l += 4 - l % 4 : l++;
|
|
2095
2104
|
continue;
|
|
2096
|
-
} else
|
|
2097
|
-
(
|
|
2105
|
+
} else h = !0;
|
|
2106
|
+
(f === 10 || s === c - 1) && (f !== 10 && s++, this.bMarks.push(o), this.eMarks.push(s), this.tShift.push(u), this.sCount.push(l), this.bsCount.push(0), h = !1, u = 0, l = 0, o = s + 1);
|
|
2098
2107
|
}
|
|
2099
2108
|
this.bMarks.push(r.length), this.eMarks.push(r.length), this.tShift.push(0), this.sCount.push(0), this.bsCount.push(0), this.lineMax = this.bMarks.length - 1;
|
|
2100
2109
|
}
|
|
2101
2110
|
push(e, n, t) {
|
|
2102
|
-
const
|
|
2103
|
-
return
|
|
2111
|
+
const i = new W(e, n, t);
|
|
2112
|
+
return i.block = !0, t < 0 && this.level--, i.level = this.level, t > 0 && this.level++, this.tokens.push(i), i;
|
|
2104
2113
|
}
|
|
2105
2114
|
isEmpty(e) {
|
|
2106
2115
|
return this.bMarks[e] + this.tShift[e] >= this.eMarks[e];
|
|
@@ -2127,378 +2136,378 @@ var fe = [
|
|
|
2127
2136
|
for (; e > t; ) if (n !== this.src.charCodeAt(--e)) return e + 1;
|
|
2128
2137
|
return e;
|
|
2129
2138
|
}
|
|
2130
|
-
getLines(e, n, t,
|
|
2139
|
+
getLines(e, n, t, i) {
|
|
2131
2140
|
if (e >= n) return "";
|
|
2132
2141
|
const r = new Array(n - e);
|
|
2133
|
-
for (let
|
|
2142
|
+
for (let o = 0, s = e; s < n; s++, o++) {
|
|
2134
2143
|
let u = 0;
|
|
2135
2144
|
const l = this.bMarks[s];
|
|
2136
|
-
let c = l,
|
|
2137
|
-
for (s + 1 < n ||
|
|
2138
|
-
const
|
|
2139
|
-
if (E(
|
|
2145
|
+
let c = l, h;
|
|
2146
|
+
for (s + 1 < n || i ? h = this.eMarks[s] + 1 : h = this.eMarks[s]; c < h && u < t; ) {
|
|
2147
|
+
const f = this.src.charCodeAt(c);
|
|
2148
|
+
if (E(f)) f === 9 ? u += 4 - (u + this.bsCount[s]) % 4 : u++;
|
|
2140
2149
|
else if (c - l < this.tShift[s]) u++;
|
|
2141
2150
|
else break;
|
|
2142
2151
|
c++;
|
|
2143
2152
|
}
|
|
2144
|
-
u > t ? r[
|
|
2153
|
+
u > t ? r[o] = new Array(u - t + 1).join(" ") + this.src.slice(c, h) : r[o] = this.src.slice(c, h);
|
|
2145
2154
|
}
|
|
2146
2155
|
return r.join("");
|
|
2147
2156
|
}
|
|
2148
|
-
},
|
|
2157
|
+
}, lr = 65536;
|
|
2149
2158
|
function pe(e, n) {
|
|
2150
|
-
const t = e.bMarks[n] + e.tShift[n],
|
|
2151
|
-
return e.src.slice(t,
|
|
2159
|
+
const t = e.bMarks[n] + e.tShift[n], i = e.eMarks[n];
|
|
2160
|
+
return e.src.slice(t, i);
|
|
2152
2161
|
}
|
|
2153
|
-
function
|
|
2162
|
+
function Oe(e) {
|
|
2154
2163
|
const n = [], t = e.length;
|
|
2155
|
-
let
|
|
2156
|
-
for (;
|
|
2157
|
-
r === 124 && (
|
|
2164
|
+
let i = 0, r = e.charCodeAt(i), o = !1, s = 0, u = "";
|
|
2165
|
+
for (; i < t; )
|
|
2166
|
+
r === 124 && (o ? (u += e.substring(s, i - 1), s = i) : (n.push(u + e.substring(s, i)), u = "", s = i + 1)), o = r === 92, i++, r = e.charCodeAt(i);
|
|
2158
2167
|
return n.push(u + e.substring(s)), n;
|
|
2159
2168
|
}
|
|
2160
|
-
function
|
|
2169
|
+
function cr(e, n, t, i) {
|
|
2161
2170
|
if (n + 2 > t) return !1;
|
|
2162
2171
|
let r = n + 1;
|
|
2163
2172
|
if (e.sCount[r] < e.blkIndent || e.sCount[r] - e.blkIndent >= 4) return !1;
|
|
2164
|
-
let
|
|
2165
|
-
if (
|
|
2166
|
-
const s = e.src.charCodeAt(
|
|
2167
|
-
if (s !== 124 && s !== 45 && s !== 58 ||
|
|
2168
|
-
const u = e.src.charCodeAt(
|
|
2173
|
+
let o = e.bMarks[r] + e.tShift[r];
|
|
2174
|
+
if (o >= e.eMarks[r]) return !1;
|
|
2175
|
+
const s = e.src.charCodeAt(o++);
|
|
2176
|
+
if (s !== 124 && s !== 45 && s !== 58 || o >= e.eMarks[r]) return !1;
|
|
2177
|
+
const u = e.src.charCodeAt(o++);
|
|
2169
2178
|
if (u !== 124 && u !== 45 && u !== 58 && !E(u) || s === 45 && E(u)) return !1;
|
|
2170
|
-
for (;
|
|
2171
|
-
const
|
|
2172
|
-
if (
|
|
2173
|
-
|
|
2179
|
+
for (; o < e.eMarks[r]; ) {
|
|
2180
|
+
const _ = e.src.charCodeAt(o);
|
|
2181
|
+
if (_ !== 124 && _ !== 45 && _ !== 58 && !E(_)) return !1;
|
|
2182
|
+
o++;
|
|
2174
2183
|
}
|
|
2175
2184
|
let l = pe(e, n + 1), c = l.split("|");
|
|
2176
|
-
const
|
|
2177
|
-
for (let
|
|
2178
|
-
const k = c[
|
|
2185
|
+
const h = [];
|
|
2186
|
+
for (let _ = 0; _ < c.length; _++) {
|
|
2187
|
+
const k = c[_].trim();
|
|
2179
2188
|
if (!k) {
|
|
2180
|
-
if (
|
|
2189
|
+
if (_ === 0 || _ === c.length - 1) continue;
|
|
2181
2190
|
return !1;
|
|
2182
2191
|
}
|
|
2183
2192
|
if (!/^:?-+:?$/.test(k)) return !1;
|
|
2184
|
-
k.charCodeAt(k.length - 1) === 58 ?
|
|
2193
|
+
k.charCodeAt(k.length - 1) === 58 ? h.push(k.charCodeAt(0) === 58 ? "center" : "right") : k.charCodeAt(0) === 58 ? h.push("left") : h.push("");
|
|
2185
2194
|
}
|
|
2186
2195
|
if (l = pe(e, n).trim(), l.indexOf("|") === -1 || e.sCount[n] - e.blkIndent >= 4) return !1;
|
|
2187
|
-
c =
|
|
2188
|
-
const
|
|
2189
|
-
if (
|
|
2190
|
-
if (
|
|
2191
|
-
const
|
|
2196
|
+
c = Oe(l), c.length && c[0] === "" && c.shift(), c.length && c[c.length - 1] === "" && c.pop();
|
|
2197
|
+
const f = c.length;
|
|
2198
|
+
if (f === 0 || f !== h.length) return !1;
|
|
2199
|
+
if (i) return !0;
|
|
2200
|
+
const d = e.parentType;
|
|
2192
2201
|
e.parentType = "table";
|
|
2193
2202
|
const p = e.md.block.ruler.getRules("blockquote"), a = e.push("table_open", "table", 1), b = [n, 0];
|
|
2194
2203
|
a.map = b;
|
|
2195
2204
|
const g = e.push("thead_open", "thead", 1);
|
|
2196
2205
|
g.map = [n, n + 1];
|
|
2197
|
-
const
|
|
2198
|
-
|
|
2199
|
-
for (let
|
|
2206
|
+
const x = e.push("tr_open", "tr", 1);
|
|
2207
|
+
x.map = [n, n + 1];
|
|
2208
|
+
for (let _ = 0; _ < c.length; _++) {
|
|
2200
2209
|
const k = e.push("th_open", "th", 1);
|
|
2201
|
-
|
|
2202
|
-
const
|
|
2203
|
-
|
|
2210
|
+
h[_] && (k.attrs = [["style", `text-align:${h[_]}`]]);
|
|
2211
|
+
const v = e.push("inline", "", 0);
|
|
2212
|
+
v.content = c[_].trim(), v.children = [], e.push("th_close", "th", -1);
|
|
2204
2213
|
}
|
|
2205
2214
|
e.push("tr_close", "tr", -1), e.push("thead_close", "thead", -1);
|
|
2206
|
-
let
|
|
2215
|
+
let C, m = 0;
|
|
2207
2216
|
for (r = n + 2; r < t && !(e.sCount[r] < e.blkIndent); r++) {
|
|
2208
|
-
let
|
|
2209
|
-
for (let
|
|
2210
|
-
|
|
2217
|
+
let _ = !1;
|
|
2218
|
+
for (let v = 0, A = p.length; v < A; v++) if (p[v](e, r, t, !0)) {
|
|
2219
|
+
_ = !0;
|
|
2211
2220
|
break;
|
|
2212
2221
|
}
|
|
2213
|
-
if (
|
|
2222
|
+
if (_ || (l = pe(e, r).trim(), !l) || e.sCount[r] - e.blkIndent >= 4 || (c = Oe(l), c.length && c[0] === "" && c.shift(), c.length && c[c.length - 1] === "" && c.pop(), m += f - c.length, m > lr)) break;
|
|
2214
2223
|
if (r === n + 2) {
|
|
2215
|
-
const
|
|
2216
|
-
|
|
2224
|
+
const v = e.push("tbody_open", "tbody", 1);
|
|
2225
|
+
v.map = C = [n + 2, 0];
|
|
2217
2226
|
}
|
|
2218
2227
|
const k = e.push("tr_open", "tr", 1);
|
|
2219
2228
|
k.map = [r, r + 1];
|
|
2220
|
-
for (let
|
|
2229
|
+
for (let v = 0; v < f; v++) {
|
|
2221
2230
|
const A = e.push("td_open", "td", 1);
|
|
2222
|
-
|
|
2223
|
-
const
|
|
2224
|
-
|
|
2231
|
+
h[v] && (A.attrs = [["style", `text-align:${h[v]}`]]);
|
|
2232
|
+
const F = e.push("inline", "", 0);
|
|
2233
|
+
F.content = c[v] ? c[v].trim() : "", F.children = [], e.push("td_close", "td", -1);
|
|
2225
2234
|
}
|
|
2226
2235
|
e.push("tr_close", "tr", -1);
|
|
2227
2236
|
}
|
|
2228
|
-
return
|
|
2237
|
+
return C && (e.push("tbody_close", "tbody", -1), C[1] = r), e.push("table_close", "table", -1), b[1] = r, e.parentType = d, e.line = r, !0;
|
|
2229
2238
|
}
|
|
2230
|
-
function
|
|
2239
|
+
function ar(e, n, t) {
|
|
2231
2240
|
if (e.sCount[n] - e.blkIndent < 4) return !1;
|
|
2232
|
-
let
|
|
2233
|
-
for (;
|
|
2234
|
-
if (e.isEmpty(
|
|
2235
|
-
|
|
2241
|
+
let i = n + 1, r = i;
|
|
2242
|
+
for (; i < t; ) {
|
|
2243
|
+
if (e.isEmpty(i)) {
|
|
2244
|
+
i++;
|
|
2236
2245
|
continue;
|
|
2237
2246
|
}
|
|
2238
|
-
if (e.sCount[
|
|
2239
|
-
|
|
2247
|
+
if (e.sCount[i] - e.blkIndent >= 4) {
|
|
2248
|
+
i++, r = i;
|
|
2240
2249
|
continue;
|
|
2241
2250
|
}
|
|
2242
2251
|
break;
|
|
2243
2252
|
}
|
|
2244
2253
|
e.line = r;
|
|
2245
|
-
const
|
|
2246
|
-
return
|
|
2247
|
-
`,
|
|
2254
|
+
const o = e.push("code_block", "code", 0);
|
|
2255
|
+
return o.content = e.getLines(n, r, 4 + e.blkIndent, !1) + `
|
|
2256
|
+
`, o.map = [n, e.line], !0;
|
|
2248
2257
|
}
|
|
2249
|
-
function
|
|
2250
|
-
let r = e.bMarks[n] + e.tShift[n],
|
|
2251
|
-
if (e.sCount[n] - e.blkIndent >= 4 || r + 3 >
|
|
2258
|
+
function hr(e, n, t, i) {
|
|
2259
|
+
let r = e.bMarks[n] + e.tShift[n], o = e.eMarks[n];
|
|
2260
|
+
if (e.sCount[n] - e.blkIndent >= 4 || r + 3 > o) return !1;
|
|
2252
2261
|
const s = e.src.charCodeAt(r);
|
|
2253
2262
|
if (s !== 126 && s !== 96) return !1;
|
|
2254
2263
|
let u = r;
|
|
2255
2264
|
r = e.skipChars(r, s);
|
|
2256
2265
|
let l = r - u;
|
|
2257
2266
|
if (l < 3) return !1;
|
|
2258
|
-
const c = e.src.slice(u, r),
|
|
2259
|
-
if (s === 96 &&
|
|
2267
|
+
const c = e.src.slice(u, r), h = e.src.slice(r, o);
|
|
2268
|
+
if (s === 96 && h.indexOf(String.fromCharCode(s)) >= 0)
|
|
2260
2269
|
return !1;
|
|
2261
|
-
if (
|
|
2262
|
-
let
|
|
2263
|
-
for (;
|
|
2264
|
-
if (e.src.charCodeAt(r) === s && !(e.sCount[
|
|
2265
|
-
|
|
2270
|
+
if (i) return !0;
|
|
2271
|
+
let f = n, d = !1;
|
|
2272
|
+
for (; f++, !(f >= t || (r = u = e.bMarks[f] + e.tShift[f], o = e.eMarks[f], r < o && e.sCount[f] < e.blkIndent)); )
|
|
2273
|
+
if (e.src.charCodeAt(r) === s && !(e.sCount[f] - e.blkIndent >= 4) && (r = e.skipChars(r, s), !(r - u < l) && (r = e.skipSpaces(r), !(r < o)))) {
|
|
2274
|
+
d = !0;
|
|
2266
2275
|
break;
|
|
2267
2276
|
}
|
|
2268
|
-
l = e.sCount[n], e.line =
|
|
2277
|
+
l = e.sCount[n], e.line = f + (d ? 1 : 0);
|
|
2269
2278
|
const p = e.push("fence", "code", 0);
|
|
2270
|
-
return p.info =
|
|
2279
|
+
return p.info = h, p.content = e.getLines(n + 1, f, l, !0), p.markup = c, p.map = [n, e.line], !0;
|
|
2271
2280
|
}
|
|
2272
|
-
function
|
|
2273
|
-
let r = e.bMarks[n] + e.tShift[n],
|
|
2281
|
+
function fr(e, n, t, i) {
|
|
2282
|
+
let r = e.bMarks[n] + e.tShift[n], o = e.eMarks[n];
|
|
2274
2283
|
const s = e.lineMax;
|
|
2275
2284
|
if (e.sCount[n] - e.blkIndent >= 4 || e.src.charCodeAt(r) !== 62) return !1;
|
|
2276
|
-
if (
|
|
2277
|
-
const u = [], l = [], c = [],
|
|
2285
|
+
if (i) return !0;
|
|
2286
|
+
const u = [], l = [], c = [], h = [], f = e.md.block.ruler.getRules("blockquote"), d = e.parentType;
|
|
2278
2287
|
e.parentType = "blockquote";
|
|
2279
2288
|
let p = !1, a;
|
|
2280
2289
|
for (a = n; a < t; a++) {
|
|
2281
2290
|
const m = e.sCount[a] < e.blkIndent;
|
|
2282
|
-
if (r = e.bMarks[a] + e.tShift[a],
|
|
2291
|
+
if (r = e.bMarks[a] + e.tShift[a], o = e.eMarks[a], r >= o) break;
|
|
2283
2292
|
if (e.src.charCodeAt(r++) === 62 && !m) {
|
|
2284
|
-
let k = e.sCount[a] + 1,
|
|
2285
|
-
e.src.charCodeAt(r) === 32 ? (r++, k++, A = !1,
|
|
2286
|
-
let
|
|
2287
|
-
for (u.push(e.bMarks[a]), e.bMarks[a] = r; r <
|
|
2288
|
-
const
|
|
2289
|
-
if (E(
|
|
2293
|
+
let k = e.sCount[a] + 1, v, A;
|
|
2294
|
+
e.src.charCodeAt(r) === 32 ? (r++, k++, A = !1, v = !0) : e.src.charCodeAt(r) === 9 ? (v = !0, (e.bsCount[a] + k) % 4 === 3 ? (r++, k++, A = !1) : A = !0) : v = !1;
|
|
2295
|
+
let F = k;
|
|
2296
|
+
for (u.push(e.bMarks[a]), e.bMarks[a] = r; r < o; ) {
|
|
2297
|
+
const D = e.src.charCodeAt(r);
|
|
2298
|
+
if (E(D)) D === 9 ? F += 4 - (F + e.bsCount[a] + (A ? 1 : 0)) % 4 : F++;
|
|
2290
2299
|
else break;
|
|
2291
2300
|
r++;
|
|
2292
2301
|
}
|
|
2293
|
-
p = r >=
|
|
2302
|
+
p = r >= o, l.push(e.bsCount[a]), e.bsCount[a] = e.sCount[a] + 1 + (v ? 1 : 0), c.push(e.sCount[a]), e.sCount[a] = F - k, h.push(e.tShift[a]), e.tShift[a] = r - e.bMarks[a];
|
|
2294
2303
|
continue;
|
|
2295
2304
|
}
|
|
2296
2305
|
if (p) break;
|
|
2297
|
-
let
|
|
2298
|
-
for (let k = 0,
|
|
2299
|
-
|
|
2306
|
+
let _ = !1;
|
|
2307
|
+
for (let k = 0, v = f.length; k < v; k++) if (f[k](e, a, t, !0)) {
|
|
2308
|
+
_ = !0;
|
|
2300
2309
|
break;
|
|
2301
2310
|
}
|
|
2302
|
-
if (
|
|
2303
|
-
e.lineMax = a, e.blkIndent !== 0 && (u.push(e.bMarks[a]), l.push(e.bsCount[a]),
|
|
2311
|
+
if (_) {
|
|
2312
|
+
e.lineMax = a, e.blkIndent !== 0 && (u.push(e.bMarks[a]), l.push(e.bsCount[a]), h.push(e.tShift[a]), c.push(e.sCount[a]), e.sCount[a] -= e.blkIndent);
|
|
2304
2313
|
break;
|
|
2305
2314
|
}
|
|
2306
|
-
u.push(e.bMarks[a]), l.push(e.bsCount[a]),
|
|
2315
|
+
u.push(e.bMarks[a]), l.push(e.bsCount[a]), h.push(e.tShift[a]), c.push(e.sCount[a]), e.sCount[a] = -1;
|
|
2307
2316
|
}
|
|
2308
2317
|
const b = e.blkIndent;
|
|
2309
2318
|
e.blkIndent = 0;
|
|
2310
2319
|
const g = e.push("blockquote_open", "blockquote", 1);
|
|
2311
2320
|
g.markup = ">";
|
|
2312
|
-
const
|
|
2313
|
-
g.map =
|
|
2314
|
-
const
|
|
2315
|
-
|
|
2316
|
-
for (let m = 0; m <
|
|
2317
|
-
e.bMarks[m + n] = u[m], e.tShift[m + n] =
|
|
2321
|
+
const x = [n, 0];
|
|
2322
|
+
g.map = x, e.md.block.tokenize(e, n, a);
|
|
2323
|
+
const C = e.push("blockquote_close", "blockquote", -1);
|
|
2324
|
+
C.markup = ">", e.lineMax = s, e.parentType = d, x[1] = e.line;
|
|
2325
|
+
for (let m = 0; m < h.length; m++)
|
|
2326
|
+
e.bMarks[m + n] = u[m], e.tShift[m + n] = h[m], e.sCount[m + n] = c[m], e.bsCount[m + n] = l[m];
|
|
2318
2327
|
return e.blkIndent = b, !0;
|
|
2319
2328
|
}
|
|
2320
|
-
function
|
|
2329
|
+
function pr(e, n, t, i) {
|
|
2321
2330
|
const r = e.eMarks[n];
|
|
2322
2331
|
if (e.sCount[n] - e.blkIndent >= 4) return !1;
|
|
2323
|
-
let
|
|
2324
|
-
const s = e.src.charCodeAt(
|
|
2332
|
+
let o = e.bMarks[n] + e.tShift[n];
|
|
2333
|
+
const s = e.src.charCodeAt(o++);
|
|
2325
2334
|
if (s !== 42 && s !== 45 && s !== 95) return !1;
|
|
2326
2335
|
let u = 1;
|
|
2327
|
-
for (;
|
|
2328
|
-
const c = e.src.charCodeAt(
|
|
2336
|
+
for (; o < r; ) {
|
|
2337
|
+
const c = e.src.charCodeAt(o++);
|
|
2329
2338
|
if (c !== s && !E(c)) return !1;
|
|
2330
2339
|
c === s && u++;
|
|
2331
2340
|
}
|
|
2332
2341
|
if (u < 3) return !1;
|
|
2333
|
-
if (
|
|
2342
|
+
if (i) return !0;
|
|
2334
2343
|
e.line = n + 1;
|
|
2335
2344
|
const l = e.push("hr", "hr", 0);
|
|
2336
2345
|
return l.map = [n, e.line], l.markup = Array(u + 1).join(String.fromCharCode(s)), !0;
|
|
2337
2346
|
}
|
|
2338
2347
|
function $e(e, n) {
|
|
2339
2348
|
const t = e.eMarks[n];
|
|
2340
|
-
let
|
|
2341
|
-
const r = e.src.charCodeAt(
|
|
2342
|
-
return r !== 42 && r !== 45 && r !== 43 ||
|
|
2349
|
+
let i = e.bMarks[n] + e.tShift[n];
|
|
2350
|
+
const r = e.src.charCodeAt(i++);
|
|
2351
|
+
return r !== 42 && r !== 45 && r !== 43 || i < t && !E(e.src.charCodeAt(i)) ? -1 : i;
|
|
2343
2352
|
}
|
|
2344
2353
|
function qe(e, n) {
|
|
2345
|
-
const t = e.bMarks[n] + e.tShift[n],
|
|
2354
|
+
const t = e.bMarks[n] + e.tShift[n], i = e.eMarks[n];
|
|
2346
2355
|
let r = t;
|
|
2347
|
-
if (r + 1 >=
|
|
2348
|
-
let
|
|
2349
|
-
if (
|
|
2356
|
+
if (r + 1 >= i) return -1;
|
|
2357
|
+
let o = e.src.charCodeAt(r++);
|
|
2358
|
+
if (o < 48 || o > 57) return -1;
|
|
2350
2359
|
for (; ; ) {
|
|
2351
|
-
if (r >=
|
|
2352
|
-
if (
|
|
2360
|
+
if (r >= i) return -1;
|
|
2361
|
+
if (o = e.src.charCodeAt(r++), o >= 48 && o <= 57) {
|
|
2353
2362
|
if (r - t >= 10) return -1;
|
|
2354
2363
|
continue;
|
|
2355
2364
|
}
|
|
2356
|
-
if (
|
|
2365
|
+
if (o === 41 || o === 46) break;
|
|
2357
2366
|
return -1;
|
|
2358
2367
|
}
|
|
2359
|
-
return r <
|
|
2368
|
+
return r < i && (o = e.src.charCodeAt(r), !E(o)) ? -1 : r;
|
|
2360
2369
|
}
|
|
2361
|
-
function
|
|
2370
|
+
function dr(e, n) {
|
|
2362
2371
|
const t = e.level + 2;
|
|
2363
|
-
for (let
|
|
2372
|
+
for (let i = n + 2, r = e.tokens.length - 2; i < r; i++) e.tokens[i].level === t && e.tokens[i].type === "paragraph_open" && (e.tokens[i + 2].hidden = !0, e.tokens[i].hidden = !0, i += 2);
|
|
2364
2373
|
}
|
|
2365
|
-
function
|
|
2366
|
-
let r,
|
|
2374
|
+
function _r(e, n, t, i) {
|
|
2375
|
+
let r, o, s, u, l = n, c = !0;
|
|
2367
2376
|
if (e.sCount[l] - e.blkIndent >= 4 || e.listIndent >= 0 && e.sCount[l] - e.listIndent >= 4 && e.sCount[l] < e.blkIndent) return !1;
|
|
2368
|
-
let
|
|
2369
|
-
|
|
2370
|
-
let
|
|
2377
|
+
let h = !1;
|
|
2378
|
+
i && e.parentType === "paragraph" && e.sCount[l] >= e.blkIndent && (h = !0);
|
|
2379
|
+
let f, d, p;
|
|
2371
2380
|
if ((p = qe(e, l)) >= 0) {
|
|
2372
|
-
if (
|
|
2373
|
-
} else if ((p = $e(e, l)) >= 0)
|
|
2381
|
+
if (f = !0, s = e.bMarks[l] + e.tShift[l], d = Number(e.src.slice(s, p - 1)), h && d !== 1) return !1;
|
|
2382
|
+
} else if ((p = $e(e, l)) >= 0) f = !1;
|
|
2374
2383
|
else return !1;
|
|
2375
|
-
if (
|
|
2384
|
+
if (h && e.skipSpaces(p) >= e.eMarks[l])
|
|
2376
2385
|
return !1;
|
|
2377
|
-
if (
|
|
2386
|
+
if (i) return !0;
|
|
2378
2387
|
const a = e.src.charCodeAt(p - 1), b = e.tokens.length;
|
|
2379
|
-
|
|
2388
|
+
f ? (u = e.push("ordered_list_open", "ol", 1), d !== 1 && (u.attrs = [["start", d]])) : u = e.push("bullet_list_open", "ul", 1);
|
|
2380
2389
|
const g = [l, 0];
|
|
2381
2390
|
u.map = g, u.markup = String.fromCharCode(a);
|
|
2382
|
-
let
|
|
2383
|
-
const
|
|
2391
|
+
let x = !1;
|
|
2392
|
+
const C = e.md.block.ruler.getRules("list"), m = e.parentType;
|
|
2384
2393
|
for (e.parentType = "list"; l < t; ) {
|
|
2385
|
-
|
|
2386
|
-
const
|
|
2387
|
-
let k =
|
|
2388
|
-
for (;
|
|
2389
|
-
const S = e.src.charCodeAt(
|
|
2394
|
+
o = p, r = e.eMarks[l];
|
|
2395
|
+
const _ = e.sCount[l] + p - (e.bMarks[l] + e.tShift[l]);
|
|
2396
|
+
let k = _;
|
|
2397
|
+
for (; o < r; ) {
|
|
2398
|
+
const S = e.src.charCodeAt(o);
|
|
2390
2399
|
if (S === 9) k += 4 - (k + e.bsCount[l]) % 4;
|
|
2391
2400
|
else if (S === 32) k++;
|
|
2392
2401
|
else break;
|
|
2393
|
-
|
|
2402
|
+
o++;
|
|
2394
2403
|
}
|
|
2395
|
-
const
|
|
2404
|
+
const v = o;
|
|
2396
2405
|
let A;
|
|
2397
|
-
|
|
2398
|
-
const
|
|
2406
|
+
v >= r ? A = 1 : A = k - _, A > 4 && (A = 1);
|
|
2407
|
+
const F = _ + A;
|
|
2399
2408
|
u = e.push("list_item_open", "li", 1), u.markup = String.fromCharCode(a);
|
|
2400
|
-
const
|
|
2401
|
-
u.map =
|
|
2402
|
-
const
|
|
2403
|
-
if (e.listIndent = e.blkIndent, e.blkIndent =
|
|
2404
|
-
let
|
|
2405
|
-
for (let S = 0,
|
|
2406
|
-
|
|
2409
|
+
const D = [l, 0];
|
|
2410
|
+
u.map = D, f && (u.info = e.src.slice(s, p - 1));
|
|
2411
|
+
const y = e.tight, w = e.tShift[l], B = e.sCount[l], I = e.listIndent;
|
|
2412
|
+
if (e.listIndent = e.blkIndent, e.blkIndent = F, e.tight = !0, e.tShift[l] = v - e.bMarks[l], e.sCount[l] = k, v >= r && e.isEmpty(l + 1) ? e.line = Math.min(e.line + 2, t) : e.md.block.tokenize(e, l, t), (!e.tight || x) && (c = !1), x = e.line - l > 1 && e.isEmpty(e.line - 1), e.blkIndent = e.listIndent, e.listIndent = I, e.tShift[l] = w, e.sCount[l] = B, e.tight = y, u = e.push("list_item_close", "li", -1), u.markup = String.fromCharCode(a), l = e.line, D[1] = l, l >= t || e.sCount[l] < e.blkIndent || e.sCount[l] - e.blkIndent >= 4) break;
|
|
2413
|
+
let J = !1;
|
|
2414
|
+
for (let S = 0, An = C.length; S < An; S++) if (C[S](e, l, t, !0)) {
|
|
2415
|
+
J = !0;
|
|
2407
2416
|
break;
|
|
2408
2417
|
}
|
|
2409
|
-
if (
|
|
2410
|
-
if (
|
|
2418
|
+
if (J) break;
|
|
2419
|
+
if (f) {
|
|
2411
2420
|
if (p = qe(e, l), p < 0) break;
|
|
2412
2421
|
s = e.bMarks[l] + e.tShift[l];
|
|
2413
2422
|
} else if (p = $e(e, l), p < 0) break;
|
|
2414
2423
|
if (a !== e.src.charCodeAt(p - 1)) break;
|
|
2415
2424
|
}
|
|
2416
|
-
return
|
|
2425
|
+
return f ? u = e.push("ordered_list_close", "ol", -1) : u = e.push("bullet_list_close", "ul", -1), u.markup = String.fromCharCode(a), g[1] = l, e.line = l, e.parentType = m, c && dr(e, b), !0;
|
|
2417
2426
|
}
|
|
2418
|
-
function
|
|
2419
|
-
let r = e.bMarks[n] + e.tShift[n],
|
|
2427
|
+
function gr(e, n, t, i) {
|
|
2428
|
+
let r = e.bMarks[n] + e.tShift[n], o = e.eMarks[n], s = n + 1;
|
|
2420
2429
|
if (e.sCount[n] - e.blkIndent >= 4 || e.src.charCodeAt(r) !== 91) return !1;
|
|
2421
|
-
function u(
|
|
2430
|
+
function u(_) {
|
|
2422
2431
|
const k = e.lineMax;
|
|
2423
|
-
if (
|
|
2424
|
-
let
|
|
2425
|
-
if (e.sCount[
|
|
2426
|
-
const
|
|
2432
|
+
if (_ >= k || e.isEmpty(_)) return null;
|
|
2433
|
+
let v = !1;
|
|
2434
|
+
if (e.sCount[_] - e.blkIndent > 3 && (v = !0), e.sCount[_] < 0 && (v = !0), !v) {
|
|
2435
|
+
const D = e.md.block.ruler.getRules("reference"), y = e.parentType;
|
|
2427
2436
|
e.parentType = "reference";
|
|
2428
2437
|
let w = !1;
|
|
2429
|
-
for (let
|
|
2438
|
+
for (let B = 0, I = D.length; B < I; B++) if (D[B](e, _, k, !0)) {
|
|
2430
2439
|
w = !0;
|
|
2431
2440
|
break;
|
|
2432
2441
|
}
|
|
2433
|
-
if (e.parentType =
|
|
2442
|
+
if (e.parentType = y, w) return null;
|
|
2434
2443
|
}
|
|
2435
|
-
const A = e.bMarks[
|
|
2436
|
-
return e.src.slice(A,
|
|
2444
|
+
const A = e.bMarks[_] + e.tShift[_], F = e.eMarks[_];
|
|
2445
|
+
return e.src.slice(A, F + 1);
|
|
2437
2446
|
}
|
|
2438
|
-
let l = e.src.slice(r,
|
|
2439
|
-
|
|
2447
|
+
let l = e.src.slice(r, o + 1);
|
|
2448
|
+
o = l.length;
|
|
2440
2449
|
let c = -1;
|
|
2441
|
-
for (r = 1; r <
|
|
2442
|
-
const
|
|
2443
|
-
if (
|
|
2444
|
-
if (
|
|
2450
|
+
for (r = 1; r < o; r++) {
|
|
2451
|
+
const _ = l.charCodeAt(r);
|
|
2452
|
+
if (_ === 91) return !1;
|
|
2453
|
+
if (_ === 93) {
|
|
2445
2454
|
c = r;
|
|
2446
2455
|
break;
|
|
2447
|
-
} else if (
|
|
2456
|
+
} else if (_ === 10) {
|
|
2448
2457
|
const k = u(s);
|
|
2449
|
-
k !== null && (l += k,
|
|
2450
|
-
} else if (
|
|
2458
|
+
k !== null && (l += k, o = l.length, s++);
|
|
2459
|
+
} else if (_ === 92 && (r++, r < o && l.charCodeAt(r) === 10)) {
|
|
2451
2460
|
const k = u(s);
|
|
2452
|
-
k !== null && (l += k,
|
|
2461
|
+
k !== null && (l += k, o = l.length, s++);
|
|
2453
2462
|
}
|
|
2454
2463
|
}
|
|
2455
2464
|
if (c < 0 || l.charCodeAt(c + 1) !== 58) return !1;
|
|
2456
|
-
for (r = c + 2; r <
|
|
2457
|
-
const
|
|
2458
|
-
if (
|
|
2465
|
+
for (r = c + 2; r < o; r++) {
|
|
2466
|
+
const _ = l.charCodeAt(r);
|
|
2467
|
+
if (_ === 10) {
|
|
2459
2468
|
const k = u(s);
|
|
2460
|
-
k !== null && (l += k,
|
|
2461
|
-
} else if (!E(
|
|
2469
|
+
k !== null && (l += k, o = l.length, s++);
|
|
2470
|
+
} else if (!E(_)) break;
|
|
2462
2471
|
}
|
|
2463
|
-
const
|
|
2464
|
-
if (!
|
|
2465
|
-
const
|
|
2466
|
-
if (!e.md.validateLink(
|
|
2467
|
-
r =
|
|
2468
|
-
const
|
|
2469
|
-
for (; r <
|
|
2470
|
-
const
|
|
2471
|
-
if (
|
|
2472
|
+
const h = e.md.helpers.parseLinkDestination(l, r, o);
|
|
2473
|
+
if (!h.ok) return !1;
|
|
2474
|
+
const f = e.md.normalizeLink(h.str);
|
|
2475
|
+
if (!e.md.validateLink(f)) return !1;
|
|
2476
|
+
r = h.pos;
|
|
2477
|
+
const d = r, p = s, a = r;
|
|
2478
|
+
for (; r < o; r++) {
|
|
2479
|
+
const _ = l.charCodeAt(r);
|
|
2480
|
+
if (_ === 10) {
|
|
2472
2481
|
const k = u(s);
|
|
2473
|
-
k !== null && (l += k,
|
|
2474
|
-
} else if (!E(
|
|
2482
|
+
k !== null && (l += k, o = l.length, s++);
|
|
2483
|
+
} else if (!E(_)) break;
|
|
2475
2484
|
}
|
|
2476
|
-
let b = e.md.helpers.parseLinkTitle(l, r,
|
|
2485
|
+
let b = e.md.helpers.parseLinkTitle(l, r, o);
|
|
2477
2486
|
for (; b.can_continue; ) {
|
|
2478
|
-
const
|
|
2479
|
-
if (
|
|
2480
|
-
l +=
|
|
2487
|
+
const _ = u(s);
|
|
2488
|
+
if (_ === null) break;
|
|
2489
|
+
l += _, r = o, o = l.length, s++, b = e.md.helpers.parseLinkTitle(l, r, o, b);
|
|
2481
2490
|
}
|
|
2482
2491
|
let g;
|
|
2483
|
-
for (r <
|
|
2492
|
+
for (r < o && a !== r && b.ok ? (g = b.str, r = b.pos) : (g = "", r = d, s = p); r < o && E(l.charCodeAt(r)); )
|
|
2484
2493
|
r++;
|
|
2485
|
-
if (r <
|
|
2486
|
-
for (g = "", r =
|
|
2494
|
+
if (r < o && l.charCodeAt(r) !== 10 && g)
|
|
2495
|
+
for (g = "", r = d, s = p; r < o && E(l.charCodeAt(r)); )
|
|
2487
2496
|
r++;
|
|
2488
|
-
if (r <
|
|
2489
|
-
const
|
|
2490
|
-
if (!
|
|
2491
|
-
if (
|
|
2492
|
-
typeof e.env.references > "u" && (e.env.references = {}), typeof e.env.references[
|
|
2497
|
+
if (r < o && l.charCodeAt(r) !== 10) return !1;
|
|
2498
|
+
const x = ue(l.slice(1, c));
|
|
2499
|
+
if (!x) return !1;
|
|
2500
|
+
if (i) return !0;
|
|
2501
|
+
typeof e.env.references > "u" && (e.env.references = {}), typeof e.env.references[x] > "u" && (e.env.references[x] = {
|
|
2493
2502
|
title: g,
|
|
2494
|
-
href:
|
|
2503
|
+
href: f
|
|
2495
2504
|
});
|
|
2496
|
-
const
|
|
2497
|
-
|
|
2505
|
+
const C = e.push("reference_definition", "", 0);
|
|
2506
|
+
C.map = [n, s], C.hidden = !0;
|
|
2498
2507
|
const m = /* @__PURE__ */ Object.create(null);
|
|
2499
|
-
return m.label =
|
|
2508
|
+
return m.label = x, C.meta = m, e.line = s, !0;
|
|
2500
2509
|
}
|
|
2501
|
-
var
|
|
2510
|
+
var kr = [
|
|
2502
2511
|
"address",
|
|
2503
2512
|
"article",
|
|
2504
2513
|
"aside",
|
|
@@ -2561,7 +2570,7 @@ var _r = [
|
|
|
2561
2570
|
"tr",
|
|
2562
2571
|
"track",
|
|
2563
2572
|
"ul"
|
|
2564
|
-
],
|
|
2573
|
+
], Rn = `<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*\\/?>`, bn = "<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>", mr = new RegExp(`^(?:${Rn}|${bn}|<!---?>|<!--(?:[^-]|-[^-]|--[^>])*-->|<[?][\\s\\S]*?[?]>|<![A-Za-z][^>]*>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>)`), Rr = new RegExp(`^(?:${Rn}|${bn})`), Z = [
|
|
2565
2574
|
[
|
|
2566
2575
|
/^<(script|pre|style|textarea)(?=(\s|>|$))/i,
|
|
2567
2576
|
/<\/(script|pre|style|textarea)>/i,
|
|
@@ -2588,105 +2597,105 @@ var _r = [
|
|
|
2588
2597
|
!0
|
|
2589
2598
|
],
|
|
2590
2599
|
[
|
|
2591
|
-
new RegExp(`^</?(${
|
|
2600
|
+
new RegExp(`^</?(${kr.join("|")})(?=(\\s|/?>|$))`, "i"),
|
|
2592
2601
|
/^$/,
|
|
2593
2602
|
!0
|
|
2594
2603
|
],
|
|
2595
2604
|
[
|
|
2596
|
-
new RegExp(`${
|
|
2605
|
+
new RegExp(`${Rr.source}\\s*$`),
|
|
2597
2606
|
/^$/,
|
|
2598
2607
|
!1
|
|
2599
2608
|
]
|
|
2600
2609
|
];
|
|
2601
|
-
function
|
|
2602
|
-
let r = e.bMarks[n] + e.tShift[n],
|
|
2610
|
+
function br(e, n, t, i) {
|
|
2611
|
+
let r = e.bMarks[n] + e.tShift[n], o = e.eMarks[n];
|
|
2603
2612
|
if (e.sCount[n] - e.blkIndent >= 4 || !e.md.options.html || e.src.charCodeAt(r) !== 60) return !1;
|
|
2604
|
-
let s = e.src.slice(r,
|
|
2613
|
+
let s = e.src.slice(r, o), u = 0;
|
|
2605
2614
|
for (; u < Z.length && !Z[u][0].test(s); u++) ;
|
|
2606
2615
|
if (u === Z.length) return !1;
|
|
2607
|
-
if (
|
|
2616
|
+
if (i) return Z[u][2];
|
|
2608
2617
|
let l = n + 1;
|
|
2609
2618
|
const c = Z[u][1].test("");
|
|
2610
2619
|
if (!Z[u][1].test(s)) {
|
|
2611
2620
|
for (; l < t && !(e.sCount[l] < e.blkIndent && (c || !e.isEmpty(l))); l++)
|
|
2612
|
-
if (r = e.bMarks[l] + e.tShift[l],
|
|
2621
|
+
if (r = e.bMarks[l] + e.tShift[l], o = e.eMarks[l], s = e.src.slice(r, o), Z[u][1].test(s)) {
|
|
2613
2622
|
s.length !== 0 && l++;
|
|
2614
2623
|
break;
|
|
2615
2624
|
}
|
|
2616
2625
|
}
|
|
2617
2626
|
e.line = l;
|
|
2618
|
-
const
|
|
2619
|
-
return
|
|
2627
|
+
const h = e.push("html_block", "", 0);
|
|
2628
|
+
return h.map = [n, l], h.content = e.getLines(n, l, e.blkIndent, !0), !0;
|
|
2620
2629
|
}
|
|
2621
|
-
function
|
|
2622
|
-
let r = e.bMarks[n] + e.tShift[n],
|
|
2630
|
+
function xr(e, n, t, i) {
|
|
2631
|
+
let r = e.bMarks[n] + e.tShift[n], o = e.eMarks[n];
|
|
2623
2632
|
if (e.sCount[n] - e.blkIndent >= 4) return !1;
|
|
2624
2633
|
let s = e.src.charCodeAt(r);
|
|
2625
|
-
if (s !== 35 || r >=
|
|
2634
|
+
if (s !== 35 || r >= o) return !1;
|
|
2626
2635
|
let u = 1;
|
|
2627
|
-
for (s = e.src.charCodeAt(++r); s === 35 && r <
|
|
2636
|
+
for (s = e.src.charCodeAt(++r); s === 35 && r < o && u <= 6; )
|
|
2628
2637
|
u++, s = e.src.charCodeAt(++r);
|
|
2629
|
-
if (u > 6 || r <
|
|
2630
|
-
if (
|
|
2631
|
-
|
|
2632
|
-
const l = e.skipCharsBack(
|
|
2633
|
-
l > r && E(e.src.charCodeAt(l - 1)) && (
|
|
2638
|
+
if (u > 6 || r < o && !E(s)) return !1;
|
|
2639
|
+
if (i) return !0;
|
|
2640
|
+
o = e.skipSpacesBack(o, r);
|
|
2641
|
+
const l = e.skipCharsBack(o, 35, r);
|
|
2642
|
+
l > r && E(e.src.charCodeAt(l - 1)) && (o = l), e.line = n + 1;
|
|
2634
2643
|
const c = e.push("heading_open", `h${u}`, 1);
|
|
2635
2644
|
c.markup = "########".slice(0, u), c.map = [n, e.line];
|
|
2636
|
-
const
|
|
2637
|
-
|
|
2638
|
-
const
|
|
2639
|
-
return
|
|
2645
|
+
const h = e.push("inline", "", 0);
|
|
2646
|
+
h.content = le(e.src.slice(r, o)), h.map = [n, e.line], h.children = [];
|
|
2647
|
+
const f = e.push("heading_close", `h${u}`, -1);
|
|
2648
|
+
return f.markup = "########".slice(0, u), !0;
|
|
2640
2649
|
}
|
|
2641
|
-
function
|
|
2642
|
-
const
|
|
2650
|
+
function Cr(e, n, t) {
|
|
2651
|
+
const i = e.md.block.ruler.getRules("paragraph");
|
|
2643
2652
|
if (e.sCount[n] - e.blkIndent >= 4) return !1;
|
|
2644
2653
|
const r = e.parentType;
|
|
2645
2654
|
e.parentType = "paragraph";
|
|
2646
|
-
let
|
|
2655
|
+
let o = 0, s, u = n + 1;
|
|
2647
2656
|
for (; u < t && !e.isEmpty(u); u++) {
|
|
2648
2657
|
if (e.sCount[u] - e.blkIndent > 3) continue;
|
|
2649
2658
|
if (e.sCount[u] >= e.blkIndent) {
|
|
2650
2659
|
let p = e.bMarks[u] + e.tShift[u];
|
|
2651
2660
|
const a = e.eMarks[u];
|
|
2652
2661
|
if (p < a && (s = e.src.charCodeAt(p), (s === 45 || s === 61) && (p = e.skipChars(p, s), p = e.skipSpaces(p), p >= a))) {
|
|
2653
|
-
|
|
2662
|
+
o = s === 61 ? 1 : 2;
|
|
2654
2663
|
break;
|
|
2655
2664
|
}
|
|
2656
2665
|
}
|
|
2657
2666
|
if (e.sCount[u] < 0) continue;
|
|
2658
|
-
let
|
|
2659
|
-
for (let p = 0, a =
|
|
2660
|
-
|
|
2667
|
+
let d = !1;
|
|
2668
|
+
for (let p = 0, a = i.length; p < a; p++) if (i[p](e, u, t, !0)) {
|
|
2669
|
+
d = !0;
|
|
2661
2670
|
break;
|
|
2662
2671
|
}
|
|
2663
|
-
if (
|
|
2672
|
+
if (d) break;
|
|
2664
2673
|
}
|
|
2665
|
-
if (!
|
|
2674
|
+
if (!o)
|
|
2666
2675
|
return e.parentType = r, !1;
|
|
2667
2676
|
const l = le(e.getLines(n, u, e.blkIndent, !1));
|
|
2668
2677
|
e.line = u + 1;
|
|
2669
|
-
const c = e.push("heading_open", `h${
|
|
2678
|
+
const c = e.push("heading_open", `h${o}`, 1);
|
|
2670
2679
|
c.markup = String.fromCharCode(s), c.map = [n, e.line];
|
|
2671
|
-
const
|
|
2672
|
-
|
|
2673
|
-
const
|
|
2674
|
-
return
|
|
2675
|
-
}
|
|
2676
|
-
function
|
|
2677
|
-
const
|
|
2678
|
-
let
|
|
2679
|
-
for (e.parentType = "paragraph";
|
|
2680
|
-
if (e.sCount[
|
|
2680
|
+
const h = e.push("inline", "", 0);
|
|
2681
|
+
h.content = l, h.map = [n, e.line - 1], h.children = [];
|
|
2682
|
+
const f = e.push("heading_close", `h${o}`, -1);
|
|
2683
|
+
return f.markup = String.fromCharCode(s), e.parentType = r, !0;
|
|
2684
|
+
}
|
|
2685
|
+
function vr(e, n, t) {
|
|
2686
|
+
const i = e.md.block.ruler.getRules("paragraph"), r = e.parentType;
|
|
2687
|
+
let o = n + 1;
|
|
2688
|
+
for (e.parentType = "paragraph"; o < t && !e.isEmpty(o); o++) {
|
|
2689
|
+
if (e.sCount[o] - e.blkIndent > 3 || e.sCount[o] < 0) continue;
|
|
2681
2690
|
let c = !1;
|
|
2682
|
-
for (let
|
|
2691
|
+
for (let h = 0, f = i.length; h < f; h++) if (i[h](e, o, t, !0)) {
|
|
2683
2692
|
c = !0;
|
|
2684
2693
|
break;
|
|
2685
2694
|
}
|
|
2686
2695
|
if (c) break;
|
|
2687
2696
|
}
|
|
2688
|
-
const s = le(e.getLines(n,
|
|
2689
|
-
e.line =
|
|
2697
|
+
const s = le(e.getLines(n, o, e.blkIndent, !1));
|
|
2698
|
+
e.line = o;
|
|
2690
2699
|
const u = e.push("paragraph_open", "p", 1);
|
|
2691
2700
|
u.map = [n, e.line];
|
|
2692
2701
|
const l = e.push("inline", "", 0);
|
|
@@ -2695,13 +2704,13 @@ function xr(e, n, t) {
|
|
|
2695
2704
|
var ie = [
|
|
2696
2705
|
[
|
|
2697
2706
|
"table",
|
|
2698
|
-
|
|
2707
|
+
cr,
|
|
2699
2708
|
["paragraph", "reference"]
|
|
2700
2709
|
],
|
|
2701
|
-
["code",
|
|
2710
|
+
["code", ar],
|
|
2702
2711
|
[
|
|
2703
2712
|
"fence",
|
|
2704
|
-
|
|
2713
|
+
hr,
|
|
2705
2714
|
[
|
|
2706
2715
|
"paragraph",
|
|
2707
2716
|
"reference",
|
|
@@ -2711,7 +2720,7 @@ var ie = [
|
|
|
2711
2720
|
],
|
|
2712
2721
|
[
|
|
2713
2722
|
"blockquote",
|
|
2714
|
-
|
|
2723
|
+
fr,
|
|
2715
2724
|
[
|
|
2716
2725
|
"paragraph",
|
|
2717
2726
|
"reference",
|
|
@@ -2721,7 +2730,7 @@ var ie = [
|
|
|
2721
2730
|
],
|
|
2722
2731
|
[
|
|
2723
2732
|
"hr",
|
|
2724
|
-
|
|
2733
|
+
pr,
|
|
2725
2734
|
[
|
|
2726
2735
|
"paragraph",
|
|
2727
2736
|
"reference",
|
|
@@ -2731,17 +2740,17 @@ var ie = [
|
|
|
2731
2740
|
],
|
|
2732
2741
|
[
|
|
2733
2742
|
"list",
|
|
2734
|
-
|
|
2743
|
+
_r,
|
|
2735
2744
|
[
|
|
2736
2745
|
"paragraph",
|
|
2737
2746
|
"reference",
|
|
2738
2747
|
"blockquote"
|
|
2739
2748
|
]
|
|
2740
2749
|
],
|
|
2741
|
-
["reference",
|
|
2750
|
+
["reference", gr],
|
|
2742
2751
|
[
|
|
2743
2752
|
"html_block",
|
|
2744
|
-
|
|
2753
|
+
br,
|
|
2745
2754
|
[
|
|
2746
2755
|
"paragraph",
|
|
2747
2756
|
"reference",
|
|
@@ -2750,16 +2759,16 @@ var ie = [
|
|
|
2750
2759
|
],
|
|
2751
2760
|
[
|
|
2752
2761
|
"heading",
|
|
2753
|
-
|
|
2762
|
+
xr,
|
|
2754
2763
|
[
|
|
2755
2764
|
"paragraph",
|
|
2756
2765
|
"reference",
|
|
2757
2766
|
"blockquote"
|
|
2758
2767
|
]
|
|
2759
2768
|
],
|
|
2760
|
-
["lheading",
|
|
2761
|
-
["paragraph",
|
|
2762
|
-
],
|
|
2769
|
+
["lheading", Cr],
|
|
2770
|
+
["paragraph", vr]
|
|
2771
|
+
], xn = class {
|
|
2763
2772
|
constructor() {
|
|
2764
2773
|
R(
|
|
2765
2774
|
this,
|
|
@@ -2768,21 +2777,21 @@ var ie = [
|
|
|
2768
2777
|
*/
|
|
2769
2778
|
"ruler",
|
|
2770
2779
|
new te()
|
|
2771
|
-
), R(this, "State",
|
|
2780
|
+
), R(this, "State", mn);
|
|
2772
2781
|
for (let e = 0; e < ie.length; e++) this.ruler.push(ie[e][0], ie[e][1], { alt: (ie[e][2] || []).slice() });
|
|
2773
2782
|
}
|
|
2774
2783
|
tokenize(e, n, t) {
|
|
2775
|
-
const
|
|
2784
|
+
const i = this.ruler.getRules(""), r = i.length, o = e.md.options.maxNesting;
|
|
2776
2785
|
let s = n, u = !1;
|
|
2777
2786
|
for (; s < t && (e.line = s = e.skipEmptyLines(s), !(s >= t || e.sCount[s] < e.blkIndent)); ) {
|
|
2778
|
-
if (e.level >=
|
|
2787
|
+
if (e.level >= o) {
|
|
2779
2788
|
e.line = t;
|
|
2780
2789
|
break;
|
|
2781
2790
|
}
|
|
2782
2791
|
const l = e.line;
|
|
2783
2792
|
let c = !1;
|
|
2784
|
-
for (let
|
|
2785
|
-
if (c =
|
|
2793
|
+
for (let h = 0; h < r; h++)
|
|
2794
|
+
if (c = i[h](e, s, t, !1), c) {
|
|
2786
2795
|
if (l >= e.line) throw new Error("block rule didn't increment state.line");
|
|
2787
2796
|
break;
|
|
2788
2797
|
}
|
|
@@ -2793,14 +2802,14 @@ var ie = [
|
|
|
2793
2802
|
/**
|
|
2794
2803
|
* Process input string and push block tokens into `outTokens`
|
|
2795
2804
|
*/
|
|
2796
|
-
parse(e, n, t,
|
|
2805
|
+
parse(e, n, t, i) {
|
|
2797
2806
|
if (!e) return;
|
|
2798
|
-
const r = new this.State(e, n, t,
|
|
2807
|
+
const r = new this.State(e, n, t, i);
|
|
2799
2808
|
this.tokenize(r, r.line, r.lineMax);
|
|
2800
2809
|
}
|
|
2801
|
-
},
|
|
2802
|
-
constructor(e, n, t,
|
|
2803
|
-
R(this, "pos", 0), R(this, "level", 0), R(this, "pending", ""), R(this, "pendingLevel", 0), R(this, "cache", {}), R(this, "backticks", {}), R(this, "backticksScanned", !1), R(this, "linkLevel", 0), R(this, "delimiters", []), R(this, "_prev_delimiters", []), R(this, "Token", W), this.src = e, this.env = t, this.md = n, this.tokens =
|
|
2810
|
+
}, Cn = class {
|
|
2811
|
+
constructor(e, n, t, i) {
|
|
2812
|
+
R(this, "pos", 0), R(this, "level", 0), R(this, "pending", ""), R(this, "pendingLevel", 0), R(this, "cache", {}), R(this, "backticks", {}), R(this, "backticksScanned", !1), R(this, "linkLevel", 0), R(this, "delimiters", []), R(this, "_prev_delimiters", []), R(this, "Token", W), this.src = e, this.env = t, this.md = n, this.tokens = i, this.tokens_meta = Array(i.length), this.posMax = this.src.length;
|
|
2804
2813
|
}
|
|
2805
2814
|
pushPending() {
|
|
2806
2815
|
const e = new W("text", "", 0);
|
|
@@ -2808,12 +2817,12 @@ var ie = [
|
|
|
2808
2817
|
}
|
|
2809
2818
|
push(e, n, t) {
|
|
2810
2819
|
this.pending && this.pushPending();
|
|
2811
|
-
const
|
|
2820
|
+
const i = new W(e, n, t);
|
|
2812
2821
|
let r;
|
|
2813
|
-
return t < 0 && (this.level--, this.delimiters = this._prev_delimiters.pop()),
|
|
2822
|
+
return t < 0 && (this.level--, this.delimiters = this._prev_delimiters.pop()), i.level = this.level, t > 0 && (this.level++, this._prev_delimiters.push(this.delimiters), this.delimiters = [], r = { delimiters: this.delimiters }), this.pendingLevel = this.level, this.tokens.push(i), this.tokens_meta.push(r), i;
|
|
2814
2823
|
}
|
|
2815
2824
|
scanDelims(e, n) {
|
|
2816
|
-
const t = this.posMax,
|
|
2825
|
+
const t = this.posMax, i = this.src.charCodeAt(e);
|
|
2817
2826
|
let r;
|
|
2818
2827
|
if (e === 0) r = 32;
|
|
2819
2828
|
else if (e === 1)
|
|
@@ -2822,23 +2831,23 @@ var ie = [
|
|
|
2822
2831
|
const a = this.src.charCodeAt(e - 2);
|
|
2823
2832
|
r = (a & 64512) === 55296 ? 65536 + (a - 55296 << 10) + (r - 56320) : 65533;
|
|
2824
2833
|
} else (r & 64512) === 55296 && (r = 65533);
|
|
2825
|
-
let
|
|
2826
|
-
for (;
|
|
2827
|
-
const s =
|
|
2828
|
-
let u =
|
|
2834
|
+
let o = e;
|
|
2835
|
+
for (; o < t && this.src.charCodeAt(o) === i; ) o++;
|
|
2836
|
+
const s = o - e;
|
|
2837
|
+
let u = o < t ? this.src.charCodeAt(o) : 32;
|
|
2829
2838
|
if ((u & 64512) === 55296) {
|
|
2830
|
-
const a = this.src.charCodeAt(
|
|
2839
|
+
const a = this.src.charCodeAt(o + 1);
|
|
2831
2840
|
u = (a & 64512) === 56320 ? 65536 + (u - 55296 << 10) + (a - 56320) : 65533;
|
|
2832
2841
|
} else (u & 64512) === 56320 && (u = 65533);
|
|
2833
|
-
const l = ee(r) || Q(r), c = ee(u) || Q(u),
|
|
2842
|
+
const l = ee(r) || Q(r), c = ee(u) || Q(u), h = V(r), f = V(u), d = !f && (!c || h || l), p = !h && (!l || f || c);
|
|
2834
2843
|
return {
|
|
2835
|
-
can_open:
|
|
2836
|
-
can_close: p && (n || !
|
|
2844
|
+
can_open: d && (n || !p || l),
|
|
2845
|
+
can_close: p && (n || !d || c),
|
|
2837
2846
|
length: s
|
|
2838
2847
|
};
|
|
2839
2848
|
}
|
|
2840
2849
|
};
|
|
2841
|
-
function
|
|
2850
|
+
function Dr(e) {
|
|
2842
2851
|
switch (e) {
|
|
2843
2852
|
case 10:
|
|
2844
2853
|
case 33:
|
|
@@ -2868,53 +2877,53 @@ function Cr(e) {
|
|
|
2868
2877
|
return !1;
|
|
2869
2878
|
}
|
|
2870
2879
|
}
|
|
2871
|
-
function
|
|
2880
|
+
function wr(e, n) {
|
|
2872
2881
|
let t = e.pos;
|
|
2873
|
-
for (; t < e.posMax && !
|
|
2882
|
+
for (; t < e.posMax && !Dr(e.src.charCodeAt(t)); ) t++;
|
|
2874
2883
|
return t === e.pos ? !1 : (n || (e.pending += e.src.slice(e.pos, t)), e.pos = t, !0);
|
|
2875
2884
|
}
|
|
2876
|
-
function
|
|
2885
|
+
function Ar(e) {
|
|
2877
2886
|
return e >= 65 && e <= 90 || e >= 97 && e <= 122;
|
|
2878
2887
|
}
|
|
2879
|
-
function
|
|
2888
|
+
function Er(e) {
|
|
2880
2889
|
return e >= 65 && e <= 90 || e >= 97 && e <= 122 || e >= 48 && e <= 57 || e === 43 || e === 45 || e === 46;
|
|
2881
2890
|
}
|
|
2882
|
-
function
|
|
2891
|
+
function Fr(e, n) {
|
|
2883
2892
|
if (!e.md.options.linkify || e.linkLevel > 0) return !1;
|
|
2884
|
-
const t = e.pos,
|
|
2885
|
-
if (t + 3 >
|
|
2893
|
+
const t = e.pos, i = e.posMax;
|
|
2894
|
+
if (t + 3 > i || e.src.charCodeAt(t) !== 58 || e.src.charCodeAt(t + 1) !== 47 || e.src.charCodeAt(t + 2) !== 47) return !1;
|
|
2886
2895
|
const r = t - Math.min(10, e.pending.length, t);
|
|
2887
|
-
let
|
|
2888
|
-
for (;
|
|
2889
|
-
if (
|
|
2890
|
-
const s = t -
|
|
2896
|
+
let o = t;
|
|
2897
|
+
for (; o > r && Er(e.src.charCodeAt(o - 1)); ) o--;
|
|
2898
|
+
if (o === t || !Ar(e.src.charCodeAt(o))) return !1;
|
|
2899
|
+
const s = t - o, u = e.md.linkify.matchAtStart(e.src.slice(o));
|
|
2891
2900
|
if (!u) return !1;
|
|
2892
2901
|
let l = u.url;
|
|
2893
2902
|
if (l.length <= s) return !1;
|
|
2894
2903
|
let c = l.length;
|
|
2895
2904
|
for (; c > 0 && l.charCodeAt(c - 1) === 42; ) c--;
|
|
2896
2905
|
c !== l.length && (l = l.slice(0, c));
|
|
2897
|
-
const
|
|
2898
|
-
if (!e.md.validateLink(
|
|
2906
|
+
const h = e.md.normalizeLink(l);
|
|
2907
|
+
if (!e.md.validateLink(h)) return !1;
|
|
2899
2908
|
if (!n) {
|
|
2900
2909
|
e.pending = e.pending.slice(0, -s);
|
|
2901
|
-
const
|
|
2902
|
-
|
|
2903
|
-
const
|
|
2904
|
-
|
|
2910
|
+
const f = e.push("link_open", "a", 1);
|
|
2911
|
+
f.attrs = [["href", h]], f.markup = "linkify", f.info = "auto";
|
|
2912
|
+
const d = e.push("text", "", 0);
|
|
2913
|
+
d.content = e.md.normalizeLinkText(l);
|
|
2905
2914
|
const p = e.push("link_close", "a", -1);
|
|
2906
2915
|
p.markup = "linkify", p.info = "auto";
|
|
2907
2916
|
}
|
|
2908
2917
|
return e.pos += l.length - s, !0;
|
|
2909
2918
|
}
|
|
2910
|
-
function
|
|
2919
|
+
function yr(e, n) {
|
|
2911
2920
|
let t = e.pos;
|
|
2912
2921
|
if (e.src.charCodeAt(t) !== 10) return !1;
|
|
2913
|
-
const
|
|
2914
|
-
if (!n) if (
|
|
2915
|
-
let
|
|
2916
|
-
for (;
|
|
2917
|
-
e.pending = e.pending.slice(0,
|
|
2922
|
+
const i = e.pending.length - 1, r = e.posMax;
|
|
2923
|
+
if (!n) if (i >= 0 && e.pending.charCodeAt(i) === 32) if (i >= 1 && e.pending.charCodeAt(i - 1) === 32) {
|
|
2924
|
+
let o = i - 1;
|
|
2925
|
+
for (; o >= 1 && e.pending.charCodeAt(o - 1) === 32; ) o--;
|
|
2926
|
+
e.pending = e.pending.slice(0, o), e.push("hardbreak", "br", 0);
|
|
2918
2927
|
} else
|
|
2919
2928
|
e.pending = e.pending.slice(0, -1), e.push("softbreak", "br", 0);
|
|
2920
2929
|
else e.push("softbreak", "br", 0);
|
|
@@ -2926,13 +2935,13 @@ for (let e = 0; e < 256; e++) Ce.push(0);
|
|
|
2926
2935
|
"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach(function(e) {
|
|
2927
2936
|
Ce[e.charCodeAt(0)] = 1;
|
|
2928
2937
|
});
|
|
2929
|
-
function
|
|
2938
|
+
function Br(e, n) {
|
|
2930
2939
|
let t = e.pos;
|
|
2931
|
-
const
|
|
2932
|
-
if (e.src.charCodeAt(t) !== 92 || (t++, t >=
|
|
2940
|
+
const i = e.posMax;
|
|
2941
|
+
if (e.src.charCodeAt(t) !== 92 || (t++, t >= i)) return !1;
|
|
2933
2942
|
let r = e.src.charCodeAt(t);
|
|
2934
2943
|
if (r === 10) {
|
|
2935
|
-
for (n || e.push("hardbreak", "br", 0), t++; t <
|
|
2944
|
+
for (n || e.push("hardbreak", "br", 0), t++; t < i && (r = e.src.charCodeAt(t), !!E(r)); )
|
|
2936
2945
|
t++;
|
|
2937
2946
|
return e.pos = t, !0;
|
|
2938
2947
|
}
|
|
@@ -2943,66 +2952,66 @@ function Fr(e, n) {
|
|
|
2943
2952
|
}
|
|
2944
2953
|
return e.pos = t, !0;
|
|
2945
2954
|
}
|
|
2946
|
-
let
|
|
2947
|
-
if (r >= 55296 && r <= 56319 && t + 1 <
|
|
2955
|
+
let o = e.src[t];
|
|
2956
|
+
if (r >= 55296 && r <= 56319 && t + 1 < i) {
|
|
2948
2957
|
const u = e.src.charCodeAt(t + 1);
|
|
2949
|
-
u >= 56320 && u <= 57343 && (
|
|
2958
|
+
u >= 56320 && u <= 57343 && (o += e.src[t + 1], t++);
|
|
2950
2959
|
}
|
|
2951
|
-
const s = "\\" +
|
|
2960
|
+
const s = "\\" + o;
|
|
2952
2961
|
if (!n) {
|
|
2953
2962
|
const u = e.push("text_special", "", 0);
|
|
2954
|
-
r < 256 && Ce[r] !== 0 ? u.content =
|
|
2963
|
+
r < 256 && Ce[r] !== 0 ? u.content = o : u.content = s, u.markup = s, u.info = "escape";
|
|
2955
2964
|
}
|
|
2956
2965
|
return e.pos = t + 1, !0;
|
|
2957
2966
|
}
|
|
2958
|
-
function
|
|
2967
|
+
function Tr(e) {
|
|
2959
2968
|
const n = {};
|
|
2960
2969
|
let t = 0;
|
|
2961
2970
|
for (; (t = e.indexOf("`", t)) !== -1; ) {
|
|
2962
|
-
const
|
|
2971
|
+
const i = t;
|
|
2963
2972
|
for (; e.charCodeAt(++t) === 96; ) ;
|
|
2964
|
-
n[t -
|
|
2973
|
+
n[t - i] = i;
|
|
2965
2974
|
}
|
|
2966
2975
|
return n;
|
|
2967
2976
|
}
|
|
2968
|
-
function
|
|
2977
|
+
function zr(e, n) {
|
|
2969
2978
|
var t;
|
|
2970
|
-
const
|
|
2971
|
-
if (e.src.charCodeAt(
|
|
2979
|
+
const i = e.pos;
|
|
2980
|
+
if (e.src.charCodeAt(i) !== 96) return !1;
|
|
2972
2981
|
const r = e.posMax;
|
|
2973
|
-
let
|
|
2974
|
-
for (;
|
|
2975
|
-
const s = e.src.slice(
|
|
2976
|
-
if (e.backticksScanned || (e.backticks =
|
|
2977
|
-
let l =
|
|
2982
|
+
let o = i + 1;
|
|
2983
|
+
for (; o < r && e.src.charCodeAt(o) === 96; ) o++;
|
|
2984
|
+
const s = e.src.slice(i, o), u = s.length;
|
|
2985
|
+
if (e.backticksScanned || (e.backticks = Tr(e.src), e.backticksScanned = !0), ((t = e.backticks[u]) !== null && t !== void 0 ? t : -1) >= o) {
|
|
2986
|
+
let l = o, c;
|
|
2978
2987
|
for (; (c = e.src.indexOf("`", l)) !== -1 && c < r; ) {
|
|
2979
2988
|
for (l = c + 1; e.src.charCodeAt(l) === 96; ) l++;
|
|
2980
2989
|
if (l > r) break;
|
|
2981
2990
|
if (l - c === u) {
|
|
2982
2991
|
if (!n) {
|
|
2983
|
-
const
|
|
2984
|
-
|
|
2985
|
-
let
|
|
2986
|
-
|
|
2992
|
+
const h = e.push("code_inline", "code", 0);
|
|
2993
|
+
h.markup = s;
|
|
2994
|
+
let f = e.src.slice(o, c).replace(/\n/g, " ");
|
|
2995
|
+
f.startsWith(" ") && f.endsWith(" ") && /[^ ]/.test(f) && (f = f.slice(1, -1)), h.content = f;
|
|
2987
2996
|
}
|
|
2988
2997
|
return e.pos = l, !0;
|
|
2989
2998
|
}
|
|
2990
2999
|
}
|
|
2991
3000
|
}
|
|
2992
|
-
return n || (e.pending += s), e.pos =
|
|
3001
|
+
return n || (e.pending += s), e.pos = o, !0;
|
|
2993
3002
|
}
|
|
2994
|
-
function
|
|
2995
|
-
const t = e.pos,
|
|
2996
|
-
if (n ||
|
|
3003
|
+
function Sr(e, n) {
|
|
3004
|
+
const t = e.pos, i = e.src.charCodeAt(t);
|
|
3005
|
+
if (n || i !== 126) return !1;
|
|
2997
3006
|
const r = e.scanDelims(e.pos, !0);
|
|
2998
|
-
let
|
|
2999
|
-
const s = String.fromCharCode(
|
|
3000
|
-
if (
|
|
3007
|
+
let o = r.length;
|
|
3008
|
+
const s = String.fromCharCode(i);
|
|
3009
|
+
if (o < 2) return !1;
|
|
3001
3010
|
let u;
|
|
3002
|
-
|
|
3003
|
-
for (let l = 0; l <
|
|
3011
|
+
o % 2 && (u = e.push("text", "", 0), u.content = s, o--);
|
|
3012
|
+
for (let l = 0; l < o; l += 2)
|
|
3004
3013
|
u = e.push("text", "", 0), u.content = s + s, e.delimiters.push({
|
|
3005
|
-
marker:
|
|
3014
|
+
marker: i,
|
|
3006
3015
|
length: 0,
|
|
3007
3016
|
token: e.tokens.length - 1,
|
|
3008
3017
|
end: -1,
|
|
@@ -3011,43 +3020,43 @@ function Tr(e, n) {
|
|
|
3011
3020
|
});
|
|
3012
3021
|
return e.pos += r.length, !0;
|
|
3013
3022
|
}
|
|
3014
|
-
function
|
|
3023
|
+
function Ue(e, n) {
|
|
3015
3024
|
let t;
|
|
3016
|
-
const
|
|
3017
|
-
for (let
|
|
3018
|
-
const s = n[
|
|
3025
|
+
const i = [], r = n.length;
|
|
3026
|
+
for (let o = 0; o < r; o++) {
|
|
3027
|
+
const s = n[o];
|
|
3019
3028
|
if (s.marker !== 126 || s.end === -1) continue;
|
|
3020
3029
|
const u = n[s.end];
|
|
3021
|
-
t = e.tokens[s.token], t.type = "s_open", t.tag = "s", t.nesting = 1, t.markup = "~~", t.content = "", t = e.tokens[u.token], t.type = "s_close", t.tag = "s", t.nesting = -1, t.markup = "~~", t.content = "", e.tokens[u.token - 1].type === "text" && e.tokens[u.token - 1].content === "~" &&
|
|
3030
|
+
t = e.tokens[s.token], t.type = "s_open", t.tag = "s", t.nesting = 1, t.markup = "~~", t.content = "", t = e.tokens[u.token], t.type = "s_close", t.tag = "s", t.nesting = -1, t.markup = "~~", t.content = "", e.tokens[u.token - 1].type === "text" && e.tokens[u.token - 1].content === "~" && i.push(u.token - 1);
|
|
3022
3031
|
}
|
|
3023
|
-
for (;
|
|
3024
|
-
const
|
|
3025
|
-
let s =
|
|
3032
|
+
for (; i.length; ) {
|
|
3033
|
+
const o = i.pop();
|
|
3034
|
+
let s = o + 1;
|
|
3026
3035
|
for (; s < e.tokens.length && e.tokens[s].type === "s_close"; ) s++;
|
|
3027
|
-
s--,
|
|
3036
|
+
s--, o !== s && (t = e.tokens[s], e.tokens[s] = e.tokens[o], e.tokens[o] = t);
|
|
3028
3037
|
}
|
|
3029
3038
|
}
|
|
3030
|
-
function
|
|
3039
|
+
function jr(e) {
|
|
3031
3040
|
const n = e.tokens_meta, t = e.tokens_meta.length;
|
|
3032
|
-
|
|
3041
|
+
Ue(e, e.delimiters);
|
|
3033
3042
|
for (let r = 0; r < t; r++) {
|
|
3034
|
-
var
|
|
3035
|
-
const
|
|
3036
|
-
|
|
3043
|
+
var i;
|
|
3044
|
+
const o = (i = n[r]) === null || i === void 0 ? void 0 : i.delimiters;
|
|
3045
|
+
o && Ue(e, o);
|
|
3037
3046
|
}
|
|
3038
3047
|
}
|
|
3039
|
-
var
|
|
3040
|
-
tokenize:
|
|
3041
|
-
postProcess:
|
|
3048
|
+
var vn = {
|
|
3049
|
+
tokenize: Sr,
|
|
3050
|
+
postProcess: jr
|
|
3042
3051
|
};
|
|
3043
|
-
function
|
|
3044
|
-
const t = e.pos,
|
|
3045
|
-
if (n ||
|
|
3046
|
-
const r = e.scanDelims(e.pos,
|
|
3047
|
-
for (let
|
|
3052
|
+
function Ir(e, n) {
|
|
3053
|
+
const t = e.pos, i = e.src.charCodeAt(t);
|
|
3054
|
+
if (n || i !== 95 && i !== 42) return !1;
|
|
3055
|
+
const r = e.scanDelims(e.pos, i === 42);
|
|
3056
|
+
for (let o = 0; o < r.length; o++) {
|
|
3048
3057
|
const s = e.push("text", "", 0);
|
|
3049
|
-
s.content = String.fromCharCode(
|
|
3050
|
-
marker:
|
|
3058
|
+
s.content = String.fromCharCode(i), e.delimiters.push({
|
|
3059
|
+
marker: i,
|
|
3051
3060
|
length: r.length,
|
|
3052
3061
|
token: e.tokens.length - 1,
|
|
3053
3062
|
end: -1,
|
|
@@ -3057,188 +3066,188 @@ function Sr(e, n) {
|
|
|
3057
3066
|
}
|
|
3058
3067
|
return e.pos += r.length, !0;
|
|
3059
3068
|
}
|
|
3060
|
-
function
|
|
3069
|
+
function Ze(e, n) {
|
|
3061
3070
|
const t = n.length;
|
|
3062
|
-
for (let
|
|
3063
|
-
const r = n[
|
|
3071
|
+
for (let i = t - 1; i >= 0; i--) {
|
|
3072
|
+
const r = n[i];
|
|
3064
3073
|
if (r.marker !== 95 && r.marker !== 42 || r.end === -1) continue;
|
|
3065
|
-
const
|
|
3074
|
+
const o = n[r.end], s = i > 0 && n[i - 1].end === r.end + 1 && n[i - 1].marker === r.marker && n[i - 1].token === r.token - 1 && n[r.end + 1].token === o.token + 1, u = String.fromCharCode(r.marker), l = e.tokens[r.token];
|
|
3066
3075
|
l.type = s ? "strong_open" : "em_open", l.tag = s ? "strong" : "em", l.nesting = 1, l.markup = s ? u + u : u, l.content = "";
|
|
3067
|
-
const c = e.tokens[
|
|
3068
|
-
c.type = s ? "strong_close" : "em_close", c.tag = s ? "strong" : "em", c.nesting = -1, c.markup = s ? u + u : u, c.content = "", s && (e.tokens[n[
|
|
3076
|
+
const c = e.tokens[o.token];
|
|
3077
|
+
c.type = s ? "strong_close" : "em_close", c.tag = s ? "strong" : "em", c.nesting = -1, c.markup = s ? u + u : u, c.content = "", s && (e.tokens[n[i - 1].token].content = "", e.tokens[n[r.end + 1].token].content = "", i--);
|
|
3069
3078
|
}
|
|
3070
3079
|
}
|
|
3071
|
-
function
|
|
3080
|
+
function Jr(e) {
|
|
3072
3081
|
const n = e.tokens_meta, t = e.tokens_meta.length;
|
|
3073
|
-
|
|
3082
|
+
Ze(e, e.delimiters);
|
|
3074
3083
|
for (let r = 0; r < t; r++) {
|
|
3075
|
-
var
|
|
3076
|
-
const
|
|
3077
|
-
|
|
3084
|
+
var i;
|
|
3085
|
+
const o = (i = n[r]) === null || i === void 0 ? void 0 : i.delimiters;
|
|
3086
|
+
o && Ze(e, o);
|
|
3078
3087
|
}
|
|
3079
3088
|
}
|
|
3080
3089
|
var Dn = {
|
|
3081
|
-
tokenize:
|
|
3082
|
-
postProcess:
|
|
3090
|
+
tokenize: Ir,
|
|
3091
|
+
postProcess: Jr
|
|
3083
3092
|
};
|
|
3084
|
-
function
|
|
3085
|
-
let t,
|
|
3093
|
+
function Mr(e, n) {
|
|
3094
|
+
let t, i, r, o, s = "", u = "", l = e.pos, c = !0;
|
|
3086
3095
|
if (e.src.charCodeAt(e.pos) !== 91) return !1;
|
|
3087
|
-
const
|
|
3096
|
+
const h = e.pos, f = e.posMax, d = e.pos + 1, p = e.md.helpers.parseLinkLabel(e, e.pos, !0);
|
|
3088
3097
|
if (p < 0) return !1;
|
|
3089
3098
|
let a = p + 1;
|
|
3090
|
-
if (a <
|
|
3091
|
-
for (c = !1, a++; a <
|
|
3099
|
+
if (a < f && e.src.charCodeAt(a) === 40) {
|
|
3100
|
+
for (c = !1, a++; a < f && (t = e.src.charCodeAt(a), !(!E(t) && t !== 10)); a++)
|
|
3092
3101
|
;
|
|
3093
|
-
if (a >=
|
|
3102
|
+
if (a >= f) return !1;
|
|
3094
3103
|
if (l = a, r = e.md.helpers.parseLinkDestination(e.src, a, e.posMax), r.ok) {
|
|
3095
|
-
for (s = e.md.normalizeLink(r.str), e.md.validateLink(s) ? a = r.pos : s = "", l = a; a <
|
|
3104
|
+
for (s = e.md.normalizeLink(r.str), e.md.validateLink(s) ? a = r.pos : s = "", l = a; a < f && (t = e.src.charCodeAt(a), !(!E(t) && t !== 10)); a++)
|
|
3096
3105
|
;
|
|
3097
|
-
if (r = e.md.helpers.parseLinkTitle(e.src, a, e.posMax), a <
|
|
3098
|
-
for (u = r.str, a = r.pos; a <
|
|
3106
|
+
if (r = e.md.helpers.parseLinkTitle(e.src, a, e.posMax), a < f && l !== a && r.ok)
|
|
3107
|
+
for (u = r.str, a = r.pos; a < f && (t = e.src.charCodeAt(a), !(!E(t) && t !== 10)); a++)
|
|
3099
3108
|
;
|
|
3100
3109
|
}
|
|
3101
|
-
(a >=
|
|
3110
|
+
(a >= f || e.src.charCodeAt(a) !== 41) && (c = !0), a++;
|
|
3102
3111
|
}
|
|
3103
3112
|
if (c) {
|
|
3104
3113
|
if (typeof e.env.references > "u") return !1;
|
|
3105
|
-
if (a <
|
|
3106
|
-
return e.pos =
|
|
3107
|
-
s =
|
|
3114
|
+
if (a < f && e.src.charCodeAt(a) === 91 ? (l = a + 1, a = e.md.helpers.parseLinkLabel(e, a), a >= 0 ? i = e.src.slice(l, a++) : a = p + 1) : a = p + 1, i || (i = e.src.slice(d, p)), i = ue(i), o = e.env.references[i], !o)
|
|
3115
|
+
return e.pos = h, !1;
|
|
3116
|
+
s = o.href, u = o.title;
|
|
3108
3117
|
}
|
|
3109
3118
|
if (!n) {
|
|
3110
|
-
e.pos =
|
|
3119
|
+
e.pos = d, e.posMax = p;
|
|
3111
3120
|
const b = e.push("link_open", "a", 1), g = [["href", s]];
|
|
3112
|
-
if (b.attrs = g, u && g.push(["title", u]),
|
|
3113
|
-
const
|
|
3114
|
-
|
|
3121
|
+
if (b.attrs = g, u && g.push(["title", u]), i) {
|
|
3122
|
+
const x = /* @__PURE__ */ Object.create(null);
|
|
3123
|
+
x.label = i, b.meta = x;
|
|
3115
3124
|
}
|
|
3116
3125
|
e.linkLevel++, e.md.inline.tokenize(e), e.linkLevel--, e.push("link_close", "a", -1);
|
|
3117
3126
|
}
|
|
3118
|
-
return e.pos = a, e.posMax =
|
|
3127
|
+
return e.pos = a, e.posMax = f, !0;
|
|
3119
3128
|
}
|
|
3120
|
-
function
|
|
3121
|
-
let t,
|
|
3122
|
-
const
|
|
3129
|
+
function Pr(e, n) {
|
|
3130
|
+
let t, i, r, o, s, u, l, c, h = "";
|
|
3131
|
+
const f = e.pos, d = e.posMax;
|
|
3123
3132
|
if (e.src.charCodeAt(e.pos) !== 33 || e.src.charCodeAt(e.pos + 1) !== 91) return !1;
|
|
3124
3133
|
const p = e.pos + 2, a = e.md.helpers.parseLinkLabel(e, e.pos + 1, !1);
|
|
3125
3134
|
if (a < 0) return !1;
|
|
3126
|
-
if (
|
|
3127
|
-
for (
|
|
3135
|
+
if (o = a + 1, o < d && e.src.charCodeAt(o) === 40) {
|
|
3136
|
+
for (o++; o < d && (t = e.src.charCodeAt(o), !(!E(t) && t !== 10)); o++)
|
|
3128
3137
|
;
|
|
3129
|
-
if (
|
|
3130
|
-
for (c =
|
|
3138
|
+
if (o >= d) return !1;
|
|
3139
|
+
for (c = o, u = e.md.helpers.parseLinkDestination(e.src, o, e.posMax), u.ok && (h = e.md.normalizeLink(u.str), e.md.validateLink(h) ? o = u.pos : h = ""), c = o; o < d && (t = e.src.charCodeAt(o), !(!E(t) && t !== 10)); o++)
|
|
3131
3140
|
;
|
|
3132
|
-
if (u = e.md.helpers.parseLinkTitle(e.src,
|
|
3133
|
-
for (l = u.str,
|
|
3141
|
+
if (u = e.md.helpers.parseLinkTitle(e.src, o, e.posMax), o < d && c !== o && u.ok)
|
|
3142
|
+
for (l = u.str, o = u.pos; o < d && (t = e.src.charCodeAt(o), !(!E(t) && t !== 10)); o++)
|
|
3134
3143
|
;
|
|
3135
3144
|
else l = "";
|
|
3136
|
-
if (
|
|
3137
|
-
return e.pos =
|
|
3138
|
-
|
|
3145
|
+
if (o >= d || e.src.charCodeAt(o) !== 41)
|
|
3146
|
+
return e.pos = f, !1;
|
|
3147
|
+
o++;
|
|
3139
3148
|
} else {
|
|
3140
3149
|
if (typeof e.env.references > "u") return !1;
|
|
3141
|
-
if (
|
|
3142
|
-
return e.pos =
|
|
3143
|
-
|
|
3150
|
+
if (o < d && e.src.charCodeAt(o) === 91 ? (c = o + 1, o = e.md.helpers.parseLinkLabel(e, o), o >= 0 ? r = e.src.slice(c, o++) : o = a + 1) : o = a + 1, r || (r = e.src.slice(p, a)), r = ue(r), s = e.env.references[r], !s)
|
|
3151
|
+
return e.pos = f, !1;
|
|
3152
|
+
h = s.href, l = s.title;
|
|
3144
3153
|
}
|
|
3145
3154
|
if (!n) {
|
|
3146
|
-
|
|
3155
|
+
i = e.src.slice(p, a);
|
|
3147
3156
|
const b = [];
|
|
3148
|
-
e.md.inline.parse(
|
|
3149
|
-
const g = e.push("image", "img", 0),
|
|
3150
|
-
if (g.attrs =
|
|
3151
|
-
const
|
|
3152
|
-
|
|
3157
|
+
e.md.inline.parse(i, e.md, e.env, b);
|
|
3158
|
+
const g = e.push("image", "img", 0), x = [["src", h], ["alt", ""]];
|
|
3159
|
+
if (g.attrs = x, g.children = b, g.content = i, l && x.push(["title", l]), r) {
|
|
3160
|
+
const C = /* @__PURE__ */ Object.create(null);
|
|
3161
|
+
C.label = r, g.meta = C;
|
|
3153
3162
|
}
|
|
3154
3163
|
}
|
|
3155
|
-
return e.pos =
|
|
3164
|
+
return e.pos = o, e.posMax = d, !0;
|
|
3156
3165
|
}
|
|
3157
|
-
var
|
|
3158
|
-
function
|
|
3166
|
+
var Lr = /^([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/, Nr = /^([a-zA-Z][a-zA-Z0-9+.-]{1,31}):([^<>\x00-\x20]*)$/;
|
|
3167
|
+
function Or(e, n) {
|
|
3159
3168
|
let t = e.pos;
|
|
3160
3169
|
if (e.src.charCodeAt(t) !== 60) return !1;
|
|
3161
|
-
const
|
|
3170
|
+
const i = e.pos, r = e.posMax;
|
|
3162
3171
|
for (; ; ) {
|
|
3163
3172
|
if (++t >= r) return !1;
|
|
3164
3173
|
const s = e.src.charCodeAt(t);
|
|
3165
3174
|
if (s === 60) return !1;
|
|
3166
3175
|
if (s === 62) break;
|
|
3167
3176
|
}
|
|
3168
|
-
const
|
|
3169
|
-
if (
|
|
3170
|
-
const s = e.md.normalizeLink(
|
|
3177
|
+
const o = e.src.slice(i + 1, t);
|
|
3178
|
+
if (Nr.test(o)) {
|
|
3179
|
+
const s = e.md.normalizeLink(o);
|
|
3171
3180
|
if (!e.md.validateLink(s)) return !1;
|
|
3172
3181
|
if (!n) {
|
|
3173
3182
|
const u = e.push("link_open", "a", 1);
|
|
3174
3183
|
u.attrs = [["href", s]], u.markup = "autolink", u.info = "auto";
|
|
3175
3184
|
const l = e.push("text", "", 0);
|
|
3176
|
-
l.content = e.md.normalizeLinkText(
|
|
3185
|
+
l.content = e.md.normalizeLinkText(o);
|
|
3177
3186
|
const c = e.push("link_close", "a", -1);
|
|
3178
3187
|
c.markup = "autolink", c.info = "auto";
|
|
3179
3188
|
}
|
|
3180
|
-
return e.pos +=
|
|
3189
|
+
return e.pos += o.length + 2, !0;
|
|
3181
3190
|
}
|
|
3182
|
-
if (
|
|
3183
|
-
const s = e.md.normalizeLink(`mailto:${
|
|
3191
|
+
if (Lr.test(o)) {
|
|
3192
|
+
const s = e.md.normalizeLink(`mailto:${o}`);
|
|
3184
3193
|
if (!e.md.validateLink(s)) return !1;
|
|
3185
3194
|
if (!n) {
|
|
3186
3195
|
const u = e.push("link_open", "a", 1);
|
|
3187
3196
|
u.attrs = [["href", s]], u.markup = "autolink", u.info = "auto";
|
|
3188
3197
|
const l = e.push("text", "", 0);
|
|
3189
|
-
l.content = e.md.normalizeLinkText(
|
|
3198
|
+
l.content = e.md.normalizeLinkText(o);
|
|
3190
3199
|
const c = e.push("link_close", "a", -1);
|
|
3191
3200
|
c.markup = "autolink", c.info = "auto";
|
|
3192
3201
|
}
|
|
3193
|
-
return e.pos +=
|
|
3202
|
+
return e.pos += o.length + 2, !0;
|
|
3194
3203
|
}
|
|
3195
3204
|
return !1;
|
|
3196
3205
|
}
|
|
3197
|
-
function
|
|
3206
|
+
function $r(e) {
|
|
3198
3207
|
return /^<a[>\s]/i.test(e);
|
|
3199
3208
|
}
|
|
3200
|
-
function
|
|
3209
|
+
function qr(e) {
|
|
3201
3210
|
return /^<\/a\s*>/i.test(e);
|
|
3202
3211
|
}
|
|
3203
|
-
function
|
|
3212
|
+
function Ur(e) {
|
|
3204
3213
|
const n = e | 32;
|
|
3205
3214
|
return n >= 97 && n <= 122;
|
|
3206
3215
|
}
|
|
3207
|
-
function
|
|
3216
|
+
function Zr(e, n) {
|
|
3208
3217
|
if (!e.md.options.html) return !1;
|
|
3209
|
-
const t = e.posMax,
|
|
3210
|
-
if (e.src.charCodeAt(
|
|
3211
|
-
const r = e.src.charCodeAt(
|
|
3212
|
-
if (r !== 33 && r !== 63 && r !== 47 && !
|
|
3213
|
-
const
|
|
3214
|
-
if (!
|
|
3218
|
+
const t = e.posMax, i = e.pos;
|
|
3219
|
+
if (e.src.charCodeAt(i) !== 60 || i + 2 >= t) return !1;
|
|
3220
|
+
const r = e.src.charCodeAt(i + 1);
|
|
3221
|
+
if (r !== 33 && r !== 63 && r !== 47 && !Ur(r)) return !1;
|
|
3222
|
+
const o = e.src.slice(i).match(mr);
|
|
3223
|
+
if (!o) return !1;
|
|
3215
3224
|
if (!n) {
|
|
3216
3225
|
const s = e.push("html_inline", "", 0);
|
|
3217
|
-
s.content =
|
|
3226
|
+
s.content = o[0], $r(s.content) && e.linkLevel++, qr(s.content) && e.linkLevel--;
|
|
3218
3227
|
}
|
|
3219
|
-
return e.pos +=
|
|
3228
|
+
return e.pos += o[0].length, !0;
|
|
3220
3229
|
}
|
|
3221
|
-
var
|
|
3222
|
-
function
|
|
3223
|
-
const t = e.pos,
|
|
3224
|
-
if (e.src.charCodeAt(t) !== 38 || t + 1 >=
|
|
3230
|
+
var Wr = /^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i, Xr = /^&([a-z][a-z0-9]{1,31});/i;
|
|
3231
|
+
function Yr(e, n) {
|
|
3232
|
+
const t = e.pos, i = e.posMax;
|
|
3233
|
+
if (e.src.charCodeAt(t) !== 38 || t + 1 >= i) return !1;
|
|
3225
3234
|
if (e.src.charCodeAt(t + 1) === 35) {
|
|
3226
|
-
const r = e.src.slice(t).match(
|
|
3235
|
+
const r = e.src.slice(t).match(Wr);
|
|
3227
3236
|
if (r) {
|
|
3228
3237
|
if (!n) {
|
|
3229
|
-
const
|
|
3230
|
-
s.content = xe(
|
|
3238
|
+
const o = r[1][0].toLowerCase() === "x" ? parseInt(r[1].slice(1), 16) : parseInt(r[1], 10), s = e.push("text_special", "", 0);
|
|
3239
|
+
s.content = xe(o) ? G(o) : G(65533), s.markup = r[0], s.info = "entity";
|
|
3231
3240
|
}
|
|
3232
3241
|
return e.pos += r[0].length, !0;
|
|
3233
3242
|
}
|
|
3234
3243
|
} else {
|
|
3235
|
-
const r = e.src.slice(t).match(
|
|
3244
|
+
const r = e.src.slice(t).match(Xr);
|
|
3236
3245
|
if (r) {
|
|
3237
|
-
const
|
|
3238
|
-
if (
|
|
3246
|
+
const o = en(r[0]);
|
|
3247
|
+
if (o !== r[0]) {
|
|
3239
3248
|
if (!n) {
|
|
3240
3249
|
const s = e.push("text_special", "", 0);
|
|
3241
|
-
s.content =
|
|
3250
|
+
s.content = o, s.markup = r[0], s.info = "entity";
|
|
3242
3251
|
}
|
|
3243
3252
|
return e.pos += r[0].length, !0;
|
|
3244
3253
|
}
|
|
@@ -3246,14 +3255,14 @@ function Wr(e, n) {
|
|
|
3246
3255
|
}
|
|
3247
3256
|
return !1;
|
|
3248
3257
|
}
|
|
3249
|
-
function
|
|
3258
|
+
function We(e) {
|
|
3250
3259
|
const n = {}, t = e.length;
|
|
3251
3260
|
if (!t) return;
|
|
3252
|
-
let
|
|
3253
|
-
const
|
|
3261
|
+
let i = 0, r = -2;
|
|
3262
|
+
const o = [];
|
|
3254
3263
|
for (let s = 0; s < t; s++) {
|
|
3255
3264
|
const u = e[s];
|
|
3256
|
-
if (
|
|
3265
|
+
if (o.push(0), (e[i].marker !== u.marker || r !== u.token - 1) && (i = s), r = u.token, u.length = u.length || 0, !u.close) continue;
|
|
3257
3266
|
n.hasOwnProperty(u.marker) || (n[u.marker] = [
|
|
3258
3267
|
-1,
|
|
3259
3268
|
-1,
|
|
@@ -3263,56 +3272,56 @@ function Ze(e) {
|
|
|
3263
3272
|
-1
|
|
3264
3273
|
]);
|
|
3265
3274
|
const l = n[u.marker][(u.open ? 3 : 0) + u.length % 3];
|
|
3266
|
-
let c =
|
|
3267
|
-
for (; c > l; c -=
|
|
3268
|
-
const
|
|
3269
|
-
if (
|
|
3270
|
-
let
|
|
3271
|
-
if ((
|
|
3272
|
-
const p = c > 0 && !e[c - 1].open ?
|
|
3273
|
-
|
|
3275
|
+
let c = i - o[i] - 1, h = c;
|
|
3276
|
+
for (; c > l; c -= o[c] + 1) {
|
|
3277
|
+
const f = e[c];
|
|
3278
|
+
if (f.marker === u.marker && f.open && f.end < 0) {
|
|
3279
|
+
let d = !1;
|
|
3280
|
+
if ((f.close || u.open) && (f.length + u.length) % 3 === 0 && (f.length % 3 !== 0 || u.length % 3 !== 0) && (d = !0), !d) {
|
|
3281
|
+
const p = c > 0 && !e[c - 1].open ? o[c - 1] + 1 : 0;
|
|
3282
|
+
o[s] = s - c + p, o[c] = p, u.open = !1, f.end = s, f.close = !1, h = -1, r = -2;
|
|
3274
3283
|
break;
|
|
3275
3284
|
}
|
|
3276
3285
|
}
|
|
3277
3286
|
}
|
|
3278
|
-
|
|
3287
|
+
h !== -1 && (n[u.marker][(u.open ? 3 : 0) + (u.length || 0) % 3] = h);
|
|
3279
3288
|
}
|
|
3280
3289
|
}
|
|
3281
|
-
function
|
|
3290
|
+
function Kr(e) {
|
|
3282
3291
|
const n = e.tokens_meta, t = e.tokens_meta.length;
|
|
3283
|
-
|
|
3292
|
+
We(e.delimiters);
|
|
3284
3293
|
for (let r = 0; r < t; r++) {
|
|
3285
|
-
var
|
|
3286
|
-
const
|
|
3287
|
-
|
|
3294
|
+
var i;
|
|
3295
|
+
const o = (i = n[r]) === null || i === void 0 ? void 0 : i.delimiters;
|
|
3296
|
+
o && We(o);
|
|
3288
3297
|
}
|
|
3289
3298
|
}
|
|
3290
|
-
function
|
|
3291
|
-
let n, t,
|
|
3292
|
-
const r = e.tokens,
|
|
3293
|
-
for (n = t = 0; n <
|
|
3294
|
-
r[n].nesting < 0 &&
|
|
3299
|
+
function Hr(e) {
|
|
3300
|
+
let n, t, i = 0;
|
|
3301
|
+
const r = e.tokens, o = e.tokens.length;
|
|
3302
|
+
for (n = t = 0; n < o; n++)
|
|
3303
|
+
r[n].nesting < 0 && i--, r[n].level = i, r[n].nesting > 0 && i++, r[n].type === "text" && n + 1 < o && r[n + 1].type === "text" ? r[n + 1].content = r[n].content + r[n + 1].content : (n !== t && (r[t] = r[n]), t++);
|
|
3295
3304
|
n !== t && (r.length = t);
|
|
3296
3305
|
}
|
|
3297
3306
|
var de = [
|
|
3298
|
-
["text",
|
|
3299
|
-
["linkify",
|
|
3300
|
-
["newline",
|
|
3301
|
-
["escape",
|
|
3302
|
-
["backticks",
|
|
3303
|
-
["strikethrough",
|
|
3307
|
+
["text", wr],
|
|
3308
|
+
["linkify", Fr],
|
|
3309
|
+
["newline", yr],
|
|
3310
|
+
["escape", Br],
|
|
3311
|
+
["backticks", zr],
|
|
3312
|
+
["strikethrough", vn.tokenize],
|
|
3304
3313
|
["emphasis", Dn.tokenize],
|
|
3305
|
-
["link",
|
|
3306
|
-
["image",
|
|
3307
|
-
["autolink",
|
|
3308
|
-
["html_inline",
|
|
3309
|
-
["entity",
|
|
3314
|
+
["link", Mr],
|
|
3315
|
+
["image", Pr],
|
|
3316
|
+
["autolink", Or],
|
|
3317
|
+
["html_inline", Zr],
|
|
3318
|
+
["entity", Yr]
|
|
3310
3319
|
], _e = [
|
|
3311
|
-
["balance_pairs",
|
|
3312
|
-
["strikethrough",
|
|
3320
|
+
["balance_pairs", Kr],
|
|
3321
|
+
["strikethrough", vn.postProcess],
|
|
3313
3322
|
["emphasis", Dn.postProcess],
|
|
3314
|
-
["fragments_join",
|
|
3315
|
-
],
|
|
3323
|
+
["fragments_join", Hr]
|
|
3324
|
+
], wn = class {
|
|
3316
3325
|
constructor() {
|
|
3317
3326
|
R(
|
|
3318
3327
|
this,
|
|
@@ -3329,40 +3338,40 @@ var de = [
|
|
|
3329
3338
|
*/
|
|
3330
3339
|
"ruler2",
|
|
3331
3340
|
new te()
|
|
3332
|
-
), R(this, "State",
|
|
3341
|
+
), R(this, "State", Cn);
|
|
3333
3342
|
for (let e = 0; e < de.length; e++) this.ruler.push(de[e][0], de[e][1]);
|
|
3334
3343
|
for (let e = 0; e < _e.length; e++) this.ruler2.push(_e[e][0], _e[e][1]);
|
|
3335
3344
|
}
|
|
3336
3345
|
skipToken(e) {
|
|
3337
|
-
const n = e.pos, t = this.ruler.getRules(""),
|
|
3338
|
-
if (typeof
|
|
3339
|
-
e.pos =
|
|
3346
|
+
const n = e.pos, t = this.ruler.getRules(""), i = t.length, r = e.md.options.maxNesting, o = e.cache;
|
|
3347
|
+
if (typeof o[n] < "u") {
|
|
3348
|
+
e.pos = o[n];
|
|
3340
3349
|
return;
|
|
3341
3350
|
}
|
|
3342
3351
|
let s = !1;
|
|
3343
3352
|
if (e.level < r) {
|
|
3344
|
-
for (let u = 0; u <
|
|
3353
|
+
for (let u = 0; u < i; u++)
|
|
3345
3354
|
if (e.level++, s = t[u](e, !0), e.level--, s) {
|
|
3346
3355
|
if (n >= e.pos) throw new Error("inline rule didn't increment state.pos");
|
|
3347
3356
|
break;
|
|
3348
3357
|
}
|
|
3349
3358
|
} else e.pos = e.posMax;
|
|
3350
|
-
s || e.pos++,
|
|
3359
|
+
s || e.pos++, o[n] = e.pos;
|
|
3351
3360
|
}
|
|
3352
3361
|
tokenize(e) {
|
|
3353
|
-
const n = this.ruler.getRules(""), t = n.length,
|
|
3354
|
-
for (; e.pos <
|
|
3355
|
-
const
|
|
3362
|
+
const n = this.ruler.getRules(""), t = n.length, i = e.posMax, r = e.md.options.maxNesting;
|
|
3363
|
+
for (; e.pos < i; ) {
|
|
3364
|
+
const o = e.pos;
|
|
3356
3365
|
let s = !1;
|
|
3357
3366
|
if (e.level < r) {
|
|
3358
3367
|
for (let u = 0; u < t; u++)
|
|
3359
3368
|
if (s = n[u](e, !1), s) {
|
|
3360
|
-
if (
|
|
3369
|
+
if (o >= e.pos) throw new Error("inline rule didn't increment state.pos");
|
|
3361
3370
|
break;
|
|
3362
3371
|
}
|
|
3363
3372
|
}
|
|
3364
3373
|
if (s) {
|
|
3365
|
-
if (e.pos >=
|
|
3374
|
+
if (e.pos >= i) break;
|
|
3366
3375
|
continue;
|
|
3367
3376
|
}
|
|
3368
3377
|
e.pending += e.src[e.pos++];
|
|
@@ -3372,13 +3381,13 @@ var de = [
|
|
|
3372
3381
|
/**
|
|
3373
3382
|
* Process input string and push inline tokens into `outTokens`
|
|
3374
3383
|
*/
|
|
3375
|
-
parse(e, n, t,
|
|
3376
|
-
const r = new this.State(e, n, t,
|
|
3384
|
+
parse(e, n, t, i) {
|
|
3385
|
+
const r = new this.State(e, n, t, i);
|
|
3377
3386
|
this.tokenize(r);
|
|
3378
|
-
const
|
|
3379
|
-
for (let u = 0; u < s; u++)
|
|
3387
|
+
const o = this.ruler2.getRules(""), s = o.length;
|
|
3388
|
+
for (let u = 0; u < s; u++) o[u](r);
|
|
3380
3389
|
}
|
|
3381
|
-
},
|
|
3390
|
+
}, Gr = {
|
|
3382
3391
|
default: {
|
|
3383
3392
|
options: {
|
|
3384
3393
|
html: !1,
|
|
@@ -3477,11 +3486,11 @@ var de = [
|
|
|
3477
3486
|
}
|
|
3478
3487
|
}
|
|
3479
3488
|
}
|
|
3480
|
-
},
|
|
3489
|
+
}, Vr = /^(vbscript|javascript|file|data):/, Qr = /^data:image\/(gif|png|jpeg|webp);/, Xe = [
|
|
3481
3490
|
"http:",
|
|
3482
3491
|
"https:",
|
|
3483
3492
|
"mailto:"
|
|
3484
|
-
],
|
|
3493
|
+
], O = class {
|
|
3485
3494
|
/**
|
|
3486
3495
|
* Link validation function. CommonMark allows too much in links. By default
|
|
3487
3496
|
* we disable `javascript:`, `vbscript:`, `file:` schemas, and almost all `data:...` schemas
|
|
@@ -3500,7 +3509,7 @@ var de = [
|
|
|
3500
3509
|
*/
|
|
3501
3510
|
validateLink(e) {
|
|
3502
3511
|
const n = e.trim().toLowerCase();
|
|
3503
|
-
return
|
|
3512
|
+
return Vr.test(n) ? Qr.test(n) : !0;
|
|
3504
3513
|
}
|
|
3505
3514
|
/**
|
|
3506
3515
|
* Function used to encode link url to a machine-readable format,
|
|
@@ -3508,21 +3517,21 @@ var de = [
|
|
|
3508
3517
|
*/
|
|
3509
3518
|
normalizeLink(e) {
|
|
3510
3519
|
const n = ke(e, !0);
|
|
3511
|
-
if (n.hostname && (!n.protocol ||
|
|
3520
|
+
if (n.hostname && (!n.protocol || Xe.indexOf(n.protocol) >= 0))
|
|
3512
3521
|
try {
|
|
3513
|
-
n.hostname =
|
|
3522
|
+
n.hostname = Ie.toASCII(n.hostname);
|
|
3514
3523
|
} catch {
|
|
3515
3524
|
}
|
|
3516
|
-
return n.auth && (n.auth =
|
|
3525
|
+
return n.auth && (n.auth = $(n.auth)), n.hostname && (n.hostname = $(n.hostname)), n.pathname && (n.pathname = $(n.pathname)), n.search && (n.search = $(n.search)), n.hash && (n.hash = $(n.hash)), ge(n);
|
|
3517
3526
|
}
|
|
3518
3527
|
/**
|
|
3519
3528
|
* Function used to decode link url to a human-readable format`
|
|
3520
3529
|
*/
|
|
3521
3530
|
normalizeLinkText(e) {
|
|
3522
3531
|
const n = ke(e, !0);
|
|
3523
|
-
if (n.hostname && (!n.protocol ||
|
|
3532
|
+
if (n.hostname && (!n.protocol || Xe.indexOf(n.protocol) >= 0))
|
|
3524
3533
|
try {
|
|
3525
|
-
n.hostname =
|
|
3534
|
+
n.hostname = Ie.toUnicode(n.hostname);
|
|
3526
3535
|
} catch {
|
|
3527
3536
|
}
|
|
3528
3537
|
return Y(ge(n), Y.defaultChars + "%");
|
|
@@ -3536,7 +3545,7 @@ var de = [
|
|
|
3536
3545
|
* and {@link MarkdownIt.enable}.
|
|
3537
3546
|
*/
|
|
3538
3547
|
"inline",
|
|
3539
|
-
new
|
|
3548
|
+
new wn()
|
|
3540
3549
|
), R(
|
|
3541
3550
|
this,
|
|
3542
3551
|
/**
|
|
@@ -3545,7 +3554,7 @@ var de = [
|
|
|
3545
3554
|
* and {@link MarkdownIt.enable}.
|
|
3546
3555
|
*/
|
|
3547
3556
|
"block",
|
|
3548
|
-
new
|
|
3557
|
+
new xn()
|
|
3549
3558
|
), R(
|
|
3550
3559
|
this,
|
|
3551
3560
|
/**
|
|
@@ -3554,7 +3563,7 @@ var de = [
|
|
|
3554
3563
|
* {@link MarkdownIt.disable} and {@link MarkdownIt.enable}.
|
|
3555
3564
|
*/
|
|
3556
3565
|
"core",
|
|
3557
|
-
new
|
|
3566
|
+
new kn()
|
|
3558
3567
|
), R(
|
|
3559
3568
|
this,
|
|
3560
3569
|
/**
|
|
@@ -3578,7 +3587,7 @@ var de = [
|
|
|
3578
3587
|
* ```
|
|
3579
3588
|
*/
|
|
3580
3589
|
"renderer",
|
|
3581
|
-
new
|
|
3590
|
+
new dn()
|
|
3582
3591
|
), R(
|
|
3583
3592
|
this,
|
|
3584
3593
|
/**
|
|
@@ -3587,7 +3596,7 @@ var de = [
|
|
|
3587
3596
|
* rule.
|
|
3588
3597
|
*/
|
|
3589
3598
|
"linkify",
|
|
3590
|
-
new
|
|
3599
|
+
new lt()
|
|
3591
3600
|
), R(
|
|
3592
3601
|
this,
|
|
3593
3602
|
/**
|
|
@@ -3595,7 +3604,7 @@ var de = [
|
|
|
3595
3604
|
* [here](https://github.com/markdown-it/markdown-it/blob/master/src/common/utils.ts).
|
|
3596
3605
|
*/
|
|
3597
3606
|
"utils",
|
|
3598
|
-
|
|
3607
|
+
bt
|
|
3599
3608
|
), R(
|
|
3600
3609
|
this,
|
|
3601
3610
|
/**
|
|
@@ -3641,23 +3650,23 @@ var de = [
|
|
|
3641
3650
|
let n;
|
|
3642
3651
|
if (typeof e == "string") {
|
|
3643
3652
|
const r = e;
|
|
3644
|
-
if (n =
|
|
3653
|
+
if (n = Gr[r], !n) throw new Error(`Wrong 'markdown-it' preset "${r}", check name`);
|
|
3645
3654
|
} else n = e;
|
|
3646
3655
|
if (!n) throw new Error("Wrong `markdown-it` preset, can't be empty");
|
|
3647
3656
|
n.options && (this.options = { ...n.options });
|
|
3648
3657
|
const t = n.components;
|
|
3649
3658
|
if (t) {
|
|
3650
|
-
var
|
|
3659
|
+
var i;
|
|
3651
3660
|
[
|
|
3652
3661
|
"core",
|
|
3653
3662
|
"block",
|
|
3654
3663
|
"inline"
|
|
3655
|
-
].forEach((
|
|
3664
|
+
].forEach((o) => {
|
|
3656
3665
|
var s;
|
|
3657
|
-
const u = (s = t[
|
|
3658
|
-
u && this[
|
|
3666
|
+
const u = (s = t[o]) === null || s === void 0 ? void 0 : s.rules;
|
|
3667
|
+
u && this[o].ruler.enableOnly(u);
|
|
3659
3668
|
});
|
|
3660
|
-
const r = (
|
|
3669
|
+
const r = (i = t.inline) === null || i === void 0 ? void 0 : i.rules2;
|
|
3661
3670
|
r && this.inline.ruler2.enableOnly(r);
|
|
3662
3671
|
}
|
|
3663
3672
|
return this;
|
|
@@ -3685,8 +3694,8 @@ var de = [
|
|
|
3685
3694
|
].forEach((r) => {
|
|
3686
3695
|
t = t.concat(this[r].ruler.enable(e, !0));
|
|
3687
3696
|
}), t = t.concat(this.inline.ruler2.enable(e, !0));
|
|
3688
|
-
const
|
|
3689
|
-
if (
|
|
3697
|
+
const i = e.filter((r) => t.indexOf(r) < 0);
|
|
3698
|
+
if (i.length && !n) throw new Error(`MarkdownIt. Failed to enable unknown rule(s): ${i}`);
|
|
3690
3699
|
return this;
|
|
3691
3700
|
}
|
|
3692
3701
|
/**
|
|
@@ -3701,8 +3710,8 @@ var de = [
|
|
|
3701
3710
|
].forEach((r) => {
|
|
3702
3711
|
t = t.concat(this[r].ruler.disable(e, !0));
|
|
3703
3712
|
}), t = t.concat(this.inline.ruler2.disable(e, !0));
|
|
3704
|
-
const
|
|
3705
|
-
if (
|
|
3713
|
+
const i = e.filter((r) => t.indexOf(r) < 0);
|
|
3714
|
+
if (i.length && !n) throw new Error(`MarkdownIt. Failed to disable unknown rule(s): ${i}`);
|
|
3706
3715
|
return this;
|
|
3707
3716
|
}
|
|
3708
3717
|
/**
|
|
@@ -3766,16 +3775,16 @@ var de = [
|
|
|
3766
3775
|
return this.renderer.render(this.parseInline(e, n), this.options, n);
|
|
3767
3776
|
}
|
|
3768
3777
|
};
|
|
3769
|
-
R(
|
|
3770
|
-
R(
|
|
3771
|
-
R(
|
|
3772
|
-
R(
|
|
3773
|
-
R(
|
|
3774
|
-
R(
|
|
3775
|
-
R(
|
|
3776
|
-
R(
|
|
3777
|
-
R(
|
|
3778
|
-
var
|
|
3778
|
+
R(O, "Token", W);
|
|
3779
|
+
R(O, "Ruler", te);
|
|
3780
|
+
R(O, "Renderer", dn);
|
|
3781
|
+
R(O, "ParserCore", kn);
|
|
3782
|
+
R(O, "StateCore", _n);
|
|
3783
|
+
R(O, "ParserBlock", xn);
|
|
3784
|
+
R(O, "StateBlock", mn);
|
|
3785
|
+
R(O, "ParserInline", wn);
|
|
3786
|
+
R(O, "StateInline", Cn);
|
|
3787
|
+
var ni = hn(O);
|
|
3779
3788
|
export {
|
|
3780
|
-
|
|
3789
|
+
ni as default
|
|
3781
3790
|
};
|