easy-email-pro-editor 1.38.4 → 1.38.6

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.
@@ -2,7 +2,7 @@ var tm = Object.defineProperty, um = Object.defineProperties;
2
2
  var rm = Object.getOwnPropertyDescriptors;
3
3
  var an = Object.getOwnPropertySymbols;
4
4
  var Gc = Object.prototype.hasOwnProperty, Yc = Object.prototype.propertyIsEnumerable;
5
- var Qi = (e, u, a) => u in e ? tm(e, u, { enumerable: !0, configurable: !0, writable: !0, value: a }) : e[u] = a, N = (e, u) => {
5
+ var Qi = (e, u, a) => u in e ? tm(e, u, { enumerable: !0, configurable: !0, writable: !0, value: a }) : e[u] = a, y = (e, u) => {
6
6
  for (var a in u || (u = {}))
7
7
  Gc.call(u, a) && Qi(e, a, u[a]);
8
8
  if (an)
@@ -46,11 +46,11 @@ const Cm = () => {
46
46
  isSelectable: _
47
47
  } = e;
48
48
  return e.isInline = (g) => {
49
- const y = De.getBlockByType(g.type);
50
- return y ? J.isHTMLNodeElement(g) && ["img"].includes(g.data.tagName) ? !0 : !!y.inlineElement : R(g);
49
+ const N = De.getBlockByType(g.type);
50
+ return N ? J.isHTMLNodeElement(g) && ["img"].includes(g.data.tagName) ? !0 : !!N.inlineElement : R(g);
51
51
  }, e.isElementReadOnly = (g) => De.getBlockByType(g.type) && J.isHTMLNodeElement(g) && ["img"].includes(g.data.tagName) ? !0 : x(g), e.isSelectable = (g) => De.getBlockByType(g.type) && J.isHTMLNodeElement(g) && ["img"].includes(g.data.tagName) ? !1 : _(g), e.isVoid = (g) => {
52
- const y = De.getBlockByType(g.type), w = [pr.IMAGE].some(
53
- (O) => y.category.includes(O)
52
+ const N = De.getBlockByType(g.type), w = [pr.IMAGE].some(
53
+ (O) => N.category.includes(O)
54
54
  ), P = [
55
55
  me.LINE_BREAK
56
56
  ].includes(g.type);
@@ -61,21 +61,21 @@ const Cm = () => {
61
61
  return null;
62
62
  try {
63
63
  return g.getRangeAt(0).getBoundingClientRect();
64
- } catch (y) {
64
+ } catch (N) {
65
65
  }
66
66
  return null;
67
67
  }, e.getSelectedBlockElement = () => {
68
- var y;
68
+ var N;
69
69
  const [g] = be.nodes(e, {
70
- at: (y = e.selection) == null ? void 0 : y.anchor.path,
70
+ at: (N = e.selection) == null ? void 0 : N.anchor.path,
71
71
  match: J.isBlockElement,
72
72
  mode: "lowest"
73
73
  });
74
74
  return g;
75
75
  }, e.getSelectedContentElement = () => {
76
- var y;
76
+ var N;
77
77
  const [g] = be.nodes(e, {
78
- at: (y = e.selection) == null ? void 0 : y.anchor.path,
78
+ at: (N = e.selection) == null ? void 0 : N.anchor.path,
79
79
  match: J.isContentElement,
80
80
  mode: "lowest"
81
81
  });
@@ -87,42 +87,48 @@ const Cm = () => {
87
87
  }, e.deleteForward = (g) => {
88
88
  s(g);
89
89
  }, e.insertNewLine = (g) => {
90
- let y = null;
91
- if (g != null && g.path && (y = vt.get(e, g.path)), !y) {
92
- const w = be.above(e, {
93
- match(P, O) {
94
- return J.isElement(P);
90
+ try {
91
+ let N = null;
92
+ if (g != null && g.path && (N = vt.get(e, g.path)), !N) {
93
+ const w = be.above(e, {
94
+ match(P, O) {
95
+ return J.isElement(P);
96
+ },
97
+ mode: "lowest",
98
+ at: g == null ? void 0 : g.path
99
+ });
100
+ N = w == null ? void 0 : w[0];
101
+ }
102
+ if (!N)
103
+ return;
104
+ if (J.isContentElement(N) && (Ne.insertNodes(
105
+ e,
106
+ {
107
+ type: gr.STANDARD_PARAGRAPH,
108
+ attributes: {},
109
+ data: {},
110
+ children: [{ text: "" }]
95
111
  },
96
- mode: "lowest",
97
- at: g == null ? void 0 : g.path
98
- });
99
- y = w == null ? void 0 : w[0];
100
- }
101
- if (y && J.isContentElement(y) && (Ne.insertNodes(
102
- e,
103
- {
104
- type: gr.STANDARD_PARAGRAPH,
105
- attributes: {},
106
- data: {},
107
- children: [{ text: "" }]
108
- },
109
- { at: g == null ? void 0 : g.path }
110
- ), g != null && g.path)) {
111
- Ne.select(e, be.end(e, g.path));
112
- const w = be.end(e, g.path);
113
- Ne.setSelection(e, { anchor: w, focus: w });
112
+ { at: g == null ? void 0 : g.path }
113
+ ), g != null && g.path)) {
114
+ Ne.select(e, be.end(e, g.path));
115
+ const w = be.end(e, g.path);
116
+ Ne.setSelection(e, { anchor: w, focus: w });
117
+ }
118
+ } catch (N) {
119
+ console.error(N);
114
120
  }
115
121
  }, e.insertNewRow = (g) => {
116
- const y = be.above(e, {
122
+ const N = be.above(e, {
117
123
  match(O, Q) {
118
124
  return J.isSectionElement(O);
119
125
  },
120
126
  mode: "lowest",
121
127
  at: g == null ? void 0 : g.path
122
128
  });
123
- if (!(y == null ? void 0 : y[0]))
129
+ if (!(N == null ? void 0 : N[0]))
124
130
  return;
125
- let P = y == null ? void 0 : y[1];
131
+ let P = N == null ? void 0 : N[1];
126
132
  if (!P) {
127
133
  const O = be.above(e, {
128
134
  match(Q) {
@@ -163,8 +169,8 @@ const Cm = () => {
163
169
  }
164
170
  }, e.insertBreak = () => {
165
171
  const g = be.above(e, {
166
- match(y, w) {
167
- return J.isBlockElement(y);
172
+ match(N, w) {
173
+ return J.isBlockElement(N);
168
174
  },
169
175
  mode: "lowest"
170
176
  });
@@ -192,13 +198,13 @@ const Cm = () => {
192
198
  }
193
199
  l();
194
200
  }, e.splitColumns = (g) => {
195
- const [y] = be.nodes(e, {
201
+ const [N] = be.nodes(e, {
196
202
  at: g.path,
197
203
  match: J.isColumnElement
198
- }), w = y[0];
204
+ }), w = N[0];
199
205
  if (!J.isElement(w))
200
206
  return;
201
- const O = be.parent(e, y[1])[0].children.filter(
207
+ const O = be.parent(e, N[1])[0].children.filter(
202
208
  (X) => J.isElement(X) && X.type !== "raw"
203
209
  );
204
210
  if (O.length >= 2) {
@@ -229,7 +235,7 @@ const Cm = () => {
229
235
  Ne.setNodes(
230
236
  e,
231
237
  {
232
- attributes: z(N({}, w.attributes), { width: K })
238
+ attributes: z(y({}, w.attributes), { width: K })
233
239
  },
234
240
  {
235
241
  match: J.isColumnElement
@@ -239,7 +245,7 @@ const Cm = () => {
239
245
  {
240
246
  type: gr.STANDARD_COLUMN,
241
247
  data: {},
242
- attributes: z(N({}, w.attributes), { width: K }),
248
+ attributes: z(y({}, w.attributes), { width: K }),
243
249
  children: [
244
250
  {
245
251
  type: gr.STANDARD_PARAGRAPH,
@@ -259,16 +265,16 @@ const Cm = () => {
259
265
  });
260
266
  }, e.splitNodesByCategoryType = ({
261
267
  path: g,
262
- targetCategoryType: y,
268
+ targetCategoryType: N,
263
269
  insertElement: w
264
270
  }) => {
265
271
  let P = g, O = null;
266
272
  for (; vt.get(e, P); ) {
267
273
  P = Ke.parent(P);
268
274
  const te = vt.get(e, P);
269
- if (O = z(N({}, te), {
275
+ if (O = z(y({}, te), {
270
276
  children: O ? [O] : []
271
- }), De.getBlockByType(te.type).category === y)
277
+ }), De.getBlockByType(te.type).category === N)
272
278
  break;
273
279
  }
274
280
  if (!O)
@@ -288,7 +294,7 @@ const Cm = () => {
288
294
  });
289
295
  }, e.insertData = (g) => {
290
296
  be.withoutNormalizing(e, () => {
291
- const y = g.getData("application/x-slate-fragment"), w = be.above(e, {
297
+ const N = g.getData("application/x-slate-fragment"), w = be.above(e, {
292
298
  match: J.isVoidBlockElement
293
299
  });
294
300
  if (be.above(e, {
@@ -296,8 +302,8 @@ const Cm = () => {
296
302
  return J.isTextElement(O);
297
303
  }
298
304
  }))
299
- if (y && !w) {
300
- const O = decodeURIComponent(window.atob(y)), Q = JSON.parse(O), K = [...vt.nodes(Q[0])].map((X) => X[0]).filter(
305
+ if (N && !w) {
306
+ const O = decodeURIComponent(window.atob(N)), Q = JSON.parse(O), K = [...vt.nodes(Q[0])].map((X) => X[0]).filter(
301
307
  (X) => J.isTextNode(X) || J.isHTMLBlockNodeElement(X) || J.isHTMLNodeElement(X)
302
308
  );
303
309
  e.insertFragment(K);
@@ -322,11 +328,11 @@ const Cm = () => {
322
328
  });
323
329
  }, e.insertMergetag = (g) => {
324
330
  be.withoutNormalizing(e, () => {
325
- const [y] = be.nodes(e, {
331
+ const [N] = be.nodes(e, {
326
332
  match: (w) => J.isInlineElement(w) && w.type === me.MERGETAG,
327
333
  mode: "all"
328
334
  });
329
- y || Ne.insertNodes(
335
+ N || Ne.insertNodes(
330
336
  e,
331
337
  [
332
338
  {
@@ -343,23 +349,23 @@ const Cm = () => {
343
349
  );
344
350
  });
345
351
  }, e.normalizeNode = (g) => {
346
- const [y, w] = g;
347
- if (!J.isElement(y)) {
352
+ const [N, w] = g;
353
+ if (!J.isElement(N)) {
348
354
  m(g);
349
355
  return;
350
356
  }
351
- const P = De.getBlockByType(y.type);
357
+ const P = De.getBlockByType(N.type);
352
358
  if (P.void) {
353
359
  m(g);
354
360
  return;
355
361
  }
356
- if (y.children.find(
362
+ if (N.children.find(
357
363
  (K) => J.isLineBreakElement(K)
358
364
  )) {
359
365
  e.withoutNormalizing(() => {
360
366
  const K = [];
361
367
  let X = [];
362
- y.children.forEach((ge) => {
368
+ N.children.forEach((ge) => {
363
369
  J.isLineBreakElement(ge) ? X.length > 0 && (K.push({
364
370
  type: me.HTML_BLOCK_NODE,
365
371
  children: X,
@@ -373,14 +379,14 @@ const Cm = () => {
373
379
  data: { tagName: "div" }
374
380
  }), e.replaceNode({
375
381
  path: w,
376
- node: z(N({}, y), {
382
+ node: z(y({}, N), {
377
383
  children: K
378
384
  })
379
385
  });
380
386
  });
381
387
  return;
382
388
  }
383
- if (y.children.length === 0) {
389
+ if (N.children.length === 0) {
384
390
  const K = De.getBlockByType(
385
391
  me.STANDARD_SECTION
386
392
  ), X = De.getBlockByType(
@@ -394,7 +400,7 @@ const Cm = () => {
394
400
  {
395
401
  at: [0, 0]
396
402
  }
397
- ) : J.isContentElement(y) ? Ne.insertNodes(
403
+ ) : J.isContentElement(N) ? Ne.insertNodes(
398
404
  e,
399
405
  { text: "" },
400
406
  {
@@ -403,15 +409,15 @@ const Cm = () => {
403
409
  ) : Ne.removeNodes(e, { at: w });
404
410
  return;
405
411
  }
406
- if (y.type === me.MERGETAG && y.children[0].text === "") {
412
+ if (N.type === me.MERGETAG && N.children[0].text === "") {
407
413
  Ne.removeNodes(e, { at: w });
408
414
  return;
409
415
  }
410
416
  const Q = P.category.includes(pr.SECTION), ue = P.category.includes(pr.GROUP);
411
- if ((Q || ue) && !(y.children.length === 1)) {
412
- const X = y.children.filter(
417
+ if ((Q || ue) && !(N.children.length === 1)) {
418
+ const X = N.children.filter(
413
419
  (q) => !q.attributes.width
414
- ), ge = y.children.filter(
420
+ ), ge = N.children.filter(
415
421
  (q) => q.attributes.width
416
422
  );
417
423
  if (X.length > 0 && ge.every(
@@ -425,7 +431,7 @@ const Cm = () => {
425
431
  (oe) => parseFloat(oe.attributes.width)
426
432
  )
427
433
  )) / X.length;
428
- y.children.forEach((oe, ae) => {
434
+ N.children.forEach((oe, ae) => {
429
435
  J.isColumnElement(oe) && !oe.attributes.width && Ne.setNodes(
430
436
  e,
431
437
  {
@@ -440,12 +446,12 @@ const Cm = () => {
440
446
  });
441
447
  }
442
448
  }
443
- if (J.isElement(y) && y.children.length === 0) {
449
+ if (J.isElement(N) && N.children.length === 0) {
444
450
  Ne.removeNodes(e, { at: w });
445
451
  return;
446
452
  }
447
- if (J.isColumnElement(y) && y.children.length > 1) {
448
- const K = y.children.findIndex(
453
+ if (J.isColumnElement(N) && N.children.length > 1) {
454
+ const K = N.children.findIndex(
449
455
  (X) => J.isPlaceholderElement(X)
450
456
  );
451
457
  if (K != -1) {
@@ -460,39 +466,39 @@ const Cm = () => {
460
466
  m(g);
461
467
  }, e.replaceNode = (g) => {
462
468
  be.withoutNormalizing(e, () => {
463
- const y = g.path, w = vt.get(e, y);
469
+ const N = g.path, w = vt.get(e, N);
464
470
  L({
465
471
  type: "insert_node",
466
- path: Ke.next(y),
472
+ path: Ke.next(N),
467
473
  node: g.node
468
474
  }), L({
469
475
  type: "remove_node",
470
- path: y,
476
+ path: N,
471
477
  node: w
472
478
  });
473
- const P = be.end(e, y);
479
+ const P = be.end(e, N);
474
480
  be.above(e, {
475
481
  at: P,
476
482
  match: J.isUnsetElement
477
483
  }) ? Ne.deselect(e) : Ne.setSelection(e, { anchor: P, focus: P });
478
484
  });
479
485
  }, e.removeNode = (g) => {
480
- const y = g.path;
486
+ const N = g.path;
481
487
  L({
482
488
  type: "remove_node",
483
- path: y,
484
- node: vt.get(e, y)
489
+ path: N,
490
+ node: vt.get(e, N)
485
491
  });
486
492
  }, e.findSelfOrAncestorNodeByCategory = (g) => {
487
493
  try {
488
- const [y] = be.nodes(e, {
494
+ const [N] = be.nodes(e, {
489
495
  match: J.isElement,
490
496
  at: g.path,
491
497
  mode: "lowest"
492
498
  });
493
- if (!y)
499
+ if (!N)
494
500
  return null;
495
- const w = y[0];
501
+ const w = N[0];
496
502
  if (!w)
497
503
  return null;
498
504
  if (De.getBlockByType(w.type).category === g.category)
@@ -504,59 +510,59 @@ const Cm = () => {
504
510
  });
505
511
  return O ? [O[0], O[1]] : null;
506
512
  }
507
- } catch (y) {
513
+ } catch (N) {
508
514
  return null;
509
515
  }
510
516
  }, e.findSelfOrAncestorNodeByType = (g) => {
511
517
  try {
512
- const y = vt.get(e, g.path);
513
- if (!y)
518
+ const N = vt.get(e, g.path);
519
+ if (!N)
514
520
  return null;
515
- if (y.type === g.type)
516
- return [y, He.findPath(e, y)];
521
+ if (N.type === g.type)
522
+ return [N, He.findPath(e, N)];
517
523
  {
518
524
  const w = be.above(e, {
519
- at: He.findPath(e, y),
525
+ at: He.findPath(e, N),
520
526
  match: (P) => J.isElement(P) ? P.type === g.type : !1
521
527
  });
522
528
  return w ? [w[0], w[1]] : null;
523
529
  }
524
- } catch (y) {
530
+ } catch (N) {
525
531
  return null;
526
532
  }
527
533
  }, e.findSelfOrAncestorNode = (g) => {
528
534
  try {
529
- const y = vt.get(e, g.path);
530
- if (!y)
535
+ const N = vt.get(e, g.path);
536
+ if (!N)
531
537
  return null;
532
- if (g.match(y, g.path))
533
- return [y, He.findPath(e, y)];
538
+ if (g.match(N, g.path))
539
+ return [N, He.findPath(e, N)];
534
540
  {
535
541
  const w = be.above(e, {
536
- at: He.findPath(e, y),
542
+ at: He.findPath(e, N),
537
543
  match: (P, O) => g.match(P, O)
538
544
  });
539
545
  return w ? [w[0], w[1]] : null;
540
546
  }
541
- } catch (y) {
547
+ } catch (N) {
542
548
  return null;
543
549
  }
544
- }, e.writeHistory = (g, y) => {
550
+ }, e.writeHistory = (g, N) => {
545
551
  var w, P, O, Q, ue, K, X, ge, q, oe, ae, te, se, xe;
546
552
  if (g === "undos") {
547
553
  const ke = Ki;
548
- if (((w = y == null ? void 0 : y.operations) == null ? void 0 : w[0].type) === "set_node" && (Ki = !0, Cm()), ke) {
554
+ if (((w = N == null ? void 0 : N.operations) == null ? void 0 : w[0].type) === "set_node" && (Ki = !0, Cm()), ke) {
549
555
  const Z = e.history[g].slice(-1)[0], Te = (O = (P = Z == null ? void 0 : Z.operations) == null ? void 0 : P[0]) == null ? void 0 : O.path;
550
- if (((Q = y == null ? void 0 : y.operations) == null ? void 0 : Q[0].type) === "set_node" && ((ue = Z == null ? void 0 : Z.operations) == null ? void 0 : ue[0].type) === "set_node" && (y == null ? void 0 : y.operations.length) === 1) {
551
- const Oe = (X = (K = y == null ? void 0 : y.operations) == null ? void 0 : K[0]) == null ? void 0 : X.path;
556
+ if (((Q = N == null ? void 0 : N.operations) == null ? void 0 : Q[0].type) === "set_node" && ((ue = Z == null ? void 0 : Z.operations) == null ? void 0 : ue[0].type) === "set_node" && (N == null ? void 0 : N.operations.length) === 1) {
557
+ const Oe = (X = (K = N == null ? void 0 : N.operations) == null ? void 0 : K[0]) == null ? void 0 : X.path;
552
558
  Ke.equals(Te, Oe) && e.history[g].pop();
553
559
  const lt = (q = (ge = Z == null ? void 0 : Z.operations) == null ? void 0 : ge[0]) == null ? void 0 : q.properties, Dt = cs(
554
560
  (ae = (oe = Z == null ? void 0 : Z.operations) == null ? void 0 : oe[0]) == null ? void 0 : ae.newProperties,
555
- (se = (te = y == null ? void 0 : y.operations) == null ? void 0 : te[0]) == null ? void 0 : se.newProperties
561
+ (se = (te = N == null ? void 0 : N.operations) == null ? void 0 : te[0]) == null ? void 0 : se.newProperties
556
562
  );
557
- e.history[g].push(z(N({}, y), {
563
+ e.history[g].push(z(y({}, N), {
558
564
  operations: [
559
- z(N({}, (xe = y == null ? void 0 : y.operations) == null ? void 0 : xe[0]), {
565
+ z(y({}, (xe = N == null ? void 0 : N.operations) == null ? void 0 : xe[0]), {
560
566
  properties: lt,
561
567
  newProperties: Dt
562
568
  })
@@ -566,9 +572,9 @@ const Cm = () => {
566
572
  }
567
573
  }
568
574
  }
569
- e.history[g].push(y);
575
+ e.history[g].push(N);
570
576
  }, e.apply = (g) => {
571
- var y, w, P;
577
+ var N, w, P;
572
578
  if (!(g.type === "set_node" && la(g.newProperties, g.properties))) {
573
579
  if (g.type === "remove_text") {
574
580
  const [O] = be.nodes(e, {
@@ -592,7 +598,7 @@ const Cm = () => {
592
598
  try {
593
599
  if (g.newProperties && fn.isRange(g.newProperties) && fn.isCollapsed(g.newProperties) && !be.isEnd(
594
600
  e,
595
- (y = g.newProperties) == null ? void 0 : y.anchor,
601
+ (N = g.newProperties) == null ? void 0 : N.anchor,
596
602
  (P = (w = g.newProperties) == null ? void 0 : w.anchor) == null ? void 0 : P.path
597
603
  )) {
598
604
  const O = be.above(e, {
@@ -627,9 +633,9 @@ var Nl = /* @__PURE__ */ ((e) => (e.MOBILE = "MOBILE", e.DESKTOP = "DESKTOP", e)
627
633
  const yl = is({}), ym = ({ children: e }) => {
628
634
  const { localeData: u, readOnly: a } = Du(), s = Nr();
629
635
  kt(() => {
630
- y([0]), y(void 0);
636
+ N([0]), N(void 0);
631
637
  const ae = setTimeout(() => {
632
- y(null);
638
+ N(null);
633
639
  }, 0);
634
640
  return () => {
635
641
  clearTimeout(ae);
@@ -637,13 +643,15 @@ const yl = is({}), ym = ({ children: e }) => {
637
643
  }, [s, u]);
638
644
  const [l, m] = A.useState(!1), [b, L] = A.useState(
639
645
  null
640
- ), [R, F] = A.useState(null), [x, _] = A.useState(null), [g, y] = A.useState(null), [w, P] = A.useState(
646
+ ), [R, F] = A.useState(null), [x, _] = A.useState(null), [g, N] = A.useState(null), [w, P] = A.useState(
641
647
  "DESKTOP"
642
648
  /* DESKTOP */
643
649
  ), [O, Q] = A.useState(null), [ue, K] = A.useState(
644
650
  null
645
651
  ), X = Zc((ae) => {
646
- if (!a && !l) {
652
+ try {
653
+ if (a || l)
654
+ return;
647
655
  if (!ae)
648
656
  Ne.deselect(s);
649
657
  else {
@@ -661,15 +669,17 @@ const yl = is({}), ym = ({ children: e }) => {
661
669
  }
662
670
  }
663
671
  L((te) => ae ? te && Ke.equals(te, ae) ? te : ae : null);
672
+ } catch (te) {
673
+ console.error(te);
664
674
  }
665
675
  }), ge = Zc(
666
676
  (...ae) => {
667
677
  const te = ae[0];
668
678
  if (Ke.isPath(te)) {
669
- y((se) => se && Ke.equals(se, te) ? se : te);
679
+ N((se) => se && Ke.equals(se, te) ? se : te);
670
680
  return;
671
681
  }
672
- return y(...ae);
682
+ return N(...ae);
673
683
  }
674
684
  );
675
685
  kt(() => {
@@ -809,19 +819,19 @@ const Du = () => bn(_l), XT = () => {
809
819
  throw new Error("Current plan do not support mergetags");
810
820
  }
811
821
  }, [s, e.mergetags]);
812
- const _ = e.children, g = e.footer, y = e.onPageChange, w = ve(
822
+ const _ = e.children, g = e.footer, N = e.onPageChange, w = ve(
813
823
  (Q) => {
814
824
  const ue = Q[0];
815
- y == null || y(ue, F);
825
+ N == null || N(ue, F);
816
826
  },
817
- [y, F]
827
+ [N, F]
818
828
  ), P = e.EnhanceProvider, O = V(() => ({
819
829
  editor: F,
820
830
  value: x,
821
831
  initialValue: x,
822
832
  onChange: w
823
833
  }), [x, F, w]);
824
- return s ? m ? /* @__PURE__ */ A.createElement("div", { dangerouslySetInnerHTML: { __html: Jc } }) : /* @__PURE__ */ A.createElement(am, N({}, O), /* @__PURE__ */ A.createElement(Nm, { value: e }, /* @__PURE__ */ A.createElement(Im, null, /* @__PURE__ */ A.createElement(ym, null, /* @__PURE__ */ A.createElement("style", null, _m), P ? /* @__PURE__ */ A.createElement(P, null, _, g) : /* @__PURE__ */ A.createElement(A.Fragment, null, _, g))), /* @__PURE__ */ A.createElement(xm, null))) : /* @__PURE__ */ A.createElement(A.Fragment, null, a) || null;
834
+ return s ? m ? /* @__PURE__ */ A.createElement("div", { dangerouslySetInnerHTML: { __html: Jc } }) : /* @__PURE__ */ A.createElement(am, y({}, O), /* @__PURE__ */ A.createElement(Nm, { value: e }, /* @__PURE__ */ A.createElement(Im, null, /* @__PURE__ */ A.createElement(ym, null, /* @__PURE__ */ A.createElement("style", null, _m), P ? /* @__PURE__ */ A.createElement(P, null, _, g) : /* @__PURE__ */ A.createElement(A.Fragment, null, _, g))), /* @__PURE__ */ A.createElement(xm, null))) : /* @__PURE__ */ A.createElement(A.Fragment, null, a) || null;
825
835
  }, xm = () => {
826
836
  const e = Du(), u = Nr();
827
837
  return kt(() => {
@@ -849,13 +859,13 @@ const fs = (e) => {
849
859
  kt(() => {
850
860
  if (!s)
851
861
  return;
852
- const g = He.findDocumentOrShadowRoot(l), y = () => {
862
+ const g = He.findDocumentOrShadowRoot(l), N = () => {
853
863
  a(!0);
854
864
  }, w = () => {
855
865
  a(!1);
856
866
  };
857
- return g.addEventListener("compositionstart", y), g.addEventListener("compositionend", w), () => {
858
- g.removeEventListener("compositionstart", y), g.removeEventListener("compositionend", w);
867
+ return g.addEventListener("compositionstart", N), g.addEventListener("compositionend", w), () => {
868
+ g.removeEventListener("compositionstart", N), g.removeEventListener("compositionend", w);
859
869
  };
860
870
  }, [l, s]);
861
871
  const L = e.text;
@@ -902,7 +912,7 @@ const fs = (e) => {
902
912
  }
903
913
  }), /* @__PURE__ */ A.createElement(
904
914
  "span",
905
- z(N({
915
+ z(y({
906
916
  contentEditable: e.contentUneditable ? !1 : void 0,
907
917
  "data-placeholder": Cr("Type '/' for commands")
908
918
  }, e.attributes), {
@@ -927,17 +937,17 @@ const vm = (l) => {
927
937
  "windowRef"
928
938
  ]);
929
939
  const [b, L] = Xu(null), R = (F) => {
930
- var g, y;
940
+ var g, N;
931
941
  const x = (g = F.target) == null ? void 0 : g.contentWindow;
932
942
  if (!x)
933
943
  return;
934
944
  a == null || a(x);
935
945
  const _ = x.document.body;
936
- L(_), (y = s.onLoad) == null || y.call(s, F);
946
+ L(_), (N = s.onLoad) == null || N.call(s, F);
937
947
  };
938
948
  return /* @__PURE__ */ A.createElement(
939
949
  "iframe",
940
- z(N({
950
+ z(y({
941
951
  frameBorder: 0,
942
952
  title: u,
943
953
  srcDoc: '<!doctype html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> <head></head> <body> </body> </html>'
@@ -951,7 +961,7 @@ const vm = (l) => {
951
961
  const { interactiveStyle: e = {} } = Du(), [u, a] = A.useState({});
952
962
  return kt(() => {
953
963
  const s = setInterval(() => {
954
- const l = N({}, e), m = getComputedStyle(document.body);
964
+ const l = y({}, e), m = getComputedStyle(document.body);
955
965
  e.hoverColor || (l.hoverColor = `rgb(${m.getPropertyValue("--primary-4") || "24,144,255"})`), e.dragColor || (l.dragColor = `rgb(${m.getPropertyValue("--primary-4") || "24,144,255"})`), e.selectedColor || (l.selectedColor = `rgb(${m.getPropertyValue("--primary-6") || "24,144,255"})`), a((b) => JSON.stringify(b) === JSON.stringify(l) ? b : l);
956
966
  }, 100);
957
967
  return () => {
@@ -975,7 +985,7 @@ const vm = (l) => {
975
985
  const a = e, s = ca(), l = He.findPath(s, u.element).join("-");
976
986
  u.attributes["data-slate-type"] = u.element.type, u.attributes["data-slate-category"] = De.getBlockByType(u.element.type).category, u.attributes["data-slate-path"] = l;
977
987
  const m = De.getBlockByType(u.element.type);
978
- return u.attributes["data-slate-void"] = m.void || void 0, /* @__PURE__ */ A.createElement(a, N({}, u));
988
+ return u.attributes["data-slate-void"] = m.void || void 0, /* @__PURE__ */ A.createElement(a, y({}, u));
979
989
  }, km = (e) => {
980
990
  let u = !1;
981
991
  try {
@@ -1004,7 +1014,7 @@ const vm = (l) => {
1004
1014
  dragNodePath: x,
1005
1015
  dragoverNodePath: _,
1006
1016
  universalElementPath: g,
1007
- activeTab: y
1017
+ activeTab: N
1008
1018
  } = pn(), {
1009
1019
  ElementHover: w,
1010
1020
  ElementSelected: P,
@@ -1016,7 +1026,7 @@ const vm = (l) => {
1016
1026
  let X = He.findPath(l, u.element);
1017
1027
  Ke.equals(X, m.current) ? X = m.current : m.current = X;
1018
1028
  const ge = X.join("-"), q = !!(R && Ke.equals(R, X)), oe = !!(F && Ke.equals(F, X)), ae = !!(x && Ke.equals(x, X)), te = !!(_ && Ke.equals(_, X)), se = R == null ? void 0 : R.join("-").includes(ge), xe = !!(g && Ke.equals(g, X)), ke = V(() => {
1019
- const Te = N({}, u.attributes);
1029
+ const Te = y({}, u.attributes);
1020
1030
  return Te && (Te["data-slate-selected"] = q || void 0, Te["data-slate-hover"] = oe || void 0, Te["data-slate-dragging"] = ae || void 0, Te["data-slate-dragover"] = te || void 0, Te["data-slate-focus"] = se || void 0, Te["data-slate-universal-editing"] = xe || void 0), Te;
1021
1031
  }, [
1022
1032
  ae,
@@ -1039,11 +1049,11 @@ const vm = (l) => {
1039
1049
  } catch (Te) {
1040
1050
  }
1041
1051
  L(null);
1042
- }, [l, a, u.element, y]), V(() => /* @__PURE__ */ A.createElement(
1052
+ }, [l, a, u.element, N]), V(() => /* @__PURE__ */ A.createElement(
1043
1053
  e,
1044
- z(N({}, u), {
1054
+ z(y({}, u), {
1045
1055
  attributes: ke,
1046
- activeTab: y,
1056
+ activeTab: N,
1047
1057
  attributesVariables: ue,
1048
1058
  enabledResponsive: K,
1049
1059
  placeholder: /* @__PURE__ */ A.createElement(A.Fragment, null, O && b && /* @__PURE__ */ A.createElement(
@@ -1094,7 +1104,7 @@ const vm = (l) => {
1094
1104
  Q,
1095
1105
  w,
1096
1106
  P,
1097
- y
1107
+ N
1098
1108
  ]);
1099
1109
  }, wm = /^boolean/gim, Fm = () => class extends yr {
1100
1110
  constructor(a) {
@@ -1333,12 +1343,12 @@ const eg = (e, u) => ss(
1333
1343
  const m = $m(u[l]);
1334
1344
  if (m) {
1335
1345
  const b = new m(s);
1336
- return z(N({}, a), {
1346
+ return z(y({}, a), {
1337
1347
  [l]: b.getValue()
1338
1348
  });
1339
1349
  }
1340
1350
  }
1341
- return z(N({}, a), {
1351
+ return z(y({}, a), {
1342
1352
  [l]: s
1343
1353
  });
1344
1354
  },
@@ -1370,7 +1380,7 @@ hn.exports;
1370
1380
  // See http://html5sec.org/#102, http://html5sec.org/#108, and
1371
1381
  // http://html5sec.org/#133.
1372
1382
  "`": "&#x60;"
1373
- }, y = /&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/, w = /[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, P = /&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g, O = { aacute: "á", Aacute: "Á", abreve: "ă", Abreve: "Ă", ac: "∾", acd: "∿", acE: "∾̳", acirc: "â", Acirc: "Â", acute: "´", acy: "а", Acy: "А", aelig: "æ", AElig: "Æ", af: "⁡", afr: "𝔞", Afr: "𝔄", agrave: "à", Agrave: "À", alefsym: "ℵ", aleph: "ℵ", alpha: "α", Alpha: "Α", amacr: "ā", Amacr: "Ā", amalg: "⨿", amp: "&", AMP: "&", and: "∧", And: "⩓", andand: "⩕", andd: "⩜", andslope: "⩘", andv: "⩚", ang: "∠", ange: "⦤", angle: "∠", angmsd: "∡", angmsdaa: "⦨", angmsdab: "⦩", angmsdac: "⦪", angmsdad: "⦫", angmsdae: "⦬", angmsdaf: "⦭", angmsdag: "⦮", angmsdah: "⦯", angrt: "∟", angrtvb: "⊾", angrtvbd: "⦝", angsph: "∢", angst: "Å", angzarr: "⍼", aogon: "ą", Aogon: "Ą", aopf: "𝕒", Aopf: "𝔸", ap: "≈", apacir: "⩯", ape: "≊", apE: "⩰", apid: "≋", apos: "'", ApplyFunction: "⁡", approx: "≈", approxeq: "≊", aring: "å", Aring: "Å", ascr: "𝒶", Ascr: "𝒜", Assign: "≔", ast: "*", asymp: "≈", asympeq: "≍", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", awconint: "∳", awint: "⨑", backcong: "≌", backepsilon: "϶", backprime: "‵", backsim: "∽", backsimeq: "⋍", Backslash: "∖", Barv: "⫧", barvee: "⊽", barwed: "⌅", Barwed: "⌆", barwedge: "⌅", bbrk: "⎵", bbrktbrk: "⎶", bcong: "≌", bcy: "б", Bcy: "Б", bdquo: "„", becaus: "∵", because: "∵", Because: "∵", bemptyv: "⦰", bepsi: "϶", bernou: "ℬ", Bernoullis: "ℬ", beta: "β", Beta: "Β", beth: "ℶ", between: "≬", bfr: "𝔟", Bfr: "𝔅", bigcap: "⋂", bigcirc: "◯", bigcup: "⋃", bigodot: "⨀", bigoplus: "⨁", bigotimes: "⨂", bigsqcup: "⨆", bigstar: "★", bigtriangledown: "▽", bigtriangleup: "△", biguplus: "⨄", bigvee: "⋁", bigwedge: "⋀", bkarow: "⤍", blacklozenge: "⧫", blacksquare: "▪", blacktriangle: "▴", blacktriangledown: "▾", blacktriangleleft: "◂", blacktriangleright: "▸", blank: "␣", blk12: "▒", blk14: "░", blk34: "▓", block: "█", bne: "=⃥", bnequiv: "≡⃥", bnot: "⌐", bNot: "⫭", bopf: "𝕓", Bopf: "𝔹", bot: "⊥", bottom: "⊥", bowtie: "⋈", boxbox: "⧉", boxdl: "┐", boxdL: "╕", boxDl: "╖", boxDL: "╗", boxdr: "┌", boxdR: "╒", boxDr: "╓", boxDR: "╔", boxh: "─", boxH: "═", boxhd: "┬", boxhD: "╥", boxHd: "╤", boxHD: "╦", boxhu: "┴", boxhU: "╨", boxHu: "╧", boxHU: "╩", boxminus: "⊟", boxplus: "⊞", boxtimes: "⊠", boxul: "┘", boxuL: "╛", boxUl: "╜", boxUL: "╝", boxur: "└", boxuR: "╘", boxUr: "╙", boxUR: "╚", boxv: "│", boxV: "║", boxvh: "┼", boxvH: "╪", boxVh: "╫", boxVH: "╬", boxvl: "┤", boxvL: "╡", boxVl: "╢", boxVL: "╣", boxvr: "├", boxvR: "╞", boxVr: "╟", boxVR: "╠", bprime: "‵", breve: "˘", Breve: "˘", brvbar: "¦", bscr: "𝒷", Bscr: "ℬ", bsemi: "⁏", bsim: "∽", bsime: "⋍", bsol: "\\", bsolb: "⧅", bsolhsub: "⟈", bull: "•", bullet: "•", bump: "≎", bumpe: "≏", bumpE: "⪮", bumpeq: "≏", Bumpeq: "≎", cacute: "ć", Cacute: "Ć", cap: "∩", Cap: "⋒", capand: "⩄", capbrcup: "⩉", capcap: "⩋", capcup: "⩇", capdot: "⩀", CapitalDifferentialD: "ⅅ", caps: "∩︀", caret: "⁁", caron: "ˇ", Cayleys: "ℭ", ccaps: "⩍", ccaron: "č", Ccaron: "Č", ccedil: "ç", Ccedil: "Ç", ccirc: "ĉ", Ccirc: "Ĉ", Cconint: "∰", ccups: "⩌", ccupssm: "⩐", cdot: "ċ", Cdot: "Ċ", cedil: "¸", Cedilla: "¸", cemptyv: "⦲", cent: "¢", centerdot: "·", CenterDot: "·", cfr: "𝔠", Cfr: "ℭ", chcy: "ч", CHcy: "Ч", check: "✓", checkmark: "✓", chi: "χ", Chi: "Χ", cir: "○", circ: "ˆ", circeq: "≗", circlearrowleft: "↺", circlearrowright: "↻", circledast: "⊛", circledcirc: "⊚", circleddash: "⊝", CircleDot: "⊙", circledR: "®", circledS: "Ⓢ", CircleMinus: "⊖", CirclePlus: "⊕", CircleTimes: "⊗", cire: "≗", cirE: "⧃", cirfnint: "⨐", cirmid: "⫯", cirscir: "⧂", ClockwiseContourIntegral: "∲", CloseCurlyDoubleQuote: "”", CloseCurlyQuote: "’", clubs: "♣", clubsuit: "♣", colon: ":", Colon: "∷", colone: "≔", Colone: "⩴", coloneq: "≔", comma: ",", commat: "@", comp: "∁", compfn: "∘", complement: "∁", complexes: "ℂ", cong: "≅", congdot: "⩭", Congruent: "≡", conint: "∮", Conint: "∯", ContourIntegral: "∮", copf: "𝕔", Copf: "ℂ", coprod: "∐", Coproduct: "∐", copy: "©", COPY: "©", copysr: "℗", CounterClockwiseContourIntegral: "∳", crarr: "↵", cross: "✗", Cross: "⨯", cscr: "𝒸", Cscr: "𝒞", csub: "⫏", csube: "⫑", csup: "⫐", csupe: "⫒", ctdot: "⋯", cudarrl: "⤸", cudarrr: "⤵", cuepr: "⋞", cuesc: "⋟", cularr: "↶", cularrp: "⤽", cup: "∪", Cup: "⋓", cupbrcap: "⩈", cupcap: "⩆", CupCap: "≍", cupcup: "⩊", cupdot: "⊍", cupor: "⩅", cups: "∪︀", curarr: "↷", curarrm: "⤼", curlyeqprec: "⋞", curlyeqsucc: "⋟", curlyvee: "⋎", curlywedge: "⋏", curren: "¤", curvearrowleft: "↶", curvearrowright: "↷", cuvee: "⋎", cuwed: "⋏", cwconint: "∲", cwint: "∱", cylcty: "⌭", dagger: "†", Dagger: "‡", daleth: "ℸ", darr: "↓", dArr: "⇓", Darr: "↡", dash: "‐", dashv: "⊣", Dashv: "⫤", dbkarow: "⤏", dblac: "˝", dcaron: "ď", Dcaron: "Ď", dcy: "д", Dcy: "Д", dd: "ⅆ", DD: "ⅅ", ddagger: "‡", ddarr: "⇊", DDotrahd: "⤑", ddotseq: "⩷", deg: "°", Del: "∇", delta: "δ", Delta: "Δ", demptyv: "⦱", dfisht: "⥿", dfr: "𝔡", Dfr: "𝔇", dHar: "⥥", dharl: "⇃", dharr: "⇂", DiacriticalAcute: "´", DiacriticalDot: "˙", DiacriticalDoubleAcute: "˝", DiacriticalGrave: "`", DiacriticalTilde: "˜", diam: "⋄", diamond: "⋄", Diamond: "⋄", diamondsuit: "♦", diams: "♦", die: "¨", DifferentialD: "ⅆ", digamma: "ϝ", disin: "⋲", div: "÷", divide: "÷", divideontimes: "⋇", divonx: "⋇", djcy: "ђ", DJcy: "Ђ", dlcorn: "⌞", dlcrop: "⌍", dollar: "$", dopf: "𝕕", Dopf: "𝔻", dot: "˙", Dot: "¨", DotDot: "⃜", doteq: "≐", doteqdot: "≑", DotEqual: "≐", dotminus: "∸", dotplus: "∔", dotsquare: "⊡", doublebarwedge: "⌆", DoubleContourIntegral: "∯", DoubleDot: "¨", DoubleDownArrow: "⇓", DoubleLeftArrow: "⇐", DoubleLeftRightArrow: "⇔", DoubleLeftTee: "⫤", DoubleLongLeftArrow: "⟸", DoubleLongLeftRightArrow: "⟺", DoubleLongRightArrow: "⟹", DoubleRightArrow: "⇒", DoubleRightTee: "⊨", DoubleUpArrow: "⇑", DoubleUpDownArrow: "⇕", DoubleVerticalBar: "∥", downarrow: "↓", Downarrow: "⇓", DownArrow: "↓", DownArrowBar: "⤓", DownArrowUpArrow: "⇵", DownBreve: "̑", downdownarrows: "⇊", downharpoonleft: "⇃", downharpoonright: "⇂", DownLeftRightVector: "⥐", DownLeftTeeVector: "⥞", DownLeftVector: "↽", DownLeftVectorBar: "⥖", DownRightTeeVector: "⥟", DownRightVector: "⇁", DownRightVectorBar: "⥗", DownTee: "⊤", DownTeeArrow: "↧", drbkarow: "⤐", drcorn: "⌟", drcrop: "⌌", dscr: "𝒹", Dscr: "𝒟", dscy: "ѕ", DScy: "Ѕ", dsol: "⧶", dstrok: "đ", Dstrok: "Đ", dtdot: "⋱", dtri: "▿", dtrif: "▾", duarr: "⇵", duhar: "⥯", dwangle: "⦦", dzcy: "џ", DZcy: "Џ", dzigrarr: "⟿", eacute: "é", Eacute: "É", easter: "⩮", ecaron: "ě", Ecaron: "Ě", ecir: "≖", ecirc: "ê", Ecirc: "Ê", ecolon: "≕", ecy: "э", Ecy: "Э", eDDot: "⩷", edot: "ė", eDot: "≑", Edot: "Ė", ee: "ⅇ", efDot: "≒", efr: "𝔢", Efr: "𝔈", eg: "⪚", egrave: "è", Egrave: "È", egs: "⪖", egsdot: "⪘", el: "⪙", Element: "∈", elinters: "⏧", ell: "ℓ", els: "⪕", elsdot: "⪗", emacr: "ē", Emacr: "Ē", empty: "∅", emptyset: "∅", EmptySmallSquare: "◻", emptyv: "∅", EmptyVerySmallSquare: "▫", emsp: " ", emsp13: " ", emsp14: " ", eng: "ŋ", ENG: "Ŋ", ensp: " ", eogon: "ę", Eogon: "Ę", eopf: "𝕖", Eopf: "𝔼", epar: "⋕", eparsl: "⧣", eplus: "⩱", epsi: "ε", epsilon: "ε", Epsilon: "Ε", epsiv: "ϵ", eqcirc: "≖", eqcolon: "≕", eqsim: "≂", eqslantgtr: "⪖", eqslantless: "⪕", Equal: "⩵", equals: "=", EqualTilde: "≂", equest: "≟", Equilibrium: "⇌", equiv: "≡", equivDD: "⩸", eqvparsl: "⧥", erarr: "⥱", erDot: "≓", escr: "ℯ", Escr: "ℰ", esdot: "≐", esim: "≂", Esim: "⩳", eta: "η", Eta: "Η", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", euro: "€", excl: "!", exist: "∃", Exists: "∃", expectation: "ℰ", exponentiale: "ⅇ", ExponentialE: "ⅇ", fallingdotseq: "≒", fcy: "ф", Fcy: "Ф", female: "♀", ffilig: "ffi", fflig: "ff", ffllig: "ffl", ffr: "𝔣", Ffr: "𝔉", filig: "fi", FilledSmallSquare: "◼", FilledVerySmallSquare: "▪", fjlig: "fj", flat: "♭", fllig: "fl", fltns: "▱", fnof: "ƒ", fopf: "𝕗", Fopf: "𝔽", forall: "∀", ForAll: "∀", fork: "⋔", forkv: "⫙", Fouriertrf: "ℱ", fpartint: "⨍", frac12: "½", frac13: "⅓", frac14: "¼", frac15: "⅕", frac16: "⅙", frac18: "⅛", frac23: "⅔", frac25: "⅖", frac34: "¾", frac35: "⅗", frac38: "⅜", frac45: "⅘", frac56: "⅚", frac58: "⅝", frac78: "⅞", frasl: "⁄", frown: "⌢", fscr: "𝒻", Fscr: "ℱ", gacute: "ǵ", gamma: "γ", Gamma: "Γ", gammad: "ϝ", Gammad: "Ϝ", gap: "⪆", gbreve: "ğ", Gbreve: "Ğ", Gcedil: "Ģ", gcirc: "ĝ", Gcirc: "Ĝ", gcy: "г", Gcy: "Г", gdot: "ġ", Gdot: "Ġ", ge: "≥", gE: "≧", gel: "⋛", gEl: "⪌", geq: "≥", geqq: "≧", geqslant: "⩾", ges: "⩾", gescc: "⪩", gesdot: "⪀", gesdoto: "⪂", gesdotol: "⪄", gesl: "⋛︀", gesles: "⪔", gfr: "𝔤", Gfr: "𝔊", gg: "≫", Gg: "⋙", ggg: "⋙", gimel: "ℷ", gjcy: "ѓ", GJcy: "Ѓ", gl: "≷", gla: "⪥", glE: "⪒", glj: "⪤", gnap: "⪊", gnapprox: "⪊", gne: "⪈", gnE: "≩", gneq: "⪈", gneqq: "≩", gnsim: "⋧", gopf: "𝕘", Gopf: "𝔾", grave: "`", GreaterEqual: "≥", GreaterEqualLess: "⋛", GreaterFullEqual: "≧", GreaterGreater: "⪢", GreaterLess: "≷", GreaterSlantEqual: "⩾", GreaterTilde: "≳", gscr: "ℊ", Gscr: "𝒢", gsim: "≳", gsime: "⪎", gsiml: "⪐", gt: ">", Gt: "≫", GT: ">", gtcc: "⪧", gtcir: "⩺", gtdot: "⋗", gtlPar: "⦕", gtquest: "⩼", gtrapprox: "⪆", gtrarr: "⥸", gtrdot: "⋗", gtreqless: "⋛", gtreqqless: "⪌", gtrless: "≷", gtrsim: "≳", gvertneqq: "≩︀", gvnE: "≩︀", Hacek: "ˇ", hairsp: " ", half: "½", hamilt: "ℋ", hardcy: "ъ", HARDcy: "Ъ", harr: "↔", hArr: "⇔", harrcir: "⥈", harrw: "↭", Hat: "^", hbar: "ℏ", hcirc: "ĥ", Hcirc: "Ĥ", hearts: "♥", heartsuit: "♥", hellip: "…", hercon: "⊹", hfr: "𝔥", Hfr: "ℌ", HilbertSpace: "ℋ", hksearow: "⤥", hkswarow: "⤦", hoarr: "⇿", homtht: "∻", hookleftarrow: "↩", hookrightarrow: "↪", hopf: "𝕙", Hopf: "ℍ", horbar: "―", HorizontalLine: "─", hscr: "𝒽", Hscr: "ℋ", hslash: "ℏ", hstrok: "ħ", Hstrok: "Ħ", HumpDownHump: "≎", HumpEqual: "≏", hybull: "⁃", hyphen: "‐", iacute: "í", Iacute: "Í", ic: "⁣", icirc: "î", Icirc: "Î", icy: "и", Icy: "И", Idot: "İ", iecy: "е", IEcy: "Е", iexcl: "¡", iff: "⇔", ifr: "𝔦", Ifr: "ℑ", igrave: "ì", Igrave: "Ì", ii: "ⅈ", iiiint: "⨌", iiint: "∭", iinfin: "⧜", iiota: "℩", ijlig: "ij", IJlig: "IJ", Im: "ℑ", imacr: "ī", Imacr: "Ī", image: "ℑ", ImaginaryI: "ⅈ", imagline: "ℐ", imagpart: "ℑ", imath: "ı", imof: "⊷", imped: "Ƶ", Implies: "⇒", in: "∈", incare: "℅", infin: "∞", infintie: "⧝", inodot: "ı", int: "∫", Int: "∬", intcal: "⊺", integers: "ℤ", Integral: "∫", intercal: "⊺", Intersection: "⋂", intlarhk: "⨗", intprod: "⨼", InvisibleComma: "⁣", InvisibleTimes: "⁢", iocy: "ё", IOcy: "Ё", iogon: "į", Iogon: "Į", iopf: "𝕚", Iopf: "𝕀", iota: "ι", Iota: "Ι", iprod: "⨼", iquest: "¿", iscr: "𝒾", Iscr: "ℐ", isin: "∈", isindot: "⋵", isinE: "⋹", isins: "⋴", isinsv: "⋳", isinv: "∈", it: "⁢", itilde: "ĩ", Itilde: "Ĩ", iukcy: "і", Iukcy: "І", iuml: "ï", Iuml: "Ï", jcirc: "ĵ", Jcirc: "Ĵ", jcy: "й", Jcy: "Й", jfr: "𝔧", Jfr: "𝔍", jmath: "ȷ", jopf: "𝕛", Jopf: "𝕁", jscr: "𝒿", Jscr: "𝒥", jsercy: "ј", Jsercy: "Ј", jukcy: "є", Jukcy: "Є", kappa: "κ", Kappa: "Κ", kappav: "ϰ", kcedil: "ķ", Kcedil: "Ķ", kcy: "к", Kcy: "К", kfr: "𝔨", Kfr: "𝔎", kgreen: "ĸ", khcy: "х", KHcy: "Х", kjcy: "ќ", KJcy: "Ќ", kopf: "𝕜", Kopf: "𝕂", kscr: "𝓀", Kscr: "𝒦", lAarr: "⇚", lacute: "ĺ", Lacute: "Ĺ", laemptyv: "⦴", lagran: "ℒ", lambda: "λ", Lambda: "Λ", lang: "⟨", Lang: "⟪", langd: "⦑", langle: "⟨", lap: "⪅", Laplacetrf: "ℒ", laquo: "«", larr: "←", lArr: "⇐", Larr: "↞", larrb: "⇤", larrbfs: "⤟", larrfs: "⤝", larrhk: "↩", larrlp: "↫", larrpl: "⤹", larrsim: "⥳", larrtl: "↢", lat: "⪫", latail: "⤙", lAtail: "⤛", late: "⪭", lates: "⪭︀", lbarr: "⤌", lBarr: "⤎", lbbrk: "❲", lbrace: "{", lbrack: "[", lbrke: "⦋", lbrksld: "⦏", lbrkslu: "⦍", lcaron: "ľ", Lcaron: "Ľ", lcedil: "ļ", Lcedil: "Ļ", lceil: "⌈", lcub: "{", lcy: "л", Lcy: "Л", ldca: "⤶", ldquo: "“", ldquor: "„", ldrdhar: "⥧", ldrushar: "⥋", ldsh: "↲", le: "≤", lE: "≦", LeftAngleBracket: "⟨", leftarrow: "←", Leftarrow: "⇐", LeftArrow: "←", LeftArrowBar: "⇤", LeftArrowRightArrow: "⇆", leftarrowtail: "↢", LeftCeiling: "⌈", LeftDoubleBracket: "⟦", LeftDownTeeVector: "⥡", LeftDownVector: "⇃", LeftDownVectorBar: "⥙", LeftFloor: "⌊", leftharpoondown: "↽", leftharpoonup: "↼", leftleftarrows: "⇇", leftrightarrow: "↔", Leftrightarrow: "⇔", LeftRightArrow: "↔", leftrightarrows: "⇆", leftrightharpoons: "⇋", leftrightsquigarrow: "↭", LeftRightVector: "⥎", LeftTee: "⊣", LeftTeeArrow: "↤", LeftTeeVector: "⥚", leftthreetimes: "⋋", LeftTriangle: "⊲", LeftTriangleBar: "⧏", LeftTriangleEqual: "⊴", LeftUpDownVector: "⥑", LeftUpTeeVector: "⥠", LeftUpVector: "↿", LeftUpVectorBar: "⥘", LeftVector: "↼", LeftVectorBar: "⥒", leg: "⋚", lEg: "⪋", leq: "≤", leqq: "≦", leqslant: "⩽", les: "⩽", lescc: "⪨", lesdot: "⩿", lesdoto: "⪁", lesdotor: "⪃", lesg: "⋚︀", lesges: "⪓", lessapprox: "⪅", lessdot: "⋖", lesseqgtr: "⋚", lesseqqgtr: "⪋", LessEqualGreater: "⋚", LessFullEqual: "≦", LessGreater: "≶", lessgtr: "≶", LessLess: "⪡", lesssim: "≲", LessSlantEqual: "⩽", LessTilde: "≲", lfisht: "⥼", lfloor: "⌊", lfr: "𝔩", Lfr: "𝔏", lg: "≶", lgE: "⪑", lHar: "⥢", lhard: "↽", lharu: "↼", lharul: "⥪", lhblk: "▄", ljcy: "љ", LJcy: "Љ", ll: "≪", Ll: "⋘", llarr: "⇇", llcorner: "⌞", Lleftarrow: "⇚", llhard: "⥫", lltri: "◺", lmidot: "ŀ", Lmidot: "Ŀ", lmoust: "⎰", lmoustache: "⎰", lnap: "⪉", lnapprox: "⪉", lne: "⪇", lnE: "≨", lneq: "⪇", lneqq: "≨", lnsim: "⋦", loang: "⟬", loarr: "⇽", lobrk: "⟦", longleftarrow: "⟵", Longleftarrow: "⟸", LongLeftArrow: "⟵", longleftrightarrow: "⟷", Longleftrightarrow: "⟺", LongLeftRightArrow: "⟷", longmapsto: "⟼", longrightarrow: "⟶", Longrightarrow: "⟹", LongRightArrow: "⟶", looparrowleft: "↫", looparrowright: "↬", lopar: "⦅", lopf: "𝕝", Lopf: "𝕃", loplus: "⨭", lotimes: "⨴", lowast: "∗", lowbar: "_", LowerLeftArrow: "↙", LowerRightArrow: "↘", loz: "◊", lozenge: "◊", lozf: "⧫", lpar: "(", lparlt: "⦓", lrarr: "⇆", lrcorner: "⌟", lrhar: "⇋", lrhard: "⥭", lrm: "‎", lrtri: "⊿", lsaquo: "‹", lscr: "𝓁", Lscr: "ℒ", lsh: "↰", Lsh: "↰", lsim: "≲", lsime: "⪍", lsimg: "⪏", lsqb: "[", lsquo: "‘", lsquor: "‚", lstrok: "ł", Lstrok: "Ł", lt: "<", Lt: "≪", LT: "<", ltcc: "⪦", ltcir: "⩹", ltdot: "⋖", lthree: "⋋", ltimes: "⋉", ltlarr: "⥶", ltquest: "⩻", ltri: "◃", ltrie: "⊴", ltrif: "◂", ltrPar: "⦖", lurdshar: "⥊", luruhar: "⥦", lvertneqq: "≨︀", lvnE: "≨︀", macr: "¯", male: "♂", malt: "✠", maltese: "✠", map: "↦", Map: "⤅", mapsto: "↦", mapstodown: "↧", mapstoleft: "↤", mapstoup: "↥", marker: "▮", mcomma: "⨩", mcy: "м", Mcy: "М", mdash: "—", mDDot: "∺", measuredangle: "∡", MediumSpace: " ", Mellintrf: "ℳ", mfr: "𝔪", Mfr: "𝔐", mho: "℧", micro: "µ", mid: "∣", midast: "*", midcir: "⫰", middot: "·", minus: "−", minusb: "⊟", minusd: "∸", minusdu: "⨪", MinusPlus: "∓", mlcp: "⫛", mldr: "…", mnplus: "∓", models: "⊧", mopf: "𝕞", Mopf: "𝕄", mp: "∓", mscr: "𝓂", Mscr: "ℳ", mstpos: "∾", mu: "μ", Mu: "Μ", multimap: "⊸", mumap: "⊸", nabla: "∇", nacute: "ń", Nacute: "Ń", nang: "∠⃒", nap: "≉", napE: "⩰̸", napid: "≋̸", napos: "ʼn", napprox: "≉", natur: "♮", natural: "♮", naturals: "ℕ", nbsp: " ", nbump: "≎̸", nbumpe: "≏̸", ncap: "⩃", ncaron: "ň", Ncaron: "Ň", ncedil: "ņ", Ncedil: "Ņ", ncong: "≇", ncongdot: "⩭̸", ncup: "⩂", ncy: "н", Ncy: "Н", ndash: "–", ne: "≠", nearhk: "⤤", nearr: "↗", neArr: "⇗", nearrow: "↗", nedot: "≐̸", NegativeMediumSpace: "​", NegativeThickSpace: "​", NegativeThinSpace: "​", NegativeVeryThinSpace: "​", nequiv: "≢", nesear: "⤨", nesim: "≂̸", NestedGreaterGreater: "≫", NestedLessLess: "≪", NewLine: `
1383
+ }, N = /&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/, w = /[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, P = /&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g, O = { aacute: "á", Aacute: "Á", abreve: "ă", Abreve: "Ă", ac: "∾", acd: "∿", acE: "∾̳", acirc: "â", Acirc: "Â", acute: "´", acy: "а", Acy: "А", aelig: "æ", AElig: "Æ", af: "⁡", afr: "𝔞", Afr: "𝔄", agrave: "à", Agrave: "À", alefsym: "ℵ", aleph: "ℵ", alpha: "α", Alpha: "Α", amacr: "ā", Amacr: "Ā", amalg: "⨿", amp: "&", AMP: "&", and: "∧", And: "⩓", andand: "⩕", andd: "⩜", andslope: "⩘", andv: "⩚", ang: "∠", ange: "⦤", angle: "∠", angmsd: "∡", angmsdaa: "⦨", angmsdab: "⦩", angmsdac: "⦪", angmsdad: "⦫", angmsdae: "⦬", angmsdaf: "⦭", angmsdag: "⦮", angmsdah: "⦯", angrt: "∟", angrtvb: "⊾", angrtvbd: "⦝", angsph: "∢", angst: "Å", angzarr: "⍼", aogon: "ą", Aogon: "Ą", aopf: "𝕒", Aopf: "𝔸", ap: "≈", apacir: "⩯", ape: "≊", apE: "⩰", apid: "≋", apos: "'", ApplyFunction: "⁡", approx: "≈", approxeq: "≊", aring: "å", Aring: "Å", ascr: "𝒶", Ascr: "𝒜", Assign: "≔", ast: "*", asymp: "≈", asympeq: "≍", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", awconint: "∳", awint: "⨑", backcong: "≌", backepsilon: "϶", backprime: "‵", backsim: "∽", backsimeq: "⋍", Backslash: "∖", Barv: "⫧", barvee: "⊽", barwed: "⌅", Barwed: "⌆", barwedge: "⌅", bbrk: "⎵", bbrktbrk: "⎶", bcong: "≌", bcy: "б", Bcy: "Б", bdquo: "„", becaus: "∵", because: "∵", Because: "∵", bemptyv: "⦰", bepsi: "϶", bernou: "ℬ", Bernoullis: "ℬ", beta: "β", Beta: "Β", beth: "ℶ", between: "≬", bfr: "𝔟", Bfr: "𝔅", bigcap: "⋂", bigcirc: "◯", bigcup: "⋃", bigodot: "⨀", bigoplus: "⨁", bigotimes: "⨂", bigsqcup: "⨆", bigstar: "★", bigtriangledown: "▽", bigtriangleup: "△", biguplus: "⨄", bigvee: "⋁", bigwedge: "⋀", bkarow: "⤍", blacklozenge: "⧫", blacksquare: "▪", blacktriangle: "▴", blacktriangledown: "▾", blacktriangleleft: "◂", blacktriangleright: "▸", blank: "␣", blk12: "▒", blk14: "░", blk34: "▓", block: "█", bne: "=⃥", bnequiv: "≡⃥", bnot: "⌐", bNot: "⫭", bopf: "𝕓", Bopf: "𝔹", bot: "⊥", bottom: "⊥", bowtie: "⋈", boxbox: "⧉", boxdl: "┐", boxdL: "╕", boxDl: "╖", boxDL: "╗", boxdr: "┌", boxdR: "╒", boxDr: "╓", boxDR: "╔", boxh: "─", boxH: "═", boxhd: "┬", boxhD: "╥", boxHd: "╤", boxHD: "╦", boxhu: "┴", boxhU: "╨", boxHu: "╧", boxHU: "╩", boxminus: "⊟", boxplus: "⊞", boxtimes: "⊠", boxul: "┘", boxuL: "╛", boxUl: "╜", boxUL: "╝", boxur: "└", boxuR: "╘", boxUr: "╙", boxUR: "╚", boxv: "│", boxV: "║", boxvh: "┼", boxvH: "╪", boxVh: "╫", boxVH: "╬", boxvl: "┤", boxvL: "╡", boxVl: "╢", boxVL: "╣", boxvr: "├", boxvR: "╞", boxVr: "╟", boxVR: "╠", bprime: "‵", breve: "˘", Breve: "˘", brvbar: "¦", bscr: "𝒷", Bscr: "ℬ", bsemi: "⁏", bsim: "∽", bsime: "⋍", bsol: "\\", bsolb: "⧅", bsolhsub: "⟈", bull: "•", bullet: "•", bump: "≎", bumpe: "≏", bumpE: "⪮", bumpeq: "≏", Bumpeq: "≎", cacute: "ć", Cacute: "Ć", cap: "∩", Cap: "⋒", capand: "⩄", capbrcup: "⩉", capcap: "⩋", capcup: "⩇", capdot: "⩀", CapitalDifferentialD: "ⅅ", caps: "∩︀", caret: "⁁", caron: "ˇ", Cayleys: "ℭ", ccaps: "⩍", ccaron: "č", Ccaron: "Č", ccedil: "ç", Ccedil: "Ç", ccirc: "ĉ", Ccirc: "Ĉ", Cconint: "∰", ccups: "⩌", ccupssm: "⩐", cdot: "ċ", Cdot: "Ċ", cedil: "¸", Cedilla: "¸", cemptyv: "⦲", cent: "¢", centerdot: "·", CenterDot: "·", cfr: "𝔠", Cfr: "ℭ", chcy: "ч", CHcy: "Ч", check: "✓", checkmark: "✓", chi: "χ", Chi: "Χ", cir: "○", circ: "ˆ", circeq: "≗", circlearrowleft: "↺", circlearrowright: "↻", circledast: "⊛", circledcirc: "⊚", circleddash: "⊝", CircleDot: "⊙", circledR: "®", circledS: "Ⓢ", CircleMinus: "⊖", CirclePlus: "⊕", CircleTimes: "⊗", cire: "≗", cirE: "⧃", cirfnint: "⨐", cirmid: "⫯", cirscir: "⧂", ClockwiseContourIntegral: "∲", CloseCurlyDoubleQuote: "”", CloseCurlyQuote: "’", clubs: "♣", clubsuit: "♣", colon: ":", Colon: "∷", colone: "≔", Colone: "⩴", coloneq: "≔", comma: ",", commat: "@", comp: "∁", compfn: "∘", complement: "∁", complexes: "ℂ", cong: "≅", congdot: "⩭", Congruent: "≡", conint: "∮", Conint: "∯", ContourIntegral: "∮", copf: "𝕔", Copf: "ℂ", coprod: "∐", Coproduct: "∐", copy: "©", COPY: "©", copysr: "℗", CounterClockwiseContourIntegral: "∳", crarr: "↵", cross: "✗", Cross: "⨯", cscr: "𝒸", Cscr: "𝒞", csub: "⫏", csube: "⫑", csup: "⫐", csupe: "⫒", ctdot: "⋯", cudarrl: "⤸", cudarrr: "⤵", cuepr: "⋞", cuesc: "⋟", cularr: "↶", cularrp: "⤽", cup: "∪", Cup: "⋓", cupbrcap: "⩈", cupcap: "⩆", CupCap: "≍", cupcup: "⩊", cupdot: "⊍", cupor: "⩅", cups: "∪︀", curarr: "↷", curarrm: "⤼", curlyeqprec: "⋞", curlyeqsucc: "⋟", curlyvee: "⋎", curlywedge: "⋏", curren: "¤", curvearrowleft: "↶", curvearrowright: "↷", cuvee: "⋎", cuwed: "⋏", cwconint: "∲", cwint: "∱", cylcty: "⌭", dagger: "†", Dagger: "‡", daleth: "ℸ", darr: "↓", dArr: "⇓", Darr: "↡", dash: "‐", dashv: "⊣", Dashv: "⫤", dbkarow: "⤏", dblac: "˝", dcaron: "ď", Dcaron: "Ď", dcy: "д", Dcy: "Д", dd: "ⅆ", DD: "ⅅ", ddagger: "‡", ddarr: "⇊", DDotrahd: "⤑", ddotseq: "⩷", deg: "°", Del: "∇", delta: "δ", Delta: "Δ", demptyv: "⦱", dfisht: "⥿", dfr: "𝔡", Dfr: "𝔇", dHar: "⥥", dharl: "⇃", dharr: "⇂", DiacriticalAcute: "´", DiacriticalDot: "˙", DiacriticalDoubleAcute: "˝", DiacriticalGrave: "`", DiacriticalTilde: "˜", diam: "⋄", diamond: "⋄", Diamond: "⋄", diamondsuit: "♦", diams: "♦", die: "¨", DifferentialD: "ⅆ", digamma: "ϝ", disin: "⋲", div: "÷", divide: "÷", divideontimes: "⋇", divonx: "⋇", djcy: "ђ", DJcy: "Ђ", dlcorn: "⌞", dlcrop: "⌍", dollar: "$", dopf: "𝕕", Dopf: "𝔻", dot: "˙", Dot: "¨", DotDot: "⃜", doteq: "≐", doteqdot: "≑", DotEqual: "≐", dotminus: "∸", dotplus: "∔", dotsquare: "⊡", doublebarwedge: "⌆", DoubleContourIntegral: "∯", DoubleDot: "¨", DoubleDownArrow: "⇓", DoubleLeftArrow: "⇐", DoubleLeftRightArrow: "⇔", DoubleLeftTee: "⫤", DoubleLongLeftArrow: "⟸", DoubleLongLeftRightArrow: "⟺", DoubleLongRightArrow: "⟹", DoubleRightArrow: "⇒", DoubleRightTee: "⊨", DoubleUpArrow: "⇑", DoubleUpDownArrow: "⇕", DoubleVerticalBar: "∥", downarrow: "↓", Downarrow: "⇓", DownArrow: "↓", DownArrowBar: "⤓", DownArrowUpArrow: "⇵", DownBreve: "̑", downdownarrows: "⇊", downharpoonleft: "⇃", downharpoonright: "⇂", DownLeftRightVector: "⥐", DownLeftTeeVector: "⥞", DownLeftVector: "↽", DownLeftVectorBar: "⥖", DownRightTeeVector: "⥟", DownRightVector: "⇁", DownRightVectorBar: "⥗", DownTee: "⊤", DownTeeArrow: "↧", drbkarow: "⤐", drcorn: "⌟", drcrop: "⌌", dscr: "𝒹", Dscr: "𝒟", dscy: "ѕ", DScy: "Ѕ", dsol: "⧶", dstrok: "đ", Dstrok: "Đ", dtdot: "⋱", dtri: "▿", dtrif: "▾", duarr: "⇵", duhar: "⥯", dwangle: "⦦", dzcy: "џ", DZcy: "Џ", dzigrarr: "⟿", eacute: "é", Eacute: "É", easter: "⩮", ecaron: "ě", Ecaron: "Ě", ecir: "≖", ecirc: "ê", Ecirc: "Ê", ecolon: "≕", ecy: "э", Ecy: "Э", eDDot: "⩷", edot: "ė", eDot: "≑", Edot: "Ė", ee: "ⅇ", efDot: "≒", efr: "𝔢", Efr: "𝔈", eg: "⪚", egrave: "è", Egrave: "È", egs: "⪖", egsdot: "⪘", el: "⪙", Element: "∈", elinters: "⏧", ell: "ℓ", els: "⪕", elsdot: "⪗", emacr: "ē", Emacr: "Ē", empty: "∅", emptyset: "∅", EmptySmallSquare: "◻", emptyv: "∅", EmptyVerySmallSquare: "▫", emsp: " ", emsp13: " ", emsp14: " ", eng: "ŋ", ENG: "Ŋ", ensp: " ", eogon: "ę", Eogon: "Ę", eopf: "𝕖", Eopf: "𝔼", epar: "⋕", eparsl: "⧣", eplus: "⩱", epsi: "ε", epsilon: "ε", Epsilon: "Ε", epsiv: "ϵ", eqcirc: "≖", eqcolon: "≕", eqsim: "≂", eqslantgtr: "⪖", eqslantless: "⪕", Equal: "⩵", equals: "=", EqualTilde: "≂", equest: "≟", Equilibrium: "⇌", equiv: "≡", equivDD: "⩸", eqvparsl: "⧥", erarr: "⥱", erDot: "≓", escr: "ℯ", Escr: "ℰ", esdot: "≐", esim: "≂", Esim: "⩳", eta: "η", Eta: "Η", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", euro: "€", excl: "!", exist: "∃", Exists: "∃", expectation: "ℰ", exponentiale: "ⅇ", ExponentialE: "ⅇ", fallingdotseq: "≒", fcy: "ф", Fcy: "Ф", female: "♀", ffilig: "ffi", fflig: "ff", ffllig: "ffl", ffr: "𝔣", Ffr: "𝔉", filig: "fi", FilledSmallSquare: "◼", FilledVerySmallSquare: "▪", fjlig: "fj", flat: "♭", fllig: "fl", fltns: "▱", fnof: "ƒ", fopf: "𝕗", Fopf: "𝔽", forall: "∀", ForAll: "∀", fork: "⋔", forkv: "⫙", Fouriertrf: "ℱ", fpartint: "⨍", frac12: "½", frac13: "⅓", frac14: "¼", frac15: "⅕", frac16: "⅙", frac18: "⅛", frac23: "⅔", frac25: "⅖", frac34: "¾", frac35: "⅗", frac38: "⅜", frac45: "⅘", frac56: "⅚", frac58: "⅝", frac78: "⅞", frasl: "⁄", frown: "⌢", fscr: "𝒻", Fscr: "ℱ", gacute: "ǵ", gamma: "γ", Gamma: "Γ", gammad: "ϝ", Gammad: "Ϝ", gap: "⪆", gbreve: "ğ", Gbreve: "Ğ", Gcedil: "Ģ", gcirc: "ĝ", Gcirc: "Ĝ", gcy: "г", Gcy: "Г", gdot: "ġ", Gdot: "Ġ", ge: "≥", gE: "≧", gel: "⋛", gEl: "⪌", geq: "≥", geqq: "≧", geqslant: "⩾", ges: "⩾", gescc: "⪩", gesdot: "⪀", gesdoto: "⪂", gesdotol: "⪄", gesl: "⋛︀", gesles: "⪔", gfr: "𝔤", Gfr: "𝔊", gg: "≫", Gg: "⋙", ggg: "⋙", gimel: "ℷ", gjcy: "ѓ", GJcy: "Ѓ", gl: "≷", gla: "⪥", glE: "⪒", glj: "⪤", gnap: "⪊", gnapprox: "⪊", gne: "⪈", gnE: "≩", gneq: "⪈", gneqq: "≩", gnsim: "⋧", gopf: "𝕘", Gopf: "𝔾", grave: "`", GreaterEqual: "≥", GreaterEqualLess: "⋛", GreaterFullEqual: "≧", GreaterGreater: "⪢", GreaterLess: "≷", GreaterSlantEqual: "⩾", GreaterTilde: "≳", gscr: "ℊ", Gscr: "𝒢", gsim: "≳", gsime: "⪎", gsiml: "⪐", gt: ">", Gt: "≫", GT: ">", gtcc: "⪧", gtcir: "⩺", gtdot: "⋗", gtlPar: "⦕", gtquest: "⩼", gtrapprox: "⪆", gtrarr: "⥸", gtrdot: "⋗", gtreqless: "⋛", gtreqqless: "⪌", gtrless: "≷", gtrsim: "≳", gvertneqq: "≩︀", gvnE: "≩︀", Hacek: "ˇ", hairsp: " ", half: "½", hamilt: "ℋ", hardcy: "ъ", HARDcy: "Ъ", harr: "↔", hArr: "⇔", harrcir: "⥈", harrw: "↭", Hat: "^", hbar: "ℏ", hcirc: "ĥ", Hcirc: "Ĥ", hearts: "♥", heartsuit: "♥", hellip: "…", hercon: "⊹", hfr: "𝔥", Hfr: "ℌ", HilbertSpace: "ℋ", hksearow: "⤥", hkswarow: "⤦", hoarr: "⇿", homtht: "∻", hookleftarrow: "↩", hookrightarrow: "↪", hopf: "𝕙", Hopf: "ℍ", horbar: "―", HorizontalLine: "─", hscr: "𝒽", Hscr: "ℋ", hslash: "ℏ", hstrok: "ħ", Hstrok: "Ħ", HumpDownHump: "≎", HumpEqual: "≏", hybull: "⁃", hyphen: "‐", iacute: "í", Iacute: "Í", ic: "⁣", icirc: "î", Icirc: "Î", icy: "и", Icy: "И", Idot: "İ", iecy: "е", IEcy: "Е", iexcl: "¡", iff: "⇔", ifr: "𝔦", Ifr: "ℑ", igrave: "ì", Igrave: "Ì", ii: "ⅈ", iiiint: "⨌", iiint: "∭", iinfin: "⧜", iiota: "℩", ijlig: "ij", IJlig: "IJ", Im: "ℑ", imacr: "ī", Imacr: "Ī", image: "ℑ", ImaginaryI: "ⅈ", imagline: "ℐ", imagpart: "ℑ", imath: "ı", imof: "⊷", imped: "Ƶ", Implies: "⇒", in: "∈", incare: "℅", infin: "∞", infintie: "⧝", inodot: "ı", int: "∫", Int: "∬", intcal: "⊺", integers: "ℤ", Integral: "∫", intercal: "⊺", Intersection: "⋂", intlarhk: "⨗", intprod: "⨼", InvisibleComma: "⁣", InvisibleTimes: "⁢", iocy: "ё", IOcy: "Ё", iogon: "į", Iogon: "Į", iopf: "𝕚", Iopf: "𝕀", iota: "ι", Iota: "Ι", iprod: "⨼", iquest: "¿", iscr: "𝒾", Iscr: "ℐ", isin: "∈", isindot: "⋵", isinE: "⋹", isins: "⋴", isinsv: "⋳", isinv: "∈", it: "⁢", itilde: "ĩ", Itilde: "Ĩ", iukcy: "і", Iukcy: "І", iuml: "ï", Iuml: "Ï", jcirc: "ĵ", Jcirc: "Ĵ", jcy: "й", Jcy: "Й", jfr: "𝔧", Jfr: "𝔍", jmath: "ȷ", jopf: "𝕛", Jopf: "𝕁", jscr: "𝒿", Jscr: "𝒥", jsercy: "ј", Jsercy: "Ј", jukcy: "є", Jukcy: "Є", kappa: "κ", Kappa: "Κ", kappav: "ϰ", kcedil: "ķ", Kcedil: "Ķ", kcy: "к", Kcy: "К", kfr: "𝔨", Kfr: "𝔎", kgreen: "ĸ", khcy: "х", KHcy: "Х", kjcy: "ќ", KJcy: "Ќ", kopf: "𝕜", Kopf: "𝕂", kscr: "𝓀", Kscr: "𝒦", lAarr: "⇚", lacute: "ĺ", Lacute: "Ĺ", laemptyv: "⦴", lagran: "ℒ", lambda: "λ", Lambda: "Λ", lang: "⟨", Lang: "⟪", langd: "⦑", langle: "⟨", lap: "⪅", Laplacetrf: "ℒ", laquo: "«", larr: "←", lArr: "⇐", Larr: "↞", larrb: "⇤", larrbfs: "⤟", larrfs: "⤝", larrhk: "↩", larrlp: "↫", larrpl: "⤹", larrsim: "⥳", larrtl: "↢", lat: "⪫", latail: "⤙", lAtail: "⤛", late: "⪭", lates: "⪭︀", lbarr: "⤌", lBarr: "⤎", lbbrk: "❲", lbrace: "{", lbrack: "[", lbrke: "⦋", lbrksld: "⦏", lbrkslu: "⦍", lcaron: "ľ", Lcaron: "Ľ", lcedil: "ļ", Lcedil: "Ļ", lceil: "⌈", lcub: "{", lcy: "л", Lcy: "Л", ldca: "⤶", ldquo: "“", ldquor: "„", ldrdhar: "⥧", ldrushar: "⥋", ldsh: "↲", le: "≤", lE: "≦", LeftAngleBracket: "⟨", leftarrow: "←", Leftarrow: "⇐", LeftArrow: "←", LeftArrowBar: "⇤", LeftArrowRightArrow: "⇆", leftarrowtail: "↢", LeftCeiling: "⌈", LeftDoubleBracket: "⟦", LeftDownTeeVector: "⥡", LeftDownVector: "⇃", LeftDownVectorBar: "⥙", LeftFloor: "⌊", leftharpoondown: "↽", leftharpoonup: "↼", leftleftarrows: "⇇", leftrightarrow: "↔", Leftrightarrow: "⇔", LeftRightArrow: "↔", leftrightarrows: "⇆", leftrightharpoons: "⇋", leftrightsquigarrow: "↭", LeftRightVector: "⥎", LeftTee: "⊣", LeftTeeArrow: "↤", LeftTeeVector: "⥚", leftthreetimes: "⋋", LeftTriangle: "⊲", LeftTriangleBar: "⧏", LeftTriangleEqual: "⊴", LeftUpDownVector: "⥑", LeftUpTeeVector: "⥠", LeftUpVector: "↿", LeftUpVectorBar: "⥘", LeftVector: "↼", LeftVectorBar: "⥒", leg: "⋚", lEg: "⪋", leq: "≤", leqq: "≦", leqslant: "⩽", les: "⩽", lescc: "⪨", lesdot: "⩿", lesdoto: "⪁", lesdotor: "⪃", lesg: "⋚︀", lesges: "⪓", lessapprox: "⪅", lessdot: "⋖", lesseqgtr: "⋚", lesseqqgtr: "⪋", LessEqualGreater: "⋚", LessFullEqual: "≦", LessGreater: "≶", lessgtr: "≶", LessLess: "⪡", lesssim: "≲", LessSlantEqual: "⩽", LessTilde: "≲", lfisht: "⥼", lfloor: "⌊", lfr: "𝔩", Lfr: "𝔏", lg: "≶", lgE: "⪑", lHar: "⥢", lhard: "↽", lharu: "↼", lharul: "⥪", lhblk: "▄", ljcy: "љ", LJcy: "Љ", ll: "≪", Ll: "⋘", llarr: "⇇", llcorner: "⌞", Lleftarrow: "⇚", llhard: "⥫", lltri: "◺", lmidot: "ŀ", Lmidot: "Ŀ", lmoust: "⎰", lmoustache: "⎰", lnap: "⪉", lnapprox: "⪉", lne: "⪇", lnE: "≨", lneq: "⪇", lneqq: "≨", lnsim: "⋦", loang: "⟬", loarr: "⇽", lobrk: "⟦", longleftarrow: "⟵", Longleftarrow: "⟸", LongLeftArrow: "⟵", longleftrightarrow: "⟷", Longleftrightarrow: "⟺", LongLeftRightArrow: "⟷", longmapsto: "⟼", longrightarrow: "⟶", Longrightarrow: "⟹", LongRightArrow: "⟶", looparrowleft: "↫", looparrowright: "↬", lopar: "⦅", lopf: "𝕝", Lopf: "𝕃", loplus: "⨭", lotimes: "⨴", lowast: "∗", lowbar: "_", LowerLeftArrow: "↙", LowerRightArrow: "↘", loz: "◊", lozenge: "◊", lozf: "⧫", lpar: "(", lparlt: "⦓", lrarr: "⇆", lrcorner: "⌟", lrhar: "⇋", lrhard: "⥭", lrm: "‎", lrtri: "⊿", lsaquo: "‹", lscr: "𝓁", Lscr: "ℒ", lsh: "↰", Lsh: "↰", lsim: "≲", lsime: "⪍", lsimg: "⪏", lsqb: "[", lsquo: "‘", lsquor: "‚", lstrok: "ł", Lstrok: "Ł", lt: "<", Lt: "≪", LT: "<", ltcc: "⪦", ltcir: "⩹", ltdot: "⋖", lthree: "⋋", ltimes: "⋉", ltlarr: "⥶", ltquest: "⩻", ltri: "◃", ltrie: "⊴", ltrif: "◂", ltrPar: "⦖", lurdshar: "⥊", luruhar: "⥦", lvertneqq: "≨︀", lvnE: "≨︀", macr: "¯", male: "♂", malt: "✠", maltese: "✠", map: "↦", Map: "⤅", mapsto: "↦", mapstodown: "↧", mapstoleft: "↤", mapstoup: "↥", marker: "▮", mcomma: "⨩", mcy: "м", Mcy: "М", mdash: "—", mDDot: "∺", measuredangle: "∡", MediumSpace: " ", Mellintrf: "ℳ", mfr: "𝔪", Mfr: "𝔐", mho: "℧", micro: "µ", mid: "∣", midast: "*", midcir: "⫰", middot: "·", minus: "−", minusb: "⊟", minusd: "∸", minusdu: "⨪", MinusPlus: "∓", mlcp: "⫛", mldr: "…", mnplus: "∓", models: "⊧", mopf: "𝕞", Mopf: "𝕄", mp: "∓", mscr: "𝓂", Mscr: "ℳ", mstpos: "∾", mu: "μ", Mu: "Μ", multimap: "⊸", mumap: "⊸", nabla: "∇", nacute: "ń", Nacute: "Ń", nang: "∠⃒", nap: "≉", napE: "⩰̸", napid: "≋̸", napos: "ʼn", napprox: "≉", natur: "♮", natural: "♮", naturals: "ℕ", nbsp: " ", nbump: "≎̸", nbumpe: "≏̸", ncap: "⩃", ncaron: "ň", Ncaron: "Ň", ncedil: "ņ", Ncedil: "Ņ", ncong: "≇", ncongdot: "⩭̸", ncup: "⩂", ncy: "н", Ncy: "Н", ndash: "–", ne: "≠", nearhk: "⤤", nearr: "↗", neArr: "⇗", nearrow: "↗", nedot: "≐̸", NegativeMediumSpace: "​", NegativeThickSpace: "​", NegativeThinSpace: "​", NegativeVeryThinSpace: "​", nequiv: "≢", nesear: "⤨", nesim: "≂̸", NestedGreaterGreater: "≫", NestedLessLess: "≪", NewLine: `
1374
1384
  `, nexist: "∄", nexists: "∄", nfr: "𝔫", Nfr: "𝔑", nge: "≱", ngE: "≧̸", ngeq: "≱", ngeqq: "≧̸", ngeqslant: "⩾̸", nges: "⩾̸", nGg: "⋙̸", ngsim: "≵", ngt: "≯", nGt: "≫⃒", ngtr: "≯", nGtv: "≫̸", nharr: "↮", nhArr: "⇎", nhpar: "⫲", ni: "∋", nis: "⋼", nisd: "⋺", niv: "∋", njcy: "њ", NJcy: "Њ", nlarr: "↚", nlArr: "⇍", nldr: "‥", nle: "≰", nlE: "≦̸", nleftarrow: "↚", nLeftarrow: "⇍", nleftrightarrow: "↮", nLeftrightarrow: "⇎", nleq: "≰", nleqq: "≦̸", nleqslant: "⩽̸", nles: "⩽̸", nless: "≮", nLl: "⋘̸", nlsim: "≴", nlt: "≮", nLt: "≪⃒", nltri: "⋪", nltrie: "⋬", nLtv: "≪̸", nmid: "∤", NoBreak: "⁠", NonBreakingSpace: " ", nopf: "𝕟", Nopf: "ℕ", not: "¬", Not: "⫬", NotCongruent: "≢", NotCupCap: "≭", NotDoubleVerticalBar: "∦", NotElement: "∉", NotEqual: "≠", NotEqualTilde: "≂̸", NotExists: "∄", NotGreater: "≯", NotGreaterEqual: "≱", NotGreaterFullEqual: "≧̸", NotGreaterGreater: "≫̸", NotGreaterLess: "≹", NotGreaterSlantEqual: "⩾̸", NotGreaterTilde: "≵", NotHumpDownHump: "≎̸", NotHumpEqual: "≏̸", notin: "∉", notindot: "⋵̸", notinE: "⋹̸", notinva: "∉", notinvb: "⋷", notinvc: "⋶", NotLeftTriangle: "⋪", NotLeftTriangleBar: "⧏̸", NotLeftTriangleEqual: "⋬", NotLess: "≮", NotLessEqual: "≰", NotLessGreater: "≸", NotLessLess: "≪̸", NotLessSlantEqual: "⩽̸", NotLessTilde: "≴", NotNestedGreaterGreater: "⪢̸", NotNestedLessLess: "⪡̸", notni: "∌", notniva: "∌", notnivb: "⋾", notnivc: "⋽", NotPrecedes: "⊀", NotPrecedesEqual: "⪯̸", NotPrecedesSlantEqual: "⋠", NotReverseElement: "∌", NotRightTriangle: "⋫", NotRightTriangleBar: "⧐̸", NotRightTriangleEqual: "⋭", NotSquareSubset: "⊏̸", NotSquareSubsetEqual: "⋢", NotSquareSuperset: "⊐̸", NotSquareSupersetEqual: "⋣", NotSubset: "⊂⃒", NotSubsetEqual: "⊈", NotSucceeds: "⊁", NotSucceedsEqual: "⪰̸", NotSucceedsSlantEqual: "⋡", NotSucceedsTilde: "≿̸", NotSuperset: "⊃⃒", NotSupersetEqual: "⊉", NotTilde: "≁", NotTildeEqual: "≄", NotTildeFullEqual: "≇", NotTildeTilde: "≉", NotVerticalBar: "∤", npar: "∦", nparallel: "∦", nparsl: "⫽⃥", npart: "∂̸", npolint: "⨔", npr: "⊀", nprcue: "⋠", npre: "⪯̸", nprec: "⊀", npreceq: "⪯̸", nrarr: "↛", nrArr: "⇏", nrarrc: "⤳̸", nrarrw: "↝̸", nrightarrow: "↛", nRightarrow: "⇏", nrtri: "⋫", nrtrie: "⋭", nsc: "⊁", nsccue: "⋡", nsce: "⪰̸", nscr: "𝓃", Nscr: "𝒩", nshortmid: "∤", nshortparallel: "∦", nsim: "≁", nsime: "≄", nsimeq: "≄", nsmid: "∤", nspar: "∦", nsqsube: "⋢", nsqsupe: "⋣", nsub: "⊄", nsube: "⊈", nsubE: "⫅̸", nsubset: "⊂⃒", nsubseteq: "⊈", nsubseteqq: "⫅̸", nsucc: "⊁", nsucceq: "⪰̸", nsup: "⊅", nsupe: "⊉", nsupE: "⫆̸", nsupset: "⊃⃒", nsupseteq: "⊉", nsupseteqq: "⫆̸", ntgl: "≹", ntilde: "ñ", Ntilde: "Ñ", ntlg: "≸", ntriangleleft: "⋪", ntrianglelefteq: "⋬", ntriangleright: "⋫", ntrianglerighteq: "⋭", nu: "ν", Nu: "Ν", num: "#", numero: "№", numsp: " ", nvap: "≍⃒", nvdash: "⊬", nvDash: "⊭", nVdash: "⊮", nVDash: "⊯", nvge: "≥⃒", nvgt: ">⃒", nvHarr: "⤄", nvinfin: "⧞", nvlArr: "⤂", nvle: "≤⃒", nvlt: "<⃒", nvltrie: "⊴⃒", nvrArr: "⤃", nvrtrie: "⊵⃒", nvsim: "∼⃒", nwarhk: "⤣", nwarr: "↖", nwArr: "⇖", nwarrow: "↖", nwnear: "⤧", oacute: "ó", Oacute: "Ó", oast: "⊛", ocir: "⊚", ocirc: "ô", Ocirc: "Ô", ocy: "о", Ocy: "О", odash: "⊝", odblac: "ő", Odblac: "Ő", odiv: "⨸", odot: "⊙", odsold: "⦼", oelig: "œ", OElig: "Œ", ofcir: "⦿", ofr: "𝔬", Ofr: "𝔒", ogon: "˛", ograve: "ò", Ograve: "Ò", ogt: "⧁", ohbar: "⦵", ohm: "Ω", oint: "∮", olarr: "↺", olcir: "⦾", olcross: "⦻", oline: "‾", olt: "⧀", omacr: "ō", Omacr: "Ō", omega: "ω", Omega: "Ω", omicron: "ο", Omicron: "Ο", omid: "⦶", ominus: "⊖", oopf: "𝕠", Oopf: "𝕆", opar: "⦷", OpenCurlyDoubleQuote: "“", OpenCurlyQuote: "‘", operp: "⦹", oplus: "⊕", or: "∨", Or: "⩔", orarr: "↻", ord: "⩝", order: "ℴ", orderof: "ℴ", ordf: "ª", ordm: "º", origof: "⊶", oror: "⩖", orslope: "⩗", orv: "⩛", oS: "Ⓢ", oscr: "ℴ", Oscr: "𝒪", oslash: "ø", Oslash: "Ø", osol: "⊘", otilde: "õ", Otilde: "Õ", otimes: "⊗", Otimes: "⨷", otimesas: "⨶", ouml: "ö", Ouml: "Ö", ovbar: "⌽", OverBar: "‾", OverBrace: "⏞", OverBracket: "⎴", OverParenthesis: "⏜", par: "∥", para: "¶", parallel: "∥", parsim: "⫳", parsl: "⫽", part: "∂", PartialD: "∂", pcy: "п", Pcy: "П", percnt: "%", period: ".", permil: "‰", perp: "⊥", pertenk: "‱", pfr: "𝔭", Pfr: "𝔓", phi: "φ", Phi: "Φ", phiv: "ϕ", phmmat: "ℳ", phone: "☎", pi: "π", Pi: "Π", pitchfork: "⋔", piv: "ϖ", planck: "ℏ", planckh: "ℎ", plankv: "ℏ", plus: "+", plusacir: "⨣", plusb: "⊞", pluscir: "⨢", plusdo: "∔", plusdu: "⨥", pluse: "⩲", PlusMinus: "±", plusmn: "±", plussim: "⨦", plustwo: "⨧", pm: "±", Poincareplane: "ℌ", pointint: "⨕", popf: "𝕡", Popf: "ℙ", pound: "£", pr: "≺", Pr: "⪻", prap: "⪷", prcue: "≼", pre: "⪯", prE: "⪳", prec: "≺", precapprox: "⪷", preccurlyeq: "≼", Precedes: "≺", PrecedesEqual: "⪯", PrecedesSlantEqual: "≼", PrecedesTilde: "≾", preceq: "⪯", precnapprox: "⪹", precneqq: "⪵", precnsim: "⋨", precsim: "≾", prime: "′", Prime: "″", primes: "ℙ", prnap: "⪹", prnE: "⪵", prnsim: "⋨", prod: "∏", Product: "∏", profalar: "⌮", profline: "⌒", profsurf: "⌓", prop: "∝", Proportion: "∷", Proportional: "∝", propto: "∝", prsim: "≾", prurel: "⊰", pscr: "𝓅", Pscr: "𝒫", psi: "ψ", Psi: "Ψ", puncsp: " ", qfr: "𝔮", Qfr: "𝔔", qint: "⨌", qopf: "𝕢", Qopf: "ℚ", qprime: "⁗", qscr: "𝓆", Qscr: "𝒬", quaternions: "ℍ", quatint: "⨖", quest: "?", questeq: "≟", quot: '"', QUOT: '"', rAarr: "⇛", race: "∽̱", racute: "ŕ", Racute: "Ŕ", radic: "√", raemptyv: "⦳", rang: "⟩", Rang: "⟫", rangd: "⦒", range: "⦥", rangle: "⟩", raquo: "»", rarr: "→", rArr: "⇒", Rarr: "↠", rarrap: "⥵", rarrb: "⇥", rarrbfs: "⤠", rarrc: "⤳", rarrfs: "⤞", rarrhk: "↪", rarrlp: "↬", rarrpl: "⥅", rarrsim: "⥴", rarrtl: "↣", Rarrtl: "⤖", rarrw: "↝", ratail: "⤚", rAtail: "⤜", ratio: "∶", rationals: "ℚ", rbarr: "⤍", rBarr: "⤏", RBarr: "⤐", rbbrk: "❳", rbrace: "}", rbrack: "]", rbrke: "⦌", rbrksld: "⦎", rbrkslu: "⦐", rcaron: "ř", Rcaron: "Ř", rcedil: "ŗ", Rcedil: "Ŗ", rceil: "⌉", rcub: "}", rcy: "р", Rcy: "Р", rdca: "⤷", rdldhar: "⥩", rdquo: "”", rdquor: "”", rdsh: "↳", Re: "ℜ", real: "ℜ", realine: "ℛ", realpart: "ℜ", reals: "ℝ", rect: "▭", reg: "®", REG: "®", ReverseElement: "∋", ReverseEquilibrium: "⇋", ReverseUpEquilibrium: "⥯", rfisht: "⥽", rfloor: "⌋", rfr: "𝔯", Rfr: "ℜ", rHar: "⥤", rhard: "⇁", rharu: "⇀", rharul: "⥬", rho: "ρ", Rho: "Ρ", rhov: "ϱ", RightAngleBracket: "⟩", rightarrow: "→", Rightarrow: "⇒", RightArrow: "→", RightArrowBar: "⇥", RightArrowLeftArrow: "⇄", rightarrowtail: "↣", RightCeiling: "⌉", RightDoubleBracket: "⟧", RightDownTeeVector: "⥝", RightDownVector: "⇂", RightDownVectorBar: "⥕", RightFloor: "⌋", rightharpoondown: "⇁", rightharpoonup: "⇀", rightleftarrows: "⇄", rightleftharpoons: "⇌", rightrightarrows: "⇉", rightsquigarrow: "↝", RightTee: "⊢", RightTeeArrow: "↦", RightTeeVector: "⥛", rightthreetimes: "⋌", RightTriangle: "⊳", RightTriangleBar: "⧐", RightTriangleEqual: "⊵", RightUpDownVector: "⥏", RightUpTeeVector: "⥜", RightUpVector: "↾", RightUpVectorBar: "⥔", RightVector: "⇀", RightVectorBar: "⥓", ring: "˚", risingdotseq: "≓", rlarr: "⇄", rlhar: "⇌", rlm: "‏", rmoust: "⎱", rmoustache: "⎱", rnmid: "⫮", roang: "⟭", roarr: "⇾", robrk: "⟧", ropar: "⦆", ropf: "𝕣", Ropf: "ℝ", roplus: "⨮", rotimes: "⨵", RoundImplies: "⥰", rpar: ")", rpargt: "⦔", rppolint: "⨒", rrarr: "⇉", Rrightarrow: "⇛", rsaquo: "›", rscr: "𝓇", Rscr: "ℛ", rsh: "↱", Rsh: "↱", rsqb: "]", rsquo: "’", rsquor: "’", rthree: "⋌", rtimes: "⋊", rtri: "▹", rtrie: "⊵", rtrif: "▸", rtriltri: "⧎", RuleDelayed: "⧴", ruluhar: "⥨", rx: "℞", sacute: "ś", Sacute: "Ś", sbquo: "‚", sc: "≻", Sc: "⪼", scap: "⪸", scaron: "š", Scaron: "Š", sccue: "≽", sce: "⪰", scE: "⪴", scedil: "ş", Scedil: "Ş", scirc: "ŝ", Scirc: "Ŝ", scnap: "⪺", scnE: "⪶", scnsim: "⋩", scpolint: "⨓", scsim: "≿", scy: "с", Scy: "С", sdot: "⋅", sdotb: "⊡", sdote: "⩦", searhk: "⤥", searr: "↘", seArr: "⇘", searrow: "↘", sect: "§", semi: ";", seswar: "⤩", setminus: "∖", setmn: "∖", sext: "✶", sfr: "𝔰", Sfr: "𝔖", sfrown: "⌢", sharp: "♯", shchcy: "щ", SHCHcy: "Щ", shcy: "ш", SHcy: "Ш", ShortDownArrow: "↓", ShortLeftArrow: "←", shortmid: "∣", shortparallel: "∥", ShortRightArrow: "→", ShortUpArrow: "↑", shy: "­", sigma: "σ", Sigma: "Σ", sigmaf: "ς", sigmav: "ς", sim: "∼", simdot: "⩪", sime: "≃", simeq: "≃", simg: "⪞", simgE: "⪠", siml: "⪝", simlE: "⪟", simne: "≆", simplus: "⨤", simrarr: "⥲", slarr: "←", SmallCircle: "∘", smallsetminus: "∖", smashp: "⨳", smeparsl: "⧤", smid: "∣", smile: "⌣", smt: "⪪", smte: "⪬", smtes: "⪬︀", softcy: "ь", SOFTcy: "Ь", sol: "/", solb: "⧄", solbar: "⌿", sopf: "𝕤", Sopf: "𝕊", spades: "♠", spadesuit: "♠", spar: "∥", sqcap: "⊓", sqcaps: "⊓︀", sqcup: "⊔", sqcups: "⊔︀", Sqrt: "√", sqsub: "⊏", sqsube: "⊑", sqsubset: "⊏", sqsubseteq: "⊑", sqsup: "⊐", sqsupe: "⊒", sqsupset: "⊐", sqsupseteq: "⊒", squ: "□", square: "□", Square: "□", SquareIntersection: "⊓", SquareSubset: "⊏", SquareSubsetEqual: "⊑", SquareSuperset: "⊐", SquareSupersetEqual: "⊒", SquareUnion: "⊔", squarf: "▪", squf: "▪", srarr: "→", sscr: "𝓈", Sscr: "𝒮", ssetmn: "∖", ssmile: "⌣", sstarf: "⋆", star: "☆", Star: "⋆", starf: "★", straightepsilon: "ϵ", straightphi: "ϕ", strns: "¯", sub: "⊂", Sub: "⋐", subdot: "⪽", sube: "⊆", subE: "⫅", subedot: "⫃", submult: "⫁", subne: "⊊", subnE: "⫋", subplus: "⪿", subrarr: "⥹", subset: "⊂", Subset: "⋐", subseteq: "⊆", subseteqq: "⫅", SubsetEqual: "⊆", subsetneq: "⊊", subsetneqq: "⫋", subsim: "⫇", subsub: "⫕", subsup: "⫓", succ: "≻", succapprox: "⪸", succcurlyeq: "≽", Succeeds: "≻", SucceedsEqual: "⪰", SucceedsSlantEqual: "≽", SucceedsTilde: "≿", succeq: "⪰", succnapprox: "⪺", succneqq: "⪶", succnsim: "⋩", succsim: "≿", SuchThat: "∋", sum: "∑", Sum: "∑", sung: "♪", sup: "⊃", Sup: "⋑", sup1: "¹", sup2: "²", sup3: "³", supdot: "⪾", supdsub: "⫘", supe: "⊇", supE: "⫆", supedot: "⫄", Superset: "⊃", SupersetEqual: "⊇", suphsol: "⟉", suphsub: "⫗", suplarr: "⥻", supmult: "⫂", supne: "⊋", supnE: "⫌", supplus: "⫀", supset: "⊃", Supset: "⋑", supseteq: "⊇", supseteqq: "⫆", supsetneq: "⊋", supsetneqq: "⫌", supsim: "⫈", supsub: "⫔", supsup: "⫖", swarhk: "⤦", swarr: "↙", swArr: "⇙", swarrow: "↙", swnwar: "⤪", szlig: "ß", Tab: " ", target: "⌖", tau: "τ", Tau: "Τ", tbrk: "⎴", tcaron: "ť", Tcaron: "Ť", tcedil: "ţ", Tcedil: "Ţ", tcy: "т", Tcy: "Т", tdot: "⃛", telrec: "⌕", tfr: "𝔱", Tfr: "𝔗", there4: "∴", therefore: "∴", Therefore: "∴", theta: "θ", Theta: "Θ", thetasym: "ϑ", thetav: "ϑ", thickapprox: "≈", thicksim: "∼", ThickSpace: "  ", thinsp: " ", ThinSpace: " ", thkap: "≈", thksim: "∼", thorn: "þ", THORN: "Þ", tilde: "˜", Tilde: "∼", TildeEqual: "≃", TildeFullEqual: "≅", TildeTilde: "≈", times: "×", timesb: "⊠", timesbar: "⨱", timesd: "⨰", tint: "∭", toea: "⤨", top: "⊤", topbot: "⌶", topcir: "⫱", topf: "𝕥", Topf: "𝕋", topfork: "⫚", tosa: "⤩", tprime: "‴", trade: "™", TRADE: "™", triangle: "▵", triangledown: "▿", triangleleft: "◃", trianglelefteq: "⊴", triangleq: "≜", triangleright: "▹", trianglerighteq: "⊵", tridot: "◬", trie: "≜", triminus: "⨺", TripleDot: "⃛", triplus: "⨹", trisb: "⧍", tritime: "⨻", trpezium: "⏢", tscr: "𝓉", Tscr: "𝒯", tscy: "ц", TScy: "Ц", tshcy: "ћ", TSHcy: "Ћ", tstrok: "ŧ", Tstrok: "Ŧ", twixt: "≬", twoheadleftarrow: "↞", twoheadrightarrow: "↠", uacute: "ú", Uacute: "Ú", uarr: "↑", uArr: "⇑", Uarr: "↟", Uarrocir: "⥉", ubrcy: "ў", Ubrcy: "Ў", ubreve: "ŭ", Ubreve: "Ŭ", ucirc: "û", Ucirc: "Û", ucy: "у", Ucy: "У", udarr: "⇅", udblac: "ű", Udblac: "Ű", udhar: "⥮", ufisht: "⥾", ufr: "𝔲", Ufr: "𝔘", ugrave: "ù", Ugrave: "Ù", uHar: "⥣", uharl: "↿", uharr: "↾", uhblk: "▀", ulcorn: "⌜", ulcorner: "⌜", ulcrop: "⌏", ultri: "◸", umacr: "ū", Umacr: "Ū", uml: "¨", UnderBar: "_", UnderBrace: "⏟", UnderBracket: "⎵", UnderParenthesis: "⏝", Union: "⋃", UnionPlus: "⊎", uogon: "ų", Uogon: "Ų", uopf: "𝕦", Uopf: "𝕌", uparrow: "↑", Uparrow: "⇑", UpArrow: "↑", UpArrowBar: "⤒", UpArrowDownArrow: "⇅", updownarrow: "↕", Updownarrow: "⇕", UpDownArrow: "↕", UpEquilibrium: "⥮", upharpoonleft: "↿", upharpoonright: "↾", uplus: "⊎", UpperLeftArrow: "↖", UpperRightArrow: "↗", upsi: "υ", Upsi: "ϒ", upsih: "ϒ", upsilon: "υ", Upsilon: "Υ", UpTee: "⊥", UpTeeArrow: "↥", upuparrows: "⇈", urcorn: "⌝", urcorner: "⌝", urcrop: "⌎", uring: "ů", Uring: "Ů", urtri: "◹", uscr: "𝓊", Uscr: "𝒰", utdot: "⋰", utilde: "ũ", Utilde: "Ũ", utri: "▵", utrif: "▴", uuarr: "⇈", uuml: "ü", Uuml: "Ü", uwangle: "⦧", vangrt: "⦜", varepsilon: "ϵ", varkappa: "ϰ", varnothing: "∅", varphi: "ϕ", varpi: "ϖ", varpropto: "∝", varr: "↕", vArr: "⇕", varrho: "ϱ", varsigma: "ς", varsubsetneq: "⊊︀", varsubsetneqq: "⫋︀", varsupsetneq: "⊋︀", varsupsetneqq: "⫌︀", vartheta: "ϑ", vartriangleleft: "⊲", vartriangleright: "⊳", vBar: "⫨", Vbar: "⫫", vBarv: "⫩", vcy: "в", Vcy: "В", vdash: "⊢", vDash: "⊨", Vdash: "⊩", VDash: "⊫", Vdashl: "⫦", vee: "∨", Vee: "⋁", veebar: "⊻", veeeq: "≚", vellip: "⋮", verbar: "|", Verbar: "‖", vert: "|", Vert: "‖", VerticalBar: "∣", VerticalLine: "|", VerticalSeparator: "❘", VerticalTilde: "≀", VeryThinSpace: " ", vfr: "𝔳", Vfr: "𝔙", vltri: "⊲", vnsub: "⊂⃒", vnsup: "⊃⃒", vopf: "𝕧", Vopf: "𝕍", vprop: "∝", vrtri: "⊳", vscr: "𝓋", Vscr: "𝒱", vsubne: "⊊︀", vsubnE: "⫋︀", vsupne: "⊋︀", vsupnE: "⫌︀", Vvdash: "⊪", vzigzag: "⦚", wcirc: "ŵ", Wcirc: "Ŵ", wedbar: "⩟", wedge: "∧", Wedge: "⋀", wedgeq: "≙", weierp: "℘", wfr: "𝔴", Wfr: "𝔚", wopf: "𝕨", Wopf: "𝕎", wp: "℘", wr: "≀", wreath: "≀", wscr: "𝓌", Wscr: "𝒲", xcap: "⋂", xcirc: "◯", xcup: "⋃", xdtri: "▽", xfr: "𝔵", Xfr: "𝔛", xharr: "⟷", xhArr: "⟺", xi: "ξ", Xi: "Ξ", xlarr: "⟵", xlArr: "⟸", xmap: "⟼", xnis: "⋻", xodot: "⨀", xopf: "𝕩", Xopf: "𝕏", xoplus: "⨁", xotime: "⨂", xrarr: "⟶", xrArr: "⟹", xscr: "𝓍", Xscr: "𝒳", xsqcup: "⨆", xuplus: "⨄", xutri: "△", xvee: "⋁", xwedge: "⋀", yacute: "ý", Yacute: "Ý", yacy: "я", YAcy: "Я", ycirc: "ŷ", Ycirc: "Ŷ", ycy: "ы", Ycy: "Ы", yen: "¥", yfr: "𝔶", Yfr: "𝔜", yicy: "ї", YIcy: "Ї", yopf: "𝕪", Yopf: "𝕐", yscr: "𝓎", Yscr: "𝒴", yucy: "ю", YUcy: "Ю", yuml: "ÿ", Yuml: "Ÿ", zacute: "ź", Zacute: "Ź", zcaron: "ž", Zcaron: "Ž", zcy: "з", Zcy: "З", zdot: "ż", Zdot: "Ż", zeetrf: "ℨ", ZeroWidthSpace: "​", zeta: "ζ", Zeta: "Ζ", zfr: "𝔷", Zfr: "ℨ", zhcy: "ж", ZHcy: "Ж", zigrarr: "⇝", zopf: "𝕫", Zopf: "ℤ", zscr: "𝓏", Zscr: "𝒵", zwj: "‍", zwnj: "‌" }, Q = { aacute: "á", Aacute: "Á", acirc: "â", Acirc: "Â", acute: "´", aelig: "æ", AElig: "Æ", agrave: "à", Agrave: "À", amp: "&", AMP: "&", aring: "å", Aring: "Å", atilde: "ã", Atilde: "Ã", auml: "ä", Auml: "Ä", brvbar: "¦", ccedil: "ç", Ccedil: "Ç", cedil: "¸", cent: "¢", copy: "©", COPY: "©", curren: "¤", deg: "°", divide: "÷", eacute: "é", Eacute: "É", ecirc: "ê", Ecirc: "Ê", egrave: "è", Egrave: "È", eth: "ð", ETH: "Ð", euml: "ë", Euml: "Ë", frac12: "½", frac14: "¼", frac34: "¾", gt: ">", GT: ">", iacute: "í", Iacute: "Í", icirc: "î", Icirc: "Î", iexcl: "¡", igrave: "ì", Igrave: "Ì", iquest: "¿", iuml: "ï", Iuml: "Ï", laquo: "«", lt: "<", LT: "<", macr: "¯", micro: "µ", middot: "·", nbsp: " ", not: "¬", ntilde: "ñ", Ntilde: "Ñ", oacute: "ó", Oacute: "Ó", ocirc: "ô", Ocirc: "Ô", ograve: "ò", Ograve: "Ò", ordf: "ª", ordm: "º", oslash: "ø", Oslash: "Ø", otilde: "õ", Otilde: "Õ", ouml: "ö", Ouml: "Ö", para: "¶", plusmn: "±", pound: "£", quot: '"', QUOT: '"', raquo: "»", reg: "®", REG: "®", sect: "§", shy: "­", sup1: "¹", sup2: "²", sup3: "³", szlig: "ß", thorn: "þ", THORN: "Þ", times: "×", uacute: "ú", Uacute: "Ú", ucirc: "û", Ucirc: "Û", ugrave: "ù", Ugrave: "Ù", uml: "¨", uuml: "ü", Uuml: "Ü", yacute: "ý", Yacute: "Ý", yen: "¥", yuml: "ÿ" }, ue = { 0: "�", 128: "€", 130: "‚", 131: "ƒ", 132: "„", 133: "…", 134: "†", 135: "‡", 136: "ˆ", 137: "‰", 138: "Š", 139: "‹", 140: "Œ", 142: "Ž", 145: "‘", 146: "’", 147: "“", 148: "”", 149: "•", 150: "–", 151: "—", 152: "˜", 153: "™", 154: "š", 155: "›", 156: "œ", 158: "ž", 159: "Ÿ" }, K = [1, 2, 3, 4, 5, 6, 7, 8, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 64976, 64977, 64978, 64979, 64980, 64981, 64982, 64983, 64984, 64985, 64986, 64987, 64988, 64989, 64990, 64991, 64992, 64993, 64994, 64995, 64996, 64997, 64998, 64999, 65e3, 65001, 65002, 65003, 65004, 65005, 65006, 65007, 65534, 65535, 131070, 131071, 196606, 196607, 262142, 262143, 327678, 327679, 393214, 393215, 458750, 458751, 524286, 524287, 589822, 589823, 655358, 655359, 720894, 720895, 786430, 786431, 851966, 851967, 917502, 917503, 983038, 983039, 1048574, 1048575, 1114110, 1114111], X = String.fromCharCode, ge = {}, q = ge.hasOwnProperty, oe = function(he, Pe) {
1375
1385
  return q.call(he, Pe);
1376
1386
  }, ae = function(he, Pe) {
@@ -1424,7 +1434,7 @@ hn.exports;
1424
1434
  var Oe = function(he, Pe) {
1425
1435
  Pe = te(Pe, Oe.options);
1426
1436
  var qe = Pe.strict;
1427
- return qe && y.test(he) && Z("malformed character reference"), he.replace(P, function(dt, Me, Pt, le, ee, $, de, Ce, Ze) {
1437
+ return qe && N.test(he) && Z("malformed character reference"), he.replace(P, function(dt, Me, Pt, le, ee, $, de, Ce, Ze) {
1428
1438
  var ft, $e, Je, ht, lu, Ju;
1429
1439
  return Me ? (lu = Me, O[lu]) : Pt ? (lu = Pt, Ju = le, Ju && Pe.isAttributeValue ? (qe && Ju == "=" && Z("`&` did not start a character reference"), dt) : (qe && Z(
1430
1440
  "named character reference was not terminated by a semicolon"
@@ -1477,18 +1487,18 @@ const ug = /* @__PURE__ */ tg($i), rt = (R) => {
1477
1487
  "getDefaultStyles",
1478
1488
  "Com"
1479
1489
  ]);
1480
- const x = e.type, _ = u.data, g = u.data.variables, y = Il(L.elementAttributes), w = V(() => {
1490
+ const x = e.type, _ = u.data, g = u.data.variables, N = Il(L.elementAttributes), w = V(() => {
1481
1491
  var oe, ae, te, se, xe, ke, Z;
1482
1492
  const ue = pm(
1483
1493
  (oe = _ == null ? void 0 : _.globalAttributes) == null ? void 0 : oe["mj-class"],
1484
1494
  (te = (ae = _ == null ? void 0 : _.blockAttributes) == null ? void 0 : ae[x]) == null ? void 0 : te["mj-class"],
1485
- y["mj-class"]
1495
+ N["mj-class"]
1486
1496
  ), K = {};
1487
1497
  Object.keys((_ == null ? void 0 : _.classAttributes) || {}).forEach((Te) => {
1488
1498
  ue.split(" ").map((lt) => lt.trim()).filter(Boolean).includes(Te) && Object.assign(K, p(_ == null ? void 0 : _.classAttributes, Te));
1489
1499
  });
1490
1500
  const X = De.getBlockByType(x);
1491
- (se = p(y, "padding", "")) != null && se.trim() && (delete s["padding-top"], delete s["padding-bottom"], delete s["padding-left"], delete s["padding-right"]), (xe = p(y, "inner-padding", "")) != null && xe.trim() && (delete s["inner-padding-top"], delete s["inner-padding-bottom"], delete s["inner-padding-left"], delete s["inner-padding-right"]);
1501
+ (se = p(N, "padding", "")) != null && se.trim() && (delete s["padding-top"], delete s["padding-bottom"], delete s["padding-left"], delete s["padding-right"]), (xe = p(N, "inner-padding", "")) != null && xe.trim() && (delete s["inner-padding-top"], delete s["inner-padding-bottom"], delete s["inner-padding-left"], delete s["inner-padding-right"]);
1492
1502
  const ge = dm(
1493
1503
  {},
1494
1504
  s,
@@ -1496,7 +1506,7 @@ const ug = /* @__PURE__ */ tg($i), rt = (R) => {
1496
1506
  (ke = _ == null ? void 0 : _.categoryAttributes) == null ? void 0 : ke[X.category],
1497
1507
  (Z = _ == null ? void 0 : _.blockAttributes) == null ? void 0 : Z[e.type],
1498
1508
  K,
1499
- y
1509
+ N
1500
1510
  ), q = eg(ge, l);
1501
1511
  if (a && Object.keys(a).length > 0 || g && Object.keys(g).length > 0) {
1502
1512
  const Te = Ku.getPageDataVariables(
@@ -1509,7 +1519,7 @@ const ug = /* @__PURE__ */ tg($i), rt = (R) => {
1509
1519
  }, [
1510
1520
  l,
1511
1521
  a,
1512
- y,
1522
+ N,
1513
1523
  s,
1514
1524
  e.type,
1515
1525
  x,
@@ -1540,7 +1550,7 @@ const ug = /* @__PURE__ */ tg($i), rt = (R) => {
1540
1550
  (X, ge, q) => {
1541
1551
  const ae = (q === "style" ? O.style : O.default)(ge);
1542
1552
  let te = q;
1543
- return q === "class" && (te = "className"), q.startsWith("cell") && (te = ku(q.replace(/^cell(.*)$/, "cell_$1"))), te = ku(te), te === "verticalAlign" && (te = "verticalalign"), te === "cellpadding" && (te = "cellPadding"), z(N({}, X), {
1553
+ return q === "class" && (te = "className"), q.startsWith("cell") && (te = ku(q.replace(/^cell(.*)$/, "cell_$1"))), te = ku(te), te === "verticalAlign" && (te = "verticalalign"), te === "cellpadding" && (te = "cellPadding"), z(y({}, X), {
1544
1554
  [te]: ia(ae) ? $i.decode(ae) : ae
1545
1555
  });
1546
1556
  },
@@ -1618,12 +1628,12 @@ const rg = () => /* @__PURE__ */ A.createElement(
1618
1628
  )
1619
1629
  )
1620
1630
  ), ag = A.lazy(
1621
- () => import("./index-ac31674f.js")
1631
+ () => import("./index-cd9637a3.js")
1622
1632
  ), ng = () => {
1623
1633
  const e = Du();
1624
1634
  return V(() => e.headerElement ? /* @__PURE__ */ A.createElement(ag, { element: e.headerElement }) : null, [e.headerElement]);
1625
1635
  }, ig = A.lazy(
1626
- () => import("./index-ac31674f.js")
1636
+ () => import("./index-cd9637a3.js")
1627
1637
  ), sg = () => {
1628
1638
  const e = Du();
1629
1639
  return V(() => e.footerElement ? /* @__PURE__ */ A.createElement(ig, { element: e.footerElement }) : null, [e.footerElement]);
@@ -1631,7 +1641,7 @@ const rg = () => /* @__PURE__ */ A.createElement(
1631
1641
  elementData: e,
1632
1642
  attributes: u
1633
1643
  }) => V(() => {
1634
- var R, F, x, _, g, y, w;
1644
+ var R, F, x, _, g, N, w;
1635
1645
  const a = {
1636
1646
  color: ((R = u["link-color"]) == null ? void 0 : R.trim()) || "inherit",
1637
1647
  "font-weight": (F = u["link-font-weight"]) == null ? void 0 : F.trim(),
@@ -1641,7 +1651,7 @@ const rg = () => /* @__PURE__ */ A.createElement(
1641
1651
  const O = a;
1642
1652
  return O[P] ? `${P}: ${O[P]}` : "";
1643
1653
  }).filter(Boolean).join(";"), l = `.mjbody a {${s}} .mjbody a:hover {${s}} .mjbody a:active {${s}}`, m = ((g = e.headStyles) == null ? void 0 : g.filter((P) => P.inline).map((P) => P.content).join(`
1644
- `)) || "", b = ((y = e.headStyles) == null ? void 0 : y.filter((P) => !P.inline).map((P) => P.content).join(`
1654
+ `)) || "", b = ((N = e.headStyles) == null ? void 0 : N.filter((P) => !P.inline).map((P) => P.content).join(`
1645
1655
  `)) || "", L = (w = e.fonts) == null ? void 0 : w.map((P, O) => /* @__PURE__ */ A.createElement(
1646
1656
  "link",
1647
1657
  {
@@ -1724,10 +1734,10 @@ class lg extends Ge {
1724
1734
  width: "unit(px)",
1725
1735
  "background-color": "color"
1726
1736
  });
1727
- j(this, "defaultAttributes", N({}, cg.defaultData.attributes));
1737
+ j(this, "defaultAttributes", y({}, cg.defaultData.attributes));
1728
1738
  }
1729
1739
  renderElement() {
1730
- return /* @__PURE__ */ A.createElement("div", null, /* @__PURE__ */ A.createElement(dg, z(N({}, this.props), { Com: this }), /* @__PURE__ */ A.createElement("div", null, this.renderChildrenWithPlaceholder())));
1740
+ return /* @__PURE__ */ A.createElement("div", null, /* @__PURE__ */ A.createElement(dg, z(y({}, this.props), { Com: this }), /* @__PURE__ */ A.createElement("div", null, this.renderChildrenWithPlaceholder())));
1731
1741
  }
1732
1742
  }
1733
1743
  const dg = (e) => {
@@ -1735,7 +1745,7 @@ const dg = (e) => {
1735
1745
  div: {
1736
1746
  "background-color": b["background-color"]
1737
1747
  }
1738
- }), []), { attributes: a, getHtmlAttributes: s } = rt(z(N({}, e), {
1748
+ }), []), { attributes: a, getHtmlAttributes: s } = rt(z(y({}, e), {
1739
1749
  defaultAttributes: e.Com.defaultAttributes,
1740
1750
  allowedAttributes: e.Com.allowedAttributes,
1741
1751
  getDefaultStyles: u
@@ -1746,7 +1756,7 @@ const dg = (e) => {
1746
1756
  const b = ls.getFeatureEnabled("REMOVE_BRAND");
1747
1757
  return /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(og, { elementData: e.element.data, attributes: a }), /* @__PURE__ */ A.createElement(
1748
1758
  "div",
1749
- z(N({
1759
+ z(y({
1750
1760
  className: "mjbody",
1751
1761
  "data-slate-block": "page"
1752
1762
  }, e.attributes), {
@@ -1762,7 +1772,7 @@ const dg = (e) => {
1762
1772
  }
1763
1773
  }
1764
1774
  ),
1765
- /* @__PURE__ */ A.createElement("div", N({}, l), /* @__PURE__ */ A.createElement("div", null, /* @__PURE__ */ A.createElement(
1775
+ /* @__PURE__ */ A.createElement("div", y({}, l), /* @__PURE__ */ A.createElement("div", null, /* @__PURE__ */ A.createElement(
1766
1776
  "div",
1767
1777
  {
1768
1778
  style: {
@@ -1831,7 +1841,7 @@ const dg = (e) => {
1831
1841
  "word-break": "break-word"
1832
1842
  }
1833
1843
  }), [a, L]);
1834
- return /* @__PURE__ */ A.createElement("tr", z(N({}, e), { "data-slate-block": u }), /* @__PURE__ */ A.createElement("td", N({}, R), s));
1844
+ return /* @__PURE__ */ A.createElement("tr", z(y({}, e), { "data-slate-block": u }), /* @__PURE__ */ A.createElement("td", y({}, R), s));
1835
1845
  }, fg = De.getBlockByType(me.TEXT);
1836
1846
  let hs = class extends Ge {
1837
1847
  constructor() {
@@ -1839,12 +1849,12 @@ let hs = class extends Ge {
1839
1849
  j(this, "componentType", "text");
1840
1850
  j(this, "endingTag", !0);
1841
1851
  j(this, "allowedAttributes", ct.Text);
1842
- j(this, "defaultAttributes", N({}, fg.defaultData.attributes));
1852
+ j(this, "defaultAttributes", y({}, fg.defaultData.attributes));
1843
1853
  }
1844
1854
  renderElement() {
1845
1855
  return /* @__PURE__ */ A.createElement(
1846
1856
  hg,
1847
- z(N({}, this.props), {
1857
+ z(y({}, this.props), {
1848
1858
  Com: this,
1849
1859
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
1850
1860
  })
@@ -1866,7 +1876,7 @@ const hg = (e) => {
1866
1876
  color: R.color,
1867
1877
  height: R.height
1868
1878
  }
1869
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
1879
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
1870
1880
  defaultAttributes: e.Com.defaultAttributes,
1871
1881
  allowedAttributes: e.Com.allowedAttributes,
1872
1882
  getDefaultStyles: a
@@ -1880,7 +1890,7 @@ const hg = (e) => {
1880
1890
  componentType: e.Com.componentType,
1881
1891
  getHtmlAttributes: l
1882
1892
  },
1883
- /* @__PURE__ */ A.createElement("div", z(N({}, m), { "data-text-align": b }), e.childrenWithPlaceholder)
1893
+ /* @__PURE__ */ A.createElement("div", z(y({}, m), { "data-text-align": b }), e.childrenWithPlaceholder)
1884
1894
  ), [
1885
1895
  b,
1886
1896
  m,
@@ -1960,12 +1970,12 @@ let bg = class extends Ge {
1960
1970
  j(this, "endingTag", !0);
1961
1971
  j(this, "componentType", "button");
1962
1972
  j(this, "allowedAttributes", ct.Button);
1963
- j(this, "defaultAttributes", N({}, gg.defaultData.attributes));
1973
+ j(this, "defaultAttributes", y({}, gg.defaultData.attributes));
1964
1974
  }
1965
1975
  renderElement() {
1966
1976
  return /* @__PURE__ */ A.createElement(
1967
1977
  pg,
1968
- z(N({}, this.props), {
1978
+ z(y({}, this.props), {
1969
1979
  Com: this,
1970
1980
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
1971
1981
  })
@@ -1975,7 +1985,7 @@ let bg = class extends Ge {
1975
1985
  const pg = (e) => {
1976
1986
  const { containerWidth: u } = nt(), a = ve(
1977
1987
  (_) => {
1978
- const y = ((w) => {
1988
+ const N = ((w) => {
1979
1989
  if (!w)
1980
1990
  return null;
1981
1991
  const { parsedWidth: P, unit: O } = eu(w);
@@ -2009,7 +2019,7 @@ const pg = (e) => {
2009
2019
  },
2010
2020
  content: {
2011
2021
  display: "inline-block",
2012
- width: y,
2022
+ width: N,
2013
2023
  background: _["background-color"],
2014
2024
  color: _.color,
2015
2025
  "font-family": _["font-family"],
@@ -2028,7 +2038,7 @@ const pg = (e) => {
2028
2038
  };
2029
2039
  },
2030
2040
  [u]
2031
- ), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
2041
+ ), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
2032
2042
  defaultAttributes: e.Com.defaultAttributes,
2033
2043
  allowedAttributes: e.Com.allowedAttributes,
2034
2044
  getDefaultStyles: a
@@ -2066,7 +2076,7 @@ const pg = (e) => {
2066
2076
  componentType: e.Com.componentType,
2067
2077
  getHtmlAttributes: l
2068
2078
  },
2069
- /* @__PURE__ */ A.createElement("table", N({}, b), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", N({}, L), m ? /* @__PURE__ */ A.createElement("a", N({}, R), e.childrenWithPlaceholder) : /* @__PURE__ */ A.createElement("p", N({}, F), e.childrenWithPlaceholder)))))
2079
+ /* @__PURE__ */ A.createElement("table", y({}, b), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", y({}, L), m ? /* @__PURE__ */ A.createElement("a", y({}, R), e.childrenWithPlaceholder) : /* @__PURE__ */ A.createElement("p", y({}, F), e.childrenWithPlaceholder)))))
2070
2080
  ), [
2071
2081
  s,
2072
2082
  l,
@@ -2117,12 +2127,12 @@ let _g = class extends Ge {
2117
2127
  super(...arguments);
2118
2128
  j(this, "componentType", "column");
2119
2129
  j(this, "allowedAttributes", ct.Column);
2120
- j(this, "defaultAttributes", N({}, Cg.defaultData.attributes));
2130
+ j(this, "defaultAttributes", y({}, Cg.defaultData.attributes));
2121
2131
  }
2122
2132
  renderElement() {
2123
2133
  return /* @__PURE__ */ A.createElement(
2124
2134
  Ng,
2125
- z(N({}, this.props), {
2135
+ z(y({}, this.props), {
2126
2136
  Com: this,
2127
2137
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
2128
2138
  })
@@ -2189,7 +2199,7 @@ const Ng = (e) => {
2189
2199
  "vertical-align": p(O, "vertical-align"),
2190
2200
  width: K()
2191
2201
  },
2192
- table: N({}, l(O) ? {
2202
+ table: y({}, l(O) ? {
2193
2203
  "background-color": p(O, "inner-background-color"),
2194
2204
  border: p(O, "inner-border"),
2195
2205
  "border-bottom": p(O, "inner-border-bottom"),
@@ -2202,7 +2212,7 @@ const Ng = (e) => {
2202
2212
  "vertical-align": p(O, "vertical-align"),
2203
2213
  width: ue()
2204
2214
  },
2205
- gutter: z(N({}, X), {
2215
+ gutter: z(y({}, X), {
2206
2216
  padding: p(O, "padding"),
2207
2217
  "padding-top": p(O, "padding-top"),
2208
2218
  "padding-right": p(O, "padding-right"),
@@ -2217,7 +2227,7 @@ const Ng = (e) => {
2217
2227
  a,
2218
2228
  s
2219
2229
  ]
2220
- ), { attributes: b, getHtmlAttributes: L } = rt(z(N({}, e), {
2230
+ ), { attributes: b, getHtmlAttributes: L } = rt(z(y({}, e), {
2221
2231
  defaultAttributes: e.Com.defaultAttributes,
2222
2232
  allowedAttributes: e.Com.allowedAttributes,
2223
2233
  getDefaultStyles: m
@@ -2256,7 +2266,7 @@ const Ng = (e) => {
2256
2266
  F()
2257
2267
  ), [F, e.context.data.breakpoint]), _ = ve(() => /* @__PURE__ */ A.createElement(
2258
2268
  "table",
2259
- N({}, L({
2269
+ y({}, L({
2260
2270
  border: "0",
2261
2271
  cellpadding: "0",
2262
2272
  cellspacing: "0",
@@ -2267,15 +2277,15 @@ const Ng = (e) => {
2267
2277
  /* @__PURE__ */ A.createElement("tbody", null, e.childrenWithPlaceholder)
2268
2278
  ), [L, e.childrenWithPlaceholder]), g = ve(() => /* @__PURE__ */ A.createElement(
2269
2279
  "table",
2270
- N({}, L({
2280
+ y({}, L({
2271
2281
  border: "0",
2272
2282
  cellpadding: "0",
2273
2283
  cellspacing: "0",
2274
2284
  role: "presentation",
2275
2285
  width: "100%"
2276
2286
  })),
2277
- /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", N({}, L({ style: "gutter" })), _())))
2278
- ), [L, _]), y = V(() => {
2287
+ /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", y({}, L({ style: "gutter" })), _())))
2288
+ ), [L, _]), N = V(() => {
2279
2289
  const O = u.containerWidth, { borders: Q, paddings: ue } = Tn({
2280
2290
  attributes: b,
2281
2291
  containerWidth: u.containerWidth
@@ -2289,7 +2299,7 @@ const Ng = (e) => {
2289
2299
  let O = `${R().className} mj-outlook-group-fix`;
2290
2300
  return p(b, "css-class") && (O += ` ${p(b, "css-class")}`), /* @__PURE__ */ A.createElement(
2291
2301
  "div",
2292
- z(N(N({}, e.attributes), L({
2302
+ z(y(y({}, e.attributes), L({
2293
2303
  class: O,
2294
2304
  style: "div"
2295
2305
  })), {
@@ -2314,7 +2324,7 @@ const Ng = (e) => {
2314
2324
  {
2315
2325
  element: e.element,
2316
2326
  attributes: b,
2317
- containerWidth: y
2327
+ containerWidth: N
2318
2328
  },
2319
2329
  w
2320
2330
  );
@@ -2399,7 +2409,7 @@ En.exports;
2399
2409
  c = M(c, B[Ee], Ee, B);
2400
2410
  return c;
2401
2411
  }
2402
- function y(B, M, c, ne) {
2412
+ function N(B, M, c, ne) {
2403
2413
  var Ee = B == null ? 0 : B.length;
2404
2414
  for (ne && Ee && (c = B[--Ee]); Ee--; )
2405
2415
  c = M(c, B[Ee], Ee, B);
@@ -4567,7 +4577,7 @@ En.exports;
4567
4577
  return o(t, pe(r, 4), n, d, Bu);
4568
4578
  }
4569
4579
  function ph(t, r, n) {
4570
- var o = _e(t) ? y : te, d = arguments.length < 3;
4580
+ var o = _e(t) ? N : te, d = arguments.length < 3;
4571
4581
  return o(t, pe(r, 4), n, d, Bc);
4572
4582
  }
4573
4583
  function Th(t, r) {
@@ -6253,7 +6263,7 @@ function es(e, u, a, s) {
6253
6263
  rearg: e.rearg,
6254
6264
  toInteger: e.toInteger,
6255
6265
  toPath: e.toPath
6256
- }, y = g.ary, w = g.assign, P = g.clone, O = g.curry, Q = g.forEach, ue = g.isArray, K = g.isError, X = g.isFunction, ge = g.isWeakMap, q = g.keys, oe = g.rearg, ae = g.toInteger, te = g.toPath, se = q(ut.aryMethod), xe = {
6266
+ }, N = g.ary, w = g.assign, P = g.clone, O = g.curry, Q = g.forEach, ue = g.isArray, K = g.isError, X = g.isFunction, ge = g.isWeakMap, q = g.keys, oe = g.rearg, ae = g.toInteger, te = g.toPath, se = q(ut.aryMethod), xe = {
6257
6267
  castArray: function(le) {
6258
6268
  return function() {
6259
6269
  var ee = arguments[0];
@@ -6315,7 +6325,7 @@ function es(e, u, a, s) {
6315
6325
  function Te(le, ee, $) {
6316
6326
  if (b.fixed && (F || !ut.skipFixed[le])) {
6317
6327
  var de = ut.methodSpread[le], Ce = de && de.start;
6318
- return Ce === void 0 ? y(ee, $) : Rg(ee, Ce);
6328
+ return Ce === void 0 ? N(ee, $) : Rg(ee, Ce);
6319
6329
  }
6320
6330
  return ee;
6321
6331
  }
@@ -6435,13 +6445,13 @@ let vl = class extends Ge {
6435
6445
  super(...arguments);
6436
6446
  j(this, "componentType", "section");
6437
6447
  j(this, "allowedAttributes", ct.Section);
6438
- j(this, "defaultAttributes", N({}, Og.defaultData.attributes));
6448
+ j(this, "defaultAttributes", y({}, Og.defaultData.attributes));
6439
6449
  j(this, "stackOnMobile", !0);
6440
6450
  }
6441
6451
  renderElement() {
6442
6452
  return /* @__PURE__ */ A.createElement(
6443
6453
  wg,
6444
- z(N({}, this.props), {
6454
+ z(y({}, this.props), {
6445
6455
  Com: this,
6446
6456
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
6447
6457
  })
@@ -6473,11 +6483,11 @@ const wg = (e) => {
6473
6483
  "background-color": p(P, "background-color")
6474
6484
  };
6475
6485
  return {
6476
- tableFullwidth: z(N({}, Q ? X : {}), {
6486
+ tableFullwidth: z(y({}, Q ? X : {}), {
6477
6487
  width: "100%",
6478
6488
  "border-radius": p(P, "border-radius")
6479
6489
  }),
6480
- table: z(N({}, Q ? {} : X), {
6490
+ table: z(y({}, Q ? {} : X), {
6481
6491
  width: "100%",
6482
6492
  "border-radius": p(P, "border-radius")
6483
6493
  }),
@@ -6496,7 +6506,7 @@ const wg = (e) => {
6496
6506
  "padding-top": p(P, "padding-top"),
6497
6507
  "text-align": p(P, "text-align")
6498
6508
  },
6499
- div: z(N({}, Q ? {} : X), {
6509
+ div: z(y({}, Q ? {} : X), {
6500
6510
  margin: "0px auto",
6501
6511
  "border-radius": p(P, "border-radius"),
6502
6512
  "max-width": O
@@ -6508,7 +6518,7 @@ const wg = (e) => {
6508
6518
  };
6509
6519
  },
6510
6520
  [u.containerWidth]
6511
- ), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
6521
+ ), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
6512
6522
  defaultAttributes: e.Com.defaultAttributes,
6513
6523
  allowedAttributes: e.Com.allowedAttributes,
6514
6524
  getDefaultStyles: a
@@ -6534,8 +6544,8 @@ const wg = (e) => {
6534
6544
  }), [s, l, b]), x = V(() => l({
6535
6545
  style: "innerDiv"
6536
6546
  }), [l]), _ = al(s), g = V(() => {
6537
- const P = /* @__PURE__ */ A.createElement("table", N({}, L), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", N({}, R), e.childrenWithPlaceholder))));
6538
- return /* @__PURE__ */ A.createElement("div", N({}, F), _ ? /* @__PURE__ */ A.createElement("div", N({}, x), P) : P);
6547
+ const P = /* @__PURE__ */ A.createElement("table", y({}, L), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", y({}, R), e.childrenWithPlaceholder))));
6548
+ return /* @__PURE__ */ A.createElement("div", y({}, F), _ ? /* @__PURE__ */ A.createElement("div", y({}, x), P) : P);
6539
6549
  }, [
6540
6550
  _,
6541
6551
  e.childrenWithPlaceholder,
@@ -6543,11 +6553,11 @@ const wg = (e) => {
6543
6553
  x,
6544
6554
  L,
6545
6555
  R
6546
- ]), y = V(() => {
6556
+ ]), N = V(() => {
6547
6557
  const P = /* @__PURE__ */ A.createElement(A.Fragment, null, g);
6548
6558
  return /* @__PURE__ */ A.createElement(
6549
6559
  "table",
6550
- N({}, l({
6560
+ y({}, l({
6551
6561
  align: "center",
6552
6562
  class: p(s, "css-class"),
6553
6563
  background: p(s, "background-url"),
@@ -6570,7 +6580,7 @@ const wg = (e) => {
6570
6580
  },
6571
6581
  /* @__PURE__ */ A.createElement(
6572
6582
  "div",
6573
- z(N({
6583
+ z(y({
6574
6584
  "data-slate-block": e.Com.componentType
6575
6585
  }, e.attributes), {
6576
6586
  style: {
@@ -6578,7 +6588,7 @@ const wg = (e) => {
6578
6588
  margin: "auto"
6579
6589
  }
6580
6590
  }),
6581
- b ? y : w
6591
+ b ? N : w
6582
6592
  )
6583
6593
  ), [
6584
6594
  s,
@@ -6588,7 +6598,7 @@ const wg = (e) => {
6588
6598
  e.attributes,
6589
6599
  e.context.attributes.width,
6590
6600
  e.element,
6591
- y,
6601
+ N,
6592
6602
  w
6593
6603
  ]);
6594
6604
  };
@@ -6703,7 +6713,7 @@ const Fg = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAWeCAMAAAChDnInAA
6703
6713
  </svg>
6704
6714
 
6705
6715
  `;
6706
- return console.log("data:image/svg+xml," + s), "data:image/svg+xml;base64," + btoa(unescape(encodeURIComponent(s)));
6716
+ return "data:image/svg+xml;base64," + btoa(unescape(encodeURIComponent(s)));
6707
6717
  }, Hg = De.getBlockByType(me.IMAGE), nl = ({
6708
6718
  attributes: e,
6709
6719
  containerWidth: u
@@ -6719,12 +6729,12 @@ let Ug = class extends Ge {
6719
6729
  super(...arguments);
6720
6730
  j(this, "componentType", "image");
6721
6731
  j(this, "allowedAttributes", ct.Image);
6722
- j(this, "defaultAttributes", N({}, Hg.defaultData.attributes));
6732
+ j(this, "defaultAttributes", y({}, Hg.defaultData.attributes));
6723
6733
  }
6724
6734
  renderElement() {
6725
6735
  return /* @__PURE__ */ A.createElement(
6726
6736
  Wg,
6727
- z(N({}, this.props), {
6737
+ z(y({}, this.props), {
6728
6738
  Com: this,
6729
6739
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
6730
6740
  })
@@ -6738,7 +6748,7 @@ const qg = (e) => {
6738
6748
  return sa.isVariable(a) && (a = sa.renderWithData(a, u || {}) || Ol({
6739
6749
  title: Cr("Dynamically Generated"),
6740
6750
  description: Cr("This image will be dynamically generated")
6741
- })), /* @__PURE__ */ A.createElement("img", z(N({}, e.attributes), { src: a }));
6751
+ })), /* @__PURE__ */ A.createElement("img", z(y({}, e.attributes), { src: a }));
6742
6752
  }, [u, e.attributes]);
6743
6753
  }, Wg = (e) => {
6744
6754
  const u = nt(), a = ve(
@@ -6746,7 +6756,7 @@ const qg = (e) => {
6746
6756
  const _ = nl({
6747
6757
  attributes: x,
6748
6758
  containerWidth: u.containerWidth
6749
- }), g = p(x, "full-width") === "full-width", { parsedWidth: y, unit: w } = eu(_);
6759
+ }), g = p(x, "full-width") === "full-width", { parsedWidth: N, unit: w } = eu(_);
6750
6760
  return {
6751
6761
  img: {
6752
6762
  border: p(x, "border"),
@@ -6766,20 +6776,20 @@ const qg = (e) => {
6766
6776
  "font-size": p(x, "font-size")
6767
6777
  },
6768
6778
  td: {
6769
- width: g ? null : `${y}${w}`,
6779
+ width: g ? null : `${N}${w}`,
6770
6780
  position: "relative"
6771
6781
  },
6772
6782
  table: {
6773
6783
  "min-width": g ? "100%" : null,
6774
6784
  "max-width": g ? "100%" : null,
6775
- width: g ? `${y}${w}` : null,
6785
+ width: g ? `${N}${w}` : null,
6776
6786
  "border-collapse": "collapse",
6777
6787
  "border-spacing": "0px"
6778
6788
  }
6779
6789
  };
6780
6790
  },
6781
6791
  [u.containerWidth]
6782
- ), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
6792
+ ), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
6783
6793
  defaultAttributes: e.Com.defaultAttributes,
6784
6794
  allowedAttributes: e.Com.allowedAttributes,
6785
6795
  getDefaultStyles: a
@@ -6788,7 +6798,7 @@ const qg = (e) => {
6788
6798
  style: "td",
6789
6799
  class: p(s, "fluid-on-mobile") ? "mj-full-width-mobile" : null
6790
6800
  });
6791
- return x.style = z(N({}, x.style), {
6801
+ return x.style = z(y({}, x.style), {
6792
6802
  positon: "relative"
6793
6803
  }), x;
6794
6804
  }, [s, l]), b = V(() => l({
@@ -6813,18 +6823,18 @@ const qg = (e) => {
6813
6823
  containerWidth: u.containerWidth
6814
6824
  }),
6815
6825
  usemap: p(s, "usemap")
6816
- }), y = /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(qg, { attributes: g }), e.childrenWithPlaceholder);
6826
+ }), N = /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(qg, { attributes: g }), e.childrenWithPlaceholder);
6817
6827
  return p(s, "href") ? /* @__PURE__ */ A.createElement(
6818
6828
  "a",
6819
- N({}, l({
6829
+ y({}, l({
6820
6830
  href: p(s, "href"),
6821
6831
  target: p(s, "target"),
6822
6832
  rel: p(s, "rel"),
6823
6833
  name: p(s, "name"),
6824
6834
  title: p(s, "title")
6825
6835
  })),
6826
- y
6827
- ) : y;
6836
+ N
6837
+ ) : N;
6828
6838
  }, [
6829
6839
  s,
6830
6840
  u.containerWidth,
@@ -6845,7 +6855,7 @@ const qg = (e) => {
6845
6855
  componentType: e.Com.componentType,
6846
6856
  getHtmlAttributes: l
6847
6857
  },
6848
- /* @__PURE__ */ A.createElement("table", N({}, b), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", N({}, m), L))), /* @__PURE__ */ A.createElement("style", null, R))
6858
+ /* @__PURE__ */ A.createElement("table", y({}, b), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", y({}, m), L))), /* @__PURE__ */ A.createElement("style", null, R))
6849
6859
  ), [
6850
6860
  l,
6851
6861
  R,
@@ -6886,12 +6896,12 @@ let Gg = class extends Ge {
6886
6896
  super(...arguments);
6887
6897
  j(this, "componentType", "divider");
6888
6898
  j(this, "allowedAttributes", ct.Divider);
6889
- j(this, "defaultAttributes", N({}, Qg.defaultData.attributes));
6899
+ j(this, "defaultAttributes", y({}, Qg.defaultData.attributes));
6890
6900
  }
6891
6901
  renderElement() {
6892
6902
  return /* @__PURE__ */ A.createElement(
6893
6903
  Yg,
6894
- z(N({}, this.props), {
6904
+ z(y({}, this.props), {
6895
6905
  Com: this,
6896
6906
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
6897
6907
  })
@@ -6912,7 +6922,7 @@ const Yg = (e) => {
6912
6922
  };
6913
6923
  return {
6914
6924
  p: F,
6915
- outlook: z(N({}, F), {
6925
+ outlook: z(y({}, F), {
6916
6926
  width: Vg({
6917
6927
  attributes: L,
6918
6928
  containerWidth: u.containerWidth
@@ -6921,7 +6931,7 @@ const Yg = (e) => {
6921
6931
  };
6922
6932
  },
6923
6933
  [u.containerWidth]
6924
- ), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
6934
+ ), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
6925
6935
  defaultAttributes: e.Com.defaultAttributes,
6926
6936
  allowedAttributes: e.Com.allowedAttributes,
6927
6937
  getDefaultStyles: a
@@ -6933,7 +6943,7 @@ const Yg = (e) => {
6933
6943
  componentType: e.Com.componentType,
6934
6944
  getHtmlAttributes: l
6935
6945
  },
6936
- /* @__PURE__ */ A.createElement("p", N({}, m), e.childrenWithPlaceholder)
6946
+ /* @__PURE__ */ A.createElement("p", y({}, m), e.childrenWithPlaceholder)
6937
6947
  ), [
6938
6948
  s,
6939
6949
  l,
@@ -6957,12 +6967,12 @@ class jg extends Ge {
6957
6967
  super(...arguments);
6958
6968
  j(this, "componentType", "spacer");
6959
6969
  j(this, "allowedAttributes", ct.Spacer);
6960
- j(this, "defaultAttributes", N({}, zg.defaultData.attributes));
6970
+ j(this, "defaultAttributes", y({}, zg.defaultData.attributes));
6961
6971
  }
6962
6972
  renderElement() {
6963
6973
  return /* @__PURE__ */ A.createElement(
6964
6974
  Xg,
6965
- z(N({}, this.props), {
6975
+ z(y({}, this.props), {
6966
6976
  Com: this,
6967
6977
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
6968
6978
  })
@@ -6975,7 +6985,7 @@ const Xg = (e) => {
6975
6985
  height: p(L, "height"),
6976
6986
  "line-height": p(L, "height")
6977
6987
  }
6978
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
6988
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
6979
6989
  defaultAttributes: e.Com.defaultAttributes,
6980
6990
  allowedAttributes: e.Com.allowedAttributes,
6981
6991
  getDefaultStyles: a
@@ -6987,7 +6997,7 @@ const Xg = (e) => {
6987
6997
  componentType: e.Com.componentType,
6988
6998
  getHtmlAttributes: l
6989
6999
  },
6990
- /* @__PURE__ */ A.createElement("div", N({}, m), e.childrenWithPlaceholder)
7000
+ /* @__PURE__ */ A.createElement("div", y({}, m), e.childrenWithPlaceholder)
6991
7001
  ), [
6992
7002
  m,
6993
7003
  l,
@@ -10215,7 +10225,7 @@ const br = {
10215
10225
  return e.sourceCodeLocation;
10216
10226
  },
10217
10227
  updateNodeSourceCodeLocation(e, u) {
10218
- e.sourceCodeLocation = N(N({}, e.sourceCodeLocation), u);
10228
+ e.sourceCodeLocation = y(y({}, e.sourceCodeLocation), u);
10219
10229
  }
10220
10230
  }, Gl = "html", Nb = "about:legacy-compat", yb = "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd", Yl = [
10221
10231
  "+//silmaril//dtd html pro v0r11 19970101//",
@@ -10531,7 +10541,7 @@ const Gb = {
10531
10541
  };
10532
10542
  class Yb {
10533
10543
  constructor(u, a, s = null, l = null) {
10534
- this.fragmentContext = s, this.scriptHandler = l, this.currentToken = null, this.stopped = !1, this.insertionMode = D.INITIAL, this.originalInsertionMode = D.INITIAL, this.headElement = null, this.formElement = null, this.currentNotInHTML = !1, this.tmplInsertionModeStack = [], this.pendingCharacterTokens = [], this.hasNonWhitespacePendingCharacterToken = !1, this.framesetOk = !0, this.skipNextNewLine = !1, this.fosterParentingEnabled = !1, this.options = N(N({}, fl), u), this.treeAdapter = this.options.treeAdapter, this.onParseError = this.options.onParseError, this.onParseError && (this.options.sourceCodeLocationInfo = !0), this.document = a != null ? a : this.treeAdapter.createDocument(), this.tokenizer = new mb(this.options, this), this.activeFormattingElements = new _b(this.treeAdapter), this.fragmentContextID = s ? Dn(this.treeAdapter.getTagName(s)) : i.UNKNOWN, this._setContextModes(s != null ? s : this.document, this.fragmentContextID), this.openElements = new Cb(this.document, this.treeAdapter, this);
10544
+ this.fragmentContext = s, this.scriptHandler = l, this.currentToken = null, this.stopped = !1, this.insertionMode = D.INITIAL, this.originalInsertionMode = D.INITIAL, this.headElement = null, this.formElement = null, this.currentNotInHTML = !1, this.tmplInsertionModeStack = [], this.pendingCharacterTokens = [], this.hasNonWhitespacePendingCharacterToken = !1, this.framesetOk = !0, this.skipNextNewLine = !1, this.fosterParentingEnabled = !1, this.options = y(y({}, fl), u), this.treeAdapter = this.options.treeAdapter, this.onParseError = this.options.onParseError, this.onParseError && (this.options.sourceCodeLocationInfo = !0), this.document = a != null ? a : this.treeAdapter.createDocument(), this.tokenizer = new mb(this.options, this), this.activeFormattingElements = new _b(this.treeAdapter), this.fragmentContextID = s ? Dn(this.treeAdapter.getTagName(s)) : i.UNKNOWN, this._setContextModes(s != null ? s : this.document, this.fragmentContextID), this.openElements = new Cb(this.document, this.treeAdapter, this);
10535
10545
  }
10536
10546
  // API
10537
10547
  static parse(u, a) {
@@ -10539,7 +10549,7 @@ class Yb {
10539
10549
  return s.tokenizer.write(u, !0), s.document;
10540
10550
  }
10541
10551
  static getFragmentParser(u, a) {
10542
- const s = N(N({}, fl), a);
10552
+ const s = y(y({}, fl), a);
10543
10553
  u != null || (u = s.treeAdapter.createElement(S.TEMPLATE, U.HTML, []));
10544
10554
  const l = s.treeAdapter.createElement("documentmock", U.HTML, []), m = new this(s, l, u);
10545
10555
  return m.fragmentContextID === i.TEMPLATE && m.tmplInsertionModeStack.unshift(D.IN_TEMPLATE), m._initTokenizerForFragmentParsing(), m._insertFakeRootElement(), m._resetInsertionMode(), m._findFormInFragmentContext(), m;
@@ -10637,7 +10647,7 @@ class Yb {
10637
10647
  }
10638
10648
  _attachElementToTree(u, a) {
10639
10649
  if (this.options.sourceCodeLocationInfo) {
10640
- const s = a && z(N({}, a), {
10650
+ const s = a && z(y({}, a), {
10641
10651
  startTag: a
10642
10652
  });
10643
10653
  this.treeAdapter.setNodeSourceCodeLocation(u, s);
@@ -10694,7 +10704,7 @@ class Yb {
10694
10704
  // NOTE: For cases like <p> <p> </p> - First 'p' closes without a closing
10695
10705
  // tag and for cases like <td> <p> </td> - 'p' closes without a closing tag.
10696
10706
  a.type === Se.END_TAG && l === a.tagName ? {
10697
- endTag: N({}, s),
10707
+ endTag: y({}, s),
10698
10708
  endLine: s.endLine,
10699
10709
  endCol: s.endCol,
10700
10710
  endOffset: s.endOffset
@@ -12744,7 +12754,7 @@ function f0(e) {
12744
12754
  return ["table", "tbody", "tr", "td"].includes((b = u.parentNode) == null ? void 0 : b.nodeName) && u.value.trim() === "" ? null : u.value;
12745
12755
  if (u.nodeName === "#comment")
12746
12756
  return null;
12747
- const l = N({}, a);
12757
+ const l = y({}, a);
12748
12758
  u.attrs.forEach((L) => {
12749
12759
  let R = L.name;
12750
12760
  (R === "class" || R === "classname") && (R = "className"), R === "for" && (R = "htmlFor"), R.startsWith("cell") && (R = ku(R.replace(/^cell(.*)$/, "cell_$1"))), R = ku(R), R === "verticalAlign" && (R = "verticalalign"), l[R] = L.value, R === "style" && (l[R] = x3(L.value));
@@ -12776,12 +12786,12 @@ class L3 extends Ge {
12776
12786
  super(...arguments);
12777
12787
  j(this, "componentType", "raw");
12778
12788
  j(this, "allowedAttributes", ct.Raw);
12779
- j(this, "defaultAttributes", N({}, B3.defaultData.attributes));
12789
+ j(this, "defaultAttributes", y({}, B3.defaultData.attributes));
12780
12790
  }
12781
12791
  renderElement() {
12782
12792
  return /* @__PURE__ */ A.createElement(
12783
12793
  R3,
12784
- z(N({}, this.props), {
12794
+ z(y({}, this.props), {
12785
12795
  Com: this,
12786
12796
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
12787
12797
  })
@@ -12792,7 +12802,7 @@ const R3 = (e) => V(() => /* @__PURE__ */ A.createElement(
12792
12802
  I3,
12793
12803
  {
12794
12804
  content: e.element.data.content,
12795
- domAttributes: z(N({
12805
+ domAttributes: z(y({
12796
12806
  contentEditable: !1
12797
12807
  }, e.attributes), {
12798
12808
  "data-slate-block": e.Com.componentType
@@ -12811,7 +12821,7 @@ class S3 extends Ge {
12811
12821
  j(this, "componentType", "table");
12812
12822
  j(this, "endingTag", !0);
12813
12823
  j(this, "allowedAttributes", ct.Table);
12814
- j(this, "defaultAttributes", N({}, v3.defaultData.attributes));
12824
+ j(this, "defaultAttributes", y({}, v3.defaultData.attributes));
12815
12825
  }
12816
12826
  renderChildrenWithPlaceholder() {
12817
12827
  return /* @__PURE__ */ A.createElement(A.Fragment, null, this.props.placeholder, this.props.children);
@@ -12819,7 +12829,7 @@ class S3 extends Ge {
12819
12829
  renderElement() {
12820
12830
  return /* @__PURE__ */ A.createElement(
12821
12831
  O3,
12822
- z(N({}, this.props), {
12832
+ z(y({}, this.props), {
12823
12833
  Com: this,
12824
12834
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
12825
12835
  })
@@ -12837,16 +12847,16 @@ const O3 = (e) => {
12837
12847
  width: p(R, "width"),
12838
12848
  border: p(R, "border")
12839
12849
  }
12840
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
12850
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
12841
12851
  defaultAttributes: e.Com.defaultAttributes,
12842
12852
  allowedAttributes: e.Com.allowedAttributes,
12843
12853
  getDefaultStyles: a
12844
12854
  })), m = V(() => {
12845
12855
  const R = p(s, "width"), { parsedWidth: F, unit: x } = eu(R);
12846
12856
  return x === "%" ? R : F;
12847
- }, [s]), b = V(() => l(z(N({}, ss(
12857
+ }, [s]), b = V(() => l(z(y({}, ss(
12848
12858
  ["cellpadding", "cellspacing", "role"],
12849
- (R, F) => z(N({}, R), {
12859
+ (R, F) => z(y({}, R), {
12850
12860
  [F]: p(s, F)
12851
12861
  }),
12852
12862
  {}
@@ -12864,7 +12874,7 @@ const O3 = (e) => {
12864
12874
  },
12865
12875
  /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(
12866
12876
  "table",
12867
- z(N({}, b), {
12877
+ z(y({}, b), {
12868
12878
  dangerouslySetInnerHTML: {
12869
12879
  __html: ug.decode(e.element.data.code)
12870
12880
  }
@@ -12899,12 +12909,12 @@ let w3 = class extends Ge {
12899
12909
  super(...arguments);
12900
12910
  j(this, "componentType", "group");
12901
12911
  j(this, "allowedAttributes", ct.Group);
12902
- j(this, "defaultAttributes", N({}, P3.defaultData.attributes));
12912
+ j(this, "defaultAttributes", y({}, P3.defaultData.attributes));
12903
12913
  }
12904
12914
  renderElement() {
12905
12915
  return /* @__PURE__ */ A.createElement(
12906
12916
  F3,
12907
- z(N({}, this.props), {
12917
+ z(y({}, this.props), {
12908
12918
  Com: this,
12909
12919
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
12910
12920
  })
@@ -12919,7 +12929,7 @@ const F3 = (e) => {
12919
12929
  }, [(F = u.element) == null ? void 0 : F.children]), s = ve(
12920
12930
  (x) => {
12921
12931
  const _ = () => {
12922
- const { containerWidth: g } = u, { unit: y, parsedWidth: w } = eu(
12932
+ const { containerWidth: g } = u, { unit: N, parsedWidth: w } = eu(
12923
12933
  An({
12924
12934
  isToString: !0,
12925
12935
  nonRawSiblings: a,
@@ -12929,7 +12939,7 @@ const F3 = (e) => {
12929
12939
  parseFloatToInt: !1
12930
12940
  }
12931
12941
  );
12932
- return y === "%" ? `${parseFloat(g) * w / 100}px` : `${w}px`;
12942
+ return N === "%" ? `${parseFloat(g) * w / 100}px` : `${w}px`;
12933
12943
  };
12934
12944
  return {
12935
12945
  div: {
@@ -12949,7 +12959,7 @@ const F3 = (e) => {
12949
12959
  };
12950
12960
  },
12951
12961
  [u, a]
12952
- ), { attributes: l, getHtmlAttributes: m } = rt(z(N({}, e), {
12962
+ ), { attributes: l, getHtmlAttributes: m } = rt(z(y({}, e), {
12953
12963
  defaultAttributes: e.Com.defaultAttributes,
12954
12964
  allowedAttributes: e.Com.allowedAttributes,
12955
12965
  getDefaultStyles: s
@@ -12958,14 +12968,14 @@ const F3 = (e) => {
12958
12968
  const { parsedWidth: _, unit: g } = An({
12959
12969
  nonRawSiblings: a,
12960
12970
  attributes: l
12961
- }), y = _.toString().replace(".", "-");
12971
+ }), N = _.toString().replace(".", "-");
12962
12972
  switch (g) {
12963
12973
  case "%":
12964
- x = `mj-column-per-${y}`;
12974
+ x = `mj-column-per-${N}`;
12965
12975
  break;
12966
12976
  case "px":
12967
12977
  default:
12968
- x = `mj-column-px-${y}`;
12978
+ x = `mj-column-px-${N}`;
12969
12979
  break;
12970
12980
  }
12971
12981
  return {
@@ -12984,7 +12994,7 @@ const F3 = (e) => {
12984
12994
  let g = `${x} mj-outlook-group-fix`;
12985
12995
  return p(l, "css-class") && (g += ` ${p(l, "css-class")}`), /* @__PURE__ */ A.createElement(
12986
12996
  "div",
12987
- N(z(N({}, e.attributes), {
12997
+ y(z(y({}, e.attributes), {
12988
12998
  "data-slate-block": e.Com.componentType
12989
12999
  }), m({
12990
13000
  class: g,
@@ -13003,10 +13013,10 @@ const F3 = (e) => {
13003
13013
  ]), R = V(() => {
13004
13014
  const x = u.containerWidth, _ = Ot(l, "padding", "left") + Ot(l, "padding", "right");
13005
13015
  let g = p(l, "width") || `${parseFloat(x) / a}px`;
13006
- const { unit: y, parsedWidth: w } = eu(g, {
13016
+ const { unit: N, parsedWidth: w } = eu(g, {
13007
13017
  parseFloatToInt: !1
13008
13018
  });
13009
- return y === "%" ? g = `${parseFloat(x) * w / 100 - _}px` : g = `${w - _}px`, g;
13019
+ return N === "%" ? g = `${parseFloat(x) * w / 100 - _}px` : g = `${w - _}px`, g;
13010
13020
  }, [l, u.containerWidth, a]);
13011
13021
  return /* @__PURE__ */ A.createElement(
13012
13022
  at,
@@ -13029,12 +13039,12 @@ let U3 = class extends Ge {
13029
13039
  super(...arguments);
13030
13040
  j(this, "componentType", "hero");
13031
13041
  j(this, "allowedAttributes", ct.Hero);
13032
- j(this, "defaultAttributes", N({}, M3.defaultData.attributes));
13042
+ j(this, "defaultAttributes", y({}, M3.defaultData.attributes));
13033
13043
  }
13034
13044
  renderElement() {
13035
13045
  return /* @__PURE__ */ A.createElement(
13036
13046
  q3,
13037
- z(N({}, this.props), {
13047
+ z(y({}, this.props), {
13038
13048
  Com: this,
13039
13049
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
13040
13050
  })
@@ -13046,7 +13056,7 @@ const q3 = (e) => {
13046
13056
  (x) => {
13047
13057
  const _ = a, g = Math.round(
13048
13058
  parseInt(p(x, "background-height", ""), 10) / parseInt(p(x, "background-width", ""), 10) * 100
13049
- ), y = p(x, "background-width") || _;
13059
+ ), N = p(x, "background-width") || _;
13050
13060
  return {
13051
13061
  div: {
13052
13062
  margin: "0 auto",
@@ -13063,7 +13073,7 @@ const q3 = (e) => {
13063
13073
  "padding-bottom": `${g}%`,
13064
13074
  "mso-padding-bottom-alt": "0"
13065
13075
  },
13066
- hero: z(N({}, H3(x)), {
13076
+ hero: z(y({}, H3(x)), {
13067
13077
  "background-position": p(x, "background-position"),
13068
13078
  "background-repeat": "no-repeat",
13069
13079
  "border-radius": p(x, "border-radius"),
@@ -13091,7 +13101,7 @@ const q3 = (e) => {
13091
13101
  "mso-position-horizontal": "center",
13092
13102
  position: "absolute",
13093
13103
  top: 0,
13094
- width: y,
13104
+ width: N,
13095
13105
  "z-index": "-3"
13096
13106
  },
13097
13107
  "outlook-inner-td": {
@@ -13115,29 +13125,29 @@ const q3 = (e) => {
13115
13125
  };
13116
13126
  },
13117
13127
  [a]
13118
- ), { attributes: l, getHtmlAttributes: m } = rt(z(N({}, e), {
13128
+ ), { attributes: l, getHtmlAttributes: m } = rt(z(y({}, e), {
13119
13129
  defaultAttributes: e.Com.defaultAttributes,
13120
13130
  allowedAttributes: e.Com.allowedAttributes,
13121
13131
  getDefaultStyles: s
13122
13132
  })), b = V(() => /* @__PURE__ */ A.createElement(
13123
13133
  "div",
13124
- N({}, m({
13134
+ y({}, m({
13125
13135
  align: p(l, "align"),
13126
13136
  class: "mj-hero-content",
13127
13137
  style: "inner-div"
13128
13138
  })),
13129
13139
  /* @__PURE__ */ A.createElement(
13130
13140
  "table",
13131
- N({}, m({
13141
+ y({}, m({
13132
13142
  border: "0",
13133
13143
  cellpadding: "0",
13134
13144
  cellspacing: "0",
13135
13145
  role: "presentation",
13136
13146
  style: "inner-table"
13137
13147
  })),
13138
- /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", N({}, m({ style: "inner-td" })), /* @__PURE__ */ A.createElement(
13148
+ /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", y({}, m({ style: "inner-td" })), /* @__PURE__ */ A.createElement(
13139
13149
  "table",
13140
- N({}, m({
13150
+ y({}, m({
13141
13151
  border: "0",
13142
13152
  cellpadding: "0",
13143
13153
  cellspacing: "0",
@@ -13155,13 +13165,13 @@ const q3 = (e) => {
13155
13165
  switch (p(l, "mode")) {
13156
13166
  case "fluid-height":
13157
13167
  const _ = m({ style: "td-fluid" });
13158
- return /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement("td", N({}, _)), /* @__PURE__ */ A.createElement("td", N({}, m(N({}, x))), b), /* @__PURE__ */ A.createElement("td", N({}, _)));
13168
+ return /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement("td", y({}, _)), /* @__PURE__ */ A.createElement("td", y({}, m(y({}, x))), b), /* @__PURE__ */ A.createElement("td", y({}, _)));
13159
13169
  case "fixed-height":
13160
13170
  default:
13161
13171
  const g = parseInt(p(l, "height", ""), 10) - Ot(l, "padding", "top") - Ot(l, "padding", "bottom");
13162
13172
  return /* @__PURE__ */ A.createElement(
13163
13173
  "td",
13164
- N({}, m(z(N({}, x), {
13174
+ y({}, m(z(y({}, x), {
13165
13175
  height: g.toString()
13166
13176
  }))),
13167
13177
  b
@@ -13169,7 +13179,7 @@ const q3 = (e) => {
13169
13179
  }
13170
13180
  }, [l, m, b]), R = V(() => /* @__PURE__ */ A.createElement(
13171
13181
  "div",
13172
- N(N({
13182
+ y(y({
13173
13183
  "data-slate-block": e.Com.componentType
13174
13184
  }, e.attributes), m({
13175
13185
  align: p(l, "align"),
@@ -13178,7 +13188,7 @@ const q3 = (e) => {
13178
13188
  })),
13179
13189
  /* @__PURE__ */ A.createElement(
13180
13190
  "table",
13181
- N({}, m({
13191
+ y({}, m({
13182
13192
  border: "0",
13183
13193
  cellpadding: "0",
13184
13194
  cellspacing: "0",
@@ -13187,7 +13197,7 @@ const q3 = (e) => {
13187
13197
  })),
13188
13198
  /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement(
13189
13199
  "tr",
13190
- N({}, m({
13200
+ y({}, m({
13191
13201
  style: "tr"
13192
13202
  })),
13193
13203
  L
@@ -13202,10 +13212,10 @@ const q3 = (e) => {
13202
13212
  ]), F = V(() => {
13203
13213
  const x = a, _ = Ot(l, "padding", "left") + Ot(l, "padding", "right");
13204
13214
  let g = `${parseFloat(x)}px`;
13205
- const { unit: y, parsedWidth: w } = eu(g, {
13215
+ const { unit: N, parsedWidth: w } = eu(g, {
13206
13216
  parseFloatToInt: !1
13207
13217
  });
13208
- return y === "%" ? g = `${parseFloat(x) * w / 100 - _}px` : g = `${w - _}px`, g;
13218
+ return N === "%" ? g = `${parseFloat(x) * w / 100 - _}px` : g = `${w - _}px`, g;
13209
13219
  }, [l, a]);
13210
13220
  return /* @__PURE__ */ A.createElement(
13211
13221
  at,
@@ -13232,7 +13242,7 @@ class h0 extends Ge {
13232
13242
  }
13233
13243
  renderElement() {
13234
13244
  const a = this.props.element, s = p(a, "attributes.style", ""), l = os(
13235
- z(N(N({}, this.props.attributes), a.attributes), {
13245
+ z(y(y({}, this.props.attributes), a.attributes), {
13236
13246
  style: ia(s) ? El(s) : s,
13237
13247
  "data-slate-block": this.componentType
13238
13248
  }),
@@ -13240,12 +13250,12 @@ class h0 extends Ge {
13240
13250
  ), m = a.data.tagName;
13241
13251
  return m === "img" ? /* @__PURE__ */ A.createElement(
13242
13252
  "span",
13243
- N({}, z(N({}, this.props.attributes), {
13253
+ y({}, z(y({}, this.props.attributes), {
13244
13254
  "data-slate-block": this.componentType
13245
13255
  })),
13246
13256
  dn(
13247
13257
  m,
13248
- z(N({}, a.attributes), {
13258
+ z(y({}, a.attributes), {
13249
13259
  style: ia(s) ? El(s) : s
13250
13260
  }),
13251
13261
  null
@@ -13254,7 +13264,7 @@ class h0 extends Ge {
13254
13264
  ) : dn(m, l, this.props.children);
13255
13265
  }
13256
13266
  }
13257
- j(h0, "defaultAttributes", N({}, W3.defaultData.attributes));
13267
+ j(h0, "defaultAttributes", y({}, W3.defaultData.attributes));
13258
13268
  function Q3(e) {
13259
13269
  if (e)
13260
13270
  return e.split(";").reduceRight((u, a) => {
@@ -13270,7 +13280,7 @@ class A0 extends Ge {
13270
13280
  }
13271
13281
  renderElement() {
13272
13282
  const a = this.props.element, s = p(a, "attributes.style", ""), l = os(
13273
- z(N(N({}, this.props.attributes), a.attributes), {
13283
+ z(y(y({}, this.props.attributes), a.attributes), {
13274
13284
  style: ia(s) ? Q3(s) : s,
13275
13285
  "data-slate-block": this.componentType
13276
13286
  }),
@@ -13279,14 +13289,14 @@ class A0 extends Ge {
13279
13289
  return dn(m, l, this.props.children);
13280
13290
  }
13281
13291
  }
13282
- j(A0, "defaultAttributes", N({}, V3.defaultData.attributes));
13292
+ j(A0, "defaultAttributes", y({}, V3.defaultData.attributes));
13283
13293
  const G3 = De.getBlockByType(me.NAVBAR);
13284
13294
  class Y3 extends Ge {
13285
13295
  constructor() {
13286
13296
  super(...arguments);
13287
13297
  j(this, "componentType", "navbar");
13288
13298
  j(this, "allowedAttributes", ct.Navbar);
13289
- j(this, "defaultAttributes", N({}, G3.defaultData.attributes));
13299
+ j(this, "defaultAttributes", y({}, G3.defaultData.attributes));
13290
13300
  }
13291
13301
  // get navbarBaseUrl() {
13292
13302
  // return this.getAttribute("base-url");
@@ -13294,7 +13304,7 @@ class Y3 extends Ge {
13294
13304
  renderElement() {
13295
13305
  return /* @__PURE__ */ A.createElement(
13296
13306
  z3,
13297
- z(N({}, this.props), {
13307
+ z(y({}, this.props), {
13298
13308
  Com: this,
13299
13309
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
13300
13310
  })
@@ -13338,7 +13348,7 @@ const z3 = (e) => {
13338
13348
  display: "none",
13339
13349
  "mso-hide": "all"
13340
13350
  }
13341
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
13351
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
13342
13352
  defaultAttributes: e.Com.defaultAttributes,
13343
13353
  allowedAttributes: e.Com.allowedAttributes,
13344
13354
  getDefaultStyles: a
@@ -13371,13 +13381,13 @@ const z3 = (e) => {
13371
13381
  }
13372
13382
  ), /* @__PURE__ */ A.createElement(
13373
13383
  "div",
13374
- N({}, l({
13384
+ y({}, l({
13375
13385
  class: "mj-menu-trigger",
13376
13386
  style: "trigger"
13377
13387
  })),
13378
13388
  /* @__PURE__ */ A.createElement(
13379
13389
  "label",
13380
- N({}, l({
13390
+ y({}, l({
13381
13391
  htmlFor: F,
13382
13392
  class: "mj-menu-label",
13383
13393
  style: "label",
@@ -13385,7 +13395,7 @@ const z3 = (e) => {
13385
13395
  })),
13386
13396
  /* @__PURE__ */ A.createElement(
13387
13397
  "span",
13388
- z(N({}, l({
13398
+ z(y({}, l({
13389
13399
  class: "mj-menu-icon-open",
13390
13400
  style: "icoOpen"
13391
13401
  })), {
@@ -13396,7 +13406,7 @@ const z3 = (e) => {
13396
13406
  ),
13397
13407
  /* @__PURE__ */ A.createElement(
13398
13408
  "span",
13399
- z(N({}, l({
13409
+ z(y({}, l({
13400
13410
  class: "mj-menu-icon-close",
13401
13411
  style: "icoClose"
13402
13412
  })), {
@@ -13419,7 +13429,7 @@ const z3 = (e) => {
13419
13429
  componentType: e.Com.componentType,
13420
13430
  getHtmlAttributes: l
13421
13431
  },
13422
- /* @__PURE__ */ A.createElement(A.Fragment, null, L ? m() : "", /* @__PURE__ */ A.createElement("div", N({}, b), e.childrenWithPlaceholder))
13432
+ /* @__PURE__ */ A.createElement(A.Fragment, null, L ? m() : "", /* @__PURE__ */ A.createElement("div", y({}, b), e.childrenWithPlaceholder))
13423
13433
  ), [
13424
13434
  b,
13425
13435
  l,
@@ -13446,12 +13456,12 @@ class X3 extends Ge {
13446
13456
  j(this, "endingTag", !0);
13447
13457
  j(this, "componentType", "navbarlink");
13448
13458
  j(this, "allowedAttributes", ct.NavbarLink);
13449
- j(this, "defaultAttributes", N({}, j3.defaultData.attributes));
13459
+ j(this, "defaultAttributes", y({}, j3.defaultData.attributes));
13450
13460
  }
13451
13461
  renderElement() {
13452
13462
  return /* @__PURE__ */ A.createElement(
13453
13463
  K3,
13454
- z(N({}, this.props), {
13464
+ z(y({}, this.props), {
13455
13465
  Com: this,
13456
13466
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
13457
13467
  })
@@ -13484,15 +13494,15 @@ const K3 = (e) => {
13484
13494
  "padding-right": p(g, "padding-right"),
13485
13495
  "padding-bottom": p(g, "padding-bottom")
13486
13496
  }
13487
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
13497
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
13488
13498
  defaultAttributes: e.Com.defaultAttributes,
13489
13499
  allowedAttributes: e.Com.allowedAttributes,
13490
13500
  getDefaultStyles: a
13491
13501
  })), m = !!p(u.attributes, "isHorizontal"), b = p(u.attributes, "navbarBaseUrl"), L = V(() => {
13492
- const g = p(s, "href"), y = b ? `${b}${g}` : g, w = p(s, "css-class") ? ` ${p(s, "css-class")}` : "";
13502
+ const g = p(s, "href"), N = b ? `${b}${g}` : g, w = p(s, "css-class") ? ` ${p(s, "css-class")}` : "";
13493
13503
  return l({
13494
13504
  class: `mj-link${w}`,
13495
- href: y,
13505
+ href: N,
13496
13506
  rel: p(s, "rel"),
13497
13507
  target: p(s, "target"),
13498
13508
  name: p(s, "name"),
@@ -13508,7 +13518,7 @@ const K3 = (e) => {
13508
13518
  float: "none",
13509
13519
  display: "inline-table"
13510
13520
  }
13511
- }), [l, R]), x = V(() => /* @__PURE__ */ A.createElement("a", N({}, L), e.childrenWithPlaceholder), [L, e.childrenWithPlaceholder]), _ = V(() => m ? /* @__PURE__ */ A.createElement("table", N({}, F), /* @__PURE__ */ A.createElement("tbody", null, x)) : x, [m, x, F]);
13521
+ }), [l, R]), x = V(() => /* @__PURE__ */ A.createElement("a", y({}, L), e.childrenWithPlaceholder), [L, e.childrenWithPlaceholder]), _ = V(() => m ? /* @__PURE__ */ A.createElement("table", y({}, F), /* @__PURE__ */ A.createElement("tbody", null, x)) : x, [m, x, F]);
13512
13522
  return /* @__PURE__ */ A.createElement(
13513
13523
  at,
13514
13524
  {
@@ -13524,7 +13534,7 @@ class J3 extends Ge {
13524
13534
  super(...arguments);
13525
13535
  j(this, "componentType", "social");
13526
13536
  j(this, "allowedAttributes", ct.Social);
13527
- j(this, "defaultAttributes", N({}, Z3.defaultData.attributes));
13537
+ j(this, "defaultAttributes", y({}, Z3.defaultData.attributes));
13528
13538
  }
13529
13539
  renderChildrenWithPlaceholder() {
13530
13540
  return /* @__PURE__ */ A.createElement(A.Fragment, null, this.props.children, this.props.placeholder);
@@ -13532,7 +13542,7 @@ class J3 extends Ge {
13532
13542
  renderElement() {
13533
13543
  return /* @__PURE__ */ A.createElement(
13534
13544
  $3,
13535
- z(N({}, this.props), {
13545
+ z(y({}, this.props), {
13536
13546
  Com: this,
13537
13547
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
13538
13548
  })
@@ -13544,7 +13554,7 @@ const $3 = (e) => {
13544
13554
  tableVertical: {
13545
13555
  margin: "0px"
13546
13556
  }
13547
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
13557
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
13548
13558
  defaultAttributes: e.Com.defaultAttributes,
13549
13559
  allowedAttributes: e.Com.allowedAttributes,
13550
13560
  getDefaultStyles: a
@@ -13554,7 +13564,7 @@ const $3 = (e) => {
13554
13564
  cellspacing: "0",
13555
13565
  role: "presentation",
13556
13566
  style: "tableVertical"
13557
- }), [l]), L = V(() => /* @__PURE__ */ A.createElement("table", N({}, b), /* @__PURE__ */ A.createElement("tbody", null, e.childrenWithPlaceholder)), [e.childrenWithPlaceholder, b]), R = V(() => e.childrenWithPlaceholder, [e.childrenWithPlaceholder]), F = V(() => /* @__PURE__ */ A.createElement(
13567
+ }), [l]), L = V(() => /* @__PURE__ */ A.createElement("table", y({}, b), /* @__PURE__ */ A.createElement("tbody", null, e.childrenWithPlaceholder)), [e.childrenWithPlaceholder, b]), R = V(() => e.childrenWithPlaceholder, [e.childrenWithPlaceholder]), F = V(() => /* @__PURE__ */ A.createElement(
13558
13568
  jt,
13559
13569
  {
13560
13570
  attributes: e.attributes,
@@ -13671,7 +13681,7 @@ const $3 = (e) => {
13671
13681
  }
13672
13682
  };
13673
13683
  gm(ns, (e, u) => {
13674
- ns[`${u}-noshare`] = z(N({}, e), {
13684
+ ns[`${u}-noshare`] = z(y({}, e), {
13675
13685
  "share-url": "[[URL]]"
13676
13686
  });
13677
13687
  });
@@ -13689,12 +13699,12 @@ const ml = ({
13689
13699
  "src",
13690
13700
  "background-color"
13691
13701
  ].reduce(
13692
- (l, m) => z(N({}, l), {
13702
+ (l, m) => z(y({}, l), {
13693
13703
  [m]: p(e, m) || u[m]
13694
13704
  }),
13695
13705
  {}
13696
13706
  );
13697
- return N({
13707
+ return y({
13698
13708
  href: a
13699
13709
  }, s);
13700
13710
  }, eT = De.getBlockByType(me.SOCIAL_ELEMENT);
@@ -13704,12 +13714,12 @@ class tT extends Ge {
13704
13714
  j(this, "componentType", "social-item");
13705
13715
  j(this, "endingTag", !0);
13706
13716
  j(this, "allowedAttributes", ct.SocialElement);
13707
- j(this, "defaultAttributes", N({}, eT.defaultData.attributes));
13717
+ j(this, "defaultAttributes", y({}, eT.defaultData.attributes));
13708
13718
  }
13709
13719
  renderElement() {
13710
13720
  return /* @__PURE__ */ A.createElement(
13711
13721
  uT,
13712
- z(N({}, this.props), {
13722
+ z(y({}, this.props), {
13713
13723
  Com: this,
13714
13724
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
13715
13725
  })
@@ -13763,25 +13773,25 @@ const uT = (e) => {
13763
13773
  "text-decoration": p(Z, "text-decoration")
13764
13774
  }
13765
13775
  };
13766
- }, []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
13776
+ }, []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
13767
13777
  defaultAttributes: e.Com.defaultAttributes,
13768
13778
  allowedAttributes: e.Com.allowedAttributes,
13769
13779
  getDefaultStyles: a
13770
- })), m = V(() => N(N({}, s), u.attributes), [u.attributes, s]), b = V(() => ml({ attributes: m }), [m]), L = p(u.attributes, "mode") === "horizontal", R = !!p(m, "href"), {
13780
+ })), m = V(() => y(y({}, s), u.attributes), [u.attributes, s]), b = V(() => ml({ attributes: m }), [m]), L = p(u.attributes, "mode") === "horizontal", R = !!p(m, "href"), {
13771
13781
  src: F,
13772
13782
  srcset: x,
13773
13783
  sizes: _,
13774
13784
  href: g,
13775
- "icon-size": y,
13785
+ "icon-size": N,
13776
13786
  "icon-height": w
13777
13787
  } = b, P = V(
13778
13788
  () => l({
13779
13789
  alt: m.alt,
13780
13790
  title: m.title,
13781
- height: parseInt(w || y, 10),
13791
+ height: parseInt(w || N, 10),
13782
13792
  src: F,
13783
13793
  style: "img",
13784
- width: parseInt(y, 10),
13794
+ width: parseInt(N, 10),
13785
13795
  sizes: _,
13786
13796
  srcset: x
13787
13797
  }),
@@ -13790,7 +13800,7 @@ const uT = (e) => {
13790
13800
  m.title,
13791
13801
  l,
13792
13802
  w,
13793
- y,
13803
+ N,
13794
13804
  _,
13795
13805
  F,
13796
13806
  x
@@ -13841,18 +13851,18 @@ const uT = (e) => {
13841
13851
  display: "inline-table"
13842
13852
  }
13843
13853
  }), [m.align]), xe = V(() => {
13844
- const Z = /* @__PURE__ */ A.createElement("tr", N(N({}, e.attributes), ge), /* @__PURE__ */ A.createElement("td", N({}, q), /* @__PURE__ */ A.createElement("table", N({}, Q), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", N({}, ue), R ? /* @__PURE__ */ A.createElement("a", N({}, O), /* @__PURE__ */ A.createElement(gl, { attributes: P })) : /* @__PURE__ */ A.createElement("a", N({}, O), /* @__PURE__ */ A.createElement(gl, { attributes: P }))))))), /* @__PURE__ */ A.createElement(
13854
+ const Z = /* @__PURE__ */ A.createElement("tr", y(y({}, e.attributes), ge), /* @__PURE__ */ A.createElement("td", y({}, q), /* @__PURE__ */ A.createElement("table", y({}, Q), /* @__PURE__ */ A.createElement("tbody", null, /* @__PURE__ */ A.createElement("tr", null, /* @__PURE__ */ A.createElement("td", y({}, ue), R ? /* @__PURE__ */ A.createElement("a", y({}, O), /* @__PURE__ */ A.createElement(gl, { attributes: P })) : /* @__PURE__ */ A.createElement("a", y({}, O), /* @__PURE__ */ A.createElement(gl, { attributes: P }))))))), /* @__PURE__ */ A.createElement(
13845
13855
  "td",
13846
- z(N({}, K), {
13847
- style: z(N({}, K.style || {}), {
13856
+ z(y({}, K), {
13857
+ style: z(y({}, K.style || {}), {
13848
13858
  width: te ? void 0 : "0px",
13849
13859
  overflow: te ? void 0 : "hidden",
13850
13860
  padding: te ? void 0 : "0px"
13851
13861
  })
13852
13862
  }),
13853
- R ? /* @__PURE__ */ A.createElement("a", N({}, oe), e.childrenWithPlaceholder) : /* @__PURE__ */ A.createElement("span", N({}, ae), e.childrenWithPlaceholder)
13863
+ R ? /* @__PURE__ */ A.createElement("a", y({}, oe), e.childrenWithPlaceholder) : /* @__PURE__ */ A.createElement("span", y({}, ae), e.childrenWithPlaceholder)
13854
13864
  ));
13855
- return L ? /* @__PURE__ */ A.createElement("table", N({}, se), /* @__PURE__ */ A.createElement("tbody", null, Z)) : Z;
13865
+ return L ? /* @__PURE__ */ A.createElement("table", y({}, se), /* @__PURE__ */ A.createElement("tbody", null, Z)) : Z;
13856
13866
  }, [
13857
13867
  te,
13858
13868
  R,
@@ -13886,7 +13896,7 @@ const uT = (e) => {
13886
13896
  return sa.isVariable(a) && (a = sa.renderWithData(a, u || {}) || Ol({
13887
13897
  title: Cr("Dynamically Generated"),
13888
13898
  description: Cr("This image will be dynamically generated")
13889
- })), /* @__PURE__ */ A.createElement("img", z(N({}, e.attributes), { src: a }));
13899
+ })), /* @__PURE__ */ A.createElement("img", z(y({}, e.attributes), { src: a }));
13890
13900
  }, [u, e.attributes]);
13891
13901
  };
13892
13902
  class rT extends Ug {
@@ -13896,7 +13906,7 @@ class aT extends bg {
13896
13906
  const nT = De.getBlockByType(me.HERO);
13897
13907
  class E0 extends U3 {
13898
13908
  }
13899
- j(E0, "defaultAttributes", N({}, nT.defaultData.attributes));
13909
+ j(E0, "defaultAttributes", y({}, nT.defaultData.attributes));
13900
13910
  class iT extends w3 {
13901
13911
  }
13902
13912
  class sT extends _g {
@@ -13909,13 +13919,13 @@ const lT = De.getBlockByType(me.STANDARD_BLOCK_QUOTE), dT = De.getBlockByType(me
13909
13919
  class fT extends hs {
13910
13920
  constructor() {
13911
13921
  super(...arguments);
13912
- j(this, "allowedAttributes", N({}, ct.Text));
13913
- j(this, "defaultAttributes", N(N({}, dT.defaultData.attributes), lT.defaultData.attributes));
13922
+ j(this, "allowedAttributes", y({}, ct.Text));
13923
+ j(this, "defaultAttributes", y(y({}, dT.defaultData.attributes), lT.defaultData.attributes));
13914
13924
  }
13915
13925
  renderElement() {
13916
13926
  return /* @__PURE__ */ A.createElement(
13917
13927
  hT,
13918
- z(N({}, this.props), {
13928
+ z(y({}, this.props), {
13919
13929
  Com: this,
13920
13930
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
13921
13931
  })
@@ -13937,7 +13947,7 @@ const hT = (e) => {
13937
13947
  color: b.color,
13938
13948
  height: b.height
13939
13949
  }
13940
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
13950
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
13941
13951
  defaultAttributes: e.Com.defaultAttributes,
13942
13952
  allowedAttributes: e.Com.allowedAttributes,
13943
13953
  getDefaultStyles: a
@@ -13951,7 +13961,7 @@ const hT = (e) => {
13951
13961
  },
13952
13962
  /* @__PURE__ */ A.createElement(
13953
13963
  "div",
13954
- z(N({}, l({
13964
+ z(y({}, l({
13955
13965
  style: "text"
13956
13966
  })), {
13957
13967
  "data-slate-block": e.Com.componentType
@@ -13994,15 +14004,15 @@ const ET = De.getBlockByType(me.TEXT), mT = De.getBlockByType(me.STANDARD_TEXT_L
13994
14004
  class gT extends hs {
13995
14005
  constructor() {
13996
14006
  super(...arguments);
13997
- j(this, "allowedAttributes", z(N({}, ct.Text), {
14007
+ j(this, "allowedAttributes", z(y({}, ct.Text), {
13998
14008
  "list-style": "string"
13999
14009
  }));
14000
- j(this, "defaultAttributes", N(N({}, ET.defaultData.attributes), mT.defaultData.attributes));
14010
+ j(this, "defaultAttributes", y(y({}, ET.defaultData.attributes), mT.defaultData.attributes));
14001
14011
  }
14002
14012
  renderElement() {
14003
14013
  return /* @__PURE__ */ A.createElement(
14004
14014
  bT,
14005
- z(N({}, this.props), {
14015
+ z(y({}, this.props), {
14006
14016
  Com: this,
14007
14017
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
14008
14018
  })
@@ -14025,7 +14035,7 @@ const bT = (e) => {
14025
14035
  height: b.height
14026
14036
  }
14027
14037
  }), []), { attributes: s, getHtmlAttributes: l } = rt(
14028
- z(N({}, e), {
14038
+ z(y({}, e), {
14029
14039
  defaultAttributes: e.Com.defaultAttributes,
14030
14040
  allowedAttributes: e.Com.allowedAttributes,
14031
14041
  getDefaultStyles: a
@@ -14040,7 +14050,7 @@ const bT = (e) => {
14040
14050
  },
14041
14051
  /* @__PURE__ */ A.createElement(
14042
14052
  "div",
14043
- z(N({}, l({
14053
+ z(y({}, l({
14044
14054
  style: "text"
14045
14055
  })), {
14046
14056
  "data-slate-block": e.Com.componentType
@@ -14070,7 +14080,7 @@ class pT extends Ge {
14070
14080
  j(this, "componentType", "text-list");
14071
14081
  }
14072
14082
  renderElement() {
14073
- return /* @__PURE__ */ A.createElement("li", N({}, this.props.attributes), this.renderChildrenWithPlaceholder());
14083
+ return /* @__PURE__ */ A.createElement("li", y({}, this.props.attributes), this.renderChildrenWithPlaceholder());
14074
14084
  }
14075
14085
  }
14076
14086
  const TT = De.getBlockByType(me.MERGETAG), DT = (e, u) => {
@@ -14088,7 +14098,7 @@ class m0 extends Ge {
14088
14098
  }
14089
14099
  renderElement() {
14090
14100
  const a = this.props.element.children[0];
14091
- return /* @__PURE__ */ A.createElement("span", N({}, this.props.attributes), /* @__PURE__ */ A.createElement(
14101
+ return /* @__PURE__ */ A.createElement("span", y({}, this.props.attributes), /* @__PURE__ */ A.createElement(
14092
14102
  CT,
14093
14103
  {
14094
14104
  value: a.text,
@@ -14098,7 +14108,7 @@ class m0 extends Ge {
14098
14108
  ));
14099
14109
  }
14100
14110
  }
14101
- j(m0, "defaultAttributes", N({}, TT.defaultData.attributes));
14111
+ j(m0, "defaultAttributes", y({}, TT.defaultData.attributes));
14102
14112
  function CT({
14103
14113
  value: e,
14104
14114
  children: u,
@@ -14137,10 +14147,10 @@ class g0 extends Ge {
14137
14147
  j(this, "componentType", "LineBreak");
14138
14148
  }
14139
14149
  renderElement() {
14140
- return /* @__PURE__ */ A.createElement("span", N({}, this.props.attributes), /* @__PURE__ */ A.createElement("span", { style: { position: "absolute", opacity: 0 } }, this.props.children), /* @__PURE__ */ A.createElement("br", null));
14150
+ return /* @__PURE__ */ A.createElement("span", y({}, this.props.attributes), /* @__PURE__ */ A.createElement("span", { style: { position: "absolute", opacity: 0 } }, this.props.children), /* @__PURE__ */ A.createElement("br", null));
14141
14151
  }
14142
14152
  }
14143
- j(g0, "defaultAttributes", N({}, _T.defaultData.attributes));
14153
+ j(g0, "defaultAttributes", y({}, _T.defaultData.attributes));
14144
14154
  const NT = De.getBlockByType(me.PLACEHOLDER);
14145
14155
  class b0 extends Ge {
14146
14156
  constructor() {
@@ -14150,16 +14160,16 @@ class b0 extends Ge {
14150
14160
  renderElement() {
14151
14161
  return /* @__PURE__ */ A.createElement(
14152
14162
  yT,
14153
- z(N({}, this.props), {
14163
+ z(y({}, this.props), {
14154
14164
  Com: this,
14155
14165
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
14156
14166
  })
14157
14167
  );
14158
14168
  }
14159
14169
  }
14160
- j(b0, "defaultAttributes", N({}, NT.defaultData.attributes));
14170
+ j(b0, "defaultAttributes", y({}, NT.defaultData.attributes));
14161
14171
  const yT = (e) => {
14162
- const u = nt(), a = ve((b) => ({}), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
14172
+ const u = nt(), a = ve((b) => ({}), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
14163
14173
  defaultAttributes: e.Com.defaultAttributes,
14164
14174
  allowedAttributes: e.Com.allowedAttributes,
14165
14175
  getDefaultStyles: a
@@ -14204,7 +14214,7 @@ class xT extends vl {
14204
14214
  constructor() {
14205
14215
  super(...arguments);
14206
14216
  j(this, "componentType", "wrapper");
14207
- j(this, "defaultAttributes", N({}, IT.defaultData.attributes));
14217
+ j(this, "defaultAttributes", y({}, IT.defaultData.attributes));
14208
14218
  }
14209
14219
  }
14210
14220
  const BT = De.getBlockByType(me.HTML_DOM_NODE);
@@ -14213,11 +14223,11 @@ class LT extends Ge {
14213
14223
  super(...arguments);
14214
14224
  j(this, "componentType", "html-dom-node");
14215
14225
  j(this, "allowedAttributes", {});
14216
- j(this, "defaultAttributes", N({}, BT.defaultData.attributes));
14226
+ j(this, "defaultAttributes", y({}, BT.defaultData.attributes));
14217
14227
  }
14218
14228
  renderElement() {
14219
14229
  const a = this.props.element.data.tagName, s = os(
14220
- z(N(N({}, this.props.attributes), this.props.element.attributes), {
14230
+ z(y(y({}, this.props.attributes), this.props.element.attributes), {
14221
14231
  "data-slate-block": this.componentType
14222
14232
  }),
14223
14233
  "tagName"
@@ -14236,12 +14246,12 @@ class vT extends Ge {
14236
14246
  j(this, "componentType", pr.DANGEROUS_CODE);
14237
14247
  j(this, "endingTag", !0);
14238
14248
  j(this, "allowedAttributes", ct.Text);
14239
- j(this, "defaultAttributes", N({}, RT.defaultData.attributes));
14249
+ j(this, "defaultAttributes", y({}, RT.defaultData.attributes));
14240
14250
  }
14241
14251
  renderElement() {
14242
14252
  return /* @__PURE__ */ A.createElement(
14243
14253
  ST,
14244
- z(N({}, this.props), {
14254
+ z(y({}, this.props), {
14245
14255
  Com: this,
14246
14256
  childrenWithPlaceholder: this.renderChildrenWithPlaceholder()
14247
14257
  })
@@ -14266,7 +14276,7 @@ const ST = (e) => {
14266
14276
  "white-space": "normal"
14267
14277
  // 需要加上,不然有很多间隙
14268
14278
  }
14269
- }), []), { attributes: s, getHtmlAttributes: l } = rt(z(N({}, e), {
14279
+ }), []), { attributes: s, getHtmlAttributes: l } = rt(z(y({}, e), {
14270
14280
  defaultAttributes: e.Com.defaultAttributes,
14271
14281
  allowedAttributes: e.Com.allowedAttributes,
14272
14282
  getDefaultStyles: a
@@ -14280,7 +14290,7 @@ const ST = (e) => {
14280
14290
  },
14281
14291
  /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(
14282
14292
  "div",
14283
- N({
14293
+ y({
14284
14294
  contentEditable: !1
14285
14295
  }, l({
14286
14296
  style: "text"
@@ -14351,12 +14361,12 @@ const ST = (e) => {
14351
14361
  });
14352
14362
  } catch (K) {
14353
14363
  }
14354
- const _ = V(() => (la(e, l.current) || (l.current = e), l.current), [e]), g = F ? F[0] : null, y = V(() => g == null ? void 0 : g.data.input, [g == null ? void 0 : g.data.input]), w = V(() => L && g ? cs(a || {}, y) : a, [y, g, a, L]), P = V(() => x.attributes, [x]), O = V(() => x.data, [x]);
14364
+ const _ = V(() => (la(e, l.current) || (l.current = e), l.current), [e]), g = F ? F[0] : null, N = V(() => g == null ? void 0 : g.data.input, [g == null ? void 0 : g.data.input]), w = V(() => L && g ? cs(a || {}, N) : a, [N, g, a, L]), P = V(() => x.attributes, [x]), O = V(() => x.data, [x]);
14355
14365
  return V(() => {
14356
14366
  const { element: K } = _;
14357
14367
  return K.visible === "desktop" && u || K.visible === "mobile" && !u ? null : /* @__PURE__ */ A.createElement(
14358
14368
  kT,
14359
- z(N({}, _), {
14369
+ z(y({}, _), {
14360
14370
  attributes: _.attributes,
14361
14371
  enabledResponsive: s,
14362
14372
  mergetagsData: b,
@@ -14384,15 +14394,15 @@ const ST = (e) => {
14384
14394
  ]);
14385
14395
  let x = {};
14386
14396
  try {
14387
- const y = be.above(b, {
14397
+ const N = be.above(b, {
14388
14398
  at: He.findPath(b, a),
14389
14399
  match: J.isWidgetElement
14390
14400
  });
14391
- y && (x = y[0].data.input);
14392
- } catch (y) {
14401
+ N && (x = N[0].data.input);
14402
+ } catch (N) {
14393
14403
  }
14394
14404
  const _ = V(() => (la(x, u.current) || (u.current = x), u.current), [x]), g = V(() => m ? "" : Ku.elementToMjml(
14395
- z(N({}, a), {
14405
+ z(y({}, a), {
14396
14406
  attributes: F
14397
14407
  }),
14398
14408
  {
@@ -14400,7 +14410,7 @@ const ST = (e) => {
14400
14410
  mode: "testing",
14401
14411
  keepEmptyAttributes: !0,
14402
14412
  mergetagsData: e.mergetagsData,
14403
- attributesVariables: N(N({}, e.attributesVariables), _),
14413
+ attributesVariables: y(y({}, e.attributesVariables), _),
14404
14414
  displayMode: s ? "only-mobile" : "only-desktop"
14405
14415
  }
14406
14416
  ), [
@@ -14415,11 +14425,11 @@ const ST = (e) => {
14415
14425
  ]);
14416
14426
  return V(() => {
14417
14427
  L.data.breakpoint || (L.data.breakpoint = "600px");
14418
- const y = z(N({}, L), {
14419
- data: z(N({}, L.data), {
14428
+ const N = z(y({}, L), {
14429
+ data: z(y({}, L.data), {
14420
14430
  breakpoint: s ? "99999px" : L.data.breakpoint
14421
14431
  }),
14422
- attributes: z(N({}, L.attributes), {
14432
+ attributes: z(y({}, L.attributes), {
14423
14433
  width: s ? "375px" : L.attributes.width || "600px"
14424
14434
  })
14425
14435
  });
@@ -14431,21 +14441,21 @@ const ST = (e) => {
14431
14441
  const w = Dr(Xi.get(g));
14432
14442
  return J.isTextNode(w) ? null : /* @__PURE__ */ A.createElement(
14433
14443
  PT,
14434
- z(N({}, e), {
14444
+ z(y({}, e), {
14435
14445
  element: a,
14436
14446
  atomElement: w,
14437
14447
  elementAttributes: w.attributes,
14438
- context: y,
14448
+ context: N,
14439
14449
  isMobileActive: s
14440
14450
  })
14441
14451
  );
14442
14452
  }
14443
14453
  return /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(
14444
14454
  m,
14445
- z(N({}, e), {
14455
+ z(y({}, e), {
14446
14456
  elementType: a.type,
14447
14457
  elementAttributes: F,
14448
- context: y,
14458
+ context: N,
14449
14459
  isMobileActive: s
14450
14460
  })
14451
14461
  ));
@@ -14483,7 +14493,7 @@ function PT(s) {
14483
14493
  }
14484
14494
  )) : /* @__PURE__ */ A.createElement(
14485
14495
  F,
14486
- z(N({}, a), {
14496
+ z(y({}, a), {
14487
14497
  attributes: L,
14488
14498
  context: e,
14489
14499
  element: m,
@@ -14509,15 +14519,15 @@ const wT = ({
14509
14519
  if (J.isWidgetElement(b))
14510
14520
  b.data.contentEditable ? (a["data-slate-has-slate-node"] = !0, R = !0) : (R = !1, F = !1);
14511
14521
  else if (_) {
14512
- const y = (w) => {
14522
+ const N = (w) => {
14513
14523
  var P;
14514
14524
  (P = w.attributes["css-class"]) != null && P.includes(
14515
14525
  Dl
14516
14526
  ) ? (F = !1, a["data-slate-has-slate-node"] = !0) : w.children.forEach((O) => {
14517
- J.isElement(O) && y(O);
14527
+ J.isElement(O) && N(O);
14518
14528
  });
14519
14529
  };
14520
- y(s);
14530
+ N(s);
14521
14531
  }
14522
14532
  return /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(
14523
14533
  p0,
@@ -14558,8 +14568,8 @@ function p0({
14558
14568
  placeholder: m
14559
14569
  },
14560
14570
  /* @__PURE__ */ A.createElement(A.Fragment, null, !L && /* @__PURE__ */ A.createElement(A.Fragment, null, e.children.map((_, g) => {
14561
- var y;
14562
- if (J.isElement(_) && ((y = _.attributes["css-class"]) == null ? void 0 : y.includes(
14571
+ var N;
14572
+ if (J.isElement(_) && ((N = _.attributes["css-class"]) == null ? void 0 : N.includes(
14563
14573
  Dl
14564
14574
  ))) {
14565
14575
  const P = Array.isArray(a) ? a == null ? void 0 : a[l.current++] : a;
@@ -14594,12 +14604,12 @@ const FT = Om(Pm(OT)), MT = () => {
14594
14604
  lock: m,
14595
14605
  selectedNodePath: b
14596
14606
  } = pn(), L = Tr(s), R = Tr(l), F = Tr(b), x = Du(), _ = Nr(), g = Tr(m);
14597
- let y = null;
14607
+ let N = null;
14598
14608
  try {
14599
- y = He.getWindow(_);
14609
+ N = He.getWindow(_);
14600
14610
  } catch (q) {
14601
14611
  }
14602
- const w = ve((q) => /* @__PURE__ */ A.createElement(FT, N({}, q)), []), P = ve((q) => /* @__PURE__ */ A.createElement(fs, N({}, q)), []), O = ve(
14612
+ const w = ve((q) => /* @__PURE__ */ A.createElement(FT, y({}, q)), []), P = ve((q) => /* @__PURE__ */ A.createElement(fs, y({}, q)), []), O = ve(
14603
14613
  (q) => {
14604
14614
  if (!q.target)
14605
14615
  return;
@@ -14686,7 +14696,7 @@ const FT = Om(Pm(OT)), MT = () => {
14686
14696
  const Q = _.getSelectedBlockElement();
14687
14697
  kt(() => {
14688
14698
  var te, se, xe;
14689
- if (!y || !((te = _.selection) != null && te.anchor.path))
14699
+ if (!N || !((te = _.selection) != null && te.anchor.path))
14690
14700
  return;
14691
14701
  const q = be.above(_, {
14692
14702
  at: (se = _.selection) == null ? void 0 : se.anchor.path
@@ -14695,7 +14705,7 @@ const FT = Om(Pm(OT)), MT = () => {
14695
14705
  const ke = be.start(_, ae);
14696
14706
  Ne.select(_, ke);
14697
14707
  }
14698
- }, [y, _, Q]);
14708
+ }, [N, _, Q]);
14699
14709
  const ue = _.selection;
14700
14710
  kt(() => {
14701
14711
  try {
@@ -14731,7 +14741,7 @@ const FT = Om(Pm(OT)), MT = () => {
14731
14741
  ), ge = ve(
14732
14742
  (q) => {
14733
14743
  if (q.detail >= 3) {
14734
- if (q.preventDefault(), q.stopPropagation(), y && Zi(q.target) && q.target !== y.document.documentElement)
14744
+ if (q.preventDefault(), q.stopPropagation(), N && Zi(q.target) && q.target !== N.document.documentElement)
14735
14745
  try {
14736
14746
  let ae = He.toSlateNode(_, q.target);
14737
14747
  if (!J.isBlockElement(ae)) {
@@ -14761,7 +14771,7 @@ const FT = Om(Pm(OT)), MT = () => {
14761
14771
  }
14762
14772
  return;
14763
14773
  }
14764
- if (q.preventDefault(), y && Zi(q.target) && q.target !== y.document.documentElement)
14774
+ if (q.preventDefault(), N && Zi(q.target) && q.target !== N.document.documentElement)
14765
14775
  try {
14766
14776
  const ae = He.toSlateNode(_, q.target), te = He.findPath(_, ae);
14767
14777
  if (J.isMergetagElement(ae))
@@ -14788,7 +14798,7 @@ const FT = Om(Pm(OT)), MT = () => {
14788
14798
  }
14789
14799
  window.dispatchEvent(new Event(Bl.EDITOR_CLICK));
14790
14800
  },
14791
- [_, y]
14801
+ [_, N]
14792
14802
  );
14793
14803
  return x.localeData && Dm.setLocaleData(x.localeData), V(() => /* @__PURE__ */ A.createElement(A.Fragment, null, /* @__PURE__ */ A.createElement(
14794
14804
  vm,