@streamlayer/web-os 0.4.4 → 0.5.1

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.
Files changed (37) hide show
  1. package/lib/cjs/index.js +80 -1
  2. package/lib/cjs/index2.js +5 -80
  3. package/lib/classic/cjs/classic.js +1 -1
  4. package/lib/classic/cjs/index.js +1 -1
  5. package/lib/classic/cjs/index2.js +1 -1
  6. package/lib/classic/cjs/index3.js +1 -0
  7. package/lib/classic/classic.d.ts +2 -2
  8. package/lib/classic/es/classic.js +8 -11
  9. package/lib/classic/es/index.js +14 -17
  10. package/lib/classic/es/index2.js +9602 -9772
  11. package/lib/classic/es/index3.js +4484 -0
  12. package/lib/classic/index.d.ts +2 -2
  13. package/lib/classic/style.css +1 -1
  14. package/lib/classic.d.ts +2 -2
  15. package/lib/es/index.js +17785 -13
  16. package/lib/es/index2.js +3664 -17999
  17. package/lib/index.d.ts +2 -2
  18. package/lib/style.css +1 -1
  19. package/package.json +15 -51
  20. package/lib/cjs/gamification-feature.js +0 -1
  21. package/lib/cjs/index-l-eyvmpL.js +0 -5
  22. package/lib/classic/cjs/gamification-feature.js +0 -1
  23. package/lib/classic/cjs/index-l-eyvmpL.js +0 -1
  24. package/lib/classic/core/app/app.d.ts +0 -16
  25. package/lib/classic/core/app/event.d.ts +0 -6
  26. package/lib/classic/core/app/provider.d.ts +0 -49
  27. package/lib/classic/core/app/useStreamLayerApp.d.ts +0 -23
  28. package/lib/classic/core/index.d.ts +0 -4
  29. package/lib/classic/es/gamification-feature.js +0 -640
  30. package/lib/classic/es/index-l-eyvmpL.js +0 -3758
  31. package/lib/core/app/app.d.ts +0 -16
  32. package/lib/core/app/event.d.ts +0 -6
  33. package/lib/core/app/provider.d.ts +0 -49
  34. package/lib/core/app/useStreamLayerApp.d.ts +0 -23
  35. package/lib/core/index.d.ts +0 -4
  36. package/lib/es/gamification-feature.js +0 -608
  37. package/lib/es/index-l-eyvmpL.js +0 -3758
@@ -1,3758 +0,0 @@
1
- var V = {}, M = {};
2
- function Lr(e, r, t) {
3
- if (t === void 0 && (t = Array.prototype), e && typeof t.find == "function")
4
- return t.find.call(e, r);
5
- for (var n = 0; n < e.length; n++)
6
- if (Object.prototype.hasOwnProperty.call(e, n)) {
7
- var a = e[n];
8
- if (r.call(void 0, a, n, e))
9
- return a;
10
- }
11
- }
12
- function De(e, r) {
13
- return r === void 0 && (r = Object), r && typeof r.freeze == "function" ? r.freeze(e) : e;
14
- }
15
- function Or(e, r) {
16
- if (e === null || typeof e != "object")
17
- throw new TypeError("target is not an object");
18
- for (var t in r)
19
- Object.prototype.hasOwnProperty.call(r, t) && (e[t] = r[t]);
20
- return e;
21
- }
22
- var We = De({
23
- /**
24
- * `text/html`, the only mime type that triggers treating an XML document as HTML.
25
- *
26
- * @see DOMParser.SupportedType.isHTML
27
- * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration
28
- * @see https://en.wikipedia.org/wiki/HTML Wikipedia
29
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN
30
- * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring WHATWG HTML Spec
31
- */
32
- HTML: "text/html",
33
- /**
34
- * Helper method to check a mime type if it indicates an HTML document
35
- *
36
- * @param {string} [value]
37
- * @returns {boolean}
38
- *
39
- * @see https://www.iana.org/assignments/media-types/text/html IANA MimeType registration
40
- * @see https://en.wikipedia.org/wiki/HTML Wikipedia
41
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString MDN
42
- * @see https://html.spec.whatwg.org/multipage/dynamic-markup-insertion.html#dom-domparser-parsefromstring */
43
- isHTML: function(e) {
44
- return e === We.HTML;
45
- },
46
- /**
47
- * `application/xml`, the standard mime type for XML documents.
48
- *
49
- * @see https://www.iana.org/assignments/media-types/application/xml IANA MimeType registration
50
- * @see https://tools.ietf.org/html/rfc7303#section-9.1 RFC 7303
51
- * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia
52
- */
53
- XML_APPLICATION: "application/xml",
54
- /**
55
- * `text/html`, an alias for `application/xml`.
56
- *
57
- * @see https://tools.ietf.org/html/rfc7303#section-9.2 RFC 7303
58
- * @see https://www.iana.org/assignments/media-types/text/xml IANA MimeType registration
59
- * @see https://en.wikipedia.org/wiki/XML_and_MIME Wikipedia
60
- */
61
- XML_TEXT: "text/xml",
62
- /**
63
- * `application/xhtml+xml`, indicates an XML document that has the default HTML namespace,
64
- * but is parsed as an XML document.
65
- *
66
- * @see https://www.iana.org/assignments/media-types/application/xhtml+xml IANA MimeType registration
67
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument WHATWG DOM Spec
68
- * @see https://en.wikipedia.org/wiki/XHTML Wikipedia
69
- */
70
- XML_XHTML_APPLICATION: "application/xhtml+xml",
71
- /**
72
- * `image/svg+xml`,
73
- *
74
- * @see https://www.iana.org/assignments/media-types/image/svg+xml IANA MimeType registration
75
- * @see https://www.w3.org/TR/SVG11/ W3C SVG 1.1
76
- * @see https://en.wikipedia.org/wiki/Scalable_Vector_Graphics Wikipedia
77
- */
78
- XML_SVG_IMAGE: "image/svg+xml"
79
- }), Ke = De({
80
- /**
81
- * The XHTML namespace.
82
- *
83
- * @see http://www.w3.org/1999/xhtml
84
- */
85
- HTML: "http://www.w3.org/1999/xhtml",
86
- /**
87
- * Checks if `uri` equals `NAMESPACE.HTML`.
88
- *
89
- * @param {string} [uri]
90
- *
91
- * @see NAMESPACE.HTML
92
- */
93
- isHTML: function(e) {
94
- return e === Ke.HTML;
95
- },
96
- /**
97
- * The SVG namespace.
98
- *
99
- * @see http://www.w3.org/2000/svg
100
- */
101
- SVG: "http://www.w3.org/2000/svg",
102
- /**
103
- * The `xml:` namespace.
104
- *
105
- * @see http://www.w3.org/XML/1998/namespace
106
- */
107
- XML: "http://www.w3.org/XML/1998/namespace",
108
- /**
109
- * The `xmlns:` namespace
110
- *
111
- * @see https://www.w3.org/2000/xmlns/
112
- */
113
- XMLNS: "http://www.w3.org/2000/xmlns/"
114
- });
115
- M.assign = Or;
116
- M.find = Lr;
117
- M.freeze = De;
118
- M.MIME_TYPE = We;
119
- M.NAMESPACE = Ke;
120
- var Qe = M, R = Qe.find, Q = Qe.NAMESPACE;
121
- function Rr(e) {
122
- return e !== "";
123
- }
124
- function Cr(e) {
125
- return e ? e.split(/[\t\n\f\r ]+/).filter(Rr) : [];
126
- }
127
- function Ir(e, r) {
128
- return e.hasOwnProperty(r) || (e[r] = !0), e;
129
- }
130
- function Ue(e) {
131
- if (!e) return [];
132
- var r = Cr(e);
133
- return Object.keys(r.reduce(Ir, {}));
134
- }
135
- function kr(e) {
136
- return function(r) {
137
- return e && e.indexOf(r) !== -1;
138
- };
139
- }
140
- function ne(e, r) {
141
- for (var t in e)
142
- Object.prototype.hasOwnProperty.call(e, t) && (r[t] = e[t]);
143
- }
144
- function T(e, r) {
145
- var t = e.prototype;
146
- if (!(t instanceof r)) {
147
- let n = function() {
148
- };
149
- n.prototype = r.prototype, n = new n(), ne(t, n), e.prototype = t = n;
150
- }
151
- t.constructor != e && (typeof e != "function" && console.error("unknown Class:" + e), t.constructor = e);
152
- }
153
- var q = {}, L = q.ELEMENT_NODE = 1, X = q.ATTRIBUTE_NODE = 2, ce = q.TEXT_NODE = 3, er = q.CDATA_SECTION_NODE = 4, rr = q.ENTITY_REFERENCE_NODE = 5, _r = q.ENTITY_NODE = 6, tr = q.PROCESSING_INSTRUCTION_NODE = 7, nr = q.COMMENT_NODE = 8, ar = q.DOCUMENT_NODE = 9, or = q.DOCUMENT_TYPE_NODE = 10, k = q.DOCUMENT_FRAGMENT_NODE = 11, Mr = q.NOTATION_NODE = 12, y = {}, N = {};
154
- y.INDEX_SIZE_ERR = (N[1] = "Index size error", 1);
155
- y.DOMSTRING_SIZE_ERR = (N[2] = "DOMString size error", 2);
156
- var D = y.HIERARCHY_REQUEST_ERR = (N[3] = "Hierarchy request error", 3);
157
- y.WRONG_DOCUMENT_ERR = (N[4] = "Wrong document", 4);
158
- y.INVALID_CHARACTER_ERR = (N[5] = "Invalid character", 5);
159
- y.NO_DATA_ALLOWED_ERR = (N[6] = "No data allowed", 6);
160
- y.NO_MODIFICATION_ALLOWED_ERR = (N[7] = "No modification allowed", 7);
161
- var ir = y.NOT_FOUND_ERR = (N[8] = "Not found", 8);
162
- y.NOT_SUPPORTED_ERR = (N[9] = "Not supported", 9);
163
- var Pe = y.INUSE_ATTRIBUTE_ERR = (N[10] = "Attribute in use", 10);
164
- y.INVALID_STATE_ERR = (N[11] = "Invalid state", 11);
165
- y.SYNTAX_ERR = (N[12] = "Syntax error", 12);
166
- y.INVALID_MODIFICATION_ERR = (N[13] = "Invalid modification", 13);
167
- y.NAMESPACE_ERR = (N[14] = "Invalid namespace", 14);
168
- y.INVALID_ACCESS_ERR = (N[15] = "Invalid access", 15);
169
- function b(e, r) {
170
- if (r instanceof Error)
171
- var t = r;
172
- else
173
- t = this, Error.call(this, N[e]), this.message = N[e], Error.captureStackTrace && Error.captureStackTrace(this, b);
174
- return t.code = e, r && (this.message = this.message + ": " + r), t;
175
- }
176
- b.prototype = Error.prototype;
177
- ne(y, b);
178
- function I() {
179
- }
180
- I.prototype = {
181
- /**
182
- * The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.
183
- * @standard level1
184
- */
185
- length: 0,
186
- /**
187
- * Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.
188
- * @standard level1
189
- * @param index unsigned long
190
- * Index into the collection.
191
- * @return Node
192
- * The node at the indexth position in the NodeList, or null if that is not a valid index.
193
- */
194
- item: function(e) {
195
- return e >= 0 && e < this.length ? this[e] : null;
196
- },
197
- toString: function(e, r) {
198
- for (var t = [], n = 0; n < this.length; n++)
199
- F(this[n], t, e, r);
200
- return t.join("");
201
- },
202
- /**
203
- * @private
204
- * @param {function (Node):boolean} predicate
205
- * @returns {Node[]}
206
- */
207
- filter: function(e) {
208
- return Array.prototype.filter.call(this, e);
209
- },
210
- /**
211
- * @private
212
- * @param {Node} item
213
- * @returns {number}
214
- */
215
- indexOf: function(e) {
216
- return Array.prototype.indexOf.call(this, e);
217
- }
218
- };
219
- function $(e, r) {
220
- this._node = e, this._refresh = r, Te(this);
221
- }
222
- function Te(e) {
223
- var r = e._node._inc || e._node.ownerDocument._inc;
224
- if (e._inc !== r) {
225
- var t = e._refresh(e._node);
226
- if (vr(e, "length", t.length), !e.$$length || t.length < e.$$length)
227
- for (var n = t.length; n in e; n++)
228
- Object.prototype.hasOwnProperty.call(e, n) && delete e[n];
229
- ne(t, e), e._inc = r;
230
- }
231
- }
232
- $.prototype.item = function(e) {
233
- return Te(this), this[e] || null;
234
- };
235
- T($, I);
236
- function ue() {
237
- }
238
- function sr(e, r) {
239
- for (var t = e.length; t--; )
240
- if (e[t] === r)
241
- return t;
242
- }
243
- function Ve(e, r, t, n) {
244
- if (n ? r[sr(r, n)] = t : r[r.length++] = t, e) {
245
- t.ownerElement = e;
246
- var a = e.ownerDocument;
247
- a && (n && ur(a, e, n), Ur(a, e, t));
248
- }
249
- }
250
- function Be(e, r, t) {
251
- var n = sr(r, t);
252
- if (n >= 0) {
253
- for (var a = r.length - 1; n < a; )
254
- r[n] = r[++n];
255
- if (r.length = a, e) {
256
- var o = e.ownerDocument;
257
- o && (ur(o, e, t), t.ownerElement = null);
258
- }
259
- } else
260
- throw new b(ir, new Error(e.tagName + "@" + t));
261
- }
262
- ue.prototype = {
263
- length: 0,
264
- item: I.prototype.item,
265
- getNamedItem: function(e) {
266
- for (var r = this.length; r--; ) {
267
- var t = this[r];
268
- if (t.nodeName == e)
269
- return t;
270
- }
271
- },
272
- setNamedItem: function(e) {
273
- var r = e.ownerElement;
274
- if (r && r != this._ownerElement)
275
- throw new b(Pe);
276
- var t = this.getNamedItem(e.nodeName);
277
- return Ve(this._ownerElement, this, e, t), t;
278
- },
279
- /* returns Node */
280
- setNamedItemNS: function(e) {
281
- var r = e.ownerElement, t;
282
- if (r && r != this._ownerElement)
283
- throw new b(Pe);
284
- return t = this.getNamedItemNS(e.namespaceURI, e.localName), Ve(this._ownerElement, this, e, t), t;
285
- },
286
- /* returns Node */
287
- removeNamedItem: function(e) {
288
- var r = this.getNamedItem(e);
289
- return Be(this._ownerElement, this, r), r;
290
- },
291
- // raises: NOT_FOUND_ERR,NO_MODIFICATION_ALLOWED_ERR
292
- //for level2
293
- removeNamedItemNS: function(e, r) {
294
- var t = this.getNamedItemNS(e, r);
295
- return Be(this._ownerElement, this, t), t;
296
- },
297
- getNamedItemNS: function(e, r) {
298
- for (var t = this.length; t--; ) {
299
- var n = this[t];
300
- if (n.localName == r && n.namespaceURI == e)
301
- return n;
302
- }
303
- return null;
304
- }
305
- };
306
- function lr() {
307
- }
308
- lr.prototype = {
309
- /**
310
- * The DOMImplementation.hasFeature() method returns a Boolean flag indicating if a given feature is supported.
311
- * The different implementations fairly diverged in what kind of features were reported.
312
- * The latest version of the spec settled to force this method to always return true, where the functionality was accurate and in use.
313
- *
314
- * @deprecated It is deprecated and modern browsers return true in all cases.
315
- *
316
- * @param {string} feature
317
- * @param {string} [version]
318
- * @returns {boolean} always true
319
- *
320
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/hasFeature MDN
321
- * @see https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-5CED94D7 DOM Level 1 Core
322
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-hasfeature DOM Living Standard
323
- */
324
- hasFeature: function(e, r) {
325
- return !0;
326
- },
327
- /**
328
- * Creates an XML Document object of the specified type with its document element.
329
- *
330
- * __It behaves slightly different from the description in the living standard__:
331
- * - There is no interface/class `XMLDocument`, it returns a `Document` instance.
332
- * - `contentType`, `encoding`, `mode`, `origin`, `url` fields are currently not declared.
333
- * - this implementation is not validating names or qualified names
334
- * (when parsing XML strings, the SAX parser takes care of that)
335
- *
336
- * @param {string|null} namespaceURI
337
- * @param {string} qualifiedName
338
- * @param {DocumentType=null} doctype
339
- * @returns {Document}
340
- *
341
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocument MDN
342
- * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocument DOM Level 2 Core (initial)
343
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocument DOM Level 2 Core
344
- *
345
- * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract
346
- * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names
347
- * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names
348
- */
349
- createDocument: function(e, r, t) {
350
- var n = new ae();
351
- if (n.implementation = this, n.childNodes = new I(), n.doctype = t || null, t && n.appendChild(t), r) {
352
- var a = n.createElementNS(e, r);
353
- n.appendChild(a);
354
- }
355
- return n;
356
- },
357
- /**
358
- * Returns a doctype, with the given `qualifiedName`, `publicId`, and `systemId`.
359
- *
360
- * __This behavior is slightly different from the in the specs__:
361
- * - this implementation is not validating names or qualified names
362
- * (when parsing XML strings, the SAX parser takes care of that)
363
- *
364
- * @param {string} qualifiedName
365
- * @param {string} [publicId]
366
- * @param {string} [systemId]
367
- * @returns {DocumentType} which can either be used with `DOMImplementation.createDocument` upon document creation
368
- * or can be put into the document via methods like `Node.insertBefore()` or `Node.replaceChild()`
369
- *
370
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createDocumentType MDN
371
- * @see https://www.w3.org/TR/DOM-Level-2-Core/core.html#Level-2-Core-DOM-createDocType DOM Level 2 Core
372
- * @see https://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype DOM Living Standard
373
- *
374
- * @see https://dom.spec.whatwg.org/#validate-and-extract DOM: Validate and extract
375
- * @see https://www.w3.org/TR/xml/#NT-NameStartChar XML Spec: Names
376
- * @see https://www.w3.org/TR/xml-names/#ns-qualnames XML Namespaces: Qualified names
377
- */
378
- createDocumentType: function(e, r, t) {
379
- var n = new fe();
380
- return n.name = e, n.nodeName = e, n.publicId = r || "", n.systemId = t || "", n;
381
- }
382
- };
383
- function d() {
384
- }
385
- d.prototype = {
386
- firstChild: null,
387
- lastChild: null,
388
- previousSibling: null,
389
- nextSibling: null,
390
- attributes: null,
391
- parentNode: null,
392
- childNodes: null,
393
- ownerDocument: null,
394
- nodeValue: null,
395
- namespaceURI: null,
396
- prefix: null,
397
- localName: null,
398
- // Modified in DOM Level 2:
399
- insertBefore: function(e, r) {
400
- return pe(this, e, r);
401
- },
402
- replaceChild: function(e, r) {
403
- pe(this, e, r, dr), r && this.removeChild(r);
404
- },
405
- removeChild: function(e) {
406
- return pr(this, e);
407
- },
408
- appendChild: function(e) {
409
- return this.insertBefore(e, null);
410
- },
411
- hasChildNodes: function() {
412
- return this.firstChild != null;
413
- },
414
- cloneNode: function(e) {
415
- return Ne(this.ownerDocument || this, this, e);
416
- },
417
- // Modified in DOM Level 2:
418
- normalize: function() {
419
- for (var e = this.firstChild; e; ) {
420
- var r = e.nextSibling;
421
- r && r.nodeType == ce && e.nodeType == ce ? (this.removeChild(r), e.appendData(r.data)) : (e.normalize(), e = r);
422
- }
423
- },
424
- // Introduced in DOM Level 2:
425
- isSupported: function(e, r) {
426
- return this.ownerDocument.implementation.hasFeature(e, r);
427
- },
428
- // Introduced in DOM Level 2:
429
- hasAttributes: function() {
430
- return this.attributes.length > 0;
431
- },
432
- /**
433
- * Look up the prefix associated to the given namespace URI, starting from this node.
434
- * **The default namespace declarations are ignored by this method.**
435
- * See Namespace Prefix Lookup for details on the algorithm used by this method.
436
- *
437
- * _Note: The implementation seems to be incomplete when compared to the algorithm described in the specs._
438
- *
439
- * @param {string | null} namespaceURI
440
- * @returns {string | null}
441
- * @see https://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespacePrefix
442
- * @see https://www.w3.org/TR/DOM-Level-3-Core/namespaces-algorithms.html#lookupNamespacePrefixAlgo
443
- * @see https://dom.spec.whatwg.org/#dom-node-lookupprefix
444
- * @see https://github.com/xmldom/xmldom/issues/322
445
- */
446
- lookupPrefix: function(e) {
447
- for (var r = this; r; ) {
448
- var t = r._nsMap;
449
- if (t) {
450
- for (var n in t)
451
- if (Object.prototype.hasOwnProperty.call(t, n) && t[n] === e)
452
- return n;
453
- }
454
- r = r.nodeType == X ? r.ownerDocument : r.parentNode;
455
- }
456
- return null;
457
- },
458
- // Introduced in DOM Level 3:
459
- lookupNamespaceURI: function(e) {
460
- for (var r = this; r; ) {
461
- var t = r._nsMap;
462
- if (t && Object.prototype.hasOwnProperty.call(t, e))
463
- return t[e];
464
- r = r.nodeType == X ? r.ownerDocument : r.parentNode;
465
- }
466
- return null;
467
- },
468
- // Introduced in DOM Level 3:
469
- isDefaultNamespace: function(e) {
470
- var r = this.lookupPrefix(e);
471
- return r == null;
472
- }
473
- };
474
- function cr(e) {
475
- return e == "<" && "&lt;" || e == ">" && "&gt;" || e == "&" && "&amp;" || e == '"' && "&quot;" || "&#" + e.charCodeAt() + ";";
476
- }
477
- ne(q, d);
478
- ne(q, d.prototype);
479
- function ee(e, r) {
480
- if (r(e))
481
- return !0;
482
- if (e = e.firstChild)
483
- do
484
- if (ee(e, r))
485
- return !0;
486
- while (e = e.nextSibling);
487
- }
488
- function ae() {
489
- this.ownerDocument = this;
490
- }
491
- function Ur(e, r, t) {
492
- e && e._inc++;
493
- var n = t.namespaceURI;
494
- n === Q.XMLNS && (r._nsMap[t.prefix ? t.localName : ""] = t.value);
495
- }
496
- function ur(e, r, t, n) {
497
- e && e._inc++;
498
- var a = t.namespaceURI;
499
- a === Q.XMLNS && delete r._nsMap[t.prefix ? t.localName : ""];
500
- }
501
- function qe(e, r, t) {
502
- if (e && e._inc) {
503
- e._inc++;
504
- var n = r.childNodes;
505
- if (t)
506
- n[n.length++] = t;
507
- else {
508
- for (var a = r.firstChild, o = 0; a; )
509
- n[o++] = a, a = a.nextSibling;
510
- n.length = o, delete n[n.length];
511
- }
512
- }
513
- }
514
- function pr(e, r) {
515
- var t = r.previousSibling, n = r.nextSibling;
516
- return t ? t.nextSibling = n : e.firstChild = n, n ? n.previousSibling = t : e.lastChild = t, r.parentNode = null, r.previousSibling = null, r.nextSibling = null, qe(e.ownerDocument, e), r;
517
- }
518
- function Pr(e) {
519
- return e && (e.nodeType === d.DOCUMENT_NODE || e.nodeType === d.DOCUMENT_FRAGMENT_NODE || e.nodeType === d.ELEMENT_NODE);
520
- }
521
- function Vr(e) {
522
- return e && (C(e) || xe(e) || _(e) || e.nodeType === d.DOCUMENT_FRAGMENT_NODE || e.nodeType === d.COMMENT_NODE || e.nodeType === d.PROCESSING_INSTRUCTION_NODE);
523
- }
524
- function _(e) {
525
- return e && e.nodeType === d.DOCUMENT_TYPE_NODE;
526
- }
527
- function C(e) {
528
- return e && e.nodeType === d.ELEMENT_NODE;
529
- }
530
- function xe(e) {
531
- return e && e.nodeType === d.TEXT_NODE;
532
- }
533
- function He(e, r) {
534
- var t = e.childNodes || [];
535
- if (R(t, C) || _(r))
536
- return !1;
537
- var n = R(t, _);
538
- return !(r && n && t.indexOf(n) > t.indexOf(r));
539
- }
540
- function Ge(e, r) {
541
- var t = e.childNodes || [];
542
- function n(o) {
543
- return C(o) && o !== r;
544
- }
545
- if (R(t, n))
546
- return !1;
547
- var a = R(t, _);
548
- return !(r && a && t.indexOf(a) > t.indexOf(r));
549
- }
550
- function Br(e, r, t) {
551
- if (!Pr(e))
552
- throw new b(D, "Unexpected parent node type " + e.nodeType);
553
- if (t && t.parentNode !== e)
554
- throw new b(ir, "child not in parent");
555
- if (
556
- // 4. If `node` is not a DocumentFragment, DocumentType, Element, or CharacterData node, then throw a "HierarchyRequestError" DOMException.
557
- !Vr(r) || // 5. If either `node` is a Text node and `parent` is a document,
558
- // the sax parser currently adds top level text nodes, this will be fixed in 0.9.0
559
- // || (node.nodeType === Node.TEXT_NODE && parent.nodeType === Node.DOCUMENT_NODE)
560
- // or `node` is a doctype and `parent` is not a document, then throw a "HierarchyRequestError" DOMException.
561
- _(r) && e.nodeType !== d.DOCUMENT_NODE
562
- )
563
- throw new b(
564
- D,
565
- "Unexpected node type " + r.nodeType + " for parent node type " + e.nodeType
566
- );
567
- }
568
- function Hr(e, r, t) {
569
- var n = e.childNodes || [], a = r.childNodes || [];
570
- if (r.nodeType === d.DOCUMENT_FRAGMENT_NODE) {
571
- var o = a.filter(C);
572
- if (o.length > 1 || R(a, xe))
573
- throw new b(D, "More than one element or text in fragment");
574
- if (o.length === 1 && !He(e, t))
575
- throw new b(D, "Element in fragment can not be inserted before doctype");
576
- }
577
- if (C(r) && !He(e, t))
578
- throw new b(D, "Only one element can be added and only after doctype");
579
- if (_(r)) {
580
- if (R(n, _))
581
- throw new b(D, "Only one doctype is allowed");
582
- var i = R(n, C);
583
- if (t && n.indexOf(i) < n.indexOf(t))
584
- throw new b(D, "Doctype can only be inserted before an element");
585
- if (!t && i)
586
- throw new b(D, "Doctype can not be appended since element is present");
587
- }
588
- }
589
- function dr(e, r, t) {
590
- var n = e.childNodes || [], a = r.childNodes || [];
591
- if (r.nodeType === d.DOCUMENT_FRAGMENT_NODE) {
592
- var o = a.filter(C);
593
- if (o.length > 1 || R(a, xe))
594
- throw new b(D, "More than one element or text in fragment");
595
- if (o.length === 1 && !Ge(e, t))
596
- throw new b(D, "Element in fragment can not be inserted before doctype");
597
- }
598
- if (C(r) && !Ge(e, t))
599
- throw new b(D, "Only one element can be added and only after doctype");
600
- if (_(r)) {
601
- if (R(n, function(s) {
602
- return _(s) && s !== t;
603
- }))
604
- throw new b(D, "Only one doctype is allowed");
605
- var i = R(n, C);
606
- if (t && n.indexOf(i) < n.indexOf(t))
607
- throw new b(D, "Doctype can only be inserted before an element");
608
- }
609
- }
610
- function pe(e, r, t, n) {
611
- Br(e, r, t), e.nodeType === d.DOCUMENT_NODE && (n || Hr)(e, r, t);
612
- var a = r.parentNode;
613
- if (a && a.removeChild(r), r.nodeType === k) {
614
- var o = r.firstChild;
615
- if (o == null)
616
- return r;
617
- var i = r.lastChild;
618
- } else
619
- o = i = r;
620
- var s = t ? t.previousSibling : e.lastChild;
621
- o.previousSibling = s, i.nextSibling = t, s ? s.nextSibling = o : e.firstChild = o, t == null ? e.lastChild = i : t.previousSibling = i;
622
- do {
623
- o.parentNode = e;
624
- var u = e.ownerDocument || e;
625
- re(o, u);
626
- } while (o !== i && (o = o.nextSibling));
627
- return qe(e.ownerDocument || e, e), r.nodeType == k && (r.firstChild = r.lastChild = null), r;
628
- }
629
- function re(e, r) {
630
- if (e.ownerDocument !== r) {
631
- if (e.ownerDocument = r, e.nodeType === L && e.attributes)
632
- for (var t = 0; t < e.attributes.length; t++) {
633
- var n = e.attributes.item(t);
634
- n && (n.ownerDocument = r);
635
- }
636
- for (var a = e.firstChild; a; )
637
- re(a, r), a = a.nextSibling;
638
- }
639
- }
640
- function Gr(e, r) {
641
- r.parentNode && r.parentNode.removeChild(r), r.parentNode = e, r.previousSibling = e.lastChild, r.nextSibling = null, r.previousSibling ? r.previousSibling.nextSibling = r : e.firstChild = r, e.lastChild = r, qe(e.ownerDocument, e, r);
642
- var t = e.ownerDocument || e;
643
- return re(r, t), r;
644
- }
645
- ae.prototype = {
646
- //implementation : null,
647
- nodeName: "#document",
648
- nodeType: ar,
649
- /**
650
- * The DocumentType node of the document.
651
- *
652
- * @readonly
653
- * @type DocumentType
654
- */
655
- doctype: null,
656
- documentElement: null,
657
- _inc: 1,
658
- insertBefore: function(e, r) {
659
- if (e.nodeType == k) {
660
- for (var t = e.firstChild; t; ) {
661
- var n = t.nextSibling;
662
- this.insertBefore(t, r), t = n;
663
- }
664
- return e;
665
- }
666
- return pe(this, e, r), re(e, this), this.documentElement === null && e.nodeType === L && (this.documentElement = e), e;
667
- },
668
- removeChild: function(e) {
669
- return this.documentElement == e && (this.documentElement = null), pr(this, e);
670
- },
671
- replaceChild: function(e, r) {
672
- pe(this, e, r, dr), re(e, this), r && this.removeChild(r), C(e) && (this.documentElement = e);
673
- },
674
- // Introduced in DOM Level 2:
675
- importNode: function(e, r) {
676
- return br(this, e, r);
677
- },
678
- // Introduced in DOM Level 2:
679
- getElementById: function(e) {
680
- var r = null;
681
- return ee(this.documentElement, function(t) {
682
- if (t.nodeType == L && t.getAttribute("id") == e)
683
- return r = t, !0;
684
- }), r;
685
- },
686
- /**
687
- * The `getElementsByClassName` method of `Document` interface returns an array-like object
688
- * of all child elements which have **all** of the given class name(s).
689
- *
690
- * Returns an empty list if `classeNames` is an empty string or only contains HTML white space characters.
691
- *
692
- *
693
- * Warning: This is a live LiveNodeList.
694
- * Changes in the DOM will reflect in the array as the changes occur.
695
- * If an element selected by this array no longer qualifies for the selector,
696
- * it will automatically be removed. Be aware of this for iteration purposes.
697
- *
698
- * @param {string} classNames is a string representing the class name(s) to match; multiple class names are separated by (ASCII-)whitespace
699
- *
700
- * @see https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementsByClassName
701
- * @see https://dom.spec.whatwg.org/#concept-getelementsbyclassname
702
- */
703
- getElementsByClassName: function(e) {
704
- var r = Ue(e);
705
- return new $(this, function(t) {
706
- var n = [];
707
- return r.length > 0 && ee(t.documentElement, function(a) {
708
- if (a !== t && a.nodeType === L) {
709
- var o = a.getAttribute("class");
710
- if (o) {
711
- var i = e === o;
712
- if (!i) {
713
- var s = Ue(o);
714
- i = r.every(kr(s));
715
- }
716
- i && n.push(a);
717
- }
718
- }
719
- }), n;
720
- });
721
- },
722
- //document factory method:
723
- createElement: function(e) {
724
- var r = new B();
725
- r.ownerDocument = this, r.nodeName = e, r.tagName = e, r.localName = e, r.childNodes = new I();
726
- var t = r.attributes = new ue();
727
- return t._ownerElement = r, r;
728
- },
729
- createDocumentFragment: function() {
730
- var e = new he();
731
- return e.ownerDocument = this, e.childNodes = new I(), e;
732
- },
733
- createTextNode: function(e) {
734
- var r = new Se();
735
- return r.ownerDocument = this, r.appendData(e), r;
736
- },
737
- createComment: function(e) {
738
- var r = new Ae();
739
- return r.ownerDocument = this, r.appendData(e), r;
740
- },
741
- createCDATASection: function(e) {
742
- var r = new Le();
743
- return r.ownerDocument = this, r.appendData(e), r;
744
- },
745
- createProcessingInstruction: function(e, r) {
746
- var t = new Re();
747
- return t.ownerDocument = this, t.tagName = t.nodeName = t.target = e, t.nodeValue = t.data = r, t;
748
- },
749
- createAttribute: function(e) {
750
- var r = new de();
751
- return r.ownerDocument = this, r.name = e, r.nodeName = e, r.localName = e, r.specified = !0, r;
752
- },
753
- createEntityReference: function(e) {
754
- var r = new Oe();
755
- return r.ownerDocument = this, r.nodeName = e, r;
756
- },
757
- // Introduced in DOM Level 2:
758
- createElementNS: function(e, r) {
759
- var t = new B(), n = r.split(":"), a = t.attributes = new ue();
760
- return t.childNodes = new I(), t.ownerDocument = this, t.nodeName = r, t.tagName = r, t.namespaceURI = e, n.length == 2 ? (t.prefix = n[0], t.localName = n[1]) : t.localName = r, a._ownerElement = t, t;
761
- },
762
- // Introduced in DOM Level 2:
763
- createAttributeNS: function(e, r) {
764
- var t = new de(), n = r.split(":");
765
- return t.ownerDocument = this, t.nodeName = r, t.name = r, t.namespaceURI = e, t.specified = !0, n.length == 2 ? (t.prefix = n[0], t.localName = n[1]) : t.localName = r, t;
766
- }
767
- };
768
- T(ae, d);
769
- function B() {
770
- this._nsMap = {};
771
- }
772
- B.prototype = {
773
- nodeType: L,
774
- hasAttribute: function(e) {
775
- return this.getAttributeNode(e) != null;
776
- },
777
- getAttribute: function(e) {
778
- var r = this.getAttributeNode(e);
779
- return r && r.value || "";
780
- },
781
- getAttributeNode: function(e) {
782
- return this.attributes.getNamedItem(e);
783
- },
784
- setAttribute: function(e, r) {
785
- var t = this.ownerDocument.createAttribute(e);
786
- t.value = t.nodeValue = "" + r, this.setAttributeNode(t);
787
- },
788
- removeAttribute: function(e) {
789
- var r = this.getAttributeNode(e);
790
- r && this.removeAttributeNode(r);
791
- },
792
- //four real opeartion method
793
- appendChild: function(e) {
794
- return e.nodeType === k ? this.insertBefore(e, null) : Gr(this, e);
795
- },
796
- setAttributeNode: function(e) {
797
- return this.attributes.setNamedItem(e);
798
- },
799
- setAttributeNodeNS: function(e) {
800
- return this.attributes.setNamedItemNS(e);
801
- },
802
- removeAttributeNode: function(e) {
803
- return this.attributes.removeNamedItem(e.nodeName);
804
- },
805
- //get real attribute name,and remove it by removeAttributeNode
806
- removeAttributeNS: function(e, r) {
807
- var t = this.getAttributeNodeNS(e, r);
808
- t && this.removeAttributeNode(t);
809
- },
810
- hasAttributeNS: function(e, r) {
811
- return this.getAttributeNodeNS(e, r) != null;
812
- },
813
- getAttributeNS: function(e, r) {
814
- var t = this.getAttributeNodeNS(e, r);
815
- return t && t.value || "";
816
- },
817
- setAttributeNS: function(e, r, t) {
818
- var n = this.ownerDocument.createAttributeNS(e, r);
819
- n.value = n.nodeValue = "" + t, this.setAttributeNode(n);
820
- },
821
- getAttributeNodeNS: function(e, r) {
822
- return this.attributes.getNamedItemNS(e, r);
823
- },
824
- getElementsByTagName: function(e) {
825
- return new $(this, function(r) {
826
- var t = [];
827
- return ee(r, function(n) {
828
- n !== r && n.nodeType == L && (e === "*" || n.tagName == e) && t.push(n);
829
- }), t;
830
- });
831
- },
832
- getElementsByTagNameNS: function(e, r) {
833
- return new $(this, function(t) {
834
- var n = [];
835
- return ee(t, function(a) {
836
- a !== t && a.nodeType === L && (e === "*" || a.namespaceURI === e) && (r === "*" || a.localName == r) && n.push(a);
837
- }), n;
838
- });
839
- }
840
- };
841
- ae.prototype.getElementsByTagName = B.prototype.getElementsByTagName;
842
- ae.prototype.getElementsByTagNameNS = B.prototype.getElementsByTagNameNS;
843
- T(B, d);
844
- function de() {
845
- }
846
- de.prototype.nodeType = X;
847
- T(de, d);
848
- function oe() {
849
- }
850
- oe.prototype = {
851
- data: "",
852
- substringData: function(e, r) {
853
- return this.data.substring(e, e + r);
854
- },
855
- appendData: function(e) {
856
- e = this.data + e, this.nodeValue = this.data = e, this.length = e.length;
857
- },
858
- insertData: function(e, r) {
859
- this.replaceData(e, 0, r);
860
- },
861
- appendChild: function(e) {
862
- throw new Error(N[D]);
863
- },
864
- deleteData: function(e, r) {
865
- this.replaceData(e, r, "");
866
- },
867
- replaceData: function(e, r, t) {
868
- var n = this.data.substring(0, e), a = this.data.substring(e + r);
869
- t = n + t + a, this.nodeValue = this.data = t, this.length = t.length;
870
- }
871
- };
872
- T(oe, d);
873
- function Se() {
874
- }
875
- Se.prototype = {
876
- nodeName: "#text",
877
- nodeType: ce,
878
- splitText: function(e) {
879
- var r = this.data, t = r.substring(e);
880
- r = r.substring(0, e), this.data = this.nodeValue = r, this.length = r.length;
881
- var n = this.ownerDocument.createTextNode(t);
882
- return this.parentNode && this.parentNode.insertBefore(n, this.nextSibling), n;
883
- }
884
- };
885
- T(Se, oe);
886
- function Ae() {
887
- }
888
- Ae.prototype = {
889
- nodeName: "#comment",
890
- nodeType: nr
891
- };
892
- T(Ae, oe);
893
- function Le() {
894
- }
895
- Le.prototype = {
896
- nodeName: "#cdata-section",
897
- nodeType: er
898
- };
899
- T(Le, oe);
900
- function fe() {
901
- }
902
- fe.prototype.nodeType = or;
903
- T(fe, d);
904
- function fr() {
905
- }
906
- fr.prototype.nodeType = Mr;
907
- T(fr, d);
908
- function hr() {
909
- }
910
- hr.prototype.nodeType = _r;
911
- T(hr, d);
912
- function Oe() {
913
- }
914
- Oe.prototype.nodeType = rr;
915
- T(Oe, d);
916
- function he() {
917
- }
918
- he.prototype.nodeName = "#document-fragment";
919
- he.prototype.nodeType = k;
920
- T(he, d);
921
- function Re() {
922
- }
923
- Re.prototype.nodeType = tr;
924
- T(Re, d);
925
- function mr() {
926
- }
927
- mr.prototype.serializeToString = function(e, r, t) {
928
- return gr.call(e, r, t);
929
- };
930
- d.prototype.toString = gr;
931
- function gr(e, r) {
932
- var t = [], n = this.nodeType == 9 && this.documentElement || this, a = n.prefix, o = n.namespaceURI;
933
- if (o && a == null) {
934
- var a = n.lookupPrefix(o);
935
- if (a == null)
936
- var i = [
937
- { namespace: o, prefix: null }
938
- //{namespace:uri,prefix:''}
939
- ];
940
- }
941
- return F(this, t, e, r, i), t.join("");
942
- }
943
- function je(e, r, t) {
944
- var n = e.prefix || "", a = e.namespaceURI;
945
- if (!a || n === "xml" && a === Q.XML || a === Q.XMLNS)
946
- return !1;
947
- for (var o = t.length; o--; ) {
948
- var i = t[o];
949
- if (i.prefix === n)
950
- return i.namespace !== a;
951
- }
952
- return !0;
953
- }
954
- function we(e, r, t) {
955
- e.push(" ", r, '="', t.replace(/[<>&"\t\n\r]/g, cr), '"');
956
- }
957
- function F(e, r, t, n, a) {
958
- if (a || (a = []), n)
959
- if (e = n(e), e) {
960
- if (typeof e == "string") {
961
- r.push(e);
962
- return;
963
- }
964
- } else
965
- return;
966
- switch (e.nodeType) {
967
- case L:
968
- var o = e.attributes, i = o.length, s = e.firstChild, u = e.tagName;
969
- t = Q.isHTML(e.namespaceURI) || t;
970
- var l = u;
971
- if (!t && !e.prefix && e.namespaceURI) {
972
- for (var c, m = 0; m < o.length; m++)
973
- if (o.item(m).name === "xmlns") {
974
- c = o.item(m).value;
975
- break;
976
- }
977
- if (!c)
978
- for (var p = a.length - 1; p >= 0; p--) {
979
- var v = a[p];
980
- if (v.prefix === "" && v.namespace === e.namespaceURI) {
981
- c = v.namespace;
982
- break;
983
- }
984
- }
985
- if (c !== e.namespaceURI)
986
- for (var p = a.length - 1; p >= 0; p--) {
987
- var v = a[p];
988
- if (v.namespace === e.namespaceURI) {
989
- v.prefix && (l = v.prefix + ":" + u);
990
- break;
991
- }
992
- }
993
- }
994
- r.push("<", l);
995
- for (var O = 0; O < i; O++) {
996
- var h = o.item(O);
997
- h.prefix == "xmlns" ? a.push({ prefix: h.localName, namespace: h.value }) : h.nodeName == "xmlns" && a.push({ prefix: "", namespace: h.value });
998
- }
999
- for (var O = 0; O < i; O++) {
1000
- var h = o.item(O);
1001
- if (je(h, t, a)) {
1002
- var f = h.prefix || "", U = h.namespaceURI;
1003
- we(r, f ? "xmlns:" + f : "xmlns", U), a.push({ prefix: f, namespace: U });
1004
- }
1005
- F(h, r, t, n, a);
1006
- }
1007
- if (u === l && je(e, t, a)) {
1008
- var f = e.prefix || "", U = e.namespaceURI;
1009
- we(r, f ? "xmlns:" + f : "xmlns", U), a.push({ prefix: f, namespace: U });
1010
- }
1011
- if (s || t && !/^(?:meta|link|img|br|hr|input)$/i.test(u)) {
1012
- if (r.push(">"), t && /^script$/i.test(u))
1013
- for (; s; )
1014
- s.data ? r.push(s.data) : F(s, r, t, n, a.slice()), s = s.nextSibling;
1015
- else
1016
- for (; s; )
1017
- F(s, r, t, n, a.slice()), s = s.nextSibling;
1018
- r.push("</", l, ">");
1019
- } else
1020
- r.push("/>");
1021
- return;
1022
- case ar:
1023
- case k:
1024
- for (var s = e.firstChild; s; )
1025
- F(s, r, t, n, a.slice()), s = s.nextSibling;
1026
- return;
1027
- case X:
1028
- return we(r, e.name, e.value);
1029
- case ce:
1030
- return r.push(
1031
- e.data.replace(/[<&>]/g, cr)
1032
- );
1033
- case er:
1034
- return r.push("<![CDATA[", e.data, "]]>");
1035
- case nr:
1036
- return r.push("<!--", e.data, "-->");
1037
- case or:
1038
- var Z = e.publicId, w = e.systemId;
1039
- if (r.push("<!DOCTYPE ", e.name), Z)
1040
- r.push(" PUBLIC ", Z), w && w != "." && r.push(" ", w), r.push(">");
1041
- else if (w && w != ".")
1042
- r.push(" SYSTEM ", w, ">");
1043
- else {
1044
- var S = e.internalSubset;
1045
- S && r.push(" [", S, "]"), r.push(">");
1046
- }
1047
- return;
1048
- case tr:
1049
- return r.push("<?", e.target, " ", e.data, "?>");
1050
- case rr:
1051
- return r.push("&", e.nodeName, ";");
1052
- default:
1053
- r.push("??", e.nodeName);
1054
- }
1055
- }
1056
- function br(e, r, t) {
1057
- var n;
1058
- switch (r.nodeType) {
1059
- case L:
1060
- n = r.cloneNode(!1), n.ownerDocument = e;
1061
- case k:
1062
- break;
1063
- case X:
1064
- t = !0;
1065
- break;
1066
- }
1067
- if (n || (n = r.cloneNode(!1)), n.ownerDocument = e, n.parentNode = null, t)
1068
- for (var a = r.firstChild; a; )
1069
- n.appendChild(br(e, a, t)), a = a.nextSibling;
1070
- return n;
1071
- }
1072
- function Ne(e, r, t) {
1073
- var n = new r.constructor();
1074
- for (var a in r)
1075
- if (Object.prototype.hasOwnProperty.call(r, a)) {
1076
- var o = r[a];
1077
- typeof o != "object" && o != n[a] && (n[a] = o);
1078
- }
1079
- switch (r.childNodes && (n.childNodes = new I()), n.ownerDocument = e, n.nodeType) {
1080
- case L:
1081
- var i = r.attributes, s = n.attributes = new ue(), u = i.length;
1082
- s._ownerElement = n;
1083
- for (var l = 0; l < u; l++)
1084
- n.setAttributeNode(Ne(e, i.item(l), !0));
1085
- break;
1086
- case X:
1087
- t = !0;
1088
- }
1089
- if (t)
1090
- for (var c = r.firstChild; c; )
1091
- n.appendChild(Ne(e, c, t)), c = c.nextSibling;
1092
- return n;
1093
- }
1094
- function vr(e, r, t) {
1095
- e[r] = t;
1096
- }
1097
- try {
1098
- if (Object.defineProperty) {
1099
- let e = function(r) {
1100
- switch (r.nodeType) {
1101
- case L:
1102
- case k:
1103
- var t = [];
1104
- for (r = r.firstChild; r; )
1105
- r.nodeType !== 7 && r.nodeType !== 8 && t.push(e(r)), r = r.nextSibling;
1106
- return t.join("");
1107
- default:
1108
- return r.nodeValue;
1109
- }
1110
- };
1111
- Object.defineProperty($.prototype, "length", {
1112
- get: function() {
1113
- return Te(this), this.$$length;
1114
- }
1115
- }), Object.defineProperty(d.prototype, "textContent", {
1116
- get: function() {
1117
- return e(this);
1118
- },
1119
- set: function(r) {
1120
- switch (this.nodeType) {
1121
- case L:
1122
- case k:
1123
- for (; this.firstChild; )
1124
- this.removeChild(this.firstChild);
1125
- (r || String(r)) && this.appendChild(this.ownerDocument.createTextNode(r));
1126
- break;
1127
- default:
1128
- this.data = r, this.value = r, this.nodeValue = r;
1129
- }
1130
- }
1131
- }), vr = function(r, t, n) {
1132
- r["$$" + t] = n;
1133
- };
1134
- }
1135
- } catch {
1136
- }
1137
- V.DocumentType = fe;
1138
- V.DOMException = b;
1139
- V.DOMImplementation = lr;
1140
- V.Element = B;
1141
- V.Node = d;
1142
- V.NodeList = I;
1143
- V.XMLSerializer = mr;
1144
- var me = {}, wr = {};
1145
- (function(e) {
1146
- var r = M.freeze;
1147
- e.XML_ENTITIES = r({
1148
- amp: "&",
1149
- apos: "'",
1150
- gt: ">",
1151
- lt: "<",
1152
- quot: '"'
1153
- }), e.HTML_ENTITIES = r({
1154
- Aacute: "Á",
1155
- aacute: "á",
1156
- Abreve: "Ă",
1157
- abreve: "ă",
1158
- ac: "∾",
1159
- acd: "∿",
1160
- acE: "∾̳",
1161
- Acirc: "Â",
1162
- acirc: "â",
1163
- acute: "´",
1164
- Acy: "А",
1165
- acy: "а",
1166
- AElig: "Æ",
1167
- aelig: "æ",
1168
- af: "⁡",
1169
- Afr: "𝔄",
1170
- afr: "𝔞",
1171
- Agrave: "À",
1172
- agrave: "à",
1173
- alefsym: "ℵ",
1174
- aleph: "ℵ",
1175
- Alpha: "Α",
1176
- alpha: "α",
1177
- Amacr: "Ā",
1178
- amacr: "ā",
1179
- amalg: "⨿",
1180
- AMP: "&",
1181
- amp: "&",
1182
- And: "⩓",
1183
- and: "∧",
1184
- andand: "⩕",
1185
- andd: "⩜",
1186
- andslope: "⩘",
1187
- andv: "⩚",
1188
- ang: "∠",
1189
- ange: "⦤",
1190
- angle: "∠",
1191
- angmsd: "∡",
1192
- angmsdaa: "⦨",
1193
- angmsdab: "⦩",
1194
- angmsdac: "⦪",
1195
- angmsdad: "⦫",
1196
- angmsdae: "⦬",
1197
- angmsdaf: "⦭",
1198
- angmsdag: "⦮",
1199
- angmsdah: "⦯",
1200
- angrt: "∟",
1201
- angrtvb: "⊾",
1202
- angrtvbd: "⦝",
1203
- angsph: "∢",
1204
- angst: "Å",
1205
- angzarr: "⍼",
1206
- Aogon: "Ą",
1207
- aogon: "ą",
1208
- Aopf: "𝔸",
1209
- aopf: "𝕒",
1210
- ap: "≈",
1211
- apacir: "⩯",
1212
- apE: "⩰",
1213
- ape: "≊",
1214
- apid: "≋",
1215
- apos: "'",
1216
- ApplyFunction: "⁡",
1217
- approx: "≈",
1218
- approxeq: "≊",
1219
- Aring: "Å",
1220
- aring: "å",
1221
- Ascr: "𝒜",
1222
- ascr: "𝒶",
1223
- Assign: "≔",
1224
- ast: "*",
1225
- asymp: "≈",
1226
- asympeq: "≍",
1227
- Atilde: "Ã",
1228
- atilde: "ã",
1229
- Auml: "Ä",
1230
- auml: "ä",
1231
- awconint: "∳",
1232
- awint: "⨑",
1233
- backcong: "≌",
1234
- backepsilon: "϶",
1235
- backprime: "‵",
1236
- backsim: "∽",
1237
- backsimeq: "⋍",
1238
- Backslash: "∖",
1239
- Barv: "⫧",
1240
- barvee: "⊽",
1241
- Barwed: "⌆",
1242
- barwed: "⌅",
1243
- barwedge: "⌅",
1244
- bbrk: "⎵",
1245
- bbrktbrk: "⎶",
1246
- bcong: "≌",
1247
- Bcy: "Б",
1248
- bcy: "б",
1249
- bdquo: "„",
1250
- becaus: "∵",
1251
- Because: "∵",
1252
- because: "∵",
1253
- bemptyv: "⦰",
1254
- bepsi: "϶",
1255
- bernou: "ℬ",
1256
- Bernoullis: "ℬ",
1257
- Beta: "Β",
1258
- beta: "β",
1259
- beth: "ℶ",
1260
- between: "≬",
1261
- Bfr: "𝔅",
1262
- bfr: "𝔟",
1263
- bigcap: "⋂",
1264
- bigcirc: "◯",
1265
- bigcup: "⋃",
1266
- bigodot: "⨀",
1267
- bigoplus: "⨁",
1268
- bigotimes: "⨂",
1269
- bigsqcup: "⨆",
1270
- bigstar: "★",
1271
- bigtriangledown: "▽",
1272
- bigtriangleup: "△",
1273
- biguplus: "⨄",
1274
- bigvee: "⋁",
1275
- bigwedge: "⋀",
1276
- bkarow: "⤍",
1277
- blacklozenge: "⧫",
1278
- blacksquare: "▪",
1279
- blacktriangle: "▴",
1280
- blacktriangledown: "▾",
1281
- blacktriangleleft: "◂",
1282
- blacktriangleright: "▸",
1283
- blank: "␣",
1284
- blk12: "▒",
1285
- blk14: "░",
1286
- blk34: "▓",
1287
- block: "█",
1288
- bne: "=⃥",
1289
- bnequiv: "≡⃥",
1290
- bNot: "⫭",
1291
- bnot: "⌐",
1292
- Bopf: "𝔹",
1293
- bopf: "𝕓",
1294
- bot: "⊥",
1295
- bottom: "⊥",
1296
- bowtie: "⋈",
1297
- boxbox: "⧉",
1298
- boxDL: "╗",
1299
- boxDl: "╖",
1300
- boxdL: "╕",
1301
- boxdl: "┐",
1302
- boxDR: "╔",
1303
- boxDr: "╓",
1304
- boxdR: "╒",
1305
- boxdr: "┌",
1306
- boxH: "═",
1307
- boxh: "─",
1308
- boxHD: "╦",
1309
- boxHd: "╤",
1310
- boxhD: "╥",
1311
- boxhd: "┬",
1312
- boxHU: "╩",
1313
- boxHu: "╧",
1314
- boxhU: "╨",
1315
- boxhu: "┴",
1316
- boxminus: "⊟",
1317
- boxplus: "⊞",
1318
- boxtimes: "⊠",
1319
- boxUL: "╝",
1320
- boxUl: "╜",
1321
- boxuL: "╛",
1322
- boxul: "┘",
1323
- boxUR: "╚",
1324
- boxUr: "╙",
1325
- boxuR: "╘",
1326
- boxur: "└",
1327
- boxV: "║",
1328
- boxv: "│",
1329
- boxVH: "╬",
1330
- boxVh: "╫",
1331
- boxvH: "╪",
1332
- boxvh: "┼",
1333
- boxVL: "╣",
1334
- boxVl: "╢",
1335
- boxvL: "╡",
1336
- boxvl: "┤",
1337
- boxVR: "╠",
1338
- boxVr: "╟",
1339
- boxvR: "╞",
1340
- boxvr: "├",
1341
- bprime: "‵",
1342
- Breve: "˘",
1343
- breve: "˘",
1344
- brvbar: "¦",
1345
- Bscr: "ℬ",
1346
- bscr: "𝒷",
1347
- bsemi: "⁏",
1348
- bsim: "∽",
1349
- bsime: "⋍",
1350
- bsol: "\\",
1351
- bsolb: "⧅",
1352
- bsolhsub: "⟈",
1353
- bull: "•",
1354
- bullet: "•",
1355
- bump: "≎",
1356
- bumpE: "⪮",
1357
- bumpe: "≏",
1358
- Bumpeq: "≎",
1359
- bumpeq: "≏",
1360
- Cacute: "Ć",
1361
- cacute: "ć",
1362
- Cap: "⋒",
1363
- cap: "∩",
1364
- capand: "⩄",
1365
- capbrcup: "⩉",
1366
- capcap: "⩋",
1367
- capcup: "⩇",
1368
- capdot: "⩀",
1369
- CapitalDifferentialD: "ⅅ",
1370
- caps: "∩︀",
1371
- caret: "⁁",
1372
- caron: "ˇ",
1373
- Cayleys: "ℭ",
1374
- ccaps: "⩍",
1375
- Ccaron: "Č",
1376
- ccaron: "č",
1377
- Ccedil: "Ç",
1378
- ccedil: "ç",
1379
- Ccirc: "Ĉ",
1380
- ccirc: "ĉ",
1381
- Cconint: "∰",
1382
- ccups: "⩌",
1383
- ccupssm: "⩐",
1384
- Cdot: "Ċ",
1385
- cdot: "ċ",
1386
- cedil: "¸",
1387
- Cedilla: "¸",
1388
- cemptyv: "⦲",
1389
- cent: "¢",
1390
- CenterDot: "·",
1391
- centerdot: "·",
1392
- Cfr: "ℭ",
1393
- cfr: "𝔠",
1394
- CHcy: "Ч",
1395
- chcy: "ч",
1396
- check: "✓",
1397
- checkmark: "✓",
1398
- Chi: "Χ",
1399
- chi: "χ",
1400
- cir: "○",
1401
- circ: "ˆ",
1402
- circeq: "≗",
1403
- circlearrowleft: "↺",
1404
- circlearrowright: "↻",
1405
- circledast: "⊛",
1406
- circledcirc: "⊚",
1407
- circleddash: "⊝",
1408
- CircleDot: "⊙",
1409
- circledR: "®",
1410
- circledS: "Ⓢ",
1411
- CircleMinus: "⊖",
1412
- CirclePlus: "⊕",
1413
- CircleTimes: "⊗",
1414
- cirE: "⧃",
1415
- cire: "≗",
1416
- cirfnint: "⨐",
1417
- cirmid: "⫯",
1418
- cirscir: "⧂",
1419
- ClockwiseContourIntegral: "∲",
1420
- CloseCurlyDoubleQuote: "”",
1421
- CloseCurlyQuote: "’",
1422
- clubs: "♣",
1423
- clubsuit: "♣",
1424
- Colon: "∷",
1425
- colon: ":",
1426
- Colone: "⩴",
1427
- colone: "≔",
1428
- coloneq: "≔",
1429
- comma: ",",
1430
- commat: "@",
1431
- comp: "∁",
1432
- compfn: "∘",
1433
- complement: "∁",
1434
- complexes: "ℂ",
1435
- cong: "≅",
1436
- congdot: "⩭",
1437
- Congruent: "≡",
1438
- Conint: "∯",
1439
- conint: "∮",
1440
- ContourIntegral: "∮",
1441
- Copf: "ℂ",
1442
- copf: "𝕔",
1443
- coprod: "∐",
1444
- Coproduct: "∐",
1445
- COPY: "©",
1446
- copy: "©",
1447
- copysr: "℗",
1448
- CounterClockwiseContourIntegral: "∳",
1449
- crarr: "↵",
1450
- Cross: "⨯",
1451
- cross: "✗",
1452
- Cscr: "𝒞",
1453
- cscr: "𝒸",
1454
- csub: "⫏",
1455
- csube: "⫑",
1456
- csup: "⫐",
1457
- csupe: "⫒",
1458
- ctdot: "⋯",
1459
- cudarrl: "⤸",
1460
- cudarrr: "⤵",
1461
- cuepr: "⋞",
1462
- cuesc: "⋟",
1463
- cularr: "↶",
1464
- cularrp: "⤽",
1465
- Cup: "⋓",
1466
- cup: "∪",
1467
- cupbrcap: "⩈",
1468
- CupCap: "≍",
1469
- cupcap: "⩆",
1470
- cupcup: "⩊",
1471
- cupdot: "⊍",
1472
- cupor: "⩅",
1473
- cups: "∪︀",
1474
- curarr: "↷",
1475
- curarrm: "⤼",
1476
- curlyeqprec: "⋞",
1477
- curlyeqsucc: "⋟",
1478
- curlyvee: "⋎",
1479
- curlywedge: "⋏",
1480
- curren: "¤",
1481
- curvearrowleft: "↶",
1482
- curvearrowright: "↷",
1483
- cuvee: "⋎",
1484
- cuwed: "⋏",
1485
- cwconint: "∲",
1486
- cwint: "∱",
1487
- cylcty: "⌭",
1488
- Dagger: "‡",
1489
- dagger: "†",
1490
- daleth: "ℸ",
1491
- Darr: "↡",
1492
- dArr: "⇓",
1493
- darr: "↓",
1494
- dash: "‐",
1495
- Dashv: "⫤",
1496
- dashv: "⊣",
1497
- dbkarow: "⤏",
1498
- dblac: "˝",
1499
- Dcaron: "Ď",
1500
- dcaron: "ď",
1501
- Dcy: "Д",
1502
- dcy: "д",
1503
- DD: "ⅅ",
1504
- dd: "ⅆ",
1505
- ddagger: "‡",
1506
- ddarr: "⇊",
1507
- DDotrahd: "⤑",
1508
- ddotseq: "⩷",
1509
- deg: "°",
1510
- Del: "∇",
1511
- Delta: "Δ",
1512
- delta: "δ",
1513
- demptyv: "⦱",
1514
- dfisht: "⥿",
1515
- Dfr: "𝔇",
1516
- dfr: "𝔡",
1517
- dHar: "⥥",
1518
- dharl: "⇃",
1519
- dharr: "⇂",
1520
- DiacriticalAcute: "´",
1521
- DiacriticalDot: "˙",
1522
- DiacriticalDoubleAcute: "˝",
1523
- DiacriticalGrave: "`",
1524
- DiacriticalTilde: "˜",
1525
- diam: "⋄",
1526
- Diamond: "⋄",
1527
- diamond: "⋄",
1528
- diamondsuit: "♦",
1529
- diams: "♦",
1530
- die: "¨",
1531
- DifferentialD: "ⅆ",
1532
- digamma: "ϝ",
1533
- disin: "⋲",
1534
- div: "÷",
1535
- divide: "÷",
1536
- divideontimes: "⋇",
1537
- divonx: "⋇",
1538
- DJcy: "Ђ",
1539
- djcy: "ђ",
1540
- dlcorn: "⌞",
1541
- dlcrop: "⌍",
1542
- dollar: "$",
1543
- Dopf: "𝔻",
1544
- dopf: "𝕕",
1545
- Dot: "¨",
1546
- dot: "˙",
1547
- DotDot: "⃜",
1548
- doteq: "≐",
1549
- doteqdot: "≑",
1550
- DotEqual: "≐",
1551
- dotminus: "∸",
1552
- dotplus: "∔",
1553
- dotsquare: "⊡",
1554
- doublebarwedge: "⌆",
1555
- DoubleContourIntegral: "∯",
1556
- DoubleDot: "¨",
1557
- DoubleDownArrow: "⇓",
1558
- DoubleLeftArrow: "⇐",
1559
- DoubleLeftRightArrow: "⇔",
1560
- DoubleLeftTee: "⫤",
1561
- DoubleLongLeftArrow: "⟸",
1562
- DoubleLongLeftRightArrow: "⟺",
1563
- DoubleLongRightArrow: "⟹",
1564
- DoubleRightArrow: "⇒",
1565
- DoubleRightTee: "⊨",
1566
- DoubleUpArrow: "⇑",
1567
- DoubleUpDownArrow: "⇕",
1568
- DoubleVerticalBar: "∥",
1569
- DownArrow: "↓",
1570
- Downarrow: "⇓",
1571
- downarrow: "↓",
1572
- DownArrowBar: "⤓",
1573
- DownArrowUpArrow: "⇵",
1574
- DownBreve: "̑",
1575
- downdownarrows: "⇊",
1576
- downharpoonleft: "⇃",
1577
- downharpoonright: "⇂",
1578
- DownLeftRightVector: "⥐",
1579
- DownLeftTeeVector: "⥞",
1580
- DownLeftVector: "↽",
1581
- DownLeftVectorBar: "⥖",
1582
- DownRightTeeVector: "⥟",
1583
- DownRightVector: "⇁",
1584
- DownRightVectorBar: "⥗",
1585
- DownTee: "⊤",
1586
- DownTeeArrow: "↧",
1587
- drbkarow: "⤐",
1588
- drcorn: "⌟",
1589
- drcrop: "⌌",
1590
- Dscr: "𝒟",
1591
- dscr: "𝒹",
1592
- DScy: "Ѕ",
1593
- dscy: "ѕ",
1594
- dsol: "⧶",
1595
- Dstrok: "Đ",
1596
- dstrok: "đ",
1597
- dtdot: "⋱",
1598
- dtri: "▿",
1599
- dtrif: "▾",
1600
- duarr: "⇵",
1601
- duhar: "⥯",
1602
- dwangle: "⦦",
1603
- DZcy: "Џ",
1604
- dzcy: "џ",
1605
- dzigrarr: "⟿",
1606
- Eacute: "É",
1607
- eacute: "é",
1608
- easter: "⩮",
1609
- Ecaron: "Ě",
1610
- ecaron: "ě",
1611
- ecir: "≖",
1612
- Ecirc: "Ê",
1613
- ecirc: "ê",
1614
- ecolon: "≕",
1615
- Ecy: "Э",
1616
- ecy: "э",
1617
- eDDot: "⩷",
1618
- Edot: "Ė",
1619
- eDot: "≑",
1620
- edot: "ė",
1621
- ee: "ⅇ",
1622
- efDot: "≒",
1623
- Efr: "𝔈",
1624
- efr: "𝔢",
1625
- eg: "⪚",
1626
- Egrave: "È",
1627
- egrave: "è",
1628
- egs: "⪖",
1629
- egsdot: "⪘",
1630
- el: "⪙",
1631
- Element: "∈",
1632
- elinters: "⏧",
1633
- ell: "ℓ",
1634
- els: "⪕",
1635
- elsdot: "⪗",
1636
- Emacr: "Ē",
1637
- emacr: "ē",
1638
- empty: "∅",
1639
- emptyset: "∅",
1640
- EmptySmallSquare: "◻",
1641
- emptyv: "∅",
1642
- EmptyVerySmallSquare: "▫",
1643
- emsp: " ",
1644
- emsp13: " ",
1645
- emsp14: " ",
1646
- ENG: "Ŋ",
1647
- eng: "ŋ",
1648
- ensp: " ",
1649
- Eogon: "Ę",
1650
- eogon: "ę",
1651
- Eopf: "𝔼",
1652
- eopf: "𝕖",
1653
- epar: "⋕",
1654
- eparsl: "⧣",
1655
- eplus: "⩱",
1656
- epsi: "ε",
1657
- Epsilon: "Ε",
1658
- epsilon: "ε",
1659
- epsiv: "ϵ",
1660
- eqcirc: "≖",
1661
- eqcolon: "≕",
1662
- eqsim: "≂",
1663
- eqslantgtr: "⪖",
1664
- eqslantless: "⪕",
1665
- Equal: "⩵",
1666
- equals: "=",
1667
- EqualTilde: "≂",
1668
- equest: "≟",
1669
- Equilibrium: "⇌",
1670
- equiv: "≡",
1671
- equivDD: "⩸",
1672
- eqvparsl: "⧥",
1673
- erarr: "⥱",
1674
- erDot: "≓",
1675
- Escr: "ℰ",
1676
- escr: "ℯ",
1677
- esdot: "≐",
1678
- Esim: "⩳",
1679
- esim: "≂",
1680
- Eta: "Η",
1681
- eta: "η",
1682
- ETH: "Ð",
1683
- eth: "ð",
1684
- Euml: "Ë",
1685
- euml: "ë",
1686
- euro: "€",
1687
- excl: "!",
1688
- exist: "∃",
1689
- Exists: "∃",
1690
- expectation: "ℰ",
1691
- ExponentialE: "ⅇ",
1692
- exponentiale: "ⅇ",
1693
- fallingdotseq: "≒",
1694
- Fcy: "Ф",
1695
- fcy: "ф",
1696
- female: "♀",
1697
- ffilig: "ffi",
1698
- fflig: "ff",
1699
- ffllig: "ffl",
1700
- Ffr: "𝔉",
1701
- ffr: "𝔣",
1702
- filig: "fi",
1703
- FilledSmallSquare: "◼",
1704
- FilledVerySmallSquare: "▪",
1705
- fjlig: "fj",
1706
- flat: "♭",
1707
- fllig: "fl",
1708
- fltns: "▱",
1709
- fnof: "ƒ",
1710
- Fopf: "𝔽",
1711
- fopf: "𝕗",
1712
- ForAll: "∀",
1713
- forall: "∀",
1714
- fork: "⋔",
1715
- forkv: "⫙",
1716
- Fouriertrf: "ℱ",
1717
- fpartint: "⨍",
1718
- frac12: "½",
1719
- frac13: "⅓",
1720
- frac14: "¼",
1721
- frac15: "⅕",
1722
- frac16: "⅙",
1723
- frac18: "⅛",
1724
- frac23: "⅔",
1725
- frac25: "⅖",
1726
- frac34: "¾",
1727
- frac35: "⅗",
1728
- frac38: "⅜",
1729
- frac45: "⅘",
1730
- frac56: "⅚",
1731
- frac58: "⅝",
1732
- frac78: "⅞",
1733
- frasl: "⁄",
1734
- frown: "⌢",
1735
- Fscr: "ℱ",
1736
- fscr: "𝒻",
1737
- gacute: "ǵ",
1738
- Gamma: "Γ",
1739
- gamma: "γ",
1740
- Gammad: "Ϝ",
1741
- gammad: "ϝ",
1742
- gap: "⪆",
1743
- Gbreve: "Ğ",
1744
- gbreve: "ğ",
1745
- Gcedil: "Ģ",
1746
- Gcirc: "Ĝ",
1747
- gcirc: "ĝ",
1748
- Gcy: "Г",
1749
- gcy: "г",
1750
- Gdot: "Ġ",
1751
- gdot: "ġ",
1752
- gE: "≧",
1753
- ge: "≥",
1754
- gEl: "⪌",
1755
- gel: "⋛",
1756
- geq: "≥",
1757
- geqq: "≧",
1758
- geqslant: "⩾",
1759
- ges: "⩾",
1760
- gescc: "⪩",
1761
- gesdot: "⪀",
1762
- gesdoto: "⪂",
1763
- gesdotol: "⪄",
1764
- gesl: "⋛︀",
1765
- gesles: "⪔",
1766
- Gfr: "𝔊",
1767
- gfr: "𝔤",
1768
- Gg: "⋙",
1769
- gg: "≫",
1770
- ggg: "⋙",
1771
- gimel: "ℷ",
1772
- GJcy: "Ѓ",
1773
- gjcy: "ѓ",
1774
- gl: "≷",
1775
- gla: "⪥",
1776
- glE: "⪒",
1777
- glj: "⪤",
1778
- gnap: "⪊",
1779
- gnapprox: "⪊",
1780
- gnE: "≩",
1781
- gne: "⪈",
1782
- gneq: "⪈",
1783
- gneqq: "≩",
1784
- gnsim: "⋧",
1785
- Gopf: "𝔾",
1786
- gopf: "𝕘",
1787
- grave: "`",
1788
- GreaterEqual: "≥",
1789
- GreaterEqualLess: "⋛",
1790
- GreaterFullEqual: "≧",
1791
- GreaterGreater: "⪢",
1792
- GreaterLess: "≷",
1793
- GreaterSlantEqual: "⩾",
1794
- GreaterTilde: "≳",
1795
- Gscr: "𝒢",
1796
- gscr: "ℊ",
1797
- gsim: "≳",
1798
- gsime: "⪎",
1799
- gsiml: "⪐",
1800
- Gt: "≫",
1801
- GT: ">",
1802
- gt: ">",
1803
- gtcc: "⪧",
1804
- gtcir: "⩺",
1805
- gtdot: "⋗",
1806
- gtlPar: "⦕",
1807
- gtquest: "⩼",
1808
- gtrapprox: "⪆",
1809
- gtrarr: "⥸",
1810
- gtrdot: "⋗",
1811
- gtreqless: "⋛",
1812
- gtreqqless: "⪌",
1813
- gtrless: "≷",
1814
- gtrsim: "≳",
1815
- gvertneqq: "≩︀",
1816
- gvnE: "≩︀",
1817
- Hacek: "ˇ",
1818
- hairsp: " ",
1819
- half: "½",
1820
- hamilt: "ℋ",
1821
- HARDcy: "Ъ",
1822
- hardcy: "ъ",
1823
- hArr: "⇔",
1824
- harr: "↔",
1825
- harrcir: "⥈",
1826
- harrw: "↭",
1827
- Hat: "^",
1828
- hbar: "ℏ",
1829
- Hcirc: "Ĥ",
1830
- hcirc: "ĥ",
1831
- hearts: "♥",
1832
- heartsuit: "♥",
1833
- hellip: "…",
1834
- hercon: "⊹",
1835
- Hfr: "ℌ",
1836
- hfr: "𝔥",
1837
- HilbertSpace: "ℋ",
1838
- hksearow: "⤥",
1839
- hkswarow: "⤦",
1840
- hoarr: "⇿",
1841
- homtht: "∻",
1842
- hookleftarrow: "↩",
1843
- hookrightarrow: "↪",
1844
- Hopf: "ℍ",
1845
- hopf: "𝕙",
1846
- horbar: "―",
1847
- HorizontalLine: "─",
1848
- Hscr: "ℋ",
1849
- hscr: "𝒽",
1850
- hslash: "ℏ",
1851
- Hstrok: "Ħ",
1852
- hstrok: "ħ",
1853
- HumpDownHump: "≎",
1854
- HumpEqual: "≏",
1855
- hybull: "⁃",
1856
- hyphen: "‐",
1857
- Iacute: "Í",
1858
- iacute: "í",
1859
- ic: "⁣",
1860
- Icirc: "Î",
1861
- icirc: "î",
1862
- Icy: "И",
1863
- icy: "и",
1864
- Idot: "İ",
1865
- IEcy: "Е",
1866
- iecy: "е",
1867
- iexcl: "¡",
1868
- iff: "⇔",
1869
- Ifr: "ℑ",
1870
- ifr: "𝔦",
1871
- Igrave: "Ì",
1872
- igrave: "ì",
1873
- ii: "ⅈ",
1874
- iiiint: "⨌",
1875
- iiint: "∭",
1876
- iinfin: "⧜",
1877
- iiota: "℩",
1878
- IJlig: "IJ",
1879
- ijlig: "ij",
1880
- Im: "ℑ",
1881
- Imacr: "Ī",
1882
- imacr: "ī",
1883
- image: "ℑ",
1884
- ImaginaryI: "ⅈ",
1885
- imagline: "ℐ",
1886
- imagpart: "ℑ",
1887
- imath: "ı",
1888
- imof: "⊷",
1889
- imped: "Ƶ",
1890
- Implies: "⇒",
1891
- in: "∈",
1892
- incare: "℅",
1893
- infin: "∞",
1894
- infintie: "⧝",
1895
- inodot: "ı",
1896
- Int: "∬",
1897
- int: "∫",
1898
- intcal: "⊺",
1899
- integers: "ℤ",
1900
- Integral: "∫",
1901
- intercal: "⊺",
1902
- Intersection: "⋂",
1903
- intlarhk: "⨗",
1904
- intprod: "⨼",
1905
- InvisibleComma: "⁣",
1906
- InvisibleTimes: "⁢",
1907
- IOcy: "Ё",
1908
- iocy: "ё",
1909
- Iogon: "Į",
1910
- iogon: "į",
1911
- Iopf: "𝕀",
1912
- iopf: "𝕚",
1913
- Iota: "Ι",
1914
- iota: "ι",
1915
- iprod: "⨼",
1916
- iquest: "¿",
1917
- Iscr: "ℐ",
1918
- iscr: "𝒾",
1919
- isin: "∈",
1920
- isindot: "⋵",
1921
- isinE: "⋹",
1922
- isins: "⋴",
1923
- isinsv: "⋳",
1924
- isinv: "∈",
1925
- it: "⁢",
1926
- Itilde: "Ĩ",
1927
- itilde: "ĩ",
1928
- Iukcy: "І",
1929
- iukcy: "і",
1930
- Iuml: "Ï",
1931
- iuml: "ï",
1932
- Jcirc: "Ĵ",
1933
- jcirc: "ĵ",
1934
- Jcy: "Й",
1935
- jcy: "й",
1936
- Jfr: "𝔍",
1937
- jfr: "𝔧",
1938
- jmath: "ȷ",
1939
- Jopf: "𝕁",
1940
- jopf: "𝕛",
1941
- Jscr: "𝒥",
1942
- jscr: "𝒿",
1943
- Jsercy: "Ј",
1944
- jsercy: "ј",
1945
- Jukcy: "Є",
1946
- jukcy: "є",
1947
- Kappa: "Κ",
1948
- kappa: "κ",
1949
- kappav: "ϰ",
1950
- Kcedil: "Ķ",
1951
- kcedil: "ķ",
1952
- Kcy: "К",
1953
- kcy: "к",
1954
- Kfr: "𝔎",
1955
- kfr: "𝔨",
1956
- kgreen: "ĸ",
1957
- KHcy: "Х",
1958
- khcy: "х",
1959
- KJcy: "Ќ",
1960
- kjcy: "ќ",
1961
- Kopf: "𝕂",
1962
- kopf: "𝕜",
1963
- Kscr: "𝒦",
1964
- kscr: "𝓀",
1965
- lAarr: "⇚",
1966
- Lacute: "Ĺ",
1967
- lacute: "ĺ",
1968
- laemptyv: "⦴",
1969
- lagran: "ℒ",
1970
- Lambda: "Λ",
1971
- lambda: "λ",
1972
- Lang: "⟪",
1973
- lang: "⟨",
1974
- langd: "⦑",
1975
- langle: "⟨",
1976
- lap: "⪅",
1977
- Laplacetrf: "ℒ",
1978
- laquo: "«",
1979
- Larr: "↞",
1980
- lArr: "⇐",
1981
- larr: "←",
1982
- larrb: "⇤",
1983
- larrbfs: "⤟",
1984
- larrfs: "⤝",
1985
- larrhk: "↩",
1986
- larrlp: "↫",
1987
- larrpl: "⤹",
1988
- larrsim: "⥳",
1989
- larrtl: "↢",
1990
- lat: "⪫",
1991
- lAtail: "⤛",
1992
- latail: "⤙",
1993
- late: "⪭",
1994
- lates: "⪭︀",
1995
- lBarr: "⤎",
1996
- lbarr: "⤌",
1997
- lbbrk: "❲",
1998
- lbrace: "{",
1999
- lbrack: "[",
2000
- lbrke: "⦋",
2001
- lbrksld: "⦏",
2002
- lbrkslu: "⦍",
2003
- Lcaron: "Ľ",
2004
- lcaron: "ľ",
2005
- Lcedil: "Ļ",
2006
- lcedil: "ļ",
2007
- lceil: "⌈",
2008
- lcub: "{",
2009
- Lcy: "Л",
2010
- lcy: "л",
2011
- ldca: "⤶",
2012
- ldquo: "“",
2013
- ldquor: "„",
2014
- ldrdhar: "⥧",
2015
- ldrushar: "⥋",
2016
- ldsh: "↲",
2017
- lE: "≦",
2018
- le: "≤",
2019
- LeftAngleBracket: "⟨",
2020
- LeftArrow: "←",
2021
- Leftarrow: "⇐",
2022
- leftarrow: "←",
2023
- LeftArrowBar: "⇤",
2024
- LeftArrowRightArrow: "⇆",
2025
- leftarrowtail: "↢",
2026
- LeftCeiling: "⌈",
2027
- LeftDoubleBracket: "⟦",
2028
- LeftDownTeeVector: "⥡",
2029
- LeftDownVector: "⇃",
2030
- LeftDownVectorBar: "⥙",
2031
- LeftFloor: "⌊",
2032
- leftharpoondown: "↽",
2033
- leftharpoonup: "↼",
2034
- leftleftarrows: "⇇",
2035
- LeftRightArrow: "↔",
2036
- Leftrightarrow: "⇔",
2037
- leftrightarrow: "↔",
2038
- leftrightarrows: "⇆",
2039
- leftrightharpoons: "⇋",
2040
- leftrightsquigarrow: "↭",
2041
- LeftRightVector: "⥎",
2042
- LeftTee: "⊣",
2043
- LeftTeeArrow: "↤",
2044
- LeftTeeVector: "⥚",
2045
- leftthreetimes: "⋋",
2046
- LeftTriangle: "⊲",
2047
- LeftTriangleBar: "⧏",
2048
- LeftTriangleEqual: "⊴",
2049
- LeftUpDownVector: "⥑",
2050
- LeftUpTeeVector: "⥠",
2051
- LeftUpVector: "↿",
2052
- LeftUpVectorBar: "⥘",
2053
- LeftVector: "↼",
2054
- LeftVectorBar: "⥒",
2055
- lEg: "⪋",
2056
- leg: "⋚",
2057
- leq: "≤",
2058
- leqq: "≦",
2059
- leqslant: "⩽",
2060
- les: "⩽",
2061
- lescc: "⪨",
2062
- lesdot: "⩿",
2063
- lesdoto: "⪁",
2064
- lesdotor: "⪃",
2065
- lesg: "⋚︀",
2066
- lesges: "⪓",
2067
- lessapprox: "⪅",
2068
- lessdot: "⋖",
2069
- lesseqgtr: "⋚",
2070
- lesseqqgtr: "⪋",
2071
- LessEqualGreater: "⋚",
2072
- LessFullEqual: "≦",
2073
- LessGreater: "≶",
2074
- lessgtr: "≶",
2075
- LessLess: "⪡",
2076
- lesssim: "≲",
2077
- LessSlantEqual: "⩽",
2078
- LessTilde: "≲",
2079
- lfisht: "⥼",
2080
- lfloor: "⌊",
2081
- Lfr: "𝔏",
2082
- lfr: "𝔩",
2083
- lg: "≶",
2084
- lgE: "⪑",
2085
- lHar: "⥢",
2086
- lhard: "↽",
2087
- lharu: "↼",
2088
- lharul: "⥪",
2089
- lhblk: "▄",
2090
- LJcy: "Љ",
2091
- ljcy: "љ",
2092
- Ll: "⋘",
2093
- ll: "≪",
2094
- llarr: "⇇",
2095
- llcorner: "⌞",
2096
- Lleftarrow: "⇚",
2097
- llhard: "⥫",
2098
- lltri: "◺",
2099
- Lmidot: "Ŀ",
2100
- lmidot: "ŀ",
2101
- lmoust: "⎰",
2102
- lmoustache: "⎰",
2103
- lnap: "⪉",
2104
- lnapprox: "⪉",
2105
- lnE: "≨",
2106
- lne: "⪇",
2107
- lneq: "⪇",
2108
- lneqq: "≨",
2109
- lnsim: "⋦",
2110
- loang: "⟬",
2111
- loarr: "⇽",
2112
- lobrk: "⟦",
2113
- LongLeftArrow: "⟵",
2114
- Longleftarrow: "⟸",
2115
- longleftarrow: "⟵",
2116
- LongLeftRightArrow: "⟷",
2117
- Longleftrightarrow: "⟺",
2118
- longleftrightarrow: "⟷",
2119
- longmapsto: "⟼",
2120
- LongRightArrow: "⟶",
2121
- Longrightarrow: "⟹",
2122
- longrightarrow: "⟶",
2123
- looparrowleft: "↫",
2124
- looparrowright: "↬",
2125
- lopar: "⦅",
2126
- Lopf: "𝕃",
2127
- lopf: "𝕝",
2128
- loplus: "⨭",
2129
- lotimes: "⨴",
2130
- lowast: "∗",
2131
- lowbar: "_",
2132
- LowerLeftArrow: "↙",
2133
- LowerRightArrow: "↘",
2134
- loz: "◊",
2135
- lozenge: "◊",
2136
- lozf: "⧫",
2137
- lpar: "(",
2138
- lparlt: "⦓",
2139
- lrarr: "⇆",
2140
- lrcorner: "⌟",
2141
- lrhar: "⇋",
2142
- lrhard: "⥭",
2143
- lrm: "‎",
2144
- lrtri: "⊿",
2145
- lsaquo: "‹",
2146
- Lscr: "ℒ",
2147
- lscr: "𝓁",
2148
- Lsh: "↰",
2149
- lsh: "↰",
2150
- lsim: "≲",
2151
- lsime: "⪍",
2152
- lsimg: "⪏",
2153
- lsqb: "[",
2154
- lsquo: "‘",
2155
- lsquor: "‚",
2156
- Lstrok: "Ł",
2157
- lstrok: "ł",
2158
- Lt: "≪",
2159
- LT: "<",
2160
- lt: "<",
2161
- ltcc: "⪦",
2162
- ltcir: "⩹",
2163
- ltdot: "⋖",
2164
- lthree: "⋋",
2165
- ltimes: "⋉",
2166
- ltlarr: "⥶",
2167
- ltquest: "⩻",
2168
- ltri: "◃",
2169
- ltrie: "⊴",
2170
- ltrif: "◂",
2171
- ltrPar: "⦖",
2172
- lurdshar: "⥊",
2173
- luruhar: "⥦",
2174
- lvertneqq: "≨︀",
2175
- lvnE: "≨︀",
2176
- macr: "¯",
2177
- male: "♂",
2178
- malt: "✠",
2179
- maltese: "✠",
2180
- Map: "⤅",
2181
- map: "↦",
2182
- mapsto: "↦",
2183
- mapstodown: "↧",
2184
- mapstoleft: "↤",
2185
- mapstoup: "↥",
2186
- marker: "▮",
2187
- mcomma: "⨩",
2188
- Mcy: "М",
2189
- mcy: "м",
2190
- mdash: "—",
2191
- mDDot: "∺",
2192
- measuredangle: "∡",
2193
- MediumSpace: " ",
2194
- Mellintrf: "ℳ",
2195
- Mfr: "𝔐",
2196
- mfr: "𝔪",
2197
- mho: "℧",
2198
- micro: "µ",
2199
- mid: "∣",
2200
- midast: "*",
2201
- midcir: "⫰",
2202
- middot: "·",
2203
- minus: "−",
2204
- minusb: "⊟",
2205
- minusd: "∸",
2206
- minusdu: "⨪",
2207
- MinusPlus: "∓",
2208
- mlcp: "⫛",
2209
- mldr: "…",
2210
- mnplus: "∓",
2211
- models: "⊧",
2212
- Mopf: "𝕄",
2213
- mopf: "𝕞",
2214
- mp: "∓",
2215
- Mscr: "ℳ",
2216
- mscr: "𝓂",
2217
- mstpos: "∾",
2218
- Mu: "Μ",
2219
- mu: "μ",
2220
- multimap: "⊸",
2221
- mumap: "⊸",
2222
- nabla: "∇",
2223
- Nacute: "Ń",
2224
- nacute: "ń",
2225
- nang: "∠⃒",
2226
- nap: "≉",
2227
- napE: "⩰̸",
2228
- napid: "≋̸",
2229
- napos: "ʼn",
2230
- napprox: "≉",
2231
- natur: "♮",
2232
- natural: "♮",
2233
- naturals: "ℕ",
2234
- nbsp: " ",
2235
- nbump: "≎̸",
2236
- nbumpe: "≏̸",
2237
- ncap: "⩃",
2238
- Ncaron: "Ň",
2239
- ncaron: "ň",
2240
- Ncedil: "Ņ",
2241
- ncedil: "ņ",
2242
- ncong: "≇",
2243
- ncongdot: "⩭̸",
2244
- ncup: "⩂",
2245
- Ncy: "Н",
2246
- ncy: "н",
2247
- ndash: "–",
2248
- ne: "≠",
2249
- nearhk: "⤤",
2250
- neArr: "⇗",
2251
- nearr: "↗",
2252
- nearrow: "↗",
2253
- nedot: "≐̸",
2254
- NegativeMediumSpace: "​",
2255
- NegativeThickSpace: "​",
2256
- NegativeThinSpace: "​",
2257
- NegativeVeryThinSpace: "​",
2258
- nequiv: "≢",
2259
- nesear: "⤨",
2260
- nesim: "≂̸",
2261
- NestedGreaterGreater: "≫",
2262
- NestedLessLess: "≪",
2263
- NewLine: `
2264
- `,
2265
- nexist: "∄",
2266
- nexists: "∄",
2267
- Nfr: "𝔑",
2268
- nfr: "𝔫",
2269
- ngE: "≧̸",
2270
- nge: "≱",
2271
- ngeq: "≱",
2272
- ngeqq: "≧̸",
2273
- ngeqslant: "⩾̸",
2274
- nges: "⩾̸",
2275
- nGg: "⋙̸",
2276
- ngsim: "≵",
2277
- nGt: "≫⃒",
2278
- ngt: "≯",
2279
- ngtr: "≯",
2280
- nGtv: "≫̸",
2281
- nhArr: "⇎",
2282
- nharr: "↮",
2283
- nhpar: "⫲",
2284
- ni: "∋",
2285
- nis: "⋼",
2286
- nisd: "⋺",
2287
- niv: "∋",
2288
- NJcy: "Њ",
2289
- njcy: "њ",
2290
- nlArr: "⇍",
2291
- nlarr: "↚",
2292
- nldr: "‥",
2293
- nlE: "≦̸",
2294
- nle: "≰",
2295
- nLeftarrow: "⇍",
2296
- nleftarrow: "↚",
2297
- nLeftrightarrow: "⇎",
2298
- nleftrightarrow: "↮",
2299
- nleq: "≰",
2300
- nleqq: "≦̸",
2301
- nleqslant: "⩽̸",
2302
- nles: "⩽̸",
2303
- nless: "≮",
2304
- nLl: "⋘̸",
2305
- nlsim: "≴",
2306
- nLt: "≪⃒",
2307
- nlt: "≮",
2308
- nltri: "⋪",
2309
- nltrie: "⋬",
2310
- nLtv: "≪̸",
2311
- nmid: "∤",
2312
- NoBreak: "⁠",
2313
- NonBreakingSpace: " ",
2314
- Nopf: "ℕ",
2315
- nopf: "𝕟",
2316
- Not: "⫬",
2317
- not: "¬",
2318
- NotCongruent: "≢",
2319
- NotCupCap: "≭",
2320
- NotDoubleVerticalBar: "∦",
2321
- NotElement: "∉",
2322
- NotEqual: "≠",
2323
- NotEqualTilde: "≂̸",
2324
- NotExists: "∄",
2325
- NotGreater: "≯",
2326
- NotGreaterEqual: "≱",
2327
- NotGreaterFullEqual: "≧̸",
2328
- NotGreaterGreater: "≫̸",
2329
- NotGreaterLess: "≹",
2330
- NotGreaterSlantEqual: "⩾̸",
2331
- NotGreaterTilde: "≵",
2332
- NotHumpDownHump: "≎̸",
2333
- NotHumpEqual: "≏̸",
2334
- notin: "∉",
2335
- notindot: "⋵̸",
2336
- notinE: "⋹̸",
2337
- notinva: "∉",
2338
- notinvb: "⋷",
2339
- notinvc: "⋶",
2340
- NotLeftTriangle: "⋪",
2341
- NotLeftTriangleBar: "⧏̸",
2342
- NotLeftTriangleEqual: "⋬",
2343
- NotLess: "≮",
2344
- NotLessEqual: "≰",
2345
- NotLessGreater: "≸",
2346
- NotLessLess: "≪̸",
2347
- NotLessSlantEqual: "⩽̸",
2348
- NotLessTilde: "≴",
2349
- NotNestedGreaterGreater: "⪢̸",
2350
- NotNestedLessLess: "⪡̸",
2351
- notni: "∌",
2352
- notniva: "∌",
2353
- notnivb: "⋾",
2354
- notnivc: "⋽",
2355
- NotPrecedes: "⊀",
2356
- NotPrecedesEqual: "⪯̸",
2357
- NotPrecedesSlantEqual: "⋠",
2358
- NotReverseElement: "∌",
2359
- NotRightTriangle: "⋫",
2360
- NotRightTriangleBar: "⧐̸",
2361
- NotRightTriangleEqual: "⋭",
2362
- NotSquareSubset: "⊏̸",
2363
- NotSquareSubsetEqual: "⋢",
2364
- NotSquareSuperset: "⊐̸",
2365
- NotSquareSupersetEqual: "⋣",
2366
- NotSubset: "⊂⃒",
2367
- NotSubsetEqual: "⊈",
2368
- NotSucceeds: "⊁",
2369
- NotSucceedsEqual: "⪰̸",
2370
- NotSucceedsSlantEqual: "⋡",
2371
- NotSucceedsTilde: "≿̸",
2372
- NotSuperset: "⊃⃒",
2373
- NotSupersetEqual: "⊉",
2374
- NotTilde: "≁",
2375
- NotTildeEqual: "≄",
2376
- NotTildeFullEqual: "≇",
2377
- NotTildeTilde: "≉",
2378
- NotVerticalBar: "∤",
2379
- npar: "∦",
2380
- nparallel: "∦",
2381
- nparsl: "⫽⃥",
2382
- npart: "∂̸",
2383
- npolint: "⨔",
2384
- npr: "⊀",
2385
- nprcue: "⋠",
2386
- npre: "⪯̸",
2387
- nprec: "⊀",
2388
- npreceq: "⪯̸",
2389
- nrArr: "⇏",
2390
- nrarr: "↛",
2391
- nrarrc: "⤳̸",
2392
- nrarrw: "↝̸",
2393
- nRightarrow: "⇏",
2394
- nrightarrow: "↛",
2395
- nrtri: "⋫",
2396
- nrtrie: "⋭",
2397
- nsc: "⊁",
2398
- nsccue: "⋡",
2399
- nsce: "⪰̸",
2400
- Nscr: "𝒩",
2401
- nscr: "𝓃",
2402
- nshortmid: "∤",
2403
- nshortparallel: "∦",
2404
- nsim: "≁",
2405
- nsime: "≄",
2406
- nsimeq: "≄",
2407
- nsmid: "∤",
2408
- nspar: "∦",
2409
- nsqsube: "⋢",
2410
- nsqsupe: "⋣",
2411
- nsub: "⊄",
2412
- nsubE: "⫅̸",
2413
- nsube: "⊈",
2414
- nsubset: "⊂⃒",
2415
- nsubseteq: "⊈",
2416
- nsubseteqq: "⫅̸",
2417
- nsucc: "⊁",
2418
- nsucceq: "⪰̸",
2419
- nsup: "⊅",
2420
- nsupE: "⫆̸",
2421
- nsupe: "⊉",
2422
- nsupset: "⊃⃒",
2423
- nsupseteq: "⊉",
2424
- nsupseteqq: "⫆̸",
2425
- ntgl: "≹",
2426
- Ntilde: "Ñ",
2427
- ntilde: "ñ",
2428
- ntlg: "≸",
2429
- ntriangleleft: "⋪",
2430
- ntrianglelefteq: "⋬",
2431
- ntriangleright: "⋫",
2432
- ntrianglerighteq: "⋭",
2433
- Nu: "Ν",
2434
- nu: "ν",
2435
- num: "#",
2436
- numero: "№",
2437
- numsp: " ",
2438
- nvap: "≍⃒",
2439
- nVDash: "⊯",
2440
- nVdash: "⊮",
2441
- nvDash: "⊭",
2442
- nvdash: "⊬",
2443
- nvge: "≥⃒",
2444
- nvgt: ">⃒",
2445
- nvHarr: "⤄",
2446
- nvinfin: "⧞",
2447
- nvlArr: "⤂",
2448
- nvle: "≤⃒",
2449
- nvlt: "<⃒",
2450
- nvltrie: "⊴⃒",
2451
- nvrArr: "⤃",
2452
- nvrtrie: "⊵⃒",
2453
- nvsim: "∼⃒",
2454
- nwarhk: "⤣",
2455
- nwArr: "⇖",
2456
- nwarr: "↖",
2457
- nwarrow: "↖",
2458
- nwnear: "⤧",
2459
- Oacute: "Ó",
2460
- oacute: "ó",
2461
- oast: "⊛",
2462
- ocir: "⊚",
2463
- Ocirc: "Ô",
2464
- ocirc: "ô",
2465
- Ocy: "О",
2466
- ocy: "о",
2467
- odash: "⊝",
2468
- Odblac: "Ő",
2469
- odblac: "ő",
2470
- odiv: "⨸",
2471
- odot: "⊙",
2472
- odsold: "⦼",
2473
- OElig: "Œ",
2474
- oelig: "œ",
2475
- ofcir: "⦿",
2476
- Ofr: "𝔒",
2477
- ofr: "𝔬",
2478
- ogon: "˛",
2479
- Ograve: "Ò",
2480
- ograve: "ò",
2481
- ogt: "⧁",
2482
- ohbar: "⦵",
2483
- ohm: "Ω",
2484
- oint: "∮",
2485
- olarr: "↺",
2486
- olcir: "⦾",
2487
- olcross: "⦻",
2488
- oline: "‾",
2489
- olt: "⧀",
2490
- Omacr: "Ō",
2491
- omacr: "ō",
2492
- Omega: "Ω",
2493
- omega: "ω",
2494
- Omicron: "Ο",
2495
- omicron: "ο",
2496
- omid: "⦶",
2497
- ominus: "⊖",
2498
- Oopf: "𝕆",
2499
- oopf: "𝕠",
2500
- opar: "⦷",
2501
- OpenCurlyDoubleQuote: "“",
2502
- OpenCurlyQuote: "‘",
2503
- operp: "⦹",
2504
- oplus: "⊕",
2505
- Or: "⩔",
2506
- or: "∨",
2507
- orarr: "↻",
2508
- ord: "⩝",
2509
- order: "ℴ",
2510
- orderof: "ℴ",
2511
- ordf: "ª",
2512
- ordm: "º",
2513
- origof: "⊶",
2514
- oror: "⩖",
2515
- orslope: "⩗",
2516
- orv: "⩛",
2517
- oS: "Ⓢ",
2518
- Oscr: "𝒪",
2519
- oscr: "ℴ",
2520
- Oslash: "Ø",
2521
- oslash: "ø",
2522
- osol: "⊘",
2523
- Otilde: "Õ",
2524
- otilde: "õ",
2525
- Otimes: "⨷",
2526
- otimes: "⊗",
2527
- otimesas: "⨶",
2528
- Ouml: "Ö",
2529
- ouml: "ö",
2530
- ovbar: "⌽",
2531
- OverBar: "‾",
2532
- OverBrace: "⏞",
2533
- OverBracket: "⎴",
2534
- OverParenthesis: "⏜",
2535
- par: "∥",
2536
- para: "¶",
2537
- parallel: "∥",
2538
- parsim: "⫳",
2539
- parsl: "⫽",
2540
- part: "∂",
2541
- PartialD: "∂",
2542
- Pcy: "П",
2543
- pcy: "п",
2544
- percnt: "%",
2545
- period: ".",
2546
- permil: "‰",
2547
- perp: "⊥",
2548
- pertenk: "‱",
2549
- Pfr: "𝔓",
2550
- pfr: "𝔭",
2551
- Phi: "Φ",
2552
- phi: "φ",
2553
- phiv: "ϕ",
2554
- phmmat: "ℳ",
2555
- phone: "☎",
2556
- Pi: "Π",
2557
- pi: "π",
2558
- pitchfork: "⋔",
2559
- piv: "ϖ",
2560
- planck: "ℏ",
2561
- planckh: "ℎ",
2562
- plankv: "ℏ",
2563
- plus: "+",
2564
- plusacir: "⨣",
2565
- plusb: "⊞",
2566
- pluscir: "⨢",
2567
- plusdo: "∔",
2568
- plusdu: "⨥",
2569
- pluse: "⩲",
2570
- PlusMinus: "±",
2571
- plusmn: "±",
2572
- plussim: "⨦",
2573
- plustwo: "⨧",
2574
- pm: "±",
2575
- Poincareplane: "ℌ",
2576
- pointint: "⨕",
2577
- Popf: "ℙ",
2578
- popf: "𝕡",
2579
- pound: "£",
2580
- Pr: "⪻",
2581
- pr: "≺",
2582
- prap: "⪷",
2583
- prcue: "≼",
2584
- prE: "⪳",
2585
- pre: "⪯",
2586
- prec: "≺",
2587
- precapprox: "⪷",
2588
- preccurlyeq: "≼",
2589
- Precedes: "≺",
2590
- PrecedesEqual: "⪯",
2591
- PrecedesSlantEqual: "≼",
2592
- PrecedesTilde: "≾",
2593
- preceq: "⪯",
2594
- precnapprox: "⪹",
2595
- precneqq: "⪵",
2596
- precnsim: "⋨",
2597
- precsim: "≾",
2598
- Prime: "″",
2599
- prime: "′",
2600
- primes: "ℙ",
2601
- prnap: "⪹",
2602
- prnE: "⪵",
2603
- prnsim: "⋨",
2604
- prod: "∏",
2605
- Product: "∏",
2606
- profalar: "⌮",
2607
- profline: "⌒",
2608
- profsurf: "⌓",
2609
- prop: "∝",
2610
- Proportion: "∷",
2611
- Proportional: "∝",
2612
- propto: "∝",
2613
- prsim: "≾",
2614
- prurel: "⊰",
2615
- Pscr: "𝒫",
2616
- pscr: "𝓅",
2617
- Psi: "Ψ",
2618
- psi: "ψ",
2619
- puncsp: " ",
2620
- Qfr: "𝔔",
2621
- qfr: "𝔮",
2622
- qint: "⨌",
2623
- Qopf: "ℚ",
2624
- qopf: "𝕢",
2625
- qprime: "⁗",
2626
- Qscr: "𝒬",
2627
- qscr: "𝓆",
2628
- quaternions: "ℍ",
2629
- quatint: "⨖",
2630
- quest: "?",
2631
- questeq: "≟",
2632
- QUOT: '"',
2633
- quot: '"',
2634
- rAarr: "⇛",
2635
- race: "∽̱",
2636
- Racute: "Ŕ",
2637
- racute: "ŕ",
2638
- radic: "√",
2639
- raemptyv: "⦳",
2640
- Rang: "⟫",
2641
- rang: "⟩",
2642
- rangd: "⦒",
2643
- range: "⦥",
2644
- rangle: "⟩",
2645
- raquo: "»",
2646
- Rarr: "↠",
2647
- rArr: "⇒",
2648
- rarr: "→",
2649
- rarrap: "⥵",
2650
- rarrb: "⇥",
2651
- rarrbfs: "⤠",
2652
- rarrc: "⤳",
2653
- rarrfs: "⤞",
2654
- rarrhk: "↪",
2655
- rarrlp: "↬",
2656
- rarrpl: "⥅",
2657
- rarrsim: "⥴",
2658
- Rarrtl: "⤖",
2659
- rarrtl: "↣",
2660
- rarrw: "↝",
2661
- rAtail: "⤜",
2662
- ratail: "⤚",
2663
- ratio: "∶",
2664
- rationals: "ℚ",
2665
- RBarr: "⤐",
2666
- rBarr: "⤏",
2667
- rbarr: "⤍",
2668
- rbbrk: "❳",
2669
- rbrace: "}",
2670
- rbrack: "]",
2671
- rbrke: "⦌",
2672
- rbrksld: "⦎",
2673
- rbrkslu: "⦐",
2674
- Rcaron: "Ř",
2675
- rcaron: "ř",
2676
- Rcedil: "Ŗ",
2677
- rcedil: "ŗ",
2678
- rceil: "⌉",
2679
- rcub: "}",
2680
- Rcy: "Р",
2681
- rcy: "р",
2682
- rdca: "⤷",
2683
- rdldhar: "⥩",
2684
- rdquo: "”",
2685
- rdquor: "”",
2686
- rdsh: "↳",
2687
- Re: "ℜ",
2688
- real: "ℜ",
2689
- realine: "ℛ",
2690
- realpart: "ℜ",
2691
- reals: "ℝ",
2692
- rect: "▭",
2693
- REG: "®",
2694
- reg: "®",
2695
- ReverseElement: "∋",
2696
- ReverseEquilibrium: "⇋",
2697
- ReverseUpEquilibrium: "⥯",
2698
- rfisht: "⥽",
2699
- rfloor: "⌋",
2700
- Rfr: "ℜ",
2701
- rfr: "𝔯",
2702
- rHar: "⥤",
2703
- rhard: "⇁",
2704
- rharu: "⇀",
2705
- rharul: "⥬",
2706
- Rho: "Ρ",
2707
- rho: "ρ",
2708
- rhov: "ϱ",
2709
- RightAngleBracket: "⟩",
2710
- RightArrow: "→",
2711
- Rightarrow: "⇒",
2712
- rightarrow: "→",
2713
- RightArrowBar: "⇥",
2714
- RightArrowLeftArrow: "⇄",
2715
- rightarrowtail: "↣",
2716
- RightCeiling: "⌉",
2717
- RightDoubleBracket: "⟧",
2718
- RightDownTeeVector: "⥝",
2719
- RightDownVector: "⇂",
2720
- RightDownVectorBar: "⥕",
2721
- RightFloor: "⌋",
2722
- rightharpoondown: "⇁",
2723
- rightharpoonup: "⇀",
2724
- rightleftarrows: "⇄",
2725
- rightleftharpoons: "⇌",
2726
- rightrightarrows: "⇉",
2727
- rightsquigarrow: "↝",
2728
- RightTee: "⊢",
2729
- RightTeeArrow: "↦",
2730
- RightTeeVector: "⥛",
2731
- rightthreetimes: "⋌",
2732
- RightTriangle: "⊳",
2733
- RightTriangleBar: "⧐",
2734
- RightTriangleEqual: "⊵",
2735
- RightUpDownVector: "⥏",
2736
- RightUpTeeVector: "⥜",
2737
- RightUpVector: "↾",
2738
- RightUpVectorBar: "⥔",
2739
- RightVector: "⇀",
2740
- RightVectorBar: "⥓",
2741
- ring: "˚",
2742
- risingdotseq: "≓",
2743
- rlarr: "⇄",
2744
- rlhar: "⇌",
2745
- rlm: "‏",
2746
- rmoust: "⎱",
2747
- rmoustache: "⎱",
2748
- rnmid: "⫮",
2749
- roang: "⟭",
2750
- roarr: "⇾",
2751
- robrk: "⟧",
2752
- ropar: "⦆",
2753
- Ropf: "ℝ",
2754
- ropf: "𝕣",
2755
- roplus: "⨮",
2756
- rotimes: "⨵",
2757
- RoundImplies: "⥰",
2758
- rpar: ")",
2759
- rpargt: "⦔",
2760
- rppolint: "⨒",
2761
- rrarr: "⇉",
2762
- Rrightarrow: "⇛",
2763
- rsaquo: "›",
2764
- Rscr: "ℛ",
2765
- rscr: "𝓇",
2766
- Rsh: "↱",
2767
- rsh: "↱",
2768
- rsqb: "]",
2769
- rsquo: "’",
2770
- rsquor: "’",
2771
- rthree: "⋌",
2772
- rtimes: "⋊",
2773
- rtri: "▹",
2774
- rtrie: "⊵",
2775
- rtrif: "▸",
2776
- rtriltri: "⧎",
2777
- RuleDelayed: "⧴",
2778
- ruluhar: "⥨",
2779
- rx: "℞",
2780
- Sacute: "Ś",
2781
- sacute: "ś",
2782
- sbquo: "‚",
2783
- Sc: "⪼",
2784
- sc: "≻",
2785
- scap: "⪸",
2786
- Scaron: "Š",
2787
- scaron: "š",
2788
- sccue: "≽",
2789
- scE: "⪴",
2790
- sce: "⪰",
2791
- Scedil: "Ş",
2792
- scedil: "ş",
2793
- Scirc: "Ŝ",
2794
- scirc: "ŝ",
2795
- scnap: "⪺",
2796
- scnE: "⪶",
2797
- scnsim: "⋩",
2798
- scpolint: "⨓",
2799
- scsim: "≿",
2800
- Scy: "С",
2801
- scy: "с",
2802
- sdot: "⋅",
2803
- sdotb: "⊡",
2804
- sdote: "⩦",
2805
- searhk: "⤥",
2806
- seArr: "⇘",
2807
- searr: "↘",
2808
- searrow: "↘",
2809
- sect: "§",
2810
- semi: ";",
2811
- seswar: "⤩",
2812
- setminus: "∖",
2813
- setmn: "∖",
2814
- sext: "✶",
2815
- Sfr: "𝔖",
2816
- sfr: "𝔰",
2817
- sfrown: "⌢",
2818
- sharp: "♯",
2819
- SHCHcy: "Щ",
2820
- shchcy: "щ",
2821
- SHcy: "Ш",
2822
- shcy: "ш",
2823
- ShortDownArrow: "↓",
2824
- ShortLeftArrow: "←",
2825
- shortmid: "∣",
2826
- shortparallel: "∥",
2827
- ShortRightArrow: "→",
2828
- ShortUpArrow: "↑",
2829
- shy: "­",
2830
- Sigma: "Σ",
2831
- sigma: "σ",
2832
- sigmaf: "ς",
2833
- sigmav: "ς",
2834
- sim: "∼",
2835
- simdot: "⩪",
2836
- sime: "≃",
2837
- simeq: "≃",
2838
- simg: "⪞",
2839
- simgE: "⪠",
2840
- siml: "⪝",
2841
- simlE: "⪟",
2842
- simne: "≆",
2843
- simplus: "⨤",
2844
- simrarr: "⥲",
2845
- slarr: "←",
2846
- SmallCircle: "∘",
2847
- smallsetminus: "∖",
2848
- smashp: "⨳",
2849
- smeparsl: "⧤",
2850
- smid: "∣",
2851
- smile: "⌣",
2852
- smt: "⪪",
2853
- smte: "⪬",
2854
- smtes: "⪬︀",
2855
- SOFTcy: "Ь",
2856
- softcy: "ь",
2857
- sol: "/",
2858
- solb: "⧄",
2859
- solbar: "⌿",
2860
- Sopf: "𝕊",
2861
- sopf: "𝕤",
2862
- spades: "♠",
2863
- spadesuit: "♠",
2864
- spar: "∥",
2865
- sqcap: "⊓",
2866
- sqcaps: "⊓︀",
2867
- sqcup: "⊔",
2868
- sqcups: "⊔︀",
2869
- Sqrt: "√",
2870
- sqsub: "⊏",
2871
- sqsube: "⊑",
2872
- sqsubset: "⊏",
2873
- sqsubseteq: "⊑",
2874
- sqsup: "⊐",
2875
- sqsupe: "⊒",
2876
- sqsupset: "⊐",
2877
- sqsupseteq: "⊒",
2878
- squ: "□",
2879
- Square: "□",
2880
- square: "□",
2881
- SquareIntersection: "⊓",
2882
- SquareSubset: "⊏",
2883
- SquareSubsetEqual: "⊑",
2884
- SquareSuperset: "⊐",
2885
- SquareSupersetEqual: "⊒",
2886
- SquareUnion: "⊔",
2887
- squarf: "▪",
2888
- squf: "▪",
2889
- srarr: "→",
2890
- Sscr: "𝒮",
2891
- sscr: "𝓈",
2892
- ssetmn: "∖",
2893
- ssmile: "⌣",
2894
- sstarf: "⋆",
2895
- Star: "⋆",
2896
- star: "☆",
2897
- starf: "★",
2898
- straightepsilon: "ϵ",
2899
- straightphi: "ϕ",
2900
- strns: "¯",
2901
- Sub: "⋐",
2902
- sub: "⊂",
2903
- subdot: "⪽",
2904
- subE: "⫅",
2905
- sube: "⊆",
2906
- subedot: "⫃",
2907
- submult: "⫁",
2908
- subnE: "⫋",
2909
- subne: "⊊",
2910
- subplus: "⪿",
2911
- subrarr: "⥹",
2912
- Subset: "⋐",
2913
- subset: "⊂",
2914
- subseteq: "⊆",
2915
- subseteqq: "⫅",
2916
- SubsetEqual: "⊆",
2917
- subsetneq: "⊊",
2918
- subsetneqq: "⫋",
2919
- subsim: "⫇",
2920
- subsub: "⫕",
2921
- subsup: "⫓",
2922
- succ: "≻",
2923
- succapprox: "⪸",
2924
- succcurlyeq: "≽",
2925
- Succeeds: "≻",
2926
- SucceedsEqual: "⪰",
2927
- SucceedsSlantEqual: "≽",
2928
- SucceedsTilde: "≿",
2929
- succeq: "⪰",
2930
- succnapprox: "⪺",
2931
- succneqq: "⪶",
2932
- succnsim: "⋩",
2933
- succsim: "≿",
2934
- SuchThat: "∋",
2935
- Sum: "∑",
2936
- sum: "∑",
2937
- sung: "♪",
2938
- Sup: "⋑",
2939
- sup: "⊃",
2940
- sup1: "¹",
2941
- sup2: "²",
2942
- sup3: "³",
2943
- supdot: "⪾",
2944
- supdsub: "⫘",
2945
- supE: "⫆",
2946
- supe: "⊇",
2947
- supedot: "⫄",
2948
- Superset: "⊃",
2949
- SupersetEqual: "⊇",
2950
- suphsol: "⟉",
2951
- suphsub: "⫗",
2952
- suplarr: "⥻",
2953
- supmult: "⫂",
2954
- supnE: "⫌",
2955
- supne: "⊋",
2956
- supplus: "⫀",
2957
- Supset: "⋑",
2958
- supset: "⊃",
2959
- supseteq: "⊇",
2960
- supseteqq: "⫆",
2961
- supsetneq: "⊋",
2962
- supsetneqq: "⫌",
2963
- supsim: "⫈",
2964
- supsub: "⫔",
2965
- supsup: "⫖",
2966
- swarhk: "⤦",
2967
- swArr: "⇙",
2968
- swarr: "↙",
2969
- swarrow: "↙",
2970
- swnwar: "⤪",
2971
- szlig: "ß",
2972
- Tab: " ",
2973
- target: "⌖",
2974
- Tau: "Τ",
2975
- tau: "τ",
2976
- tbrk: "⎴",
2977
- Tcaron: "Ť",
2978
- tcaron: "ť",
2979
- Tcedil: "Ţ",
2980
- tcedil: "ţ",
2981
- Tcy: "Т",
2982
- tcy: "т",
2983
- tdot: "⃛",
2984
- telrec: "⌕",
2985
- Tfr: "𝔗",
2986
- tfr: "𝔱",
2987
- there4: "∴",
2988
- Therefore: "∴",
2989
- therefore: "∴",
2990
- Theta: "Θ",
2991
- theta: "θ",
2992
- thetasym: "ϑ",
2993
- thetav: "ϑ",
2994
- thickapprox: "≈",
2995
- thicksim: "∼",
2996
- ThickSpace: "  ",
2997
- thinsp: " ",
2998
- ThinSpace: " ",
2999
- thkap: "≈",
3000
- thksim: "∼",
3001
- THORN: "Þ",
3002
- thorn: "þ",
3003
- Tilde: "∼",
3004
- tilde: "˜",
3005
- TildeEqual: "≃",
3006
- TildeFullEqual: "≅",
3007
- TildeTilde: "≈",
3008
- times: "×",
3009
- timesb: "⊠",
3010
- timesbar: "⨱",
3011
- timesd: "⨰",
3012
- tint: "∭",
3013
- toea: "⤨",
3014
- top: "⊤",
3015
- topbot: "⌶",
3016
- topcir: "⫱",
3017
- Topf: "𝕋",
3018
- topf: "𝕥",
3019
- topfork: "⫚",
3020
- tosa: "⤩",
3021
- tprime: "‴",
3022
- TRADE: "™",
3023
- trade: "™",
3024
- triangle: "▵",
3025
- triangledown: "▿",
3026
- triangleleft: "◃",
3027
- trianglelefteq: "⊴",
3028
- triangleq: "≜",
3029
- triangleright: "▹",
3030
- trianglerighteq: "⊵",
3031
- tridot: "◬",
3032
- trie: "≜",
3033
- triminus: "⨺",
3034
- TripleDot: "⃛",
3035
- triplus: "⨹",
3036
- trisb: "⧍",
3037
- tritime: "⨻",
3038
- trpezium: "⏢",
3039
- Tscr: "𝒯",
3040
- tscr: "𝓉",
3041
- TScy: "Ц",
3042
- tscy: "ц",
3043
- TSHcy: "Ћ",
3044
- tshcy: "ћ",
3045
- Tstrok: "Ŧ",
3046
- tstrok: "ŧ",
3047
- twixt: "≬",
3048
- twoheadleftarrow: "↞",
3049
- twoheadrightarrow: "↠",
3050
- Uacute: "Ú",
3051
- uacute: "ú",
3052
- Uarr: "↟",
3053
- uArr: "⇑",
3054
- uarr: "↑",
3055
- Uarrocir: "⥉",
3056
- Ubrcy: "Ў",
3057
- ubrcy: "ў",
3058
- Ubreve: "Ŭ",
3059
- ubreve: "ŭ",
3060
- Ucirc: "Û",
3061
- ucirc: "û",
3062
- Ucy: "У",
3063
- ucy: "у",
3064
- udarr: "⇅",
3065
- Udblac: "Ű",
3066
- udblac: "ű",
3067
- udhar: "⥮",
3068
- ufisht: "⥾",
3069
- Ufr: "𝔘",
3070
- ufr: "𝔲",
3071
- Ugrave: "Ù",
3072
- ugrave: "ù",
3073
- uHar: "⥣",
3074
- uharl: "↿",
3075
- uharr: "↾",
3076
- uhblk: "▀",
3077
- ulcorn: "⌜",
3078
- ulcorner: "⌜",
3079
- ulcrop: "⌏",
3080
- ultri: "◸",
3081
- Umacr: "Ū",
3082
- umacr: "ū",
3083
- uml: "¨",
3084
- UnderBar: "_",
3085
- UnderBrace: "⏟",
3086
- UnderBracket: "⎵",
3087
- UnderParenthesis: "⏝",
3088
- Union: "⋃",
3089
- UnionPlus: "⊎",
3090
- Uogon: "Ų",
3091
- uogon: "ų",
3092
- Uopf: "𝕌",
3093
- uopf: "𝕦",
3094
- UpArrow: "↑",
3095
- Uparrow: "⇑",
3096
- uparrow: "↑",
3097
- UpArrowBar: "⤒",
3098
- UpArrowDownArrow: "⇅",
3099
- UpDownArrow: "↕",
3100
- Updownarrow: "⇕",
3101
- updownarrow: "↕",
3102
- UpEquilibrium: "⥮",
3103
- upharpoonleft: "↿",
3104
- upharpoonright: "↾",
3105
- uplus: "⊎",
3106
- UpperLeftArrow: "↖",
3107
- UpperRightArrow: "↗",
3108
- Upsi: "ϒ",
3109
- upsi: "υ",
3110
- upsih: "ϒ",
3111
- Upsilon: "Υ",
3112
- upsilon: "υ",
3113
- UpTee: "⊥",
3114
- UpTeeArrow: "↥",
3115
- upuparrows: "⇈",
3116
- urcorn: "⌝",
3117
- urcorner: "⌝",
3118
- urcrop: "⌎",
3119
- Uring: "Ů",
3120
- uring: "ů",
3121
- urtri: "◹",
3122
- Uscr: "𝒰",
3123
- uscr: "𝓊",
3124
- utdot: "⋰",
3125
- Utilde: "Ũ",
3126
- utilde: "ũ",
3127
- utri: "▵",
3128
- utrif: "▴",
3129
- uuarr: "⇈",
3130
- Uuml: "Ü",
3131
- uuml: "ü",
3132
- uwangle: "⦧",
3133
- vangrt: "⦜",
3134
- varepsilon: "ϵ",
3135
- varkappa: "ϰ",
3136
- varnothing: "∅",
3137
- varphi: "ϕ",
3138
- varpi: "ϖ",
3139
- varpropto: "∝",
3140
- vArr: "⇕",
3141
- varr: "↕",
3142
- varrho: "ϱ",
3143
- varsigma: "ς",
3144
- varsubsetneq: "⊊︀",
3145
- varsubsetneqq: "⫋︀",
3146
- varsupsetneq: "⊋︀",
3147
- varsupsetneqq: "⫌︀",
3148
- vartheta: "ϑ",
3149
- vartriangleleft: "⊲",
3150
- vartriangleright: "⊳",
3151
- Vbar: "⫫",
3152
- vBar: "⫨",
3153
- vBarv: "⫩",
3154
- Vcy: "В",
3155
- vcy: "в",
3156
- VDash: "⊫",
3157
- Vdash: "⊩",
3158
- vDash: "⊨",
3159
- vdash: "⊢",
3160
- Vdashl: "⫦",
3161
- Vee: "⋁",
3162
- vee: "∨",
3163
- veebar: "⊻",
3164
- veeeq: "≚",
3165
- vellip: "⋮",
3166
- Verbar: "‖",
3167
- verbar: "|",
3168
- Vert: "‖",
3169
- vert: "|",
3170
- VerticalBar: "∣",
3171
- VerticalLine: "|",
3172
- VerticalSeparator: "❘",
3173
- VerticalTilde: "≀",
3174
- VeryThinSpace: " ",
3175
- Vfr: "𝔙",
3176
- vfr: "𝔳",
3177
- vltri: "⊲",
3178
- vnsub: "⊂⃒",
3179
- vnsup: "⊃⃒",
3180
- Vopf: "𝕍",
3181
- vopf: "𝕧",
3182
- vprop: "∝",
3183
- vrtri: "⊳",
3184
- Vscr: "𝒱",
3185
- vscr: "𝓋",
3186
- vsubnE: "⫋︀",
3187
- vsubne: "⊊︀",
3188
- vsupnE: "⫌︀",
3189
- vsupne: "⊋︀",
3190
- Vvdash: "⊪",
3191
- vzigzag: "⦚",
3192
- Wcirc: "Ŵ",
3193
- wcirc: "ŵ",
3194
- wedbar: "⩟",
3195
- Wedge: "⋀",
3196
- wedge: "∧",
3197
- wedgeq: "≙",
3198
- weierp: "℘",
3199
- Wfr: "𝔚",
3200
- wfr: "𝔴",
3201
- Wopf: "𝕎",
3202
- wopf: "𝕨",
3203
- wp: "℘",
3204
- wr: "≀",
3205
- wreath: "≀",
3206
- Wscr: "𝒲",
3207
- wscr: "𝓌",
3208
- xcap: "⋂",
3209
- xcirc: "◯",
3210
- xcup: "⋃",
3211
- xdtri: "▽",
3212
- Xfr: "𝔛",
3213
- xfr: "𝔵",
3214
- xhArr: "⟺",
3215
- xharr: "⟷",
3216
- Xi: "Ξ",
3217
- xi: "ξ",
3218
- xlArr: "⟸",
3219
- xlarr: "⟵",
3220
- xmap: "⟼",
3221
- xnis: "⋻",
3222
- xodot: "⨀",
3223
- Xopf: "𝕏",
3224
- xopf: "𝕩",
3225
- xoplus: "⨁",
3226
- xotime: "⨂",
3227
- xrArr: "⟹",
3228
- xrarr: "⟶",
3229
- Xscr: "𝒳",
3230
- xscr: "𝓍",
3231
- xsqcup: "⨆",
3232
- xuplus: "⨄",
3233
- xutri: "△",
3234
- xvee: "⋁",
3235
- xwedge: "⋀",
3236
- Yacute: "Ý",
3237
- yacute: "ý",
3238
- YAcy: "Я",
3239
- yacy: "я",
3240
- Ycirc: "Ŷ",
3241
- ycirc: "ŷ",
3242
- Ycy: "Ы",
3243
- ycy: "ы",
3244
- yen: "¥",
3245
- Yfr: "𝔜",
3246
- yfr: "𝔶",
3247
- YIcy: "Ї",
3248
- yicy: "ї",
3249
- Yopf: "𝕐",
3250
- yopf: "𝕪",
3251
- Yscr: "𝒴",
3252
- yscr: "𝓎",
3253
- YUcy: "Ю",
3254
- yucy: "ю",
3255
- Yuml: "Ÿ",
3256
- yuml: "ÿ",
3257
- Zacute: "Ź",
3258
- zacute: "ź",
3259
- Zcaron: "Ž",
3260
- zcaron: "ž",
3261
- Zcy: "З",
3262
- zcy: "з",
3263
- Zdot: "Ż",
3264
- zdot: "ż",
3265
- zeetrf: "ℨ",
3266
- ZeroWidthSpace: "​",
3267
- Zeta: "Ζ",
3268
- zeta: "ζ",
3269
- Zfr: "ℨ",
3270
- zfr: "𝔷",
3271
- ZHcy: "Ж",
3272
- zhcy: "ж",
3273
- zigrarr: "⇝",
3274
- Zopf: "ℤ",
3275
- zopf: "𝕫",
3276
- Zscr: "𝒵",
3277
- zscr: "𝓏",
3278
- zwj: "‍",
3279
- zwnj: "‌"
3280
- }), e.entityMap = e.HTML_ENTITIES;
3281
- })(wr);
3282
- var Ce = {}, te = M.NAMESPACE, ye = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/, ze = new RegExp("[\\-\\.0-9" + ye.source.slice(1, -1) + "\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"), Fe = new RegExp("^" + ye.source + ze.source + "*(?::" + ye.source + ze.source + "*)?$"), J = 0, P = 1, H = 2, W = 3, G = 4, j = 5, K = 6, se = 7;
3283
- function Y(e, r) {
3284
- this.message = e, this.locator = r, Error.captureStackTrace && Error.captureStackTrace(this, Y);
3285
- }
3286
- Y.prototype = new Error();
3287
- Y.prototype.name = Y.name;
3288
- function Nr() {
3289
- }
3290
- Nr.prototype = {
3291
- parse: function(e, r, t) {
3292
- var n = this.domBuilder;
3293
- n.startDocument(), yr(r, r = {}), jr(
3294
- e,
3295
- r,
3296
- t,
3297
- n,
3298
- this.errorHandler
3299
- ), n.endDocument();
3300
- }
3301
- };
3302
- function jr(e, r, t, n, a) {
3303
- function o(g) {
3304
- if (g > 65535) {
3305
- g -= 65536;
3306
- var A = 55296 + (g >> 10), Ar = 56320 + (g & 1023);
3307
- return String.fromCharCode(A, Ar);
3308
- } else
3309
- return String.fromCharCode(g);
3310
- }
3311
- function i(g) {
3312
- var A = g.slice(1, -1);
3313
- return Object.hasOwnProperty.call(t, A) ? t[A] : A.charAt(0) === "#" ? o(parseInt(A.substr(1).replace("x", "0x"))) : (a.error("entity not found:" + g), g);
3314
- }
3315
- function s(g) {
3316
- if (g > h) {
3317
- var A = e.substring(h, g).replace(/&#?\w+;/g, i);
3318
- p && u(h), n.characters(A, 0, g - h), h = g;
3319
- }
3320
- }
3321
- function u(g, A) {
3322
- for (; g >= c && (A = m.exec(e)); )
3323
- l = A.index, c = l + A[0].length, p.lineNumber++;
3324
- p.columnNumber = g - l + 1;
3325
- }
3326
- for (var l = 0, c = 0, m = /.*(?:\r\n?|\n)|.*$/g, p = n.locator, v = [{ currentNSMap: r }], O = {}, h = 0; ; ) {
3327
- try {
3328
- var f = e.indexOf("<", h);
3329
- if (f < 0) {
3330
- if (!e.substr(h).match(/^\s*$/)) {
3331
- var U = n.doc, Z = U.createTextNode(e.substr(h));
3332
- U.appendChild(Z), n.currentElement = Z;
3333
- }
3334
- return;
3335
- }
3336
- switch (f > h && s(f), e.charAt(f + 1)) {
3337
- case "/":
3338
- var E = e.indexOf(">", f + 3), w = e.substring(f + 2, E).replace(/[ \t\n\r]+$/g, ""), S = v.pop();
3339
- E < 0 ? (w = e.substring(f + 2).replace(/[\s<].*/, ""), a.error("end tag name: " + w + " is not complete:" + S.tagName), E = f + 1 + w.length) : w.match(/\s</) && (w = w.replace(/[\s<].*/, ""), a.error("end tag name: " + w + " maybe not complete"), E = f + 1 + w.length);
3340
- var ge = S.localNSMap, Ie = S.tagName == w, xr = Ie || S.tagName && S.tagName.toLowerCase() == w.toLowerCase();
3341
- if (xr) {
3342
- if (n.endElement(S.uri, S.localName, w), ge)
3343
- for (var ke in ge)
3344
- Object.prototype.hasOwnProperty.call(ge, ke) && n.endPrefixMapping(ke);
3345
- Ie || a.fatalError("end tag name: " + w + " is not match the current start tagName:" + S.tagName);
3346
- } else
3347
- v.push(S);
3348
- E++;
3349
- break;
3350
- case "?":
3351
- p && u(f), E = Yr(e, f, n);
3352
- break;
3353
- case "!":
3354
- p && u(f), E = $r(e, f, n, a);
3355
- break;
3356
- default:
3357
- p && u(f);
3358
- var x = new Er(), be = v[v.length - 1].currentNSMap, E = zr(e, f, x, be, i, a), _e = x.length;
3359
- if (!x.closed && Xr(e, E, x.tagName, O) && (x.closed = !0, t.nbsp || a.warning("unclosed xml attribute")), p && _e) {
3360
- for (var Sr = Xe(p, {}), ve = 0; ve < _e; ve++) {
3361
- var Me = x[ve];
3362
- u(Me.offset), Me.locator = Xe(p, {});
3363
- }
3364
- n.locator = Sr, $e(x, n, be) && v.push(x), n.locator = p;
3365
- } else
3366
- $e(x, n, be) && v.push(x);
3367
- te.isHTML(x.uri) && !x.closed ? E = Fr(e, E, x.tagName, i, n) : E++;
3368
- }
3369
- } catch (g) {
3370
- if (g instanceof Y)
3371
- throw g;
3372
- a.error("element parse error: " + g), E = -1;
3373
- }
3374
- E > h ? h = E : s(Math.max(f, h) + 1);
3375
- }
3376
- }
3377
- function Xe(e, r) {
3378
- return r.lineNumber = e.lineNumber, r.columnNumber = e.columnNumber, r;
3379
- }
3380
- function zr(e, r, t, n, a, o) {
3381
- function i(p, v, O) {
3382
- t.attributeNames.hasOwnProperty(p) && o.fatalError("Attribute " + p + " redefined"), t.addValue(
3383
- p,
3384
- // @see https://www.w3.org/TR/xml/#AVNormalize
3385
- // since the xmldom sax parser does not "interpret" DTD the following is not implemented:
3386
- // - recursive replacement of (DTD) entity references
3387
- // - trimming and collapsing multiple spaces into a single one for attributes that are not of type CDATA
3388
- v.replace(/[\t\n\r]/g, " ").replace(/&#?\w+;/g, a),
3389
- O
3390
- );
3391
- }
3392
- for (var s, u, l = ++r, c = J; ; ) {
3393
- var m = e.charAt(l);
3394
- switch (m) {
3395
- case "=":
3396
- if (c === P)
3397
- s = e.slice(r, l), c = W;
3398
- else if (c === H)
3399
- c = W;
3400
- else
3401
- throw new Error("attribute equal must after attrName");
3402
- break;
3403
- case "'":
3404
- case '"':
3405
- if (c === W || c === P)
3406
- if (c === P && (o.warning('attribute value must after "="'), s = e.slice(r, l)), r = l + 1, l = e.indexOf(m, r), l > 0)
3407
- u = e.slice(r, l), i(s, u, r - 1), c = j;
3408
- else
3409
- throw new Error("attribute value no end '" + m + "' match");
3410
- else if (c == G)
3411
- u = e.slice(r, l), i(s, u, r), o.warning('attribute "' + s + '" missed start quot(' + m + ")!!"), r = l + 1, c = j;
3412
- else
3413
- throw new Error('attribute value must after "="');
3414
- break;
3415
- case "/":
3416
- switch (c) {
3417
- case J:
3418
- t.setTagName(e.slice(r, l));
3419
- case j:
3420
- case K:
3421
- case se:
3422
- c = se, t.closed = !0;
3423
- case G:
3424
- case P:
3425
- break;
3426
- case H:
3427
- t.closed = !0;
3428
- break;
3429
- default:
3430
- throw new Error("attribute invalid close char('/')");
3431
- }
3432
- break;
3433
- case "":
3434
- return o.error("unexpected end of input"), c == J && t.setTagName(e.slice(r, l)), l;
3435
- case ">":
3436
- switch (c) {
3437
- case J:
3438
- t.setTagName(e.slice(r, l));
3439
- case j:
3440
- case K:
3441
- case se:
3442
- break;
3443
- case G:
3444
- case P:
3445
- u = e.slice(r, l), u.slice(-1) === "/" && (t.closed = !0, u = u.slice(0, -1));
3446
- case H:
3447
- c === H && (u = s), c == G ? (o.warning('attribute "' + u + '" missed quot(")!'), i(s, u, r)) : ((!te.isHTML(n[""]) || !u.match(/^(?:disabled|checked|selected)$/i)) && o.warning('attribute "' + u + '" missed value!! "' + u + '" instead!!'), i(u, u, r));
3448
- break;
3449
- case W:
3450
- throw new Error("attribute value missed!!");
3451
- }
3452
- return l;
3453
- case "€":
3454
- m = " ";
3455
- default:
3456
- if (m <= " ")
3457
- switch (c) {
3458
- case J:
3459
- t.setTagName(e.slice(r, l)), c = K;
3460
- break;
3461
- case P:
3462
- s = e.slice(r, l), c = H;
3463
- break;
3464
- case G:
3465
- var u = e.slice(r, l);
3466
- o.warning('attribute "' + u + '" missed quot(")!!'), i(s, u, r);
3467
- case j:
3468
- c = K;
3469
- break;
3470
- }
3471
- else
3472
- switch (c) {
3473
- case H:
3474
- t.tagName, (!te.isHTML(n[""]) || !s.match(/^(?:disabled|checked|selected)$/i)) && o.warning('attribute "' + s + '" missed value!! "' + s + '" instead2!!'), i(s, s, r), r = l, c = P;
3475
- break;
3476
- case j:
3477
- o.warning('attribute space is required"' + s + '"!!');
3478
- case K:
3479
- c = P, r = l;
3480
- break;
3481
- case W:
3482
- c = G, r = l;
3483
- break;
3484
- case se:
3485
- throw new Error("elements closed character '/' and '>' must be connected to");
3486
- }
3487
- }
3488
- l++;
3489
- }
3490
- }
3491
- function $e(e, r, t) {
3492
- for (var n = e.tagName, a = null, o = e.length; o--; ) {
3493
- var i = e[o], s = i.qName, u = i.value, p = s.indexOf(":");
3494
- if (p > 0)
3495
- var l = i.prefix = s.slice(0, p), c = s.slice(p + 1), m = l === "xmlns" && c;
3496
- else
3497
- c = s, l = null, m = s === "xmlns" && "";
3498
- i.localName = c, m !== !1 && (a == null && (a = {}, yr(t, t = {})), t[m] = a[m] = u, i.uri = te.XMLNS, r.startPrefixMapping(m, u));
3499
- }
3500
- for (var o = e.length; o--; ) {
3501
- i = e[o];
3502
- var l = i.prefix;
3503
- l && (l === "xml" && (i.uri = te.XML), l !== "xmlns" && (i.uri = t[l || ""]));
3504
- }
3505
- var p = n.indexOf(":");
3506
- p > 0 ? (l = e.prefix = n.slice(0, p), c = e.localName = n.slice(p + 1)) : (l = null, c = e.localName = n);
3507
- var v = e.uri = t[l || ""];
3508
- if (r.startElement(v, c, n, e), e.closed) {
3509
- if (r.endElement(v, c, n), a)
3510
- for (l in a)
3511
- Object.prototype.hasOwnProperty.call(a, l) && r.endPrefixMapping(l);
3512
- } else
3513
- return e.currentNSMap = t, e.localNSMap = a, !0;
3514
- }
3515
- function Fr(e, r, t, n, a) {
3516
- if (/^(?:script|textarea)$/i.test(t)) {
3517
- var o = e.indexOf("</" + t + ">", r), i = e.substring(r + 1, o);
3518
- if (/[&<]/.test(i))
3519
- return /^script$/i.test(t) ? (a.characters(i, 0, i.length), o) : (i = i.replace(/&#?\w+;/g, n), a.characters(i, 0, i.length), o);
3520
- }
3521
- return r + 1;
3522
- }
3523
- function Xr(e, r, t, n) {
3524
- var a = n[t];
3525
- return a == null && (a = e.lastIndexOf("</" + t + ">"), a < r && (a = e.lastIndexOf("</" + t)), n[t] = a), a < r;
3526
- }
3527
- function yr(e, r) {
3528
- for (var t in e)
3529
- Object.prototype.hasOwnProperty.call(e, t) && (r[t] = e[t]);
3530
- }
3531
- function $r(e, r, t, n) {
3532
- var a = e.charAt(r + 2);
3533
- switch (a) {
3534
- case "-":
3535
- if (e.charAt(r + 3) === "-") {
3536
- var o = e.indexOf("-->", r + 4);
3537
- return o > r ? (t.comment(e, r + 4, o - r - 4), o + 3) : (n.error("Unclosed comment"), -1);
3538
- } else
3539
- return -1;
3540
- default:
3541
- if (e.substr(r + 3, 6) == "CDATA[") {
3542
- var o = e.indexOf("]]>", r + 9);
3543
- return t.startCDATA(), t.characters(e, r + 9, o - r - 9), t.endCDATA(), o + 3;
3544
- }
3545
- var i = Zr(e, r), s = i.length;
3546
- if (s > 1 && /!doctype/i.test(i[0][0])) {
3547
- var u = i[1][0], l = !1, c = !1;
3548
- s > 3 && (/^public$/i.test(i[2][0]) ? (l = i[3][0], c = s > 4 && i[4][0]) : /^system$/i.test(i[2][0]) && (c = i[3][0]));
3549
- var m = i[s - 1];
3550
- return t.startDTD(u, l, c), t.endDTD(), m.index + m[0].length;
3551
- }
3552
- }
3553
- return -1;
3554
- }
3555
- function Yr(e, r, t) {
3556
- var n = e.indexOf("?>", r);
3557
- if (n) {
3558
- var a = e.substring(r, n).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
3559
- return a ? (a[0].length, t.processingInstruction(a[1], a[2]), n + 2) : -1;
3560
- }
3561
- return -1;
3562
- }
3563
- function Er() {
3564
- this.attributeNames = {};
3565
- }
3566
- Er.prototype = {
3567
- setTagName: function(e) {
3568
- if (!Fe.test(e))
3569
- throw new Error("invalid tagName:" + e);
3570
- this.tagName = e;
3571
- },
3572
- addValue: function(e, r, t) {
3573
- if (!Fe.test(e))
3574
- throw new Error("invalid attribute:" + e);
3575
- this.attributeNames[e] = this.length, this[this.length++] = { qName: e, value: r, offset: t };
3576
- },
3577
- length: 0,
3578
- getLocalName: function(e) {
3579
- return this[e].localName;
3580
- },
3581
- getLocator: function(e) {
3582
- return this[e].locator;
3583
- },
3584
- getQName: function(e) {
3585
- return this[e].qName;
3586
- },
3587
- getURI: function(e) {
3588
- return this[e].uri;
3589
- },
3590
- getValue: function(e) {
3591
- return this[e].value;
3592
- }
3593
- // ,getIndex:function(uri, localName)){
3594
- // if(localName){
3595
- //
3596
- // }else{
3597
- // var qName = uri
3598
- // }
3599
- // },
3600
- // getValue:function(){return this.getValue(this.getIndex.apply(this,arguments))},
3601
- // getType:function(uri,localName){}
3602
- // getType:function(i){},
3603
- };
3604
- function Zr(e, r) {
3605
- var t, n = [], a = /'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;
3606
- for (a.lastIndex = r, a.exec(e); t = a.exec(e); )
3607
- if (n.push(t), t[1]) return n;
3608
- }
3609
- Ce.XMLReader = Nr;
3610
- Ce.ParseError = Y;
3611
- var Jr = M, Wr = V, Ye = wr, Dr = Ce, Kr = Wr.DOMImplementation, Ze = Jr.NAMESPACE, Qr = Dr.ParseError, et = Dr.XMLReader;
3612
- function Tr(e) {
3613
- return e.replace(/\r[\n\u0085]/g, `
3614
- `).replace(/[\r\u0085\u2028]/g, `
3615
- `);
3616
- }
3617
- function qr(e) {
3618
- this.options = e || { locator: {} };
3619
- }
3620
- qr.prototype.parseFromString = function(e, r) {
3621
- var t = this.options, n = new et(), a = t.domBuilder || new ie(), o = t.errorHandler, i = t.locator, s = t.xmlns || {}, u = /\/x?html?$/.test(r), l = u ? Ye.HTML_ENTITIES : Ye.XML_ENTITIES;
3622
- i && a.setDocumentLocator(i), n.errorHandler = rt(o, a, i), n.domBuilder = t.domBuilder || a, u && (s[""] = Ze.HTML), s.xml = s.xml || Ze.XML;
3623
- var c = t.normalizeLineEndings || Tr;
3624
- return e && typeof e == "string" ? n.parse(
3625
- c(e),
3626
- s,
3627
- l
3628
- ) : n.errorHandler.error("invalid doc source"), a.doc;
3629
- };
3630
- function rt(e, r, t) {
3631
- if (!e) {
3632
- if (r instanceof ie)
3633
- return r;
3634
- e = r;
3635
- }
3636
- var n = {}, a = e instanceof Function;
3637
- t = t || {};
3638
- function o(i) {
3639
- var s = e[i];
3640
- !s && a && (s = e.length == 2 ? function(u) {
3641
- e(i, u);
3642
- } : e), n[i] = s && function(u) {
3643
- s("[xmldom " + i + "] " + u + Ee(t));
3644
- } || function() {
3645
- };
3646
- }
3647
- return o("warning"), o("error"), o("fatalError"), n;
3648
- }
3649
- function ie() {
3650
- this.cdata = !1;
3651
- }
3652
- function z(e, r) {
3653
- r.lineNumber = e.lineNumber, r.columnNumber = e.columnNumber;
3654
- }
3655
- ie.prototype = {
3656
- startDocument: function() {
3657
- this.doc = new Kr().createDocument(null, null, null), this.locator && (this.doc.documentURI = this.locator.systemId);
3658
- },
3659
- startElement: function(e, r, t, n) {
3660
- var a = this.doc, o = a.createElementNS(e, t || r), i = n.length;
3661
- le(this, o), this.currentElement = o, this.locator && z(this.locator, o);
3662
- for (var s = 0; s < i; s++) {
3663
- var e = n.getURI(s), u = n.getValue(s), t = n.getQName(s), l = a.createAttributeNS(e, t);
3664
- this.locator && z(n.getLocator(s), l), l.value = l.nodeValue = u, o.setAttributeNode(l);
3665
- }
3666
- },
3667
- endElement: function(e, r, t) {
3668
- var n = this.currentElement;
3669
- n.tagName, this.currentElement = n.parentNode;
3670
- },
3671
- startPrefixMapping: function(e, r) {
3672
- },
3673
- endPrefixMapping: function(e) {
3674
- },
3675
- processingInstruction: function(e, r) {
3676
- var t = this.doc.createProcessingInstruction(e, r);
3677
- this.locator && z(this.locator, t), le(this, t);
3678
- },
3679
- ignorableWhitespace: function(e, r, t) {
3680
- },
3681
- characters: function(e, r, t) {
3682
- if (e = Je.apply(this, arguments), e) {
3683
- if (this.cdata)
3684
- var n = this.doc.createCDATASection(e);
3685
- else
3686
- var n = this.doc.createTextNode(e);
3687
- this.currentElement ? this.currentElement.appendChild(n) : /^\s*$/.test(e) && this.doc.appendChild(n), this.locator && z(this.locator, n);
3688
- }
3689
- },
3690
- skippedEntity: function(e) {
3691
- },
3692
- endDocument: function() {
3693
- this.doc.normalize();
3694
- },
3695
- setDocumentLocator: function(e) {
3696
- (this.locator = e) && (e.lineNumber = 0);
3697
- },
3698
- //LexicalHandler
3699
- comment: function(e, r, t) {
3700
- e = Je.apply(this, arguments);
3701
- var n = this.doc.createComment(e);
3702
- this.locator && z(this.locator, n), le(this, n);
3703
- },
3704
- startCDATA: function() {
3705
- this.cdata = !0;
3706
- },
3707
- endCDATA: function() {
3708
- this.cdata = !1;
3709
- },
3710
- startDTD: function(e, r, t) {
3711
- var n = this.doc.implementation;
3712
- if (n && n.createDocumentType) {
3713
- var a = n.createDocumentType(e, r, t);
3714
- this.locator && z(this.locator, a), le(this, a), this.doc.doctype = a;
3715
- }
3716
- },
3717
- /**
3718
- * @see org.xml.sax.ErrorHandler
3719
- * @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html
3720
- */
3721
- warning: function(e) {
3722
- console.warn("[xmldom warning] " + e, Ee(this.locator));
3723
- },
3724
- error: function(e) {
3725
- console.error("[xmldom error] " + e, Ee(this.locator));
3726
- },
3727
- fatalError: function(e) {
3728
- throw new Qr(e, this.locator);
3729
- }
3730
- };
3731
- function Ee(e) {
3732
- if (e)
3733
- return `
3734
- @` + (e.systemId || "") + "#[line:" + e.lineNumber + ",col:" + e.columnNumber + "]";
3735
- }
3736
- function Je(e, r, t) {
3737
- return typeof e == "string" ? e.substr(r, t) : e.length >= r + t || r ? new java.lang.String(e, r, t) + "" : e;
3738
- }
3739
- "endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g, function(e) {
3740
- ie.prototype[e] = function() {
3741
- return null;
3742
- };
3743
- });
3744
- function le(e, r) {
3745
- e.currentElement ? e.currentElement.appendChild(r) : e.doc.appendChild(r);
3746
- }
3747
- me.__DOMHandler = ie;
3748
- me.normalizeLineEndings = Tr;
3749
- me.DOMParser = qr;
3750
- var tt = me.DOMParser;
3751
- const nt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3752
- __proto__: null,
3753
- DOMParser: tt
3754
- }, Symbol.toStringTag, { value: "Module" }));
3755
- export {
3756
- tt as D,
3757
- nt as i
3758
- };