@vtj/parser 0.16.31 → 0.16.33
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/index.cjs +8 -8
- package/dist/index.mjs +721 -707
- package/package.json +3 -3
- package/types/version.d.ts +2 -2
package/dist/index.mjs
CHANGED
|
@@ -13,12 +13,12 @@ import * as N from "@babel/types";
|
|
|
13
13
|
* Copyright (c) 2026, VTJ.PRO All rights reserved.
|
|
14
14
|
* @name @vtj/parser
|
|
15
15
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
16
|
-
* @version 0.16.
|
|
16
|
+
* @version 0.16.33
|
|
17
17
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
18
18
|
*/
|
|
19
|
-
const jt = "0.16.
|
|
20
|
-
function R(
|
|
21
|
-
const { descriptor:
|
|
19
|
+
const jt = "0.16.33";
|
|
20
|
+
function R(e) {
|
|
21
|
+
const { descriptor: u, errors: t } = Vu(e), a = u.template?.content || "", i = (u.scriptSetup || u.script)?.content || "", r = u.styles.map((s) => s.content);
|
|
22
22
|
return {
|
|
23
23
|
template: a,
|
|
24
24
|
script: i,
|
|
@@ -26,15 +26,16 @@ function R(u) {
|
|
|
26
26
|
errors: t
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
|
-
function M(
|
|
30
|
-
return ee(
|
|
29
|
+
function M(e) {
|
|
30
|
+
return ee(e, { sourceType: "module", plugins: ["typescript"] });
|
|
31
31
|
}
|
|
32
|
-
function Z(
|
|
33
|
-
return (pu.default || pu)(
|
|
32
|
+
function Z(e, u) {
|
|
33
|
+
return (pu.default || pu)(e, u);
|
|
34
34
|
}
|
|
35
|
-
function
|
|
35
|
+
function B(e) {
|
|
36
|
+
if (!e) return "";
|
|
36
37
|
try {
|
|
37
|
-
return (mu.default || mu)(
|
|
38
|
+
return (mu.default || mu)(e, {
|
|
38
39
|
comments: !1,
|
|
39
40
|
concise: !0,
|
|
40
41
|
retainLines: !1,
|
|
@@ -42,34 +43,34 @@ function $(u) {
|
|
|
42
43
|
minimal: !0
|
|
43
44
|
}
|
|
44
45
|
}).code;
|
|
45
|
-
} catch (
|
|
46
|
-
return console.error("代码生成错误",
|
|
46
|
+
} catch (u) {
|
|
47
|
+
return console.error("代码生成错误", u), "";
|
|
47
48
|
}
|
|
48
49
|
}
|
|
49
|
-
function ou(
|
|
50
|
-
return !!
|
|
50
|
+
function ou(e) {
|
|
51
|
+
return !!e && e.type === "JSExpression";
|
|
51
52
|
}
|
|
52
|
-
function ce(
|
|
53
|
-
return typeof
|
|
53
|
+
function ce(e) {
|
|
54
|
+
return typeof e == "object" && !!e && e.type === "JSFunction";
|
|
54
55
|
}
|
|
55
|
-
function du(
|
|
56
|
-
return !!ou(
|
|
56
|
+
function du(e) {
|
|
57
|
+
return !!ou(e) || !!ce(e);
|
|
57
58
|
}
|
|
58
|
-
function ne(
|
|
59
|
-
return !!
|
|
59
|
+
function ne(e) {
|
|
60
|
+
return !!e && !ou(e) && typeof e != "string";
|
|
60
61
|
}
|
|
61
|
-
function ju(
|
|
62
|
+
function ju(e, u) {
|
|
62
63
|
try {
|
|
63
|
-
const t = M(
|
|
64
|
-
return Z(t,
|
|
64
|
+
const t = M(e);
|
|
65
|
+
return Z(t, u), B(t) || "";
|
|
65
66
|
} catch {
|
|
66
67
|
return "";
|
|
67
68
|
}
|
|
68
69
|
}
|
|
69
|
-
function oe(
|
|
70
|
+
function oe(e, u) {
|
|
70
71
|
const t = [];
|
|
71
72
|
try {
|
|
72
|
-
const { descriptor: a, errors: i } = Vu(
|
|
73
|
+
const { descriptor: a, errors: i } = Vu(e);
|
|
73
74
|
if (i && i.length > 0 && i.forEach((s) => {
|
|
74
75
|
const c = s.message || String(s), o = s.loc;
|
|
75
76
|
o && o.start ? t.push(
|
|
@@ -79,7 +80,7 @@ function oe(u, e) {
|
|
|
79
80
|
try {
|
|
80
81
|
const s = qu({
|
|
81
82
|
id: "validation",
|
|
82
|
-
filename:
|
|
83
|
+
filename: u,
|
|
83
84
|
source: a.template.content,
|
|
84
85
|
isProd: !1
|
|
85
86
|
});
|
|
@@ -104,13 +105,13 @@ function oe(u, e) {
|
|
|
104
105
|
}
|
|
105
106
|
return t.length > 0 ? t : null;
|
|
106
107
|
}
|
|
107
|
-
function Rt(
|
|
108
|
-
const
|
|
109
|
-
return
|
|
108
|
+
function Rt(e) {
|
|
109
|
+
const u = R(e), t = M(u.script), a = {};
|
|
110
|
+
return u.styles && (a.css = u.styles[0] || ""), Z(t, {
|
|
110
111
|
CallExpression(i) {
|
|
111
112
|
const r = i.node.callee?.name;
|
|
112
113
|
if (r) {
|
|
113
|
-
const s =
|
|
114
|
+
const s = B(i.node.arguments[0]);
|
|
114
115
|
s && (a[r] = {
|
|
115
116
|
type: "JSFunction",
|
|
116
117
|
value: s
|
|
@@ -119,141 +120,141 @@ function Rt(u) {
|
|
|
119
120
|
}
|
|
120
121
|
}), a;
|
|
121
122
|
}
|
|
122
|
-
function
|
|
123
|
-
if (!
|
|
123
|
+
function $(e, u, t) {
|
|
124
|
+
if (!e.includes(u)) return e;
|
|
124
125
|
try {
|
|
125
|
-
return de(
|
|
126
|
+
return de(e, u, t);
|
|
126
127
|
} catch {
|
|
127
|
-
return
|
|
128
|
+
return e;
|
|
128
129
|
}
|
|
129
130
|
}
|
|
130
|
-
function de(
|
|
131
|
+
function de(e, u, t) {
|
|
131
132
|
let a, i = 0;
|
|
132
133
|
try {
|
|
133
|
-
a = M(
|
|
134
|
+
a = M(e);
|
|
134
135
|
} catch {
|
|
135
|
-
const c = "(()=>{", n = c +
|
|
136
|
+
const c = "(()=>{", n = c + e + "})";
|
|
136
137
|
a = M(n), i = c.length;
|
|
137
138
|
}
|
|
138
139
|
const r = [];
|
|
139
140
|
if (Z(a, {
|
|
140
141
|
Identifier(c) {
|
|
141
142
|
const o = c.node;
|
|
142
|
-
if (o.name !==
|
|
143
|
+
if (o.name !== u) return;
|
|
143
144
|
const n = be(c);
|
|
144
145
|
if (n === "skip") return;
|
|
145
146
|
const f = (o.start ?? 0) - i, l = (o.end ?? 0) - i;
|
|
146
|
-
if (f < 0 || l >
|
|
147
|
-
const m = n === "expand" ? `${
|
|
147
|
+
if (f < 0 || l > e.length) return;
|
|
148
|
+
const m = n === "expand" ? `${u}: ${t}` : t;
|
|
148
149
|
r.some((h) => h.start === f && h.end === l) || r.push({ start: f, end: l, text: m });
|
|
149
150
|
},
|
|
150
151
|
StringLiteral(c) {
|
|
151
|
-
fe(c,
|
|
152
|
+
fe(c, u, t, i, e, r);
|
|
152
153
|
},
|
|
153
154
|
TemplateLiteral(c) {
|
|
154
|
-
le(c,
|
|
155
|
+
le(c, u, t, i, e, r);
|
|
155
156
|
},
|
|
156
157
|
MemberExpression(c) {
|
|
157
|
-
gu(c,
|
|
158
|
+
gu(c, u, t, i, e, r);
|
|
158
159
|
},
|
|
159
160
|
OptionalMemberExpression(c) {
|
|
160
|
-
gu(c,
|
|
161
|
+
gu(c, u, t, i, e, r);
|
|
161
162
|
}
|
|
162
|
-
}), r.length === 0) return
|
|
163
|
+
}), r.length === 0) return e;
|
|
163
164
|
r.sort((c, o) => o.start - c.start);
|
|
164
|
-
let s =
|
|
165
|
+
let s = e;
|
|
165
166
|
for (const { start: c, end: o, text: n } of r)
|
|
166
167
|
s = s.slice(0, c) + n + s.slice(o);
|
|
167
168
|
return s;
|
|
168
169
|
}
|
|
169
|
-
function fe(
|
|
170
|
-
const s =
|
|
171
|
-
if (!s.value.includes(
|
|
172
|
-
const c =
|
|
170
|
+
function fe(e, u, t, a, i, r) {
|
|
171
|
+
const s = e.node;
|
|
172
|
+
if (!s.value.includes(u)) return;
|
|
173
|
+
const c = e.parent;
|
|
173
174
|
if (c?.type !== "NewExpression" || c?.callee?.name !== "RegExp")
|
|
174
175
|
return;
|
|
175
176
|
const o = s.value;
|
|
176
177
|
let n = 0;
|
|
177
178
|
for (; n < o.length; ) {
|
|
178
|
-
const f = o.indexOf(
|
|
179
|
+
const f = o.indexOf(u, n);
|
|
179
180
|
if (f === -1) break;
|
|
180
|
-
const l = 1 + f, m = (s.start ?? 0) - a + l, h = m +
|
|
181
|
-
m >= 0 && h <= i.length && !r.some((I) => I.start === m && I.end === h) && r.push({ start: m, end: h, text: t }), n = f +
|
|
181
|
+
const l = 1 + f, m = (s.start ?? 0) - a + l, h = m + u.length;
|
|
182
|
+
m >= 0 && h <= i.length && !r.some((I) => I.start === m && I.end === h) && r.push({ start: m, end: h, text: t }), n = f + u.length;
|
|
182
183
|
}
|
|
183
184
|
}
|
|
184
|
-
function le(
|
|
185
|
-
const s =
|
|
185
|
+
function le(e, u, t, a, i, r) {
|
|
186
|
+
const s = e.parent;
|
|
186
187
|
if (s?.type !== "NewExpression" || s?.callee?.name !== "RegExp")
|
|
187
188
|
return;
|
|
188
|
-
const o =
|
|
189
|
+
const o = e.node.quasis ?? [];
|
|
189
190
|
for (const n of o) {
|
|
190
191
|
const f = n.value?.raw ?? "";
|
|
191
|
-
if (!f.includes(
|
|
192
|
+
if (!f.includes(u)) continue;
|
|
192
193
|
let l = 0;
|
|
193
194
|
for (; l < f.length; ) {
|
|
194
|
-
const m = f.indexOf(
|
|
195
|
+
const m = f.indexOf(u, l);
|
|
195
196
|
if (m === -1) break;
|
|
196
197
|
const h = (n.start ?? 0) - a;
|
|
197
198
|
if (h < 0 || h > i.length) break;
|
|
198
|
-
const I = h + m, A = I +
|
|
199
|
-
I >= 0 && A <= i.length && !r.some((H) => H.start === I && H.end === A) && r.push({ start: I, end: A, text: t }), l = m +
|
|
199
|
+
const I = h + m, A = I + u.length;
|
|
200
|
+
I >= 0 && A <= i.length && !r.some((H) => H.start === I && H.end === A) && r.push({ start: I, end: A, text: t }), l = m + u.length;
|
|
200
201
|
}
|
|
201
202
|
}
|
|
202
203
|
}
|
|
203
|
-
function gu(
|
|
204
|
-
const s =
|
|
205
|
-
if (s.object?.type !== "ThisExpression" || s.computed || s.property?.type !== "Identifier" || s.property.name !==
|
|
204
|
+
function gu(e, u, t, a, i, r) {
|
|
205
|
+
const s = e.node;
|
|
206
|
+
if (s.object?.type !== "ThisExpression" || s.computed || s.property?.type !== "Identifier" || s.property.name !== u)
|
|
206
207
|
return;
|
|
207
208
|
const c = (s.start ?? 0) - a, o = (s.end ?? 0) - a;
|
|
208
209
|
c < 0 || o > i.length || r.some((n) => n.start === c && n.end === o) || r.push({ start: c, end: o, text: t });
|
|
209
210
|
}
|
|
210
|
-
function be(
|
|
211
|
-
const t =
|
|
211
|
+
function be(e, u) {
|
|
212
|
+
const t = e.parent, a = t?.type ?? "", i = e.parentPath?.parent;
|
|
212
213
|
switch (a) {
|
|
213
214
|
// 成员访问 obj.key / obj[key] / obj?.key / obj?.[key]
|
|
214
215
|
case "MemberExpression":
|
|
215
216
|
case "OptionalMemberExpression": {
|
|
216
|
-
if (t.property ===
|
|
217
|
+
if (t.property === e.node)
|
|
217
218
|
return t.computed ? "replace" : "skip";
|
|
218
|
-
if (t.object ===
|
|
219
|
+
if (t.object === e.node)
|
|
219
220
|
return "replace";
|
|
220
221
|
break;
|
|
221
222
|
}
|
|
222
223
|
// 对象属性 { key: val } / { key } / { [key]: val }
|
|
223
224
|
case "ObjectProperty": {
|
|
224
|
-
if (t.key ===
|
|
225
|
+
if (t.key === e.node)
|
|
225
226
|
return t.computed ? "replace" : t.shorthand ? i && i?.type === "ObjectPattern" ? "skip" : "expand" : "skip";
|
|
226
|
-
if (t.value ===
|
|
227
|
+
if (t.value === e.node)
|
|
227
228
|
return i && i?.type === "ObjectPattern" ? "skip" : "replace";
|
|
228
229
|
break;
|
|
229
230
|
}
|
|
230
231
|
// 变量声明 const/let/var key = ...
|
|
231
232
|
case "VariableDeclarator": {
|
|
232
|
-
if (t.id ===
|
|
233
|
+
if (t.id === e.node)
|
|
233
234
|
return "skip";
|
|
234
235
|
break;
|
|
235
236
|
}
|
|
236
237
|
// 函数声明 function key() { }
|
|
237
238
|
case "FunctionDeclaration": {
|
|
238
|
-
if (t.id ===
|
|
239
|
+
if (t.id === e.node)
|
|
239
240
|
return "skip";
|
|
240
241
|
break;
|
|
241
242
|
}
|
|
242
243
|
// 类声明 class key { }
|
|
243
244
|
case "ClassDeclaration": {
|
|
244
|
-
if (t.id ===
|
|
245
|
+
if (t.id === e.node)
|
|
245
246
|
return "skip";
|
|
246
247
|
break;
|
|
247
248
|
}
|
|
248
249
|
// 类表达式 const X = class key { }
|
|
249
250
|
case "ClassExpression": {
|
|
250
|
-
if (t.id ===
|
|
251
|
+
if (t.id === e.node)
|
|
251
252
|
return "skip";
|
|
252
253
|
break;
|
|
253
254
|
}
|
|
254
255
|
// 异常捕获 catch(key) { }
|
|
255
256
|
case "CatchClause": {
|
|
256
|
-
if (t.param ===
|
|
257
|
+
if (t.param === e.node)
|
|
257
258
|
return "skip";
|
|
258
259
|
break;
|
|
259
260
|
}
|
|
@@ -267,79 +268,79 @@ function be(u, e) {
|
|
|
267
268
|
return "skip";
|
|
268
269
|
// 标签语句 key: for(...)
|
|
269
270
|
case "LabeledStatement": {
|
|
270
|
-
if (t.label ===
|
|
271
|
+
if (t.label === e.node)
|
|
271
272
|
return "skip";
|
|
272
273
|
break;
|
|
273
274
|
}
|
|
274
275
|
// 默认参数 function(key = val)
|
|
275
276
|
case "AssignmentPattern": {
|
|
276
|
-
if (t.left ===
|
|
277
|
+
if (t.left === e.node)
|
|
277
278
|
return "skip";
|
|
278
279
|
break;
|
|
279
280
|
}
|
|
280
281
|
// 展开运算符 ...key
|
|
281
282
|
case "SpreadElement": {
|
|
282
|
-
if (t.argument ===
|
|
283
|
+
if (t.argument === e.node)
|
|
283
284
|
return "replace";
|
|
284
285
|
break;
|
|
285
286
|
}
|
|
286
287
|
// 对象方法 { key() {} }
|
|
287
288
|
case "ObjectMethod": {
|
|
288
|
-
if (t.key ===
|
|
289
|
+
if (t.key === e.node && !t.computed)
|
|
289
290
|
return "skip";
|
|
290
291
|
break;
|
|
291
292
|
}
|
|
292
293
|
// Rest 元素 function(...key)
|
|
293
294
|
case "RestElement": {
|
|
294
|
-
if (t.argument ===
|
|
295
|
+
if (t.argument === e.node)
|
|
295
296
|
return "skip";
|
|
296
297
|
break;
|
|
297
298
|
}
|
|
298
299
|
// 枚举声明 enum key { }
|
|
299
300
|
case "TSEnumDeclaration": {
|
|
300
|
-
if (t.id ===
|
|
301
|
+
if (t.id === e.node)
|
|
301
302
|
return "skip";
|
|
302
303
|
break;
|
|
303
304
|
}
|
|
304
305
|
// 类型别名 type key = ...
|
|
305
306
|
case "TSTypeAliasDeclaration": {
|
|
306
|
-
if (t.id ===
|
|
307
|
+
if (t.id === e.node)
|
|
307
308
|
return "skip";
|
|
308
309
|
break;
|
|
309
310
|
}
|
|
310
311
|
// 接口声明 interface key { }
|
|
311
312
|
case "TSInterfaceDeclaration": {
|
|
312
|
-
if (t.id ===
|
|
313
|
+
if (t.id === e.node)
|
|
313
314
|
return "skip";
|
|
314
315
|
break;
|
|
315
316
|
}
|
|
316
317
|
}
|
|
317
|
-
return he(
|
|
318
|
+
return he(e) || pe(e) ? "skip" : "replace";
|
|
318
319
|
}
|
|
319
|
-
function he(
|
|
320
|
-
let
|
|
321
|
-
for (;
|
|
322
|
-
const t =
|
|
320
|
+
function he(e) {
|
|
321
|
+
let u = e.parentPath;
|
|
322
|
+
for (; u; ) {
|
|
323
|
+
const t = u.node, a = t?.type ?? "";
|
|
323
324
|
if (a === "FunctionDeclaration" || a === "FunctionExpression" || a === "ArrowFunctionExpression" || a === "ClassMethod" || a === "ObjectMethod" || a === "TSDeclareFunction")
|
|
324
|
-
return (t.params ?? []).includes(
|
|
325
|
+
return (t.params ?? []).includes(e.node);
|
|
325
326
|
if (a === "Program" || a === "BlockStatement" || a === "ObjectExpression" || a === "ArrayExpression" || a === "StaticBlock")
|
|
326
327
|
break;
|
|
327
|
-
|
|
328
|
+
u = u.parentPath;
|
|
328
329
|
}
|
|
329
330
|
return !1;
|
|
330
331
|
}
|
|
331
|
-
function pe(
|
|
332
|
-
let
|
|
333
|
-
for (;
|
|
334
|
-
const t =
|
|
332
|
+
function pe(e) {
|
|
333
|
+
let u = e.parentPath;
|
|
334
|
+
for (; u; ) {
|
|
335
|
+
const t = u.node?.type ?? "";
|
|
335
336
|
if (t === "ObjectPattern") return !0;
|
|
336
337
|
if (t === "FunctionDeclaration" || t === "FunctionExpression" || t === "ArrowFunctionExpression" || t === "Program")
|
|
337
338
|
break;
|
|
338
|
-
|
|
339
|
+
u = u.parentPath;
|
|
339
340
|
}
|
|
340
341
|
return !1;
|
|
341
342
|
}
|
|
342
|
-
function yu(
|
|
343
|
+
function yu(e, u, t) {
|
|
343
344
|
const {
|
|
344
345
|
context: a = {},
|
|
345
346
|
computed: i = [],
|
|
@@ -347,34 +348,34 @@ function yu(u, e, t) {
|
|
|
347
348
|
members: s = [],
|
|
348
349
|
props: c = [],
|
|
349
350
|
platform: o
|
|
350
|
-
} = t || {}, n = Array.from(a[
|
|
351
|
+
} = t || {}, n = Array.from(a[u || ""] || /* @__PURE__ */ new Set());
|
|
351
352
|
if (n)
|
|
352
353
|
for (const f of n)
|
|
353
|
-
|
|
354
|
+
e = $(e, f, `this.context.${f}`);
|
|
354
355
|
for (const f of i)
|
|
355
|
-
|
|
356
|
+
e.includes(`this.${f}.value`) || (e = $(e, f, `this.${f}.value`));
|
|
356
357
|
for (const f of c)
|
|
357
|
-
|
|
358
|
+
e = $(e, f, `this.props.${f}`), e = $(e, `this.${f}`, `this.props.${f}`);
|
|
358
359
|
for (const [f, l] of Object.entries(r))
|
|
359
|
-
|
|
360
|
+
e = $(e, f, `this.$libs.${l}.${f}`), e = $(e, `this.${f}`, `this.$libs.${l}.${f}`);
|
|
360
361
|
for (const f of s)
|
|
361
|
-
|
|
362
|
+
e = $(e, f, `this.${f}`);
|
|
362
363
|
if (o === "uniapp") {
|
|
363
364
|
const f = /\suni\./g;
|
|
364
|
-
|
|
365
|
+
e = e.replace(f, "this.$libs.UniH5.uni.");
|
|
365
366
|
}
|
|
366
|
-
return
|
|
367
|
+
return e = e.replace(/_ctx\./g, "this."), e = e.replace(/this\.this\./g, "this."), e;
|
|
367
368
|
}
|
|
368
|
-
function V(
|
|
369
|
+
function V(e) {
|
|
369
370
|
return {
|
|
370
371
|
type: "JSExpression",
|
|
371
|
-
value: /^\{[\w\W]*\}$/.test(
|
|
372
|
+
value: /^\{[\w\W]*\}$/.test(e) ? `(${e})` : e
|
|
372
373
|
};
|
|
373
374
|
}
|
|
374
|
-
function fu(
|
|
375
|
+
function fu(e) {
|
|
375
376
|
return {
|
|
376
377
|
type: "JSFunction",
|
|
377
|
-
value:
|
|
378
|
+
value: e
|
|
378
379
|
};
|
|
379
380
|
}
|
|
380
381
|
const me = [
|
|
@@ -396,26 +397,26 @@ const me = [
|
|
|
396
397
|
), ge = "component,slot,template".split(","), ye = "view,swiper,progress,icon,text,button,checkbox,editor,form,input,label,picker,radio,slider,switch,textarea,audio,camera,image,video,map,canvas".split(
|
|
397
398
|
","
|
|
398
399
|
);
|
|
399
|
-
function Se(
|
|
400
|
-
return
|
|
400
|
+
function Se(e, u = "web") {
|
|
401
|
+
return u === "uniapp" && ye.includes(e);
|
|
401
402
|
}
|
|
402
|
-
function Ru(
|
|
403
|
-
return (xe.includes(
|
|
403
|
+
function Ru(e, u = "web") {
|
|
404
|
+
return (xe.includes(e) || ge.includes(e)) && !Se(e, u) ? e : ae(e);
|
|
404
405
|
}
|
|
405
|
-
function Du(
|
|
406
|
-
return
|
|
406
|
+
function Du(e) {
|
|
407
|
+
return e.replace(/\s+/g, " ").split(";").reduce((t, a) => {
|
|
407
408
|
const [i, r] = a.split(":").map((s) => s.trim());
|
|
408
409
|
return i && r && (t[i] = r), t;
|
|
409
410
|
}, {});
|
|
410
411
|
}
|
|
411
|
-
function Ee(
|
|
412
|
+
function Ee(e, u, t) {
|
|
412
413
|
if (t === "ObjectExpression")
|
|
413
|
-
return `(Object.assign({${
|
|
414
|
+
return `(Object.assign({${e.split(" ").map((i) => `'${i}': true`).join(",")}}, ${u}))`;
|
|
414
415
|
if (t === "ArrayExpression")
|
|
415
|
-
return `([${
|
|
416
|
+
return `([${e.split(" ").map((i) => `'${i}'`).join(",")}].concat(${u}))`;
|
|
416
417
|
}
|
|
417
|
-
function Ie(
|
|
418
|
-
const t =
|
|
418
|
+
function Ie(e = "") {
|
|
419
|
+
const t = e.trim().match(/DataSource:\s*([^\n=]+={0,2})/)?.[1] || "";
|
|
419
420
|
try {
|
|
420
421
|
return t ? JSON.parse(ie(t)) : null;
|
|
421
422
|
} catch (a) {
|
|
@@ -424,10 +425,10 @@ function Ie(u = "") {
|
|
|
424
425
|
}
|
|
425
426
|
const ve = /* @__PURE__ */ new Uint16Array(
|
|
426
427
|
// prettier-ignore
|
|
427
|
-
/* @__PURE__ */ 'ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((u) => u.charCodeAt(0))
|
|
428
|
+
/* @__PURE__ */ 'ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((e) => e.charCodeAt(0))
|
|
428
429
|
), we = /* @__PURE__ */ new Uint16Array(
|
|
429
430
|
// prettier-ignore
|
|
430
|
-
/* @__PURE__ */ "Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((
|
|
431
|
+
/* @__PURE__ */ "Ȁaglq \x1Bɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((e) => e.charCodeAt(0))
|
|
431
432
|
);
|
|
432
433
|
var au;
|
|
433
434
|
const Ae = /* @__PURE__ */ new Map([
|
|
@@ -462,51 +463,51 @@ const Ae = /* @__PURE__ */ new Map([
|
|
|
462
463
|
[159, 376]
|
|
463
464
|
]), Su = (
|
|
464
465
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, n/no-unsupported-features/es-builtins
|
|
465
|
-
(au = String.fromCodePoint) !== null && au !== void 0 ? au : function(
|
|
466
|
-
let
|
|
467
|
-
return
|
|
466
|
+
(au = String.fromCodePoint) !== null && au !== void 0 ? au : function(e) {
|
|
467
|
+
let u = "";
|
|
468
|
+
return e > 65535 && (e -= 65536, u += String.fromCharCode(e >>> 10 & 1023 | 55296), e = 56320 | e & 1023), u += String.fromCharCode(e), u;
|
|
468
469
|
}
|
|
469
470
|
);
|
|
470
|
-
function ke(
|
|
471
|
-
var
|
|
472
|
-
return
|
|
471
|
+
function ke(e) {
|
|
472
|
+
var u;
|
|
473
|
+
return e >= 55296 && e <= 57343 || e > 1114111 ? 65533 : (u = Ae.get(e)) !== null && u !== void 0 ? u : e;
|
|
473
474
|
}
|
|
474
475
|
var T;
|
|
475
|
-
(function(
|
|
476
|
-
|
|
476
|
+
(function(e) {
|
|
477
|
+
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_F = 102] = "LOWER_F", e[e.LOWER_X = 120] = "LOWER_X", e[e.LOWER_Z = 122] = "LOWER_Z", e[e.UPPER_A = 65] = "UPPER_A", e[e.UPPER_F = 70] = "UPPER_F", e[e.UPPER_Z = 90] = "UPPER_Z";
|
|
477
478
|
})(T || (T = {}));
|
|
478
479
|
const Te = 32;
|
|
479
480
|
var O;
|
|
480
|
-
(function(
|
|
481
|
-
|
|
481
|
+
(function(e) {
|
|
482
|
+
e[e.VALUE_LENGTH = 49152] = "VALUE_LENGTH", e[e.BRANCH_LENGTH = 16256] = "BRANCH_LENGTH", e[e.JUMP_TABLE = 127] = "JUMP_TABLE";
|
|
482
483
|
})(O || (O = {}));
|
|
483
|
-
function su(
|
|
484
|
-
return
|
|
484
|
+
function su(e) {
|
|
485
|
+
return e >= T.ZERO && e <= T.NINE;
|
|
485
486
|
}
|
|
486
|
-
function Ne(
|
|
487
|
-
return
|
|
487
|
+
function Ne(e) {
|
|
488
|
+
return e >= T.UPPER_A && e <= T.UPPER_F || e >= T.LOWER_A && e <= T.LOWER_F;
|
|
488
489
|
}
|
|
489
|
-
function Ve(
|
|
490
|
-
return
|
|
490
|
+
function Ve(e) {
|
|
491
|
+
return e >= T.UPPER_A && e <= T.UPPER_Z || e >= T.LOWER_A && e <= T.LOWER_Z || su(e);
|
|
491
492
|
}
|
|
492
|
-
function qe(
|
|
493
|
-
return
|
|
493
|
+
function qe(e) {
|
|
494
|
+
return e === T.EQUALS || Ve(e);
|
|
494
495
|
}
|
|
495
496
|
var k;
|
|
496
|
-
(function(
|
|
497
|
-
|
|
497
|
+
(function(e) {
|
|
498
|
+
e[e.EntityStart = 0] = "EntityStart", e[e.NumericStart = 1] = "NumericStart", e[e.NumericDecimal = 2] = "NumericDecimal", e[e.NumericHex = 3] = "NumericHex", e[e.NamedEntity = 4] = "NamedEntity";
|
|
498
499
|
})(k || (k = {}));
|
|
499
500
|
var D;
|
|
500
|
-
(function(
|
|
501
|
-
|
|
501
|
+
(function(e) {
|
|
502
|
+
e[e.Legacy = 0] = "Legacy", e[e.Strict = 1] = "Strict", e[e.Attribute = 2] = "Attribute";
|
|
502
503
|
})(D || (D = {}));
|
|
503
504
|
class je {
|
|
504
|
-
constructor(
|
|
505
|
-
this.decodeTree =
|
|
505
|
+
constructor(u, t, a) {
|
|
506
|
+
this.decodeTree = u, this.emitCodePoint = t, this.errors = a, this.state = k.EntityStart, this.consumed = 1, this.result = 0, this.treeIndex = 0, this.excess = 1, this.decodeMode = D.Strict;
|
|
506
507
|
}
|
|
507
508
|
/** Resets the instance to make it reusable. */
|
|
508
|
-
startEntity(
|
|
509
|
-
this.decodeMode =
|
|
509
|
+
startEntity(u) {
|
|
510
|
+
this.decodeMode = u, this.state = k.EntityStart, this.result = 0, this.treeIndex = 0, this.excess = 1, this.consumed = 1;
|
|
510
511
|
}
|
|
511
512
|
/**
|
|
512
513
|
* Write an entity to the decoder. This can be called multiple times with partial entities.
|
|
@@ -519,18 +520,18 @@ class je {
|
|
|
519
520
|
* @param offset The offset at which the entity begins. Should be 0 if this is not the first call.
|
|
520
521
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
521
522
|
*/
|
|
522
|
-
write(
|
|
523
|
+
write(u, t) {
|
|
523
524
|
switch (this.state) {
|
|
524
525
|
case k.EntityStart:
|
|
525
|
-
return
|
|
526
|
+
return u.charCodeAt(t) === T.NUM ? (this.state = k.NumericStart, this.consumed += 1, this.stateNumericStart(u, t + 1)) : (this.state = k.NamedEntity, this.stateNamedEntity(u, t));
|
|
526
527
|
case k.NumericStart:
|
|
527
|
-
return this.stateNumericStart(
|
|
528
|
+
return this.stateNumericStart(u, t);
|
|
528
529
|
case k.NumericDecimal:
|
|
529
|
-
return this.stateNumericDecimal(
|
|
530
|
+
return this.stateNumericDecimal(u, t);
|
|
530
531
|
case k.NumericHex:
|
|
531
|
-
return this.stateNumericHex(
|
|
532
|
+
return this.stateNumericHex(u, t);
|
|
532
533
|
case k.NamedEntity:
|
|
533
|
-
return this.stateNamedEntity(
|
|
534
|
+
return this.stateNamedEntity(u, t);
|
|
534
535
|
}
|
|
535
536
|
}
|
|
536
537
|
/**
|
|
@@ -542,13 +543,13 @@ class je {
|
|
|
542
543
|
* @param offset The current offset.
|
|
543
544
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
544
545
|
*/
|
|
545
|
-
stateNumericStart(
|
|
546
|
-
return t >=
|
|
546
|
+
stateNumericStart(u, t) {
|
|
547
|
+
return t >= u.length ? -1 : (u.charCodeAt(t) | Te) === T.LOWER_X ? (this.state = k.NumericHex, this.consumed += 1, this.stateNumericHex(u, t + 1)) : (this.state = k.NumericDecimal, this.stateNumericDecimal(u, t));
|
|
547
548
|
}
|
|
548
|
-
addToNumericResult(
|
|
549
|
+
addToNumericResult(u, t, a, i) {
|
|
549
550
|
if (t !== a) {
|
|
550
551
|
const r = a - t;
|
|
551
|
-
this.result = this.result * Math.pow(i, r) + Number.parseInt(
|
|
552
|
+
this.result = this.result * Math.pow(i, r) + Number.parseInt(u.substr(t, r), i), this.consumed += r;
|
|
552
553
|
}
|
|
553
554
|
}
|
|
554
555
|
/**
|
|
@@ -560,16 +561,16 @@ class je {
|
|
|
560
561
|
* @param offset The current offset.
|
|
561
562
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
562
563
|
*/
|
|
563
|
-
stateNumericHex(
|
|
564
|
+
stateNumericHex(u, t) {
|
|
564
565
|
const a = t;
|
|
565
|
-
for (; t <
|
|
566
|
-
const i =
|
|
566
|
+
for (; t < u.length; ) {
|
|
567
|
+
const i = u.charCodeAt(t);
|
|
567
568
|
if (su(i) || Ne(i))
|
|
568
569
|
t += 1;
|
|
569
570
|
else
|
|
570
|
-
return this.addToNumericResult(
|
|
571
|
+
return this.addToNumericResult(u, a, t, 16), this.emitNumericEntity(i, 3);
|
|
571
572
|
}
|
|
572
|
-
return this.addToNumericResult(
|
|
573
|
+
return this.addToNumericResult(u, a, t, 16), -1;
|
|
573
574
|
}
|
|
574
575
|
/**
|
|
575
576
|
* Parses a decimal numeric entity.
|
|
@@ -580,16 +581,16 @@ class je {
|
|
|
580
581
|
* @param offset The current offset.
|
|
581
582
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
582
583
|
*/
|
|
583
|
-
stateNumericDecimal(
|
|
584
|
+
stateNumericDecimal(u, t) {
|
|
584
585
|
const a = t;
|
|
585
|
-
for (; t <
|
|
586
|
-
const i =
|
|
586
|
+
for (; t < u.length; ) {
|
|
587
|
+
const i = u.charCodeAt(t);
|
|
587
588
|
if (su(i))
|
|
588
589
|
t += 1;
|
|
589
590
|
else
|
|
590
|
-
return this.addToNumericResult(
|
|
591
|
+
return this.addToNumericResult(u, a, t, 10), this.emitNumericEntity(i, 2);
|
|
591
592
|
}
|
|
592
|
-
return this.addToNumericResult(
|
|
593
|
+
return this.addToNumericResult(u, a, t, 10), -1;
|
|
593
594
|
}
|
|
594
595
|
/**
|
|
595
596
|
* Validate and emit a numeric entity.
|
|
@@ -604,15 +605,15 @@ class je {
|
|
|
604
605
|
* was consumed.
|
|
605
606
|
* @returns The number of characters that were consumed.
|
|
606
607
|
*/
|
|
607
|
-
emitNumericEntity(
|
|
608
|
+
emitNumericEntity(u, t) {
|
|
608
609
|
var a;
|
|
609
610
|
if (this.consumed <= t)
|
|
610
611
|
return (a = this.errors) === null || a === void 0 || a.absenceOfDigitsInNumericCharacterReference(this.consumed), 0;
|
|
611
|
-
if (
|
|
612
|
+
if (u === T.SEMI)
|
|
612
613
|
this.consumed += 1;
|
|
613
614
|
else if (this.decodeMode === D.Strict)
|
|
614
615
|
return 0;
|
|
615
|
-
return this.emitCodePoint(ke(this.result), this.consumed), this.errors && (
|
|
616
|
+
return this.emitCodePoint(ke(this.result), this.consumed), this.errors && (u !== T.SEMI && this.errors.missingSemicolonAfterCharacterReference(), this.errors.validateNumericCharacterReference(this.result)), this.consumed;
|
|
616
617
|
}
|
|
617
618
|
/**
|
|
618
619
|
* Parses a named entity.
|
|
@@ -623,11 +624,11 @@ class je {
|
|
|
623
624
|
* @param offset The current offset.
|
|
624
625
|
* @returns The number of characters that were consumed, or -1 if the entity is incomplete.
|
|
625
626
|
*/
|
|
626
|
-
stateNamedEntity(
|
|
627
|
+
stateNamedEntity(u, t) {
|
|
627
628
|
const { decodeTree: a } = this;
|
|
628
629
|
let i = a[this.treeIndex], r = (i & O.VALUE_LENGTH) >> 14;
|
|
629
|
-
for (; t <
|
|
630
|
-
const s =
|
|
630
|
+
for (; t < u.length; t++, this.excess++) {
|
|
631
|
+
const s = u.charCodeAt(t);
|
|
631
632
|
if (this.treeIndex = Re(a, i, this.treeIndex + Math.max(1, r), s), this.treeIndex < 0)
|
|
632
633
|
return this.result === 0 || // If we are parsing an attribute
|
|
633
634
|
this.decodeMode === D.Attribute && // We shouldn't have consumed any characters after the entity,
|
|
@@ -647,9 +648,9 @@ class je {
|
|
|
647
648
|
* @returns The number of characters consumed.
|
|
648
649
|
*/
|
|
649
650
|
emitNotTerminatedNamedEntity() {
|
|
650
|
-
var
|
|
651
|
+
var u;
|
|
651
652
|
const { result: t, decodeTree: a } = this, i = (a[t] & O.VALUE_LENGTH) >> 14;
|
|
652
|
-
return this.emitNamedEntityData(t, i, this.consumed), (
|
|
653
|
+
return this.emitNamedEntityData(t, i, this.consumed), (u = this.errors) === null || u === void 0 || u.missingSemicolonAfterCharacterReference(), this.consumed;
|
|
653
654
|
}
|
|
654
655
|
/**
|
|
655
656
|
* Emit a named entity.
|
|
@@ -660,9 +661,9 @@ class je {
|
|
|
660
661
|
*
|
|
661
662
|
* @returns The number of characters consumed.
|
|
662
663
|
*/
|
|
663
|
-
emitNamedEntityData(
|
|
664
|
+
emitNamedEntityData(u, t, a) {
|
|
664
665
|
const { decodeTree: i } = this;
|
|
665
|
-
return this.emitCodePoint(t === 1 ? i[
|
|
666
|
+
return this.emitCodePoint(t === 1 ? i[u] & ~O.VALUE_LENGTH : i[u + 1], a), t === 3 && this.emitCodePoint(i[u + 2], a), a;
|
|
666
667
|
}
|
|
667
668
|
/**
|
|
668
669
|
* Signal to the parser that the end of the input was reached.
|
|
@@ -672,7 +673,7 @@ class je {
|
|
|
672
673
|
* @returns The number of characters consumed.
|
|
673
674
|
*/
|
|
674
675
|
end() {
|
|
675
|
-
var
|
|
676
|
+
var u;
|
|
676
677
|
switch (this.state) {
|
|
677
678
|
case k.NamedEntity:
|
|
678
679
|
return this.result !== 0 && (this.decodeMode !== D.Attribute || this.result === this.treeIndex) ? this.emitNotTerminatedNamedEntity() : 0;
|
|
@@ -682,52 +683,52 @@ class je {
|
|
|
682
683
|
case k.NumericHex:
|
|
683
684
|
return this.emitNumericEntity(0, 3);
|
|
684
685
|
case k.NumericStart:
|
|
685
|
-
return (
|
|
686
|
+
return (u = this.errors) === null || u === void 0 || u.absenceOfDigitsInNumericCharacterReference(this.consumed), 0;
|
|
686
687
|
case k.EntityStart:
|
|
687
688
|
return 0;
|
|
688
689
|
}
|
|
689
690
|
}
|
|
690
691
|
}
|
|
691
|
-
function Re(
|
|
692
|
-
const i = (
|
|
692
|
+
function Re(e, u, t, a) {
|
|
693
|
+
const i = (u & O.BRANCH_LENGTH) >> 7, r = u & O.JUMP_TABLE;
|
|
693
694
|
if (i === 0)
|
|
694
695
|
return r !== 0 && a === r ? t : -1;
|
|
695
696
|
if (r) {
|
|
696
697
|
const o = a - r;
|
|
697
|
-
return o < 0 || o >= i ? -1 :
|
|
698
|
+
return o < 0 || o >= i ? -1 : e[t + o] - 1;
|
|
698
699
|
}
|
|
699
700
|
let s = t, c = s + i - 1;
|
|
700
701
|
for (; s <= c; ) {
|
|
701
|
-
const o = s + c >>> 1, n =
|
|
702
|
+
const o = s + c >>> 1, n = e[o];
|
|
702
703
|
if (n < a)
|
|
703
704
|
s = o + 1;
|
|
704
705
|
else if (n > a)
|
|
705
706
|
c = o - 1;
|
|
706
707
|
else
|
|
707
|
-
return
|
|
708
|
+
return e[o + i];
|
|
708
709
|
}
|
|
709
710
|
return -1;
|
|
710
711
|
}
|
|
711
712
|
var b;
|
|
712
|
-
(function(
|
|
713
|
-
|
|
713
|
+
(function(e) {
|
|
714
|
+
e[e.Tab = 9] = "Tab", e[e.NewLine = 10] = "NewLine", e[e.FormFeed = 12] = "FormFeed", e[e.CarriageReturn = 13] = "CarriageReturn", e[e.Space = 32] = "Space", e[e.ExclamationMark = 33] = "ExclamationMark", e[e.Number = 35] = "Number", e[e.Amp = 38] = "Amp", e[e.SingleQuote = 39] = "SingleQuote", e[e.DoubleQuote = 34] = "DoubleQuote", e[e.Dash = 45] = "Dash", e[e.Slash = 47] = "Slash", e[e.Zero = 48] = "Zero", e[e.Nine = 57] = "Nine", e[e.Semi = 59] = "Semi", e[e.Lt = 60] = "Lt", e[e.Eq = 61] = "Eq", e[e.Gt = 62] = "Gt", e[e.Questionmark = 63] = "Questionmark", e[e.UpperA = 65] = "UpperA", e[e.LowerA = 97] = "LowerA", e[e.UpperF = 70] = "UpperF", e[e.LowerF = 102] = "LowerF", e[e.UpperZ = 90] = "UpperZ", e[e.LowerZ = 122] = "LowerZ", e[e.LowerX = 120] = "LowerX", e[e.OpeningSquareBracket = 91] = "OpeningSquareBracket";
|
|
714
715
|
})(b || (b = {}));
|
|
715
716
|
var d;
|
|
716
|
-
(function(
|
|
717
|
-
|
|
717
|
+
(function(e) {
|
|
718
|
+
e[e.Text = 1] = "Text", e[e.BeforeTagName = 2] = "BeforeTagName", e[e.InTagName = 3] = "InTagName", e[e.InSelfClosingTag = 4] = "InSelfClosingTag", e[e.BeforeClosingTagName = 5] = "BeforeClosingTagName", e[e.InClosingTagName = 6] = "InClosingTagName", e[e.AfterClosingTagName = 7] = "AfterClosingTagName", e[e.BeforeAttributeName = 8] = "BeforeAttributeName", e[e.InAttributeName = 9] = "InAttributeName", e[e.AfterAttributeName = 10] = "AfterAttributeName", e[e.BeforeAttributeValue = 11] = "BeforeAttributeValue", e[e.InAttributeValueDq = 12] = "InAttributeValueDq", e[e.InAttributeValueSq = 13] = "InAttributeValueSq", e[e.InAttributeValueNq = 14] = "InAttributeValueNq", e[e.BeforeDeclaration = 15] = "BeforeDeclaration", e[e.InDeclaration = 16] = "InDeclaration", e[e.InProcessingInstruction = 17] = "InProcessingInstruction", e[e.BeforeComment = 18] = "BeforeComment", e[e.CDATASequence = 19] = "CDATASequence", e[e.InSpecialComment = 20] = "InSpecialComment", e[e.InCommentLike = 21] = "InCommentLike", e[e.BeforeSpecialS = 22] = "BeforeSpecialS", e[e.BeforeSpecialT = 23] = "BeforeSpecialT", e[e.SpecialStartSequence = 24] = "SpecialStartSequence", e[e.InSpecialTag = 25] = "InSpecialTag", e[e.InEntity = 26] = "InEntity";
|
|
718
719
|
})(d || (d = {}));
|
|
719
|
-
function
|
|
720
|
-
return
|
|
720
|
+
function _(e) {
|
|
721
|
+
return e === b.Space || e === b.NewLine || e === b.Tab || e === b.FormFeed || e === b.CarriageReturn;
|
|
721
722
|
}
|
|
722
|
-
function K(
|
|
723
|
-
return
|
|
723
|
+
function K(e) {
|
|
724
|
+
return e === b.Slash || e === b.Gt || _(e);
|
|
724
725
|
}
|
|
725
|
-
function De(
|
|
726
|
-
return
|
|
726
|
+
function De(e) {
|
|
727
|
+
return e >= b.LowerA && e <= b.LowerZ || e >= b.UpperA && e <= b.UpperZ;
|
|
727
728
|
}
|
|
728
729
|
var L;
|
|
729
|
-
(function(
|
|
730
|
-
|
|
730
|
+
(function(e) {
|
|
731
|
+
e[e.NoValue = 0] = "NoValue", e[e.Unquoted = 1] = "Unquoted", e[e.Single = 2] = "Single", e[e.Double = 3] = "Double";
|
|
731
732
|
})(L || (L = {}));
|
|
732
733
|
const w = {
|
|
733
734
|
Cdata: new Uint8Array([67, 68, 65, 84, 65, 91]),
|
|
@@ -759,14 +760,14 @@ const w = {
|
|
|
759
760
|
// `</xmp`
|
|
760
761
|
};
|
|
761
762
|
class Le {
|
|
762
|
-
constructor({ xmlMode:
|
|
763
|
-
this.cbs = a, this.state = d.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.entityStart = 0, this.baseState = d.Text, this.isSpecial = !1, this.running = !0, this.offset = 0, this.currentSequence = void 0, this.sequenceIndex = 0, this.xmlMode =
|
|
763
|
+
constructor({ xmlMode: u = !1, decodeEntities: t = !0 }, a) {
|
|
764
|
+
this.cbs = a, this.state = d.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.entityStart = 0, this.baseState = d.Text, this.isSpecial = !1, this.running = !0, this.offset = 0, this.currentSequence = void 0, this.sequenceIndex = 0, this.xmlMode = u, this.decodeEntities = t, this.entityDecoder = new je(u ? we : ve, (i, r) => this.emitCodePoint(i, r));
|
|
764
765
|
}
|
|
765
766
|
reset() {
|
|
766
767
|
this.state = d.Text, this.buffer = "", this.sectionStart = 0, this.index = 0, this.baseState = d.Text, this.currentSequence = void 0, this.running = !0, this.offset = 0;
|
|
767
768
|
}
|
|
768
|
-
write(
|
|
769
|
-
this.offset += this.buffer.length, this.buffer =
|
|
769
|
+
write(u) {
|
|
770
|
+
this.offset += this.buffer.length, this.buffer = u, this.parse();
|
|
770
771
|
}
|
|
771
772
|
end() {
|
|
772
773
|
this.running && this.finish();
|
|
@@ -777,43 +778,43 @@ class Le {
|
|
|
777
778
|
resume() {
|
|
778
779
|
this.running = !0, this.index < this.buffer.length + this.offset && this.parse();
|
|
779
780
|
}
|
|
780
|
-
stateText(
|
|
781
|
-
|
|
781
|
+
stateText(u) {
|
|
782
|
+
u === b.Lt || !this.decodeEntities && this.fastForwardTo(b.Lt) ? (this.index > this.sectionStart && this.cbs.ontext(this.sectionStart, this.index), this.state = d.BeforeTagName, this.sectionStart = this.index) : this.decodeEntities && u === b.Amp && this.startEntity();
|
|
782
783
|
}
|
|
783
|
-
stateSpecialStartSequence(
|
|
784
|
+
stateSpecialStartSequence(u) {
|
|
784
785
|
const t = this.sequenceIndex === this.currentSequence.length;
|
|
785
786
|
if (!(t ? (
|
|
786
787
|
// If we are at the end of the sequence, make sure the tag name has ended
|
|
787
|
-
K(
|
|
788
|
+
K(u)
|
|
788
789
|
) : (
|
|
789
790
|
// Otherwise, do a case-insensitive comparison
|
|
790
|
-
(
|
|
791
|
+
(u | 32) === this.currentSequence[this.sequenceIndex]
|
|
791
792
|
)))
|
|
792
793
|
this.isSpecial = !1;
|
|
793
794
|
else if (!t) {
|
|
794
795
|
this.sequenceIndex++;
|
|
795
796
|
return;
|
|
796
797
|
}
|
|
797
|
-
this.sequenceIndex = 0, this.state = d.InTagName, this.stateInTagName(
|
|
798
|
+
this.sequenceIndex = 0, this.state = d.InTagName, this.stateInTagName(u);
|
|
798
799
|
}
|
|
799
800
|
/** Look for an end tag. For <title> tags, also decode entities. */
|
|
800
|
-
stateInSpecialTag(
|
|
801
|
+
stateInSpecialTag(u) {
|
|
801
802
|
if (this.sequenceIndex === this.currentSequence.length) {
|
|
802
|
-
if (
|
|
803
|
+
if (u === b.Gt || _(u)) {
|
|
803
804
|
const t = this.index - this.currentSequence.length;
|
|
804
805
|
if (this.sectionStart < t) {
|
|
805
806
|
const a = this.index;
|
|
806
807
|
this.index = t, this.cbs.ontext(this.sectionStart, t), this.index = a;
|
|
807
808
|
}
|
|
808
|
-
this.isSpecial = !1, this.sectionStart = t + 2, this.stateInClosingTagName(
|
|
809
|
+
this.isSpecial = !1, this.sectionStart = t + 2, this.stateInClosingTagName(u);
|
|
809
810
|
return;
|
|
810
811
|
}
|
|
811
812
|
this.sequenceIndex = 0;
|
|
812
813
|
}
|
|
813
|
-
(
|
|
814
|
+
(u | 32) === this.currentSequence[this.sequenceIndex] ? this.sequenceIndex += 1 : this.sequenceIndex === 0 ? this.currentSequence === w.TitleEnd ? this.decodeEntities && u === b.Amp && this.startEntity() : this.fastForwardTo(b.Lt) && (this.sequenceIndex = 1) : this.sequenceIndex = +(u === b.Lt);
|
|
814
815
|
}
|
|
815
|
-
stateCDATASequence(
|
|
816
|
-
|
|
816
|
+
stateCDATASequence(u) {
|
|
817
|
+
u === w.Cdata[this.sequenceIndex] ? ++this.sequenceIndex === w.Cdata.length && (this.state = d.InCommentLike, this.currentSequence = w.CdataEnd, this.sequenceIndex = 0, this.sectionStart = this.index + 1) : (this.sequenceIndex = 0, this.state = d.InDeclaration, this.stateInDeclaration(u));
|
|
817
818
|
}
|
|
818
819
|
/**
|
|
819
820
|
* When we wait for one specific character, we can speed things up
|
|
@@ -821,9 +822,9 @@ class Le {
|
|
|
821
822
|
*
|
|
822
823
|
* @returns Whether the character was found.
|
|
823
824
|
*/
|
|
824
|
-
fastForwardTo(
|
|
825
|
+
fastForwardTo(u) {
|
|
825
826
|
for (; ++this.index < this.buffer.length + this.offset; )
|
|
826
|
-
if (this.buffer.charCodeAt(this.index - this.offset) ===
|
|
827
|
+
if (this.buffer.charCodeAt(this.index - this.offset) === u)
|
|
827
828
|
return !0;
|
|
828
829
|
return this.index = this.buffer.length + this.offset - 1, !1;
|
|
829
830
|
}
|
|
@@ -835,8 +836,8 @@ class Le {
|
|
|
835
836
|
* - That character is then repeated, so we have to check multiple repeats.
|
|
836
837
|
* - All characters but the start character of the sequence can be skipped.
|
|
837
838
|
*/
|
|
838
|
-
stateInCommentLike(
|
|
839
|
-
|
|
839
|
+
stateInCommentLike(u) {
|
|
840
|
+
u === this.currentSequence[this.sequenceIndex] ? ++this.sequenceIndex === this.currentSequence.length && (this.currentSequence === w.CdataEnd ? this.cbs.oncdata(this.sectionStart, this.index, 2) : this.cbs.oncomment(this.sectionStart, this.index, 2), this.sequenceIndex = 0, this.sectionStart = this.index + 1, this.state = d.Text) : this.sequenceIndex === 0 ? this.fastForwardTo(this.currentSequence[0]) && (this.sequenceIndex = 1) : u !== this.currentSequence[this.sequenceIndex - 1] && (this.sequenceIndex = 0);
|
|
840
841
|
}
|
|
841
842
|
/**
|
|
842
843
|
* HTML only allows ASCII alpha characters (a-z and A-Z) at the beginning of a tag name.
|
|
@@ -844,82 +845,82 @@ class Le {
|
|
|
844
845
|
* XML allows a lot more characters here (@see https://www.w3.org/TR/REC-xml/#NT-NameStartChar).
|
|
845
846
|
* We allow anything that wouldn't end the tag.
|
|
846
847
|
*/
|
|
847
|
-
isTagStartChar(
|
|
848
|
-
return this.xmlMode ? !K(
|
|
848
|
+
isTagStartChar(u) {
|
|
849
|
+
return this.xmlMode ? !K(u) : De(u);
|
|
849
850
|
}
|
|
850
|
-
startSpecial(
|
|
851
|
-
this.isSpecial = !0, this.currentSequence =
|
|
851
|
+
startSpecial(u, t) {
|
|
852
|
+
this.isSpecial = !0, this.currentSequence = u, this.sequenceIndex = t, this.state = d.SpecialStartSequence;
|
|
852
853
|
}
|
|
853
|
-
stateBeforeTagName(
|
|
854
|
-
if (
|
|
854
|
+
stateBeforeTagName(u) {
|
|
855
|
+
if (u === b.ExclamationMark)
|
|
855
856
|
this.state = d.BeforeDeclaration, this.sectionStart = this.index + 1;
|
|
856
|
-
else if (
|
|
857
|
+
else if (u === b.Questionmark)
|
|
857
858
|
this.state = d.InProcessingInstruction, this.sectionStart = this.index + 1;
|
|
858
|
-
else if (this.isTagStartChar(
|
|
859
|
-
const t =
|
|
859
|
+
else if (this.isTagStartChar(u)) {
|
|
860
|
+
const t = u | 32;
|
|
860
861
|
this.sectionStart = this.index, this.xmlMode ? this.state = d.InTagName : t === w.ScriptEnd[2] ? this.state = d.BeforeSpecialS : t === w.TitleEnd[2] || t === w.XmpEnd[2] ? this.state = d.BeforeSpecialT : this.state = d.InTagName;
|
|
861
|
-
} else
|
|
862
|
+
} else u === b.Slash ? this.state = d.BeforeClosingTagName : (this.state = d.Text, this.stateText(u));
|
|
862
863
|
}
|
|
863
|
-
stateInTagName(
|
|
864
|
-
K(
|
|
864
|
+
stateInTagName(u) {
|
|
865
|
+
K(u) && (this.cbs.onopentagname(this.sectionStart, this.index), this.sectionStart = -1, this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u));
|
|
865
866
|
}
|
|
866
|
-
stateBeforeClosingTagName(
|
|
867
|
-
|
|
867
|
+
stateBeforeClosingTagName(u) {
|
|
868
|
+
_(u) || (u === b.Gt ? this.state = d.Text : (this.state = this.isTagStartChar(u) ? d.InClosingTagName : d.InSpecialComment, this.sectionStart = this.index));
|
|
868
869
|
}
|
|
869
|
-
stateInClosingTagName(
|
|
870
|
-
(
|
|
870
|
+
stateInClosingTagName(u) {
|
|
871
|
+
(u === b.Gt || _(u)) && (this.cbs.onclosetag(this.sectionStart, this.index), this.sectionStart = -1, this.state = d.AfterClosingTagName, this.stateAfterClosingTagName(u));
|
|
871
872
|
}
|
|
872
|
-
stateAfterClosingTagName(
|
|
873
|
-
(
|
|
873
|
+
stateAfterClosingTagName(u) {
|
|
874
|
+
(u === b.Gt || this.fastForwardTo(b.Gt)) && (this.state = d.Text, this.sectionStart = this.index + 1);
|
|
874
875
|
}
|
|
875
|
-
stateBeforeAttributeName(
|
|
876
|
-
|
|
876
|
+
stateBeforeAttributeName(u) {
|
|
877
|
+
u === b.Gt ? (this.cbs.onopentagend(this.index), this.isSpecial ? (this.state = d.InSpecialTag, this.sequenceIndex = 0) : this.state = d.Text, this.sectionStart = this.index + 1) : u === b.Slash ? this.state = d.InSelfClosingTag : _(u) || (this.state = d.InAttributeName, this.sectionStart = this.index);
|
|
877
878
|
}
|
|
878
|
-
stateInSelfClosingTag(
|
|
879
|
-
|
|
879
|
+
stateInSelfClosingTag(u) {
|
|
880
|
+
u === b.Gt ? (this.cbs.onselfclosingtag(this.index), this.state = d.Text, this.sectionStart = this.index + 1, this.isSpecial = !1) : _(u) || (this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u));
|
|
880
881
|
}
|
|
881
|
-
stateInAttributeName(
|
|
882
|
-
(
|
|
882
|
+
stateInAttributeName(u) {
|
|
883
|
+
(u === b.Eq || K(u)) && (this.cbs.onattribname(this.sectionStart, this.index), this.sectionStart = this.index, this.state = d.AfterAttributeName, this.stateAfterAttributeName(u));
|
|
883
884
|
}
|
|
884
|
-
stateAfterAttributeName(
|
|
885
|
-
|
|
885
|
+
stateAfterAttributeName(u) {
|
|
886
|
+
u === b.Eq ? this.state = d.BeforeAttributeValue : u === b.Slash || u === b.Gt ? (this.cbs.onattribend(L.NoValue, this.sectionStart), this.sectionStart = -1, this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u)) : _(u) || (this.cbs.onattribend(L.NoValue, this.sectionStart), this.state = d.InAttributeName, this.sectionStart = this.index);
|
|
886
887
|
}
|
|
887
|
-
stateBeforeAttributeValue(
|
|
888
|
-
|
|
888
|
+
stateBeforeAttributeValue(u) {
|
|
889
|
+
u === b.DoubleQuote ? (this.state = d.InAttributeValueDq, this.sectionStart = this.index + 1) : u === b.SingleQuote ? (this.state = d.InAttributeValueSq, this.sectionStart = this.index + 1) : _(u) || (this.sectionStart = this.index, this.state = d.InAttributeValueNq, this.stateInAttributeValueNoQuotes(u));
|
|
889
890
|
}
|
|
890
|
-
handleInAttributeValue(
|
|
891
|
-
|
|
891
|
+
handleInAttributeValue(u, t) {
|
|
892
|
+
u === t || !this.decodeEntities && this.fastForwardTo(t) ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(t === b.DoubleQuote ? L.Double : L.Single, this.index + 1), this.state = d.BeforeAttributeName) : this.decodeEntities && u === b.Amp && this.startEntity();
|
|
892
893
|
}
|
|
893
|
-
stateInAttributeValueDoubleQuotes(
|
|
894
|
-
this.handleInAttributeValue(
|
|
894
|
+
stateInAttributeValueDoubleQuotes(u) {
|
|
895
|
+
this.handleInAttributeValue(u, b.DoubleQuote);
|
|
895
896
|
}
|
|
896
|
-
stateInAttributeValueSingleQuotes(
|
|
897
|
-
this.handleInAttributeValue(
|
|
897
|
+
stateInAttributeValueSingleQuotes(u) {
|
|
898
|
+
this.handleInAttributeValue(u, b.SingleQuote);
|
|
898
899
|
}
|
|
899
|
-
stateInAttributeValueNoQuotes(
|
|
900
|
-
|
|
900
|
+
stateInAttributeValueNoQuotes(u) {
|
|
901
|
+
_(u) || u === b.Gt ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(L.Unquoted, this.index), this.state = d.BeforeAttributeName, this.stateBeforeAttributeName(u)) : this.decodeEntities && u === b.Amp && this.startEntity();
|
|
901
902
|
}
|
|
902
|
-
stateBeforeDeclaration(
|
|
903
|
-
|
|
903
|
+
stateBeforeDeclaration(u) {
|
|
904
|
+
u === b.OpeningSquareBracket ? (this.state = d.CDATASequence, this.sequenceIndex = 0) : this.state = u === b.Dash ? d.BeforeComment : d.InDeclaration;
|
|
904
905
|
}
|
|
905
|
-
stateInDeclaration(
|
|
906
|
-
(
|
|
906
|
+
stateInDeclaration(u) {
|
|
907
|
+
(u === b.Gt || this.fastForwardTo(b.Gt)) && (this.cbs.ondeclaration(this.sectionStart, this.index), this.state = d.Text, this.sectionStart = this.index + 1);
|
|
907
908
|
}
|
|
908
|
-
stateInProcessingInstruction(
|
|
909
|
-
(
|
|
909
|
+
stateInProcessingInstruction(u) {
|
|
910
|
+
(u === b.Gt || this.fastForwardTo(b.Gt)) && (this.cbs.onprocessinginstruction(this.sectionStart, this.index), this.state = d.Text, this.sectionStart = this.index + 1);
|
|
910
911
|
}
|
|
911
|
-
stateBeforeComment(
|
|
912
|
-
|
|
912
|
+
stateBeforeComment(u) {
|
|
913
|
+
u === b.Dash ? (this.state = d.InCommentLike, this.currentSequence = w.CommentEnd, this.sequenceIndex = 2, this.sectionStart = this.index + 1) : this.state = d.InDeclaration;
|
|
913
914
|
}
|
|
914
|
-
stateInSpecialComment(
|
|
915
|
-
(
|
|
915
|
+
stateInSpecialComment(u) {
|
|
916
|
+
(u === b.Gt || this.fastForwardTo(b.Gt)) && (this.cbs.oncomment(this.sectionStart, this.index, 0), this.state = d.Text, this.sectionStart = this.index + 1);
|
|
916
917
|
}
|
|
917
|
-
stateBeforeSpecialS(
|
|
918
|
-
const t =
|
|
919
|
-
t === w.ScriptEnd[3] ? this.startSpecial(w.ScriptEnd, 4) : t === w.StyleEnd[3] ? this.startSpecial(w.StyleEnd, 4) : (this.state = d.InTagName, this.stateInTagName(
|
|
918
|
+
stateBeforeSpecialS(u) {
|
|
919
|
+
const t = u | 32;
|
|
920
|
+
t === w.ScriptEnd[3] ? this.startSpecial(w.ScriptEnd, 4) : t === w.StyleEnd[3] ? this.startSpecial(w.StyleEnd, 4) : (this.state = d.InTagName, this.stateInTagName(u));
|
|
920
921
|
}
|
|
921
|
-
stateBeforeSpecialT(
|
|
922
|
-
switch (
|
|
922
|
+
stateBeforeSpecialT(u) {
|
|
923
|
+
switch (u | 32) {
|
|
923
924
|
case w.TitleEnd[3]: {
|
|
924
925
|
this.startSpecial(w.TitleEnd, 4);
|
|
925
926
|
break;
|
|
@@ -933,15 +934,15 @@ class Le {
|
|
|
933
934
|
break;
|
|
934
935
|
}
|
|
935
936
|
default:
|
|
936
|
-
this.state = d.InTagName, this.stateInTagName(
|
|
937
|
+
this.state = d.InTagName, this.stateInTagName(u);
|
|
937
938
|
}
|
|
938
939
|
}
|
|
939
940
|
startEntity() {
|
|
940
941
|
this.baseState = this.state, this.state = d.InEntity, this.entityStart = this.index, this.entityDecoder.startEntity(this.xmlMode ? D.Strict : this.baseState === d.Text || this.baseState === d.InSpecialTag ? D.Legacy : D.Attribute);
|
|
941
942
|
}
|
|
942
943
|
stateInEntity() {
|
|
943
|
-
const
|
|
944
|
-
|
|
944
|
+
const u = this.entityDecoder.write(this.buffer, this.index - this.offset);
|
|
945
|
+
u >= 0 ? (this.state = this.baseState, u === 0 && (this.index = this.entityStart)) : this.index = this.offset + this.buffer.length - 1;
|
|
945
946
|
}
|
|
946
947
|
/**
|
|
947
948
|
* Remove data that has already been consumed from the buffer.
|
|
@@ -959,106 +960,106 @@ class Le {
|
|
|
959
960
|
*/
|
|
960
961
|
parse() {
|
|
961
962
|
for (; this.shouldContinue(); ) {
|
|
962
|
-
const
|
|
963
|
+
const u = this.buffer.charCodeAt(this.index - this.offset);
|
|
963
964
|
switch (this.state) {
|
|
964
965
|
case d.Text: {
|
|
965
|
-
this.stateText(
|
|
966
|
+
this.stateText(u);
|
|
966
967
|
break;
|
|
967
968
|
}
|
|
968
969
|
case d.SpecialStartSequence: {
|
|
969
|
-
this.stateSpecialStartSequence(
|
|
970
|
+
this.stateSpecialStartSequence(u);
|
|
970
971
|
break;
|
|
971
972
|
}
|
|
972
973
|
case d.InSpecialTag: {
|
|
973
|
-
this.stateInSpecialTag(
|
|
974
|
+
this.stateInSpecialTag(u);
|
|
974
975
|
break;
|
|
975
976
|
}
|
|
976
977
|
case d.CDATASequence: {
|
|
977
|
-
this.stateCDATASequence(
|
|
978
|
+
this.stateCDATASequence(u);
|
|
978
979
|
break;
|
|
979
980
|
}
|
|
980
981
|
case d.InAttributeValueDq: {
|
|
981
|
-
this.stateInAttributeValueDoubleQuotes(
|
|
982
|
+
this.stateInAttributeValueDoubleQuotes(u);
|
|
982
983
|
break;
|
|
983
984
|
}
|
|
984
985
|
case d.InAttributeName: {
|
|
985
|
-
this.stateInAttributeName(
|
|
986
|
+
this.stateInAttributeName(u);
|
|
986
987
|
break;
|
|
987
988
|
}
|
|
988
989
|
case d.InCommentLike: {
|
|
989
|
-
this.stateInCommentLike(
|
|
990
|
+
this.stateInCommentLike(u);
|
|
990
991
|
break;
|
|
991
992
|
}
|
|
992
993
|
case d.InSpecialComment: {
|
|
993
|
-
this.stateInSpecialComment(
|
|
994
|
+
this.stateInSpecialComment(u);
|
|
994
995
|
break;
|
|
995
996
|
}
|
|
996
997
|
case d.BeforeAttributeName: {
|
|
997
|
-
this.stateBeforeAttributeName(
|
|
998
|
+
this.stateBeforeAttributeName(u);
|
|
998
999
|
break;
|
|
999
1000
|
}
|
|
1000
1001
|
case d.InTagName: {
|
|
1001
|
-
this.stateInTagName(
|
|
1002
|
+
this.stateInTagName(u);
|
|
1002
1003
|
break;
|
|
1003
1004
|
}
|
|
1004
1005
|
case d.InClosingTagName: {
|
|
1005
|
-
this.stateInClosingTagName(
|
|
1006
|
+
this.stateInClosingTagName(u);
|
|
1006
1007
|
break;
|
|
1007
1008
|
}
|
|
1008
1009
|
case d.BeforeTagName: {
|
|
1009
|
-
this.stateBeforeTagName(
|
|
1010
|
+
this.stateBeforeTagName(u);
|
|
1010
1011
|
break;
|
|
1011
1012
|
}
|
|
1012
1013
|
case d.AfterAttributeName: {
|
|
1013
|
-
this.stateAfterAttributeName(
|
|
1014
|
+
this.stateAfterAttributeName(u);
|
|
1014
1015
|
break;
|
|
1015
1016
|
}
|
|
1016
1017
|
case d.InAttributeValueSq: {
|
|
1017
|
-
this.stateInAttributeValueSingleQuotes(
|
|
1018
|
+
this.stateInAttributeValueSingleQuotes(u);
|
|
1018
1019
|
break;
|
|
1019
1020
|
}
|
|
1020
1021
|
case d.BeforeAttributeValue: {
|
|
1021
|
-
this.stateBeforeAttributeValue(
|
|
1022
|
+
this.stateBeforeAttributeValue(u);
|
|
1022
1023
|
break;
|
|
1023
1024
|
}
|
|
1024
1025
|
case d.BeforeClosingTagName: {
|
|
1025
|
-
this.stateBeforeClosingTagName(
|
|
1026
|
+
this.stateBeforeClosingTagName(u);
|
|
1026
1027
|
break;
|
|
1027
1028
|
}
|
|
1028
1029
|
case d.AfterClosingTagName: {
|
|
1029
|
-
this.stateAfterClosingTagName(
|
|
1030
|
+
this.stateAfterClosingTagName(u);
|
|
1030
1031
|
break;
|
|
1031
1032
|
}
|
|
1032
1033
|
case d.BeforeSpecialS: {
|
|
1033
|
-
this.stateBeforeSpecialS(
|
|
1034
|
+
this.stateBeforeSpecialS(u);
|
|
1034
1035
|
break;
|
|
1035
1036
|
}
|
|
1036
1037
|
case d.BeforeSpecialT: {
|
|
1037
|
-
this.stateBeforeSpecialT(
|
|
1038
|
+
this.stateBeforeSpecialT(u);
|
|
1038
1039
|
break;
|
|
1039
1040
|
}
|
|
1040
1041
|
case d.InAttributeValueNq: {
|
|
1041
|
-
this.stateInAttributeValueNoQuotes(
|
|
1042
|
+
this.stateInAttributeValueNoQuotes(u);
|
|
1042
1043
|
break;
|
|
1043
1044
|
}
|
|
1044
1045
|
case d.InSelfClosingTag: {
|
|
1045
|
-
this.stateInSelfClosingTag(
|
|
1046
|
+
this.stateInSelfClosingTag(u);
|
|
1046
1047
|
break;
|
|
1047
1048
|
}
|
|
1048
1049
|
case d.InDeclaration: {
|
|
1049
|
-
this.stateInDeclaration(
|
|
1050
|
+
this.stateInDeclaration(u);
|
|
1050
1051
|
break;
|
|
1051
1052
|
}
|
|
1052
1053
|
case d.BeforeDeclaration: {
|
|
1053
|
-
this.stateBeforeDeclaration(
|
|
1054
|
+
this.stateBeforeDeclaration(u);
|
|
1054
1055
|
break;
|
|
1055
1056
|
}
|
|
1056
1057
|
case d.BeforeComment: {
|
|
1057
|
-
this.stateBeforeComment(
|
|
1058
|
+
this.stateBeforeComment(u);
|
|
1058
1059
|
break;
|
|
1059
1060
|
}
|
|
1060
1061
|
case d.InProcessingInstruction: {
|
|
1061
|
-
this.stateInProcessingInstruction(
|
|
1062
|
+
this.stateInProcessingInstruction(u);
|
|
1062
1063
|
break;
|
|
1063
1064
|
}
|
|
1064
1065
|
case d.InEntity: {
|
|
@@ -1075,11 +1076,11 @@ class Le {
|
|
|
1075
1076
|
}
|
|
1076
1077
|
/** Handle any trailing data. */
|
|
1077
1078
|
handleTrailingData() {
|
|
1078
|
-
const
|
|
1079
|
-
this.sectionStart >=
|
|
1079
|
+
const u = this.buffer.length + this.offset;
|
|
1080
|
+
this.sectionStart >= u || (this.state === d.InCommentLike ? this.currentSequence === w.CdataEnd ? this.cbs.oncdata(this.sectionStart, u, 0) : this.cbs.oncomment(this.sectionStart, u, 0) : this.state === d.InTagName || this.state === d.BeforeAttributeName || this.state === d.BeforeAttributeValue || this.state === d.AfterAttributeName || this.state === d.InAttributeName || this.state === d.InAttributeValueSq || this.state === d.InAttributeValueDq || this.state === d.InAttributeValueNq || this.state === d.InClosingTagName || this.cbs.ontext(this.sectionStart, u));
|
|
1080
1081
|
}
|
|
1081
|
-
emitCodePoint(
|
|
1082
|
-
this.baseState !== d.Text && this.baseState !== d.InSpecialTag ? (this.sectionStart < this.entityStart && this.cbs.onattribdata(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + t, this.index = this.sectionStart - 1, this.cbs.onattribentity(
|
|
1082
|
+
emitCodePoint(u, t) {
|
|
1083
|
+
this.baseState !== d.Text && this.baseState !== d.InSpecialTag ? (this.sectionStart < this.entityStart && this.cbs.onattribdata(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + t, this.index = this.sectionStart - 1, this.cbs.onattribentity(u)) : (this.sectionStart < this.entityStart && this.cbs.ontext(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + t, this.index = this.sectionStart - 1, this.cbs.ontextentity(u, this.sectionStart));
|
|
1083
1084
|
}
|
|
1084
1085
|
}
|
|
1085
1086
|
const W = /* @__PURE__ */ new Set([
|
|
@@ -1090,7 +1091,7 @@ const W = /* @__PURE__ */ new Set([
|
|
|
1090
1091
|
"button",
|
|
1091
1092
|
"datalist",
|
|
1092
1093
|
"textarea"
|
|
1093
|
-
]), E = /* @__PURE__ */ new Set(["p"]), Eu = /* @__PURE__ */ new Set(["thead", "tbody"]), Iu = /* @__PURE__ */ new Set(["dd", "dt"]), vu = /* @__PURE__ */ new Set(["rt", "rp"]),
|
|
1094
|
+
]), E = /* @__PURE__ */ new Set(["p"]), Eu = /* @__PURE__ */ new Set(["thead", "tbody"]), Iu = /* @__PURE__ */ new Set(["dd", "dt"]), vu = /* @__PURE__ */ new Set(["rt", "rp"]), Ce = /* @__PURE__ */ new Map([
|
|
1094
1095
|
["tr", /* @__PURE__ */ new Set(["tr", "th", "td"])],
|
|
1095
1096
|
["th", /* @__PURE__ */ new Set(["th"])],
|
|
1096
1097
|
["td", /* @__PURE__ */ new Set(["thead", "th", "td"])],
|
|
@@ -1138,7 +1139,7 @@ const W = /* @__PURE__ */ new Set([
|
|
|
1138
1139
|
["rp", vu],
|
|
1139
1140
|
["tbody", Eu],
|
|
1140
1141
|
["tfoot", Eu]
|
|
1141
|
-
]),
|
|
1142
|
+
]), _e = /* @__PURE__ */ new Set([
|
|
1142
1143
|
"area",
|
|
1143
1144
|
"base",
|
|
1144
1145
|
"basefont",
|
|
@@ -1169,60 +1170,60 @@ const W = /* @__PURE__ */ new Set([
|
|
|
1169
1170
|
"desc",
|
|
1170
1171
|
"title"
|
|
1171
1172
|
]), Be = /\s|\//;
|
|
1172
|
-
class
|
|
1173
|
-
constructor(
|
|
1173
|
+
class Pe {
|
|
1174
|
+
constructor(u, t = {}) {
|
|
1174
1175
|
var a, i, r, s, c, o;
|
|
1175
|
-
this.options = t, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = "", this.attribname = "", this.attribvalue = "", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs =
|
|
1176
|
+
this.options = t, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = "", this.attribname = "", this.attribvalue = "", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = u ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (a = t.lowerCaseTags) !== null && a !== void 0 ? a : this.htmlMode, this.lowerCaseAttributeNames = (i = t.lowerCaseAttributeNames) !== null && i !== void 0 ? i : this.htmlMode, this.recognizeSelfClosing = (r = t.recognizeSelfClosing) !== null && r !== void 0 ? r : !this.htmlMode, this.tokenizer = new ((s = t.Tokenizer) !== null && s !== void 0 ? s : Le)(this.options, this), this.foreignContext = [!this.htmlMode], (o = (c = this.cbs).onparserinit) === null || o === void 0 || o.call(c, this);
|
|
1176
1177
|
}
|
|
1177
1178
|
// Tokenizer event handlers
|
|
1178
1179
|
/** @internal */
|
|
1179
|
-
ontext(
|
|
1180
|
+
ontext(u, t) {
|
|
1180
1181
|
var a, i;
|
|
1181
|
-
const r = this.getSlice(
|
|
1182
|
+
const r = this.getSlice(u, t);
|
|
1182
1183
|
this.endIndex = t - 1, (i = (a = this.cbs).ontext) === null || i === void 0 || i.call(a, r), this.startIndex = t;
|
|
1183
1184
|
}
|
|
1184
1185
|
/** @internal */
|
|
1185
|
-
ontextentity(
|
|
1186
|
+
ontextentity(u, t) {
|
|
1186
1187
|
var a, i;
|
|
1187
|
-
this.endIndex = t - 1, (i = (a = this.cbs).ontext) === null || i === void 0 || i.call(a, Su(
|
|
1188
|
+
this.endIndex = t - 1, (i = (a = this.cbs).ontext) === null || i === void 0 || i.call(a, Su(u)), this.startIndex = t;
|
|
1188
1189
|
}
|
|
1189
1190
|
/**
|
|
1190
1191
|
* Checks if the current tag is a void element. Override this if you want
|
|
1191
1192
|
* to specify your own additional void elements.
|
|
1192
1193
|
*/
|
|
1193
|
-
isVoidElement(
|
|
1194
|
-
return this.htmlMode &&
|
|
1194
|
+
isVoidElement(u) {
|
|
1195
|
+
return this.htmlMode && _e.has(u);
|
|
1195
1196
|
}
|
|
1196
1197
|
/** @internal */
|
|
1197
|
-
onopentagname(
|
|
1198
|
+
onopentagname(u, t) {
|
|
1198
1199
|
this.endIndex = t;
|
|
1199
|
-
let a = this.getSlice(
|
|
1200
|
+
let a = this.getSlice(u, t);
|
|
1200
1201
|
this.lowerCaseTagNames && (a = a.toLowerCase()), this.emitOpenTag(a);
|
|
1201
1202
|
}
|
|
1202
|
-
emitOpenTag(
|
|
1203
|
+
emitOpenTag(u) {
|
|
1203
1204
|
var t, a, i, r;
|
|
1204
|
-
this.openTagStart = this.startIndex, this.tagname =
|
|
1205
|
-
const s = this.htmlMode &&
|
|
1205
|
+
this.openTagStart = this.startIndex, this.tagname = u;
|
|
1206
|
+
const s = this.htmlMode && Ce.get(u);
|
|
1206
1207
|
if (s)
|
|
1207
1208
|
for (; this.stack.length > 0 && s.has(this.stack[0]); ) {
|
|
1208
1209
|
const c = this.stack.shift();
|
|
1209
1210
|
(a = (t = this.cbs).onclosetag) === null || a === void 0 || a.call(t, c, !0);
|
|
1210
1211
|
}
|
|
1211
|
-
this.isVoidElement(
|
|
1212
|
+
this.isVoidElement(u) || (this.stack.unshift(u), this.htmlMode && (wu.has(u) ? this.foreignContext.unshift(!0) : Au.has(u) && this.foreignContext.unshift(!1))), (r = (i = this.cbs).onopentagname) === null || r === void 0 || r.call(i, u), this.cbs.onopentag && (this.attribs = {});
|
|
1212
1213
|
}
|
|
1213
|
-
endOpenTag(
|
|
1214
|
+
endOpenTag(u) {
|
|
1214
1215
|
var t, a;
|
|
1215
|
-
this.startIndex = this.openTagStart, this.attribs && ((a = (t = this.cbs).onopentag) === null || a === void 0 || a.call(t, this.tagname, this.attribs,
|
|
1216
|
+
this.startIndex = this.openTagStart, this.attribs && ((a = (t = this.cbs).onopentag) === null || a === void 0 || a.call(t, this.tagname, this.attribs, u), this.attribs = null), this.cbs.onclosetag && this.isVoidElement(this.tagname) && this.cbs.onclosetag(this.tagname, !0), this.tagname = "";
|
|
1216
1217
|
}
|
|
1217
1218
|
/** @internal */
|
|
1218
|
-
onopentagend(
|
|
1219
|
-
this.endIndex =
|
|
1219
|
+
onopentagend(u) {
|
|
1220
|
+
this.endIndex = u, this.endOpenTag(!1), this.startIndex = u + 1;
|
|
1220
1221
|
}
|
|
1221
1222
|
/** @internal */
|
|
1222
|
-
onclosetag(
|
|
1223
|
+
onclosetag(u, t) {
|
|
1223
1224
|
var a, i, r, s, c, o, n, f;
|
|
1224
1225
|
this.endIndex = t;
|
|
1225
|
-
let l = this.getSlice(
|
|
1226
|
+
let l = this.getSlice(u, t);
|
|
1226
1227
|
if (this.lowerCaseTagNames && (l = l.toLowerCase()), this.htmlMode && (wu.has(l) || Au.has(l)) && this.foreignContext.shift(), this.isVoidElement(l))
|
|
1227
1228
|
this.htmlMode && l === "br" && ((s = (r = this.cbs).onopentagname) === null || s === void 0 || s.call(r, "br"), (o = (c = this.cbs).onopentag) === null || o === void 0 || o.call(c, "br", {}, !0), (f = (n = this.cbs).onclosetag) === null || f === void 0 || f.call(n, "br", !1));
|
|
1228
1229
|
else {
|
|
@@ -1237,42 +1238,42 @@ class Fe {
|
|
|
1237
1238
|
this.startIndex = t + 1;
|
|
1238
1239
|
}
|
|
1239
1240
|
/** @internal */
|
|
1240
|
-
onselfclosingtag(
|
|
1241
|
-
this.endIndex =
|
|
1241
|
+
onselfclosingtag(u) {
|
|
1242
|
+
this.endIndex = u, this.recognizeSelfClosing || this.foreignContext[0] ? (this.closeCurrentTag(!1), this.startIndex = u + 1) : this.onopentagend(u);
|
|
1242
1243
|
}
|
|
1243
|
-
closeCurrentTag(
|
|
1244
|
+
closeCurrentTag(u) {
|
|
1244
1245
|
var t, a;
|
|
1245
1246
|
const i = this.tagname;
|
|
1246
|
-
this.endOpenTag(
|
|
1247
|
+
this.endOpenTag(u), this.stack[0] === i && ((a = (t = this.cbs).onclosetag) === null || a === void 0 || a.call(t, i, !u), this.stack.shift());
|
|
1247
1248
|
}
|
|
1248
1249
|
/** @internal */
|
|
1249
|
-
onattribname(
|
|
1250
|
-
this.startIndex =
|
|
1251
|
-
const a = this.getSlice(
|
|
1250
|
+
onattribname(u, t) {
|
|
1251
|
+
this.startIndex = u;
|
|
1252
|
+
const a = this.getSlice(u, t);
|
|
1252
1253
|
this.attribname = this.lowerCaseAttributeNames ? a.toLowerCase() : a;
|
|
1253
1254
|
}
|
|
1254
1255
|
/** @internal */
|
|
1255
|
-
onattribdata(
|
|
1256
|
-
this.attribvalue += this.getSlice(
|
|
1256
|
+
onattribdata(u, t) {
|
|
1257
|
+
this.attribvalue += this.getSlice(u, t);
|
|
1257
1258
|
}
|
|
1258
1259
|
/** @internal */
|
|
1259
|
-
onattribentity(
|
|
1260
|
-
this.attribvalue += Su(
|
|
1260
|
+
onattribentity(u) {
|
|
1261
|
+
this.attribvalue += Su(u);
|
|
1261
1262
|
}
|
|
1262
1263
|
/** @internal */
|
|
1263
|
-
onattribend(
|
|
1264
|
+
onattribend(u, t) {
|
|
1264
1265
|
var a, i;
|
|
1265
|
-
this.endIndex = t, (i = (a = this.cbs).onattribute) === null || i === void 0 || i.call(a, this.attribname, this.attribvalue,
|
|
1266
|
+
this.endIndex = t, (i = (a = this.cbs).onattribute) === null || i === void 0 || i.call(a, this.attribname, this.attribvalue, u === L.Double ? '"' : u === L.Single ? "'" : u === L.NoValue ? void 0 : null), this.attribs && !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname) && (this.attribs[this.attribname] = this.attribvalue), this.attribvalue = "";
|
|
1266
1267
|
}
|
|
1267
|
-
getInstructionName(
|
|
1268
|
-
const t =
|
|
1269
|
-
let a = t < 0 ?
|
|
1268
|
+
getInstructionName(u) {
|
|
1269
|
+
const t = u.search(Be);
|
|
1270
|
+
let a = t < 0 ? u : u.substr(0, t);
|
|
1270
1271
|
return this.lowerCaseTagNames && (a = a.toLowerCase()), a;
|
|
1271
1272
|
}
|
|
1272
1273
|
/** @internal */
|
|
1273
|
-
ondeclaration(
|
|
1274
|
+
ondeclaration(u, t) {
|
|
1274
1275
|
this.endIndex = t;
|
|
1275
|
-
const a = this.getSlice(
|
|
1276
|
+
const a = this.getSlice(u, t);
|
|
1276
1277
|
if (this.cbs.onprocessinginstruction) {
|
|
1277
1278
|
const i = this.getInstructionName(a);
|
|
1278
1279
|
this.cbs.onprocessinginstruction(`!${i}`, `!${a}`);
|
|
@@ -1280,9 +1281,9 @@ class Fe {
|
|
|
1280
1281
|
this.startIndex = t + 1;
|
|
1281
1282
|
}
|
|
1282
1283
|
/** @internal */
|
|
1283
|
-
onprocessinginstruction(
|
|
1284
|
+
onprocessinginstruction(u, t) {
|
|
1284
1285
|
this.endIndex = t;
|
|
1285
|
-
const a = this.getSlice(
|
|
1286
|
+
const a = this.getSlice(u, t);
|
|
1286
1287
|
if (this.cbs.onprocessinginstruction) {
|
|
1287
1288
|
const i = this.getInstructionName(a);
|
|
1288
1289
|
this.cbs.onprocessinginstruction(`?${i}`, `?${a}`);
|
|
@@ -1290,33 +1291,33 @@ class Fe {
|
|
|
1290
1291
|
this.startIndex = t + 1;
|
|
1291
1292
|
}
|
|
1292
1293
|
/** @internal */
|
|
1293
|
-
oncomment(
|
|
1294
|
+
oncomment(u, t, a) {
|
|
1294
1295
|
var i, r, s, c;
|
|
1295
|
-
this.endIndex = t, (r = (i = this.cbs).oncomment) === null || r === void 0 || r.call(i, this.getSlice(
|
|
1296
|
+
this.endIndex = t, (r = (i = this.cbs).oncomment) === null || r === void 0 || r.call(i, this.getSlice(u, t - a)), (c = (s = this.cbs).oncommentend) === null || c === void 0 || c.call(s), this.startIndex = t + 1;
|
|
1296
1297
|
}
|
|
1297
1298
|
/** @internal */
|
|
1298
|
-
oncdata(
|
|
1299
|
+
oncdata(u, t, a) {
|
|
1299
1300
|
var i, r, s, c, o, n, f, l, m, h;
|
|
1300
1301
|
this.endIndex = t;
|
|
1301
|
-
const I = this.getSlice(
|
|
1302
|
+
const I = this.getSlice(u, t - a);
|
|
1302
1303
|
!this.htmlMode || this.options.recognizeCDATA ? ((r = (i = this.cbs).oncdatastart) === null || r === void 0 || r.call(i), (c = (s = this.cbs).ontext) === null || c === void 0 || c.call(s, I), (n = (o = this.cbs).oncdataend) === null || n === void 0 || n.call(o)) : ((l = (f = this.cbs).oncomment) === null || l === void 0 || l.call(f, `[CDATA[${I}]]`), (h = (m = this.cbs).oncommentend) === null || h === void 0 || h.call(m)), this.startIndex = t + 1;
|
|
1303
1304
|
}
|
|
1304
1305
|
/** @internal */
|
|
1305
1306
|
onend() {
|
|
1306
|
-
var
|
|
1307
|
+
var u, t;
|
|
1307
1308
|
if (this.cbs.onclosetag) {
|
|
1308
1309
|
this.endIndex = this.startIndex;
|
|
1309
1310
|
for (let a = 0; a < this.stack.length; a++)
|
|
1310
1311
|
this.cbs.onclosetag(this.stack[a], !0);
|
|
1311
1312
|
}
|
|
1312
|
-
(t = (
|
|
1313
|
+
(t = (u = this.cbs).onend) === null || t === void 0 || t.call(u);
|
|
1313
1314
|
}
|
|
1314
1315
|
/**
|
|
1315
1316
|
* Resets the parser to a blank state, ready to parse a new HTML document
|
|
1316
1317
|
*/
|
|
1317
1318
|
reset() {
|
|
1318
|
-
var
|
|
1319
|
-
(t = (
|
|
1319
|
+
var u, t, a, i;
|
|
1320
|
+
(t = (u = this.cbs).onreset) === null || t === void 0 || t.call(u), this.tokenizer.reset(), this.tagname = "", this.attribname = "", this.attribs = null, this.stack.length = 0, this.startIndex = 0, this.endIndex = 0, (i = (a = this.cbs).onparserinit) === null || i === void 0 || i.call(a, this), this.buffers.length = 0, this.foreignContext.length = 0, this.foreignContext.unshift(!this.htmlMode), this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1;
|
|
1320
1321
|
}
|
|
1321
1322
|
/**
|
|
1322
1323
|
* Resets the parser, then parses a complete document and
|
|
@@ -1324,13 +1325,13 @@ class Fe {
|
|
|
1324
1325
|
*
|
|
1325
1326
|
* @param data Document to parse.
|
|
1326
1327
|
*/
|
|
1327
|
-
parseComplete(
|
|
1328
|
-
this.reset(), this.end(
|
|
1328
|
+
parseComplete(u) {
|
|
1329
|
+
this.reset(), this.end(u);
|
|
1329
1330
|
}
|
|
1330
|
-
getSlice(
|
|
1331
|
-
for (;
|
|
1331
|
+
getSlice(u, t) {
|
|
1332
|
+
for (; u - this.bufferOffset >= this.buffers[0].length; )
|
|
1332
1333
|
this.shiftBuffer();
|
|
1333
|
-
let a = this.buffers[0].slice(
|
|
1334
|
+
let a = this.buffers[0].slice(u - this.bufferOffset, t - this.bufferOffset);
|
|
1334
1335
|
for (; t - this.bufferOffset > this.buffers[0].length; )
|
|
1335
1336
|
this.shiftBuffer(), a += this.buffers[0].slice(0, t - this.bufferOffset);
|
|
1336
1337
|
return a;
|
|
@@ -1343,26 +1344,26 @@ class Fe {
|
|
|
1343
1344
|
*
|
|
1344
1345
|
* @param chunk Chunk to parse.
|
|
1345
1346
|
*/
|
|
1346
|
-
write(
|
|
1347
|
+
write(u) {
|
|
1347
1348
|
var t, a;
|
|
1348
1349
|
if (this.ended) {
|
|
1349
1350
|
(a = (t = this.cbs).onerror) === null || a === void 0 || a.call(t, new Error(".write() after done!"));
|
|
1350
1351
|
return;
|
|
1351
1352
|
}
|
|
1352
|
-
this.buffers.push(
|
|
1353
|
+
this.buffers.push(u), this.tokenizer.running && (this.tokenizer.write(u), this.writeIndex++);
|
|
1353
1354
|
}
|
|
1354
1355
|
/**
|
|
1355
1356
|
* Parses the end of the buffer and clears the stack, calls onend.
|
|
1356
1357
|
*
|
|
1357
1358
|
* @param chunk Optional final chunk to parse.
|
|
1358
1359
|
*/
|
|
1359
|
-
end(
|
|
1360
|
+
end(u) {
|
|
1360
1361
|
var t, a;
|
|
1361
1362
|
if (this.ended) {
|
|
1362
1363
|
(a = (t = this.cbs).onerror) === null || a === void 0 || a.call(t, new Error(".end() after done!"));
|
|
1363
1364
|
return;
|
|
1364
1365
|
}
|
|
1365
|
-
|
|
1366
|
+
u && this.write(u), this.ended = !0, this.tokenizer.end();
|
|
1366
1367
|
}
|
|
1367
1368
|
/**
|
|
1368
1369
|
* Pauses parsing. The parser won't emit events until `resume` is called.
|
|
@@ -1384,8 +1385,8 @@ class Fe {
|
|
|
1384
1385
|
* @param chunk Chunk to parse.
|
|
1385
1386
|
* @deprecated
|
|
1386
1387
|
*/
|
|
1387
|
-
parseChunk(
|
|
1388
|
-
this.write(
|
|
1388
|
+
parseChunk(u) {
|
|
1389
|
+
this.write(u);
|
|
1389
1390
|
}
|
|
1390
1391
|
/**
|
|
1391
1392
|
* Alias of `end`, for backwards compatibility.
|
|
@@ -1393,14 +1394,14 @@ class Fe {
|
|
|
1393
1394
|
* @param chunk Optional final chunk to parse.
|
|
1394
1395
|
* @deprecated
|
|
1395
1396
|
*/
|
|
1396
|
-
done(
|
|
1397
|
-
this.end(
|
|
1397
|
+
done(u) {
|
|
1398
|
+
this.end(u);
|
|
1398
1399
|
}
|
|
1399
1400
|
}
|
|
1400
|
-
function ku(
|
|
1401
|
+
function ku(e, u = "web") {
|
|
1401
1402
|
const t = { name: "", children: [] }, a = [t];
|
|
1402
1403
|
let i = "";
|
|
1403
|
-
const r = new
|
|
1404
|
+
const r = new Pe(
|
|
1404
1405
|
{
|
|
1405
1406
|
onopentag: (s, c, o) => {
|
|
1406
1407
|
const n = a[a.length - 1];
|
|
@@ -1417,7 +1418,7 @@ function ku(u, e = "web") {
|
|
|
1417
1418
|
);
|
|
1418
1419
|
f.style && (f.style = Du(f.style));
|
|
1419
1420
|
const l = {
|
|
1420
|
-
name: Ru(s,
|
|
1421
|
+
name: Ru(s, u),
|
|
1421
1422
|
props: f
|
|
1422
1423
|
};
|
|
1423
1424
|
Array.isArray(n.children) ? n.children.push(l) : n.children ? n.children = [
|
|
@@ -1442,14 +1443,14 @@ function ku(u, e = "web") {
|
|
|
1442
1443
|
},
|
|
1443
1444
|
{ decodeEntities: !0 }
|
|
1444
1445
|
);
|
|
1445
|
-
return r.write(
|
|
1446
|
+
return r.write(e.replace(/\\"/g, '"')), r.end(), t.children || [];
|
|
1446
1447
|
}
|
|
1447
|
-
function
|
|
1448
|
+
function Fe(e, u) {
|
|
1448
1449
|
const a = {
|
|
1449
|
-
imports: Oe(
|
|
1450
|
+
imports: Oe(e),
|
|
1450
1451
|
emits: [],
|
|
1451
1452
|
errors: []
|
|
1452
|
-
}, i = M(
|
|
1453
|
+
}, i = M(e);
|
|
1453
1454
|
return Z(i, {
|
|
1454
1455
|
ExportDefaultDeclaration(r) {
|
|
1455
1456
|
const s = r.node.declaration;
|
|
@@ -1472,7 +1473,7 @@ function Pe(u, e) {
|
|
|
1472
1473
|
case "methods":
|
|
1473
1474
|
a.handlers = Ge(l.value), a.methods = He(l.value), a.dataSources = Ue(
|
|
1474
1475
|
l.value,
|
|
1475
|
-
|
|
1476
|
+
u
|
|
1476
1477
|
);
|
|
1477
1478
|
break;
|
|
1478
1479
|
case "watch":
|
|
@@ -1510,11 +1511,11 @@ function Pe(u, e) {
|
|
|
1510
1511
|
}
|
|
1511
1512
|
}), a;
|
|
1512
1513
|
}
|
|
1513
|
-
function Oe(
|
|
1514
|
-
const
|
|
1514
|
+
function Oe(e) {
|
|
1515
|
+
const u = /import\s+{(.+?)}\s+from\s+['"](.+?)['"]/g, t = /import\s+(.+?)\s+from\s+['"](.+?)['"]/g, a = /^{(.+?)}$/, i = [];
|
|
1515
1516
|
let r;
|
|
1516
|
-
const s =
|
|
1517
|
-
for (; (r =
|
|
1517
|
+
const s = e.replace(/\n/g, " ");
|
|
1518
|
+
for (; (r = u.exec(s)) !== null; ) {
|
|
1518
1519
|
const c = r[2] === "@element-plus/icons-vue" ? "@vtj/icons" : r[2];
|
|
1519
1520
|
i.push({
|
|
1520
1521
|
from: c,
|
|
@@ -1530,37 +1531,44 @@ function Oe(u) {
|
|
|
1530
1531
|
}
|
|
1531
1532
|
return i;
|
|
1532
1533
|
}
|
|
1533
|
-
function Me(
|
|
1534
|
-
for (const
|
|
1535
|
-
if (
|
|
1536
|
-
const { id: t, init: a } =
|
|
1534
|
+
function Me(e) {
|
|
1535
|
+
for (const u of e.body)
|
|
1536
|
+
if (u.type === "VariableDeclaration" && u.kind == "const") {
|
|
1537
|
+
const { id: t, init: a } = u.declarations[0];
|
|
1537
1538
|
if (t.loc?.identifierName === "state" && a?.type === "CallExpression" && a.callee.loc?.identifierName === "reactive")
|
|
1538
1539
|
return a.arguments[0];
|
|
1539
1540
|
}
|
|
1540
1541
|
return null;
|
|
1541
1542
|
}
|
|
1542
|
-
function $e(
|
|
1543
|
-
const
|
|
1544
|
-
if (!
|
|
1543
|
+
function $e(e) {
|
|
1544
|
+
const u = Me(e);
|
|
1545
|
+
if (!u) return {};
|
|
1545
1546
|
const t = {};
|
|
1546
|
-
for (const a of
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1547
|
+
for (const a of u.properties)
|
|
1548
|
+
if (a.type === "ObjectProperty") {
|
|
1549
|
+
const { key: i, value: r } = a;
|
|
1550
|
+
if (i.type === "Identifier") {
|
|
1551
|
+
const s = B(r);
|
|
1552
|
+
t[i.name] = V(s);
|
|
1553
|
+
}
|
|
1554
|
+
} else if (a.type === "ObjectMethod") {
|
|
1555
|
+
const { key: i, params: r, body: s } = a;
|
|
1556
|
+
if (i.type === "Identifier") {
|
|
1557
|
+
const c = B(s), n = `(${r.map((f) => f.name || "none").join(",")}) => ${c}`;
|
|
1558
|
+
t[i.name] = V(n);
|
|
1559
|
+
}
|
|
1551
1560
|
}
|
|
1552
|
-
}
|
|
1553
1561
|
return t;
|
|
1554
1562
|
}
|
|
1555
|
-
function U(
|
|
1556
|
-
const { key:
|
|
1557
|
-
if (
|
|
1558
|
-
const s =
|
|
1563
|
+
function U(e) {
|
|
1564
|
+
const { key: u, async: t, params: a, body: i } = e, r = a?.map((s) => s.type === "ObjectPattern" ? `{${s.properties.map((o) => o.key?.name || o.name).join(",")}}` : s.type === "AssignmentPattern" ? s.left.name + "=" + (s.right?.extra?.raw || "null") : s.name).join(", ");
|
|
1565
|
+
if (u.type === "Identifier") {
|
|
1566
|
+
const s = u.name;
|
|
1559
1567
|
let c = "{}";
|
|
1560
|
-
i && (c =
|
|
1561
|
-
const o =
|
|
1568
|
+
i && (c = B(i) || "{}");
|
|
1569
|
+
const o = e.value;
|
|
1562
1570
|
if (o && o.type === "CallExpression") {
|
|
1563
|
-
let h =
|
|
1571
|
+
let h = B(o) || "";
|
|
1564
1572
|
h = h.replace("function () {", "() => {"), c = `{ return (${h})}`;
|
|
1565
1573
|
}
|
|
1566
1574
|
const f = `${t ? "async " : ""}(${r}) => ${c}`, l = s.startsWith("watcher_");
|
|
@@ -1572,24 +1580,24 @@ function U(u) {
|
|
|
1572
1580
|
};
|
|
1573
1581
|
}
|
|
1574
1582
|
}
|
|
1575
|
-
function Lu(
|
|
1576
|
-
if (!
|
|
1577
|
-
const
|
|
1578
|
-
for (const t of
|
|
1583
|
+
function Lu(e) {
|
|
1584
|
+
if (!e) return {};
|
|
1585
|
+
const u = {};
|
|
1586
|
+
for (const t of e.properties) {
|
|
1579
1587
|
const a = U(t);
|
|
1580
|
-
a && !a.watcher && !a.exp.value.includes("this.provider.createMock") && !a.exp.value.includes("this.provider.apis") && (
|
|
1588
|
+
a && !a.watcher && !a.exp.value.includes("this.provider.createMock") && !a.exp.value.includes("this.provider.apis") && (u[a.name] = a.exp);
|
|
1581
1589
|
}
|
|
1582
|
-
return
|
|
1590
|
+
return u;
|
|
1583
1591
|
}
|
|
1584
|
-
function Ue(
|
|
1585
|
-
if (!
|
|
1592
|
+
function Ue(e, u) {
|
|
1593
|
+
if (!e) return {};
|
|
1586
1594
|
const t = {}, a = /apis\[\'([\w]*)\'\]/, i = /\.then\(([\w\W]*)\)/;
|
|
1587
|
-
for (const r of
|
|
1595
|
+
for (const r of e.properties) {
|
|
1588
1596
|
const s = U(r), c = r.body.body?.[0], o = (c?.leadingComments?.[0].value || "").trim(), n = Ie(o);
|
|
1589
1597
|
if (s && s.exp.value.includes("this.provider.apis")) {
|
|
1590
1598
|
const l = (s.exp.value.match(a) || [])[1];
|
|
1591
1599
|
if (!l) continue;
|
|
1592
|
-
const m = ut(
|
|
1600
|
+
const m = ut(u, l);
|
|
1593
1601
|
if (!m) continue;
|
|
1594
1602
|
const h = s.exp.value.match(i)?.[1];
|
|
1595
1603
|
t[s.name] = {
|
|
@@ -1633,72 +1641,72 @@ function Ue(u, e) {
|
|
|
1633
1641
|
},
|
|
1634
1642
|
mockTemplate: n?.mockTemplate || {
|
|
1635
1643
|
type: "JSFunction",
|
|
1636
|
-
value: f ?
|
|
1644
|
+
value: f ? B(f) : ""
|
|
1637
1645
|
}
|
|
1638
1646
|
};
|
|
1639
1647
|
}
|
|
1640
1648
|
}
|
|
1641
1649
|
return t;
|
|
1642
1650
|
}
|
|
1643
|
-
function He(
|
|
1644
|
-
const
|
|
1645
|
-
for (const i of Object.keys(
|
|
1646
|
-
t.test(i) || (a[i] =
|
|
1651
|
+
function He(e) {
|
|
1652
|
+
const u = Lu(e), t = /\_([\w]{5,})$/, a = {};
|
|
1653
|
+
for (const i of Object.keys(u))
|
|
1654
|
+
t.test(i) || (a[i] = u[i]);
|
|
1647
1655
|
return a;
|
|
1648
1656
|
}
|
|
1649
|
-
function Ge(
|
|
1650
|
-
if (!
|
|
1651
|
-
const
|
|
1652
|
-
for (const a of
|
|
1657
|
+
function Ge(e) {
|
|
1658
|
+
if (!e) return {};
|
|
1659
|
+
const u = {}, t = /\_([\w]{5,})$/;
|
|
1660
|
+
for (const a of e.properties) {
|
|
1653
1661
|
const i = a.key.name;
|
|
1654
1662
|
if (t.test(i))
|
|
1655
1663
|
try {
|
|
1656
1664
|
if (a.body.body[0]?.argument) {
|
|
1657
|
-
const r =
|
|
1665
|
+
const r = B(
|
|
1658
1666
|
a.body.body[0].argument.callee.object
|
|
1659
1667
|
);
|
|
1660
|
-
|
|
1668
|
+
u[i] = fu(r);
|
|
1661
1669
|
} else
|
|
1662
|
-
|
|
1670
|
+
u[i] = U(a)?.exp;
|
|
1663
1671
|
} catch (r) {
|
|
1664
1672
|
console.warn(r);
|
|
1665
1673
|
}
|
|
1666
1674
|
}
|
|
1667
|
-
return
|
|
1675
|
+
return u;
|
|
1668
1676
|
}
|
|
1669
|
-
function We(
|
|
1670
|
-
if (!
|
|
1671
|
-
const
|
|
1672
|
-
for (const t of
|
|
1677
|
+
function We(e) {
|
|
1678
|
+
if (!e) return {};
|
|
1679
|
+
const u = {};
|
|
1680
|
+
for (const t of e.properties) {
|
|
1673
1681
|
const a = U(t);
|
|
1674
|
-
a && a.watcher && (
|
|
1682
|
+
a && a.watcher && (u[a.name] = a.exp);
|
|
1675
1683
|
}
|
|
1676
|
-
return
|
|
1684
|
+
return u;
|
|
1677
1685
|
}
|
|
1678
|
-
function z(
|
|
1679
|
-
return !!
|
|
1686
|
+
function z(e, u) {
|
|
1687
|
+
return !!Cu(e, u);
|
|
1680
1688
|
}
|
|
1681
|
-
function
|
|
1682
|
-
return
|
|
1683
|
-
(a) => a.key?.name ===
|
|
1689
|
+
function Cu(e, u) {
|
|
1690
|
+
return e?.find(
|
|
1691
|
+
(a) => a.key?.name === u
|
|
1684
1692
|
)?.value?.value;
|
|
1685
1693
|
}
|
|
1686
|
-
function Tu(
|
|
1687
|
-
const t =
|
|
1688
|
-
(a) => a.key?.name ===
|
|
1694
|
+
function Tu(e, u) {
|
|
1695
|
+
const t = e?.find(
|
|
1696
|
+
(a) => a.key?.name === u
|
|
1689
1697
|
);
|
|
1690
1698
|
if (t)
|
|
1691
1699
|
return U(t)?.exp;
|
|
1692
1700
|
}
|
|
1693
|
-
function Je(
|
|
1701
|
+
function Je(e, u = {}) {
|
|
1694
1702
|
const t = [];
|
|
1695
|
-
for (const a of
|
|
1703
|
+
for (const a of e.properties) {
|
|
1696
1704
|
const { key: i, value: r } = a, s = i.value || i.name || "";
|
|
1697
|
-
if (
|
|
1705
|
+
if (u[s]) {
|
|
1698
1706
|
const c = r.properties;
|
|
1699
1707
|
t.push({
|
|
1700
1708
|
id: s.replace("watcher_", ""),
|
|
1701
|
-
source:
|
|
1709
|
+
source: u[s],
|
|
1702
1710
|
deep: z(c, "deep"),
|
|
1703
1711
|
immediate: z(c, "immediate"),
|
|
1704
1712
|
handler: Tu(c, "handler")
|
|
@@ -1728,148 +1736,154 @@ function Je(u, e = {}) {
|
|
|
1728
1736
|
}
|
|
1729
1737
|
return t;
|
|
1730
1738
|
}
|
|
1731
|
-
function Xe(
|
|
1732
|
-
const
|
|
1733
|
-
for (const t of
|
|
1739
|
+
function Xe(e) {
|
|
1740
|
+
const u = {};
|
|
1741
|
+
for (const t of e) {
|
|
1734
1742
|
const a = t.key.name;
|
|
1735
1743
|
if (me.includes(a)) {
|
|
1736
1744
|
const i = U(t);
|
|
1737
|
-
i && (
|
|
1745
|
+
i && (u[i.name] = i.exp);
|
|
1738
1746
|
}
|
|
1739
1747
|
}
|
|
1740
|
-
return
|
|
1748
|
+
return u;
|
|
1741
1749
|
}
|
|
1742
|
-
function ze(
|
|
1743
|
-
const
|
|
1750
|
+
function ze(e) {
|
|
1751
|
+
const u = e?.find(
|
|
1744
1752
|
(t) => t.key?.name === "type"
|
|
1745
1753
|
);
|
|
1746
|
-
if (
|
|
1747
|
-
return
|
|
1754
|
+
if (u)
|
|
1755
|
+
return u.value.type === "ArrayExpression" ? u.value.elements.map((t) => t.name) : u.value.name;
|
|
1748
1756
|
}
|
|
1749
|
-
function
|
|
1750
|
-
const
|
|
1757
|
+
function _u(e) {
|
|
1758
|
+
const u = e?.find(
|
|
1751
1759
|
(t) => t.key?.name === "default"
|
|
1752
1760
|
);
|
|
1753
|
-
if (
|
|
1754
|
-
return V(
|
|
1761
|
+
if (u)
|
|
1762
|
+
return V(B(u.value));
|
|
1755
1763
|
}
|
|
1756
|
-
function Qe(
|
|
1757
|
-
if (!
|
|
1758
|
-
let
|
|
1759
|
-
return
|
|
1764
|
+
function Qe(e) {
|
|
1765
|
+
if (!e) return [];
|
|
1766
|
+
let u = [];
|
|
1767
|
+
return e.type === "ArrayExpression" ? u = e.elements.map((t) => t.value) : e.type === "ObjectExpression" && (u = e.properties?.map((t) => {
|
|
1760
1768
|
const { key: a, value: i } = t, r = i.properties || [];
|
|
1761
1769
|
return {
|
|
1762
1770
|
name: a.name,
|
|
1763
1771
|
required: z(r, "required"),
|
|
1764
1772
|
type: ze(r),
|
|
1765
|
-
default:
|
|
1773
|
+
default: _u(r)
|
|
1766
1774
|
};
|
|
1767
|
-
})),
|
|
1775
|
+
})), u;
|
|
1768
1776
|
}
|
|
1769
|
-
function Ze(
|
|
1770
|
-
const
|
|
1771
|
-
if (
|
|
1772
|
-
const [a, ...i] = (
|
|
1777
|
+
function Ze(e) {
|
|
1778
|
+
const u = [];
|
|
1779
|
+
if (e.callee.type === "MemberExpression" && e.callee.property?.name === "$emit") {
|
|
1780
|
+
const [a, ...i] = (e.arguments || []).map(
|
|
1773
1781
|
(r) => r.value || r.name
|
|
1774
1782
|
);
|
|
1775
|
-
a &&
|
|
1783
|
+
a && u.push({
|
|
1776
1784
|
name: a,
|
|
1777
1785
|
params: i.filter((r) => !!r)
|
|
1778
1786
|
});
|
|
1779
1787
|
}
|
|
1780
|
-
return
|
|
1788
|
+
return u;
|
|
1781
1789
|
}
|
|
1782
|
-
function Ke(
|
|
1783
|
-
let
|
|
1784
|
-
return
|
|
1785
|
-
const { key: a, value: i } = t, r = i.properties, s = a.name, c =
|
|
1790
|
+
function Ke(e) {
|
|
1791
|
+
let u = [];
|
|
1792
|
+
return e.type === "ObjectExpression" && (u = e.properties?.map((t) => {
|
|
1793
|
+
const { key: a, value: i } = t, r = i.properties, s = a.name, c = Cu(r, "from"), o = _u(r);
|
|
1786
1794
|
return {
|
|
1787
1795
|
name: s,
|
|
1788
1796
|
from: c || s,
|
|
1789
1797
|
default: o
|
|
1790
1798
|
};
|
|
1791
|
-
})),
|
|
1799
|
+
})), u;
|
|
1792
1800
|
}
|
|
1793
|
-
function Ye(
|
|
1794
|
-
return
|
|
1801
|
+
function Ye(e) {
|
|
1802
|
+
return e && e.elements ? e.elements.map((u) => u?.type === "StringLiteral" ? u.value : "").filter((u) => !!u) : [];
|
|
1795
1803
|
}
|
|
1796
|
-
function ut(
|
|
1797
|
-
return (
|
|
1804
|
+
function ut(e, u) {
|
|
1805
|
+
return (e.apis || []).find((t) => t.id === u || t.name === u);
|
|
1798
1806
|
}
|
|
1799
|
-
function et(
|
|
1800
|
-
if (!
|
|
1801
|
-
const
|
|
1802
|
-
for (const t of
|
|
1807
|
+
function et(e) {
|
|
1808
|
+
if (!e?.properties) return {};
|
|
1809
|
+
const u = {};
|
|
1810
|
+
for (const t of e.properties) {
|
|
1803
1811
|
const { key: a, value: i } = t;
|
|
1804
|
-
a?.name && i?.name && (
|
|
1812
|
+
a?.name && i?.name && (u[a.name] = u[a.name.toLowerCase()] = {
|
|
1805
1813
|
type: "JSExpression",
|
|
1806
1814
|
value: i.name
|
|
1807
1815
|
});
|
|
1808
1816
|
}
|
|
1809
|
-
return
|
|
1817
|
+
return u;
|
|
1810
1818
|
}
|
|
1811
|
-
let cu = [], Y = {}, Bu = {},
|
|
1812
|
-
function tt(
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1819
|
+
let cu = [], Y = {}, Bu = {}, Pu = {}, Fu = {}, uu = "web", Ou = [];
|
|
1820
|
+
function tt(e, u, t = "", a) {
|
|
1821
|
+
cu = [], Y = {}, Bu = a?.handlers || {}, Fu = a?.styles || {}, uu = a?.platform || "web", Ou = a?.imports || [], Pu = a?.directives || {};
|
|
1822
|
+
const r = qu({
|
|
1823
|
+
id: e,
|
|
1824
|
+
filename: u,
|
|
1825
|
+
source: t,
|
|
1826
|
+
isProd: !0,
|
|
1827
|
+
slotted: !0
|
|
1828
|
+
}).ast?.children || [], s = [];
|
|
1829
|
+
for (const c of r) {
|
|
1830
|
+
const o = J(c);
|
|
1831
|
+
Array.isArray(o) ? s.push(...o) : s.push(o);
|
|
1832
|
+
}
|
|
1833
|
+
return {
|
|
1834
|
+
nodes: s.filter((c) => !!c),
|
|
1821
1835
|
slots: cu,
|
|
1822
1836
|
context: Y
|
|
1823
1837
|
};
|
|
1824
1838
|
}
|
|
1825
|
-
function at(
|
|
1826
|
-
if (
|
|
1827
|
-
let
|
|
1839
|
+
function at(e) {
|
|
1840
|
+
if (e.name === "slot") {
|
|
1841
|
+
let u = "default";
|
|
1828
1842
|
const t = [];
|
|
1829
|
-
for (const [a, i] of Object.entries(
|
|
1830
|
-
a === "name" ?
|
|
1843
|
+
for (const [a, i] of Object.entries(e.props || {}))
|
|
1844
|
+
a === "name" ? u = i : t.push(a);
|
|
1831
1845
|
cu.push({
|
|
1832
|
-
name:
|
|
1846
|
+
name: u,
|
|
1833
1847
|
params: t
|
|
1834
1848
|
});
|
|
1835
1849
|
}
|
|
1836
1850
|
}
|
|
1837
|
-
function it(
|
|
1838
|
-
const
|
|
1839
|
-
for (const t of
|
|
1851
|
+
function it(e) {
|
|
1852
|
+
const u = {};
|
|
1853
|
+
for (const t of e) {
|
|
1840
1854
|
if (t.type === p.ATTRIBUTE)
|
|
1841
1855
|
if (t.name === "class") {
|
|
1842
|
-
const a = t.value?.content || "", i = /[\w]+_[\w]{5,}/, r = a.match(i)?.[0] || "", s = a.split(" ").filter((o) => o !== r), c =
|
|
1843
|
-
c && (
|
|
1856
|
+
const a = t.value?.content || "", i = /[\w]+_[\w]{5,}/, r = a.match(i)?.[0] || "", s = a.split(" ").filter((o) => o !== r), c = Fu[`.${r}`];
|
|
1857
|
+
c && (u.style = c), s.length && (u.class = s.join(" "));
|
|
1844
1858
|
} else if (t.name === "style") {
|
|
1845
1859
|
const a = t.value?.content || "";
|
|
1846
|
-
a && (
|
|
1860
|
+
a && (u.style = Du(a));
|
|
1847
1861
|
} else
|
|
1848
|
-
|
|
1849
|
-
if (t.type === p.DIRECTIVE && t.name === "bind" && (t.exp?.type === p.SIMPLE_EXPRESSION && t.arg?.type === p.SIMPLE_EXPRESSION && (
|
|
1850
|
-
if (t.arg.content === "class" &&
|
|
1862
|
+
u[t.name] = t.value?.content || "";
|
|
1863
|
+
if (t.type === p.DIRECTIVE && t.name === "bind" && (t.exp?.type === p.SIMPLE_EXPRESSION && t.arg?.type === p.SIMPLE_EXPRESSION && (u[t.arg.content] = V(`(${t.exp.content})`)), t.exp?.type === p.COMPOUND_EXPRESSION && t.arg?.type === p.SIMPLE_EXPRESSION))
|
|
1864
|
+
if (t.arg.content === "class" && u.class) {
|
|
1851
1865
|
const a = t.exp.ast.type, i = Ee(
|
|
1852
|
-
|
|
1866
|
+
u.class,
|
|
1853
1867
|
t.exp.loc.source,
|
|
1854
1868
|
a
|
|
1855
1869
|
);
|
|
1856
|
-
i && (
|
|
1870
|
+
i && (u[t.arg.content] = V(i));
|
|
1857
1871
|
} else
|
|
1858
|
-
|
|
1872
|
+
u[t.arg.content] = V(
|
|
1859
1873
|
`(${t.exp.loc.source})`
|
|
1860
1874
|
);
|
|
1861
1875
|
}
|
|
1862
|
-
return
|
|
1876
|
+
return u;
|
|
1863
1877
|
}
|
|
1864
|
-
function rt(
|
|
1865
|
-
const
|
|
1866
|
-
for (const [t, a] of Object.entries(
|
|
1867
|
-
|
|
1868
|
-
return
|
|
1878
|
+
function rt(e = {}) {
|
|
1879
|
+
const u = {};
|
|
1880
|
+
for (const [t, a] of Object.entries(e))
|
|
1881
|
+
u[t === "tap" ? "click" : t] = a;
|
|
1882
|
+
return u;
|
|
1869
1883
|
}
|
|
1870
|
-
function st(
|
|
1884
|
+
function st(e, u = {}) {
|
|
1871
1885
|
const t = {};
|
|
1872
|
-
for (const a of
|
|
1886
|
+
for (const a of e)
|
|
1873
1887
|
if (a.type === p.DIRECTIVE && a.name === "on" && a.arg?.type === p.SIMPLE_EXPRESSION) {
|
|
1874
1888
|
const i = a.modifiers.reduce(
|
|
1875
1889
|
(n, f) => (f.content && (n[f.content] = !0), n),
|
|
@@ -1877,7 +1891,7 @@ function st(u, e = {}) {
|
|
|
1877
1891
|
);
|
|
1878
1892
|
let r = a.exp?.loc.source || "";
|
|
1879
1893
|
r || (r = "() => {}");
|
|
1880
|
-
const s = new RegExp(`${a.arg.content}_[\\w]{5,}`), c = r.match(s)?.[0] || "", o =
|
|
1894
|
+
const s = new RegExp(`${a.arg.content}_[\\w]{5,}`), c = r.match(s)?.[0] || "", o = u[c];
|
|
1881
1895
|
if (c && o)
|
|
1882
1896
|
t[a.arg.content] = {
|
|
1883
1897
|
name: a.arg.content,
|
|
@@ -1895,30 +1909,30 @@ function st(u, e = {}) {
|
|
|
1895
1909
|
}
|
|
1896
1910
|
return rt(t);
|
|
1897
1911
|
}
|
|
1898
|
-
function Q(
|
|
1912
|
+
function Q(e, u) {
|
|
1899
1913
|
const t = [], a = ["if", "for", "model", "show", "bind", "html"];
|
|
1900
|
-
if (
|
|
1901
|
-
if (
|
|
1914
|
+
if (u && (e.type === p.IF_BRANCH || e.type === p.IF) && u.forEach((i, r) => {
|
|
1915
|
+
if (e === i) {
|
|
1902
1916
|
const s = r === 0 ? "vIf" : i.condition ? "vElseIf" : "vElse", c = i.condition?.loc.source || "";
|
|
1903
1917
|
t.push({
|
|
1904
1918
|
name: s,
|
|
1905
1919
|
value: s === "vElse" ? !0 : V(c)
|
|
1906
1920
|
});
|
|
1907
|
-
const o =
|
|
1921
|
+
const o = e.children?.[0];
|
|
1908
1922
|
if (o) {
|
|
1909
1923
|
const n = Q(o);
|
|
1910
1924
|
t.push(...n);
|
|
1911
1925
|
}
|
|
1912
1926
|
}
|
|
1913
|
-
}),
|
|
1927
|
+
}), e.type === p.FOR && t.push({
|
|
1914
1928
|
name: "vFor",
|
|
1915
|
-
value: V(
|
|
1929
|
+
value: V(e.source.loc.source),
|
|
1916
1930
|
iterator: {
|
|
1917
|
-
item:
|
|
1918
|
-
index:
|
|
1931
|
+
item: e.valueAlias?.loc.source || "item",
|
|
1932
|
+
index: e.keyAlias?.loc.source || "index"
|
|
1919
1933
|
}
|
|
1920
|
-
}),
|
|
1921
|
-
const i =
|
|
1934
|
+
}), e.type === p.ELEMENT) {
|
|
1935
|
+
const i = e.props.filter(
|
|
1922
1936
|
(f) => f.type === p.DIRECTIVE
|
|
1923
1937
|
), r = i.filter((f) => f.name === "model");
|
|
1924
1938
|
r.length && r.forEach((f) => {
|
|
@@ -1948,7 +1962,7 @@ function Q(u, e) {
|
|
|
1948
1962
|
const l = (f.modifiers || []).reduce(
|
|
1949
1963
|
(I, A) => (I[A.content] = !0, I),
|
|
1950
1964
|
{}
|
|
1951
|
-
), m = f.arg?.content || void 0, h =
|
|
1965
|
+
), m = f.arg?.content || void 0, h = Pu[f.name];
|
|
1952
1966
|
h && t.push({
|
|
1953
1967
|
name: h,
|
|
1954
1968
|
value: V(f.exp?.loc.source || ""),
|
|
@@ -1959,28 +1973,28 @@ function Q(u, e) {
|
|
|
1959
1973
|
}
|
|
1960
1974
|
return t;
|
|
1961
1975
|
}
|
|
1962
|
-
function Mu(
|
|
1963
|
-
let
|
|
1964
|
-
if (
|
|
1965
|
-
const { props: t = [], tag: a } =
|
|
1976
|
+
function Mu(e) {
|
|
1977
|
+
let u = "";
|
|
1978
|
+
if (e.type === p.ELEMENT) {
|
|
1979
|
+
const { props: t = [], tag: a } = e;
|
|
1966
1980
|
for (const i of t)
|
|
1967
1981
|
if (i.name === "class") {
|
|
1968
1982
|
const r = i.value?.content || "", s = new RegExp(`${a}_([\\w]+)`);
|
|
1969
|
-
|
|
1983
|
+
u = r.match(s)?.[1] || "";
|
|
1970
1984
|
} else if (i.type === p.DIRECTIVE && i.name === "on") {
|
|
1971
1985
|
const r = i.arg?.loc?.source || "", s = i.exp?.loc?.source || "", c = new RegExp(`${r}_([\\w]+)`);
|
|
1972
|
-
|
|
1986
|
+
u = s.match(c)?.[1] || "";
|
|
1973
1987
|
}
|
|
1974
1988
|
}
|
|
1975
|
-
return
|
|
1989
|
+
return u || ru();
|
|
1976
1990
|
}
|
|
1977
|
-
function ct(
|
|
1978
|
-
const
|
|
1991
|
+
function ct(e) {
|
|
1992
|
+
const u = /\.\/(.+?)\.vue/;
|
|
1979
1993
|
for (const { from: t, imports: a } of Ou) {
|
|
1980
|
-
if (Array.isArray(a) && a.includes(
|
|
1994
|
+
if (Array.isArray(a) && a.includes(e))
|
|
1981
1995
|
return t;
|
|
1982
|
-
if (a ===
|
|
1983
|
-
const i = t.match(
|
|
1996
|
+
if (a === e) {
|
|
1997
|
+
const i = t.match(u)?.[1];
|
|
1984
1998
|
if (i)
|
|
1985
1999
|
return {
|
|
1986
2000
|
type: "Schema",
|
|
@@ -1989,79 +2003,79 @@ function ct(u) {
|
|
|
1989
2003
|
}
|
|
1990
2004
|
}
|
|
1991
2005
|
}
|
|
1992
|
-
function nu(
|
|
1993
|
-
const t = new Set(
|
|
2006
|
+
function nu(e, u) {
|
|
2007
|
+
const t = new Set(u?.id ? Y[u.id] : []), a = (e.directives || []).find((s) => s.name === "vFor");
|
|
1994
2008
|
let i = new Set(Array.from(t));
|
|
1995
2009
|
if (a) {
|
|
1996
2010
|
const { item: s = "item", index: c = "index" } = a.iterator || {};
|
|
1997
2011
|
i = /* @__PURE__ */ new Set([s, c, ...Array.from(i)]);
|
|
1998
2012
|
}
|
|
1999
|
-
const r =
|
|
2013
|
+
const r = e.slot;
|
|
2000
2014
|
if (r) {
|
|
2001
|
-
const s = typeof r == "string" ? [] : r.params || [], c = s.length ? s : [`scope_${
|
|
2015
|
+
const s = typeof r == "string" ? [] : r.params || [], c = s.length ? s : [`scope_${u?.id}`];
|
|
2002
2016
|
i = /* @__PURE__ */ new Set([...c, ...Array.from(i)]);
|
|
2003
2017
|
}
|
|
2004
|
-
Y[
|
|
2018
|
+
Y[e.id] = i;
|
|
2005
2019
|
}
|
|
2006
|
-
function iu(
|
|
2020
|
+
function iu(e, u, t, a) {
|
|
2007
2021
|
const i = {
|
|
2008
|
-
name: Ru(
|
|
2009
|
-
from: ct(
|
|
2010
|
-
props: it(
|
|
2011
|
-
events: st(
|
|
2012
|
-
directives: Q(t ||
|
|
2022
|
+
name: Ru(e.tag, uu),
|
|
2023
|
+
from: ct(e.tag),
|
|
2024
|
+
props: it(e.props),
|
|
2025
|
+
events: st(e.props, Bu),
|
|
2026
|
+
directives: Q(t || e, a)
|
|
2013
2027
|
};
|
|
2014
|
-
i.id = Mu(
|
|
2015
|
-
const r = eu(i,
|
|
2016
|
-
return nu(i,
|
|
2017
|
-
}
|
|
2018
|
-
function nt(
|
|
2019
|
-
return
|
|
2020
|
-
}
|
|
2021
|
-
function J(
|
|
2022
|
-
if (
|
|
2023
|
-
return iu(
|
|
2024
|
-
if (
|
|
2025
|
-
return ot(
|
|
2026
|
-
if (t &&
|
|
2027
|
-
const a =
|
|
2028
|
+
i.id = Mu(e), nu(i, u);
|
|
2029
|
+
const r = eu(i, e.children);
|
|
2030
|
+
return nu(i, u), at(r), r;
|
|
2031
|
+
}
|
|
2032
|
+
function nt(e = [], u) {
|
|
2033
|
+
return e.map((t) => J(t, u, e));
|
|
2034
|
+
}
|
|
2035
|
+
function J(e, u, t) {
|
|
2036
|
+
if (e.type === p.ELEMENT)
|
|
2037
|
+
return iu(e, u);
|
|
2038
|
+
if (e.type === p.IF)
|
|
2039
|
+
return ot(e);
|
|
2040
|
+
if (t && e.type === p.IF_BRANCH) {
|
|
2041
|
+
const a = e.children.find(
|
|
2028
2042
|
(i) => i.type === p.ELEMENT || i.type === p.FOR
|
|
2029
2043
|
);
|
|
2030
2044
|
if (a) {
|
|
2031
2045
|
if (a.type === p.ELEMENT)
|
|
2032
|
-
return iu(a,
|
|
2046
|
+
return iu(a, u, e, t);
|
|
2033
2047
|
if (a.type === p.FOR) {
|
|
2034
|
-
const r = { name: "div", directives: Q(
|
|
2035
|
-
return eu(r,
|
|
2048
|
+
const r = { name: "div", directives: Q(e) };
|
|
2049
|
+
return eu(r, e.children || []);
|
|
2036
2050
|
}
|
|
2037
2051
|
}
|
|
2038
2052
|
return "";
|
|
2039
2053
|
}
|
|
2040
|
-
if (
|
|
2041
|
-
const a =
|
|
2042
|
-
if (
|
|
2043
|
-
const r = { name: "span", directives: Q(
|
|
2044
|
-
return eu(r,
|
|
2054
|
+
if (e.type === p.FOR) {
|
|
2055
|
+
const a = e.children[0];
|
|
2056
|
+
if (e.children.length > 1 || a.type !== p.ELEMENT) {
|
|
2057
|
+
const r = { name: "span", directives: Q(e) };
|
|
2058
|
+
return eu(r, e.children);
|
|
2045
2059
|
} else
|
|
2046
|
-
return iu(a,
|
|
2060
|
+
return iu(a, u, e);
|
|
2047
2061
|
}
|
|
2048
|
-
if (
|
|
2049
|
-
return
|
|
2050
|
-
|
|
2062
|
+
if (e.type === p.TEXT_CALL)
|
|
2063
|
+
return e.content.type == p.TEXT ? e.content.content : e.content.type === p.INTERPOLATION ? V(e.content.content.loc.source) : e.content.type === p.COMPOUND_EXPRESSION ? Nu(
|
|
2064
|
+
e.content.children
|
|
2051
2065
|
) : "";
|
|
2052
|
-
if (
|
|
2053
|
-
return
|
|
2054
|
-
if (
|
|
2055
|
-
return V(
|
|
2056
|
-
if (
|
|
2066
|
+
if (e.type === p.TEXT)
|
|
2067
|
+
return e.content;
|
|
2068
|
+
if (e.type === p.INTERPOLATION && (e.content.type === p.SIMPLE_EXPRESSION || e.content.type === p.COMPOUND_EXPRESSION))
|
|
2069
|
+
return V(e.content.loc.source);
|
|
2070
|
+
if (e.type === p.COMPOUND_EXPRESSION)
|
|
2057
2071
|
return Nu(
|
|
2058
|
-
|
|
2072
|
+
e.children
|
|
2059
2073
|
);
|
|
2060
|
-
|
|
2074
|
+
e.type !== p.COMMENT && console.warn("未处理", e.type);
|
|
2061
2075
|
}
|
|
2062
|
-
function Nu(
|
|
2063
|
-
const
|
|
2064
|
-
for (const a of
|
|
2076
|
+
function Nu(e = []) {
|
|
2077
|
+
const u = e.filter((a) => typeof a != "string"), t = [];
|
|
2078
|
+
for (const a of u)
|
|
2065
2079
|
t.push({
|
|
2066
2080
|
name: "span",
|
|
2067
2081
|
children: a.type === p.TEXT ? a.loc.source : V(a.content?.loc.source)
|
|
@@ -2071,9 +2085,9 @@ function Nu(u = []) {
|
|
|
2071
2085
|
children: t
|
|
2072
2086
|
};
|
|
2073
2087
|
}
|
|
2074
|
-
function eu(
|
|
2088
|
+
function eu(e, u = []) {
|
|
2075
2089
|
const t = [];
|
|
2076
|
-
for (const a of
|
|
2090
|
+
for (const a of u)
|
|
2077
2091
|
if (a.type === p.ELEMENT && a.codegenNode?.value?.arguments) {
|
|
2078
2092
|
const i = a.codegenNode.value.arguments[0];
|
|
2079
2093
|
if (i) {
|
|
@@ -2085,14 +2099,14 @@ function eu(u, e = []) {
|
|
|
2085
2099
|
for (const r of a.children) {
|
|
2086
2100
|
const s = r.type === p.TEXT || r.type === p.TEXT_CALL ? {
|
|
2087
2101
|
name: "span",
|
|
2088
|
-
children: J(r,
|
|
2089
|
-
} : J(r,
|
|
2102
|
+
children: J(r, e)
|
|
2103
|
+
} : J(r, e);
|
|
2090
2104
|
s && (Array.isArray(s) ? s : [s]).forEach((o) => {
|
|
2091
2105
|
ne(o) && i?.type === p.DIRECTIVE && (o.id = Mu(r), o.slot = {
|
|
2092
2106
|
name: i.arg?.content || "default",
|
|
2093
2107
|
params: i.exp?.identifiers || [],
|
|
2094
2108
|
scope: i.exp?.type === p.SIMPLE_EXPRESSION ? i.exp.content : ""
|
|
2095
|
-
}, nu(o,
|
|
2109
|
+
}, nu(o, e)), t.push(o);
|
|
2096
2110
|
});
|
|
2097
2111
|
}
|
|
2098
2112
|
} else if (a.type === p.JS_CALL_EXPRESSION) {
|
|
@@ -2102,31 +2116,31 @@ function eu(u, e = []) {
|
|
|
2102
2116
|
t.push(...r);
|
|
2103
2117
|
}
|
|
2104
2118
|
} else if (a.type === p.TEXT_CALL) {
|
|
2105
|
-
const i = J(a,
|
|
2119
|
+
const i = J(a, e);
|
|
2106
2120
|
i && (Array.isArray(i) ? t.push(...i) : t.push(i));
|
|
2107
2121
|
} else {
|
|
2108
|
-
const i = J(a,
|
|
2122
|
+
const i = J(a, e);
|
|
2109
2123
|
i && (Array.isArray(i) ? t.push(...i) : t.push(i));
|
|
2110
2124
|
}
|
|
2111
2125
|
if (t.length === 1) {
|
|
2112
2126
|
const a = t[0];
|
|
2113
|
-
|
|
2127
|
+
e.children = typeof a == "string" || ou(a) ? a : [a];
|
|
2114
2128
|
} else
|
|
2115
|
-
|
|
2116
|
-
return
|
|
2129
|
+
e.children = t.map((a) => typeof a == "string" ? { name: "span", children: a } : a);
|
|
2130
|
+
return e;
|
|
2117
2131
|
}
|
|
2118
|
-
function ot(
|
|
2119
|
-
const
|
|
2132
|
+
function ot(e) {
|
|
2133
|
+
const u = e.branches || [], t = u[0], a = t.children || [];
|
|
2120
2134
|
if (t?.isTemplateIf || a.length > 1 || a[0].type !== p.ELEMENT) {
|
|
2121
|
-
const r = { name: "span", directives: Q(t,
|
|
2135
|
+
const r = { name: "span", directives: Q(t, u) };
|
|
2122
2136
|
return eu(r, t.children);
|
|
2123
2137
|
} else
|
|
2124
|
-
return nt(
|
|
2138
|
+
return nt(u);
|
|
2125
2139
|
}
|
|
2126
|
-
function dt(
|
|
2127
|
-
const
|
|
2140
|
+
function dt(e) {
|
|
2141
|
+
const u = [], t = {}, a = [];
|
|
2128
2142
|
try {
|
|
2129
|
-
const i = se.compileString(
|
|
2143
|
+
const i = se.compileString(e, { charset: !1 })?.css || "", r = re.parse(i), s = /^.[\w]+_[\w]{5,}/;
|
|
2130
2144
|
for (const c of r.nodes)
|
|
2131
2145
|
if (c.type === "rule") {
|
|
2132
2146
|
const o = {};
|
|
@@ -2136,11 +2150,11 @@ function dt(u) {
|
|
|
2136
2150
|
} else
|
|
2137
2151
|
a.push(c.toString());
|
|
2138
2152
|
} catch (i) {
|
|
2139
|
-
|
|
2153
|
+
u.push(`css解析出错了,错误信息:[ ${i.message} ]
|
|
2140
2154
|
`);
|
|
2141
2155
|
}
|
|
2142
2156
|
return {
|
|
2143
|
-
errors:
|
|
2157
|
+
errors: u,
|
|
2144
2158
|
styles: t,
|
|
2145
2159
|
css: a.join(`
|
|
2146
2160
|
`)
|
|
@@ -2152,37 +2166,37 @@ const $u = "arrow-double-left, arrow-double-right, contact, notes, records, cash
|
|
|
2152
2166
|
", "
|
|
2153
2167
|
), lt = "user", j = "User";
|
|
2154
2168
|
class bt {
|
|
2155
|
-
validate(
|
|
2169
|
+
validate(u) {
|
|
2156
2170
|
const t = {
|
|
2157
2171
|
valid: !0,
|
|
2158
2172
|
errors: [],
|
|
2159
2173
|
illegalVantIcons: [],
|
|
2160
2174
|
illegalVtjIcons: []
|
|
2161
2175
|
};
|
|
2162
|
-
this.isCompleteSFC(
|
|
2163
|
-
const a = this.checkSyntax(
|
|
2164
|
-
return a ? (t.errors.push(`代码语法错误: ${a}`), t.valid = !1, t) : (this.checkSetup(
|
|
2176
|
+
this.isCompleteSFC(u) || (t.errors.push("代码不符合Vue3单文件组件规范"), t.valid = !1);
|
|
2177
|
+
const a = this.checkSyntax(u);
|
|
2178
|
+
return a ? (t.errors.push(`代码语法错误: ${a}`), t.valid = !1, t) : (this.checkSetup(u) || (t.errors.push("setup不符合低代码模版要求"), t.valid = !1), this.hasUnchangedComment(u) && (t.errors.push("代码不完整,需要输出完整代码,不能有任何省略"), t.valid = !1), t.illegalVantIcons = this.checkVantIcons(u), t.illegalVtjIcons = this.checkVtjIcons(u), t);
|
|
2165
2179
|
}
|
|
2166
|
-
isCompleteSFC(
|
|
2180
|
+
isCompleteSFC(u) {
|
|
2167
2181
|
try {
|
|
2168
|
-
const t = R(
|
|
2182
|
+
const t = R(u);
|
|
2169
2183
|
return !!(t.template && t.script && t.styles);
|
|
2170
2184
|
} catch {
|
|
2171
2185
|
return !1;
|
|
2172
2186
|
}
|
|
2173
2187
|
}
|
|
2174
|
-
checkSyntax(
|
|
2188
|
+
checkSyntax(u) {
|
|
2175
2189
|
let t = "";
|
|
2176
2190
|
try {
|
|
2177
|
-
const a = R(
|
|
2191
|
+
const a = R(u);
|
|
2178
2192
|
M(a.script);
|
|
2179
2193
|
} catch (a) {
|
|
2180
2194
|
a instanceof SyntaxError && (t = a.message);
|
|
2181
2195
|
}
|
|
2182
2196
|
return t;
|
|
2183
2197
|
}
|
|
2184
|
-
checkSetup(
|
|
2185
|
-
const t = R(
|
|
2198
|
+
checkSetup(u) {
|
|
2199
|
+
const t = R(u);
|
|
2186
2200
|
let a = 0;
|
|
2187
2201
|
return ju(t.script, {
|
|
2188
2202
|
ObjectMethod(i) {
|
|
@@ -2192,50 +2206,50 @@ class bt {
|
|
|
2192
2206
|
}
|
|
2193
2207
|
}), a === 3;
|
|
2194
2208
|
}
|
|
2195
|
-
findVantIcons(
|
|
2196
|
-
const t = R(
|
|
2209
|
+
findVantIcons(u) {
|
|
2210
|
+
const t = R(u), a = /<(?:VanIcon|van-icon)\b[^>]*>/g, i = t.template.match(a) || [], r = [];
|
|
2197
2211
|
return i.forEach((s) => {
|
|
2198
2212
|
const c = s.match(/\bname="([^"]+)"/);
|
|
2199
2213
|
c && r.push(c[1]);
|
|
2200
2214
|
}), [...new Set(r)];
|
|
2201
2215
|
}
|
|
2202
|
-
checkVantIcons(
|
|
2203
|
-
const t = this.findVantIcons(
|
|
2216
|
+
checkVantIcons(u) {
|
|
2217
|
+
const t = this.findVantIcons(u), a = [];
|
|
2204
2218
|
for (const i of t)
|
|
2205
2219
|
$u.includes(i) || a.push(i);
|
|
2206
2220
|
return a;
|
|
2207
2221
|
}
|
|
2208
|
-
findVtjIcons(
|
|
2209
|
-
const t = R(
|
|
2222
|
+
findVtjIcons(u) {
|
|
2223
|
+
const t = R(u), a = /import\s*{([^}]+)}\s*from\s*['"]\@vtj\/icons['"]/, i = t.script.match(a);
|
|
2210
2224
|
return !i || !i[1] ? [] : i[1].split(",").map((r) => r.trim()).filter(Boolean);
|
|
2211
2225
|
}
|
|
2212
|
-
checkVtjIcons(
|
|
2213
|
-
const t = this.findVtjIcons(
|
|
2226
|
+
checkVtjIcons(u) {
|
|
2227
|
+
const t = this.findVtjIcons(u), a = [];
|
|
2214
2228
|
for (const i of t)
|
|
2215
2229
|
ft.includes(i) || a.push(i);
|
|
2216
2230
|
return a;
|
|
2217
2231
|
}
|
|
2218
|
-
hasUnchangedComment(
|
|
2232
|
+
hasUnchangedComment(u) {
|
|
2219
2233
|
const t = /<!--([\s\S]*?)-->/g, a = /\/\*([\s\S]*?)\*\//g, i = /\/\/(.*)/g;
|
|
2220
2234
|
return [
|
|
2221
|
-
...
|
|
2222
|
-
...
|
|
2223
|
-
...
|
|
2235
|
+
...u.match(t) || [],
|
|
2236
|
+
...u.match(a) || [],
|
|
2237
|
+
...u.match(i) || []
|
|
2224
2238
|
].some(
|
|
2225
2239
|
(s) => /不变/.test(s.replace(/\*/g, ""))
|
|
2226
2240
|
// 移除多行注释的星号避免干扰
|
|
2227
2241
|
);
|
|
2228
2242
|
}
|
|
2229
2243
|
}
|
|
2230
|
-
function ht(
|
|
2231
|
-
const
|
|
2232
|
-
let t =
|
|
2233
|
-
const a = R(
|
|
2244
|
+
function ht(e) {
|
|
2245
|
+
const u = [];
|
|
2246
|
+
let t = e;
|
|
2247
|
+
const a = R(e);
|
|
2234
2248
|
if (!a.template || !a.script)
|
|
2235
2249
|
return {
|
|
2236
2250
|
fixed: !1,
|
|
2237
|
-
originalCode:
|
|
2238
|
-
fixedCode:
|
|
2251
|
+
originalCode: e,
|
|
2252
|
+
fixedCode: e,
|
|
2239
2253
|
changes: []
|
|
2240
2254
|
};
|
|
2241
2255
|
const i = pt(a.script), r = a.template;
|
|
@@ -2243,9 +2257,9 @@ function ht(u) {
|
|
|
2243
2257
|
const c = [], o = /\{\{([^}]+)\}\}/g;
|
|
2244
2258
|
let n;
|
|
2245
2259
|
for (; (n = o.exec(r)) !== null; ) {
|
|
2246
|
-
const g = n[0], S = n[1], y =
|
|
2260
|
+
const g = n[0], S = n[1], y = F(S, i);
|
|
2247
2261
|
if (y !== S) {
|
|
2248
|
-
const x =
|
|
2262
|
+
const x = P(r, n.index);
|
|
2249
2263
|
c.push({
|
|
2250
2264
|
start: n.index,
|
|
2251
2265
|
end: n.index + g.length,
|
|
@@ -2253,7 +2267,7 @@ function ht(u) {
|
|
|
2253
2267
|
replacement: `{{${y}}}`,
|
|
2254
2268
|
line: x.line,
|
|
2255
2269
|
column: x.column
|
|
2256
|
-
}),
|
|
2270
|
+
}), u.push({
|
|
2257
2271
|
line: x.line + 1,
|
|
2258
2272
|
column: x.column,
|
|
2259
2273
|
original: S.trim(),
|
|
@@ -2264,9 +2278,9 @@ function ht(u) {
|
|
|
2264
2278
|
}
|
|
2265
2279
|
const f = /:(\w+)="([^"]+)"/g;
|
|
2266
2280
|
for (; (n = f.exec(r)) !== null; ) {
|
|
2267
|
-
const g = n[0], S = n[1], y = n[2], x =
|
|
2281
|
+
const g = n[0], S = n[1], y = n[2], x = F(y, i);
|
|
2268
2282
|
if (x !== y) {
|
|
2269
|
-
const v =
|
|
2283
|
+
const v = P(r, n.index);
|
|
2270
2284
|
c.push({
|
|
2271
2285
|
start: n.index,
|
|
2272
2286
|
end: n.index + g.length,
|
|
@@ -2274,7 +2288,7 @@ function ht(u) {
|
|
|
2274
2288
|
replacement: `:${S}="${x}"`,
|
|
2275
2289
|
line: v.line,
|
|
2276
2290
|
column: v.column
|
|
2277
|
-
}),
|
|
2291
|
+
}), u.push({
|
|
2278
2292
|
line: v.line + 1,
|
|
2279
2293
|
column: v.column,
|
|
2280
2294
|
original: y,
|
|
@@ -2285,9 +2299,9 @@ function ht(u) {
|
|
|
2285
2299
|
}
|
|
2286
2300
|
const l = /v-(if|else-if|show)="([^"]+)"/g;
|
|
2287
2301
|
for (; (n = l.exec(r)) !== null; ) {
|
|
2288
|
-
const g = n[0], S = n[1], y = n[2], x =
|
|
2302
|
+
const g = n[0], S = n[1], y = n[2], x = F(y, i);
|
|
2289
2303
|
if (x !== y) {
|
|
2290
|
-
const v =
|
|
2304
|
+
const v = P(r, n.index);
|
|
2291
2305
|
c.push({
|
|
2292
2306
|
start: n.index,
|
|
2293
2307
|
end: n.index + g.length,
|
|
@@ -2295,7 +2309,7 @@ function ht(u) {
|
|
|
2295
2309
|
replacement: `v-${S}="${x}"`,
|
|
2296
2310
|
line: v.line,
|
|
2297
2311
|
column: v.column
|
|
2298
|
-
}),
|
|
2312
|
+
}), u.push({
|
|
2299
2313
|
line: v.line + 1,
|
|
2300
2314
|
column: v.column,
|
|
2301
2315
|
original: y,
|
|
@@ -2308,12 +2322,12 @@ function ht(u) {
|
|
|
2308
2322
|
for (; (n = m.exec(r)) !== null; ) {
|
|
2309
2323
|
const g = n[0], y = n[1].match(/^(.+)\s+in\s+(.+)$/);
|
|
2310
2324
|
if (y) {
|
|
2311
|
-
const [, x, v] = y, q =
|
|
2325
|
+
const [, x, v] = y, q = F(
|
|
2312
2326
|
v,
|
|
2313
2327
|
i
|
|
2314
2328
|
);
|
|
2315
2329
|
if (q !== v) {
|
|
2316
|
-
const G =
|
|
2330
|
+
const G = P(r, n.index), tu = `v-for="${x} in ${q}"`;
|
|
2317
2331
|
c.push({
|
|
2318
2332
|
start: n.index,
|
|
2319
2333
|
end: n.index + g.length,
|
|
@@ -2321,7 +2335,7 @@ function ht(u) {
|
|
|
2321
2335
|
replacement: tu,
|
|
2322
2336
|
line: G.line,
|
|
2323
2337
|
column: G.column
|
|
2324
|
-
}),
|
|
2338
|
+
}), u.push({
|
|
2325
2339
|
line: G.line + 1,
|
|
2326
2340
|
column: G.column,
|
|
2327
2341
|
original: v,
|
|
@@ -2333,9 +2347,9 @@ function ht(u) {
|
|
|
2333
2347
|
}
|
|
2334
2348
|
const h = /v-model="([^"]+)"/g;
|
|
2335
2349
|
for (; (n = h.exec(r)) !== null; ) {
|
|
2336
|
-
const g = n[0], S = n[1], y =
|
|
2350
|
+
const g = n[0], S = n[1], y = F(S, i);
|
|
2337
2351
|
if (y !== S) {
|
|
2338
|
-
const x =
|
|
2352
|
+
const x = P(r, n.index);
|
|
2339
2353
|
c.push({
|
|
2340
2354
|
start: n.index,
|
|
2341
2355
|
end: n.index + g.length,
|
|
@@ -2343,7 +2357,7 @@ function ht(u) {
|
|
|
2343
2357
|
replacement: `v-model="${y}"`,
|
|
2344
2358
|
line: x.line,
|
|
2345
2359
|
column: x.column
|
|
2346
|
-
}),
|
|
2360
|
+
}), u.push({
|
|
2347
2361
|
line: x.line + 1,
|
|
2348
2362
|
column: x.column,
|
|
2349
2363
|
original: S,
|
|
@@ -2354,9 +2368,9 @@ function ht(u) {
|
|
|
2354
2368
|
}
|
|
2355
2369
|
const I = /v-bind="([^"]+)"/g;
|
|
2356
2370
|
for (; (n = I.exec(r)) !== null; ) {
|
|
2357
|
-
const g = n[0], S = n[1], y =
|
|
2371
|
+
const g = n[0], S = n[1], y = F(S, i);
|
|
2358
2372
|
if (y !== S) {
|
|
2359
|
-
const x =
|
|
2373
|
+
const x = P(r, n.index);
|
|
2360
2374
|
c.push({
|
|
2361
2375
|
start: n.index,
|
|
2362
2376
|
end: n.index + g.length,
|
|
@@ -2364,7 +2378,7 @@ function ht(u) {
|
|
|
2364
2378
|
replacement: `v-bind="${y}"`,
|
|
2365
2379
|
line: x.line,
|
|
2366
2380
|
column: x.column
|
|
2367
|
-
}),
|
|
2381
|
+
}), u.push({
|
|
2368
2382
|
line: x.line + 1,
|
|
2369
2383
|
column: x.column,
|
|
2370
2384
|
original: S,
|
|
@@ -2375,9 +2389,9 @@ function ht(u) {
|
|
|
2375
2389
|
}
|
|
2376
2390
|
const A = /v-(text|html)="([^"]+)"/g;
|
|
2377
2391
|
for (; (n = A.exec(r)) !== null; ) {
|
|
2378
|
-
const g = n[0], S = n[1], y = n[2], x =
|
|
2392
|
+
const g = n[0], S = n[1], y = n[2], x = F(y, i);
|
|
2379
2393
|
if (x !== y) {
|
|
2380
|
-
const v =
|
|
2394
|
+
const v = P(r, n.index);
|
|
2381
2395
|
c.push({
|
|
2382
2396
|
start: n.index,
|
|
2383
2397
|
end: n.index + g.length,
|
|
@@ -2385,7 +2399,7 @@ function ht(u) {
|
|
|
2385
2399
|
replacement: `v-${S}="${x}"`,
|
|
2386
2400
|
line: v.line,
|
|
2387
2401
|
column: v.column
|
|
2388
|
-
}),
|
|
2402
|
+
}), u.push({
|
|
2389
2403
|
line: v.line + 1,
|
|
2390
2404
|
column: v.column,
|
|
2391
2405
|
original: y,
|
|
@@ -2398,7 +2412,7 @@ function ht(u) {
|
|
|
2398
2412
|
for (; (n = H.exec(r)) !== null; ) {
|
|
2399
2413
|
const g = n[0], S = n[1], y = n[2], x = n[3], v = mt(x, i);
|
|
2400
2414
|
if (v !== x) {
|
|
2401
|
-
const q =
|
|
2415
|
+
const q = P(r, n.index);
|
|
2402
2416
|
c.push({
|
|
2403
2417
|
start: n.index,
|
|
2404
2418
|
end: n.index + g.length,
|
|
@@ -2406,7 +2420,7 @@ function ht(u) {
|
|
|
2406
2420
|
replacement: `${S}${y}="${v}"`,
|
|
2407
2421
|
line: q.line,
|
|
2408
2422
|
column: q.column
|
|
2409
|
-
}),
|
|
2423
|
+
}), u.push({
|
|
2410
2424
|
line: q.line + 1,
|
|
2411
2425
|
column: q.column,
|
|
2412
2426
|
original: x,
|
|
@@ -2418,28 +2432,28 @@ function ht(u) {
|
|
|
2418
2432
|
if (c.sort((g, S) => S.start - g.start), c.forEach((g) => {
|
|
2419
2433
|
s = s.substring(0, g.start) + g.replacement + s.substring(g.end);
|
|
2420
2434
|
}), c.length > 0) {
|
|
2421
|
-
const g =
|
|
2422
|
-
t =
|
|
2435
|
+
const g = e.indexOf("<template>"), S = e.lastIndexOf("</template>") + 11;
|
|
2436
|
+
t = e.substring(0, g) + `<template>
|
|
2423
2437
|
` + s + `
|
|
2424
|
-
</template>` +
|
|
2438
|
+
</template>` + e.substring(S);
|
|
2425
2439
|
}
|
|
2426
2440
|
return {
|
|
2427
2441
|
fixed: c.length > 0,
|
|
2428
|
-
originalCode:
|
|
2442
|
+
originalCode: e,
|
|
2429
2443
|
fixedCode: t,
|
|
2430
|
-
changes:
|
|
2444
|
+
changes: u
|
|
2431
2445
|
};
|
|
2432
2446
|
}
|
|
2433
|
-
function pt(
|
|
2434
|
-
const
|
|
2447
|
+
function pt(e) {
|
|
2448
|
+
const u = /* @__PURE__ */ new Set();
|
|
2435
2449
|
try {
|
|
2436
|
-
const t = M(
|
|
2450
|
+
const t = M(e);
|
|
2437
2451
|
Z(t, {
|
|
2438
2452
|
CallExpression(a) {
|
|
2439
2453
|
if (a.node.callee.type === "Identifier" && a.node.callee.name === "reactive" && a.node.arguments.length > 0 && a.node.arguments[0].type === "ObjectExpression") {
|
|
2440
2454
|
const i = a.parent;
|
|
2441
2455
|
i.type === "VariableDeclarator" && i.id.type === "Identifier" && i.id.name === "state" && a.node.arguments[0].properties.forEach((s) => {
|
|
2442
|
-
s.type === "ObjectProperty" && s.key.type === "Identifier" &&
|
|
2456
|
+
s.type === "ObjectProperty" && s.key.type === "Identifier" && u.add(s.key.name);
|
|
2443
2457
|
});
|
|
2444
2458
|
}
|
|
2445
2459
|
}
|
|
@@ -2447,18 +2461,18 @@ function pt(u) {
|
|
|
2447
2461
|
} catch (t) {
|
|
2448
2462
|
console.error("Failed to parse script:", t);
|
|
2449
2463
|
}
|
|
2450
|
-
return
|
|
2464
|
+
return u;
|
|
2451
2465
|
}
|
|
2452
|
-
function
|
|
2453
|
-
let t =
|
|
2454
|
-
return
|
|
2466
|
+
function F(e, u) {
|
|
2467
|
+
let t = e.trim();
|
|
2468
|
+
return u.forEach((a) => {
|
|
2455
2469
|
const i = new RegExp(`(?<![\\w.])${a}(?![\\w])`, "g");
|
|
2456
2470
|
i.test(t) && !t.includes(`state.${a}`) && (t = t.replace(i, `state.${a}`));
|
|
2457
2471
|
}), t;
|
|
2458
2472
|
}
|
|
2459
|
-
function mt(
|
|
2460
|
-
let t =
|
|
2461
|
-
return
|
|
2473
|
+
function mt(e, u) {
|
|
2474
|
+
let t = e.trim();
|
|
2475
|
+
return u.forEach((a) => {
|
|
2462
2476
|
const i = new RegExp(
|
|
2463
2477
|
`(?<![\\w.])${a}(\\+\\+|--|\\s*[+\\-*/]=)`,
|
|
2464
2478
|
"g"
|
|
@@ -2467,10 +2481,10 @@ function mt(u, e) {
|
|
|
2467
2481
|
"g"
|
|
2468
2482
|
);
|
|
2469
2483
|
t.includes(`state.${a}`) || (t = t.replace(i, `state.${a}$1`), t = t.replace(r, (s, c) => c ? `${c}state.${a}` : s.includes(a) && !s.includes("state.") ? `state.${a}` : s));
|
|
2470
|
-
}),
|
|
2484
|
+
}), F(t, u);
|
|
2471
2485
|
}
|
|
2472
|
-
function
|
|
2473
|
-
const t =
|
|
2486
|
+
function P(e, u) {
|
|
2487
|
+
const t = e.substring(0, u).split(`
|
|
2474
2488
|
`);
|
|
2475
2489
|
return {
|
|
2476
2490
|
line: t.length,
|
|
@@ -2478,19 +2492,19 @@ function F(u, e) {
|
|
|
2478
2492
|
};
|
|
2479
2493
|
}
|
|
2480
2494
|
class xt {
|
|
2481
|
-
fixBasedOnValidation(
|
|
2482
|
-
let a =
|
|
2495
|
+
fixBasedOnValidation(u, t) {
|
|
2496
|
+
let a = u;
|
|
2483
2497
|
return t.illegalVantIcons.length && (a = this.fixVantIcons(a)), t.illegalVtjIcons.length && (a = this.fixVtjIcons(a, t.illegalVtjIcons)), ht(a).fixedCode;
|
|
2484
2498
|
}
|
|
2485
|
-
fixVantIcons(
|
|
2486
|
-
const t = R(
|
|
2499
|
+
fixVantIcons(u) {
|
|
2500
|
+
const t = R(u), a = t.template.replace(
|
|
2487
2501
|
/<(?:VanIcon|van-icon)\s+[^>]*name="([^"]+)"[^>]*>/g,
|
|
2488
2502
|
(i, r) => $u.includes(r) ? i : i.replace(r, lt)
|
|
2489
2503
|
);
|
|
2490
2504
|
return this.reconstructSFC(t, a, t.script);
|
|
2491
2505
|
}
|
|
2492
|
-
fixVtjIcons(
|
|
2493
|
-
const a = R(
|
|
2506
|
+
fixVtjIcons(u, t = []) {
|
|
2507
|
+
const a = R(u);
|
|
2494
2508
|
a.script = ju(a.script, {
|
|
2495
2509
|
ImportDeclaration(s) {
|
|
2496
2510
|
if (s.node.source.value === "@vtj/icons") {
|
|
@@ -2554,17 +2568,17 @@ class xt {
|
|
|
2554
2568
|
);
|
|
2555
2569
|
return this.reconstructSFC(a, a.template, a.script);
|
|
2556
2570
|
}
|
|
2557
|
-
reconstructSFC(
|
|
2571
|
+
reconstructSFC(u, t, a) {
|
|
2558
2572
|
let i = "";
|
|
2559
|
-
return t &&
|
|
2573
|
+
return t && u.template && (i += `<template>
|
|
2560
2574
|
${t}
|
|
2561
2575
|
</template>
|
|
2562
2576
|
|
|
2563
|
-
`), a &&
|
|
2577
|
+
`), a && u.script && (i += `<script>
|
|
2564
2578
|
${a}
|
|
2565
2579
|
<\/script>
|
|
2566
2580
|
|
|
2567
|
-
`),
|
|
2581
|
+
`), u.styles.forEach((r) => {
|
|
2568
2582
|
i += `<style lang="scss" scoped>
|
|
2569
2583
|
`, i += `${r}
|
|
2570
2584
|
`, i += `</style>
|
|
@@ -2573,8 +2587,8 @@ ${a}
|
|
|
2573
2587
|
}), i;
|
|
2574
2588
|
}
|
|
2575
2589
|
}
|
|
2576
|
-
async function Dt(
|
|
2577
|
-
const { id:
|
|
2590
|
+
async function Dt(e) {
|
|
2591
|
+
const { id: u, name: t, source: a, project: i } = e, r = oe(a, t);
|
|
2578
2592
|
if (r)
|
|
2579
2593
|
return Promise.reject(r);
|
|
2580
2594
|
const { dependencies: s = [], platform: c = "web" } = i || {}, o = new bt(), n = new xt(), f = o.validate(a);
|
|
@@ -2603,14 +2617,14 @@ async function Dt(u) {
|
|
|
2603
2617
|
imports: lu,
|
|
2604
2618
|
dataSources: Gu,
|
|
2605
2619
|
directives: Wu
|
|
2606
|
-
} =
|
|
2620
|
+
} = Fe(h.script, i), { nodes: Ju, slots: Xu, context: zu } = tt(u, t, h.template, {
|
|
2607
2621
|
platform: c,
|
|
2608
2622
|
handlers: Hu,
|
|
2609
2623
|
styles: I,
|
|
2610
2624
|
imports: lu,
|
|
2611
2625
|
directives: Wu
|
|
2612
2626
|
}), bu = {
|
|
2613
|
-
id:
|
|
2627
|
+
id: u,
|
|
2614
2628
|
name: t,
|
|
2615
2629
|
inject: Uu,
|
|
2616
2630
|
props: q,
|
|
@@ -2626,7 +2640,7 @@ async function Dt(u) {
|
|
|
2626
2640
|
nodes: Ju,
|
|
2627
2641
|
css: A
|
|
2628
2642
|
}, Qu = Object.keys(x || {}), Zu = (q || []).map(
|
|
2629
|
-
(
|
|
2643
|
+
(C) => typeof C == "string" ? C : C.name
|
|
2630
2644
|
), Ku = [
|
|
2631
2645
|
"$el",
|
|
2632
2646
|
"$emit",
|
|
@@ -2654,23 +2668,23 @@ async function Dt(u) {
|
|
|
2654
2668
|
};
|
|
2655
2669
|
return await gt(
|
|
2656
2670
|
bu,
|
|
2657
|
-
async (
|
|
2658
|
-
await yt(
|
|
2671
|
+
async (C) => {
|
|
2672
|
+
await yt(C, async (X) => {
|
|
2659
2673
|
if (du(X)) {
|
|
2660
2674
|
const ue = await xu(X.value);
|
|
2661
|
-
X.value = yu(ue,
|
|
2675
|
+
X.value = yu(ue, C.id, hu);
|
|
2662
2676
|
}
|
|
2663
2677
|
});
|
|
2664
2678
|
},
|
|
2665
|
-
async (
|
|
2666
|
-
const X = await xu(
|
|
2667
|
-
|
|
2679
|
+
async (C) => {
|
|
2680
|
+
const X = await xu(C.value);
|
|
2681
|
+
C.value = yu(X, "", hu);
|
|
2668
2682
|
}
|
|
2669
2683
|
), new te(bu).toDsl();
|
|
2670
2684
|
}
|
|
2671
|
-
async function gt(
|
|
2685
|
+
async function gt(e, u, t) {
|
|
2672
2686
|
const a = async (h, I) => {
|
|
2673
|
-
if (await
|
|
2687
|
+
if (await u(h, I), Array.isArray(h?.children))
|
|
2674
2688
|
for (const A of h?.children || [])
|
|
2675
2689
|
await a(A, h);
|
|
2676
2690
|
}, i = async (h) => {
|
|
@@ -2692,7 +2706,7 @@ async function gt(u, e, t) {
|
|
|
2692
2706
|
methods: f,
|
|
2693
2707
|
lifeCycles: l,
|
|
2694
2708
|
inject: m
|
|
2695
|
-
} =
|
|
2709
|
+
} = e;
|
|
2696
2710
|
if (await i({
|
|
2697
2711
|
state: r,
|
|
2698
2712
|
watch: s,
|
|
@@ -2702,34 +2716,34 @@ async function gt(u, e, t) {
|
|
|
2702
2716
|
methods: f,
|
|
2703
2717
|
lifeCycles: l,
|
|
2704
2718
|
inject: m
|
|
2705
|
-
}), Array.isArray(
|
|
2706
|
-
for (const h of
|
|
2719
|
+
}), Array.isArray(e.nodes))
|
|
2720
|
+
for (const h of e.nodes)
|
|
2707
2721
|
await a(h);
|
|
2708
2722
|
}
|
|
2709
|
-
async function yt(
|
|
2723
|
+
async function yt(e, u) {
|
|
2710
2724
|
const t = async (a) => {
|
|
2711
2725
|
if (!a || typeof a != "object") return;
|
|
2712
2726
|
if (Array.isArray(a)) {
|
|
2713
2727
|
for (let r of a)
|
|
2714
|
-
await
|
|
2728
|
+
await u(r), await t(r);
|
|
2715
2729
|
return;
|
|
2716
2730
|
}
|
|
2717
2731
|
if (du(a)) {
|
|
2718
|
-
await
|
|
2732
|
+
await u(a);
|
|
2719
2733
|
return;
|
|
2720
2734
|
}
|
|
2721
2735
|
const i = Object.values(a);
|
|
2722
2736
|
for (const r of i)
|
|
2723
|
-
await
|
|
2737
|
+
await u(r), await t(r);
|
|
2724
2738
|
};
|
|
2725
|
-
await t(
|
|
2739
|
+
await t(e);
|
|
2726
2740
|
}
|
|
2727
|
-
function St(
|
|
2728
|
-
const t = {}, a =
|
|
2741
|
+
function St(e = [], u = []) {
|
|
2742
|
+
const t = {}, a = u.reduce(
|
|
2729
2743
|
(i, r) => (i[r.package] = r.library, i),
|
|
2730
2744
|
{}
|
|
2731
2745
|
);
|
|
2732
|
-
for (const { from: i, imports: r } of
|
|
2746
|
+
for (const { from: i, imports: r } of e)
|
|
2733
2747
|
if (Array.isArray(r))
|
|
2734
2748
|
r.forEach((s) => {
|
|
2735
2749
|
const c = a[i];
|
|
@@ -2751,5 +2765,5 @@ export {
|
|
|
2751
2765
|
Rt as parseUniApp,
|
|
2752
2766
|
Dt as parseVue,
|
|
2753
2767
|
yu as patchCode,
|
|
2754
|
-
|
|
2768
|
+
$ as replacer
|
|
2755
2769
|
};
|