@cliff-studio/sanity-plugin-bunny-input 1.0.0
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/README.md +130 -0
- package/dist/_chunks-es/index.js +19000 -0
- package/dist/_chunks-es/index.js.map +1 -0
- package/dist/_chunks-es/refractor.js +4810 -0
- package/dist/_chunks-es/refractor.js.map +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/package.json +55 -0
- package/sanity.json +4 -0
- package/v2-incompatible.js +8 -0
|
@@ -0,0 +1,4810 @@
|
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { commonjsGlobal, getDefaultExportFromCjs, distExports } from "./index.js";
|
|
3
|
+
import r__default from "react";
|
|
4
|
+
var immutable, hasRequiredImmutable;
|
|
5
|
+
function requireImmutable() {
|
|
6
|
+
if (hasRequiredImmutable) return immutable;
|
|
7
|
+
hasRequiredImmutable = 1, immutable = extend;
|
|
8
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
9
|
+
function extend() {
|
|
10
|
+
for (var target2 = {}, i = 0; i < arguments.length; i++) {
|
|
11
|
+
var source = arguments[i];
|
|
12
|
+
for (var key in source)
|
|
13
|
+
hasOwnProperty.call(source, key) && (target2[key] = source[key]);
|
|
14
|
+
}
|
|
15
|
+
return target2;
|
|
16
|
+
}
|
|
17
|
+
return immutable;
|
|
18
|
+
}
|
|
19
|
+
var schema, hasRequiredSchema;
|
|
20
|
+
function requireSchema() {
|
|
21
|
+
if (hasRequiredSchema) return schema;
|
|
22
|
+
hasRequiredSchema = 1, schema = Schema;
|
|
23
|
+
var proto = Schema.prototype;
|
|
24
|
+
proto.space = null, proto.normal = {}, proto.property = {};
|
|
25
|
+
function Schema(property, normal, space) {
|
|
26
|
+
this.property = property, this.normal = normal, space && (this.space = space);
|
|
27
|
+
}
|
|
28
|
+
return schema;
|
|
29
|
+
}
|
|
30
|
+
var merge_1, hasRequiredMerge;
|
|
31
|
+
function requireMerge() {
|
|
32
|
+
if (hasRequiredMerge) return merge_1;
|
|
33
|
+
hasRequiredMerge = 1;
|
|
34
|
+
var xtend = requireImmutable(), Schema = requireSchema();
|
|
35
|
+
merge_1 = merge;
|
|
36
|
+
function merge(definitions) {
|
|
37
|
+
for (var length = definitions.length, property = [], normal = [], index = -1, info2, space; ++index < length; )
|
|
38
|
+
info2 = definitions[index], property.push(info2.property), normal.push(info2.normal), space = info2.space;
|
|
39
|
+
return new Schema(
|
|
40
|
+
xtend.apply(null, property),
|
|
41
|
+
xtend.apply(null, normal),
|
|
42
|
+
space
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
return merge_1;
|
|
46
|
+
}
|
|
47
|
+
var normalize_1, hasRequiredNormalize;
|
|
48
|
+
function requireNormalize() {
|
|
49
|
+
if (hasRequiredNormalize) return normalize_1;
|
|
50
|
+
hasRequiredNormalize = 1, normalize_1 = normalize;
|
|
51
|
+
function normalize(value) {
|
|
52
|
+
return value.toLowerCase();
|
|
53
|
+
}
|
|
54
|
+
return normalize_1;
|
|
55
|
+
}
|
|
56
|
+
var info, hasRequiredInfo;
|
|
57
|
+
function requireInfo() {
|
|
58
|
+
if (hasRequiredInfo) return info;
|
|
59
|
+
hasRequiredInfo = 1, info = Info;
|
|
60
|
+
var proto = Info.prototype;
|
|
61
|
+
proto.space = null, proto.attribute = null, proto.property = null, proto.boolean = !1, proto.booleanish = !1, proto.overloadedBoolean = !1, proto.number = !1, proto.commaSeparated = !1, proto.spaceSeparated = !1, proto.commaOrSpaceSeparated = !1, proto.mustUseProperty = !1, proto.defined = !1;
|
|
62
|
+
function Info(property, attribute) {
|
|
63
|
+
this.property = property, this.attribute = attribute;
|
|
64
|
+
}
|
|
65
|
+
return info;
|
|
66
|
+
}
|
|
67
|
+
var types = {}, hasRequiredTypes;
|
|
68
|
+
function requireTypes() {
|
|
69
|
+
if (hasRequiredTypes) return types;
|
|
70
|
+
hasRequiredTypes = 1;
|
|
71
|
+
var powers = 0;
|
|
72
|
+
types.boolean = increment(), types.booleanish = increment(), types.overloadedBoolean = increment(), types.number = increment(), types.spaceSeparated = increment(), types.commaSeparated = increment(), types.commaOrSpaceSeparated = increment();
|
|
73
|
+
function increment() {
|
|
74
|
+
return Math.pow(2, ++powers);
|
|
75
|
+
}
|
|
76
|
+
return types;
|
|
77
|
+
}
|
|
78
|
+
var definedInfo, hasRequiredDefinedInfo;
|
|
79
|
+
function requireDefinedInfo() {
|
|
80
|
+
if (hasRequiredDefinedInfo) return definedInfo;
|
|
81
|
+
hasRequiredDefinedInfo = 1;
|
|
82
|
+
var Info = requireInfo(), types2 = requireTypes();
|
|
83
|
+
definedInfo = DefinedInfo, DefinedInfo.prototype = new Info(), DefinedInfo.prototype.defined = !0;
|
|
84
|
+
var checks = [
|
|
85
|
+
"boolean",
|
|
86
|
+
"booleanish",
|
|
87
|
+
"overloadedBoolean",
|
|
88
|
+
"number",
|
|
89
|
+
"commaSeparated",
|
|
90
|
+
"spaceSeparated",
|
|
91
|
+
"commaOrSpaceSeparated"
|
|
92
|
+
], checksLength = checks.length;
|
|
93
|
+
function DefinedInfo(property, attribute, mask, space) {
|
|
94
|
+
var index = -1, check2;
|
|
95
|
+
for (mark(this, "space", space), Info.call(this, property, attribute); ++index < checksLength; )
|
|
96
|
+
check2 = checks[index], mark(this, check2, (mask & types2[check2]) === types2[check2]);
|
|
97
|
+
}
|
|
98
|
+
function mark(values, key, value) {
|
|
99
|
+
value && (values[key] = value);
|
|
100
|
+
}
|
|
101
|
+
return definedInfo;
|
|
102
|
+
}
|
|
103
|
+
var create_1, hasRequiredCreate;
|
|
104
|
+
function requireCreate() {
|
|
105
|
+
if (hasRequiredCreate) return create_1;
|
|
106
|
+
hasRequiredCreate = 1;
|
|
107
|
+
var normalize = requireNormalize(), Schema = requireSchema(), DefinedInfo = requireDefinedInfo();
|
|
108
|
+
create_1 = create;
|
|
109
|
+
function create(definition) {
|
|
110
|
+
var space = definition.space, mustUseProperty = definition.mustUseProperty || [], attributes = definition.attributes || {}, props = definition.properties, transform = definition.transform, property = {}, normal = {}, prop2, info2;
|
|
111
|
+
for (prop2 in props)
|
|
112
|
+
info2 = new DefinedInfo(
|
|
113
|
+
prop2,
|
|
114
|
+
transform(attributes, prop2),
|
|
115
|
+
props[prop2],
|
|
116
|
+
space
|
|
117
|
+
), mustUseProperty.indexOf(prop2) !== -1 && (info2.mustUseProperty = !0), property[prop2] = info2, normal[normalize(prop2)] = prop2, normal[normalize(info2.attribute)] = prop2;
|
|
118
|
+
return new Schema(property, normal, space);
|
|
119
|
+
}
|
|
120
|
+
return create_1;
|
|
121
|
+
}
|
|
122
|
+
var xlink, hasRequiredXlink;
|
|
123
|
+
function requireXlink() {
|
|
124
|
+
if (hasRequiredXlink) return xlink;
|
|
125
|
+
hasRequiredXlink = 1;
|
|
126
|
+
var create = requireCreate();
|
|
127
|
+
xlink = create({
|
|
128
|
+
space: "xlink",
|
|
129
|
+
transform: xlinkTransform,
|
|
130
|
+
properties: {
|
|
131
|
+
xLinkActuate: null,
|
|
132
|
+
xLinkArcRole: null,
|
|
133
|
+
xLinkHref: null,
|
|
134
|
+
xLinkRole: null,
|
|
135
|
+
xLinkShow: null,
|
|
136
|
+
xLinkTitle: null,
|
|
137
|
+
xLinkType: null
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
function xlinkTransform(_, prop2) {
|
|
141
|
+
return "xlink:" + prop2.slice(5).toLowerCase();
|
|
142
|
+
}
|
|
143
|
+
return xlink;
|
|
144
|
+
}
|
|
145
|
+
var xml, hasRequiredXml;
|
|
146
|
+
function requireXml() {
|
|
147
|
+
if (hasRequiredXml) return xml;
|
|
148
|
+
hasRequiredXml = 1;
|
|
149
|
+
var create = requireCreate();
|
|
150
|
+
xml = create({
|
|
151
|
+
space: "xml",
|
|
152
|
+
transform: xmlTransform,
|
|
153
|
+
properties: {
|
|
154
|
+
xmlLang: null,
|
|
155
|
+
xmlBase: null,
|
|
156
|
+
xmlSpace: null
|
|
157
|
+
}
|
|
158
|
+
});
|
|
159
|
+
function xmlTransform(_, prop2) {
|
|
160
|
+
return "xml:" + prop2.slice(3).toLowerCase();
|
|
161
|
+
}
|
|
162
|
+
return xml;
|
|
163
|
+
}
|
|
164
|
+
var caseSensitiveTransform_1, hasRequiredCaseSensitiveTransform;
|
|
165
|
+
function requireCaseSensitiveTransform() {
|
|
166
|
+
if (hasRequiredCaseSensitiveTransform) return caseSensitiveTransform_1;
|
|
167
|
+
hasRequiredCaseSensitiveTransform = 1, caseSensitiveTransform_1 = caseSensitiveTransform;
|
|
168
|
+
function caseSensitiveTransform(attributes, attribute) {
|
|
169
|
+
return attribute in attributes ? attributes[attribute] : attribute;
|
|
170
|
+
}
|
|
171
|
+
return caseSensitiveTransform_1;
|
|
172
|
+
}
|
|
173
|
+
var caseInsensitiveTransform_1, hasRequiredCaseInsensitiveTransform;
|
|
174
|
+
function requireCaseInsensitiveTransform() {
|
|
175
|
+
if (hasRequiredCaseInsensitiveTransform) return caseInsensitiveTransform_1;
|
|
176
|
+
hasRequiredCaseInsensitiveTransform = 1;
|
|
177
|
+
var caseSensitiveTransform = requireCaseSensitiveTransform();
|
|
178
|
+
caseInsensitiveTransform_1 = caseInsensitiveTransform;
|
|
179
|
+
function caseInsensitiveTransform(attributes, property) {
|
|
180
|
+
return caseSensitiveTransform(attributes, property.toLowerCase());
|
|
181
|
+
}
|
|
182
|
+
return caseInsensitiveTransform_1;
|
|
183
|
+
}
|
|
184
|
+
var xmlns, hasRequiredXmlns;
|
|
185
|
+
function requireXmlns() {
|
|
186
|
+
if (hasRequiredXmlns) return xmlns;
|
|
187
|
+
hasRequiredXmlns = 1;
|
|
188
|
+
var create = requireCreate(), caseInsensitiveTransform = requireCaseInsensitiveTransform();
|
|
189
|
+
return xmlns = create({
|
|
190
|
+
space: "xmlns",
|
|
191
|
+
attributes: {
|
|
192
|
+
xmlnsxlink: "xmlns:xlink"
|
|
193
|
+
},
|
|
194
|
+
transform: caseInsensitiveTransform,
|
|
195
|
+
properties: {
|
|
196
|
+
xmlns: null,
|
|
197
|
+
xmlnsXLink: null
|
|
198
|
+
}
|
|
199
|
+
}), xmlns;
|
|
200
|
+
}
|
|
201
|
+
var aria, hasRequiredAria;
|
|
202
|
+
function requireAria() {
|
|
203
|
+
if (hasRequiredAria) return aria;
|
|
204
|
+
hasRequiredAria = 1;
|
|
205
|
+
var types2 = requireTypes(), create = requireCreate(), booleanish = types2.booleanish, number = types2.number, spaceSeparated = types2.spaceSeparated;
|
|
206
|
+
aria = create({
|
|
207
|
+
transform: ariaTransform,
|
|
208
|
+
properties: {
|
|
209
|
+
ariaActiveDescendant: null,
|
|
210
|
+
ariaAtomic: booleanish,
|
|
211
|
+
ariaAutoComplete: null,
|
|
212
|
+
ariaBusy: booleanish,
|
|
213
|
+
ariaChecked: booleanish,
|
|
214
|
+
ariaColCount: number,
|
|
215
|
+
ariaColIndex: number,
|
|
216
|
+
ariaColSpan: number,
|
|
217
|
+
ariaControls: spaceSeparated,
|
|
218
|
+
ariaCurrent: null,
|
|
219
|
+
ariaDescribedBy: spaceSeparated,
|
|
220
|
+
ariaDetails: null,
|
|
221
|
+
ariaDisabled: booleanish,
|
|
222
|
+
ariaDropEffect: spaceSeparated,
|
|
223
|
+
ariaErrorMessage: null,
|
|
224
|
+
ariaExpanded: booleanish,
|
|
225
|
+
ariaFlowTo: spaceSeparated,
|
|
226
|
+
ariaGrabbed: booleanish,
|
|
227
|
+
ariaHasPopup: null,
|
|
228
|
+
ariaHidden: booleanish,
|
|
229
|
+
ariaInvalid: null,
|
|
230
|
+
ariaKeyShortcuts: null,
|
|
231
|
+
ariaLabel: null,
|
|
232
|
+
ariaLabelledBy: spaceSeparated,
|
|
233
|
+
ariaLevel: number,
|
|
234
|
+
ariaLive: null,
|
|
235
|
+
ariaModal: booleanish,
|
|
236
|
+
ariaMultiLine: booleanish,
|
|
237
|
+
ariaMultiSelectable: booleanish,
|
|
238
|
+
ariaOrientation: null,
|
|
239
|
+
ariaOwns: spaceSeparated,
|
|
240
|
+
ariaPlaceholder: null,
|
|
241
|
+
ariaPosInSet: number,
|
|
242
|
+
ariaPressed: booleanish,
|
|
243
|
+
ariaReadOnly: booleanish,
|
|
244
|
+
ariaRelevant: null,
|
|
245
|
+
ariaRequired: booleanish,
|
|
246
|
+
ariaRoleDescription: spaceSeparated,
|
|
247
|
+
ariaRowCount: number,
|
|
248
|
+
ariaRowIndex: number,
|
|
249
|
+
ariaRowSpan: number,
|
|
250
|
+
ariaSelected: booleanish,
|
|
251
|
+
ariaSetSize: number,
|
|
252
|
+
ariaSort: null,
|
|
253
|
+
ariaValueMax: number,
|
|
254
|
+
ariaValueMin: number,
|
|
255
|
+
ariaValueNow: number,
|
|
256
|
+
ariaValueText: null,
|
|
257
|
+
role: null
|
|
258
|
+
}
|
|
259
|
+
});
|
|
260
|
+
function ariaTransform(_, prop2) {
|
|
261
|
+
return prop2 === "role" ? prop2 : "aria-" + prop2.slice(4).toLowerCase();
|
|
262
|
+
}
|
|
263
|
+
return aria;
|
|
264
|
+
}
|
|
265
|
+
var html, hasRequiredHtml$2;
|
|
266
|
+
function requireHtml$2() {
|
|
267
|
+
if (hasRequiredHtml$2) return html;
|
|
268
|
+
hasRequiredHtml$2 = 1;
|
|
269
|
+
var types2 = requireTypes(), create = requireCreate(), caseInsensitiveTransform = requireCaseInsensitiveTransform(), boolean = types2.boolean, overloadedBoolean = types2.overloadedBoolean, booleanish = types2.booleanish, number = types2.number, spaceSeparated = types2.spaceSeparated, commaSeparated = types2.commaSeparated;
|
|
270
|
+
return html = create({
|
|
271
|
+
space: "html",
|
|
272
|
+
attributes: {
|
|
273
|
+
acceptcharset: "accept-charset",
|
|
274
|
+
classname: "class",
|
|
275
|
+
htmlfor: "for",
|
|
276
|
+
httpequiv: "http-equiv"
|
|
277
|
+
},
|
|
278
|
+
transform: caseInsensitiveTransform,
|
|
279
|
+
mustUseProperty: ["checked", "multiple", "muted", "selected"],
|
|
280
|
+
properties: {
|
|
281
|
+
// Standard Properties.
|
|
282
|
+
abbr: null,
|
|
283
|
+
accept: commaSeparated,
|
|
284
|
+
acceptCharset: spaceSeparated,
|
|
285
|
+
accessKey: spaceSeparated,
|
|
286
|
+
action: null,
|
|
287
|
+
allow: null,
|
|
288
|
+
allowFullScreen: boolean,
|
|
289
|
+
allowPaymentRequest: boolean,
|
|
290
|
+
allowUserMedia: boolean,
|
|
291
|
+
alt: null,
|
|
292
|
+
as: null,
|
|
293
|
+
async: boolean,
|
|
294
|
+
autoCapitalize: null,
|
|
295
|
+
autoComplete: spaceSeparated,
|
|
296
|
+
autoFocus: boolean,
|
|
297
|
+
autoPlay: boolean,
|
|
298
|
+
capture: boolean,
|
|
299
|
+
charSet: null,
|
|
300
|
+
checked: boolean,
|
|
301
|
+
cite: null,
|
|
302
|
+
className: spaceSeparated,
|
|
303
|
+
cols: number,
|
|
304
|
+
colSpan: null,
|
|
305
|
+
content: null,
|
|
306
|
+
contentEditable: booleanish,
|
|
307
|
+
controls: boolean,
|
|
308
|
+
controlsList: spaceSeparated,
|
|
309
|
+
coords: number | commaSeparated,
|
|
310
|
+
crossOrigin: null,
|
|
311
|
+
data: null,
|
|
312
|
+
dateTime: null,
|
|
313
|
+
decoding: null,
|
|
314
|
+
default: boolean,
|
|
315
|
+
defer: boolean,
|
|
316
|
+
dir: null,
|
|
317
|
+
dirName: null,
|
|
318
|
+
disabled: boolean,
|
|
319
|
+
download: overloadedBoolean,
|
|
320
|
+
draggable: booleanish,
|
|
321
|
+
encType: null,
|
|
322
|
+
enterKeyHint: null,
|
|
323
|
+
form: null,
|
|
324
|
+
formAction: null,
|
|
325
|
+
formEncType: null,
|
|
326
|
+
formMethod: null,
|
|
327
|
+
formNoValidate: boolean,
|
|
328
|
+
formTarget: null,
|
|
329
|
+
headers: spaceSeparated,
|
|
330
|
+
height: number,
|
|
331
|
+
hidden: boolean,
|
|
332
|
+
high: number,
|
|
333
|
+
href: null,
|
|
334
|
+
hrefLang: null,
|
|
335
|
+
htmlFor: spaceSeparated,
|
|
336
|
+
httpEquiv: spaceSeparated,
|
|
337
|
+
id: null,
|
|
338
|
+
imageSizes: null,
|
|
339
|
+
imageSrcSet: commaSeparated,
|
|
340
|
+
inputMode: null,
|
|
341
|
+
integrity: null,
|
|
342
|
+
is: null,
|
|
343
|
+
isMap: boolean,
|
|
344
|
+
itemId: null,
|
|
345
|
+
itemProp: spaceSeparated,
|
|
346
|
+
itemRef: spaceSeparated,
|
|
347
|
+
itemScope: boolean,
|
|
348
|
+
itemType: spaceSeparated,
|
|
349
|
+
kind: null,
|
|
350
|
+
label: null,
|
|
351
|
+
lang: null,
|
|
352
|
+
language: null,
|
|
353
|
+
list: null,
|
|
354
|
+
loading: null,
|
|
355
|
+
loop: boolean,
|
|
356
|
+
low: number,
|
|
357
|
+
manifest: null,
|
|
358
|
+
max: null,
|
|
359
|
+
maxLength: number,
|
|
360
|
+
media: null,
|
|
361
|
+
method: null,
|
|
362
|
+
min: null,
|
|
363
|
+
minLength: number,
|
|
364
|
+
multiple: boolean,
|
|
365
|
+
muted: boolean,
|
|
366
|
+
name: null,
|
|
367
|
+
nonce: null,
|
|
368
|
+
noModule: boolean,
|
|
369
|
+
noValidate: boolean,
|
|
370
|
+
onAbort: null,
|
|
371
|
+
onAfterPrint: null,
|
|
372
|
+
onAuxClick: null,
|
|
373
|
+
onBeforePrint: null,
|
|
374
|
+
onBeforeUnload: null,
|
|
375
|
+
onBlur: null,
|
|
376
|
+
onCancel: null,
|
|
377
|
+
onCanPlay: null,
|
|
378
|
+
onCanPlayThrough: null,
|
|
379
|
+
onChange: null,
|
|
380
|
+
onClick: null,
|
|
381
|
+
onClose: null,
|
|
382
|
+
onContextMenu: null,
|
|
383
|
+
onCopy: null,
|
|
384
|
+
onCueChange: null,
|
|
385
|
+
onCut: null,
|
|
386
|
+
onDblClick: null,
|
|
387
|
+
onDrag: null,
|
|
388
|
+
onDragEnd: null,
|
|
389
|
+
onDragEnter: null,
|
|
390
|
+
onDragExit: null,
|
|
391
|
+
onDragLeave: null,
|
|
392
|
+
onDragOver: null,
|
|
393
|
+
onDragStart: null,
|
|
394
|
+
onDrop: null,
|
|
395
|
+
onDurationChange: null,
|
|
396
|
+
onEmptied: null,
|
|
397
|
+
onEnded: null,
|
|
398
|
+
onError: null,
|
|
399
|
+
onFocus: null,
|
|
400
|
+
onFormData: null,
|
|
401
|
+
onHashChange: null,
|
|
402
|
+
onInput: null,
|
|
403
|
+
onInvalid: null,
|
|
404
|
+
onKeyDown: null,
|
|
405
|
+
onKeyPress: null,
|
|
406
|
+
onKeyUp: null,
|
|
407
|
+
onLanguageChange: null,
|
|
408
|
+
onLoad: null,
|
|
409
|
+
onLoadedData: null,
|
|
410
|
+
onLoadedMetadata: null,
|
|
411
|
+
onLoadEnd: null,
|
|
412
|
+
onLoadStart: null,
|
|
413
|
+
onMessage: null,
|
|
414
|
+
onMessageError: null,
|
|
415
|
+
onMouseDown: null,
|
|
416
|
+
onMouseEnter: null,
|
|
417
|
+
onMouseLeave: null,
|
|
418
|
+
onMouseMove: null,
|
|
419
|
+
onMouseOut: null,
|
|
420
|
+
onMouseOver: null,
|
|
421
|
+
onMouseUp: null,
|
|
422
|
+
onOffline: null,
|
|
423
|
+
onOnline: null,
|
|
424
|
+
onPageHide: null,
|
|
425
|
+
onPageShow: null,
|
|
426
|
+
onPaste: null,
|
|
427
|
+
onPause: null,
|
|
428
|
+
onPlay: null,
|
|
429
|
+
onPlaying: null,
|
|
430
|
+
onPopState: null,
|
|
431
|
+
onProgress: null,
|
|
432
|
+
onRateChange: null,
|
|
433
|
+
onRejectionHandled: null,
|
|
434
|
+
onReset: null,
|
|
435
|
+
onResize: null,
|
|
436
|
+
onScroll: null,
|
|
437
|
+
onSecurityPolicyViolation: null,
|
|
438
|
+
onSeeked: null,
|
|
439
|
+
onSeeking: null,
|
|
440
|
+
onSelect: null,
|
|
441
|
+
onSlotChange: null,
|
|
442
|
+
onStalled: null,
|
|
443
|
+
onStorage: null,
|
|
444
|
+
onSubmit: null,
|
|
445
|
+
onSuspend: null,
|
|
446
|
+
onTimeUpdate: null,
|
|
447
|
+
onToggle: null,
|
|
448
|
+
onUnhandledRejection: null,
|
|
449
|
+
onUnload: null,
|
|
450
|
+
onVolumeChange: null,
|
|
451
|
+
onWaiting: null,
|
|
452
|
+
onWheel: null,
|
|
453
|
+
open: boolean,
|
|
454
|
+
optimum: number,
|
|
455
|
+
pattern: null,
|
|
456
|
+
ping: spaceSeparated,
|
|
457
|
+
placeholder: null,
|
|
458
|
+
playsInline: boolean,
|
|
459
|
+
poster: null,
|
|
460
|
+
preload: null,
|
|
461
|
+
readOnly: boolean,
|
|
462
|
+
referrerPolicy: null,
|
|
463
|
+
rel: spaceSeparated,
|
|
464
|
+
required: boolean,
|
|
465
|
+
reversed: boolean,
|
|
466
|
+
rows: number,
|
|
467
|
+
rowSpan: number,
|
|
468
|
+
sandbox: spaceSeparated,
|
|
469
|
+
scope: null,
|
|
470
|
+
scoped: boolean,
|
|
471
|
+
seamless: boolean,
|
|
472
|
+
selected: boolean,
|
|
473
|
+
shape: null,
|
|
474
|
+
size: number,
|
|
475
|
+
sizes: null,
|
|
476
|
+
slot: null,
|
|
477
|
+
span: number,
|
|
478
|
+
spellCheck: booleanish,
|
|
479
|
+
src: null,
|
|
480
|
+
srcDoc: null,
|
|
481
|
+
srcLang: null,
|
|
482
|
+
srcSet: commaSeparated,
|
|
483
|
+
start: number,
|
|
484
|
+
step: null,
|
|
485
|
+
style: null,
|
|
486
|
+
tabIndex: number,
|
|
487
|
+
target: null,
|
|
488
|
+
title: null,
|
|
489
|
+
translate: null,
|
|
490
|
+
type: null,
|
|
491
|
+
typeMustMatch: boolean,
|
|
492
|
+
useMap: null,
|
|
493
|
+
value: booleanish,
|
|
494
|
+
width: number,
|
|
495
|
+
wrap: null,
|
|
496
|
+
// Legacy.
|
|
497
|
+
// See: https://html.spec.whatwg.org/#other-elements,-attributes-and-apis
|
|
498
|
+
align: null,
|
|
499
|
+
// Several. Use CSS `text-align` instead,
|
|
500
|
+
aLink: null,
|
|
501
|
+
// `<body>`. Use CSS `a:active {color}` instead
|
|
502
|
+
archive: spaceSeparated,
|
|
503
|
+
// `<object>`. List of URIs to archives
|
|
504
|
+
axis: null,
|
|
505
|
+
// `<td>` and `<th>`. Use `scope` on `<th>`
|
|
506
|
+
background: null,
|
|
507
|
+
// `<body>`. Use CSS `background-image` instead
|
|
508
|
+
bgColor: null,
|
|
509
|
+
// `<body>` and table elements. Use CSS `background-color` instead
|
|
510
|
+
border: number,
|
|
511
|
+
// `<table>`. Use CSS `border-width` instead,
|
|
512
|
+
borderColor: null,
|
|
513
|
+
// `<table>`. Use CSS `border-color` instead,
|
|
514
|
+
bottomMargin: number,
|
|
515
|
+
// `<body>`
|
|
516
|
+
cellPadding: null,
|
|
517
|
+
// `<table>`
|
|
518
|
+
cellSpacing: null,
|
|
519
|
+
// `<table>`
|
|
520
|
+
char: null,
|
|
521
|
+
// Several table elements. When `align=char`, sets the character to align on
|
|
522
|
+
charOff: null,
|
|
523
|
+
// Several table elements. When `char`, offsets the alignment
|
|
524
|
+
classId: null,
|
|
525
|
+
// `<object>`
|
|
526
|
+
clear: null,
|
|
527
|
+
// `<br>`. Use CSS `clear` instead
|
|
528
|
+
code: null,
|
|
529
|
+
// `<object>`
|
|
530
|
+
codeBase: null,
|
|
531
|
+
// `<object>`
|
|
532
|
+
codeType: null,
|
|
533
|
+
// `<object>`
|
|
534
|
+
color: null,
|
|
535
|
+
// `<font>` and `<hr>`. Use CSS instead
|
|
536
|
+
compact: boolean,
|
|
537
|
+
// Lists. Use CSS to reduce space between items instead
|
|
538
|
+
declare: boolean,
|
|
539
|
+
// `<object>`
|
|
540
|
+
event: null,
|
|
541
|
+
// `<script>`
|
|
542
|
+
face: null,
|
|
543
|
+
// `<font>`. Use CSS instead
|
|
544
|
+
frame: null,
|
|
545
|
+
// `<table>`
|
|
546
|
+
frameBorder: null,
|
|
547
|
+
// `<iframe>`. Use CSS `border` instead
|
|
548
|
+
hSpace: number,
|
|
549
|
+
// `<img>` and `<object>`
|
|
550
|
+
leftMargin: number,
|
|
551
|
+
// `<body>`
|
|
552
|
+
link: null,
|
|
553
|
+
// `<body>`. Use CSS `a:link {color: *}` instead
|
|
554
|
+
longDesc: null,
|
|
555
|
+
// `<frame>`, `<iframe>`, and `<img>`. Use an `<a>`
|
|
556
|
+
lowSrc: null,
|
|
557
|
+
// `<img>`. Use a `<picture>`
|
|
558
|
+
marginHeight: number,
|
|
559
|
+
// `<body>`
|
|
560
|
+
marginWidth: number,
|
|
561
|
+
// `<body>`
|
|
562
|
+
noResize: boolean,
|
|
563
|
+
// `<frame>`
|
|
564
|
+
noHref: boolean,
|
|
565
|
+
// `<area>`. Use no href instead of an explicit `nohref`
|
|
566
|
+
noShade: boolean,
|
|
567
|
+
// `<hr>`. Use background-color and height instead of borders
|
|
568
|
+
noWrap: boolean,
|
|
569
|
+
// `<td>` and `<th>`
|
|
570
|
+
object: null,
|
|
571
|
+
// `<applet>`
|
|
572
|
+
profile: null,
|
|
573
|
+
// `<head>`
|
|
574
|
+
prompt: null,
|
|
575
|
+
// `<isindex>`
|
|
576
|
+
rev: null,
|
|
577
|
+
// `<link>`
|
|
578
|
+
rightMargin: number,
|
|
579
|
+
// `<body>`
|
|
580
|
+
rules: null,
|
|
581
|
+
// `<table>`
|
|
582
|
+
scheme: null,
|
|
583
|
+
// `<meta>`
|
|
584
|
+
scrolling: booleanish,
|
|
585
|
+
// `<frame>`. Use overflow in the child context
|
|
586
|
+
standby: null,
|
|
587
|
+
// `<object>`
|
|
588
|
+
summary: null,
|
|
589
|
+
// `<table>`
|
|
590
|
+
text: null,
|
|
591
|
+
// `<body>`. Use CSS `color` instead
|
|
592
|
+
topMargin: number,
|
|
593
|
+
// `<body>`
|
|
594
|
+
valueType: null,
|
|
595
|
+
// `<param>`
|
|
596
|
+
version: null,
|
|
597
|
+
// `<html>`. Use a doctype.
|
|
598
|
+
vAlign: null,
|
|
599
|
+
// Several. Use CSS `vertical-align` instead
|
|
600
|
+
vLink: null,
|
|
601
|
+
// `<body>`. Use CSS `a:visited {color}` instead
|
|
602
|
+
vSpace: number,
|
|
603
|
+
// `<img>` and `<object>`
|
|
604
|
+
// Non-standard Properties.
|
|
605
|
+
allowTransparency: null,
|
|
606
|
+
autoCorrect: null,
|
|
607
|
+
autoSave: null,
|
|
608
|
+
disablePictureInPicture: boolean,
|
|
609
|
+
disableRemotePlayback: boolean,
|
|
610
|
+
prefix: null,
|
|
611
|
+
property: null,
|
|
612
|
+
results: number,
|
|
613
|
+
security: null,
|
|
614
|
+
unselectable: null
|
|
615
|
+
}
|
|
616
|
+
}), html;
|
|
617
|
+
}
|
|
618
|
+
var html_1$1, hasRequiredHtml$1;
|
|
619
|
+
function requireHtml$1() {
|
|
620
|
+
if (hasRequiredHtml$1) return html_1$1;
|
|
621
|
+
hasRequiredHtml$1 = 1;
|
|
622
|
+
var merge = requireMerge(), xlink2 = requireXlink(), xml2 = requireXml(), xmlns2 = requireXmlns(), aria2 = requireAria(), html2 = requireHtml$2();
|
|
623
|
+
return html_1$1 = merge([xml2, xlink2, xmlns2, aria2, html2]), html_1$1;
|
|
624
|
+
}
|
|
625
|
+
var find_1, hasRequiredFind;
|
|
626
|
+
function requireFind() {
|
|
627
|
+
if (hasRequiredFind) return find_1;
|
|
628
|
+
hasRequiredFind = 1;
|
|
629
|
+
var normalize = requireNormalize(), DefinedInfo = requireDefinedInfo(), Info = requireInfo(), data = "data";
|
|
630
|
+
find_1 = find;
|
|
631
|
+
var valid = /^data[-\w.:]+$/i, dash2 = /-[a-z]/g, cap2 = /[A-Z]/g;
|
|
632
|
+
function find(schema2, value) {
|
|
633
|
+
var normal = normalize(value), prop2 = value, Type = Info;
|
|
634
|
+
return normal in schema2.normal ? schema2.property[schema2.normal[normal]] : (normal.length > 4 && normal.slice(0, 4) === data && valid.test(value) && (value.charAt(4) === "-" ? prop2 = datasetToProperty(value) : value = datasetToAttribute(value), Type = DefinedInfo), new Type(prop2, value));
|
|
635
|
+
}
|
|
636
|
+
function datasetToProperty(attribute) {
|
|
637
|
+
var value = attribute.slice(5).replace(dash2, camelcase);
|
|
638
|
+
return data + value.charAt(0).toUpperCase() + value.slice(1);
|
|
639
|
+
}
|
|
640
|
+
function datasetToAttribute(property) {
|
|
641
|
+
var value = property.slice(4);
|
|
642
|
+
return dash2.test(value) ? property : (value = value.replace(cap2, kebab), value.charAt(0) !== "-" && (value = "-" + value), data + value);
|
|
643
|
+
}
|
|
644
|
+
function kebab($0) {
|
|
645
|
+
return "-" + $0.toLowerCase();
|
|
646
|
+
}
|
|
647
|
+
function camelcase($0) {
|
|
648
|
+
return $0.charAt(1).toUpperCase();
|
|
649
|
+
}
|
|
650
|
+
return find_1;
|
|
651
|
+
}
|
|
652
|
+
var hastUtilParseSelector, hasRequiredHastUtilParseSelector;
|
|
653
|
+
function requireHastUtilParseSelector() {
|
|
654
|
+
if (hasRequiredHastUtilParseSelector) return hastUtilParseSelector;
|
|
655
|
+
hasRequiredHastUtilParseSelector = 1, hastUtilParseSelector = parse;
|
|
656
|
+
var search = /[#.]/g;
|
|
657
|
+
function parse(selector, defaultTagName) {
|
|
658
|
+
for (var value = selector || "", name = defaultTagName || "div", props = {}, start = 0, subvalue, previous, match; start < value.length; )
|
|
659
|
+
search.lastIndex = start, match = search.exec(value), subvalue = value.slice(start, match ? match.index : value.length), subvalue && (previous ? previous === "#" ? props.id = subvalue : props.className ? props.className.push(subvalue) : props.className = [subvalue] : name = subvalue, start += subvalue.length), match && (previous = match[0], start++);
|
|
660
|
+
return { type: "element", tagName: name, properties: props, children: [] };
|
|
661
|
+
}
|
|
662
|
+
return hastUtilParseSelector;
|
|
663
|
+
}
|
|
664
|
+
var spaceSeparatedTokens = {}, hasRequiredSpaceSeparatedTokens;
|
|
665
|
+
function requireSpaceSeparatedTokens() {
|
|
666
|
+
if (hasRequiredSpaceSeparatedTokens) return spaceSeparatedTokens;
|
|
667
|
+
hasRequiredSpaceSeparatedTokens = 1, spaceSeparatedTokens.parse = parse, spaceSeparatedTokens.stringify = stringify;
|
|
668
|
+
var empty2 = "", space = " ", whiteSpace = /[ \t\n\r\f]+/g;
|
|
669
|
+
function parse(value) {
|
|
670
|
+
var input = String(value || empty2).trim();
|
|
671
|
+
return input === empty2 ? [] : input.split(whiteSpace);
|
|
672
|
+
}
|
|
673
|
+
function stringify(values) {
|
|
674
|
+
return values.join(space).trim();
|
|
675
|
+
}
|
|
676
|
+
return spaceSeparatedTokens;
|
|
677
|
+
}
|
|
678
|
+
var commaSeparatedTokens = {}, hasRequiredCommaSeparatedTokens;
|
|
679
|
+
function requireCommaSeparatedTokens() {
|
|
680
|
+
if (hasRequiredCommaSeparatedTokens) return commaSeparatedTokens;
|
|
681
|
+
hasRequiredCommaSeparatedTokens = 1, commaSeparatedTokens.parse = parse, commaSeparatedTokens.stringify = stringify;
|
|
682
|
+
var comma2 = ",", space = " ", empty2 = "";
|
|
683
|
+
function parse(value) {
|
|
684
|
+
for (var values = [], input = String(value || empty2), index = input.indexOf(comma2), lastIndex = 0, end = !1, val; !end; )
|
|
685
|
+
index === -1 && (index = input.length, end = !0), val = input.slice(lastIndex, index).trim(), (val || !end) && values.push(val), lastIndex = index + 1, index = input.indexOf(comma2, lastIndex);
|
|
686
|
+
return values;
|
|
687
|
+
}
|
|
688
|
+
function stringify(values, options) {
|
|
689
|
+
var settings = options || {}, left = settings.padLeft === !1 ? empty2 : space, right = settings.padRight ? space : empty2;
|
|
690
|
+
return values[values.length - 1] === empty2 && (values = values.concat(empty2)), values.join(right + comma2 + left).trim();
|
|
691
|
+
}
|
|
692
|
+
return commaSeparatedTokens;
|
|
693
|
+
}
|
|
694
|
+
var factory_1, hasRequiredFactory;
|
|
695
|
+
function requireFactory() {
|
|
696
|
+
if (hasRequiredFactory) return factory_1;
|
|
697
|
+
hasRequiredFactory = 1;
|
|
698
|
+
var find = requireFind(), normalize = requireNormalize(), parseSelector = requireHastUtilParseSelector(), spaces = requireSpaceSeparatedTokens().parse, commas = requireCommaSeparatedTokens().parse;
|
|
699
|
+
factory_1 = factory;
|
|
700
|
+
var own = {}.hasOwnProperty;
|
|
701
|
+
function factory(schema2, defaultTagName, caseSensitive) {
|
|
702
|
+
var adjust = caseSensitive ? createAdjustMap(caseSensitive) : null;
|
|
703
|
+
return h;
|
|
704
|
+
function h(selector, properties) {
|
|
705
|
+
var node = parseSelector(selector, defaultTagName), children = Array.prototype.slice.call(arguments, 2), name = node.tagName.toLowerCase(), property;
|
|
706
|
+
if (node.tagName = adjust && own.call(adjust, name) ? adjust[name] : name, properties && isChildren(properties, node) && (children.unshift(properties), properties = null), properties)
|
|
707
|
+
for (property in properties)
|
|
708
|
+
addProperty(node.properties, property, properties[property]);
|
|
709
|
+
return addChild(node.children, children), node.tagName === "template" && (node.content = { type: "root", children: node.children }, node.children = []), node;
|
|
710
|
+
}
|
|
711
|
+
function addProperty(properties, key, value) {
|
|
712
|
+
var info2, property, result;
|
|
713
|
+
value == null || value !== value || (info2 = find(schema2, key), property = info2.property, result = value, typeof result == "string" && (info2.spaceSeparated ? result = spaces(result) : info2.commaSeparated ? result = commas(result) : info2.commaOrSpaceSeparated && (result = spaces(commas(result).join(" ")))), property === "style" && typeof value != "string" && (result = style(result)), property === "className" && properties.className && (result = properties.className.concat(result)), properties[property] = parsePrimitives(info2, property, result));
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
function isChildren(value, node) {
|
|
717
|
+
return typeof value == "string" || "length" in value || isNode(node.tagName, value);
|
|
718
|
+
}
|
|
719
|
+
function isNode(tagName, value) {
|
|
720
|
+
var type = value.type;
|
|
721
|
+
return tagName === "input" || !type || typeof type != "string" ? !1 : typeof value.children == "object" && "length" in value.children ? !0 : (type = type.toLowerCase(), tagName === "button" ? type !== "menu" && type !== "submit" && type !== "reset" && type !== "button" : "value" in value);
|
|
722
|
+
}
|
|
723
|
+
function addChild(nodes, value) {
|
|
724
|
+
var index, length;
|
|
725
|
+
if (typeof value == "string" || typeof value == "number") {
|
|
726
|
+
nodes.push({ type: "text", value: String(value) });
|
|
727
|
+
return;
|
|
728
|
+
}
|
|
729
|
+
if (typeof value == "object" && "length" in value) {
|
|
730
|
+
for (index = -1, length = value.length; ++index < length; )
|
|
731
|
+
addChild(nodes, value[index]);
|
|
732
|
+
return;
|
|
733
|
+
}
|
|
734
|
+
if (typeof value != "object" || !("type" in value))
|
|
735
|
+
throw new Error("Expected node, nodes, or string, got `" + value + "`");
|
|
736
|
+
nodes.push(value);
|
|
737
|
+
}
|
|
738
|
+
function parsePrimitives(info2, name, value) {
|
|
739
|
+
var index, length, result;
|
|
740
|
+
if (typeof value != "object" || !("length" in value))
|
|
741
|
+
return parsePrimitive(info2, name, value);
|
|
742
|
+
for (length = value.length, index = -1, result = []; ++index < length; )
|
|
743
|
+
result[index] = parsePrimitive(info2, name, value[index]);
|
|
744
|
+
return result;
|
|
745
|
+
}
|
|
746
|
+
function parsePrimitive(info2, name, value) {
|
|
747
|
+
var result = value;
|
|
748
|
+
return info2.number || info2.positiveNumber ? !isNaN(result) && result !== "" && (result = Number(result)) : (info2.boolean || info2.overloadedBoolean) && typeof result == "string" && (result === "" || normalize(value) === normalize(name)) && (result = !0), result;
|
|
749
|
+
}
|
|
750
|
+
function style(value) {
|
|
751
|
+
var result = [], key;
|
|
752
|
+
for (key in value)
|
|
753
|
+
result.push([key, value[key]].join(": "));
|
|
754
|
+
return result.join("; ");
|
|
755
|
+
}
|
|
756
|
+
function createAdjustMap(values) {
|
|
757
|
+
for (var length = values.length, index = -1, result = {}, value; ++index < length; )
|
|
758
|
+
value = values[index], result[value.toLowerCase()] = value;
|
|
759
|
+
return result;
|
|
760
|
+
}
|
|
761
|
+
return factory_1;
|
|
762
|
+
}
|
|
763
|
+
var html_1, hasRequiredHtml;
|
|
764
|
+
function requireHtml() {
|
|
765
|
+
if (hasRequiredHtml) return html_1;
|
|
766
|
+
hasRequiredHtml = 1;
|
|
767
|
+
var schema2 = requireHtml$1(), factory = requireFactory(), html2 = factory(schema2, "div");
|
|
768
|
+
return html2.displayName = "html", html_1 = html2, html_1;
|
|
769
|
+
}
|
|
770
|
+
var hastscript, hasRequiredHastscript;
|
|
771
|
+
function requireHastscript() {
|
|
772
|
+
return hasRequiredHastscript || (hasRequiredHastscript = 1, hastscript = requireHtml()), hastscript;
|
|
773
|
+
}
|
|
774
|
+
var AElig$1 = "\xC6", AMP$1 = "&", Aacute$1 = "\xC1", Acirc$1 = "\xC2", Agrave$1 = "\xC0", Aring$1 = "\xC5", Atilde$1 = "\xC3", Auml$1 = "\xC4", COPY$1 = "\xA9", Ccedil$1 = "\xC7", ETH$1 = "\xD0", Eacute$1 = "\xC9", Ecirc$1 = "\xCA", Egrave$1 = "\xC8", Euml$1 = "\xCB", GT$1 = ">", Iacute$1 = "\xCD", Icirc$1 = "\xCE", Igrave$1 = "\xCC", Iuml$1 = "\xCF", LT$1 = "<", Ntilde$1 = "\xD1", Oacute$1 = "\xD3", Ocirc$1 = "\xD4", Ograve$1 = "\xD2", Oslash$1 = "\xD8", Otilde$1 = "\xD5", Ouml$1 = "\xD6", QUOT$1 = '"', REG$1 = "\xAE", THORN$1 = "\xDE", Uacute$1 = "\xDA", Ucirc$1 = "\xDB", Ugrave$1 = "\xD9", Uuml$1 = "\xDC", Yacute$1 = "\xDD", aacute$1 = "\xE1", acirc$1 = "\xE2", acute$1 = "\xB4", aelig$1 = "\xE6", agrave$1 = "\xE0", amp$1 = "&", aring$1 = "\xE5", atilde$1 = "\xE3", auml$1 = "\xE4", brvbar$1 = "\xA6", ccedil$1 = "\xE7", cedil$1 = "\xB8", cent$1 = "\xA2", copy$1 = "\xA9", curren$1 = "\xA4", deg$1 = "\xB0", divide$1 = "\xF7", eacute$1 = "\xE9", ecirc$1 = "\xEA", egrave$1 = "\xE8", eth$1 = "\xF0", euml$1 = "\xEB", frac12$1 = "\xBD", frac14$1 = "\xBC", frac34$1 = "\xBE", gt$1 = ">", iacute$1 = "\xED", icirc$1 = "\xEE", iexcl$1 = "\xA1", igrave$1 = "\xEC", iquest$1 = "\xBF", iuml$1 = "\xEF", laquo$1 = "\xAB", lt$1 = "<", macr$1 = "\xAF", micro$1 = "\xB5", middot$1 = "\xB7", nbsp$1 = "\xA0", not$1 = "\xAC", ntilde$1 = "\xF1", oacute$1 = "\xF3", ocirc$1 = "\xF4", ograve$1 = "\xF2", ordf$1 = "\xAA", ordm$1 = "\xBA", oslash$1 = "\xF8", otilde$1 = "\xF5", ouml$1 = "\xF6", para$1 = "\xB6", plusmn$1 = "\xB1", pound$1 = "\xA3", quot$1 = '"', raquo$1 = "\xBB", reg$1 = "\xAE", sect$1 = "\xA7", shy$1 = "\xAD", sup1$1 = "\xB9", sup2$1 = "\xB2", sup3$1 = "\xB3", szlig$1 = "\xDF", thorn$1 = "\xFE", times$1 = "\xD7", uacute$1 = "\xFA", ucirc$1 = "\xFB", ugrave$1 = "\xF9", uml$1 = "\xA8", uuml$1 = "\xFC", yacute$1 = "\xFD", yen$1 = "\xA5", yuml$1 = "\xFF", require$$0$1 = {
|
|
775
|
+
AElig: AElig$1,
|
|
776
|
+
AMP: AMP$1,
|
|
777
|
+
Aacute: Aacute$1,
|
|
778
|
+
Acirc: Acirc$1,
|
|
779
|
+
Agrave: Agrave$1,
|
|
780
|
+
Aring: Aring$1,
|
|
781
|
+
Atilde: Atilde$1,
|
|
782
|
+
Auml: Auml$1,
|
|
783
|
+
COPY: COPY$1,
|
|
784
|
+
Ccedil: Ccedil$1,
|
|
785
|
+
ETH: ETH$1,
|
|
786
|
+
Eacute: Eacute$1,
|
|
787
|
+
Ecirc: Ecirc$1,
|
|
788
|
+
Egrave: Egrave$1,
|
|
789
|
+
Euml: Euml$1,
|
|
790
|
+
GT: GT$1,
|
|
791
|
+
Iacute: Iacute$1,
|
|
792
|
+
Icirc: Icirc$1,
|
|
793
|
+
Igrave: Igrave$1,
|
|
794
|
+
Iuml: Iuml$1,
|
|
795
|
+
LT: LT$1,
|
|
796
|
+
Ntilde: Ntilde$1,
|
|
797
|
+
Oacute: Oacute$1,
|
|
798
|
+
Ocirc: Ocirc$1,
|
|
799
|
+
Ograve: Ograve$1,
|
|
800
|
+
Oslash: Oslash$1,
|
|
801
|
+
Otilde: Otilde$1,
|
|
802
|
+
Ouml: Ouml$1,
|
|
803
|
+
QUOT: QUOT$1,
|
|
804
|
+
REG: REG$1,
|
|
805
|
+
THORN: THORN$1,
|
|
806
|
+
Uacute: Uacute$1,
|
|
807
|
+
Ucirc: Ucirc$1,
|
|
808
|
+
Ugrave: Ugrave$1,
|
|
809
|
+
Uuml: Uuml$1,
|
|
810
|
+
Yacute: Yacute$1,
|
|
811
|
+
aacute: aacute$1,
|
|
812
|
+
acirc: acirc$1,
|
|
813
|
+
acute: acute$1,
|
|
814
|
+
aelig: aelig$1,
|
|
815
|
+
agrave: agrave$1,
|
|
816
|
+
amp: amp$1,
|
|
817
|
+
aring: aring$1,
|
|
818
|
+
atilde: atilde$1,
|
|
819
|
+
auml: auml$1,
|
|
820
|
+
brvbar: brvbar$1,
|
|
821
|
+
ccedil: ccedil$1,
|
|
822
|
+
cedil: cedil$1,
|
|
823
|
+
cent: cent$1,
|
|
824
|
+
copy: copy$1,
|
|
825
|
+
curren: curren$1,
|
|
826
|
+
deg: deg$1,
|
|
827
|
+
divide: divide$1,
|
|
828
|
+
eacute: eacute$1,
|
|
829
|
+
ecirc: ecirc$1,
|
|
830
|
+
egrave: egrave$1,
|
|
831
|
+
eth: eth$1,
|
|
832
|
+
euml: euml$1,
|
|
833
|
+
frac12: frac12$1,
|
|
834
|
+
frac14: frac14$1,
|
|
835
|
+
frac34: frac34$1,
|
|
836
|
+
gt: gt$1,
|
|
837
|
+
iacute: iacute$1,
|
|
838
|
+
icirc: icirc$1,
|
|
839
|
+
iexcl: iexcl$1,
|
|
840
|
+
igrave: igrave$1,
|
|
841
|
+
iquest: iquest$1,
|
|
842
|
+
iuml: iuml$1,
|
|
843
|
+
laquo: laquo$1,
|
|
844
|
+
lt: lt$1,
|
|
845
|
+
macr: macr$1,
|
|
846
|
+
micro: micro$1,
|
|
847
|
+
middot: middot$1,
|
|
848
|
+
nbsp: nbsp$1,
|
|
849
|
+
not: not$1,
|
|
850
|
+
ntilde: ntilde$1,
|
|
851
|
+
oacute: oacute$1,
|
|
852
|
+
ocirc: ocirc$1,
|
|
853
|
+
ograve: ograve$1,
|
|
854
|
+
ordf: ordf$1,
|
|
855
|
+
ordm: ordm$1,
|
|
856
|
+
oslash: oslash$1,
|
|
857
|
+
otilde: otilde$1,
|
|
858
|
+
ouml: ouml$1,
|
|
859
|
+
para: para$1,
|
|
860
|
+
plusmn: plusmn$1,
|
|
861
|
+
pound: pound$1,
|
|
862
|
+
quot: quot$1,
|
|
863
|
+
raquo: raquo$1,
|
|
864
|
+
reg: reg$1,
|
|
865
|
+
sect: sect$1,
|
|
866
|
+
shy: shy$1,
|
|
867
|
+
sup1: sup1$1,
|
|
868
|
+
sup2: sup2$1,
|
|
869
|
+
sup3: sup3$1,
|
|
870
|
+
szlig: szlig$1,
|
|
871
|
+
thorn: thorn$1,
|
|
872
|
+
times: times$1,
|
|
873
|
+
uacute: uacute$1,
|
|
874
|
+
ucirc: ucirc$1,
|
|
875
|
+
ugrave: ugrave$1,
|
|
876
|
+
uml: uml$1,
|
|
877
|
+
uuml: uuml$1,
|
|
878
|
+
yacute: yacute$1,
|
|
879
|
+
yen: yen$1,
|
|
880
|
+
yuml: yuml$1
|
|
881
|
+
}, require$$1 = {
|
|
882
|
+
0: "\uFFFD",
|
|
883
|
+
128: "\u20AC",
|
|
884
|
+
130: "\u201A",
|
|
885
|
+
131: "\u0192",
|
|
886
|
+
132: "\u201E",
|
|
887
|
+
133: "\u2026",
|
|
888
|
+
134: "\u2020",
|
|
889
|
+
135: "\u2021",
|
|
890
|
+
136: "\u02C6",
|
|
891
|
+
137: "\u2030",
|
|
892
|
+
138: "\u0160",
|
|
893
|
+
139: "\u2039",
|
|
894
|
+
140: "\u0152",
|
|
895
|
+
142: "\u017D",
|
|
896
|
+
145: "\u2018",
|
|
897
|
+
146: "\u2019",
|
|
898
|
+
147: "\u201C",
|
|
899
|
+
148: "\u201D",
|
|
900
|
+
149: "\u2022",
|
|
901
|
+
150: "\u2013",
|
|
902
|
+
151: "\u2014",
|
|
903
|
+
152: "\u02DC",
|
|
904
|
+
153: "\u2122",
|
|
905
|
+
154: "\u0161",
|
|
906
|
+
155: "\u203A",
|
|
907
|
+
156: "\u0153",
|
|
908
|
+
158: "\u017E",
|
|
909
|
+
159: "\u0178"
|
|
910
|
+
}, isDecimal, hasRequiredIsDecimal;
|
|
911
|
+
function requireIsDecimal() {
|
|
912
|
+
if (hasRequiredIsDecimal) return isDecimal;
|
|
913
|
+
hasRequiredIsDecimal = 1, isDecimal = decimal;
|
|
914
|
+
function decimal(character) {
|
|
915
|
+
var code = typeof character == "string" ? character.charCodeAt(0) : character;
|
|
916
|
+
return code >= 48 && code <= 57;
|
|
917
|
+
}
|
|
918
|
+
return isDecimal;
|
|
919
|
+
}
|
|
920
|
+
var isHexadecimal, hasRequiredIsHexadecimal;
|
|
921
|
+
function requireIsHexadecimal() {
|
|
922
|
+
if (hasRequiredIsHexadecimal) return isHexadecimal;
|
|
923
|
+
hasRequiredIsHexadecimal = 1, isHexadecimal = hexadecimal;
|
|
924
|
+
function hexadecimal(character) {
|
|
925
|
+
var code = typeof character == "string" ? character.charCodeAt(0) : character;
|
|
926
|
+
return code >= 97 && code <= 102 || code >= 65 && code <= 70 || code >= 48 && code <= 57;
|
|
927
|
+
}
|
|
928
|
+
return isHexadecimal;
|
|
929
|
+
}
|
|
930
|
+
var isAlphabetical, hasRequiredIsAlphabetical;
|
|
931
|
+
function requireIsAlphabetical() {
|
|
932
|
+
if (hasRequiredIsAlphabetical) return isAlphabetical;
|
|
933
|
+
hasRequiredIsAlphabetical = 1, isAlphabetical = alphabetical;
|
|
934
|
+
function alphabetical(character) {
|
|
935
|
+
var code = typeof character == "string" ? character.charCodeAt(0) : character;
|
|
936
|
+
return code >= 97 && code <= 122 || code >= 65 && code <= 90;
|
|
937
|
+
}
|
|
938
|
+
return isAlphabetical;
|
|
939
|
+
}
|
|
940
|
+
var isAlphanumerical, hasRequiredIsAlphanumerical;
|
|
941
|
+
function requireIsAlphanumerical() {
|
|
942
|
+
if (hasRequiredIsAlphanumerical) return isAlphanumerical;
|
|
943
|
+
hasRequiredIsAlphanumerical = 1;
|
|
944
|
+
var alphabetical = requireIsAlphabetical(), decimal = requireIsDecimal();
|
|
945
|
+
isAlphanumerical = alphanumerical;
|
|
946
|
+
function alphanumerical(character) {
|
|
947
|
+
return alphabetical(character) || decimal(character);
|
|
948
|
+
}
|
|
949
|
+
return isAlphanumerical;
|
|
950
|
+
}
|
|
951
|
+
var AEli = "\xC6", AElig = "\xC6", AM = "&", AMP = "&", Aacut = "\xC1", Aacute = "\xC1", Abreve = "\u0102", Acir = "\xC2", Acirc = "\xC2", Acy = "\u0410", Afr = "\u{1D504}", Agrav = "\xC0", Agrave = "\xC0", Alpha = "\u0391", Amacr = "\u0100", And = "\u2A53", Aogon = "\u0104", Aopf = "\u{1D538}", ApplyFunction = "\u2061", Arin = "\xC5", Aring = "\xC5", Ascr = "\u{1D49C}", Assign = "\u2254", Atild = "\xC3", Atilde = "\xC3", Aum = "\xC4", Auml = "\xC4", Backslash = "\u2216", Barv = "\u2AE7", Barwed = "\u2306", Bcy = "\u0411", Because = "\u2235", Bernoullis = "\u212C", Beta = "\u0392", Bfr = "\u{1D505}", Bopf = "\u{1D539}", Breve = "\u02D8", Bscr = "\u212C", Bumpeq = "\u224E", CHcy = "\u0427", COP = "\xA9", COPY = "\xA9", Cacute = "\u0106", Cap = "\u22D2", CapitalDifferentialD = "\u2145", Cayleys = "\u212D", Ccaron = "\u010C", Ccedi = "\xC7", Ccedil = "\xC7", Ccirc = "\u0108", Cconint = "\u2230", Cdot = "\u010A", Cedilla = "\xB8", CenterDot = "\xB7", Cfr = "\u212D", Chi = "\u03A7", CircleDot = "\u2299", CircleMinus = "\u2296", CirclePlus = "\u2295", CircleTimes = "\u2297", ClockwiseContourIntegral = "\u2232", CloseCurlyDoubleQuote = "\u201D", CloseCurlyQuote = "\u2019", Colon = "\u2237", Colone = "\u2A74", Congruent = "\u2261", Conint = "\u222F", ContourIntegral = "\u222E", Copf = "\u2102", Coproduct = "\u2210", CounterClockwiseContourIntegral = "\u2233", Cross = "\u2A2F", Cscr = "\u{1D49E}", Cup = "\u22D3", CupCap = "\u224D", DD = "\u2145", DDotrahd = "\u2911", DJcy = "\u0402", DScy = "\u0405", DZcy = "\u040F", Dagger = "\u2021", Darr = "\u21A1", Dashv = "\u2AE4", Dcaron = "\u010E", Dcy = "\u0414", Del = "\u2207", Delta = "\u0394", Dfr = "\u{1D507}", DiacriticalAcute = "\xB4", DiacriticalDot = "\u02D9", DiacriticalDoubleAcute = "\u02DD", DiacriticalGrave = "`", DiacriticalTilde = "\u02DC", Diamond = "\u22C4", DifferentialD = "\u2146", Dopf = "\u{1D53B}", Dot = "\xA8", DotDot = "\u20DC", DotEqual = "\u2250", DoubleContourIntegral = "\u222F", DoubleDot = "\xA8", DoubleDownArrow = "\u21D3", DoubleLeftArrow = "\u21D0", DoubleLeftRightArrow = "\u21D4", DoubleLeftTee = "\u2AE4", DoubleLongLeftArrow = "\u27F8", DoubleLongLeftRightArrow = "\u27FA", DoubleLongRightArrow = "\u27F9", DoubleRightArrow = "\u21D2", DoubleRightTee = "\u22A8", DoubleUpArrow = "\u21D1", DoubleUpDownArrow = "\u21D5", DoubleVerticalBar = "\u2225", DownArrow = "\u2193", DownArrowBar = "\u2913", DownArrowUpArrow = "\u21F5", DownBreve = "\u0311", DownLeftRightVector = "\u2950", DownLeftTeeVector = "\u295E", DownLeftVector = "\u21BD", DownLeftVectorBar = "\u2956", DownRightTeeVector = "\u295F", DownRightVector = "\u21C1", DownRightVectorBar = "\u2957", DownTee = "\u22A4", DownTeeArrow = "\u21A7", Downarrow = "\u21D3", Dscr = "\u{1D49F}", Dstrok = "\u0110", ENG = "\u014A", ET = "\xD0", ETH = "\xD0", Eacut = "\xC9", Eacute = "\xC9", Ecaron = "\u011A", Ecir = "\xCA", Ecirc = "\xCA", Ecy = "\u042D", Edot = "\u0116", Efr = "\u{1D508}", Egrav = "\xC8", Egrave = "\xC8", Element = "\u2208", Emacr = "\u0112", EmptySmallSquare = "\u25FB", EmptyVerySmallSquare = "\u25AB", Eogon = "\u0118", Eopf = "\u{1D53C}", Epsilon = "\u0395", Equal = "\u2A75", EqualTilde = "\u2242", Equilibrium = "\u21CC", Escr = "\u2130", Esim = "\u2A73", Eta = "\u0397", Eum = "\xCB", Euml = "\xCB", Exists = "\u2203", ExponentialE = "\u2147", Fcy = "\u0424", Ffr = "\u{1D509}", FilledSmallSquare = "\u25FC", FilledVerySmallSquare = "\u25AA", Fopf = "\u{1D53D}", ForAll = "\u2200", Fouriertrf = "\u2131", Fscr = "\u2131", GJcy = "\u0403", G = ">", GT = ">", Gamma = "\u0393", Gammad = "\u03DC", Gbreve = "\u011E", Gcedil = "\u0122", Gcirc = "\u011C", Gcy = "\u0413", Gdot = "\u0120", Gfr = "\u{1D50A}", Gg = "\u22D9", Gopf = "\u{1D53E}", GreaterEqual = "\u2265", GreaterEqualLess = "\u22DB", GreaterFullEqual = "\u2267", GreaterGreater = "\u2AA2", GreaterLess = "\u2277", GreaterSlantEqual = "\u2A7E", GreaterTilde = "\u2273", Gscr = "\u{1D4A2}", Gt = "\u226B", HARDcy = "\u042A", Hacek = "\u02C7", Hat = "^", Hcirc = "\u0124", Hfr = "\u210C", HilbertSpace = "\u210B", Hopf = "\u210D", HorizontalLine = "\u2500", Hscr = "\u210B", Hstrok = "\u0126", HumpDownHump = "\u224E", HumpEqual = "\u224F", IEcy = "\u0415", IJlig = "\u0132", IOcy = "\u0401", Iacut = "\xCD", Iacute = "\xCD", Icir = "\xCE", Icirc = "\xCE", Icy = "\u0418", Idot = "\u0130", Ifr = "\u2111", Igrav = "\xCC", Igrave = "\xCC", Im = "\u2111", Imacr = "\u012A", ImaginaryI = "\u2148", Implies = "\u21D2", Int = "\u222C", Integral = "\u222B", Intersection = "\u22C2", InvisibleComma = "\u2063", InvisibleTimes = "\u2062", Iogon = "\u012E", Iopf = "\u{1D540}", Iota = "\u0399", Iscr = "\u2110", Itilde = "\u0128", Iukcy = "\u0406", Ium = "\xCF", Iuml = "\xCF", Jcirc = "\u0134", Jcy = "\u0419", Jfr = "\u{1D50D}", Jopf = "\u{1D541}", Jscr = "\u{1D4A5}", Jsercy = "\u0408", Jukcy = "\u0404", KHcy = "\u0425", KJcy = "\u040C", Kappa = "\u039A", Kcedil = "\u0136", Kcy = "\u041A", Kfr = "\u{1D50E}", Kopf = "\u{1D542}", Kscr = "\u{1D4A6}", LJcy = "\u0409", L = "<", LT = "<", Lacute = "\u0139", Lambda = "\u039B", Lang = "\u27EA", Laplacetrf = "\u2112", Larr = "\u219E", Lcaron = "\u013D", Lcedil = "\u013B", Lcy = "\u041B", LeftAngleBracket = "\u27E8", LeftArrow = "\u2190", LeftArrowBar = "\u21E4", LeftArrowRightArrow = "\u21C6", LeftCeiling = "\u2308", LeftDoubleBracket = "\u27E6", LeftDownTeeVector = "\u2961", LeftDownVector = "\u21C3", LeftDownVectorBar = "\u2959", LeftFloor = "\u230A", LeftRightArrow = "\u2194", LeftRightVector = "\u294E", LeftTee = "\u22A3", LeftTeeArrow = "\u21A4", LeftTeeVector = "\u295A", LeftTriangle = "\u22B2", LeftTriangleBar = "\u29CF", LeftTriangleEqual = "\u22B4", LeftUpDownVector = "\u2951", LeftUpTeeVector = "\u2960", LeftUpVector = "\u21BF", LeftUpVectorBar = "\u2958", LeftVector = "\u21BC", LeftVectorBar = "\u2952", Leftarrow = "\u21D0", Leftrightarrow = "\u21D4", LessEqualGreater = "\u22DA", LessFullEqual = "\u2266", LessGreater = "\u2276", LessLess = "\u2AA1", LessSlantEqual = "\u2A7D", LessTilde = "\u2272", Lfr = "\u{1D50F}", Ll = "\u22D8", Lleftarrow = "\u21DA", Lmidot = "\u013F", LongLeftArrow = "\u27F5", LongLeftRightArrow = "\u27F7", LongRightArrow = "\u27F6", Longleftarrow = "\u27F8", Longleftrightarrow = "\u27FA", Longrightarrow = "\u27F9", Lopf = "\u{1D543}", LowerLeftArrow = "\u2199", LowerRightArrow = "\u2198", Lscr = "\u2112", Lsh = "\u21B0", Lstrok = "\u0141", Lt = "\u226A", Mcy = "\u041C", MediumSpace = "\u205F", Mellintrf = "\u2133", Mfr = "\u{1D510}", MinusPlus = "\u2213", Mopf = "\u{1D544}", Mscr = "\u2133", Mu = "\u039C", NJcy = "\u040A", Nacute = "\u0143", Ncaron = "\u0147", Ncedil = "\u0145", Ncy = "\u041D", NegativeMediumSpace = "\u200B", NegativeThickSpace = "\u200B", NegativeThinSpace = "\u200B", NegativeVeryThinSpace = "\u200B", NestedGreaterGreater = "\u226B", NestedLessLess = "\u226A", NewLine = `
|
|
952
|
+
`, Nfr = "\u{1D511}", NoBreak = "\u2060", NonBreakingSpace = "\xA0", Nopf = "\u2115", Not = "\u2AEC", NotCongruent = "\u2262", NotCupCap = "\u226D", NotDoubleVerticalBar = "\u2226", NotElement = "\u2209", NotEqual = "\u2260", NotEqualTilde = "\u2242\u0338", NotExists = "\u2204", NotGreater = "\u226F", NotGreaterEqual = "\u2271", NotGreaterFullEqual = "\u2267\u0338", NotGreaterGreater = "\u226B\u0338", NotGreaterLess = "\u2279", NotGreaterSlantEqual = "\u2A7E\u0338", NotGreaterTilde = "\u2275", NotHumpDownHump = "\u224E\u0338", NotHumpEqual = "\u224F\u0338", NotLeftTriangle = "\u22EA", NotLeftTriangleBar = "\u29CF\u0338", NotLeftTriangleEqual = "\u22EC", NotLess = "\u226E", NotLessEqual = "\u2270", NotLessGreater = "\u2278", NotLessLess = "\u226A\u0338", NotLessSlantEqual = "\u2A7D\u0338", NotLessTilde = "\u2274", NotNestedGreaterGreater = "\u2AA2\u0338", NotNestedLessLess = "\u2AA1\u0338", NotPrecedes = "\u2280", NotPrecedesEqual = "\u2AAF\u0338", NotPrecedesSlantEqual = "\u22E0", NotReverseElement = "\u220C", NotRightTriangle = "\u22EB", NotRightTriangleBar = "\u29D0\u0338", NotRightTriangleEqual = "\u22ED", NotSquareSubset = "\u228F\u0338", NotSquareSubsetEqual = "\u22E2", NotSquareSuperset = "\u2290\u0338", NotSquareSupersetEqual = "\u22E3", NotSubset = "\u2282\u20D2", NotSubsetEqual = "\u2288", NotSucceeds = "\u2281", NotSucceedsEqual = "\u2AB0\u0338", NotSucceedsSlantEqual = "\u22E1", NotSucceedsTilde = "\u227F\u0338", NotSuperset = "\u2283\u20D2", NotSupersetEqual = "\u2289", NotTilde = "\u2241", NotTildeEqual = "\u2244", NotTildeFullEqual = "\u2247", NotTildeTilde = "\u2249", NotVerticalBar = "\u2224", Nscr = "\u{1D4A9}", Ntild = "\xD1", Ntilde = "\xD1", Nu = "\u039D", OElig = "\u0152", Oacut = "\xD3", Oacute = "\xD3", Ocir = "\xD4", Ocirc = "\xD4", Ocy = "\u041E", Odblac = "\u0150", Ofr = "\u{1D512}", Ograv = "\xD2", Ograve = "\xD2", Omacr = "\u014C", Omega = "\u03A9", Omicron = "\u039F", Oopf = "\u{1D546}", OpenCurlyDoubleQuote = "\u201C", OpenCurlyQuote = "\u2018", Or = "\u2A54", Oscr = "\u{1D4AA}", Oslas = "\xD8", Oslash = "\xD8", Otild = "\xD5", Otilde = "\xD5", Otimes = "\u2A37", Oum = "\xD6", Ouml = "\xD6", OverBar = "\u203E", OverBrace = "\u23DE", OverBracket = "\u23B4", OverParenthesis = "\u23DC", PartialD = "\u2202", Pcy = "\u041F", Pfr = "\u{1D513}", Phi = "\u03A6", Pi = "\u03A0", PlusMinus = "\xB1", Poincareplane = "\u210C", Popf = "\u2119", Pr = "\u2ABB", Precedes = "\u227A", PrecedesEqual = "\u2AAF", PrecedesSlantEqual = "\u227C", PrecedesTilde = "\u227E", Prime = "\u2033", Product = "\u220F", Proportion = "\u2237", Proportional = "\u221D", Pscr = "\u{1D4AB}", Psi = "\u03A8", QUO = '"', QUOT = '"', Qfr = "\u{1D514}", Qopf = "\u211A", Qscr = "\u{1D4AC}", RBarr = "\u2910", RE = "\xAE", REG = "\xAE", Racute = "\u0154", Rang = "\u27EB", Rarr = "\u21A0", Rarrtl = "\u2916", Rcaron = "\u0158", Rcedil = "\u0156", Rcy = "\u0420", Re = "\u211C", ReverseElement = "\u220B", ReverseEquilibrium = "\u21CB", ReverseUpEquilibrium = "\u296F", Rfr = "\u211C", Rho = "\u03A1", RightAngleBracket = "\u27E9", RightArrow = "\u2192", RightArrowBar = "\u21E5", RightArrowLeftArrow = "\u21C4", RightCeiling = "\u2309", RightDoubleBracket = "\u27E7", RightDownTeeVector = "\u295D", RightDownVector = "\u21C2", RightDownVectorBar = "\u2955", RightFloor = "\u230B", RightTee = "\u22A2", RightTeeArrow = "\u21A6", RightTeeVector = "\u295B", RightTriangle = "\u22B3", RightTriangleBar = "\u29D0", RightTriangleEqual = "\u22B5", RightUpDownVector = "\u294F", RightUpTeeVector = "\u295C", RightUpVector = "\u21BE", RightUpVectorBar = "\u2954", RightVector = "\u21C0", RightVectorBar = "\u2953", Rightarrow = "\u21D2", Ropf = "\u211D", RoundImplies = "\u2970", Rrightarrow = "\u21DB", Rscr = "\u211B", Rsh = "\u21B1", RuleDelayed = "\u29F4", SHCHcy = "\u0429", SHcy = "\u0428", SOFTcy = "\u042C", Sacute = "\u015A", Sc = "\u2ABC", Scaron = "\u0160", Scedil = "\u015E", Scirc = "\u015C", Scy = "\u0421", Sfr = "\u{1D516}", ShortDownArrow = "\u2193", ShortLeftArrow = "\u2190", ShortRightArrow = "\u2192", ShortUpArrow = "\u2191", Sigma = "\u03A3", SmallCircle = "\u2218", Sopf = "\u{1D54A}", Sqrt = "\u221A", Square = "\u25A1", SquareIntersection = "\u2293", SquareSubset = "\u228F", SquareSubsetEqual = "\u2291", SquareSuperset = "\u2290", SquareSupersetEqual = "\u2292", SquareUnion = "\u2294", Sscr = "\u{1D4AE}", Star = "\u22C6", Sub = "\u22D0", Subset = "\u22D0", SubsetEqual = "\u2286", Succeeds = "\u227B", SucceedsEqual = "\u2AB0", SucceedsSlantEqual = "\u227D", SucceedsTilde = "\u227F", SuchThat = "\u220B", Sum = "\u2211", Sup = "\u22D1", Superset = "\u2283", SupersetEqual = "\u2287", Supset = "\u22D1", THOR = "\xDE", THORN = "\xDE", TRADE = "\u2122", TSHcy = "\u040B", TScy = "\u0426", Tab = " ", Tau = "\u03A4", Tcaron = "\u0164", Tcedil = "\u0162", Tcy = "\u0422", Tfr = "\u{1D517}", Therefore = "\u2234", Theta = "\u0398", ThickSpace = "\u205F\u200A", ThinSpace = "\u2009", Tilde = "\u223C", TildeEqual = "\u2243", TildeFullEqual = "\u2245", TildeTilde = "\u2248", Topf = "\u{1D54B}", TripleDot = "\u20DB", Tscr = "\u{1D4AF}", Tstrok = "\u0166", Uacut = "\xDA", Uacute = "\xDA", Uarr = "\u219F", Uarrocir = "\u2949", Ubrcy = "\u040E", Ubreve = "\u016C", Ucir = "\xDB", Ucirc = "\xDB", Ucy = "\u0423", Udblac = "\u0170", Ufr = "\u{1D518}", Ugrav = "\xD9", Ugrave = "\xD9", Umacr = "\u016A", UnderBar = "_", UnderBrace = "\u23DF", UnderBracket = "\u23B5", UnderParenthesis = "\u23DD", Union = "\u22C3", UnionPlus = "\u228E", Uogon = "\u0172", Uopf = "\u{1D54C}", UpArrow = "\u2191", UpArrowBar = "\u2912", UpArrowDownArrow = "\u21C5", UpDownArrow = "\u2195", UpEquilibrium = "\u296E", UpTee = "\u22A5", UpTeeArrow = "\u21A5", Uparrow = "\u21D1", Updownarrow = "\u21D5", UpperLeftArrow = "\u2196", UpperRightArrow = "\u2197", Upsi = "\u03D2", Upsilon = "\u03A5", Uring = "\u016E", Uscr = "\u{1D4B0}", Utilde = "\u0168", Uum = "\xDC", Uuml = "\xDC", VDash = "\u22AB", Vbar = "\u2AEB", Vcy = "\u0412", Vdash = "\u22A9", Vdashl = "\u2AE6", Vee = "\u22C1", Verbar = "\u2016", Vert = "\u2016", VerticalBar = "\u2223", VerticalLine = "|", VerticalSeparator = "\u2758", VerticalTilde = "\u2240", VeryThinSpace = "\u200A", Vfr = "\u{1D519}", Vopf = "\u{1D54D}", Vscr = "\u{1D4B1}", Vvdash = "\u22AA", Wcirc = "\u0174", Wedge = "\u22C0", Wfr = "\u{1D51A}", Wopf = "\u{1D54E}", Wscr = "\u{1D4B2}", Xfr = "\u{1D51B}", Xi = "\u039E", Xopf = "\u{1D54F}", Xscr = "\u{1D4B3}", YAcy = "\u042F", YIcy = "\u0407", YUcy = "\u042E", Yacut = "\xDD", Yacute = "\xDD", Ycirc = "\u0176", Ycy = "\u042B", Yfr = "\u{1D51C}", Yopf = "\u{1D550}", Yscr = "\u{1D4B4}", Yuml = "\u0178", ZHcy = "\u0416", Zacute = "\u0179", Zcaron = "\u017D", Zcy = "\u0417", Zdot = "\u017B", ZeroWidthSpace = "\u200B", Zeta = "\u0396", Zfr = "\u2128", Zopf = "\u2124", Zscr = "\u{1D4B5}", aacut = "\xE1", aacute = "\xE1", abreve = "\u0103", ac = "\u223E", acE = "\u223E\u0333", acd = "\u223F", acir = "\xE2", acirc = "\xE2", acut = "\xB4", acute = "\xB4", acy = "\u0430", aeli = "\xE6", aelig = "\xE6", af = "\u2061", afr = "\u{1D51E}", agrav = "\xE0", agrave = "\xE0", alefsym = "\u2135", aleph = "\u2135", alpha = "\u03B1", amacr = "\u0101", amalg = "\u2A3F", am = "&", amp = "&", and = "\u2227", andand = "\u2A55", andd = "\u2A5C", andslope = "\u2A58", andv = "\u2A5A", ang = "\u2220", ange = "\u29A4", angle = "\u2220", angmsd = "\u2221", angmsdaa = "\u29A8", angmsdab = "\u29A9", angmsdac = "\u29AA", angmsdad = "\u29AB", angmsdae = "\u29AC", angmsdaf = "\u29AD", angmsdag = "\u29AE", angmsdah = "\u29AF", angrt = "\u221F", angrtvb = "\u22BE", angrtvbd = "\u299D", angsph = "\u2222", angst = "\xC5", angzarr = "\u237C", aogon = "\u0105", aopf = "\u{1D552}", ap = "\u2248", apE = "\u2A70", apacir = "\u2A6F", ape = "\u224A", apid = "\u224B", apos = "'", approx = "\u2248", approxeq = "\u224A", arin = "\xE5", aring = "\xE5", ascr = "\u{1D4B6}", ast = "*", asymp = "\u2248", asympeq = "\u224D", atild = "\xE3", atilde = "\xE3", aum = "\xE4", auml = "\xE4", awconint = "\u2233", awint = "\u2A11", bNot = "\u2AED", backcong = "\u224C", backepsilon = "\u03F6", backprime = "\u2035", backsim = "\u223D", backsimeq = "\u22CD", barvee = "\u22BD", barwed = "\u2305", barwedge = "\u2305", bbrk = "\u23B5", bbrktbrk = "\u23B6", bcong = "\u224C", bcy = "\u0431", bdquo = "\u201E", becaus = "\u2235", because = "\u2235", bemptyv = "\u29B0", bepsi = "\u03F6", bernou = "\u212C", beta = "\u03B2", beth = "\u2136", between = "\u226C", bfr = "\u{1D51F}", bigcap = "\u22C2", bigcirc = "\u25EF", bigcup = "\u22C3", bigodot = "\u2A00", bigoplus = "\u2A01", bigotimes = "\u2A02", bigsqcup = "\u2A06", bigstar = "\u2605", bigtriangledown = "\u25BD", bigtriangleup = "\u25B3", biguplus = "\u2A04", bigvee = "\u22C1", bigwedge = "\u22C0", bkarow = "\u290D", blacklozenge = "\u29EB", blacksquare = "\u25AA", blacktriangle = "\u25B4", blacktriangledown = "\u25BE", blacktriangleleft = "\u25C2", blacktriangleright = "\u25B8", blank = "\u2423", blk12 = "\u2592", blk14 = "\u2591", blk34 = "\u2593", block = "\u2588", bne = "=\u20E5", bnequiv = "\u2261\u20E5", bnot = "\u2310", bopf = "\u{1D553}", bot = "\u22A5", bottom = "\u22A5", bowtie = "\u22C8", boxDL = "\u2557", boxDR = "\u2554", boxDl = "\u2556", boxDr = "\u2553", boxH = "\u2550", boxHD = "\u2566", boxHU = "\u2569", boxHd = "\u2564", boxHu = "\u2567", boxUL = "\u255D", boxUR = "\u255A", boxUl = "\u255C", boxUr = "\u2559", boxV = "\u2551", boxVH = "\u256C", boxVL = "\u2563", boxVR = "\u2560", boxVh = "\u256B", boxVl = "\u2562", boxVr = "\u255F", boxbox = "\u29C9", boxdL = "\u2555", boxdR = "\u2552", boxdl = "\u2510", boxdr = "\u250C", boxh = "\u2500", boxhD = "\u2565", boxhU = "\u2568", boxhd = "\u252C", boxhu = "\u2534", boxminus = "\u229F", boxplus = "\u229E", boxtimes = "\u22A0", boxuL = "\u255B", boxuR = "\u2558", boxul = "\u2518", boxur = "\u2514", boxv = "\u2502", boxvH = "\u256A", boxvL = "\u2561", boxvR = "\u255E", boxvh = "\u253C", boxvl = "\u2524", boxvr = "\u251C", bprime = "\u2035", breve = "\u02D8", brvba = "\xA6", brvbar = "\xA6", bscr = "\u{1D4B7}", bsemi = "\u204F", bsim = "\u223D", bsime = "\u22CD", bsol = "\\", bsolb = "\u29C5", bsolhsub = "\u27C8", bull = "\u2022", bullet = "\u2022", bump = "\u224E", bumpE = "\u2AAE", bumpe = "\u224F", bumpeq = "\u224F", cacute = "\u0107", cap = "\u2229", capand = "\u2A44", capbrcup = "\u2A49", capcap = "\u2A4B", capcup = "\u2A47", capdot = "\u2A40", caps = "\u2229\uFE00", caret = "\u2041", caron = "\u02C7", ccaps = "\u2A4D", ccaron = "\u010D", ccedi = "\xE7", ccedil = "\xE7", ccirc = "\u0109", ccups = "\u2A4C", ccupssm = "\u2A50", cdot = "\u010B", cedi = "\xB8", cedil = "\xB8", cemptyv = "\u29B2", cen = "\xA2", cent = "\xA2", centerdot = "\xB7", cfr = "\u{1D520}", chcy = "\u0447", check = "\u2713", checkmark = "\u2713", chi = "\u03C7", cir = "\u25CB", cirE = "\u29C3", circ = "\u02C6", circeq = "\u2257", circlearrowleft = "\u21BA", circlearrowright = "\u21BB", circledR = "\xAE", circledS = "\u24C8", circledast = "\u229B", circledcirc = "\u229A", circleddash = "\u229D", cire = "\u2257", cirfnint = "\u2A10", cirmid = "\u2AEF", cirscir = "\u29C2", clubs = "\u2663", clubsuit = "\u2663", colon = ":", colone = "\u2254", coloneq = "\u2254", comma = ",", commat = "@", comp = "\u2201", compfn = "\u2218", complement = "\u2201", complexes = "\u2102", cong = "\u2245", congdot = "\u2A6D", conint = "\u222E", copf = "\u{1D554}", coprod = "\u2210", cop = "\xA9", copy = "\xA9", copysr = "\u2117", crarr = "\u21B5", cross = "\u2717", cscr = "\u{1D4B8}", csub = "\u2ACF", csube = "\u2AD1", csup = "\u2AD0", csupe = "\u2AD2", ctdot = "\u22EF", cudarrl = "\u2938", cudarrr = "\u2935", cuepr = "\u22DE", cuesc = "\u22DF", cularr = "\u21B6", cularrp = "\u293D", cup = "\u222A", cupbrcap = "\u2A48", cupcap = "\u2A46", cupcup = "\u2A4A", cupdot = "\u228D", cupor = "\u2A45", cups = "\u222A\uFE00", curarr = "\u21B7", curarrm = "\u293C", curlyeqprec = "\u22DE", curlyeqsucc = "\u22DF", curlyvee = "\u22CE", curlywedge = "\u22CF", curre = "\xA4", curren = "\xA4", curvearrowleft = "\u21B6", curvearrowright = "\u21B7", cuvee = "\u22CE", cuwed = "\u22CF", cwconint = "\u2232", cwint = "\u2231", cylcty = "\u232D", dArr = "\u21D3", dHar = "\u2965", dagger = "\u2020", daleth = "\u2138", darr = "\u2193", dash = "\u2010", dashv = "\u22A3", dbkarow = "\u290F", dblac = "\u02DD", dcaron = "\u010F", dcy = "\u0434", dd = "\u2146", ddagger = "\u2021", ddarr = "\u21CA", ddotseq = "\u2A77", de = "\xB0", deg = "\xB0", delta = "\u03B4", demptyv = "\u29B1", dfisht = "\u297F", dfr = "\u{1D521}", dharl = "\u21C3", dharr = "\u21C2", diam = "\u22C4", diamond = "\u22C4", diamondsuit = "\u2666", diams = "\u2666", die = "\xA8", digamma = "\u03DD", disin = "\u22F2", div = "\xF7", divid = "\xF7", divide = "\xF7", divideontimes = "\u22C7", divonx = "\u22C7", djcy = "\u0452", dlcorn = "\u231E", dlcrop = "\u230D", dollar = "$", dopf = "\u{1D555}", dot = "\u02D9", doteq = "\u2250", doteqdot = "\u2251", dotminus = "\u2238", dotplus = "\u2214", dotsquare = "\u22A1", doublebarwedge = "\u2306", downarrow = "\u2193", downdownarrows = "\u21CA", downharpoonleft = "\u21C3", downharpoonright = "\u21C2", drbkarow = "\u2910", drcorn = "\u231F", drcrop = "\u230C", dscr = "\u{1D4B9}", dscy = "\u0455", dsol = "\u29F6", dstrok = "\u0111", dtdot = "\u22F1", dtri = "\u25BF", dtrif = "\u25BE", duarr = "\u21F5", duhar = "\u296F", dwangle = "\u29A6", dzcy = "\u045F", dzigrarr = "\u27FF", eDDot = "\u2A77", eDot = "\u2251", eacut = "\xE9", eacute = "\xE9", easter = "\u2A6E", ecaron = "\u011B", ecir = "\xEA", ecirc = "\xEA", ecolon = "\u2255", ecy = "\u044D", edot = "\u0117", ee = "\u2147", efDot = "\u2252", efr = "\u{1D522}", eg = "\u2A9A", egrav = "\xE8", egrave = "\xE8", egs = "\u2A96", egsdot = "\u2A98", el = "\u2A99", elinters = "\u23E7", ell = "\u2113", els = "\u2A95", elsdot = "\u2A97", emacr = "\u0113", empty = "\u2205", emptyset = "\u2205", emptyv = "\u2205", emsp13 = "\u2004", emsp14 = "\u2005", emsp = "\u2003", eng = "\u014B", ensp = "\u2002", eogon = "\u0119", eopf = "\u{1D556}", epar = "\u22D5", eparsl = "\u29E3", eplus = "\u2A71", epsi = "\u03B5", epsilon = "\u03B5", epsiv = "\u03F5", eqcirc = "\u2256", eqcolon = "\u2255", eqsim = "\u2242", eqslantgtr = "\u2A96", eqslantless = "\u2A95", equals = "=", equest = "\u225F", equiv = "\u2261", equivDD = "\u2A78", eqvparsl = "\u29E5", erDot = "\u2253", erarr = "\u2971", escr = "\u212F", esdot = "\u2250", esim = "\u2242", eta = "\u03B7", et = "\xF0", eth = "\xF0", eum = "\xEB", euml = "\xEB", euro = "\u20AC", excl = "!", exist = "\u2203", expectation = "\u2130", exponentiale = "\u2147", fallingdotseq = "\u2252", fcy = "\u0444", female = "\u2640", ffilig = "\uFB03", fflig = "\uFB00", ffllig = "\uFB04", ffr = "\u{1D523}", filig = "\uFB01", fjlig = "fj", flat = "\u266D", fllig = "\uFB02", fltns = "\u25B1", fnof = "\u0192", fopf = "\u{1D557}", forall = "\u2200", fork = "\u22D4", forkv = "\u2AD9", fpartint = "\u2A0D", frac1 = "\xBC", frac12 = "\xBD", frac13 = "\u2153", frac14 = "\xBC", frac15 = "\u2155", frac16 = "\u2159", frac18 = "\u215B", frac23 = "\u2154", frac25 = "\u2156", frac3 = "\xBE", frac34 = "\xBE", frac35 = "\u2157", frac38 = "\u215C", frac45 = "\u2158", frac56 = "\u215A", frac58 = "\u215D", frac78 = "\u215E", frasl = "\u2044", frown = "\u2322", fscr = "\u{1D4BB}", gE = "\u2267", gEl = "\u2A8C", gacute = "\u01F5", gamma = "\u03B3", gammad = "\u03DD", gap = "\u2A86", gbreve = "\u011F", gcirc = "\u011D", gcy = "\u0433", gdot = "\u0121", ge = "\u2265", gel = "\u22DB", geq = "\u2265", geqq = "\u2267", geqslant = "\u2A7E", ges = "\u2A7E", gescc = "\u2AA9", gesdot = "\u2A80", gesdoto = "\u2A82", gesdotol = "\u2A84", gesl = "\u22DB\uFE00", gesles = "\u2A94", gfr = "\u{1D524}", gg = "\u226B", ggg = "\u22D9", gimel = "\u2137", gjcy = "\u0453", gl = "\u2277", glE = "\u2A92", gla = "\u2AA5", glj = "\u2AA4", gnE = "\u2269", gnap = "\u2A8A", gnapprox = "\u2A8A", gne = "\u2A88", gneq = "\u2A88", gneqq = "\u2269", gnsim = "\u22E7", gopf = "\u{1D558}", grave = "`", gscr = "\u210A", gsim = "\u2273", gsime = "\u2A8E", gsiml = "\u2A90", g = ">", gt = ">", gtcc = "\u2AA7", gtcir = "\u2A7A", gtdot = "\u22D7", gtlPar = "\u2995", gtquest = "\u2A7C", gtrapprox = "\u2A86", gtrarr = "\u2978", gtrdot = "\u22D7", gtreqless = "\u22DB", gtreqqless = "\u2A8C", gtrless = "\u2277", gtrsim = "\u2273", gvertneqq = "\u2269\uFE00", gvnE = "\u2269\uFE00", hArr = "\u21D4", hairsp = "\u200A", half = "\xBD", hamilt = "\u210B", hardcy = "\u044A", harr = "\u2194", harrcir = "\u2948", harrw = "\u21AD", hbar = "\u210F", hcirc = "\u0125", hearts = "\u2665", heartsuit = "\u2665", hellip = "\u2026", hercon = "\u22B9", hfr = "\u{1D525}", hksearow = "\u2925", hkswarow = "\u2926", hoarr = "\u21FF", homtht = "\u223B", hookleftarrow = "\u21A9", hookrightarrow = "\u21AA", hopf = "\u{1D559}", horbar = "\u2015", hscr = "\u{1D4BD}", hslash = "\u210F", hstrok = "\u0127", hybull = "\u2043", hyphen = "\u2010", iacut = "\xED", iacute = "\xED", ic = "\u2063", icir = "\xEE", icirc = "\xEE", icy = "\u0438", iecy = "\u0435", iexc = "\xA1", iexcl = "\xA1", iff = "\u21D4", ifr = "\u{1D526}", igrav = "\xEC", igrave = "\xEC", ii = "\u2148", iiiint = "\u2A0C", iiint = "\u222D", iinfin = "\u29DC", iiota = "\u2129", ijlig = "\u0133", imacr = "\u012B", image = "\u2111", imagline = "\u2110", imagpart = "\u2111", imath = "\u0131", imof = "\u22B7", imped = "\u01B5", incare = "\u2105", infin = "\u221E", infintie = "\u29DD", inodot = "\u0131", int = "\u222B", intcal = "\u22BA", integers = "\u2124", intercal = "\u22BA", intlarhk = "\u2A17", intprod = "\u2A3C", iocy = "\u0451", iogon = "\u012F", iopf = "\u{1D55A}", iota = "\u03B9", iprod = "\u2A3C", iques = "\xBF", iquest = "\xBF", iscr = "\u{1D4BE}", isin = "\u2208", isinE = "\u22F9", isindot = "\u22F5", isins = "\u22F4", isinsv = "\u22F3", isinv = "\u2208", it = "\u2062", itilde = "\u0129", iukcy = "\u0456", ium = "\xEF", iuml = "\xEF", jcirc = "\u0135", jcy = "\u0439", jfr = "\u{1D527}", jmath = "\u0237", jopf = "\u{1D55B}", jscr = "\u{1D4BF}", jsercy = "\u0458", jukcy = "\u0454", kappa = "\u03BA", kappav = "\u03F0", kcedil = "\u0137", kcy = "\u043A", kfr = "\u{1D528}", kgreen = "\u0138", khcy = "\u0445", kjcy = "\u045C", kopf = "\u{1D55C}", kscr = "\u{1D4C0}", lAarr = "\u21DA", lArr = "\u21D0", lAtail = "\u291B", lBarr = "\u290E", lE = "\u2266", lEg = "\u2A8B", lHar = "\u2962", lacute = "\u013A", laemptyv = "\u29B4", lagran = "\u2112", lambda = "\u03BB", lang = "\u27E8", langd = "\u2991", langle = "\u27E8", lap = "\u2A85", laqu = "\xAB", laquo = "\xAB", larr = "\u2190", larrb = "\u21E4", larrbfs = "\u291F", larrfs = "\u291D", larrhk = "\u21A9", larrlp = "\u21AB", larrpl = "\u2939", larrsim = "\u2973", larrtl = "\u21A2", lat = "\u2AAB", latail = "\u2919", late = "\u2AAD", lates = "\u2AAD\uFE00", lbarr = "\u290C", lbbrk = "\u2772", lbrace = "{", lbrack = "[", lbrke = "\u298B", lbrksld = "\u298F", lbrkslu = "\u298D", lcaron = "\u013E", lcedil = "\u013C", lceil = "\u2308", lcub = "{", lcy = "\u043B", ldca = "\u2936", ldquo = "\u201C", ldquor = "\u201E", ldrdhar = "\u2967", ldrushar = "\u294B", ldsh = "\u21B2", le = "\u2264", leftarrow = "\u2190", leftarrowtail = "\u21A2", leftharpoondown = "\u21BD", leftharpoonup = "\u21BC", leftleftarrows = "\u21C7", leftrightarrow = "\u2194", leftrightarrows = "\u21C6", leftrightharpoons = "\u21CB", leftrightsquigarrow = "\u21AD", leftthreetimes = "\u22CB", leg = "\u22DA", leq = "\u2264", leqq = "\u2266", leqslant = "\u2A7D", les = "\u2A7D", lescc = "\u2AA8", lesdot = "\u2A7F", lesdoto = "\u2A81", lesdotor = "\u2A83", lesg = "\u22DA\uFE00", lesges = "\u2A93", lessapprox = "\u2A85", lessdot = "\u22D6", lesseqgtr = "\u22DA", lesseqqgtr = "\u2A8B", lessgtr = "\u2276", lesssim = "\u2272", lfisht = "\u297C", lfloor = "\u230A", lfr = "\u{1D529}", lg = "\u2276", lgE = "\u2A91", lhard = "\u21BD", lharu = "\u21BC", lharul = "\u296A", lhblk = "\u2584", ljcy = "\u0459", ll = "\u226A", llarr = "\u21C7", llcorner = "\u231E", llhard = "\u296B", lltri = "\u25FA", lmidot = "\u0140", lmoust = "\u23B0", lmoustache = "\u23B0", lnE = "\u2268", lnap = "\u2A89", lnapprox = "\u2A89", lne = "\u2A87", lneq = "\u2A87", lneqq = "\u2268", lnsim = "\u22E6", loang = "\u27EC", loarr = "\u21FD", lobrk = "\u27E6", longleftarrow = "\u27F5", longleftrightarrow = "\u27F7", longmapsto = "\u27FC", longrightarrow = "\u27F6", looparrowleft = "\u21AB", looparrowright = "\u21AC", lopar = "\u2985", lopf = "\u{1D55D}", loplus = "\u2A2D", lotimes = "\u2A34", lowast = "\u2217", lowbar = "_", loz = "\u25CA", lozenge = "\u25CA", lozf = "\u29EB", lpar = "(", lparlt = "\u2993", lrarr = "\u21C6", lrcorner = "\u231F", lrhar = "\u21CB", lrhard = "\u296D", lrm = "\u200E", lrtri = "\u22BF", lsaquo = "\u2039", lscr = "\u{1D4C1}", lsh = "\u21B0", lsim = "\u2272", lsime = "\u2A8D", lsimg = "\u2A8F", lsqb = "[", lsquo = "\u2018", lsquor = "\u201A", lstrok = "\u0142", l = "<", lt = "<", ltcc = "\u2AA6", ltcir = "\u2A79", ltdot = "\u22D6", lthree = "\u22CB", ltimes = "\u22C9", ltlarr = "\u2976", ltquest = "\u2A7B", ltrPar = "\u2996", ltri = "\u25C3", ltrie = "\u22B4", ltrif = "\u25C2", lurdshar = "\u294A", luruhar = "\u2966", lvertneqq = "\u2268\uFE00", lvnE = "\u2268\uFE00", mDDot = "\u223A", mac = "\xAF", macr = "\xAF", male = "\u2642", malt = "\u2720", maltese = "\u2720", map$1 = "\u21A6", mapsto = "\u21A6", mapstodown = "\u21A7", mapstoleft = "\u21A4", mapstoup = "\u21A5", marker = "\u25AE", mcomma = "\u2A29", mcy = "\u043C", mdash = "\u2014", measuredangle = "\u2221", mfr = "\u{1D52A}", mho = "\u2127", micr = "\xB5", micro = "\xB5", mid = "\u2223", midast = "*", midcir = "\u2AF0", middo = "\xB7", middot = "\xB7", minus = "\u2212", minusb = "\u229F", minusd = "\u2238", minusdu = "\u2A2A", mlcp = "\u2ADB", mldr = "\u2026", mnplus = "\u2213", models = "\u22A7", mopf = "\u{1D55E}", mp = "\u2213", mscr = "\u{1D4C2}", mstpos = "\u223E", mu = "\u03BC", multimap = "\u22B8", mumap = "\u22B8", nGg = "\u22D9\u0338", nGt = "\u226B\u20D2", nGtv = "\u226B\u0338", nLeftarrow = "\u21CD", nLeftrightarrow = "\u21CE", nLl = "\u22D8\u0338", nLt = "\u226A\u20D2", nLtv = "\u226A\u0338", nRightarrow = "\u21CF", nVDash = "\u22AF", nVdash = "\u22AE", nabla = "\u2207", nacute = "\u0144", nang = "\u2220\u20D2", nap = "\u2249", napE = "\u2A70\u0338", napid = "\u224B\u0338", napos = "\u0149", napprox = "\u2249", natur = "\u266E", natural = "\u266E", naturals = "\u2115", nbs = "\xA0", nbsp = "\xA0", nbump = "\u224E\u0338", nbumpe = "\u224F\u0338", ncap = "\u2A43", ncaron = "\u0148", ncedil = "\u0146", ncong = "\u2247", ncongdot = "\u2A6D\u0338", ncup = "\u2A42", ncy = "\u043D", ndash = "\u2013", ne = "\u2260", neArr = "\u21D7", nearhk = "\u2924", nearr = "\u2197", nearrow = "\u2197", nedot = "\u2250\u0338", nequiv = "\u2262", nesear = "\u2928", nesim = "\u2242\u0338", nexist = "\u2204", nexists = "\u2204", nfr = "\u{1D52B}", ngE = "\u2267\u0338", nge = "\u2271", ngeq = "\u2271", ngeqq = "\u2267\u0338", ngeqslant = "\u2A7E\u0338", nges = "\u2A7E\u0338", ngsim = "\u2275", ngt = "\u226F", ngtr = "\u226F", nhArr = "\u21CE", nharr = "\u21AE", nhpar = "\u2AF2", ni = "\u220B", nis = "\u22FC", nisd = "\u22FA", niv = "\u220B", njcy = "\u045A", nlArr = "\u21CD", nlE = "\u2266\u0338", nlarr = "\u219A", nldr = "\u2025", nle = "\u2270", nleftarrow = "\u219A", nleftrightarrow = "\u21AE", nleq = "\u2270", nleqq = "\u2266\u0338", nleqslant = "\u2A7D\u0338", nles = "\u2A7D\u0338", nless = "\u226E", nlsim = "\u2274", nlt = "\u226E", nltri = "\u22EA", nltrie = "\u22EC", nmid = "\u2224", nopf = "\u{1D55F}", no = "\xAC", not = "\xAC", notin = "\u2209", notinE = "\u22F9\u0338", notindot = "\u22F5\u0338", notinva = "\u2209", notinvb = "\u22F7", notinvc = "\u22F6", notni = "\u220C", notniva = "\u220C", notnivb = "\u22FE", notnivc = "\u22FD", npar = "\u2226", nparallel = "\u2226", nparsl = "\u2AFD\u20E5", npart = "\u2202\u0338", npolint = "\u2A14", npr = "\u2280", nprcue = "\u22E0", npre = "\u2AAF\u0338", nprec = "\u2280", npreceq = "\u2AAF\u0338", nrArr = "\u21CF", nrarr = "\u219B", nrarrc = "\u2933\u0338", nrarrw = "\u219D\u0338", nrightarrow = "\u219B", nrtri = "\u22EB", nrtrie = "\u22ED", nsc = "\u2281", nsccue = "\u22E1", nsce = "\u2AB0\u0338", nscr = "\u{1D4C3}", nshortmid = "\u2224", nshortparallel = "\u2226", nsim = "\u2241", nsime = "\u2244", nsimeq = "\u2244", nsmid = "\u2224", nspar = "\u2226", nsqsube = "\u22E2", nsqsupe = "\u22E3", nsub = "\u2284", nsubE = "\u2AC5\u0338", nsube = "\u2288", nsubset = "\u2282\u20D2", nsubseteq = "\u2288", nsubseteqq = "\u2AC5\u0338", nsucc = "\u2281", nsucceq = "\u2AB0\u0338", nsup = "\u2285", nsupE = "\u2AC6\u0338", nsupe = "\u2289", nsupset = "\u2283\u20D2", nsupseteq = "\u2289", nsupseteqq = "\u2AC6\u0338", ntgl = "\u2279", ntild = "\xF1", ntilde = "\xF1", ntlg = "\u2278", ntriangleleft = "\u22EA", ntrianglelefteq = "\u22EC", ntriangleright = "\u22EB", ntrianglerighteq = "\u22ED", nu = "\u03BD", num = "#", numero = "\u2116", numsp = "\u2007", nvDash = "\u22AD", nvHarr = "\u2904", nvap = "\u224D\u20D2", nvdash = "\u22AC", nvge = "\u2265\u20D2", nvgt = ">\u20D2", nvinfin = "\u29DE", nvlArr = "\u2902", nvle = "\u2264\u20D2", nvlt = "<\u20D2", nvltrie = "\u22B4\u20D2", nvrArr = "\u2903", nvrtrie = "\u22B5\u20D2", nvsim = "\u223C\u20D2", nwArr = "\u21D6", nwarhk = "\u2923", nwarr = "\u2196", nwarrow = "\u2196", nwnear = "\u2927", oS = "\u24C8", oacut = "\xF3", oacute = "\xF3", oast = "\u229B", ocir = "\xF4", ocirc = "\xF4", ocy = "\u043E", odash = "\u229D", odblac = "\u0151", odiv = "\u2A38", odot = "\u2299", odsold = "\u29BC", oelig = "\u0153", ofcir = "\u29BF", ofr = "\u{1D52C}", ogon = "\u02DB", ograv = "\xF2", ograve = "\xF2", ogt = "\u29C1", ohbar = "\u29B5", ohm = "\u03A9", oint = "\u222E", olarr = "\u21BA", olcir = "\u29BE", olcross = "\u29BB", oline = "\u203E", olt = "\u29C0", omacr = "\u014D", omega = "\u03C9", omicron = "\u03BF", omid = "\u29B6", ominus = "\u2296", oopf = "\u{1D560}", opar = "\u29B7", operp = "\u29B9", oplus = "\u2295", or = "\u2228", orarr = "\u21BB", ord = "\xBA", order = "\u2134", orderof = "\u2134", ordf = "\xAA", ordm = "\xBA", origof = "\u22B6", oror = "\u2A56", orslope = "\u2A57", orv = "\u2A5B", oscr = "\u2134", oslas = "\xF8", oslash = "\xF8", osol = "\u2298", otild = "\xF5", otilde = "\xF5", otimes = "\u2297", otimesas = "\u2A36", oum = "\xF6", ouml = "\xF6", ovbar = "\u233D", par = "\xB6", para = "\xB6", parallel = "\u2225", parsim = "\u2AF3", parsl = "\u2AFD", part = "\u2202", pcy = "\u043F", percnt = "%", period = ".", permil = "\u2030", perp = "\u22A5", pertenk = "\u2031", pfr = "\u{1D52D}", phi = "\u03C6", phiv = "\u03D5", phmmat = "\u2133", phone = "\u260E", pi = "\u03C0", pitchfork = "\u22D4", piv = "\u03D6", planck = "\u210F", planckh = "\u210E", plankv = "\u210F", plus = "+", plusacir = "\u2A23", plusb = "\u229E", pluscir = "\u2A22", plusdo = "\u2214", plusdu = "\u2A25", pluse = "\u2A72", plusm = "\xB1", plusmn = "\xB1", plussim = "\u2A26", plustwo = "\u2A27", pm = "\xB1", pointint = "\u2A15", popf = "\u{1D561}", poun = "\xA3", pound = "\xA3", pr = "\u227A", prE = "\u2AB3", prap = "\u2AB7", prcue = "\u227C", pre = "\u2AAF", prec = "\u227A", precapprox = "\u2AB7", preccurlyeq = "\u227C", preceq = "\u2AAF", precnapprox = "\u2AB9", precneqq = "\u2AB5", precnsim = "\u22E8", precsim = "\u227E", prime = "\u2032", primes = "\u2119", prnE = "\u2AB5", prnap = "\u2AB9", prnsim = "\u22E8", prod = "\u220F", profalar = "\u232E", profline = "\u2312", profsurf = "\u2313", prop = "\u221D", propto = "\u221D", prsim = "\u227E", prurel = "\u22B0", pscr = "\u{1D4C5}", psi = "\u03C8", puncsp = "\u2008", qfr = "\u{1D52E}", qint = "\u2A0C", qopf = "\u{1D562}", qprime = "\u2057", qscr = "\u{1D4C6}", quaternions = "\u210D", quatint = "\u2A16", quest = "?", questeq = "\u225F", quo = '"', quot = '"', rAarr = "\u21DB", rArr = "\u21D2", rAtail = "\u291C", rBarr = "\u290F", rHar = "\u2964", race = "\u223D\u0331", racute = "\u0155", radic = "\u221A", raemptyv = "\u29B3", rang = "\u27E9", rangd = "\u2992", range = "\u29A5", rangle = "\u27E9", raqu = "\xBB", raquo = "\xBB", rarr = "\u2192", rarrap = "\u2975", rarrb = "\u21E5", rarrbfs = "\u2920", rarrc = "\u2933", rarrfs = "\u291E", rarrhk = "\u21AA", rarrlp = "\u21AC", rarrpl = "\u2945", rarrsim = "\u2974", rarrtl = "\u21A3", rarrw = "\u219D", ratail = "\u291A", ratio = "\u2236", rationals = "\u211A", rbarr = "\u290D", rbbrk = "\u2773", rbrace = "}", rbrack = "]", rbrke = "\u298C", rbrksld = "\u298E", rbrkslu = "\u2990", rcaron = "\u0159", rcedil = "\u0157", rceil = "\u2309", rcub = "}", rcy = "\u0440", rdca = "\u2937", rdldhar = "\u2969", rdquo = "\u201D", rdquor = "\u201D", rdsh = "\u21B3", real = "\u211C", realine = "\u211B", realpart = "\u211C", reals = "\u211D", rect = "\u25AD", re = "\xAE", reg = "\xAE", rfisht = "\u297D", rfloor = "\u230B", rfr = "\u{1D52F}", rhard = "\u21C1", rharu = "\u21C0", rharul = "\u296C", rho = "\u03C1", rhov = "\u03F1", rightarrow = "\u2192", rightarrowtail = "\u21A3", rightharpoondown = "\u21C1", rightharpoonup = "\u21C0", rightleftarrows = "\u21C4", rightleftharpoons = "\u21CC", rightrightarrows = "\u21C9", rightsquigarrow = "\u219D", rightthreetimes = "\u22CC", ring = "\u02DA", risingdotseq = "\u2253", rlarr = "\u21C4", rlhar = "\u21CC", rlm = "\u200F", rmoust = "\u23B1", rmoustache = "\u23B1", rnmid = "\u2AEE", roang = "\u27ED", roarr = "\u21FE", robrk = "\u27E7", ropar = "\u2986", ropf = "\u{1D563}", roplus = "\u2A2E", rotimes = "\u2A35", rpar = ")", rpargt = "\u2994", rppolint = "\u2A12", rrarr = "\u21C9", rsaquo = "\u203A", rscr = "\u{1D4C7}", rsh = "\u21B1", rsqb = "]", rsquo = "\u2019", rsquor = "\u2019", rthree = "\u22CC", rtimes = "\u22CA", rtri = "\u25B9", rtrie = "\u22B5", rtrif = "\u25B8", rtriltri = "\u29CE", ruluhar = "\u2968", rx = "\u211E", sacute = "\u015B", sbquo = "\u201A", sc = "\u227B", scE = "\u2AB4", scap = "\u2AB8", scaron = "\u0161", sccue = "\u227D", sce = "\u2AB0", scedil = "\u015F", scirc = "\u015D", scnE = "\u2AB6", scnap = "\u2ABA", scnsim = "\u22E9", scpolint = "\u2A13", scsim = "\u227F", scy = "\u0441", sdot = "\u22C5", sdotb = "\u22A1", sdote = "\u2A66", seArr = "\u21D8", searhk = "\u2925", searr = "\u2198", searrow = "\u2198", sec = "\xA7", sect = "\xA7", semi = ";", seswar = "\u2929", setminus = "\u2216", setmn = "\u2216", sext = "\u2736", sfr = "\u{1D530}", sfrown = "\u2322", sharp = "\u266F", shchcy = "\u0449", shcy = "\u0448", shortmid = "\u2223", shortparallel = "\u2225", sh = "\xAD", shy = "\xAD", sigma = "\u03C3", sigmaf = "\u03C2", sigmav = "\u03C2", sim = "\u223C", simdot = "\u2A6A", sime = "\u2243", simeq = "\u2243", simg = "\u2A9E", simgE = "\u2AA0", siml = "\u2A9D", simlE = "\u2A9F", simne = "\u2246", simplus = "\u2A24", simrarr = "\u2972", slarr = "\u2190", smallsetminus = "\u2216", smashp = "\u2A33", smeparsl = "\u29E4", smid = "\u2223", smile = "\u2323", smt = "\u2AAA", smte = "\u2AAC", smtes = "\u2AAC\uFE00", softcy = "\u044C", sol = "/", solb = "\u29C4", solbar = "\u233F", sopf = "\u{1D564}", spades = "\u2660", spadesuit = "\u2660", spar = "\u2225", sqcap = "\u2293", sqcaps = "\u2293\uFE00", sqcup = "\u2294", sqcups = "\u2294\uFE00", sqsub = "\u228F", sqsube = "\u2291", sqsubset = "\u228F", sqsubseteq = "\u2291", sqsup = "\u2290", sqsupe = "\u2292", sqsupset = "\u2290", sqsupseteq = "\u2292", squ = "\u25A1", square = "\u25A1", squarf = "\u25AA", squf = "\u25AA", srarr = "\u2192", sscr = "\u{1D4C8}", ssetmn = "\u2216", ssmile = "\u2323", sstarf = "\u22C6", star = "\u2606", starf = "\u2605", straightepsilon = "\u03F5", straightphi = "\u03D5", strns = "\xAF", sub = "\u2282", subE = "\u2AC5", subdot = "\u2ABD", sube = "\u2286", subedot = "\u2AC3", submult = "\u2AC1", subnE = "\u2ACB", subne = "\u228A", subplus = "\u2ABF", subrarr = "\u2979", subset = "\u2282", subseteq = "\u2286", subseteqq = "\u2AC5", subsetneq = "\u228A", subsetneqq = "\u2ACB", subsim = "\u2AC7", subsub = "\u2AD5", subsup = "\u2AD3", succ = "\u227B", succapprox = "\u2AB8", succcurlyeq = "\u227D", succeq = "\u2AB0", succnapprox = "\u2ABA", succneqq = "\u2AB6", succnsim = "\u22E9", succsim = "\u227F", sum = "\u2211", sung = "\u266A", sup = "\u2283", sup1 = "\xB9", sup2 = "\xB2", sup3 = "\xB3", supE = "\u2AC6", supdot = "\u2ABE", supdsub = "\u2AD8", supe = "\u2287", supedot = "\u2AC4", suphsol = "\u27C9", suphsub = "\u2AD7", suplarr = "\u297B", supmult = "\u2AC2", supnE = "\u2ACC", supne = "\u228B", supplus = "\u2AC0", supset = "\u2283", supseteq = "\u2287", supseteqq = "\u2AC6", supsetneq = "\u228B", supsetneqq = "\u2ACC", supsim = "\u2AC8", supsub = "\u2AD4", supsup = "\u2AD6", swArr = "\u21D9", swarhk = "\u2926", swarr = "\u2199", swarrow = "\u2199", swnwar = "\u292A", szli = "\xDF", szlig = "\xDF", target = "\u2316", tau = "\u03C4", tbrk = "\u23B4", tcaron = "\u0165", tcedil = "\u0163", tcy = "\u0442", tdot = "\u20DB", telrec = "\u2315", tfr = "\u{1D531}", there4 = "\u2234", therefore = "\u2234", theta = "\u03B8", thetasym = "\u03D1", thetav = "\u03D1", thickapprox = "\u2248", thicksim = "\u223C", thinsp = "\u2009", thkap = "\u2248", thksim = "\u223C", thor = "\xFE", thorn = "\xFE", tilde = "\u02DC", time = "\xD7", times = "\xD7", timesb = "\u22A0", timesbar = "\u2A31", timesd = "\u2A30", tint = "\u222D", toea = "\u2928", top = "\u22A4", topbot = "\u2336", topcir = "\u2AF1", topf = "\u{1D565}", topfork = "\u2ADA", tosa = "\u2929", tprime = "\u2034", trade = "\u2122", triangle = "\u25B5", triangledown = "\u25BF", triangleleft = "\u25C3", trianglelefteq = "\u22B4", triangleq = "\u225C", triangleright = "\u25B9", trianglerighteq = "\u22B5", tridot = "\u25EC", trie = "\u225C", triminus = "\u2A3A", triplus = "\u2A39", trisb = "\u29CD", tritime = "\u2A3B", trpezium = "\u23E2", tscr = "\u{1D4C9}", tscy = "\u0446", tshcy = "\u045B", tstrok = "\u0167", twixt = "\u226C", twoheadleftarrow = "\u219E", twoheadrightarrow = "\u21A0", uArr = "\u21D1", uHar = "\u2963", uacut = "\xFA", uacute = "\xFA", uarr = "\u2191", ubrcy = "\u045E", ubreve = "\u016D", ucir = "\xFB", ucirc = "\xFB", ucy = "\u0443", udarr = "\u21C5", udblac = "\u0171", udhar = "\u296E", ufisht = "\u297E", ufr = "\u{1D532}", ugrav = "\xF9", ugrave = "\xF9", uharl = "\u21BF", uharr = "\u21BE", uhblk = "\u2580", ulcorn = "\u231C", ulcorner = "\u231C", ulcrop = "\u230F", ultri = "\u25F8", umacr = "\u016B", um = "\xA8", uml = "\xA8", uogon = "\u0173", uopf = "\u{1D566}", uparrow = "\u2191", updownarrow = "\u2195", upharpoonleft = "\u21BF", upharpoonright = "\u21BE", uplus = "\u228E", upsi = "\u03C5", upsih = "\u03D2", upsilon = "\u03C5", upuparrows = "\u21C8", urcorn = "\u231D", urcorner = "\u231D", urcrop = "\u230E", uring = "\u016F", urtri = "\u25F9", uscr = "\u{1D4CA}", utdot = "\u22F0", utilde = "\u0169", utri = "\u25B5", utrif = "\u25B4", uuarr = "\u21C8", uum = "\xFC", uuml = "\xFC", uwangle = "\u29A7", vArr = "\u21D5", vBar = "\u2AE8", vBarv = "\u2AE9", vDash = "\u22A8", vangrt = "\u299C", varepsilon = "\u03F5", varkappa = "\u03F0", varnothing = "\u2205", varphi = "\u03D5", varpi = "\u03D6", varpropto = "\u221D", varr = "\u2195", varrho = "\u03F1", varsigma = "\u03C2", varsubsetneq = "\u228A\uFE00", varsubsetneqq = "\u2ACB\uFE00", varsupsetneq = "\u228B\uFE00", varsupsetneqq = "\u2ACC\uFE00", vartheta = "\u03D1", vartriangleleft = "\u22B2", vartriangleright = "\u22B3", vcy = "\u0432", vdash = "\u22A2", vee = "\u2228", veebar = "\u22BB", veeeq = "\u225A", vellip = "\u22EE", verbar = "|", vert = "|", vfr = "\u{1D533}", vltri = "\u22B2", vnsub = "\u2282\u20D2", vnsup = "\u2283\u20D2", vopf = "\u{1D567}", vprop = "\u221D", vrtri = "\u22B3", vscr = "\u{1D4CB}", vsubnE = "\u2ACB\uFE00", vsubne = "\u228A\uFE00", vsupnE = "\u2ACC\uFE00", vsupne = "\u228B\uFE00", vzigzag = "\u299A", wcirc = "\u0175", wedbar = "\u2A5F", wedge = "\u2227", wedgeq = "\u2259", weierp = "\u2118", wfr = "\u{1D534}", wopf = "\u{1D568}", wp = "\u2118", wr = "\u2240", wreath = "\u2240", wscr = "\u{1D4CC}", xcap = "\u22C2", xcirc = "\u25EF", xcup = "\u22C3", xdtri = "\u25BD", xfr = "\u{1D535}", xhArr = "\u27FA", xharr = "\u27F7", xi = "\u03BE", xlArr = "\u27F8", xlarr = "\u27F5", xmap = "\u27FC", xnis = "\u22FB", xodot = "\u2A00", xopf = "\u{1D569}", xoplus = "\u2A01", xotime = "\u2A02", xrArr = "\u27F9", xrarr = "\u27F6", xscr = "\u{1D4CD}", xsqcup = "\u2A06", xuplus = "\u2A04", xutri = "\u25B3", xvee = "\u22C1", xwedge = "\u22C0", yacut = "\xFD", yacute = "\xFD", yacy = "\u044F", ycirc = "\u0177", ycy = "\u044B", ye = "\xA5", yen = "\xA5", yfr = "\u{1D536}", yicy = "\u0457", yopf = "\u{1D56A}", yscr = "\u{1D4CE}", yucy = "\u044E", yum = "\xFF", yuml = "\xFF", zacute = "\u017A", zcaron = "\u017E", zcy = "\u0437", zdot = "\u017C", zeetrf = "\u2128", zeta = "\u03B6", zfr = "\u{1D537}", zhcy = "\u0436", zigrarr = "\u21DD", zopf = "\u{1D56B}", zscr = "\u{1D4CF}", zwj = "\u200D", zwnj = "\u200C", require$$0 = {
|
|
953
|
+
AEli,
|
|
954
|
+
AElig,
|
|
955
|
+
AM,
|
|
956
|
+
AMP,
|
|
957
|
+
Aacut,
|
|
958
|
+
Aacute,
|
|
959
|
+
Abreve,
|
|
960
|
+
Acir,
|
|
961
|
+
Acirc,
|
|
962
|
+
Acy,
|
|
963
|
+
Afr,
|
|
964
|
+
Agrav,
|
|
965
|
+
Agrave,
|
|
966
|
+
Alpha,
|
|
967
|
+
Amacr,
|
|
968
|
+
And,
|
|
969
|
+
Aogon,
|
|
970
|
+
Aopf,
|
|
971
|
+
ApplyFunction,
|
|
972
|
+
Arin,
|
|
973
|
+
Aring,
|
|
974
|
+
Ascr,
|
|
975
|
+
Assign,
|
|
976
|
+
Atild,
|
|
977
|
+
Atilde,
|
|
978
|
+
Aum,
|
|
979
|
+
Auml,
|
|
980
|
+
Backslash,
|
|
981
|
+
Barv,
|
|
982
|
+
Barwed,
|
|
983
|
+
Bcy,
|
|
984
|
+
Because,
|
|
985
|
+
Bernoullis,
|
|
986
|
+
Beta,
|
|
987
|
+
Bfr,
|
|
988
|
+
Bopf,
|
|
989
|
+
Breve,
|
|
990
|
+
Bscr,
|
|
991
|
+
Bumpeq,
|
|
992
|
+
CHcy,
|
|
993
|
+
COP,
|
|
994
|
+
COPY,
|
|
995
|
+
Cacute,
|
|
996
|
+
Cap,
|
|
997
|
+
CapitalDifferentialD,
|
|
998
|
+
Cayleys,
|
|
999
|
+
Ccaron,
|
|
1000
|
+
Ccedi,
|
|
1001
|
+
Ccedil,
|
|
1002
|
+
Ccirc,
|
|
1003
|
+
Cconint,
|
|
1004
|
+
Cdot,
|
|
1005
|
+
Cedilla,
|
|
1006
|
+
CenterDot,
|
|
1007
|
+
Cfr,
|
|
1008
|
+
Chi,
|
|
1009
|
+
CircleDot,
|
|
1010
|
+
CircleMinus,
|
|
1011
|
+
CirclePlus,
|
|
1012
|
+
CircleTimes,
|
|
1013
|
+
ClockwiseContourIntegral,
|
|
1014
|
+
CloseCurlyDoubleQuote,
|
|
1015
|
+
CloseCurlyQuote,
|
|
1016
|
+
Colon,
|
|
1017
|
+
Colone,
|
|
1018
|
+
Congruent,
|
|
1019
|
+
Conint,
|
|
1020
|
+
ContourIntegral,
|
|
1021
|
+
Copf,
|
|
1022
|
+
Coproduct,
|
|
1023
|
+
CounterClockwiseContourIntegral,
|
|
1024
|
+
Cross,
|
|
1025
|
+
Cscr,
|
|
1026
|
+
Cup,
|
|
1027
|
+
CupCap,
|
|
1028
|
+
DD,
|
|
1029
|
+
DDotrahd,
|
|
1030
|
+
DJcy,
|
|
1031
|
+
DScy,
|
|
1032
|
+
DZcy,
|
|
1033
|
+
Dagger,
|
|
1034
|
+
Darr,
|
|
1035
|
+
Dashv,
|
|
1036
|
+
Dcaron,
|
|
1037
|
+
Dcy,
|
|
1038
|
+
Del,
|
|
1039
|
+
Delta,
|
|
1040
|
+
Dfr,
|
|
1041
|
+
DiacriticalAcute,
|
|
1042
|
+
DiacriticalDot,
|
|
1043
|
+
DiacriticalDoubleAcute,
|
|
1044
|
+
DiacriticalGrave,
|
|
1045
|
+
DiacriticalTilde,
|
|
1046
|
+
Diamond,
|
|
1047
|
+
DifferentialD,
|
|
1048
|
+
Dopf,
|
|
1049
|
+
Dot,
|
|
1050
|
+
DotDot,
|
|
1051
|
+
DotEqual,
|
|
1052
|
+
DoubleContourIntegral,
|
|
1053
|
+
DoubleDot,
|
|
1054
|
+
DoubleDownArrow,
|
|
1055
|
+
DoubleLeftArrow,
|
|
1056
|
+
DoubleLeftRightArrow,
|
|
1057
|
+
DoubleLeftTee,
|
|
1058
|
+
DoubleLongLeftArrow,
|
|
1059
|
+
DoubleLongLeftRightArrow,
|
|
1060
|
+
DoubleLongRightArrow,
|
|
1061
|
+
DoubleRightArrow,
|
|
1062
|
+
DoubleRightTee,
|
|
1063
|
+
DoubleUpArrow,
|
|
1064
|
+
DoubleUpDownArrow,
|
|
1065
|
+
DoubleVerticalBar,
|
|
1066
|
+
DownArrow,
|
|
1067
|
+
DownArrowBar,
|
|
1068
|
+
DownArrowUpArrow,
|
|
1069
|
+
DownBreve,
|
|
1070
|
+
DownLeftRightVector,
|
|
1071
|
+
DownLeftTeeVector,
|
|
1072
|
+
DownLeftVector,
|
|
1073
|
+
DownLeftVectorBar,
|
|
1074
|
+
DownRightTeeVector,
|
|
1075
|
+
DownRightVector,
|
|
1076
|
+
DownRightVectorBar,
|
|
1077
|
+
DownTee,
|
|
1078
|
+
DownTeeArrow,
|
|
1079
|
+
Downarrow,
|
|
1080
|
+
Dscr,
|
|
1081
|
+
Dstrok,
|
|
1082
|
+
ENG,
|
|
1083
|
+
ET,
|
|
1084
|
+
ETH,
|
|
1085
|
+
Eacut,
|
|
1086
|
+
Eacute,
|
|
1087
|
+
Ecaron,
|
|
1088
|
+
Ecir,
|
|
1089
|
+
Ecirc,
|
|
1090
|
+
Ecy,
|
|
1091
|
+
Edot,
|
|
1092
|
+
Efr,
|
|
1093
|
+
Egrav,
|
|
1094
|
+
Egrave,
|
|
1095
|
+
Element,
|
|
1096
|
+
Emacr,
|
|
1097
|
+
EmptySmallSquare,
|
|
1098
|
+
EmptyVerySmallSquare,
|
|
1099
|
+
Eogon,
|
|
1100
|
+
Eopf,
|
|
1101
|
+
Epsilon,
|
|
1102
|
+
Equal,
|
|
1103
|
+
EqualTilde,
|
|
1104
|
+
Equilibrium,
|
|
1105
|
+
Escr,
|
|
1106
|
+
Esim,
|
|
1107
|
+
Eta,
|
|
1108
|
+
Eum,
|
|
1109
|
+
Euml,
|
|
1110
|
+
Exists,
|
|
1111
|
+
ExponentialE,
|
|
1112
|
+
Fcy,
|
|
1113
|
+
Ffr,
|
|
1114
|
+
FilledSmallSquare,
|
|
1115
|
+
FilledVerySmallSquare,
|
|
1116
|
+
Fopf,
|
|
1117
|
+
ForAll,
|
|
1118
|
+
Fouriertrf,
|
|
1119
|
+
Fscr,
|
|
1120
|
+
GJcy,
|
|
1121
|
+
G,
|
|
1122
|
+
GT,
|
|
1123
|
+
Gamma,
|
|
1124
|
+
Gammad,
|
|
1125
|
+
Gbreve,
|
|
1126
|
+
Gcedil,
|
|
1127
|
+
Gcirc,
|
|
1128
|
+
Gcy,
|
|
1129
|
+
Gdot,
|
|
1130
|
+
Gfr,
|
|
1131
|
+
Gg,
|
|
1132
|
+
Gopf,
|
|
1133
|
+
GreaterEqual,
|
|
1134
|
+
GreaterEqualLess,
|
|
1135
|
+
GreaterFullEqual,
|
|
1136
|
+
GreaterGreater,
|
|
1137
|
+
GreaterLess,
|
|
1138
|
+
GreaterSlantEqual,
|
|
1139
|
+
GreaterTilde,
|
|
1140
|
+
Gscr,
|
|
1141
|
+
Gt,
|
|
1142
|
+
HARDcy,
|
|
1143
|
+
Hacek,
|
|
1144
|
+
Hat,
|
|
1145
|
+
Hcirc,
|
|
1146
|
+
Hfr,
|
|
1147
|
+
HilbertSpace,
|
|
1148
|
+
Hopf,
|
|
1149
|
+
HorizontalLine,
|
|
1150
|
+
Hscr,
|
|
1151
|
+
Hstrok,
|
|
1152
|
+
HumpDownHump,
|
|
1153
|
+
HumpEqual,
|
|
1154
|
+
IEcy,
|
|
1155
|
+
IJlig,
|
|
1156
|
+
IOcy,
|
|
1157
|
+
Iacut,
|
|
1158
|
+
Iacute,
|
|
1159
|
+
Icir,
|
|
1160
|
+
Icirc,
|
|
1161
|
+
Icy,
|
|
1162
|
+
Idot,
|
|
1163
|
+
Ifr,
|
|
1164
|
+
Igrav,
|
|
1165
|
+
Igrave,
|
|
1166
|
+
Im,
|
|
1167
|
+
Imacr,
|
|
1168
|
+
ImaginaryI,
|
|
1169
|
+
Implies,
|
|
1170
|
+
Int,
|
|
1171
|
+
Integral,
|
|
1172
|
+
Intersection,
|
|
1173
|
+
InvisibleComma,
|
|
1174
|
+
InvisibleTimes,
|
|
1175
|
+
Iogon,
|
|
1176
|
+
Iopf,
|
|
1177
|
+
Iota,
|
|
1178
|
+
Iscr,
|
|
1179
|
+
Itilde,
|
|
1180
|
+
Iukcy,
|
|
1181
|
+
Ium,
|
|
1182
|
+
Iuml,
|
|
1183
|
+
Jcirc,
|
|
1184
|
+
Jcy,
|
|
1185
|
+
Jfr,
|
|
1186
|
+
Jopf,
|
|
1187
|
+
Jscr,
|
|
1188
|
+
Jsercy,
|
|
1189
|
+
Jukcy,
|
|
1190
|
+
KHcy,
|
|
1191
|
+
KJcy,
|
|
1192
|
+
Kappa,
|
|
1193
|
+
Kcedil,
|
|
1194
|
+
Kcy,
|
|
1195
|
+
Kfr,
|
|
1196
|
+
Kopf,
|
|
1197
|
+
Kscr,
|
|
1198
|
+
LJcy,
|
|
1199
|
+
L,
|
|
1200
|
+
LT,
|
|
1201
|
+
Lacute,
|
|
1202
|
+
Lambda,
|
|
1203
|
+
Lang,
|
|
1204
|
+
Laplacetrf,
|
|
1205
|
+
Larr,
|
|
1206
|
+
Lcaron,
|
|
1207
|
+
Lcedil,
|
|
1208
|
+
Lcy,
|
|
1209
|
+
LeftAngleBracket,
|
|
1210
|
+
LeftArrow,
|
|
1211
|
+
LeftArrowBar,
|
|
1212
|
+
LeftArrowRightArrow,
|
|
1213
|
+
LeftCeiling,
|
|
1214
|
+
LeftDoubleBracket,
|
|
1215
|
+
LeftDownTeeVector,
|
|
1216
|
+
LeftDownVector,
|
|
1217
|
+
LeftDownVectorBar,
|
|
1218
|
+
LeftFloor,
|
|
1219
|
+
LeftRightArrow,
|
|
1220
|
+
LeftRightVector,
|
|
1221
|
+
LeftTee,
|
|
1222
|
+
LeftTeeArrow,
|
|
1223
|
+
LeftTeeVector,
|
|
1224
|
+
LeftTriangle,
|
|
1225
|
+
LeftTriangleBar,
|
|
1226
|
+
LeftTriangleEqual,
|
|
1227
|
+
LeftUpDownVector,
|
|
1228
|
+
LeftUpTeeVector,
|
|
1229
|
+
LeftUpVector,
|
|
1230
|
+
LeftUpVectorBar,
|
|
1231
|
+
LeftVector,
|
|
1232
|
+
LeftVectorBar,
|
|
1233
|
+
Leftarrow,
|
|
1234
|
+
Leftrightarrow,
|
|
1235
|
+
LessEqualGreater,
|
|
1236
|
+
LessFullEqual,
|
|
1237
|
+
LessGreater,
|
|
1238
|
+
LessLess,
|
|
1239
|
+
LessSlantEqual,
|
|
1240
|
+
LessTilde,
|
|
1241
|
+
Lfr,
|
|
1242
|
+
Ll,
|
|
1243
|
+
Lleftarrow,
|
|
1244
|
+
Lmidot,
|
|
1245
|
+
LongLeftArrow,
|
|
1246
|
+
LongLeftRightArrow,
|
|
1247
|
+
LongRightArrow,
|
|
1248
|
+
Longleftarrow,
|
|
1249
|
+
Longleftrightarrow,
|
|
1250
|
+
Longrightarrow,
|
|
1251
|
+
Lopf,
|
|
1252
|
+
LowerLeftArrow,
|
|
1253
|
+
LowerRightArrow,
|
|
1254
|
+
Lscr,
|
|
1255
|
+
Lsh,
|
|
1256
|
+
Lstrok,
|
|
1257
|
+
Lt,
|
|
1258
|
+
Map: "\u2905",
|
|
1259
|
+
Mcy,
|
|
1260
|
+
MediumSpace,
|
|
1261
|
+
Mellintrf,
|
|
1262
|
+
Mfr,
|
|
1263
|
+
MinusPlus,
|
|
1264
|
+
Mopf,
|
|
1265
|
+
Mscr,
|
|
1266
|
+
Mu,
|
|
1267
|
+
NJcy,
|
|
1268
|
+
Nacute,
|
|
1269
|
+
Ncaron,
|
|
1270
|
+
Ncedil,
|
|
1271
|
+
Ncy,
|
|
1272
|
+
NegativeMediumSpace,
|
|
1273
|
+
NegativeThickSpace,
|
|
1274
|
+
NegativeThinSpace,
|
|
1275
|
+
NegativeVeryThinSpace,
|
|
1276
|
+
NestedGreaterGreater,
|
|
1277
|
+
NestedLessLess,
|
|
1278
|
+
NewLine,
|
|
1279
|
+
Nfr,
|
|
1280
|
+
NoBreak,
|
|
1281
|
+
NonBreakingSpace,
|
|
1282
|
+
Nopf,
|
|
1283
|
+
Not,
|
|
1284
|
+
NotCongruent,
|
|
1285
|
+
NotCupCap,
|
|
1286
|
+
NotDoubleVerticalBar,
|
|
1287
|
+
NotElement,
|
|
1288
|
+
NotEqual,
|
|
1289
|
+
NotEqualTilde,
|
|
1290
|
+
NotExists,
|
|
1291
|
+
NotGreater,
|
|
1292
|
+
NotGreaterEqual,
|
|
1293
|
+
NotGreaterFullEqual,
|
|
1294
|
+
NotGreaterGreater,
|
|
1295
|
+
NotGreaterLess,
|
|
1296
|
+
NotGreaterSlantEqual,
|
|
1297
|
+
NotGreaterTilde,
|
|
1298
|
+
NotHumpDownHump,
|
|
1299
|
+
NotHumpEqual,
|
|
1300
|
+
NotLeftTriangle,
|
|
1301
|
+
NotLeftTriangleBar,
|
|
1302
|
+
NotLeftTriangleEqual,
|
|
1303
|
+
NotLess,
|
|
1304
|
+
NotLessEqual,
|
|
1305
|
+
NotLessGreater,
|
|
1306
|
+
NotLessLess,
|
|
1307
|
+
NotLessSlantEqual,
|
|
1308
|
+
NotLessTilde,
|
|
1309
|
+
NotNestedGreaterGreater,
|
|
1310
|
+
NotNestedLessLess,
|
|
1311
|
+
NotPrecedes,
|
|
1312
|
+
NotPrecedesEqual,
|
|
1313
|
+
NotPrecedesSlantEqual,
|
|
1314
|
+
NotReverseElement,
|
|
1315
|
+
NotRightTriangle,
|
|
1316
|
+
NotRightTriangleBar,
|
|
1317
|
+
NotRightTriangleEqual,
|
|
1318
|
+
NotSquareSubset,
|
|
1319
|
+
NotSquareSubsetEqual,
|
|
1320
|
+
NotSquareSuperset,
|
|
1321
|
+
NotSquareSupersetEqual,
|
|
1322
|
+
NotSubset,
|
|
1323
|
+
NotSubsetEqual,
|
|
1324
|
+
NotSucceeds,
|
|
1325
|
+
NotSucceedsEqual,
|
|
1326
|
+
NotSucceedsSlantEqual,
|
|
1327
|
+
NotSucceedsTilde,
|
|
1328
|
+
NotSuperset,
|
|
1329
|
+
NotSupersetEqual,
|
|
1330
|
+
NotTilde,
|
|
1331
|
+
NotTildeEqual,
|
|
1332
|
+
NotTildeFullEqual,
|
|
1333
|
+
NotTildeTilde,
|
|
1334
|
+
NotVerticalBar,
|
|
1335
|
+
Nscr,
|
|
1336
|
+
Ntild,
|
|
1337
|
+
Ntilde,
|
|
1338
|
+
Nu,
|
|
1339
|
+
OElig,
|
|
1340
|
+
Oacut,
|
|
1341
|
+
Oacute,
|
|
1342
|
+
Ocir,
|
|
1343
|
+
Ocirc,
|
|
1344
|
+
Ocy,
|
|
1345
|
+
Odblac,
|
|
1346
|
+
Ofr,
|
|
1347
|
+
Ograv,
|
|
1348
|
+
Ograve,
|
|
1349
|
+
Omacr,
|
|
1350
|
+
Omega,
|
|
1351
|
+
Omicron,
|
|
1352
|
+
Oopf,
|
|
1353
|
+
OpenCurlyDoubleQuote,
|
|
1354
|
+
OpenCurlyQuote,
|
|
1355
|
+
Or,
|
|
1356
|
+
Oscr,
|
|
1357
|
+
Oslas,
|
|
1358
|
+
Oslash,
|
|
1359
|
+
Otild,
|
|
1360
|
+
Otilde,
|
|
1361
|
+
Otimes,
|
|
1362
|
+
Oum,
|
|
1363
|
+
Ouml,
|
|
1364
|
+
OverBar,
|
|
1365
|
+
OverBrace,
|
|
1366
|
+
OverBracket,
|
|
1367
|
+
OverParenthesis,
|
|
1368
|
+
PartialD,
|
|
1369
|
+
Pcy,
|
|
1370
|
+
Pfr,
|
|
1371
|
+
Phi,
|
|
1372
|
+
Pi,
|
|
1373
|
+
PlusMinus,
|
|
1374
|
+
Poincareplane,
|
|
1375
|
+
Popf,
|
|
1376
|
+
Pr,
|
|
1377
|
+
Precedes,
|
|
1378
|
+
PrecedesEqual,
|
|
1379
|
+
PrecedesSlantEqual,
|
|
1380
|
+
PrecedesTilde,
|
|
1381
|
+
Prime,
|
|
1382
|
+
Product,
|
|
1383
|
+
Proportion,
|
|
1384
|
+
Proportional,
|
|
1385
|
+
Pscr,
|
|
1386
|
+
Psi,
|
|
1387
|
+
QUO,
|
|
1388
|
+
QUOT,
|
|
1389
|
+
Qfr,
|
|
1390
|
+
Qopf,
|
|
1391
|
+
Qscr,
|
|
1392
|
+
RBarr,
|
|
1393
|
+
RE,
|
|
1394
|
+
REG,
|
|
1395
|
+
Racute,
|
|
1396
|
+
Rang,
|
|
1397
|
+
Rarr,
|
|
1398
|
+
Rarrtl,
|
|
1399
|
+
Rcaron,
|
|
1400
|
+
Rcedil,
|
|
1401
|
+
Rcy,
|
|
1402
|
+
Re,
|
|
1403
|
+
ReverseElement,
|
|
1404
|
+
ReverseEquilibrium,
|
|
1405
|
+
ReverseUpEquilibrium,
|
|
1406
|
+
Rfr,
|
|
1407
|
+
Rho,
|
|
1408
|
+
RightAngleBracket,
|
|
1409
|
+
RightArrow,
|
|
1410
|
+
RightArrowBar,
|
|
1411
|
+
RightArrowLeftArrow,
|
|
1412
|
+
RightCeiling,
|
|
1413
|
+
RightDoubleBracket,
|
|
1414
|
+
RightDownTeeVector,
|
|
1415
|
+
RightDownVector,
|
|
1416
|
+
RightDownVectorBar,
|
|
1417
|
+
RightFloor,
|
|
1418
|
+
RightTee,
|
|
1419
|
+
RightTeeArrow,
|
|
1420
|
+
RightTeeVector,
|
|
1421
|
+
RightTriangle,
|
|
1422
|
+
RightTriangleBar,
|
|
1423
|
+
RightTriangleEqual,
|
|
1424
|
+
RightUpDownVector,
|
|
1425
|
+
RightUpTeeVector,
|
|
1426
|
+
RightUpVector,
|
|
1427
|
+
RightUpVectorBar,
|
|
1428
|
+
RightVector,
|
|
1429
|
+
RightVectorBar,
|
|
1430
|
+
Rightarrow,
|
|
1431
|
+
Ropf,
|
|
1432
|
+
RoundImplies,
|
|
1433
|
+
Rrightarrow,
|
|
1434
|
+
Rscr,
|
|
1435
|
+
Rsh,
|
|
1436
|
+
RuleDelayed,
|
|
1437
|
+
SHCHcy,
|
|
1438
|
+
SHcy,
|
|
1439
|
+
SOFTcy,
|
|
1440
|
+
Sacute,
|
|
1441
|
+
Sc,
|
|
1442
|
+
Scaron,
|
|
1443
|
+
Scedil,
|
|
1444
|
+
Scirc,
|
|
1445
|
+
Scy,
|
|
1446
|
+
Sfr,
|
|
1447
|
+
ShortDownArrow,
|
|
1448
|
+
ShortLeftArrow,
|
|
1449
|
+
ShortRightArrow,
|
|
1450
|
+
ShortUpArrow,
|
|
1451
|
+
Sigma,
|
|
1452
|
+
SmallCircle,
|
|
1453
|
+
Sopf,
|
|
1454
|
+
Sqrt,
|
|
1455
|
+
Square,
|
|
1456
|
+
SquareIntersection,
|
|
1457
|
+
SquareSubset,
|
|
1458
|
+
SquareSubsetEqual,
|
|
1459
|
+
SquareSuperset,
|
|
1460
|
+
SquareSupersetEqual,
|
|
1461
|
+
SquareUnion,
|
|
1462
|
+
Sscr,
|
|
1463
|
+
Star,
|
|
1464
|
+
Sub,
|
|
1465
|
+
Subset,
|
|
1466
|
+
SubsetEqual,
|
|
1467
|
+
Succeeds,
|
|
1468
|
+
SucceedsEqual,
|
|
1469
|
+
SucceedsSlantEqual,
|
|
1470
|
+
SucceedsTilde,
|
|
1471
|
+
SuchThat,
|
|
1472
|
+
Sum,
|
|
1473
|
+
Sup,
|
|
1474
|
+
Superset,
|
|
1475
|
+
SupersetEqual,
|
|
1476
|
+
Supset,
|
|
1477
|
+
THOR,
|
|
1478
|
+
THORN,
|
|
1479
|
+
TRADE,
|
|
1480
|
+
TSHcy,
|
|
1481
|
+
TScy,
|
|
1482
|
+
Tab,
|
|
1483
|
+
Tau,
|
|
1484
|
+
Tcaron,
|
|
1485
|
+
Tcedil,
|
|
1486
|
+
Tcy,
|
|
1487
|
+
Tfr,
|
|
1488
|
+
Therefore,
|
|
1489
|
+
Theta,
|
|
1490
|
+
ThickSpace,
|
|
1491
|
+
ThinSpace,
|
|
1492
|
+
Tilde,
|
|
1493
|
+
TildeEqual,
|
|
1494
|
+
TildeFullEqual,
|
|
1495
|
+
TildeTilde,
|
|
1496
|
+
Topf,
|
|
1497
|
+
TripleDot,
|
|
1498
|
+
Tscr,
|
|
1499
|
+
Tstrok,
|
|
1500
|
+
Uacut,
|
|
1501
|
+
Uacute,
|
|
1502
|
+
Uarr,
|
|
1503
|
+
Uarrocir,
|
|
1504
|
+
Ubrcy,
|
|
1505
|
+
Ubreve,
|
|
1506
|
+
Ucir,
|
|
1507
|
+
Ucirc,
|
|
1508
|
+
Ucy,
|
|
1509
|
+
Udblac,
|
|
1510
|
+
Ufr,
|
|
1511
|
+
Ugrav,
|
|
1512
|
+
Ugrave,
|
|
1513
|
+
Umacr,
|
|
1514
|
+
UnderBar,
|
|
1515
|
+
UnderBrace,
|
|
1516
|
+
UnderBracket,
|
|
1517
|
+
UnderParenthesis,
|
|
1518
|
+
Union,
|
|
1519
|
+
UnionPlus,
|
|
1520
|
+
Uogon,
|
|
1521
|
+
Uopf,
|
|
1522
|
+
UpArrow,
|
|
1523
|
+
UpArrowBar,
|
|
1524
|
+
UpArrowDownArrow,
|
|
1525
|
+
UpDownArrow,
|
|
1526
|
+
UpEquilibrium,
|
|
1527
|
+
UpTee,
|
|
1528
|
+
UpTeeArrow,
|
|
1529
|
+
Uparrow,
|
|
1530
|
+
Updownarrow,
|
|
1531
|
+
UpperLeftArrow,
|
|
1532
|
+
UpperRightArrow,
|
|
1533
|
+
Upsi,
|
|
1534
|
+
Upsilon,
|
|
1535
|
+
Uring,
|
|
1536
|
+
Uscr,
|
|
1537
|
+
Utilde,
|
|
1538
|
+
Uum,
|
|
1539
|
+
Uuml,
|
|
1540
|
+
VDash,
|
|
1541
|
+
Vbar,
|
|
1542
|
+
Vcy,
|
|
1543
|
+
Vdash,
|
|
1544
|
+
Vdashl,
|
|
1545
|
+
Vee,
|
|
1546
|
+
Verbar,
|
|
1547
|
+
Vert,
|
|
1548
|
+
VerticalBar,
|
|
1549
|
+
VerticalLine,
|
|
1550
|
+
VerticalSeparator,
|
|
1551
|
+
VerticalTilde,
|
|
1552
|
+
VeryThinSpace,
|
|
1553
|
+
Vfr,
|
|
1554
|
+
Vopf,
|
|
1555
|
+
Vscr,
|
|
1556
|
+
Vvdash,
|
|
1557
|
+
Wcirc,
|
|
1558
|
+
Wedge,
|
|
1559
|
+
Wfr,
|
|
1560
|
+
Wopf,
|
|
1561
|
+
Wscr,
|
|
1562
|
+
Xfr,
|
|
1563
|
+
Xi,
|
|
1564
|
+
Xopf,
|
|
1565
|
+
Xscr,
|
|
1566
|
+
YAcy,
|
|
1567
|
+
YIcy,
|
|
1568
|
+
YUcy,
|
|
1569
|
+
Yacut,
|
|
1570
|
+
Yacute,
|
|
1571
|
+
Ycirc,
|
|
1572
|
+
Ycy,
|
|
1573
|
+
Yfr,
|
|
1574
|
+
Yopf,
|
|
1575
|
+
Yscr,
|
|
1576
|
+
Yuml,
|
|
1577
|
+
ZHcy,
|
|
1578
|
+
Zacute,
|
|
1579
|
+
Zcaron,
|
|
1580
|
+
Zcy,
|
|
1581
|
+
Zdot,
|
|
1582
|
+
ZeroWidthSpace,
|
|
1583
|
+
Zeta,
|
|
1584
|
+
Zfr,
|
|
1585
|
+
Zopf,
|
|
1586
|
+
Zscr,
|
|
1587
|
+
aacut,
|
|
1588
|
+
aacute,
|
|
1589
|
+
abreve,
|
|
1590
|
+
ac,
|
|
1591
|
+
acE,
|
|
1592
|
+
acd,
|
|
1593
|
+
acir,
|
|
1594
|
+
acirc,
|
|
1595
|
+
acut,
|
|
1596
|
+
acute,
|
|
1597
|
+
acy,
|
|
1598
|
+
aeli,
|
|
1599
|
+
aelig,
|
|
1600
|
+
af,
|
|
1601
|
+
afr,
|
|
1602
|
+
agrav,
|
|
1603
|
+
agrave,
|
|
1604
|
+
alefsym,
|
|
1605
|
+
aleph,
|
|
1606
|
+
alpha,
|
|
1607
|
+
amacr,
|
|
1608
|
+
amalg,
|
|
1609
|
+
am,
|
|
1610
|
+
amp,
|
|
1611
|
+
and,
|
|
1612
|
+
andand,
|
|
1613
|
+
andd,
|
|
1614
|
+
andslope,
|
|
1615
|
+
andv,
|
|
1616
|
+
ang,
|
|
1617
|
+
ange,
|
|
1618
|
+
angle,
|
|
1619
|
+
angmsd,
|
|
1620
|
+
angmsdaa,
|
|
1621
|
+
angmsdab,
|
|
1622
|
+
angmsdac,
|
|
1623
|
+
angmsdad,
|
|
1624
|
+
angmsdae,
|
|
1625
|
+
angmsdaf,
|
|
1626
|
+
angmsdag,
|
|
1627
|
+
angmsdah,
|
|
1628
|
+
angrt,
|
|
1629
|
+
angrtvb,
|
|
1630
|
+
angrtvbd,
|
|
1631
|
+
angsph,
|
|
1632
|
+
angst,
|
|
1633
|
+
angzarr,
|
|
1634
|
+
aogon,
|
|
1635
|
+
aopf,
|
|
1636
|
+
ap,
|
|
1637
|
+
apE,
|
|
1638
|
+
apacir,
|
|
1639
|
+
ape,
|
|
1640
|
+
apid,
|
|
1641
|
+
apos,
|
|
1642
|
+
approx,
|
|
1643
|
+
approxeq,
|
|
1644
|
+
arin,
|
|
1645
|
+
aring,
|
|
1646
|
+
ascr,
|
|
1647
|
+
ast,
|
|
1648
|
+
asymp,
|
|
1649
|
+
asympeq,
|
|
1650
|
+
atild,
|
|
1651
|
+
atilde,
|
|
1652
|
+
aum,
|
|
1653
|
+
auml,
|
|
1654
|
+
awconint,
|
|
1655
|
+
awint,
|
|
1656
|
+
bNot,
|
|
1657
|
+
backcong,
|
|
1658
|
+
backepsilon,
|
|
1659
|
+
backprime,
|
|
1660
|
+
backsim,
|
|
1661
|
+
backsimeq,
|
|
1662
|
+
barvee,
|
|
1663
|
+
barwed,
|
|
1664
|
+
barwedge,
|
|
1665
|
+
bbrk,
|
|
1666
|
+
bbrktbrk,
|
|
1667
|
+
bcong,
|
|
1668
|
+
bcy,
|
|
1669
|
+
bdquo,
|
|
1670
|
+
becaus,
|
|
1671
|
+
because,
|
|
1672
|
+
bemptyv,
|
|
1673
|
+
bepsi,
|
|
1674
|
+
bernou,
|
|
1675
|
+
beta,
|
|
1676
|
+
beth,
|
|
1677
|
+
between,
|
|
1678
|
+
bfr,
|
|
1679
|
+
bigcap,
|
|
1680
|
+
bigcirc,
|
|
1681
|
+
bigcup,
|
|
1682
|
+
bigodot,
|
|
1683
|
+
bigoplus,
|
|
1684
|
+
bigotimes,
|
|
1685
|
+
bigsqcup,
|
|
1686
|
+
bigstar,
|
|
1687
|
+
bigtriangledown,
|
|
1688
|
+
bigtriangleup,
|
|
1689
|
+
biguplus,
|
|
1690
|
+
bigvee,
|
|
1691
|
+
bigwedge,
|
|
1692
|
+
bkarow,
|
|
1693
|
+
blacklozenge,
|
|
1694
|
+
blacksquare,
|
|
1695
|
+
blacktriangle,
|
|
1696
|
+
blacktriangledown,
|
|
1697
|
+
blacktriangleleft,
|
|
1698
|
+
blacktriangleright,
|
|
1699
|
+
blank,
|
|
1700
|
+
blk12,
|
|
1701
|
+
blk14,
|
|
1702
|
+
blk34,
|
|
1703
|
+
block,
|
|
1704
|
+
bne,
|
|
1705
|
+
bnequiv,
|
|
1706
|
+
bnot,
|
|
1707
|
+
bopf,
|
|
1708
|
+
bot,
|
|
1709
|
+
bottom,
|
|
1710
|
+
bowtie,
|
|
1711
|
+
boxDL,
|
|
1712
|
+
boxDR,
|
|
1713
|
+
boxDl,
|
|
1714
|
+
boxDr,
|
|
1715
|
+
boxH,
|
|
1716
|
+
boxHD,
|
|
1717
|
+
boxHU,
|
|
1718
|
+
boxHd,
|
|
1719
|
+
boxHu,
|
|
1720
|
+
boxUL,
|
|
1721
|
+
boxUR,
|
|
1722
|
+
boxUl,
|
|
1723
|
+
boxUr,
|
|
1724
|
+
boxV,
|
|
1725
|
+
boxVH,
|
|
1726
|
+
boxVL,
|
|
1727
|
+
boxVR,
|
|
1728
|
+
boxVh,
|
|
1729
|
+
boxVl,
|
|
1730
|
+
boxVr,
|
|
1731
|
+
boxbox,
|
|
1732
|
+
boxdL,
|
|
1733
|
+
boxdR,
|
|
1734
|
+
boxdl,
|
|
1735
|
+
boxdr,
|
|
1736
|
+
boxh,
|
|
1737
|
+
boxhD,
|
|
1738
|
+
boxhU,
|
|
1739
|
+
boxhd,
|
|
1740
|
+
boxhu,
|
|
1741
|
+
boxminus,
|
|
1742
|
+
boxplus,
|
|
1743
|
+
boxtimes,
|
|
1744
|
+
boxuL,
|
|
1745
|
+
boxuR,
|
|
1746
|
+
boxul,
|
|
1747
|
+
boxur,
|
|
1748
|
+
boxv,
|
|
1749
|
+
boxvH,
|
|
1750
|
+
boxvL,
|
|
1751
|
+
boxvR,
|
|
1752
|
+
boxvh,
|
|
1753
|
+
boxvl,
|
|
1754
|
+
boxvr,
|
|
1755
|
+
bprime,
|
|
1756
|
+
breve,
|
|
1757
|
+
brvba,
|
|
1758
|
+
brvbar,
|
|
1759
|
+
bscr,
|
|
1760
|
+
bsemi,
|
|
1761
|
+
bsim,
|
|
1762
|
+
bsime,
|
|
1763
|
+
bsol,
|
|
1764
|
+
bsolb,
|
|
1765
|
+
bsolhsub,
|
|
1766
|
+
bull,
|
|
1767
|
+
bullet,
|
|
1768
|
+
bump,
|
|
1769
|
+
bumpE,
|
|
1770
|
+
bumpe,
|
|
1771
|
+
bumpeq,
|
|
1772
|
+
cacute,
|
|
1773
|
+
cap,
|
|
1774
|
+
capand,
|
|
1775
|
+
capbrcup,
|
|
1776
|
+
capcap,
|
|
1777
|
+
capcup,
|
|
1778
|
+
capdot,
|
|
1779
|
+
caps,
|
|
1780
|
+
caret,
|
|
1781
|
+
caron,
|
|
1782
|
+
ccaps,
|
|
1783
|
+
ccaron,
|
|
1784
|
+
ccedi,
|
|
1785
|
+
ccedil,
|
|
1786
|
+
ccirc,
|
|
1787
|
+
ccups,
|
|
1788
|
+
ccupssm,
|
|
1789
|
+
cdot,
|
|
1790
|
+
cedi,
|
|
1791
|
+
cedil,
|
|
1792
|
+
cemptyv,
|
|
1793
|
+
cen,
|
|
1794
|
+
cent,
|
|
1795
|
+
centerdot,
|
|
1796
|
+
cfr,
|
|
1797
|
+
chcy,
|
|
1798
|
+
check,
|
|
1799
|
+
checkmark,
|
|
1800
|
+
chi,
|
|
1801
|
+
cir,
|
|
1802
|
+
cirE,
|
|
1803
|
+
circ,
|
|
1804
|
+
circeq,
|
|
1805
|
+
circlearrowleft,
|
|
1806
|
+
circlearrowright,
|
|
1807
|
+
circledR,
|
|
1808
|
+
circledS,
|
|
1809
|
+
circledast,
|
|
1810
|
+
circledcirc,
|
|
1811
|
+
circleddash,
|
|
1812
|
+
cire,
|
|
1813
|
+
cirfnint,
|
|
1814
|
+
cirmid,
|
|
1815
|
+
cirscir,
|
|
1816
|
+
clubs,
|
|
1817
|
+
clubsuit,
|
|
1818
|
+
colon,
|
|
1819
|
+
colone,
|
|
1820
|
+
coloneq,
|
|
1821
|
+
comma,
|
|
1822
|
+
commat,
|
|
1823
|
+
comp,
|
|
1824
|
+
compfn,
|
|
1825
|
+
complement,
|
|
1826
|
+
complexes,
|
|
1827
|
+
cong,
|
|
1828
|
+
congdot,
|
|
1829
|
+
conint,
|
|
1830
|
+
copf,
|
|
1831
|
+
coprod,
|
|
1832
|
+
cop,
|
|
1833
|
+
copy,
|
|
1834
|
+
copysr,
|
|
1835
|
+
crarr,
|
|
1836
|
+
cross,
|
|
1837
|
+
cscr,
|
|
1838
|
+
csub,
|
|
1839
|
+
csube,
|
|
1840
|
+
csup,
|
|
1841
|
+
csupe,
|
|
1842
|
+
ctdot,
|
|
1843
|
+
cudarrl,
|
|
1844
|
+
cudarrr,
|
|
1845
|
+
cuepr,
|
|
1846
|
+
cuesc,
|
|
1847
|
+
cularr,
|
|
1848
|
+
cularrp,
|
|
1849
|
+
cup,
|
|
1850
|
+
cupbrcap,
|
|
1851
|
+
cupcap,
|
|
1852
|
+
cupcup,
|
|
1853
|
+
cupdot,
|
|
1854
|
+
cupor,
|
|
1855
|
+
cups,
|
|
1856
|
+
curarr,
|
|
1857
|
+
curarrm,
|
|
1858
|
+
curlyeqprec,
|
|
1859
|
+
curlyeqsucc,
|
|
1860
|
+
curlyvee,
|
|
1861
|
+
curlywedge,
|
|
1862
|
+
curre,
|
|
1863
|
+
curren,
|
|
1864
|
+
curvearrowleft,
|
|
1865
|
+
curvearrowright,
|
|
1866
|
+
cuvee,
|
|
1867
|
+
cuwed,
|
|
1868
|
+
cwconint,
|
|
1869
|
+
cwint,
|
|
1870
|
+
cylcty,
|
|
1871
|
+
dArr,
|
|
1872
|
+
dHar,
|
|
1873
|
+
dagger,
|
|
1874
|
+
daleth,
|
|
1875
|
+
darr,
|
|
1876
|
+
dash,
|
|
1877
|
+
dashv,
|
|
1878
|
+
dbkarow,
|
|
1879
|
+
dblac,
|
|
1880
|
+
dcaron,
|
|
1881
|
+
dcy,
|
|
1882
|
+
dd,
|
|
1883
|
+
ddagger,
|
|
1884
|
+
ddarr,
|
|
1885
|
+
ddotseq,
|
|
1886
|
+
de,
|
|
1887
|
+
deg,
|
|
1888
|
+
delta,
|
|
1889
|
+
demptyv,
|
|
1890
|
+
dfisht,
|
|
1891
|
+
dfr,
|
|
1892
|
+
dharl,
|
|
1893
|
+
dharr,
|
|
1894
|
+
diam,
|
|
1895
|
+
diamond,
|
|
1896
|
+
diamondsuit,
|
|
1897
|
+
diams,
|
|
1898
|
+
die,
|
|
1899
|
+
digamma,
|
|
1900
|
+
disin,
|
|
1901
|
+
div,
|
|
1902
|
+
divid,
|
|
1903
|
+
divide,
|
|
1904
|
+
divideontimes,
|
|
1905
|
+
divonx,
|
|
1906
|
+
djcy,
|
|
1907
|
+
dlcorn,
|
|
1908
|
+
dlcrop,
|
|
1909
|
+
dollar,
|
|
1910
|
+
dopf,
|
|
1911
|
+
dot,
|
|
1912
|
+
doteq,
|
|
1913
|
+
doteqdot,
|
|
1914
|
+
dotminus,
|
|
1915
|
+
dotplus,
|
|
1916
|
+
dotsquare,
|
|
1917
|
+
doublebarwedge,
|
|
1918
|
+
downarrow,
|
|
1919
|
+
downdownarrows,
|
|
1920
|
+
downharpoonleft,
|
|
1921
|
+
downharpoonright,
|
|
1922
|
+
drbkarow,
|
|
1923
|
+
drcorn,
|
|
1924
|
+
drcrop,
|
|
1925
|
+
dscr,
|
|
1926
|
+
dscy,
|
|
1927
|
+
dsol,
|
|
1928
|
+
dstrok,
|
|
1929
|
+
dtdot,
|
|
1930
|
+
dtri,
|
|
1931
|
+
dtrif,
|
|
1932
|
+
duarr,
|
|
1933
|
+
duhar,
|
|
1934
|
+
dwangle,
|
|
1935
|
+
dzcy,
|
|
1936
|
+
dzigrarr,
|
|
1937
|
+
eDDot,
|
|
1938
|
+
eDot,
|
|
1939
|
+
eacut,
|
|
1940
|
+
eacute,
|
|
1941
|
+
easter,
|
|
1942
|
+
ecaron,
|
|
1943
|
+
ecir,
|
|
1944
|
+
ecirc,
|
|
1945
|
+
ecolon,
|
|
1946
|
+
ecy,
|
|
1947
|
+
edot,
|
|
1948
|
+
ee,
|
|
1949
|
+
efDot,
|
|
1950
|
+
efr,
|
|
1951
|
+
eg,
|
|
1952
|
+
egrav,
|
|
1953
|
+
egrave,
|
|
1954
|
+
egs,
|
|
1955
|
+
egsdot,
|
|
1956
|
+
el,
|
|
1957
|
+
elinters,
|
|
1958
|
+
ell,
|
|
1959
|
+
els,
|
|
1960
|
+
elsdot,
|
|
1961
|
+
emacr,
|
|
1962
|
+
empty,
|
|
1963
|
+
emptyset,
|
|
1964
|
+
emptyv,
|
|
1965
|
+
emsp13,
|
|
1966
|
+
emsp14,
|
|
1967
|
+
emsp,
|
|
1968
|
+
eng,
|
|
1969
|
+
ensp,
|
|
1970
|
+
eogon,
|
|
1971
|
+
eopf,
|
|
1972
|
+
epar,
|
|
1973
|
+
eparsl,
|
|
1974
|
+
eplus,
|
|
1975
|
+
epsi,
|
|
1976
|
+
epsilon,
|
|
1977
|
+
epsiv,
|
|
1978
|
+
eqcirc,
|
|
1979
|
+
eqcolon,
|
|
1980
|
+
eqsim,
|
|
1981
|
+
eqslantgtr,
|
|
1982
|
+
eqslantless,
|
|
1983
|
+
equals,
|
|
1984
|
+
equest,
|
|
1985
|
+
equiv,
|
|
1986
|
+
equivDD,
|
|
1987
|
+
eqvparsl,
|
|
1988
|
+
erDot,
|
|
1989
|
+
erarr,
|
|
1990
|
+
escr,
|
|
1991
|
+
esdot,
|
|
1992
|
+
esim,
|
|
1993
|
+
eta,
|
|
1994
|
+
et,
|
|
1995
|
+
eth,
|
|
1996
|
+
eum,
|
|
1997
|
+
euml,
|
|
1998
|
+
euro,
|
|
1999
|
+
excl,
|
|
2000
|
+
exist,
|
|
2001
|
+
expectation,
|
|
2002
|
+
exponentiale,
|
|
2003
|
+
fallingdotseq,
|
|
2004
|
+
fcy,
|
|
2005
|
+
female,
|
|
2006
|
+
ffilig,
|
|
2007
|
+
fflig,
|
|
2008
|
+
ffllig,
|
|
2009
|
+
ffr,
|
|
2010
|
+
filig,
|
|
2011
|
+
fjlig,
|
|
2012
|
+
flat,
|
|
2013
|
+
fllig,
|
|
2014
|
+
fltns,
|
|
2015
|
+
fnof,
|
|
2016
|
+
fopf,
|
|
2017
|
+
forall,
|
|
2018
|
+
fork,
|
|
2019
|
+
forkv,
|
|
2020
|
+
fpartint,
|
|
2021
|
+
frac1,
|
|
2022
|
+
frac12,
|
|
2023
|
+
frac13,
|
|
2024
|
+
frac14,
|
|
2025
|
+
frac15,
|
|
2026
|
+
frac16,
|
|
2027
|
+
frac18,
|
|
2028
|
+
frac23,
|
|
2029
|
+
frac25,
|
|
2030
|
+
frac3,
|
|
2031
|
+
frac34,
|
|
2032
|
+
frac35,
|
|
2033
|
+
frac38,
|
|
2034
|
+
frac45,
|
|
2035
|
+
frac56,
|
|
2036
|
+
frac58,
|
|
2037
|
+
frac78,
|
|
2038
|
+
frasl,
|
|
2039
|
+
frown,
|
|
2040
|
+
fscr,
|
|
2041
|
+
gE,
|
|
2042
|
+
gEl,
|
|
2043
|
+
gacute,
|
|
2044
|
+
gamma,
|
|
2045
|
+
gammad,
|
|
2046
|
+
gap,
|
|
2047
|
+
gbreve,
|
|
2048
|
+
gcirc,
|
|
2049
|
+
gcy,
|
|
2050
|
+
gdot,
|
|
2051
|
+
ge,
|
|
2052
|
+
gel,
|
|
2053
|
+
geq,
|
|
2054
|
+
geqq,
|
|
2055
|
+
geqslant,
|
|
2056
|
+
ges,
|
|
2057
|
+
gescc,
|
|
2058
|
+
gesdot,
|
|
2059
|
+
gesdoto,
|
|
2060
|
+
gesdotol,
|
|
2061
|
+
gesl,
|
|
2062
|
+
gesles,
|
|
2063
|
+
gfr,
|
|
2064
|
+
gg,
|
|
2065
|
+
ggg,
|
|
2066
|
+
gimel,
|
|
2067
|
+
gjcy,
|
|
2068
|
+
gl,
|
|
2069
|
+
glE,
|
|
2070
|
+
gla,
|
|
2071
|
+
glj,
|
|
2072
|
+
gnE,
|
|
2073
|
+
gnap,
|
|
2074
|
+
gnapprox,
|
|
2075
|
+
gne,
|
|
2076
|
+
gneq,
|
|
2077
|
+
gneqq,
|
|
2078
|
+
gnsim,
|
|
2079
|
+
gopf,
|
|
2080
|
+
grave,
|
|
2081
|
+
gscr,
|
|
2082
|
+
gsim,
|
|
2083
|
+
gsime,
|
|
2084
|
+
gsiml,
|
|
2085
|
+
g,
|
|
2086
|
+
gt,
|
|
2087
|
+
gtcc,
|
|
2088
|
+
gtcir,
|
|
2089
|
+
gtdot,
|
|
2090
|
+
gtlPar,
|
|
2091
|
+
gtquest,
|
|
2092
|
+
gtrapprox,
|
|
2093
|
+
gtrarr,
|
|
2094
|
+
gtrdot,
|
|
2095
|
+
gtreqless,
|
|
2096
|
+
gtreqqless,
|
|
2097
|
+
gtrless,
|
|
2098
|
+
gtrsim,
|
|
2099
|
+
gvertneqq,
|
|
2100
|
+
gvnE,
|
|
2101
|
+
hArr,
|
|
2102
|
+
hairsp,
|
|
2103
|
+
half,
|
|
2104
|
+
hamilt,
|
|
2105
|
+
hardcy,
|
|
2106
|
+
harr,
|
|
2107
|
+
harrcir,
|
|
2108
|
+
harrw,
|
|
2109
|
+
hbar,
|
|
2110
|
+
hcirc,
|
|
2111
|
+
hearts,
|
|
2112
|
+
heartsuit,
|
|
2113
|
+
hellip,
|
|
2114
|
+
hercon,
|
|
2115
|
+
hfr,
|
|
2116
|
+
hksearow,
|
|
2117
|
+
hkswarow,
|
|
2118
|
+
hoarr,
|
|
2119
|
+
homtht,
|
|
2120
|
+
hookleftarrow,
|
|
2121
|
+
hookrightarrow,
|
|
2122
|
+
hopf,
|
|
2123
|
+
horbar,
|
|
2124
|
+
hscr,
|
|
2125
|
+
hslash,
|
|
2126
|
+
hstrok,
|
|
2127
|
+
hybull,
|
|
2128
|
+
hyphen,
|
|
2129
|
+
iacut,
|
|
2130
|
+
iacute,
|
|
2131
|
+
ic,
|
|
2132
|
+
icir,
|
|
2133
|
+
icirc,
|
|
2134
|
+
icy,
|
|
2135
|
+
iecy,
|
|
2136
|
+
iexc,
|
|
2137
|
+
iexcl,
|
|
2138
|
+
iff,
|
|
2139
|
+
ifr,
|
|
2140
|
+
igrav,
|
|
2141
|
+
igrave,
|
|
2142
|
+
ii,
|
|
2143
|
+
iiiint,
|
|
2144
|
+
iiint,
|
|
2145
|
+
iinfin,
|
|
2146
|
+
iiota,
|
|
2147
|
+
ijlig,
|
|
2148
|
+
imacr,
|
|
2149
|
+
image,
|
|
2150
|
+
imagline,
|
|
2151
|
+
imagpart,
|
|
2152
|
+
imath,
|
|
2153
|
+
imof,
|
|
2154
|
+
imped,
|
|
2155
|
+
in: "\u2208",
|
|
2156
|
+
incare,
|
|
2157
|
+
infin,
|
|
2158
|
+
infintie,
|
|
2159
|
+
inodot,
|
|
2160
|
+
int,
|
|
2161
|
+
intcal,
|
|
2162
|
+
integers,
|
|
2163
|
+
intercal,
|
|
2164
|
+
intlarhk,
|
|
2165
|
+
intprod,
|
|
2166
|
+
iocy,
|
|
2167
|
+
iogon,
|
|
2168
|
+
iopf,
|
|
2169
|
+
iota,
|
|
2170
|
+
iprod,
|
|
2171
|
+
iques,
|
|
2172
|
+
iquest,
|
|
2173
|
+
iscr,
|
|
2174
|
+
isin,
|
|
2175
|
+
isinE,
|
|
2176
|
+
isindot,
|
|
2177
|
+
isins,
|
|
2178
|
+
isinsv,
|
|
2179
|
+
isinv,
|
|
2180
|
+
it,
|
|
2181
|
+
itilde,
|
|
2182
|
+
iukcy,
|
|
2183
|
+
ium,
|
|
2184
|
+
iuml,
|
|
2185
|
+
jcirc,
|
|
2186
|
+
jcy,
|
|
2187
|
+
jfr,
|
|
2188
|
+
jmath,
|
|
2189
|
+
jopf,
|
|
2190
|
+
jscr,
|
|
2191
|
+
jsercy,
|
|
2192
|
+
jukcy,
|
|
2193
|
+
kappa,
|
|
2194
|
+
kappav,
|
|
2195
|
+
kcedil,
|
|
2196
|
+
kcy,
|
|
2197
|
+
kfr,
|
|
2198
|
+
kgreen,
|
|
2199
|
+
khcy,
|
|
2200
|
+
kjcy,
|
|
2201
|
+
kopf,
|
|
2202
|
+
kscr,
|
|
2203
|
+
lAarr,
|
|
2204
|
+
lArr,
|
|
2205
|
+
lAtail,
|
|
2206
|
+
lBarr,
|
|
2207
|
+
lE,
|
|
2208
|
+
lEg,
|
|
2209
|
+
lHar,
|
|
2210
|
+
lacute,
|
|
2211
|
+
laemptyv,
|
|
2212
|
+
lagran,
|
|
2213
|
+
lambda,
|
|
2214
|
+
lang,
|
|
2215
|
+
langd,
|
|
2216
|
+
langle,
|
|
2217
|
+
lap,
|
|
2218
|
+
laqu,
|
|
2219
|
+
laquo,
|
|
2220
|
+
larr,
|
|
2221
|
+
larrb,
|
|
2222
|
+
larrbfs,
|
|
2223
|
+
larrfs,
|
|
2224
|
+
larrhk,
|
|
2225
|
+
larrlp,
|
|
2226
|
+
larrpl,
|
|
2227
|
+
larrsim,
|
|
2228
|
+
larrtl,
|
|
2229
|
+
lat,
|
|
2230
|
+
latail,
|
|
2231
|
+
late,
|
|
2232
|
+
lates,
|
|
2233
|
+
lbarr,
|
|
2234
|
+
lbbrk,
|
|
2235
|
+
lbrace,
|
|
2236
|
+
lbrack,
|
|
2237
|
+
lbrke,
|
|
2238
|
+
lbrksld,
|
|
2239
|
+
lbrkslu,
|
|
2240
|
+
lcaron,
|
|
2241
|
+
lcedil,
|
|
2242
|
+
lceil,
|
|
2243
|
+
lcub,
|
|
2244
|
+
lcy,
|
|
2245
|
+
ldca,
|
|
2246
|
+
ldquo,
|
|
2247
|
+
ldquor,
|
|
2248
|
+
ldrdhar,
|
|
2249
|
+
ldrushar,
|
|
2250
|
+
ldsh,
|
|
2251
|
+
le,
|
|
2252
|
+
leftarrow,
|
|
2253
|
+
leftarrowtail,
|
|
2254
|
+
leftharpoondown,
|
|
2255
|
+
leftharpoonup,
|
|
2256
|
+
leftleftarrows,
|
|
2257
|
+
leftrightarrow,
|
|
2258
|
+
leftrightarrows,
|
|
2259
|
+
leftrightharpoons,
|
|
2260
|
+
leftrightsquigarrow,
|
|
2261
|
+
leftthreetimes,
|
|
2262
|
+
leg,
|
|
2263
|
+
leq,
|
|
2264
|
+
leqq,
|
|
2265
|
+
leqslant,
|
|
2266
|
+
les,
|
|
2267
|
+
lescc,
|
|
2268
|
+
lesdot,
|
|
2269
|
+
lesdoto,
|
|
2270
|
+
lesdotor,
|
|
2271
|
+
lesg,
|
|
2272
|
+
lesges,
|
|
2273
|
+
lessapprox,
|
|
2274
|
+
lessdot,
|
|
2275
|
+
lesseqgtr,
|
|
2276
|
+
lesseqqgtr,
|
|
2277
|
+
lessgtr,
|
|
2278
|
+
lesssim,
|
|
2279
|
+
lfisht,
|
|
2280
|
+
lfloor,
|
|
2281
|
+
lfr,
|
|
2282
|
+
lg,
|
|
2283
|
+
lgE,
|
|
2284
|
+
lhard,
|
|
2285
|
+
lharu,
|
|
2286
|
+
lharul,
|
|
2287
|
+
lhblk,
|
|
2288
|
+
ljcy,
|
|
2289
|
+
ll,
|
|
2290
|
+
llarr,
|
|
2291
|
+
llcorner,
|
|
2292
|
+
llhard,
|
|
2293
|
+
lltri,
|
|
2294
|
+
lmidot,
|
|
2295
|
+
lmoust,
|
|
2296
|
+
lmoustache,
|
|
2297
|
+
lnE,
|
|
2298
|
+
lnap,
|
|
2299
|
+
lnapprox,
|
|
2300
|
+
lne,
|
|
2301
|
+
lneq,
|
|
2302
|
+
lneqq,
|
|
2303
|
+
lnsim,
|
|
2304
|
+
loang,
|
|
2305
|
+
loarr,
|
|
2306
|
+
lobrk,
|
|
2307
|
+
longleftarrow,
|
|
2308
|
+
longleftrightarrow,
|
|
2309
|
+
longmapsto,
|
|
2310
|
+
longrightarrow,
|
|
2311
|
+
looparrowleft,
|
|
2312
|
+
looparrowright,
|
|
2313
|
+
lopar,
|
|
2314
|
+
lopf,
|
|
2315
|
+
loplus,
|
|
2316
|
+
lotimes,
|
|
2317
|
+
lowast,
|
|
2318
|
+
lowbar,
|
|
2319
|
+
loz,
|
|
2320
|
+
lozenge,
|
|
2321
|
+
lozf,
|
|
2322
|
+
lpar,
|
|
2323
|
+
lparlt,
|
|
2324
|
+
lrarr,
|
|
2325
|
+
lrcorner,
|
|
2326
|
+
lrhar,
|
|
2327
|
+
lrhard,
|
|
2328
|
+
lrm,
|
|
2329
|
+
lrtri,
|
|
2330
|
+
lsaquo,
|
|
2331
|
+
lscr,
|
|
2332
|
+
lsh,
|
|
2333
|
+
lsim,
|
|
2334
|
+
lsime,
|
|
2335
|
+
lsimg,
|
|
2336
|
+
lsqb,
|
|
2337
|
+
lsquo,
|
|
2338
|
+
lsquor,
|
|
2339
|
+
lstrok,
|
|
2340
|
+
l,
|
|
2341
|
+
lt,
|
|
2342
|
+
ltcc,
|
|
2343
|
+
ltcir,
|
|
2344
|
+
ltdot,
|
|
2345
|
+
lthree,
|
|
2346
|
+
ltimes,
|
|
2347
|
+
ltlarr,
|
|
2348
|
+
ltquest,
|
|
2349
|
+
ltrPar,
|
|
2350
|
+
ltri,
|
|
2351
|
+
ltrie,
|
|
2352
|
+
ltrif,
|
|
2353
|
+
lurdshar,
|
|
2354
|
+
luruhar,
|
|
2355
|
+
lvertneqq,
|
|
2356
|
+
lvnE,
|
|
2357
|
+
mDDot,
|
|
2358
|
+
mac,
|
|
2359
|
+
macr,
|
|
2360
|
+
male,
|
|
2361
|
+
malt,
|
|
2362
|
+
maltese,
|
|
2363
|
+
map: map$1,
|
|
2364
|
+
mapsto,
|
|
2365
|
+
mapstodown,
|
|
2366
|
+
mapstoleft,
|
|
2367
|
+
mapstoup,
|
|
2368
|
+
marker,
|
|
2369
|
+
mcomma,
|
|
2370
|
+
mcy,
|
|
2371
|
+
mdash,
|
|
2372
|
+
measuredangle,
|
|
2373
|
+
mfr,
|
|
2374
|
+
mho,
|
|
2375
|
+
micr,
|
|
2376
|
+
micro,
|
|
2377
|
+
mid,
|
|
2378
|
+
midast,
|
|
2379
|
+
midcir,
|
|
2380
|
+
middo,
|
|
2381
|
+
middot,
|
|
2382
|
+
minus,
|
|
2383
|
+
minusb,
|
|
2384
|
+
minusd,
|
|
2385
|
+
minusdu,
|
|
2386
|
+
mlcp,
|
|
2387
|
+
mldr,
|
|
2388
|
+
mnplus,
|
|
2389
|
+
models,
|
|
2390
|
+
mopf,
|
|
2391
|
+
mp,
|
|
2392
|
+
mscr,
|
|
2393
|
+
mstpos,
|
|
2394
|
+
mu,
|
|
2395
|
+
multimap,
|
|
2396
|
+
mumap,
|
|
2397
|
+
nGg,
|
|
2398
|
+
nGt,
|
|
2399
|
+
nGtv,
|
|
2400
|
+
nLeftarrow,
|
|
2401
|
+
nLeftrightarrow,
|
|
2402
|
+
nLl,
|
|
2403
|
+
nLt,
|
|
2404
|
+
nLtv,
|
|
2405
|
+
nRightarrow,
|
|
2406
|
+
nVDash,
|
|
2407
|
+
nVdash,
|
|
2408
|
+
nabla,
|
|
2409
|
+
nacute,
|
|
2410
|
+
nang,
|
|
2411
|
+
nap,
|
|
2412
|
+
napE,
|
|
2413
|
+
napid,
|
|
2414
|
+
napos,
|
|
2415
|
+
napprox,
|
|
2416
|
+
natur,
|
|
2417
|
+
natural,
|
|
2418
|
+
naturals,
|
|
2419
|
+
nbs,
|
|
2420
|
+
nbsp,
|
|
2421
|
+
nbump,
|
|
2422
|
+
nbumpe,
|
|
2423
|
+
ncap,
|
|
2424
|
+
ncaron,
|
|
2425
|
+
ncedil,
|
|
2426
|
+
ncong,
|
|
2427
|
+
ncongdot,
|
|
2428
|
+
ncup,
|
|
2429
|
+
ncy,
|
|
2430
|
+
ndash,
|
|
2431
|
+
ne,
|
|
2432
|
+
neArr,
|
|
2433
|
+
nearhk,
|
|
2434
|
+
nearr,
|
|
2435
|
+
nearrow,
|
|
2436
|
+
nedot,
|
|
2437
|
+
nequiv,
|
|
2438
|
+
nesear,
|
|
2439
|
+
nesim,
|
|
2440
|
+
nexist,
|
|
2441
|
+
nexists,
|
|
2442
|
+
nfr,
|
|
2443
|
+
ngE,
|
|
2444
|
+
nge,
|
|
2445
|
+
ngeq,
|
|
2446
|
+
ngeqq,
|
|
2447
|
+
ngeqslant,
|
|
2448
|
+
nges,
|
|
2449
|
+
ngsim,
|
|
2450
|
+
ngt,
|
|
2451
|
+
ngtr,
|
|
2452
|
+
nhArr,
|
|
2453
|
+
nharr,
|
|
2454
|
+
nhpar,
|
|
2455
|
+
ni,
|
|
2456
|
+
nis,
|
|
2457
|
+
nisd,
|
|
2458
|
+
niv,
|
|
2459
|
+
njcy,
|
|
2460
|
+
nlArr,
|
|
2461
|
+
nlE,
|
|
2462
|
+
nlarr,
|
|
2463
|
+
nldr,
|
|
2464
|
+
nle,
|
|
2465
|
+
nleftarrow,
|
|
2466
|
+
nleftrightarrow,
|
|
2467
|
+
nleq,
|
|
2468
|
+
nleqq,
|
|
2469
|
+
nleqslant,
|
|
2470
|
+
nles,
|
|
2471
|
+
nless,
|
|
2472
|
+
nlsim,
|
|
2473
|
+
nlt,
|
|
2474
|
+
nltri,
|
|
2475
|
+
nltrie,
|
|
2476
|
+
nmid,
|
|
2477
|
+
nopf,
|
|
2478
|
+
no,
|
|
2479
|
+
not,
|
|
2480
|
+
notin,
|
|
2481
|
+
notinE,
|
|
2482
|
+
notindot,
|
|
2483
|
+
notinva,
|
|
2484
|
+
notinvb,
|
|
2485
|
+
notinvc,
|
|
2486
|
+
notni,
|
|
2487
|
+
notniva,
|
|
2488
|
+
notnivb,
|
|
2489
|
+
notnivc,
|
|
2490
|
+
npar,
|
|
2491
|
+
nparallel,
|
|
2492
|
+
nparsl,
|
|
2493
|
+
npart,
|
|
2494
|
+
npolint,
|
|
2495
|
+
npr,
|
|
2496
|
+
nprcue,
|
|
2497
|
+
npre,
|
|
2498
|
+
nprec,
|
|
2499
|
+
npreceq,
|
|
2500
|
+
nrArr,
|
|
2501
|
+
nrarr,
|
|
2502
|
+
nrarrc,
|
|
2503
|
+
nrarrw,
|
|
2504
|
+
nrightarrow,
|
|
2505
|
+
nrtri,
|
|
2506
|
+
nrtrie,
|
|
2507
|
+
nsc,
|
|
2508
|
+
nsccue,
|
|
2509
|
+
nsce,
|
|
2510
|
+
nscr,
|
|
2511
|
+
nshortmid,
|
|
2512
|
+
nshortparallel,
|
|
2513
|
+
nsim,
|
|
2514
|
+
nsime,
|
|
2515
|
+
nsimeq,
|
|
2516
|
+
nsmid,
|
|
2517
|
+
nspar,
|
|
2518
|
+
nsqsube,
|
|
2519
|
+
nsqsupe,
|
|
2520
|
+
nsub,
|
|
2521
|
+
nsubE,
|
|
2522
|
+
nsube,
|
|
2523
|
+
nsubset,
|
|
2524
|
+
nsubseteq,
|
|
2525
|
+
nsubseteqq,
|
|
2526
|
+
nsucc,
|
|
2527
|
+
nsucceq,
|
|
2528
|
+
nsup,
|
|
2529
|
+
nsupE,
|
|
2530
|
+
nsupe,
|
|
2531
|
+
nsupset,
|
|
2532
|
+
nsupseteq,
|
|
2533
|
+
nsupseteqq,
|
|
2534
|
+
ntgl,
|
|
2535
|
+
ntild,
|
|
2536
|
+
ntilde,
|
|
2537
|
+
ntlg,
|
|
2538
|
+
ntriangleleft,
|
|
2539
|
+
ntrianglelefteq,
|
|
2540
|
+
ntriangleright,
|
|
2541
|
+
ntrianglerighteq,
|
|
2542
|
+
nu,
|
|
2543
|
+
num,
|
|
2544
|
+
numero,
|
|
2545
|
+
numsp,
|
|
2546
|
+
nvDash,
|
|
2547
|
+
nvHarr,
|
|
2548
|
+
nvap,
|
|
2549
|
+
nvdash,
|
|
2550
|
+
nvge,
|
|
2551
|
+
nvgt,
|
|
2552
|
+
nvinfin,
|
|
2553
|
+
nvlArr,
|
|
2554
|
+
nvle,
|
|
2555
|
+
nvlt,
|
|
2556
|
+
nvltrie,
|
|
2557
|
+
nvrArr,
|
|
2558
|
+
nvrtrie,
|
|
2559
|
+
nvsim,
|
|
2560
|
+
nwArr,
|
|
2561
|
+
nwarhk,
|
|
2562
|
+
nwarr,
|
|
2563
|
+
nwarrow,
|
|
2564
|
+
nwnear,
|
|
2565
|
+
oS,
|
|
2566
|
+
oacut,
|
|
2567
|
+
oacute,
|
|
2568
|
+
oast,
|
|
2569
|
+
ocir,
|
|
2570
|
+
ocirc,
|
|
2571
|
+
ocy,
|
|
2572
|
+
odash,
|
|
2573
|
+
odblac,
|
|
2574
|
+
odiv,
|
|
2575
|
+
odot,
|
|
2576
|
+
odsold,
|
|
2577
|
+
oelig,
|
|
2578
|
+
ofcir,
|
|
2579
|
+
ofr,
|
|
2580
|
+
ogon,
|
|
2581
|
+
ograv,
|
|
2582
|
+
ograve,
|
|
2583
|
+
ogt,
|
|
2584
|
+
ohbar,
|
|
2585
|
+
ohm,
|
|
2586
|
+
oint,
|
|
2587
|
+
olarr,
|
|
2588
|
+
olcir,
|
|
2589
|
+
olcross,
|
|
2590
|
+
oline,
|
|
2591
|
+
olt,
|
|
2592
|
+
omacr,
|
|
2593
|
+
omega,
|
|
2594
|
+
omicron,
|
|
2595
|
+
omid,
|
|
2596
|
+
ominus,
|
|
2597
|
+
oopf,
|
|
2598
|
+
opar,
|
|
2599
|
+
operp,
|
|
2600
|
+
oplus,
|
|
2601
|
+
or,
|
|
2602
|
+
orarr,
|
|
2603
|
+
ord,
|
|
2604
|
+
order,
|
|
2605
|
+
orderof,
|
|
2606
|
+
ordf,
|
|
2607
|
+
ordm,
|
|
2608
|
+
origof,
|
|
2609
|
+
oror,
|
|
2610
|
+
orslope,
|
|
2611
|
+
orv,
|
|
2612
|
+
oscr,
|
|
2613
|
+
oslas,
|
|
2614
|
+
oslash,
|
|
2615
|
+
osol,
|
|
2616
|
+
otild,
|
|
2617
|
+
otilde,
|
|
2618
|
+
otimes,
|
|
2619
|
+
otimesas,
|
|
2620
|
+
oum,
|
|
2621
|
+
ouml,
|
|
2622
|
+
ovbar,
|
|
2623
|
+
par,
|
|
2624
|
+
para,
|
|
2625
|
+
parallel,
|
|
2626
|
+
parsim,
|
|
2627
|
+
parsl,
|
|
2628
|
+
part,
|
|
2629
|
+
pcy,
|
|
2630
|
+
percnt,
|
|
2631
|
+
period,
|
|
2632
|
+
permil,
|
|
2633
|
+
perp,
|
|
2634
|
+
pertenk,
|
|
2635
|
+
pfr,
|
|
2636
|
+
phi,
|
|
2637
|
+
phiv,
|
|
2638
|
+
phmmat,
|
|
2639
|
+
phone,
|
|
2640
|
+
pi,
|
|
2641
|
+
pitchfork,
|
|
2642
|
+
piv,
|
|
2643
|
+
planck,
|
|
2644
|
+
planckh,
|
|
2645
|
+
plankv,
|
|
2646
|
+
plus,
|
|
2647
|
+
plusacir,
|
|
2648
|
+
plusb,
|
|
2649
|
+
pluscir,
|
|
2650
|
+
plusdo,
|
|
2651
|
+
plusdu,
|
|
2652
|
+
pluse,
|
|
2653
|
+
plusm,
|
|
2654
|
+
plusmn,
|
|
2655
|
+
plussim,
|
|
2656
|
+
plustwo,
|
|
2657
|
+
pm,
|
|
2658
|
+
pointint,
|
|
2659
|
+
popf,
|
|
2660
|
+
poun,
|
|
2661
|
+
pound,
|
|
2662
|
+
pr,
|
|
2663
|
+
prE,
|
|
2664
|
+
prap,
|
|
2665
|
+
prcue,
|
|
2666
|
+
pre,
|
|
2667
|
+
prec,
|
|
2668
|
+
precapprox,
|
|
2669
|
+
preccurlyeq,
|
|
2670
|
+
preceq,
|
|
2671
|
+
precnapprox,
|
|
2672
|
+
precneqq,
|
|
2673
|
+
precnsim,
|
|
2674
|
+
precsim,
|
|
2675
|
+
prime,
|
|
2676
|
+
primes,
|
|
2677
|
+
prnE,
|
|
2678
|
+
prnap,
|
|
2679
|
+
prnsim,
|
|
2680
|
+
prod,
|
|
2681
|
+
profalar,
|
|
2682
|
+
profline,
|
|
2683
|
+
profsurf,
|
|
2684
|
+
prop,
|
|
2685
|
+
propto,
|
|
2686
|
+
prsim,
|
|
2687
|
+
prurel,
|
|
2688
|
+
pscr,
|
|
2689
|
+
psi,
|
|
2690
|
+
puncsp,
|
|
2691
|
+
qfr,
|
|
2692
|
+
qint,
|
|
2693
|
+
qopf,
|
|
2694
|
+
qprime,
|
|
2695
|
+
qscr,
|
|
2696
|
+
quaternions,
|
|
2697
|
+
quatint,
|
|
2698
|
+
quest,
|
|
2699
|
+
questeq,
|
|
2700
|
+
quo,
|
|
2701
|
+
quot,
|
|
2702
|
+
rAarr,
|
|
2703
|
+
rArr,
|
|
2704
|
+
rAtail,
|
|
2705
|
+
rBarr,
|
|
2706
|
+
rHar,
|
|
2707
|
+
race,
|
|
2708
|
+
racute,
|
|
2709
|
+
radic,
|
|
2710
|
+
raemptyv,
|
|
2711
|
+
rang,
|
|
2712
|
+
rangd,
|
|
2713
|
+
range,
|
|
2714
|
+
rangle,
|
|
2715
|
+
raqu,
|
|
2716
|
+
raquo,
|
|
2717
|
+
rarr,
|
|
2718
|
+
rarrap,
|
|
2719
|
+
rarrb,
|
|
2720
|
+
rarrbfs,
|
|
2721
|
+
rarrc,
|
|
2722
|
+
rarrfs,
|
|
2723
|
+
rarrhk,
|
|
2724
|
+
rarrlp,
|
|
2725
|
+
rarrpl,
|
|
2726
|
+
rarrsim,
|
|
2727
|
+
rarrtl,
|
|
2728
|
+
rarrw,
|
|
2729
|
+
ratail,
|
|
2730
|
+
ratio,
|
|
2731
|
+
rationals,
|
|
2732
|
+
rbarr,
|
|
2733
|
+
rbbrk,
|
|
2734
|
+
rbrace,
|
|
2735
|
+
rbrack,
|
|
2736
|
+
rbrke,
|
|
2737
|
+
rbrksld,
|
|
2738
|
+
rbrkslu,
|
|
2739
|
+
rcaron,
|
|
2740
|
+
rcedil,
|
|
2741
|
+
rceil,
|
|
2742
|
+
rcub,
|
|
2743
|
+
rcy,
|
|
2744
|
+
rdca,
|
|
2745
|
+
rdldhar,
|
|
2746
|
+
rdquo,
|
|
2747
|
+
rdquor,
|
|
2748
|
+
rdsh,
|
|
2749
|
+
real,
|
|
2750
|
+
realine,
|
|
2751
|
+
realpart,
|
|
2752
|
+
reals,
|
|
2753
|
+
rect,
|
|
2754
|
+
re,
|
|
2755
|
+
reg,
|
|
2756
|
+
rfisht,
|
|
2757
|
+
rfloor,
|
|
2758
|
+
rfr,
|
|
2759
|
+
rhard,
|
|
2760
|
+
rharu,
|
|
2761
|
+
rharul,
|
|
2762
|
+
rho,
|
|
2763
|
+
rhov,
|
|
2764
|
+
rightarrow,
|
|
2765
|
+
rightarrowtail,
|
|
2766
|
+
rightharpoondown,
|
|
2767
|
+
rightharpoonup,
|
|
2768
|
+
rightleftarrows,
|
|
2769
|
+
rightleftharpoons,
|
|
2770
|
+
rightrightarrows,
|
|
2771
|
+
rightsquigarrow,
|
|
2772
|
+
rightthreetimes,
|
|
2773
|
+
ring,
|
|
2774
|
+
risingdotseq,
|
|
2775
|
+
rlarr,
|
|
2776
|
+
rlhar,
|
|
2777
|
+
rlm,
|
|
2778
|
+
rmoust,
|
|
2779
|
+
rmoustache,
|
|
2780
|
+
rnmid,
|
|
2781
|
+
roang,
|
|
2782
|
+
roarr,
|
|
2783
|
+
robrk,
|
|
2784
|
+
ropar,
|
|
2785
|
+
ropf,
|
|
2786
|
+
roplus,
|
|
2787
|
+
rotimes,
|
|
2788
|
+
rpar,
|
|
2789
|
+
rpargt,
|
|
2790
|
+
rppolint,
|
|
2791
|
+
rrarr,
|
|
2792
|
+
rsaquo,
|
|
2793
|
+
rscr,
|
|
2794
|
+
rsh,
|
|
2795
|
+
rsqb,
|
|
2796
|
+
rsquo,
|
|
2797
|
+
rsquor,
|
|
2798
|
+
rthree,
|
|
2799
|
+
rtimes,
|
|
2800
|
+
rtri,
|
|
2801
|
+
rtrie,
|
|
2802
|
+
rtrif,
|
|
2803
|
+
rtriltri,
|
|
2804
|
+
ruluhar,
|
|
2805
|
+
rx,
|
|
2806
|
+
sacute,
|
|
2807
|
+
sbquo,
|
|
2808
|
+
sc,
|
|
2809
|
+
scE,
|
|
2810
|
+
scap,
|
|
2811
|
+
scaron,
|
|
2812
|
+
sccue,
|
|
2813
|
+
sce,
|
|
2814
|
+
scedil,
|
|
2815
|
+
scirc,
|
|
2816
|
+
scnE,
|
|
2817
|
+
scnap,
|
|
2818
|
+
scnsim,
|
|
2819
|
+
scpolint,
|
|
2820
|
+
scsim,
|
|
2821
|
+
scy,
|
|
2822
|
+
sdot,
|
|
2823
|
+
sdotb,
|
|
2824
|
+
sdote,
|
|
2825
|
+
seArr,
|
|
2826
|
+
searhk,
|
|
2827
|
+
searr,
|
|
2828
|
+
searrow,
|
|
2829
|
+
sec,
|
|
2830
|
+
sect,
|
|
2831
|
+
semi,
|
|
2832
|
+
seswar,
|
|
2833
|
+
setminus,
|
|
2834
|
+
setmn,
|
|
2835
|
+
sext,
|
|
2836
|
+
sfr,
|
|
2837
|
+
sfrown,
|
|
2838
|
+
sharp,
|
|
2839
|
+
shchcy,
|
|
2840
|
+
shcy,
|
|
2841
|
+
shortmid,
|
|
2842
|
+
shortparallel,
|
|
2843
|
+
sh,
|
|
2844
|
+
shy,
|
|
2845
|
+
sigma,
|
|
2846
|
+
sigmaf,
|
|
2847
|
+
sigmav,
|
|
2848
|
+
sim,
|
|
2849
|
+
simdot,
|
|
2850
|
+
sime,
|
|
2851
|
+
simeq,
|
|
2852
|
+
simg,
|
|
2853
|
+
simgE,
|
|
2854
|
+
siml,
|
|
2855
|
+
simlE,
|
|
2856
|
+
simne,
|
|
2857
|
+
simplus,
|
|
2858
|
+
simrarr,
|
|
2859
|
+
slarr,
|
|
2860
|
+
smallsetminus,
|
|
2861
|
+
smashp,
|
|
2862
|
+
smeparsl,
|
|
2863
|
+
smid,
|
|
2864
|
+
smile,
|
|
2865
|
+
smt,
|
|
2866
|
+
smte,
|
|
2867
|
+
smtes,
|
|
2868
|
+
softcy,
|
|
2869
|
+
sol,
|
|
2870
|
+
solb,
|
|
2871
|
+
solbar,
|
|
2872
|
+
sopf,
|
|
2873
|
+
spades,
|
|
2874
|
+
spadesuit,
|
|
2875
|
+
spar,
|
|
2876
|
+
sqcap,
|
|
2877
|
+
sqcaps,
|
|
2878
|
+
sqcup,
|
|
2879
|
+
sqcups,
|
|
2880
|
+
sqsub,
|
|
2881
|
+
sqsube,
|
|
2882
|
+
sqsubset,
|
|
2883
|
+
sqsubseteq,
|
|
2884
|
+
sqsup,
|
|
2885
|
+
sqsupe,
|
|
2886
|
+
sqsupset,
|
|
2887
|
+
sqsupseteq,
|
|
2888
|
+
squ,
|
|
2889
|
+
square,
|
|
2890
|
+
squarf,
|
|
2891
|
+
squf,
|
|
2892
|
+
srarr,
|
|
2893
|
+
sscr,
|
|
2894
|
+
ssetmn,
|
|
2895
|
+
ssmile,
|
|
2896
|
+
sstarf,
|
|
2897
|
+
star,
|
|
2898
|
+
starf,
|
|
2899
|
+
straightepsilon,
|
|
2900
|
+
straightphi,
|
|
2901
|
+
strns,
|
|
2902
|
+
sub,
|
|
2903
|
+
subE,
|
|
2904
|
+
subdot,
|
|
2905
|
+
sube,
|
|
2906
|
+
subedot,
|
|
2907
|
+
submult,
|
|
2908
|
+
subnE,
|
|
2909
|
+
subne,
|
|
2910
|
+
subplus,
|
|
2911
|
+
subrarr,
|
|
2912
|
+
subset,
|
|
2913
|
+
subseteq,
|
|
2914
|
+
subseteqq,
|
|
2915
|
+
subsetneq,
|
|
2916
|
+
subsetneqq,
|
|
2917
|
+
subsim,
|
|
2918
|
+
subsub,
|
|
2919
|
+
subsup,
|
|
2920
|
+
succ,
|
|
2921
|
+
succapprox,
|
|
2922
|
+
succcurlyeq,
|
|
2923
|
+
succeq,
|
|
2924
|
+
succnapprox,
|
|
2925
|
+
succneqq,
|
|
2926
|
+
succnsim,
|
|
2927
|
+
succsim,
|
|
2928
|
+
sum,
|
|
2929
|
+
sung,
|
|
2930
|
+
sup,
|
|
2931
|
+
sup1,
|
|
2932
|
+
sup2,
|
|
2933
|
+
sup3,
|
|
2934
|
+
supE,
|
|
2935
|
+
supdot,
|
|
2936
|
+
supdsub,
|
|
2937
|
+
supe,
|
|
2938
|
+
supedot,
|
|
2939
|
+
suphsol,
|
|
2940
|
+
suphsub,
|
|
2941
|
+
suplarr,
|
|
2942
|
+
supmult,
|
|
2943
|
+
supnE,
|
|
2944
|
+
supne,
|
|
2945
|
+
supplus,
|
|
2946
|
+
supset,
|
|
2947
|
+
supseteq,
|
|
2948
|
+
supseteqq,
|
|
2949
|
+
supsetneq,
|
|
2950
|
+
supsetneqq,
|
|
2951
|
+
supsim,
|
|
2952
|
+
supsub,
|
|
2953
|
+
supsup,
|
|
2954
|
+
swArr,
|
|
2955
|
+
swarhk,
|
|
2956
|
+
swarr,
|
|
2957
|
+
swarrow,
|
|
2958
|
+
swnwar,
|
|
2959
|
+
szli,
|
|
2960
|
+
szlig,
|
|
2961
|
+
target,
|
|
2962
|
+
tau,
|
|
2963
|
+
tbrk,
|
|
2964
|
+
tcaron,
|
|
2965
|
+
tcedil,
|
|
2966
|
+
tcy,
|
|
2967
|
+
tdot,
|
|
2968
|
+
telrec,
|
|
2969
|
+
tfr,
|
|
2970
|
+
there4,
|
|
2971
|
+
therefore,
|
|
2972
|
+
theta,
|
|
2973
|
+
thetasym,
|
|
2974
|
+
thetav,
|
|
2975
|
+
thickapprox,
|
|
2976
|
+
thicksim,
|
|
2977
|
+
thinsp,
|
|
2978
|
+
thkap,
|
|
2979
|
+
thksim,
|
|
2980
|
+
thor,
|
|
2981
|
+
thorn,
|
|
2982
|
+
tilde,
|
|
2983
|
+
time,
|
|
2984
|
+
times,
|
|
2985
|
+
timesb,
|
|
2986
|
+
timesbar,
|
|
2987
|
+
timesd,
|
|
2988
|
+
tint,
|
|
2989
|
+
toea,
|
|
2990
|
+
top,
|
|
2991
|
+
topbot,
|
|
2992
|
+
topcir,
|
|
2993
|
+
topf,
|
|
2994
|
+
topfork,
|
|
2995
|
+
tosa,
|
|
2996
|
+
tprime,
|
|
2997
|
+
trade,
|
|
2998
|
+
triangle,
|
|
2999
|
+
triangledown,
|
|
3000
|
+
triangleleft,
|
|
3001
|
+
trianglelefteq,
|
|
3002
|
+
triangleq,
|
|
3003
|
+
triangleright,
|
|
3004
|
+
trianglerighteq,
|
|
3005
|
+
tridot,
|
|
3006
|
+
trie,
|
|
3007
|
+
triminus,
|
|
3008
|
+
triplus,
|
|
3009
|
+
trisb,
|
|
3010
|
+
tritime,
|
|
3011
|
+
trpezium,
|
|
3012
|
+
tscr,
|
|
3013
|
+
tscy,
|
|
3014
|
+
tshcy,
|
|
3015
|
+
tstrok,
|
|
3016
|
+
twixt,
|
|
3017
|
+
twoheadleftarrow,
|
|
3018
|
+
twoheadrightarrow,
|
|
3019
|
+
uArr,
|
|
3020
|
+
uHar,
|
|
3021
|
+
uacut,
|
|
3022
|
+
uacute,
|
|
3023
|
+
uarr,
|
|
3024
|
+
ubrcy,
|
|
3025
|
+
ubreve,
|
|
3026
|
+
ucir,
|
|
3027
|
+
ucirc,
|
|
3028
|
+
ucy,
|
|
3029
|
+
udarr,
|
|
3030
|
+
udblac,
|
|
3031
|
+
udhar,
|
|
3032
|
+
ufisht,
|
|
3033
|
+
ufr,
|
|
3034
|
+
ugrav,
|
|
3035
|
+
ugrave,
|
|
3036
|
+
uharl,
|
|
3037
|
+
uharr,
|
|
3038
|
+
uhblk,
|
|
3039
|
+
ulcorn,
|
|
3040
|
+
ulcorner,
|
|
3041
|
+
ulcrop,
|
|
3042
|
+
ultri,
|
|
3043
|
+
umacr,
|
|
3044
|
+
um,
|
|
3045
|
+
uml,
|
|
3046
|
+
uogon,
|
|
3047
|
+
uopf,
|
|
3048
|
+
uparrow,
|
|
3049
|
+
updownarrow,
|
|
3050
|
+
upharpoonleft,
|
|
3051
|
+
upharpoonright,
|
|
3052
|
+
uplus,
|
|
3053
|
+
upsi,
|
|
3054
|
+
upsih,
|
|
3055
|
+
upsilon,
|
|
3056
|
+
upuparrows,
|
|
3057
|
+
urcorn,
|
|
3058
|
+
urcorner,
|
|
3059
|
+
urcrop,
|
|
3060
|
+
uring,
|
|
3061
|
+
urtri,
|
|
3062
|
+
uscr,
|
|
3063
|
+
utdot,
|
|
3064
|
+
utilde,
|
|
3065
|
+
utri,
|
|
3066
|
+
utrif,
|
|
3067
|
+
uuarr,
|
|
3068
|
+
uum,
|
|
3069
|
+
uuml,
|
|
3070
|
+
uwangle,
|
|
3071
|
+
vArr,
|
|
3072
|
+
vBar,
|
|
3073
|
+
vBarv,
|
|
3074
|
+
vDash,
|
|
3075
|
+
vangrt,
|
|
3076
|
+
varepsilon,
|
|
3077
|
+
varkappa,
|
|
3078
|
+
varnothing,
|
|
3079
|
+
varphi,
|
|
3080
|
+
varpi,
|
|
3081
|
+
varpropto,
|
|
3082
|
+
varr,
|
|
3083
|
+
varrho,
|
|
3084
|
+
varsigma,
|
|
3085
|
+
varsubsetneq,
|
|
3086
|
+
varsubsetneqq,
|
|
3087
|
+
varsupsetneq,
|
|
3088
|
+
varsupsetneqq,
|
|
3089
|
+
vartheta,
|
|
3090
|
+
vartriangleleft,
|
|
3091
|
+
vartriangleright,
|
|
3092
|
+
vcy,
|
|
3093
|
+
vdash,
|
|
3094
|
+
vee,
|
|
3095
|
+
veebar,
|
|
3096
|
+
veeeq,
|
|
3097
|
+
vellip,
|
|
3098
|
+
verbar,
|
|
3099
|
+
vert,
|
|
3100
|
+
vfr,
|
|
3101
|
+
vltri,
|
|
3102
|
+
vnsub,
|
|
3103
|
+
vnsup,
|
|
3104
|
+
vopf,
|
|
3105
|
+
vprop,
|
|
3106
|
+
vrtri,
|
|
3107
|
+
vscr,
|
|
3108
|
+
vsubnE,
|
|
3109
|
+
vsubne,
|
|
3110
|
+
vsupnE,
|
|
3111
|
+
vsupne,
|
|
3112
|
+
vzigzag,
|
|
3113
|
+
wcirc,
|
|
3114
|
+
wedbar,
|
|
3115
|
+
wedge,
|
|
3116
|
+
wedgeq,
|
|
3117
|
+
weierp,
|
|
3118
|
+
wfr,
|
|
3119
|
+
wopf,
|
|
3120
|
+
wp,
|
|
3121
|
+
wr,
|
|
3122
|
+
wreath,
|
|
3123
|
+
wscr,
|
|
3124
|
+
xcap,
|
|
3125
|
+
xcirc,
|
|
3126
|
+
xcup,
|
|
3127
|
+
xdtri,
|
|
3128
|
+
xfr,
|
|
3129
|
+
xhArr,
|
|
3130
|
+
xharr,
|
|
3131
|
+
xi,
|
|
3132
|
+
xlArr,
|
|
3133
|
+
xlarr,
|
|
3134
|
+
xmap,
|
|
3135
|
+
xnis,
|
|
3136
|
+
xodot,
|
|
3137
|
+
xopf,
|
|
3138
|
+
xoplus,
|
|
3139
|
+
xotime,
|
|
3140
|
+
xrArr,
|
|
3141
|
+
xrarr,
|
|
3142
|
+
xscr,
|
|
3143
|
+
xsqcup,
|
|
3144
|
+
xuplus,
|
|
3145
|
+
xutri,
|
|
3146
|
+
xvee,
|
|
3147
|
+
xwedge,
|
|
3148
|
+
yacut,
|
|
3149
|
+
yacute,
|
|
3150
|
+
yacy,
|
|
3151
|
+
ycirc,
|
|
3152
|
+
ycy,
|
|
3153
|
+
ye,
|
|
3154
|
+
yen,
|
|
3155
|
+
yfr,
|
|
3156
|
+
yicy,
|
|
3157
|
+
yopf,
|
|
3158
|
+
yscr,
|
|
3159
|
+
yucy,
|
|
3160
|
+
yum,
|
|
3161
|
+
yuml,
|
|
3162
|
+
zacute,
|
|
3163
|
+
zcaron,
|
|
3164
|
+
zcy,
|
|
3165
|
+
zdot,
|
|
3166
|
+
zeetrf,
|
|
3167
|
+
zeta,
|
|
3168
|
+
zfr,
|
|
3169
|
+
zhcy,
|
|
3170
|
+
zigrarr,
|
|
3171
|
+
zopf,
|
|
3172
|
+
zscr,
|
|
3173
|
+
zwj,
|
|
3174
|
+
zwnj
|
|
3175
|
+
}, decodeEntity_1, hasRequiredDecodeEntity;
|
|
3176
|
+
function requireDecodeEntity() {
|
|
3177
|
+
if (hasRequiredDecodeEntity) return decodeEntity_1;
|
|
3178
|
+
hasRequiredDecodeEntity = 1;
|
|
3179
|
+
var characterEntities = require$$0;
|
|
3180
|
+
decodeEntity_1 = decodeEntity;
|
|
3181
|
+
var own = {}.hasOwnProperty;
|
|
3182
|
+
function decodeEntity(characters) {
|
|
3183
|
+
return own.call(characterEntities, characters) ? characterEntities[characters] : !1;
|
|
3184
|
+
}
|
|
3185
|
+
return decodeEntity_1;
|
|
3186
|
+
}
|
|
3187
|
+
var parseEntities_1, hasRequiredParseEntities;
|
|
3188
|
+
function requireParseEntities() {
|
|
3189
|
+
if (hasRequiredParseEntities) return parseEntities_1;
|
|
3190
|
+
hasRequiredParseEntities = 1;
|
|
3191
|
+
var legacy = require$$0$1, invalid = require$$1, decimal = requireIsDecimal(), hexadecimal = requireIsHexadecimal(), alphanumerical = requireIsAlphanumerical(), decodeEntity = requireDecodeEntity();
|
|
3192
|
+
parseEntities_1 = parseEntities;
|
|
3193
|
+
var own = {}.hasOwnProperty, fromCharCode = String.fromCharCode, noop = Function.prototype, defaults = {
|
|
3194
|
+
warning: null,
|
|
3195
|
+
reference: null,
|
|
3196
|
+
text: null,
|
|
3197
|
+
warningContext: null,
|
|
3198
|
+
referenceContext: null,
|
|
3199
|
+
textContext: null,
|
|
3200
|
+
position: {},
|
|
3201
|
+
additional: null,
|
|
3202
|
+
attribute: !1,
|
|
3203
|
+
nonTerminated: !0
|
|
3204
|
+
}, tab = 9, lineFeed = 10, formFeed = 12, space = 32, ampersand = 38, semicolon = 59, lessThan = 60, equalsTo = 61, numberSign = 35, uppercaseX = 88, lowercaseX = 120, replacementCharacter = 65533, name = "named", hexa = "hexadecimal", deci = "decimal", bases = {};
|
|
3205
|
+
bases[hexa] = 16, bases[deci] = 10;
|
|
3206
|
+
var tests = {};
|
|
3207
|
+
tests[name] = alphanumerical, tests[deci] = decimal, tests[hexa] = hexadecimal;
|
|
3208
|
+
var namedNotTerminated = 1, numericNotTerminated = 2, namedEmpty = 3, numericEmpty = 4, namedUnknown = 5, numericDisallowed = 6, numericProhibited = 7, messages = {};
|
|
3209
|
+
messages[namedNotTerminated] = "Named character references must be terminated by a semicolon", messages[numericNotTerminated] = "Numeric character references must be terminated by a semicolon", messages[namedEmpty] = "Named character references cannot be empty", messages[numericEmpty] = "Numeric character references cannot be empty", messages[namedUnknown] = "Named character references must be known", messages[numericDisallowed] = "Numeric character references cannot be disallowed", messages[numericProhibited] = "Numeric character references cannot be outside the permissible Unicode range";
|
|
3210
|
+
function parseEntities(value, options) {
|
|
3211
|
+
var settings = {}, option, key;
|
|
3212
|
+
options || (options = {});
|
|
3213
|
+
for (key in defaults)
|
|
3214
|
+
option = options[key], settings[key] = option ?? defaults[key];
|
|
3215
|
+
return (settings.position.indent || settings.position.start) && (settings.indent = settings.position.indent || [], settings.position = settings.position.start), parse(value, settings);
|
|
3216
|
+
}
|
|
3217
|
+
function parse(value, settings) {
|
|
3218
|
+
var additional = settings.additional, nonTerminated = settings.nonTerminated, handleText = settings.text, handleReference = settings.reference, handleWarning = settings.warning, textContext = settings.textContext, referenceContext = settings.referenceContext, warningContext = settings.warningContext, pos = settings.position, indent = settings.indent || [], length = value.length, index = 0, lines = -1, column = pos.column || 1, line = pos.line || 1, queue = "", result = [], entityCharacters, namedEntity, terminated, characters, character, reference, following, warning, reason, output, entity, begin, start, type, test, prev, next, diff, end;
|
|
3219
|
+
for (typeof additional == "string" && (additional = additional.charCodeAt(0)), prev = now(), warning = handleWarning ? parseError : noop, index--, length++; ++index < length; )
|
|
3220
|
+
if (character === lineFeed && (column = indent[lines] || 1), character = value.charCodeAt(index), character === ampersand) {
|
|
3221
|
+
if (following = value.charCodeAt(index + 1), following === tab || following === lineFeed || following === formFeed || following === space || following === ampersand || following === lessThan || following !== following || additional && following === additional) {
|
|
3222
|
+
queue += fromCharCode(character), column++;
|
|
3223
|
+
continue;
|
|
3224
|
+
}
|
|
3225
|
+
for (start = index + 1, begin = start, end = start, following === numberSign ? (end = ++begin, following = value.charCodeAt(end), following === uppercaseX || following === lowercaseX ? (type = hexa, end = ++begin) : type = deci) : type = name, entityCharacters = "", entity = "", characters = "", test = tests[type], end--; ++end < length && (following = value.charCodeAt(end), !!test(following)); )
|
|
3226
|
+
characters += fromCharCode(following), type === name && own.call(legacy, characters) && (entityCharacters = characters, entity = legacy[characters]);
|
|
3227
|
+
terminated = value.charCodeAt(end) === semicolon, terminated && (end++, namedEntity = type === name ? decodeEntity(characters) : !1, namedEntity && (entityCharacters = characters, entity = namedEntity)), diff = 1 + end - start, !terminated && !nonTerminated || (characters ? type === name ? (terminated && !entity ? warning(namedUnknown, 1) : (entityCharacters !== characters && (end = begin + entityCharacters.length, diff = 1 + end - begin, terminated = !1), terminated || (reason = entityCharacters ? namedNotTerminated : namedEmpty, settings.attribute ? (following = value.charCodeAt(end), following === equalsTo ? (warning(reason, diff), entity = null) : alphanumerical(following) ? entity = null : warning(reason, diff)) : warning(reason, diff))), reference = entity) : (terminated || warning(numericNotTerminated, diff), reference = parseInt(characters, bases[type]), prohibited(reference) ? (warning(numericProhibited, diff), reference = fromCharCode(replacementCharacter)) : reference in invalid ? (warning(numericDisallowed, diff), reference = invalid[reference]) : (output = "", disallowed(reference) && warning(numericDisallowed, diff), reference > 65535 && (reference -= 65536, output += fromCharCode(reference >>> 10 | 55296), reference = 56320 | reference & 1023), reference = output + fromCharCode(reference))) : type !== name && warning(numericEmpty, diff)), reference ? (flush(), prev = now(), index = end - 1, column += end - start + 1, result.push(reference), next = now(), next.offset++, handleReference && handleReference.call(
|
|
3228
|
+
referenceContext,
|
|
3229
|
+
reference,
|
|
3230
|
+
{ start: prev, end: next },
|
|
3231
|
+
value.slice(start - 1, end)
|
|
3232
|
+
), prev = next) : (characters = value.slice(start - 1, end), queue += characters, column += characters.length, index = end - 1);
|
|
3233
|
+
} else
|
|
3234
|
+
character === 10 && (line++, lines++, column = 0), character === character ? (queue += fromCharCode(character), column++) : flush();
|
|
3235
|
+
return result.join("");
|
|
3236
|
+
function now() {
|
|
3237
|
+
return {
|
|
3238
|
+
line,
|
|
3239
|
+
column,
|
|
3240
|
+
offset: index + (pos.offset || 0)
|
|
3241
|
+
};
|
|
3242
|
+
}
|
|
3243
|
+
function parseError(code, offset) {
|
|
3244
|
+
var position = now();
|
|
3245
|
+
position.column += offset, position.offset += offset, handleWarning.call(warningContext, messages[code], position, code);
|
|
3246
|
+
}
|
|
3247
|
+
function flush() {
|
|
3248
|
+
queue && (result.push(queue), handleText && handleText.call(textContext, queue, { start: prev, end: now() }), queue = "");
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
3251
|
+
function prohibited(code) {
|
|
3252
|
+
return code >= 55296 && code <= 57343 || code > 1114111;
|
|
3253
|
+
}
|
|
3254
|
+
function disallowed(code) {
|
|
3255
|
+
return code >= 1 && code <= 8 || code === 11 || code >= 13 && code <= 31 || code >= 127 && code <= 159 || code >= 64976 && code <= 65007 || (code & 65535) === 65535 || (code & 65535) === 65534;
|
|
3256
|
+
}
|
|
3257
|
+
return parseEntities_1;
|
|
3258
|
+
}
|
|
3259
|
+
var prismCore = { exports: {} }, hasRequiredPrismCore;
|
|
3260
|
+
function requirePrismCore() {
|
|
3261
|
+
return hasRequiredPrismCore || (hasRequiredPrismCore = 1, function(module) {
|
|
3262
|
+
var _self = typeof window < "u" ? window : typeof WorkerGlobalScope < "u" && self instanceof WorkerGlobalScope ? self : {};
|
|
3263
|
+
/**
|
|
3264
|
+
* Prism: Lightweight, robust, elegant syntax highlighting
|
|
3265
|
+
*
|
|
3266
|
+
* @license MIT <https://opensource.org/licenses/MIT>
|
|
3267
|
+
* @author Lea Verou <https://lea.verou.me>
|
|
3268
|
+
* @namespace
|
|
3269
|
+
* @public
|
|
3270
|
+
*/
|
|
3271
|
+
var Prism = function(_self2) {
|
|
3272
|
+
var lang2 = /(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i, uniqueId = 0, plainTextGrammar = {}, _ = {
|
|
3273
|
+
/**
|
|
3274
|
+
* By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the
|
|
3275
|
+
* current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load
|
|
3276
|
+
* additional languages or plugins yourself.
|
|
3277
|
+
*
|
|
3278
|
+
* By setting this value to `true`, Prism will not automatically highlight all code elements on the page.
|
|
3279
|
+
*
|
|
3280
|
+
* You obviously have to change this value before the automatic highlighting started. To do this, you can add an
|
|
3281
|
+
* empty Prism object into the global scope before loading the Prism script like this:
|
|
3282
|
+
*
|
|
3283
|
+
* ```js
|
|
3284
|
+
* window.Prism = window.Prism || {};
|
|
3285
|
+
* Prism.manual = true;
|
|
3286
|
+
* // add a new <script> to load Prism's script
|
|
3287
|
+
* ```
|
|
3288
|
+
*
|
|
3289
|
+
* @default false
|
|
3290
|
+
* @type {boolean}
|
|
3291
|
+
* @memberof Prism
|
|
3292
|
+
* @public
|
|
3293
|
+
*/
|
|
3294
|
+
manual: _self2.Prism && _self2.Prism.manual,
|
|
3295
|
+
/**
|
|
3296
|
+
* By default, if Prism is in a web worker, it assumes that it is in a worker it created itself, so it uses
|
|
3297
|
+
* `addEventListener` to communicate with its parent instance. However, if you're using Prism manually in your
|
|
3298
|
+
* own worker, you don't want it to do this.
|
|
3299
|
+
*
|
|
3300
|
+
* By setting this value to `true`, Prism will not add its own listeners to the worker.
|
|
3301
|
+
*
|
|
3302
|
+
* You obviously have to change this value before Prism executes. To do this, you can add an
|
|
3303
|
+
* empty Prism object into the global scope before loading the Prism script like this:
|
|
3304
|
+
*
|
|
3305
|
+
* ```js
|
|
3306
|
+
* window.Prism = window.Prism || {};
|
|
3307
|
+
* Prism.disableWorkerMessageHandler = true;
|
|
3308
|
+
* // Load Prism's script
|
|
3309
|
+
* ```
|
|
3310
|
+
*
|
|
3311
|
+
* @default false
|
|
3312
|
+
* @type {boolean}
|
|
3313
|
+
* @memberof Prism
|
|
3314
|
+
* @public
|
|
3315
|
+
*/
|
|
3316
|
+
disableWorkerMessageHandler: _self2.Prism && _self2.Prism.disableWorkerMessageHandler,
|
|
3317
|
+
/**
|
|
3318
|
+
* A namespace for utility methods.
|
|
3319
|
+
*
|
|
3320
|
+
* All function in this namespace that are not explicitly marked as _public_ are for __internal use only__ and may
|
|
3321
|
+
* change or disappear at any time.
|
|
3322
|
+
*
|
|
3323
|
+
* @namespace
|
|
3324
|
+
* @memberof Prism
|
|
3325
|
+
*/
|
|
3326
|
+
util: {
|
|
3327
|
+
encode: function encode(tokens) {
|
|
3328
|
+
return tokens instanceof Token ? new Token(tokens.type, encode(tokens.content), tokens.alias) : Array.isArray(tokens) ? tokens.map(encode) : tokens.replace(/&/g, "&").replace(/</g, "<").replace(/\u00a0/g, " ");
|
|
3329
|
+
},
|
|
3330
|
+
/**
|
|
3331
|
+
* Returns the name of the type of the given value.
|
|
3332
|
+
*
|
|
3333
|
+
* @param {any} o
|
|
3334
|
+
* @returns {string}
|
|
3335
|
+
* @example
|
|
3336
|
+
* type(null) === 'Null'
|
|
3337
|
+
* type(undefined) === 'Undefined'
|
|
3338
|
+
* type(123) === 'Number'
|
|
3339
|
+
* type('foo') === 'String'
|
|
3340
|
+
* type(true) === 'Boolean'
|
|
3341
|
+
* type([1, 2]) === 'Array'
|
|
3342
|
+
* type({}) === 'Object'
|
|
3343
|
+
* type(String) === 'Function'
|
|
3344
|
+
* type(/abc+/) === 'RegExp'
|
|
3345
|
+
*/
|
|
3346
|
+
type: function(o) {
|
|
3347
|
+
return Object.prototype.toString.call(o).slice(8, -1);
|
|
3348
|
+
},
|
|
3349
|
+
/**
|
|
3350
|
+
* Returns a unique number for the given object. Later calls will still return the same number.
|
|
3351
|
+
*
|
|
3352
|
+
* @param {Object} obj
|
|
3353
|
+
* @returns {number}
|
|
3354
|
+
*/
|
|
3355
|
+
objId: function(obj) {
|
|
3356
|
+
return obj.__id || Object.defineProperty(obj, "__id", { value: ++uniqueId }), obj.__id;
|
|
3357
|
+
},
|
|
3358
|
+
/**
|
|
3359
|
+
* Creates a deep clone of the given object.
|
|
3360
|
+
*
|
|
3361
|
+
* The main intended use of this function is to clone language definitions.
|
|
3362
|
+
*
|
|
3363
|
+
* @param {T} o
|
|
3364
|
+
* @param {Record<number, any>} [visited]
|
|
3365
|
+
* @returns {T}
|
|
3366
|
+
* @template T
|
|
3367
|
+
*/
|
|
3368
|
+
clone: function deepClone(o, visited) {
|
|
3369
|
+
visited = visited || {};
|
|
3370
|
+
var clone, id;
|
|
3371
|
+
switch (_.util.type(o)) {
|
|
3372
|
+
case "Object":
|
|
3373
|
+
if (id = _.util.objId(o), visited[id])
|
|
3374
|
+
return visited[id];
|
|
3375
|
+
clone = /** @type {Record<string, any>} */
|
|
3376
|
+
{}, visited[id] = clone;
|
|
3377
|
+
for (var key in o)
|
|
3378
|
+
o.hasOwnProperty(key) && (clone[key] = deepClone(o[key], visited));
|
|
3379
|
+
return (
|
|
3380
|
+
/** @type {any} */
|
|
3381
|
+
clone
|
|
3382
|
+
);
|
|
3383
|
+
case "Array":
|
|
3384
|
+
return id = _.util.objId(o), visited[id] ? visited[id] : (clone = [], visited[id] = clone, /** @type {Array} */
|
|
3385
|
+
/** @type {any} */
|
|
3386
|
+
o.forEach(function(v, i) {
|
|
3387
|
+
clone[i] = deepClone(v, visited);
|
|
3388
|
+
}), /** @type {any} */
|
|
3389
|
+
clone);
|
|
3390
|
+
default:
|
|
3391
|
+
return o;
|
|
3392
|
+
}
|
|
3393
|
+
},
|
|
3394
|
+
/**
|
|
3395
|
+
* Returns the Prism language of the given element set by a `language-xxxx` or `lang-xxxx` class.
|
|
3396
|
+
*
|
|
3397
|
+
* If no language is set for the element or the element is `null` or `undefined`, `none` will be returned.
|
|
3398
|
+
*
|
|
3399
|
+
* @param {Element} element
|
|
3400
|
+
* @returns {string}
|
|
3401
|
+
*/
|
|
3402
|
+
getLanguage: function(element) {
|
|
3403
|
+
for (; element; ) {
|
|
3404
|
+
var m = lang2.exec(element.className);
|
|
3405
|
+
if (m)
|
|
3406
|
+
return m[1].toLowerCase();
|
|
3407
|
+
element = element.parentElement;
|
|
3408
|
+
}
|
|
3409
|
+
return "none";
|
|
3410
|
+
},
|
|
3411
|
+
/**
|
|
3412
|
+
* Sets the Prism `language-xxxx` class of the given element.
|
|
3413
|
+
*
|
|
3414
|
+
* @param {Element} element
|
|
3415
|
+
* @param {string} language
|
|
3416
|
+
* @returns {void}
|
|
3417
|
+
*/
|
|
3418
|
+
setLanguage: function(element, language) {
|
|
3419
|
+
element.className = element.className.replace(RegExp(lang2, "gi"), ""), element.classList.add("language-" + language);
|
|
3420
|
+
},
|
|
3421
|
+
/**
|
|
3422
|
+
* Returns the script element that is currently executing.
|
|
3423
|
+
*
|
|
3424
|
+
* This does __not__ work for line script element.
|
|
3425
|
+
*
|
|
3426
|
+
* @returns {HTMLScriptElement | null}
|
|
3427
|
+
*/
|
|
3428
|
+
currentScript: function() {
|
|
3429
|
+
if (typeof document > "u")
|
|
3430
|
+
return null;
|
|
3431
|
+
if ("currentScript" in document)
|
|
3432
|
+
return (
|
|
3433
|
+
/** @type {any} */
|
|
3434
|
+
document.currentScript
|
|
3435
|
+
);
|
|
3436
|
+
try {
|
|
3437
|
+
throw new Error();
|
|
3438
|
+
} catch (err) {
|
|
3439
|
+
var src = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(err.stack) || [])[1];
|
|
3440
|
+
if (src) {
|
|
3441
|
+
var scripts = document.getElementsByTagName("script");
|
|
3442
|
+
for (var i in scripts)
|
|
3443
|
+
if (scripts[i].src == src)
|
|
3444
|
+
return scripts[i];
|
|
3445
|
+
}
|
|
3446
|
+
return null;
|
|
3447
|
+
}
|
|
3448
|
+
},
|
|
3449
|
+
/**
|
|
3450
|
+
* Returns whether a given class is active for `element`.
|
|
3451
|
+
*
|
|
3452
|
+
* The class can be activated if `element` or one of its ancestors has the given class and it can be deactivated
|
|
3453
|
+
* if `element` or one of its ancestors has the negated version of the given class. The _negated version_ of the
|
|
3454
|
+
* given class is just the given class with a `no-` prefix.
|
|
3455
|
+
*
|
|
3456
|
+
* Whether the class is active is determined by the closest ancestor of `element` (where `element` itself is
|
|
3457
|
+
* closest ancestor) that has the given class or the negated version of it. If neither `element` nor any of its
|
|
3458
|
+
* ancestors have the given class or the negated version of it, then the default activation will be returned.
|
|
3459
|
+
*
|
|
3460
|
+
* In the paradoxical situation where the closest ancestor contains __both__ the given class and the negated
|
|
3461
|
+
* version of it, the class is considered active.
|
|
3462
|
+
*
|
|
3463
|
+
* @param {Element} element
|
|
3464
|
+
* @param {string} className
|
|
3465
|
+
* @param {boolean} [defaultActivation=false]
|
|
3466
|
+
* @returns {boolean}
|
|
3467
|
+
*/
|
|
3468
|
+
isActive: function(element, className, defaultActivation) {
|
|
3469
|
+
for (var no2 = "no-" + className; element; ) {
|
|
3470
|
+
var classList = element.classList;
|
|
3471
|
+
if (classList.contains(className))
|
|
3472
|
+
return !0;
|
|
3473
|
+
if (classList.contains(no2))
|
|
3474
|
+
return !1;
|
|
3475
|
+
element = element.parentElement;
|
|
3476
|
+
}
|
|
3477
|
+
return !!defaultActivation;
|
|
3478
|
+
}
|
|
3479
|
+
},
|
|
3480
|
+
/**
|
|
3481
|
+
* This namespace contains all currently loaded languages and the some helper functions to create and modify languages.
|
|
3482
|
+
*
|
|
3483
|
+
* @namespace
|
|
3484
|
+
* @memberof Prism
|
|
3485
|
+
* @public
|
|
3486
|
+
*/
|
|
3487
|
+
languages: {
|
|
3488
|
+
/**
|
|
3489
|
+
* The grammar for plain, unformatted text.
|
|
3490
|
+
*/
|
|
3491
|
+
plain: plainTextGrammar,
|
|
3492
|
+
plaintext: plainTextGrammar,
|
|
3493
|
+
text: plainTextGrammar,
|
|
3494
|
+
txt: plainTextGrammar,
|
|
3495
|
+
/**
|
|
3496
|
+
* Creates a deep copy of the language with the given id and appends the given tokens.
|
|
3497
|
+
*
|
|
3498
|
+
* If a token in `redef` also appears in the copied language, then the existing token in the copied language
|
|
3499
|
+
* will be overwritten at its original position.
|
|
3500
|
+
*
|
|
3501
|
+
* ## Best practices
|
|
3502
|
+
*
|
|
3503
|
+
* Since the position of overwriting tokens (token in `redef` that overwrite tokens in the copied language)
|
|
3504
|
+
* doesn't matter, they can technically be in any order. However, this can be confusing to others that trying to
|
|
3505
|
+
* understand the language definition because, normally, the order of tokens matters in Prism grammars.
|
|
3506
|
+
*
|
|
3507
|
+
* Therefore, it is encouraged to order overwriting tokens according to the positions of the overwritten tokens.
|
|
3508
|
+
* Furthermore, all non-overwriting tokens should be placed after the overwriting ones.
|
|
3509
|
+
*
|
|
3510
|
+
* @param {string} id The id of the language to extend. This has to be a key in `Prism.languages`.
|
|
3511
|
+
* @param {Grammar} redef The new tokens to append.
|
|
3512
|
+
* @returns {Grammar} The new language created.
|
|
3513
|
+
* @public
|
|
3514
|
+
* @example
|
|
3515
|
+
* Prism.languages['css-with-colors'] = Prism.languages.extend('css', {
|
|
3516
|
+
* // Prism.languages.css already has a 'comment' token, so this token will overwrite CSS' 'comment' token
|
|
3517
|
+
* // at its original position
|
|
3518
|
+
* 'comment': { ... },
|
|
3519
|
+
* // CSS doesn't have a 'color' token, so this token will be appended
|
|
3520
|
+
* 'color': /\b(?:red|green|blue)\b/
|
|
3521
|
+
* });
|
|
3522
|
+
*/
|
|
3523
|
+
extend: function(id, redef) {
|
|
3524
|
+
var lang3 = _.util.clone(_.languages[id]);
|
|
3525
|
+
for (var key in redef)
|
|
3526
|
+
lang3[key] = redef[key];
|
|
3527
|
+
return lang3;
|
|
3528
|
+
},
|
|
3529
|
+
/**
|
|
3530
|
+
* Inserts tokens _before_ another token in a language definition or any other grammar.
|
|
3531
|
+
*
|
|
3532
|
+
* ## Usage
|
|
3533
|
+
*
|
|
3534
|
+
* This helper method makes it easy to modify existing languages. For example, the CSS language definition
|
|
3535
|
+
* not only defines CSS highlighting for CSS documents, but also needs to define highlighting for CSS embedded
|
|
3536
|
+
* in HTML through `<style>` elements. To do this, it needs to modify `Prism.languages.markup` and add the
|
|
3537
|
+
* appropriate tokens. However, `Prism.languages.markup` is a regular JavaScript object literal, so if you do
|
|
3538
|
+
* this:
|
|
3539
|
+
*
|
|
3540
|
+
* ```js
|
|
3541
|
+
* Prism.languages.markup.style = {
|
|
3542
|
+
* // token
|
|
3543
|
+
* };
|
|
3544
|
+
* ```
|
|
3545
|
+
*
|
|
3546
|
+
* then the `style` token will be added (and processed) at the end. `insertBefore` allows you to insert tokens
|
|
3547
|
+
* before existing tokens. For the CSS example above, you would use it like this:
|
|
3548
|
+
*
|
|
3549
|
+
* ```js
|
|
3550
|
+
* Prism.languages.insertBefore('markup', 'cdata', {
|
|
3551
|
+
* 'style': {
|
|
3552
|
+
* // token
|
|
3553
|
+
* }
|
|
3554
|
+
* });
|
|
3555
|
+
* ```
|
|
3556
|
+
*
|
|
3557
|
+
* ## Special cases
|
|
3558
|
+
*
|
|
3559
|
+
* If the grammars of `inside` and `insert` have tokens with the same name, the tokens in `inside`'s grammar
|
|
3560
|
+
* will be ignored.
|
|
3561
|
+
*
|
|
3562
|
+
* This behavior can be used to insert tokens after `before`:
|
|
3563
|
+
*
|
|
3564
|
+
* ```js
|
|
3565
|
+
* Prism.languages.insertBefore('markup', 'comment', {
|
|
3566
|
+
* 'comment': Prism.languages.markup.comment,
|
|
3567
|
+
* // tokens after 'comment'
|
|
3568
|
+
* });
|
|
3569
|
+
* ```
|
|
3570
|
+
*
|
|
3571
|
+
* ## Limitations
|
|
3572
|
+
*
|
|
3573
|
+
* The main problem `insertBefore` has to solve is iteration order. Since ES2015, the iteration order for object
|
|
3574
|
+
* properties is guaranteed to be the insertion order (except for integer keys) but some browsers behave
|
|
3575
|
+
* differently when keys are deleted and re-inserted. So `insertBefore` can't be implemented by temporarily
|
|
3576
|
+
* deleting properties which is necessary to insert at arbitrary positions.
|
|
3577
|
+
*
|
|
3578
|
+
* To solve this problem, `insertBefore` doesn't actually insert the given tokens into the target object.
|
|
3579
|
+
* Instead, it will create a new object and replace all references to the target object with the new one. This
|
|
3580
|
+
* can be done without temporarily deleting properties, so the iteration order is well-defined.
|
|
3581
|
+
*
|
|
3582
|
+
* However, only references that can be reached from `Prism.languages` or `insert` will be replaced. I.e. if
|
|
3583
|
+
* you hold the target object in a variable, then the value of the variable will not change.
|
|
3584
|
+
*
|
|
3585
|
+
* ```js
|
|
3586
|
+
* var oldMarkup = Prism.languages.markup;
|
|
3587
|
+
* var newMarkup = Prism.languages.insertBefore('markup', 'comment', { ... });
|
|
3588
|
+
*
|
|
3589
|
+
* assert(oldMarkup !== Prism.languages.markup);
|
|
3590
|
+
* assert(newMarkup === Prism.languages.markup);
|
|
3591
|
+
* ```
|
|
3592
|
+
*
|
|
3593
|
+
* @param {string} inside The property of `root` (e.g. a language id in `Prism.languages`) that contains the
|
|
3594
|
+
* object to be modified.
|
|
3595
|
+
* @param {string} before The key to insert before.
|
|
3596
|
+
* @param {Grammar} insert An object containing the key-value pairs to be inserted.
|
|
3597
|
+
* @param {Object<string, any>} [root] The object containing `inside`, i.e. the object that contains the
|
|
3598
|
+
* object to be modified.
|
|
3599
|
+
*
|
|
3600
|
+
* Defaults to `Prism.languages`.
|
|
3601
|
+
* @returns {Grammar} The new grammar object.
|
|
3602
|
+
* @public
|
|
3603
|
+
*/
|
|
3604
|
+
insertBefore: function(inside, before, insert, root) {
|
|
3605
|
+
root = root || /** @type {any} */
|
|
3606
|
+
_.languages;
|
|
3607
|
+
var grammar = root[inside], ret = {};
|
|
3608
|
+
for (var token in grammar)
|
|
3609
|
+
if (grammar.hasOwnProperty(token)) {
|
|
3610
|
+
if (token == before)
|
|
3611
|
+
for (var newToken in insert)
|
|
3612
|
+
insert.hasOwnProperty(newToken) && (ret[newToken] = insert[newToken]);
|
|
3613
|
+
insert.hasOwnProperty(token) || (ret[token] = grammar[token]);
|
|
3614
|
+
}
|
|
3615
|
+
var old = root[inside];
|
|
3616
|
+
return root[inside] = ret, _.languages.DFS(_.languages, function(key, value) {
|
|
3617
|
+
value === old && key != inside && (this[key] = ret);
|
|
3618
|
+
}), ret;
|
|
3619
|
+
},
|
|
3620
|
+
// Traverse a language definition with Depth First Search
|
|
3621
|
+
DFS: function DFS(o, callback, type, visited) {
|
|
3622
|
+
visited = visited || {};
|
|
3623
|
+
var objId = _.util.objId;
|
|
3624
|
+
for (var i in o)
|
|
3625
|
+
if (o.hasOwnProperty(i)) {
|
|
3626
|
+
callback.call(o, i, o[i], type || i);
|
|
3627
|
+
var property = o[i], propertyType = _.util.type(property);
|
|
3628
|
+
propertyType === "Object" && !visited[objId(property)] ? (visited[objId(property)] = !0, DFS(property, callback, null, visited)) : propertyType === "Array" && !visited[objId(property)] && (visited[objId(property)] = !0, DFS(property, callback, i, visited));
|
|
3629
|
+
}
|
|
3630
|
+
}
|
|
3631
|
+
},
|
|
3632
|
+
plugins: {},
|
|
3633
|
+
/**
|
|
3634
|
+
* This is the most high-level function in Prism’s API.
|
|
3635
|
+
* It fetches all the elements that have a `.language-xxxx` class and then calls {@link Prism.highlightElement} on
|
|
3636
|
+
* each one of them.
|
|
3637
|
+
*
|
|
3638
|
+
* This is equivalent to `Prism.highlightAllUnder(document, async, callback)`.
|
|
3639
|
+
*
|
|
3640
|
+
* @param {boolean} [async=false] Same as in {@link Prism.highlightAllUnder}.
|
|
3641
|
+
* @param {HighlightCallback} [callback] Same as in {@link Prism.highlightAllUnder}.
|
|
3642
|
+
* @memberof Prism
|
|
3643
|
+
* @public
|
|
3644
|
+
*/
|
|
3645
|
+
highlightAll: function(async, callback) {
|
|
3646
|
+
_.highlightAllUnder(document, async, callback);
|
|
3647
|
+
},
|
|
3648
|
+
/**
|
|
3649
|
+
* Fetches all the descendants of `container` that have a `.language-xxxx` class and then calls
|
|
3650
|
+
* {@link Prism.highlightElement} on each one of them.
|
|
3651
|
+
*
|
|
3652
|
+
* The following hooks will be run:
|
|
3653
|
+
* 1. `before-highlightall`
|
|
3654
|
+
* 2. `before-all-elements-highlight`
|
|
3655
|
+
* 3. All hooks of {@link Prism.highlightElement} for each element.
|
|
3656
|
+
*
|
|
3657
|
+
* @param {ParentNode} container The root element, whose descendants that have a `.language-xxxx` class will be highlighted.
|
|
3658
|
+
* @param {boolean} [async=false] Whether each element is to be highlighted asynchronously using Web Workers.
|
|
3659
|
+
* @param {HighlightCallback} [callback] An optional callback to be invoked on each element after its highlighting is done.
|
|
3660
|
+
* @memberof Prism
|
|
3661
|
+
* @public
|
|
3662
|
+
*/
|
|
3663
|
+
highlightAllUnder: function(container, async, callback) {
|
|
3664
|
+
var env = {
|
|
3665
|
+
callback,
|
|
3666
|
+
container,
|
|
3667
|
+
selector: 'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'
|
|
3668
|
+
};
|
|
3669
|
+
_.hooks.run("before-highlightall", env), env.elements = Array.prototype.slice.apply(env.container.querySelectorAll(env.selector)), _.hooks.run("before-all-elements-highlight", env);
|
|
3670
|
+
for (var i = 0, element; element = env.elements[i++]; )
|
|
3671
|
+
_.highlightElement(element, async === !0, env.callback);
|
|
3672
|
+
},
|
|
3673
|
+
/**
|
|
3674
|
+
* Highlights the code inside a single element.
|
|
3675
|
+
*
|
|
3676
|
+
* The following hooks will be run:
|
|
3677
|
+
* 1. `before-sanity-check`
|
|
3678
|
+
* 2. `before-highlight`
|
|
3679
|
+
* 3. All hooks of {@link Prism.highlight}. These hooks will be run by an asynchronous worker if `async` is `true`.
|
|
3680
|
+
* 4. `before-insert`
|
|
3681
|
+
* 5. `after-highlight`
|
|
3682
|
+
* 6. `complete`
|
|
3683
|
+
*
|
|
3684
|
+
* Some the above hooks will be skipped if the element doesn't contain any text or there is no grammar loaded for
|
|
3685
|
+
* the element's language.
|
|
3686
|
+
*
|
|
3687
|
+
* @param {Element} element The element containing the code.
|
|
3688
|
+
* It must have a class of `language-xxxx` to be processed, where `xxxx` is a valid language identifier.
|
|
3689
|
+
* @param {boolean} [async=false] Whether the element is to be highlighted asynchronously using Web Workers
|
|
3690
|
+
* to improve performance and avoid blocking the UI when highlighting very large chunks of code. This option is
|
|
3691
|
+
* [disabled by default](https://prismjs.com/faq.html#why-is-asynchronous-highlighting-disabled-by-default).
|
|
3692
|
+
*
|
|
3693
|
+
* Note: All language definitions required to highlight the code must be included in the main `prism.js` file for
|
|
3694
|
+
* asynchronous highlighting to work. You can build your own bundle on the
|
|
3695
|
+
* [Download page](https://prismjs.com/download.html).
|
|
3696
|
+
* @param {HighlightCallback} [callback] An optional callback to be invoked after the highlighting is done.
|
|
3697
|
+
* Mostly useful when `async` is `true`, since in that case, the highlighting is done asynchronously.
|
|
3698
|
+
* @memberof Prism
|
|
3699
|
+
* @public
|
|
3700
|
+
*/
|
|
3701
|
+
highlightElement: function(element, async, callback) {
|
|
3702
|
+
var language = _.util.getLanguage(element), grammar = _.languages[language];
|
|
3703
|
+
_.util.setLanguage(element, language);
|
|
3704
|
+
var parent = element.parentElement;
|
|
3705
|
+
parent && parent.nodeName.toLowerCase() === "pre" && _.util.setLanguage(parent, language);
|
|
3706
|
+
var code = element.textContent, env = {
|
|
3707
|
+
element,
|
|
3708
|
+
language,
|
|
3709
|
+
grammar,
|
|
3710
|
+
code
|
|
3711
|
+
};
|
|
3712
|
+
function insertHighlightedCode(highlightedCode) {
|
|
3713
|
+
env.highlightedCode = highlightedCode, _.hooks.run("before-insert", env), env.element.innerHTML = env.highlightedCode, _.hooks.run("after-highlight", env), _.hooks.run("complete", env), callback && callback.call(env.element);
|
|
3714
|
+
}
|
|
3715
|
+
if (_.hooks.run("before-sanity-check", env), parent = env.element.parentElement, parent && parent.nodeName.toLowerCase() === "pre" && !parent.hasAttribute("tabindex") && parent.setAttribute("tabindex", "0"), !env.code) {
|
|
3716
|
+
_.hooks.run("complete", env), callback && callback.call(env.element);
|
|
3717
|
+
return;
|
|
3718
|
+
}
|
|
3719
|
+
if (_.hooks.run("before-highlight", env), !env.grammar) {
|
|
3720
|
+
insertHighlightedCode(_.util.encode(env.code));
|
|
3721
|
+
return;
|
|
3722
|
+
}
|
|
3723
|
+
if (async && _self2.Worker) {
|
|
3724
|
+
var worker = new Worker(_.filename);
|
|
3725
|
+
worker.onmessage = function(evt) {
|
|
3726
|
+
insertHighlightedCode(evt.data);
|
|
3727
|
+
}, worker.postMessage(JSON.stringify({
|
|
3728
|
+
language: env.language,
|
|
3729
|
+
code: env.code,
|
|
3730
|
+
immediateClose: !0
|
|
3731
|
+
}));
|
|
3732
|
+
} else
|
|
3733
|
+
insertHighlightedCode(_.highlight(env.code, env.grammar, env.language));
|
|
3734
|
+
},
|
|
3735
|
+
/**
|
|
3736
|
+
* Low-level function, only use if you know what you’re doing. It accepts a string of text as input
|
|
3737
|
+
* and the language definitions to use, and returns a string with the HTML produced.
|
|
3738
|
+
*
|
|
3739
|
+
* The following hooks will be run:
|
|
3740
|
+
* 1. `before-tokenize`
|
|
3741
|
+
* 2. `after-tokenize`
|
|
3742
|
+
* 3. `wrap`: On each {@link Token}.
|
|
3743
|
+
*
|
|
3744
|
+
* @param {string} text A string with the code to be highlighted.
|
|
3745
|
+
* @param {Grammar} grammar An object containing the tokens to use.
|
|
3746
|
+
*
|
|
3747
|
+
* Usually a language definition like `Prism.languages.markup`.
|
|
3748
|
+
* @param {string} language The name of the language definition passed to `grammar`.
|
|
3749
|
+
* @returns {string} The highlighted HTML.
|
|
3750
|
+
* @memberof Prism
|
|
3751
|
+
* @public
|
|
3752
|
+
* @example
|
|
3753
|
+
* Prism.highlight('var foo = true;', Prism.languages.javascript, 'javascript');
|
|
3754
|
+
*/
|
|
3755
|
+
highlight: function(text, grammar, language) {
|
|
3756
|
+
var env = {
|
|
3757
|
+
code: text,
|
|
3758
|
+
grammar,
|
|
3759
|
+
language
|
|
3760
|
+
};
|
|
3761
|
+
if (_.hooks.run("before-tokenize", env), !env.grammar)
|
|
3762
|
+
throw new Error('The language "' + env.language + '" has no grammar.');
|
|
3763
|
+
return env.tokens = _.tokenize(env.code, env.grammar), _.hooks.run("after-tokenize", env), Token.stringify(_.util.encode(env.tokens), env.language);
|
|
3764
|
+
},
|
|
3765
|
+
/**
|
|
3766
|
+
* This is the heart of Prism, and the most low-level function you can use. It accepts a string of text as input
|
|
3767
|
+
* and the language definitions to use, and returns an array with the tokenized code.
|
|
3768
|
+
*
|
|
3769
|
+
* When the language definition includes nested tokens, the function is called recursively on each of these tokens.
|
|
3770
|
+
*
|
|
3771
|
+
* This method could be useful in other contexts as well, as a very crude parser.
|
|
3772
|
+
*
|
|
3773
|
+
* @param {string} text A string with the code to be highlighted.
|
|
3774
|
+
* @param {Grammar} grammar An object containing the tokens to use.
|
|
3775
|
+
*
|
|
3776
|
+
* Usually a language definition like `Prism.languages.markup`.
|
|
3777
|
+
* @returns {TokenStream} An array of strings and tokens, a token stream.
|
|
3778
|
+
* @memberof Prism
|
|
3779
|
+
* @public
|
|
3780
|
+
* @example
|
|
3781
|
+
* let code = `var foo = 0;`;
|
|
3782
|
+
* let tokens = Prism.tokenize(code, Prism.languages.javascript);
|
|
3783
|
+
* tokens.forEach(token => {
|
|
3784
|
+
* if (token instanceof Prism.Token && token.type === 'number') {
|
|
3785
|
+
* console.log(`Found numeric literal: ${token.content}`);
|
|
3786
|
+
* }
|
|
3787
|
+
* });
|
|
3788
|
+
*/
|
|
3789
|
+
tokenize: function(text, grammar) {
|
|
3790
|
+
var rest = grammar.rest;
|
|
3791
|
+
if (rest) {
|
|
3792
|
+
for (var token in rest)
|
|
3793
|
+
grammar[token] = rest[token];
|
|
3794
|
+
delete grammar.rest;
|
|
3795
|
+
}
|
|
3796
|
+
var tokenList = new LinkedList();
|
|
3797
|
+
return addAfter(tokenList, tokenList.head, text), matchGrammar(text, tokenList, grammar, tokenList.head, 0), toArray(tokenList);
|
|
3798
|
+
},
|
|
3799
|
+
/**
|
|
3800
|
+
* @namespace
|
|
3801
|
+
* @memberof Prism
|
|
3802
|
+
* @public
|
|
3803
|
+
*/
|
|
3804
|
+
hooks: {
|
|
3805
|
+
all: {},
|
|
3806
|
+
/**
|
|
3807
|
+
* Adds the given callback to the list of callbacks for the given hook.
|
|
3808
|
+
*
|
|
3809
|
+
* The callback will be invoked when the hook it is registered for is run.
|
|
3810
|
+
* Hooks are usually directly run by a highlight function but you can also run hooks yourself.
|
|
3811
|
+
*
|
|
3812
|
+
* One callback function can be registered to multiple hooks and the same hook multiple times.
|
|
3813
|
+
*
|
|
3814
|
+
* @param {string} name The name of the hook.
|
|
3815
|
+
* @param {HookCallback} callback The callback function which is given environment variables.
|
|
3816
|
+
* @public
|
|
3817
|
+
*/
|
|
3818
|
+
add: function(name, callback) {
|
|
3819
|
+
var hooks = _.hooks.all;
|
|
3820
|
+
hooks[name] = hooks[name] || [], hooks[name].push(callback);
|
|
3821
|
+
},
|
|
3822
|
+
/**
|
|
3823
|
+
* Runs a hook invoking all registered callbacks with the given environment variables.
|
|
3824
|
+
*
|
|
3825
|
+
* Callbacks will be invoked synchronously and in the order in which they were registered.
|
|
3826
|
+
*
|
|
3827
|
+
* @param {string} name The name of the hook.
|
|
3828
|
+
* @param {Object<string, any>} env The environment variables of the hook passed to all callbacks registered.
|
|
3829
|
+
* @public
|
|
3830
|
+
*/
|
|
3831
|
+
run: function(name, env) {
|
|
3832
|
+
var callbacks = _.hooks.all[name];
|
|
3833
|
+
if (!(!callbacks || !callbacks.length))
|
|
3834
|
+
for (var i = 0, callback; callback = callbacks[i++]; )
|
|
3835
|
+
callback(env);
|
|
3836
|
+
}
|
|
3837
|
+
},
|
|
3838
|
+
Token
|
|
3839
|
+
};
|
|
3840
|
+
_self2.Prism = _;
|
|
3841
|
+
function Token(type, content, alias, matchedStr) {
|
|
3842
|
+
this.type = type, this.content = content, this.alias = alias, this.length = (matchedStr || "").length | 0;
|
|
3843
|
+
}
|
|
3844
|
+
Token.stringify = function stringify(o, language) {
|
|
3845
|
+
if (typeof o == "string")
|
|
3846
|
+
return o;
|
|
3847
|
+
if (Array.isArray(o)) {
|
|
3848
|
+
var s = "";
|
|
3849
|
+
return o.forEach(function(e) {
|
|
3850
|
+
s += stringify(e, language);
|
|
3851
|
+
}), s;
|
|
3852
|
+
}
|
|
3853
|
+
var env = {
|
|
3854
|
+
type: o.type,
|
|
3855
|
+
content: stringify(o.content, language),
|
|
3856
|
+
tag: "span",
|
|
3857
|
+
classes: ["token", o.type],
|
|
3858
|
+
attributes: {},
|
|
3859
|
+
language
|
|
3860
|
+
}, aliases = o.alias;
|
|
3861
|
+
aliases && (Array.isArray(aliases) ? Array.prototype.push.apply(env.classes, aliases) : env.classes.push(aliases)), _.hooks.run("wrap", env);
|
|
3862
|
+
var attributes = "";
|
|
3863
|
+
for (var name in env.attributes)
|
|
3864
|
+
attributes += " " + name + '="' + (env.attributes[name] || "").replace(/"/g, """) + '"';
|
|
3865
|
+
return "<" + env.tag + ' class="' + env.classes.join(" ") + '"' + attributes + ">" + env.content + "</" + env.tag + ">";
|
|
3866
|
+
};
|
|
3867
|
+
function matchPattern(pattern, pos, text, lookbehind) {
|
|
3868
|
+
pattern.lastIndex = pos;
|
|
3869
|
+
var match = pattern.exec(text);
|
|
3870
|
+
if (match && lookbehind && match[1]) {
|
|
3871
|
+
var lookbehindLength = match[1].length;
|
|
3872
|
+
match.index += lookbehindLength, match[0] = match[0].slice(lookbehindLength);
|
|
3873
|
+
}
|
|
3874
|
+
return match;
|
|
3875
|
+
}
|
|
3876
|
+
function matchGrammar(text, tokenList, grammar, startNode, startPos, rematch) {
|
|
3877
|
+
for (var token in grammar)
|
|
3878
|
+
if (!(!grammar.hasOwnProperty(token) || !grammar[token])) {
|
|
3879
|
+
var patterns = grammar[token];
|
|
3880
|
+
patterns = Array.isArray(patterns) ? patterns : [patterns];
|
|
3881
|
+
for (var j = 0; j < patterns.length; ++j) {
|
|
3882
|
+
if (rematch && rematch.cause == token + "," + j)
|
|
3883
|
+
return;
|
|
3884
|
+
var patternObj = patterns[j], inside = patternObj.inside, lookbehind = !!patternObj.lookbehind, greedy = !!patternObj.greedy, alias = patternObj.alias;
|
|
3885
|
+
if (greedy && !patternObj.pattern.global) {
|
|
3886
|
+
var flags = patternObj.pattern.toString().match(/[imsuy]*$/)[0];
|
|
3887
|
+
patternObj.pattern = RegExp(patternObj.pattern.source, flags + "g");
|
|
3888
|
+
}
|
|
3889
|
+
for (var pattern = patternObj.pattern || patternObj, currentNode = startNode.next, pos = startPos; currentNode !== tokenList.tail && !(rematch && pos >= rematch.reach); pos += currentNode.value.length, currentNode = currentNode.next) {
|
|
3890
|
+
var str = currentNode.value;
|
|
3891
|
+
if (tokenList.length > text.length)
|
|
3892
|
+
return;
|
|
3893
|
+
if (!(str instanceof Token)) {
|
|
3894
|
+
var removeCount = 1, match;
|
|
3895
|
+
if (greedy) {
|
|
3896
|
+
if (match = matchPattern(pattern, pos, text, lookbehind), !match || match.index >= text.length)
|
|
3897
|
+
break;
|
|
3898
|
+
var from = match.index, to = match.index + match[0].length, p = pos;
|
|
3899
|
+
for (p += currentNode.value.length; from >= p; )
|
|
3900
|
+
currentNode = currentNode.next, p += currentNode.value.length;
|
|
3901
|
+
if (p -= currentNode.value.length, pos = p, currentNode.value instanceof Token)
|
|
3902
|
+
continue;
|
|
3903
|
+
for (var k = currentNode; k !== tokenList.tail && (p < to || typeof k.value == "string"); k = k.next)
|
|
3904
|
+
removeCount++, p += k.value.length;
|
|
3905
|
+
removeCount--, str = text.slice(pos, p), match.index -= pos;
|
|
3906
|
+
} else if (match = matchPattern(pattern, 0, str, lookbehind), !match)
|
|
3907
|
+
continue;
|
|
3908
|
+
var from = match.index, matchStr = match[0], before = str.slice(0, from), after = str.slice(from + matchStr.length), reach = pos + str.length;
|
|
3909
|
+
rematch && reach > rematch.reach && (rematch.reach = reach);
|
|
3910
|
+
var removeFrom = currentNode.prev;
|
|
3911
|
+
before && (removeFrom = addAfter(tokenList, removeFrom, before), pos += before.length), removeRange(tokenList, removeFrom, removeCount);
|
|
3912
|
+
var wrapped = new Token(token, inside ? _.tokenize(matchStr, inside) : matchStr, alias, matchStr);
|
|
3913
|
+
if (currentNode = addAfter(tokenList, removeFrom, wrapped), after && addAfter(tokenList, currentNode, after), removeCount > 1) {
|
|
3914
|
+
var nestedRematch = {
|
|
3915
|
+
cause: token + "," + j,
|
|
3916
|
+
reach
|
|
3917
|
+
};
|
|
3918
|
+
matchGrammar(text, tokenList, grammar, currentNode.prev, pos, nestedRematch), rematch && nestedRematch.reach > rematch.reach && (rematch.reach = nestedRematch.reach);
|
|
3919
|
+
}
|
|
3920
|
+
}
|
|
3921
|
+
}
|
|
3922
|
+
}
|
|
3923
|
+
}
|
|
3924
|
+
}
|
|
3925
|
+
function LinkedList() {
|
|
3926
|
+
var head = { value: null, prev: null, next: null }, tail = { value: null, prev: head, next: null };
|
|
3927
|
+
head.next = tail, this.head = head, this.tail = tail, this.length = 0;
|
|
3928
|
+
}
|
|
3929
|
+
function addAfter(list, node, value) {
|
|
3930
|
+
var next = node.next, newNode = { value, prev: node, next };
|
|
3931
|
+
return node.next = newNode, next.prev = newNode, list.length++, newNode;
|
|
3932
|
+
}
|
|
3933
|
+
function removeRange(list, node, count) {
|
|
3934
|
+
for (var next = node.next, i = 0; i < count && next !== list.tail; i++)
|
|
3935
|
+
next = next.next;
|
|
3936
|
+
node.next = next, next.prev = node, list.length -= i;
|
|
3937
|
+
}
|
|
3938
|
+
function toArray(list) {
|
|
3939
|
+
for (var array = [], node = list.head.next; node !== list.tail; )
|
|
3940
|
+
array.push(node.value), node = node.next;
|
|
3941
|
+
return array;
|
|
3942
|
+
}
|
|
3943
|
+
if (!_self2.document)
|
|
3944
|
+
return _self2.addEventListener && (_.disableWorkerMessageHandler || _self2.addEventListener("message", function(evt) {
|
|
3945
|
+
var message = JSON.parse(evt.data), lang3 = message.language, code = message.code, immediateClose = message.immediateClose;
|
|
3946
|
+
_self2.postMessage(_.highlight(code, _.languages[lang3], lang3)), immediateClose && _self2.close();
|
|
3947
|
+
}, !1)), _;
|
|
3948
|
+
var script = _.util.currentScript();
|
|
3949
|
+
script && (_.filename = script.src, script.hasAttribute("data-manual") && (_.manual = !0));
|
|
3950
|
+
function highlightAutomaticallyCallback() {
|
|
3951
|
+
_.manual || _.highlightAll();
|
|
3952
|
+
}
|
|
3953
|
+
if (!_.manual) {
|
|
3954
|
+
var readyState = document.readyState;
|
|
3955
|
+
readyState === "loading" || readyState === "interactive" && script && script.defer ? document.addEventListener("DOMContentLoaded", highlightAutomaticallyCallback) : window.requestAnimationFrame ? window.requestAnimationFrame(highlightAutomaticallyCallback) : window.setTimeout(highlightAutomaticallyCallback, 16);
|
|
3956
|
+
}
|
|
3957
|
+
return _;
|
|
3958
|
+
}(_self);
|
|
3959
|
+
module.exports && (module.exports = Prism), typeof commonjsGlobal < "u" && (commonjsGlobal.Prism = Prism);
|
|
3960
|
+
}(prismCore)), prismCore.exports;
|
|
3961
|
+
}
|
|
3962
|
+
var markup_1, hasRequiredMarkup;
|
|
3963
|
+
function requireMarkup() {
|
|
3964
|
+
if (hasRequiredMarkup) return markup_1;
|
|
3965
|
+
hasRequiredMarkup = 1, markup_1 = markup, markup.displayName = "markup", markup.aliases = ["html", "mathml", "svg", "xml", "ssml", "atom", "rss"];
|
|
3966
|
+
function markup(Prism) {
|
|
3967
|
+
Prism.languages.markup = {
|
|
3968
|
+
comment: {
|
|
3969
|
+
pattern: /<!--(?:(?!<!--)[\s\S])*?-->/,
|
|
3970
|
+
greedy: !0
|
|
3971
|
+
},
|
|
3972
|
+
prolog: {
|
|
3973
|
+
pattern: /<\?[\s\S]+?\?>/,
|
|
3974
|
+
greedy: !0
|
|
3975
|
+
},
|
|
3976
|
+
doctype: {
|
|
3977
|
+
// https://www.w3.org/TR/xml/#NT-doctypedecl
|
|
3978
|
+
pattern: /<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,
|
|
3979
|
+
greedy: !0,
|
|
3980
|
+
inside: {
|
|
3981
|
+
"internal-subset": {
|
|
3982
|
+
pattern: /(^[^\[]*\[)[\s\S]+(?=\]>$)/,
|
|
3983
|
+
lookbehind: !0,
|
|
3984
|
+
greedy: !0,
|
|
3985
|
+
inside: null
|
|
3986
|
+
// see below
|
|
3987
|
+
},
|
|
3988
|
+
string: {
|
|
3989
|
+
pattern: /"[^"]*"|'[^']*'/,
|
|
3990
|
+
greedy: !0
|
|
3991
|
+
},
|
|
3992
|
+
punctuation: /^<!|>$|[[\]]/,
|
|
3993
|
+
"doctype-tag": /^DOCTYPE/i,
|
|
3994
|
+
name: /[^\s<>'"]+/
|
|
3995
|
+
}
|
|
3996
|
+
},
|
|
3997
|
+
cdata: {
|
|
3998
|
+
pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
|
|
3999
|
+
greedy: !0
|
|
4000
|
+
},
|
|
4001
|
+
tag: {
|
|
4002
|
+
pattern: /<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,
|
|
4003
|
+
greedy: !0,
|
|
4004
|
+
inside: {
|
|
4005
|
+
tag: {
|
|
4006
|
+
pattern: /^<\/?[^\s>\/]+/,
|
|
4007
|
+
inside: {
|
|
4008
|
+
punctuation: /^<\/?/,
|
|
4009
|
+
namespace: /^[^\s>\/:]+:/
|
|
4010
|
+
}
|
|
4011
|
+
},
|
|
4012
|
+
"special-attr": [],
|
|
4013
|
+
"attr-value": {
|
|
4014
|
+
pattern: /=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,
|
|
4015
|
+
inside: {
|
|
4016
|
+
punctuation: [
|
|
4017
|
+
{
|
|
4018
|
+
pattern: /^=/,
|
|
4019
|
+
alias: "attr-equals"
|
|
4020
|
+
},
|
|
4021
|
+
/"|'/
|
|
4022
|
+
]
|
|
4023
|
+
}
|
|
4024
|
+
},
|
|
4025
|
+
punctuation: /\/?>/,
|
|
4026
|
+
"attr-name": {
|
|
4027
|
+
pattern: /[^\s>\/]+/,
|
|
4028
|
+
inside: {
|
|
4029
|
+
namespace: /^[^\s>\/:]+:/
|
|
4030
|
+
}
|
|
4031
|
+
}
|
|
4032
|
+
}
|
|
4033
|
+
},
|
|
4034
|
+
entity: [
|
|
4035
|
+
{
|
|
4036
|
+
pattern: /&[\da-z]{1,8};/i,
|
|
4037
|
+
alias: "named-entity"
|
|
4038
|
+
},
|
|
4039
|
+
/&#x?[\da-f]{1,8};/i
|
|
4040
|
+
]
|
|
4041
|
+
}, Prism.languages.markup.tag.inside["attr-value"].inside.entity = Prism.languages.markup.entity, Prism.languages.markup.doctype.inside["internal-subset"].inside = Prism.languages.markup, Prism.hooks.add("wrap", function(env) {
|
|
4042
|
+
env.type === "entity" && (env.attributes.title = env.content.value.replace(/&/, "&"));
|
|
4043
|
+
}), Object.defineProperty(Prism.languages.markup.tag, "addInlined", {
|
|
4044
|
+
/**
|
|
4045
|
+
* Adds an inlined language to markup.
|
|
4046
|
+
*
|
|
4047
|
+
* An example of an inlined language is CSS with `<style>` tags.
|
|
4048
|
+
*
|
|
4049
|
+
* @param {string} tagName The name of the tag that contains the inlined language. This name will be treated as
|
|
4050
|
+
* case insensitive.
|
|
4051
|
+
* @param {string} lang The language key.
|
|
4052
|
+
* @example
|
|
4053
|
+
* addInlined('style', 'css');
|
|
4054
|
+
*/
|
|
4055
|
+
value: function(tagName, lang2) {
|
|
4056
|
+
var includedCdataInside = {};
|
|
4057
|
+
includedCdataInside["language-" + lang2] = {
|
|
4058
|
+
pattern: /(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,
|
|
4059
|
+
lookbehind: !0,
|
|
4060
|
+
inside: Prism.languages[lang2]
|
|
4061
|
+
}, includedCdataInside.cdata = /^<!\[CDATA\[|\]\]>$/i;
|
|
4062
|
+
var inside = {
|
|
4063
|
+
"included-cdata": {
|
|
4064
|
+
pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
|
|
4065
|
+
inside: includedCdataInside
|
|
4066
|
+
}
|
|
4067
|
+
};
|
|
4068
|
+
inside["language-" + lang2] = {
|
|
4069
|
+
pattern: /[\s\S]+/,
|
|
4070
|
+
inside: Prism.languages[lang2]
|
|
4071
|
+
};
|
|
4072
|
+
var def = {};
|
|
4073
|
+
def[tagName] = {
|
|
4074
|
+
pattern: RegExp(
|
|
4075
|
+
/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(
|
|
4076
|
+
/__/g,
|
|
4077
|
+
function() {
|
|
4078
|
+
return tagName;
|
|
4079
|
+
}
|
|
4080
|
+
),
|
|
4081
|
+
"i"
|
|
4082
|
+
),
|
|
4083
|
+
lookbehind: !0,
|
|
4084
|
+
greedy: !0,
|
|
4085
|
+
inside
|
|
4086
|
+
}, Prism.languages.insertBefore("markup", "cdata", def);
|
|
4087
|
+
}
|
|
4088
|
+
}), Object.defineProperty(Prism.languages.markup.tag, "addAttribute", {
|
|
4089
|
+
/**
|
|
4090
|
+
* Adds an pattern to highlight languages embedded in HTML attributes.
|
|
4091
|
+
*
|
|
4092
|
+
* An example of an inlined language is CSS with `style` attributes.
|
|
4093
|
+
*
|
|
4094
|
+
* @param {string} attrName The name of the tag that contains the inlined language. This name will be treated as
|
|
4095
|
+
* case insensitive.
|
|
4096
|
+
* @param {string} lang The language key.
|
|
4097
|
+
* @example
|
|
4098
|
+
* addAttribute('style', 'css');
|
|
4099
|
+
*/
|
|
4100
|
+
value: function(attrName, lang2) {
|
|
4101
|
+
Prism.languages.markup.tag.inside["special-attr"].push({
|
|
4102
|
+
pattern: RegExp(
|
|
4103
|
+
/(^|["'\s])/.source + "(?:" + attrName + ")" + /\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,
|
|
4104
|
+
"i"
|
|
4105
|
+
),
|
|
4106
|
+
lookbehind: !0,
|
|
4107
|
+
inside: {
|
|
4108
|
+
"attr-name": /^[^\s=]+/,
|
|
4109
|
+
"attr-value": {
|
|
4110
|
+
pattern: /=[\s\S]+/,
|
|
4111
|
+
inside: {
|
|
4112
|
+
value: {
|
|
4113
|
+
pattern: /(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,
|
|
4114
|
+
lookbehind: !0,
|
|
4115
|
+
alias: [lang2, "language-" + lang2],
|
|
4116
|
+
inside: Prism.languages[lang2]
|
|
4117
|
+
},
|
|
4118
|
+
punctuation: [
|
|
4119
|
+
{
|
|
4120
|
+
pattern: /^=/,
|
|
4121
|
+
alias: "attr-equals"
|
|
4122
|
+
},
|
|
4123
|
+
/"|'/
|
|
4124
|
+
]
|
|
4125
|
+
}
|
|
4126
|
+
}
|
|
4127
|
+
}
|
|
4128
|
+
});
|
|
4129
|
+
}
|
|
4130
|
+
}), Prism.languages.html = Prism.languages.markup, Prism.languages.mathml = Prism.languages.markup, Prism.languages.svg = Prism.languages.markup, Prism.languages.xml = Prism.languages.extend("markup", {}), Prism.languages.ssml = Prism.languages.xml, Prism.languages.atom = Prism.languages.xml, Prism.languages.rss = Prism.languages.xml;
|
|
4131
|
+
}
|
|
4132
|
+
return markup_1;
|
|
4133
|
+
}
|
|
4134
|
+
var css_1, hasRequiredCss;
|
|
4135
|
+
function requireCss() {
|
|
4136
|
+
if (hasRequiredCss) return css_1;
|
|
4137
|
+
hasRequiredCss = 1, css_1 = css, css.displayName = "css", css.aliases = [];
|
|
4138
|
+
function css(Prism) {
|
|
4139
|
+
(function(Prism2) {
|
|
4140
|
+
var string = /(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;
|
|
4141
|
+
Prism2.languages.css = {
|
|
4142
|
+
comment: /\/\*[\s\S]*?\*\//,
|
|
4143
|
+
atrule: {
|
|
4144
|
+
pattern: /@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,
|
|
4145
|
+
inside: {
|
|
4146
|
+
rule: /^@[\w-]+/,
|
|
4147
|
+
"selector-function-argument": {
|
|
4148
|
+
pattern: /(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,
|
|
4149
|
+
lookbehind: !0,
|
|
4150
|
+
alias: "selector"
|
|
4151
|
+
},
|
|
4152
|
+
keyword: {
|
|
4153
|
+
pattern: /(^|[^\w-])(?:and|not|only|or)(?![\w-])/,
|
|
4154
|
+
lookbehind: !0
|
|
4155
|
+
}
|
|
4156
|
+
// See rest below
|
|
4157
|
+
}
|
|
4158
|
+
},
|
|
4159
|
+
url: {
|
|
4160
|
+
// https://drafts.csswg.org/css-values-3/#urls
|
|
4161
|
+
pattern: RegExp(
|
|
4162
|
+
"\\burl\\((?:" + string.source + "|" + /(?:[^\\\r\n()"']|\\[\s\S])*/.source + ")\\)",
|
|
4163
|
+
"i"
|
|
4164
|
+
),
|
|
4165
|
+
greedy: !0,
|
|
4166
|
+
inside: {
|
|
4167
|
+
function: /^url/i,
|
|
4168
|
+
punctuation: /^\(|\)$/,
|
|
4169
|
+
string: {
|
|
4170
|
+
pattern: RegExp("^" + string.source + "$"),
|
|
4171
|
+
alias: "url"
|
|
4172
|
+
}
|
|
4173
|
+
}
|
|
4174
|
+
},
|
|
4175
|
+
selector: {
|
|
4176
|
+
pattern: RegExp(
|
|
4177
|
+
`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|` + string.source + ")*(?=\\s*\\{)"
|
|
4178
|
+
),
|
|
4179
|
+
lookbehind: !0
|
|
4180
|
+
},
|
|
4181
|
+
string: {
|
|
4182
|
+
pattern: string,
|
|
4183
|
+
greedy: !0
|
|
4184
|
+
},
|
|
4185
|
+
property: {
|
|
4186
|
+
pattern: /(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,
|
|
4187
|
+
lookbehind: !0
|
|
4188
|
+
},
|
|
4189
|
+
important: /!important\b/i,
|
|
4190
|
+
function: {
|
|
4191
|
+
pattern: /(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,
|
|
4192
|
+
lookbehind: !0
|
|
4193
|
+
},
|
|
4194
|
+
punctuation: /[(){};:,]/
|
|
4195
|
+
}, Prism2.languages.css.atrule.inside.rest = Prism2.languages.css;
|
|
4196
|
+
var markup = Prism2.languages.markup;
|
|
4197
|
+
markup && (markup.tag.addInlined("style", "css"), markup.tag.addAttribute("style", "css"));
|
|
4198
|
+
})(Prism);
|
|
4199
|
+
}
|
|
4200
|
+
return css_1;
|
|
4201
|
+
}
|
|
4202
|
+
var clike_1, hasRequiredClike;
|
|
4203
|
+
function requireClike() {
|
|
4204
|
+
if (hasRequiredClike) return clike_1;
|
|
4205
|
+
hasRequiredClike = 1, clike_1 = clike, clike.displayName = "clike", clike.aliases = [];
|
|
4206
|
+
function clike(Prism) {
|
|
4207
|
+
Prism.languages.clike = {
|
|
4208
|
+
comment: [
|
|
4209
|
+
{
|
|
4210
|
+
pattern: /(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,
|
|
4211
|
+
lookbehind: !0,
|
|
4212
|
+
greedy: !0
|
|
4213
|
+
},
|
|
4214
|
+
{
|
|
4215
|
+
pattern: /(^|[^\\:])\/\/.*/,
|
|
4216
|
+
lookbehind: !0,
|
|
4217
|
+
greedy: !0
|
|
4218
|
+
}
|
|
4219
|
+
],
|
|
4220
|
+
string: {
|
|
4221
|
+
pattern: /(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
|
4222
|
+
greedy: !0
|
|
4223
|
+
},
|
|
4224
|
+
"class-name": {
|
|
4225
|
+
pattern: /(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,
|
|
4226
|
+
lookbehind: !0,
|
|
4227
|
+
inside: {
|
|
4228
|
+
punctuation: /[.\\]/
|
|
4229
|
+
}
|
|
4230
|
+
},
|
|
4231
|
+
keyword: /\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,
|
|
4232
|
+
boolean: /\b(?:false|true)\b/,
|
|
4233
|
+
function: /\b\w+(?=\()/,
|
|
4234
|
+
number: /\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,
|
|
4235
|
+
operator: /[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,
|
|
4236
|
+
punctuation: /[{}[\];(),.:]/
|
|
4237
|
+
};
|
|
4238
|
+
}
|
|
4239
|
+
return clike_1;
|
|
4240
|
+
}
|
|
4241
|
+
var javascript_1, hasRequiredJavascript;
|
|
4242
|
+
function requireJavascript() {
|
|
4243
|
+
if (hasRequiredJavascript) return javascript_1;
|
|
4244
|
+
hasRequiredJavascript = 1, javascript_1 = javascript, javascript.displayName = "javascript", javascript.aliases = ["js"];
|
|
4245
|
+
function javascript(Prism) {
|
|
4246
|
+
Prism.languages.javascript = Prism.languages.extend("clike", {
|
|
4247
|
+
"class-name": [
|
|
4248
|
+
Prism.languages.clike["class-name"],
|
|
4249
|
+
{
|
|
4250
|
+
pattern: /(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,
|
|
4251
|
+
lookbehind: !0
|
|
4252
|
+
}
|
|
4253
|
+
],
|
|
4254
|
+
keyword: [
|
|
4255
|
+
{
|
|
4256
|
+
pattern: /((?:^|\})\s*)catch\b/,
|
|
4257
|
+
lookbehind: !0
|
|
4258
|
+
},
|
|
4259
|
+
{
|
|
4260
|
+
pattern: /(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,
|
|
4261
|
+
lookbehind: !0
|
|
4262
|
+
}
|
|
4263
|
+
],
|
|
4264
|
+
// Allow for all non-ASCII characters (See http://stackoverflow.com/a/2008444)
|
|
4265
|
+
function: /#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,
|
|
4266
|
+
number: {
|
|
4267
|
+
pattern: RegExp(
|
|
4268
|
+
/(^|[^\w$])/.source + "(?:" + // constant
|
|
4269
|
+
(/NaN|Infinity/.source + "|" + // binary integer
|
|
4270
|
+
/0[bB][01]+(?:_[01]+)*n?/.source + "|" + // octal integer
|
|
4271
|
+
/0[oO][0-7]+(?:_[0-7]+)*n?/.source + "|" + // hexadecimal integer
|
|
4272
|
+
/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source + "|" + // decimal bigint
|
|
4273
|
+
/\d+(?:_\d+)*n/.source + "|" + // decimal number (integer or float) but no bigint
|
|
4274
|
+
/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source) + ")" + /(?![\w$])/.source
|
|
4275
|
+
),
|
|
4276
|
+
lookbehind: !0
|
|
4277
|
+
},
|
|
4278
|
+
operator: /--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/
|
|
4279
|
+
}), Prism.languages.javascript["class-name"][0].pattern = /(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/, Prism.languages.insertBefore("javascript", "keyword", {
|
|
4280
|
+
regex: {
|
|
4281
|
+
// eslint-disable-next-line regexp/no-dupe-characters-character-class
|
|
4282
|
+
pattern: /((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,
|
|
4283
|
+
lookbehind: !0,
|
|
4284
|
+
greedy: !0,
|
|
4285
|
+
inside: {
|
|
4286
|
+
"regex-source": {
|
|
4287
|
+
pattern: /^(\/)[\s\S]+(?=\/[a-z]*$)/,
|
|
4288
|
+
lookbehind: !0,
|
|
4289
|
+
alias: "language-regex",
|
|
4290
|
+
inside: Prism.languages.regex
|
|
4291
|
+
},
|
|
4292
|
+
"regex-delimiter": /^\/|\/$/,
|
|
4293
|
+
"regex-flags": /^[a-z]+$/
|
|
4294
|
+
}
|
|
4295
|
+
},
|
|
4296
|
+
// This must be declared before keyword because we use "function" inside the look-forward
|
|
4297
|
+
"function-variable": {
|
|
4298
|
+
pattern: /#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,
|
|
4299
|
+
alias: "function"
|
|
4300
|
+
},
|
|
4301
|
+
parameter: [
|
|
4302
|
+
{
|
|
4303
|
+
pattern: /(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,
|
|
4304
|
+
lookbehind: !0,
|
|
4305
|
+
inside: Prism.languages.javascript
|
|
4306
|
+
},
|
|
4307
|
+
{
|
|
4308
|
+
pattern: /(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,
|
|
4309
|
+
lookbehind: !0,
|
|
4310
|
+
inside: Prism.languages.javascript
|
|
4311
|
+
},
|
|
4312
|
+
{
|
|
4313
|
+
pattern: /(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,
|
|
4314
|
+
lookbehind: !0,
|
|
4315
|
+
inside: Prism.languages.javascript
|
|
4316
|
+
},
|
|
4317
|
+
{
|
|
4318
|
+
pattern: /((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,
|
|
4319
|
+
lookbehind: !0,
|
|
4320
|
+
inside: Prism.languages.javascript
|
|
4321
|
+
}
|
|
4322
|
+
],
|
|
4323
|
+
constant: /\b[A-Z](?:[A-Z_]|\dx?)*\b/
|
|
4324
|
+
}), Prism.languages.insertBefore("javascript", "string", {
|
|
4325
|
+
hashbang: {
|
|
4326
|
+
pattern: /^#!.*/,
|
|
4327
|
+
greedy: !0,
|
|
4328
|
+
alias: "comment"
|
|
4329
|
+
},
|
|
4330
|
+
"template-string": {
|
|
4331
|
+
pattern: /`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,
|
|
4332
|
+
greedy: !0,
|
|
4333
|
+
inside: {
|
|
4334
|
+
"template-punctuation": {
|
|
4335
|
+
pattern: /^`|`$/,
|
|
4336
|
+
alias: "string"
|
|
4337
|
+
},
|
|
4338
|
+
interpolation: {
|
|
4339
|
+
pattern: /((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,
|
|
4340
|
+
lookbehind: !0,
|
|
4341
|
+
inside: {
|
|
4342
|
+
"interpolation-punctuation": {
|
|
4343
|
+
pattern: /^\$\{|\}$/,
|
|
4344
|
+
alias: "punctuation"
|
|
4345
|
+
},
|
|
4346
|
+
rest: Prism.languages.javascript
|
|
4347
|
+
}
|
|
4348
|
+
},
|
|
4349
|
+
string: /[\s\S]+/
|
|
4350
|
+
}
|
|
4351
|
+
},
|
|
4352
|
+
"string-property": {
|
|
4353
|
+
pattern: /((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,
|
|
4354
|
+
lookbehind: !0,
|
|
4355
|
+
greedy: !0,
|
|
4356
|
+
alias: "property"
|
|
4357
|
+
}
|
|
4358
|
+
}), Prism.languages.insertBefore("javascript", "operator", {
|
|
4359
|
+
"literal-property": {
|
|
4360
|
+
pattern: /((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,
|
|
4361
|
+
lookbehind: !0,
|
|
4362
|
+
alias: "property"
|
|
4363
|
+
}
|
|
4364
|
+
}), Prism.languages.markup && (Prism.languages.markup.tag.addInlined("script", "javascript"), Prism.languages.markup.tag.addAttribute(
|
|
4365
|
+
/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,
|
|
4366
|
+
"javascript"
|
|
4367
|
+
)), Prism.languages.js = Prism.languages.javascript;
|
|
4368
|
+
}
|
|
4369
|
+
return javascript_1;
|
|
4370
|
+
}
|
|
4371
|
+
var core, hasRequiredCore;
|
|
4372
|
+
function requireCore() {
|
|
4373
|
+
if (hasRequiredCore) return core;
|
|
4374
|
+
hasRequiredCore = 1;
|
|
4375
|
+
var ctx = typeof globalThis == "object" ? globalThis : typeof self == "object" ? self : typeof window == "object" ? window : typeof commonjsGlobal == "object" ? commonjsGlobal : {}, restore = capture();
|
|
4376
|
+
ctx.Prism = { manual: !0, disableWorkerMessageHandler: !0 };
|
|
4377
|
+
var h = requireHastscript(), decode = requireParseEntities(), Prism = requirePrismCore(), markup = requireMarkup(), css = requireCss(), clike = requireClike(), js = requireJavascript();
|
|
4378
|
+
restore();
|
|
4379
|
+
var own = {}.hasOwnProperty;
|
|
4380
|
+
function Refractor2() {
|
|
4381
|
+
}
|
|
4382
|
+
Refractor2.prototype = Prism;
|
|
4383
|
+
var refract = new Refractor2();
|
|
4384
|
+
core = refract, refract.highlight = highlight, refract.register = register, refract.alias = alias, refract.registered = registered, refract.listLanguages = listLanguages, register(markup), register(css), register(clike), register(js), refract.util.encode = encode, refract.Token.stringify = stringify;
|
|
4385
|
+
function register(grammar) {
|
|
4386
|
+
if (typeof grammar != "function" || !grammar.displayName)
|
|
4387
|
+
throw new Error("Expected `function` for `grammar`, got `" + grammar + "`");
|
|
4388
|
+
refract.languages[grammar.displayName] === void 0 && grammar(refract);
|
|
4389
|
+
}
|
|
4390
|
+
function alias(name, alias2) {
|
|
4391
|
+
var languages = refract.languages, map2 = name, key, list, length, index;
|
|
4392
|
+
alias2 && (map2 = {}, map2[name] = alias2);
|
|
4393
|
+
for (key in map2)
|
|
4394
|
+
for (list = map2[key], list = typeof list == "string" ? [list] : list, length = list.length, index = -1; ++index < length; )
|
|
4395
|
+
languages[list[index]] = languages[key];
|
|
4396
|
+
}
|
|
4397
|
+
function highlight(value, name) {
|
|
4398
|
+
var sup4 = Prism.highlight, grammar;
|
|
4399
|
+
if (typeof value != "string")
|
|
4400
|
+
throw new Error("Expected `string` for `value`, got `" + value + "`");
|
|
4401
|
+
if (refract.util.type(name) === "Object")
|
|
4402
|
+
grammar = name, name = null;
|
|
4403
|
+
else {
|
|
4404
|
+
if (typeof name != "string")
|
|
4405
|
+
throw new Error("Expected `string` for `name`, got `" + name + "`");
|
|
4406
|
+
if (own.call(refract.languages, name))
|
|
4407
|
+
grammar = refract.languages[name];
|
|
4408
|
+
else
|
|
4409
|
+
throw new Error("Unknown language: `" + name + "` is not registered");
|
|
4410
|
+
}
|
|
4411
|
+
return sup4.call(this, value, grammar, name);
|
|
4412
|
+
}
|
|
4413
|
+
function registered(language) {
|
|
4414
|
+
if (typeof language != "string")
|
|
4415
|
+
throw new Error("Expected `string` for `language`, got `" + language + "`");
|
|
4416
|
+
return own.call(refract.languages, language);
|
|
4417
|
+
}
|
|
4418
|
+
function listLanguages() {
|
|
4419
|
+
var languages = refract.languages, list = [], language;
|
|
4420
|
+
for (language in languages)
|
|
4421
|
+
own.call(languages, language) && typeof languages[language] == "object" && list.push(language);
|
|
4422
|
+
return list;
|
|
4423
|
+
}
|
|
4424
|
+
function stringify(value, language, parent) {
|
|
4425
|
+
var env;
|
|
4426
|
+
return typeof value == "string" ? { type: "text", value } : refract.util.type(value) === "Array" ? stringifyAll(value, language) : (env = {
|
|
4427
|
+
type: value.type,
|
|
4428
|
+
content: refract.Token.stringify(value.content, language, parent),
|
|
4429
|
+
tag: "span",
|
|
4430
|
+
classes: ["token", value.type],
|
|
4431
|
+
attributes: {},
|
|
4432
|
+
language,
|
|
4433
|
+
parent
|
|
4434
|
+
}, value.alias && (env.classes = env.classes.concat(value.alias)), refract.hooks.run("wrap", env), h(
|
|
4435
|
+
env.tag + "." + env.classes.join("."),
|
|
4436
|
+
attributes(env.attributes),
|
|
4437
|
+
env.content
|
|
4438
|
+
));
|
|
4439
|
+
}
|
|
4440
|
+
function stringifyAll(values, language) {
|
|
4441
|
+
for (var result = [], length = values.length, index = -1, value; ++index < length; )
|
|
4442
|
+
value = values[index], value !== "" && value !== null && value !== void 0 && result.push(value);
|
|
4443
|
+
for (index = -1, length = result.length; ++index < length; )
|
|
4444
|
+
value = result[index], result[index] = refract.Token.stringify(value, language, result);
|
|
4445
|
+
return result;
|
|
4446
|
+
}
|
|
4447
|
+
function encode(tokens) {
|
|
4448
|
+
return tokens;
|
|
4449
|
+
}
|
|
4450
|
+
function attributes(attrs) {
|
|
4451
|
+
var key;
|
|
4452
|
+
for (key in attrs)
|
|
4453
|
+
attrs[key] = decode(attrs[key]);
|
|
4454
|
+
return attrs;
|
|
4455
|
+
}
|
|
4456
|
+
function capture() {
|
|
4457
|
+
var defined = "Prism" in ctx, current = defined ? ctx.Prism : void 0;
|
|
4458
|
+
return restore2;
|
|
4459
|
+
function restore2() {
|
|
4460
|
+
defined ? ctx.Prism = current : delete ctx.Prism, defined = void 0, current = void 0;
|
|
4461
|
+
}
|
|
4462
|
+
}
|
|
4463
|
+
return core;
|
|
4464
|
+
}
|
|
4465
|
+
var mapChildren = {}, hasRequiredMapChildren;
|
|
4466
|
+
function requireMapChildren() {
|
|
4467
|
+
if (hasRequiredMapChildren) return mapChildren;
|
|
4468
|
+
hasRequiredMapChildren = 1;
|
|
4469
|
+
var React = r__default;
|
|
4470
|
+
function mapChild(child, i, depth) {
|
|
4471
|
+
if (child.tagName) {
|
|
4472
|
+
var className = child.properties && Array.isArray(child.properties.className) ? child.properties.className.join(" ") : child.properties.className;
|
|
4473
|
+
return React.createElement(child.tagName, Object.assign({
|
|
4474
|
+
key: "fract-".concat(depth, "-").concat(i)
|
|
4475
|
+
}, child.properties, {
|
|
4476
|
+
className
|
|
4477
|
+
}), child.children && child.children.map(mapWithDepth(depth + 1)));
|
|
4478
|
+
}
|
|
4479
|
+
return child.value;
|
|
4480
|
+
}
|
|
4481
|
+
function mapWithDepth(depth) {
|
|
4482
|
+
return function(child, i) {
|
|
4483
|
+
return mapChild(child, i, depth);
|
|
4484
|
+
};
|
|
4485
|
+
}
|
|
4486
|
+
return mapChildren.depth = mapWithDepth, mapChildren;
|
|
4487
|
+
}
|
|
4488
|
+
var convert_1, hasRequiredConvert;
|
|
4489
|
+
function requireConvert() {
|
|
4490
|
+
if (hasRequiredConvert) return convert_1;
|
|
4491
|
+
hasRequiredConvert = 1, convert_1 = convert;
|
|
4492
|
+
function convert(test) {
|
|
4493
|
+
if (test == null)
|
|
4494
|
+
return ok;
|
|
4495
|
+
if (typeof test == "string")
|
|
4496
|
+
return typeFactory(test);
|
|
4497
|
+
if (typeof test == "object")
|
|
4498
|
+
return "length" in test ? anyFactory(test) : allFactory(test);
|
|
4499
|
+
if (typeof test == "function")
|
|
4500
|
+
return test;
|
|
4501
|
+
throw new Error("Expected function, string, or object as test");
|
|
4502
|
+
}
|
|
4503
|
+
function allFactory(test) {
|
|
4504
|
+
return all;
|
|
4505
|
+
function all(node) {
|
|
4506
|
+
var key;
|
|
4507
|
+
for (key in test)
|
|
4508
|
+
if (node[key] !== test[key]) return !1;
|
|
4509
|
+
return !0;
|
|
4510
|
+
}
|
|
4511
|
+
}
|
|
4512
|
+
function anyFactory(tests) {
|
|
4513
|
+
for (var checks = [], index = -1; ++index < tests.length; )
|
|
4514
|
+
checks[index] = convert(tests[index]);
|
|
4515
|
+
return any;
|
|
4516
|
+
function any() {
|
|
4517
|
+
for (var index2 = -1; ++index2 < checks.length; )
|
|
4518
|
+
if (checks[index2].apply(this, arguments))
|
|
4519
|
+
return !0;
|
|
4520
|
+
return !1;
|
|
4521
|
+
}
|
|
4522
|
+
}
|
|
4523
|
+
function typeFactory(test) {
|
|
4524
|
+
return type;
|
|
4525
|
+
function type(node) {
|
|
4526
|
+
return !!(node && node.type === test);
|
|
4527
|
+
}
|
|
4528
|
+
}
|
|
4529
|
+
function ok() {
|
|
4530
|
+
return !0;
|
|
4531
|
+
}
|
|
4532
|
+
return convert_1;
|
|
4533
|
+
}
|
|
4534
|
+
var unistUtilFilter, hasRequiredUnistUtilFilter;
|
|
4535
|
+
function requireUnistUtilFilter() {
|
|
4536
|
+
if (hasRequiredUnistUtilFilter) return unistUtilFilter;
|
|
4537
|
+
hasRequiredUnistUtilFilter = 1;
|
|
4538
|
+
var convert = requireConvert();
|
|
4539
|
+
unistUtilFilter = filter;
|
|
4540
|
+
var own = {}.hasOwnProperty;
|
|
4541
|
+
function filter(tree, options, test) {
|
|
4542
|
+
var is = convert(test || options), cascade = options.cascade == null ? !0 : options.cascade;
|
|
4543
|
+
return preorder(tree, null, null);
|
|
4544
|
+
function preorder(node, index, parent) {
|
|
4545
|
+
var children, childIndex, result, next, key;
|
|
4546
|
+
if (!is(node, index, parent)) return null;
|
|
4547
|
+
if (node.children) {
|
|
4548
|
+
for (children = [], childIndex = -1; ++childIndex < node.children.length; )
|
|
4549
|
+
result = preorder(node.children[childIndex], childIndex, node), result && children.push(result);
|
|
4550
|
+
if (cascade && node.children.length && !children.length) return null;
|
|
4551
|
+
}
|
|
4552
|
+
next = {};
|
|
4553
|
+
for (key in node)
|
|
4554
|
+
own.call(node, key) && (next[key] = key === "children" ? children : node[key]);
|
|
4555
|
+
return next;
|
|
4556
|
+
}
|
|
4557
|
+
}
|
|
4558
|
+
return unistUtilFilter;
|
|
4559
|
+
}
|
|
4560
|
+
var color_1, hasRequiredColor;
|
|
4561
|
+
function requireColor() {
|
|
4562
|
+
if (hasRequiredColor) return color_1;
|
|
4563
|
+
hasRequiredColor = 1, color_1 = color;
|
|
4564
|
+
function color(d) {
|
|
4565
|
+
return "\x1B[33m" + d + "\x1B[39m";
|
|
4566
|
+
}
|
|
4567
|
+
return color_1;
|
|
4568
|
+
}
|
|
4569
|
+
var unistUtilVisitParents, hasRequiredUnistUtilVisitParents;
|
|
4570
|
+
function requireUnistUtilVisitParents() {
|
|
4571
|
+
if (hasRequiredUnistUtilVisitParents) return unistUtilVisitParents;
|
|
4572
|
+
hasRequiredUnistUtilVisitParents = 1, unistUtilVisitParents = visitParents;
|
|
4573
|
+
var convert = requireConvert(), color = requireColor(), CONTINUE = !0, SKIP = "skip", EXIT = !1;
|
|
4574
|
+
visitParents.CONTINUE = CONTINUE, visitParents.SKIP = SKIP, visitParents.EXIT = EXIT;
|
|
4575
|
+
function visitParents(tree, test, visitor, reverse) {
|
|
4576
|
+
var step, is;
|
|
4577
|
+
typeof test == "function" && typeof visitor != "function" && (reverse = visitor, visitor = test, test = null), is = convert(test), step = reverse ? -1 : 1, factory(tree, null, [])();
|
|
4578
|
+
function factory(node, index, parents) {
|
|
4579
|
+
var value = typeof node == "object" && node !== null ? node : {}, name;
|
|
4580
|
+
return typeof value.type == "string" && (name = typeof value.tagName == "string" ? value.tagName : typeof value.name == "string" ? value.name : void 0, visit.displayName = "node (" + color(value.type + (name ? "<" + name + ">" : "")) + ")"), visit;
|
|
4581
|
+
function visit() {
|
|
4582
|
+
var grandparents = parents.concat(node), result = [], subresult, offset;
|
|
4583
|
+
if ((!test || is(node, index, parents[parents.length - 1] || null)) && (result = toResult(visitor(node, parents)), result[0] === EXIT))
|
|
4584
|
+
return result;
|
|
4585
|
+
if (node.children && result[0] !== SKIP)
|
|
4586
|
+
for (offset = (reverse ? node.children.length : -1) + step; offset > -1 && offset < node.children.length; ) {
|
|
4587
|
+
if (subresult = factory(node.children[offset], offset, grandparents)(), subresult[0] === EXIT)
|
|
4588
|
+
return subresult;
|
|
4589
|
+
offset = typeof subresult[1] == "number" ? subresult[1] : offset + step;
|
|
4590
|
+
}
|
|
4591
|
+
return result;
|
|
4592
|
+
}
|
|
4593
|
+
}
|
|
4594
|
+
}
|
|
4595
|
+
function toResult(value) {
|
|
4596
|
+
return value !== null && typeof value == "object" && "length" in value ? value : typeof value == "number" ? [CONTINUE, value] : [value];
|
|
4597
|
+
}
|
|
4598
|
+
return unistUtilVisitParents;
|
|
4599
|
+
}
|
|
4600
|
+
var map, hasRequiredMap;
|
|
4601
|
+
function requireMap() {
|
|
4602
|
+
if (hasRequiredMap) return map;
|
|
4603
|
+
hasRequiredMap = 1, map = typeof WeakMap == "function" ? HappyMap : SadMap;
|
|
4604
|
+
function HappyMap() {
|
|
4605
|
+
this.map = /* @__PURE__ */ new WeakMap();
|
|
4606
|
+
}
|
|
4607
|
+
HappyMap.prototype.has = function(key) {
|
|
4608
|
+
return this.map.has(key);
|
|
4609
|
+
}, HappyMap.prototype.set = function(key, value) {
|
|
4610
|
+
return this.map.set(key, value), this;
|
|
4611
|
+
}, HappyMap.prototype.get = function(key) {
|
|
4612
|
+
return this.map.get(key);
|
|
4613
|
+
}, HappyMap.prototype.clear = function() {
|
|
4614
|
+
};
|
|
4615
|
+
function SadMap() {
|
|
4616
|
+
this.keys = [], this.values = [];
|
|
4617
|
+
}
|
|
4618
|
+
return SadMap.prototype.has = function(key) {
|
|
4619
|
+
return this.keys.indexOf(key) !== -1;
|
|
4620
|
+
}, SadMap.prototype.set = function(key, value) {
|
|
4621
|
+
var index = this.keys.indexOf(key);
|
|
4622
|
+
return index === -1 ? (this.keys.push(key), this.values.push(value)) : this.values[index] = value, this;
|
|
4623
|
+
}, SadMap.prototype.get = function(key) {
|
|
4624
|
+
var index = this.keys.indexOf(key);
|
|
4625
|
+
return index === -1 ? void 0 : this.values[index];
|
|
4626
|
+
}, SadMap.prototype.clear = function() {
|
|
4627
|
+
this.keys = [], this.values = [];
|
|
4628
|
+
}, map;
|
|
4629
|
+
}
|
|
4630
|
+
var addMarkers_1, hasRequiredAddMarkers;
|
|
4631
|
+
function requireAddMarkers() {
|
|
4632
|
+
if (hasRequiredAddMarkers) return addMarkers_1;
|
|
4633
|
+
hasRequiredAddMarkers = 1;
|
|
4634
|
+
var filter = requireUnistUtilFilter(), visit = requireUnistUtilVisitParents(), NodeMap = requireMap();
|
|
4635
|
+
function lineNumberify(ast2) {
|
|
4636
|
+
var context = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {
|
|
4637
|
+
lineNumber: 1
|
|
4638
|
+
};
|
|
4639
|
+
return ast2.reduce(function(result, node) {
|
|
4640
|
+
var lineStart = context.lineNumber;
|
|
4641
|
+
if (node.type === "text") {
|
|
4642
|
+
if (node.value.indexOf(`
|
|
4643
|
+
`) === -1)
|
|
4644
|
+
return node.lineStart = lineStart, node.lineEnd = lineStart, result.nodes.push(node), result;
|
|
4645
|
+
for (var lines = node.value.split(`
|
|
4646
|
+
`), i = 0; i < lines.length; i++) {
|
|
4647
|
+
var lineNum = i === 0 ? context.lineNumber : ++context.lineNumber;
|
|
4648
|
+
result.nodes.push({
|
|
4649
|
+
type: "text",
|
|
4650
|
+
value: i === lines.length - 1 ? lines[i] : "".concat(lines[i], `
|
|
4651
|
+
`),
|
|
4652
|
+
lineStart: lineNum,
|
|
4653
|
+
lineEnd: lineNum
|
|
4654
|
+
});
|
|
4655
|
+
}
|
|
4656
|
+
return result.lineNumber = context.lineNumber, result;
|
|
4657
|
+
}
|
|
4658
|
+
if (node.children) {
|
|
4659
|
+
var processed = lineNumberify(node.children, context), firstChild = processed.nodes[0], lastChild = processed.nodes[processed.nodes.length - 1];
|
|
4660
|
+
return node.lineStart = firstChild ? firstChild.lineStart : lineStart, node.lineEnd = lastChild ? lastChild.lineEnd : lineStart, node.children = processed.nodes, result.lineNumber = processed.lineNumber, result.nodes.push(node), result;
|
|
4661
|
+
}
|
|
4662
|
+
return result.nodes.push(node), result;
|
|
4663
|
+
}, {
|
|
4664
|
+
nodes: [],
|
|
4665
|
+
lineNumber: context.lineNumber
|
|
4666
|
+
});
|
|
4667
|
+
}
|
|
4668
|
+
function unwrapLine(markerLine, nodes) {
|
|
4669
|
+
var tree = {
|
|
4670
|
+
type: "root",
|
|
4671
|
+
children: nodes
|
|
4672
|
+
}, headMap = new NodeMap(), lineMap = new NodeMap(), tailMap = new NodeMap(), cloned = [];
|
|
4673
|
+
function addCopy(map2, node, ancestors) {
|
|
4674
|
+
cloned.push(node), ancestors.forEach(function(ancestor2) {
|
|
4675
|
+
map2.has(ancestor2) || (map2.set(ancestor2, Object.assign({}, ancestor2, {
|
|
4676
|
+
children: []
|
|
4677
|
+
})), ancestor2 !== tree && cloned.push(ancestor2));
|
|
4678
|
+
});
|
|
4679
|
+
for (var i = ancestors.length; i--; ) {
|
|
4680
|
+
var ancestor = map2.get(ancestors[i]), child = ancestors[i + 1], leaf = map2.get(child) || node;
|
|
4681
|
+
ancestor.children.indexOf(leaf) === -1 && ancestor.children.push(leaf);
|
|
4682
|
+
}
|
|
4683
|
+
}
|
|
4684
|
+
visit(tree, function(node, ancestors) {
|
|
4685
|
+
if (!node.children) {
|
|
4686
|
+
if (node.lineStart < markerLine) {
|
|
4687
|
+
addCopy(headMap, node, ancestors);
|
|
4688
|
+
return;
|
|
4689
|
+
}
|
|
4690
|
+
if (node.lineStart === markerLine) {
|
|
4691
|
+
addCopy(lineMap, node, ancestors);
|
|
4692
|
+
return;
|
|
4693
|
+
}
|
|
4694
|
+
node.lineEnd > markerLine && cloned.some(function(clone) {
|
|
4695
|
+
return ancestors.indexOf(clone) !== -1;
|
|
4696
|
+
}) && addCopy(tailMap, node, ancestors);
|
|
4697
|
+
}
|
|
4698
|
+
});
|
|
4699
|
+
var filtered = filter(tree, function(node) {
|
|
4700
|
+
return cloned.indexOf(node) === -1;
|
|
4701
|
+
}), getChildren = function(map2) {
|
|
4702
|
+
var rootNode = map2.get(tree);
|
|
4703
|
+
return rootNode ? (visit(rootNode, function(leaf, ancestors) {
|
|
4704
|
+
if (leaf.children) {
|
|
4705
|
+
leaf.lineStart = 0, leaf.lineEnd = 0;
|
|
4706
|
+
return;
|
|
4707
|
+
}
|
|
4708
|
+
ancestors.forEach(function(ancestor) {
|
|
4709
|
+
ancestor.lineStart = Math.max(ancestor.lineStart, leaf.lineStart), ancestor.lineEnd = Math.max(ancestor.lineEnd, leaf.lineEnd);
|
|
4710
|
+
});
|
|
4711
|
+
}), rootNode.children) : [];
|
|
4712
|
+
}, merged = [].concat(getChildren(headMap), getChildren(lineMap), getChildren(tailMap), filtered ? filtered.children : []);
|
|
4713
|
+
return headMap.clear(), lineMap.clear(), tailMap.clear(), merged;
|
|
4714
|
+
}
|
|
4715
|
+
function wrapBatch(children, marker2, options) {
|
|
4716
|
+
var className = marker2.className || "refractor-marker";
|
|
4717
|
+
return {
|
|
4718
|
+
type: "element",
|
|
4719
|
+
tagName: marker2.component || "div",
|
|
4720
|
+
properties: marker2.component ? Object.assign({}, options, {
|
|
4721
|
+
className
|
|
4722
|
+
}) : {
|
|
4723
|
+
className
|
|
4724
|
+
},
|
|
4725
|
+
children,
|
|
4726
|
+
lineStart: marker2.line,
|
|
4727
|
+
lineEnd: children[children.length - 1].lineEnd,
|
|
4728
|
+
isMarker: !0
|
|
4729
|
+
};
|
|
4730
|
+
}
|
|
4731
|
+
function wrapLines(treeNodes, markers, options) {
|
|
4732
|
+
if (markers.length === 0 || treeNodes.length === 0)
|
|
4733
|
+
return treeNodes;
|
|
4734
|
+
for (var ast2 = markers.reduce(function(acc, marker3) {
|
|
4735
|
+
return unwrapLine(marker3.line, acc);
|
|
4736
|
+
}, treeNodes), wrapped = [], astIndex = 0, m = 0; m < markers.length; m++) {
|
|
4737
|
+
for (var marker2 = markers[m], node = ast2[astIndex]; node && node.lineEnd < marker2.line; node = ast2[++astIndex])
|
|
4738
|
+
wrapped.push(node);
|
|
4739
|
+
for (var batch = [], _node = ast2[astIndex]; _node && _node.lineEnd === marker2.line; _node = ast2[++astIndex])
|
|
4740
|
+
batch.push(_node);
|
|
4741
|
+
batch.length > 0 && wrapped.push(wrapBatch(batch, marker2, options));
|
|
4742
|
+
}
|
|
4743
|
+
for (; astIndex < ast2.length; )
|
|
4744
|
+
wrapped.push(ast2[astIndex++]);
|
|
4745
|
+
return wrapped;
|
|
4746
|
+
}
|
|
4747
|
+
function addMarkers(ast2, options) {
|
|
4748
|
+
var markers = options.markers.map(function(marker2) {
|
|
4749
|
+
return marker2.line ? marker2 : {
|
|
4750
|
+
line: marker2
|
|
4751
|
+
};
|
|
4752
|
+
}).sort(function(nodeA, nodeB) {
|
|
4753
|
+
return nodeA.line - nodeB.line;
|
|
4754
|
+
}), numbered = lineNumberify(ast2).nodes;
|
|
4755
|
+
return wrapLines(numbered, markers, options);
|
|
4756
|
+
}
|
|
4757
|
+
return addMarkers_1 = addMarkers, addMarkers_1;
|
|
4758
|
+
}
|
|
4759
|
+
var Refractor_1, hasRequiredRefractor;
|
|
4760
|
+
function requireRefractor() {
|
|
4761
|
+
if (hasRequiredRefractor) return Refractor_1;
|
|
4762
|
+
hasRequiredRefractor = 1;
|
|
4763
|
+
var React = r__default, fract = requireCore(), mapChildren2 = requireMapChildren(), addMarkers = requireAddMarkers(), h = React.createElement;
|
|
4764
|
+
function Refractor2(props) {
|
|
4765
|
+
process.env.NODE_ENV !== "production" && (fract.registered(props.language) || console.warn('No language definitions for "'.concat(props.language, '" seems to be registered, did you forget to call `Refractor.registerLanguage()`?')));
|
|
4766
|
+
var langClassName = "language-".concat(props.language), codeProps = {
|
|
4767
|
+
className: langClassName
|
|
4768
|
+
}, preProps = {
|
|
4769
|
+
className: [props.className || "refractor", langClassName].filter(Boolean).join(" ")
|
|
4770
|
+
};
|
|
4771
|
+
props.inline && (codeProps.style = {
|
|
4772
|
+
display: "inline"
|
|
4773
|
+
}, codeProps.className = props.className || "refractor");
|
|
4774
|
+
var ast2 = fract.highlight(props.value, props.language);
|
|
4775
|
+
props.markers && props.markers.length > 0 && (ast2 = addMarkers(ast2, {
|
|
4776
|
+
markers: props.markers
|
|
4777
|
+
}));
|
|
4778
|
+
var value = ast2.length === 0 ? props.value : ast2.map(mapChildren2.depth(0)), code = h("code", codeProps, value);
|
|
4779
|
+
return props.inline ? code : h("pre", preProps, code);
|
|
4780
|
+
}
|
|
4781
|
+
return Refractor2.registerLanguage = function(lang2) {
|
|
4782
|
+
return fract.register(lang2);
|
|
4783
|
+
}, Refractor2.hasLanguage = function(lang2) {
|
|
4784
|
+
return fract.registered(lang2);
|
|
4785
|
+
}, Refractor_1 = Refractor2, Refractor_1;
|
|
4786
|
+
}
|
|
4787
|
+
var RefractorExports = requireRefractor(), Refractor = /* @__PURE__ */ getDefaultExportFromCjs(RefractorExports);
|
|
4788
|
+
function LazyRefractor(props) {
|
|
4789
|
+
const $ = distExports.c(13), {
|
|
4790
|
+
language: languageProp,
|
|
4791
|
+
value
|
|
4792
|
+
} = props, language = typeof languageProp == "string" ? languageProp : void 0;
|
|
4793
|
+
let t0;
|
|
4794
|
+
$[0] !== language ? (t0 = language ? Refractor.hasLanguage(language) : !1, $[0] = language, $[1] = t0) : t0 = $[1];
|
|
4795
|
+
const registered = t0;
|
|
4796
|
+
let t1;
|
|
4797
|
+
$[2] !== language || $[3] !== registered || $[4] !== value ? (t1 = !(language && registered) && /* @__PURE__ */ jsx("code", { children: value }), $[2] = language, $[3] = registered, $[4] = value, $[5] = t1) : t1 = $[5];
|
|
4798
|
+
let t2;
|
|
4799
|
+
$[6] !== language || $[7] !== registered || $[8] !== value ? (t2 = language && registered && /* @__PURE__ */ jsx(Refractor, { inline: !0, language, value: String(value) }), $[6] = language, $[7] = registered, $[8] = value, $[9] = t2) : t2 = $[9];
|
|
4800
|
+
let t3;
|
|
4801
|
+
return $[10] !== t1 || $[11] !== t2 ? (t3 = /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
4802
|
+
t1,
|
|
4803
|
+
t2
|
|
4804
|
+
] }), $[10] = t1, $[11] = t2, $[12] = t3) : t3 = $[12], t3;
|
|
4805
|
+
}
|
|
4806
|
+
LazyRefractor.displayName = "LazyRefractor";
|
|
4807
|
+
export {
|
|
4808
|
+
LazyRefractor as default
|
|
4809
|
+
};
|
|
4810
|
+
//# sourceMappingURL=refractor.js.map
|