vue-phaserjs 2.11.0 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +1 -1
  2. package/dist/components/Circle.vue.d.ts +9 -9
  3. package/dist/components/Container.vue.d.ts +3 -3
  4. package/dist/components/Game.vue.d.ts +1 -1
  5. package/dist/components/Image.vue.d.ts +9 -9
  6. package/dist/components/Nineslice.vue.d.ts +9 -9
  7. package/dist/components/PathFollower.vue.d.ts +9 -9
  8. package/dist/components/Rectangle.vue.d.ts +9 -9
  9. package/dist/components/Scene.vue.d.ts +1 -1
  10. package/dist/components/Sprite.vue.d.ts +9 -9
  11. package/dist/components/Text.vue.d.ts +9 -9
  12. package/dist/components/TileSprite.vue.d.ts +1 -1
  13. package/dist/components/Tilemap.vue.d.ts +1 -1
  14. package/dist/components/Zone.vue.d.ts +1 -1
  15. package/dist/composables/useAnimations.d.ts +1 -43
  16. package/dist/composables/useGame.d.ts +1 -2
  17. package/dist/index.d.ts +3 -6
  18. package/dist/index.js +734 -767
  19. package/dist/models/configuration/ImageConfiguration.d.ts +2 -2
  20. package/dist/models/configuration/NineSliceConfiguration.d.ts +2 -2
  21. package/dist/models/configuration/PathFollowerConfiguration.d.ts +2 -2
  22. package/dist/models/configuration/SpriteConfiguration.d.ts +2 -2
  23. package/dist/models/configuration/TextConfiguration.d.ts +2 -2
  24. package/dist/models/configuration/TileSpriteConfiguration.d.ts +2 -2
  25. package/dist/models/configuration/components/RenderNodesConfiguration.d.ts +4 -0
  26. package/dist/models/configuration/shared/ShapeConfiguration.d.ts +2 -2
  27. package/dist/models/emit/components/RenderNodesEventEmitsOptions.d.ts +6 -0
  28. package/dist/store/camera.d.ts +1 -14
  29. package/dist/store/index.d.ts +1 -30
  30. package/dist/store/input.d.ts +1 -7
  31. package/dist/store/text.d.ts +1 -8
  32. package/dist/util/setterMap/components/MaskSetterMap.d.ts +1 -1
  33. package/dist/util/setterMap/components/RenderNodesSetterMap.d.ts +1 -0
  34. package/dist/util/setterMap/shared/AnimationSetterMap.d.ts +1 -1
  35. package/dist/util/setterMap/shared/ShapeSetterMap.d.ts +1 -2
  36. package/package.json +4 -4
  37. package/dist/models/configuration/components/FXConfiguration.d.ts +0 -4
  38. package/dist/models/configuration/components/PipelineConfiguration.d.ts +0 -4
  39. package/dist/models/emit/components/FXEventEmitsOptions.d.ts +0 -6
  40. package/dist/models/emit/components/PipelineEventEmitsOptions.d.ts +0 -6
  41. package/dist/util/setterMap/components/FXSetterMap.d.ts +0 -4
  42. package/dist/util/setterMap/components/PipelineSetterMap.d.ts +0 -4
package/dist/index.js CHANGED
@@ -69,26 +69,26 @@ var I = {
69
69
  const L = Phaser.Scene;
70
70
  var R = function(e) {
71
71
  return e instanceof L;
72
- }, z = R, B = function(e) {
73
- return typeof e != "object" || !e ? null : z(e) ? e : e.scene && z(e.scene) ? e.scene : e.parent && e.parent.scene && z(e.parent.scene) ? e.parent.scene : null;
74
- }, V = B;
75
- const H = Phaser.Game;
76
- var U = function(e) {
77
- return e instanceof H;
78
- }, W = U, ee = function(e) {
72
+ }, z = function(e) {
73
+ return typeof e != "object" || !e ? null : R(e) ? e : e.scene && R(e.scene) ? e.scene : e.parent && e.parent.scene && R(e.parent.scene) ? e.parent.scene : null;
74
+ };
75
+ const B = Phaser.Game;
76
+ var V = function(e) {
77
+ return e instanceof B;
78
+ }, H = function(e) {
79
79
  if (typeof e != "object" || !e) return null;
80
- if (W(e)) return e;
81
- if (W(e.game)) return e.game;
82
- if (z(e)) return e.sys.game;
83
- if (z(e.scene)) return e.scene.sys.game;
84
- }, G = ee;
85
- const K = Phaser.Utils.Objects.GetValue;
86
- var q = class {
80
+ if (V(e)) return e;
81
+ if (V(e.game)) return e.game;
82
+ if (R(e)) return e.sys.game;
83
+ if (R(e.scene)) return e.scene.sys.game;
84
+ };
85
+ const U = Phaser.Utils.Objects.GetValue;
86
+ var W = class {
87
87
  constructor(e, t) {
88
- this.setParent(e), this.isShutdown = !1, this.setEventEmitter(K(t, "eventEmitter", !0)), this.parent && (this.parent === this.scene ? this.scene.sys.events.once("shutdown", this.onEnvDestroy, this) : this.parent === this.game ? this.game.events.once("shutdown", this.onEnvDestroy, this) : this.parent.once && this.parent.once("destroy", this.onParentDestroy, this));
88
+ this.setParent(e), this.isShutdown = !1, this.setEventEmitter(U(t, "eventEmitter", !0)), this.parent && (this.parent === this.scene ? this.scene.sys.events.once("shutdown", this.onEnvDestroy, this) : this.parent === this.game ? this.game.events.once("shutdown", this.onEnvDestroy, this) : this.parent.once && this.parent.once("destroy", this.onParentDestroy, this));
89
89
  }
90
90
  shutdown(e) {
91
- this.isShutdown || (this.parent && (this.parent === this.scene ? this.scene.sys.events.off("shutdown", this.onEnvDestroy, this) : this.parent === this.game ? this.game.events.off("shutdown", this.onEnvDestroy, this) : this.parent.once && this.parent.off("destroy", this.onParentDestroy, this)), this.destroyEventEmitter(), this.parent = void 0, this.scene = void 0, this.game = void 0, this.isShutdown = !0);
91
+ this.isShutdown ||= (this.parent && (this.parent === this.scene ? this.scene.sys.events.off("shutdown", this.onEnvDestroy, this) : this.parent === this.game ? this.game.events.off("shutdown", this.onEnvDestroy, this) : this.parent.once && this.parent.off("destroy", this.onParentDestroy, this)), this.destroyEventEmitter(), this.parent = void 0, this.scene = void 0, this.game = void 0, !0);
92
92
  }
93
93
  destroy(e) {
94
94
  this.shutdown(e);
@@ -100,75 +100,75 @@ var q = class {
100
100
  this.destroy(t);
101
101
  }
102
102
  setParent(e) {
103
- return this.parent = e, this.scene = V(e), this.game = G(e), this;
103
+ return this.parent = e, this.scene = z(e), this.game = H(e), this;
104
104
  }
105
105
  };
106
- Object.assign(q.prototype, I);
107
- var J = q, Y = function(e, t, n, r, i) {
108
- if (t) return !(n && !n(e, t) || !X(e, t) || r && !r(e, t));
106
+ Object.assign(W.prototype, I);
107
+ var G = function(e, t, n, r, i) {
108
+ if (t) return !(n && !n(e, t) || !K(e, t) || r && !r(e, t));
109
109
  i === void 0 && (i = !1);
110
- for (var a = e.scene.input.manager, o = a.pointersTotal, s = a.pointers, t, c = 0; c < o; c++) if (t = s[c], !(n && !n(e, t)) && X(e, t) && !(r && !r(e, t))) return i ? t : !0;
110
+ for (var a = e.scene.input.manager, o = a.pointersTotal, s = a.pointers, t, c = 0; c < o; c++) if (t = s[c], !(n && !n(e, t)) && K(e, t) && !(r && !r(e, t))) return i ? t : !0;
111
111
  return !1;
112
- }, X = function(e, t) {
113
- for (var n = e.scene, r = n.input.cameras.getCamerasBelowPointer(t), i = n.input.manager, a = [e], o = 0, s = r.length; o < s; o++) if (i.hitTest(t, a, r[o], Z), Z.length > 0) return Z.length = 0, !0;
114
- return Z.length = 0, !1;
115
- }, Z = [], te = Y, ne = function(e) {
112
+ }, K = function(e, t) {
113
+ for (var n = e.scene, r = n.input.cameras.getCamerasBelowPointer(t), i = n.input.manager, a = [e], o = 0, s = r.length; o < s; o++) if (i.hitTest(t, a, r[o], q), q.length > 0) return q.length = 0, !0;
114
+ return q.length = 0, !1;
115
+ }, q = [], J = function(e) {
116
116
  return e.displayWidth === void 0 ? e.width : e.displayWidth;
117
- }, re = function(e) {
117
+ }, Y = function(e) {
118
118
  return e.displayHeight === void 0 ? e.height : e.displayHeight;
119
119
  };
120
- const ie = Phaser.Geom.Rectangle, ae = Phaser.Math.Vector2, oe = Phaser.Math.RotateAround, se = Phaser.GameObjects.Container;
121
- var ce = function(e, t) {
122
- if (t === void 0 ? t = new ie() : t === !0 && (le === void 0 && (le = new ie()), t = le), e.getBounds && !(e instanceof se)) return e.getBounds(t);
120
+ const X = Phaser.Geom.Rectangle, Z = Phaser.Math.Vector2, ee = Phaser.Math.RotateAround, te = Phaser.GameObjects.Container;
121
+ var ne = function(e, t) {
122
+ if (t === void 0 ? t = new X() : t === !0 && (re === void 0 && (re = new X()), t = re), e.getBounds && !(e instanceof te)) return e.getBounds(t);
123
123
  var n, r, i, a, o, s, c, l;
124
124
  if (e.parentContainer) {
125
125
  var u = e.parentContainer.getBoundsTransformMatrix();
126
- ue(e, t), u.transformPoint(t.x, t.y, t), n = t.x, r = t.y, de(e, t), u.transformPoint(t.x, t.y, t), i = t.x, a = t.y, fe(e, t), u.transformPoint(t.x, t.y, t), o = t.x, s = t.y, pe(e, t), u.transformPoint(t.x, t.y, t), c = t.x, l = t.y;
127
- } else ue(e, t), n = t.x, r = t.y, de(e, t), i = t.x, a = t.y, fe(e, t), o = t.x, s = t.y, pe(e, t), c = t.x, l = t.y;
126
+ ie(e, t), u.transformPoint(t.x, t.y, t), n = t.x, r = t.y, ae(e, t), u.transformPoint(t.x, t.y, t), i = t.x, a = t.y, oe(e, t), u.transformPoint(t.x, t.y, t), o = t.x, s = t.y, se(e, t), u.transformPoint(t.x, t.y, t), c = t.x, l = t.y;
127
+ } else ie(e, t), n = t.x, r = t.y, ae(e, t), i = t.x, a = t.y, oe(e, t), o = t.x, s = t.y, se(e, t), c = t.x, l = t.y;
128
128
  return t.x = Math.min(n, i, o, c), t.y = Math.min(r, a, s, l), t.width = Math.max(n, i, o, c) - t.x, t.height = Math.max(r, a, s, l) - t.y, t;
129
- }, le = void 0, ue = function(e, t, n) {
130
- return t === void 0 ? t = new ae() : t === !0 && (me === void 0 && (me = new ae()), t = me), e.getTopLeft ? e.getTopLeft(t) : (t.x = e.x - ne(e) * e.originX, t.y = e.y - re(e) * e.originY, he(e, t, n));
131
- }, de = function(e, t, n) {
132
- return t === void 0 ? t = new ae() : t === !0 && (me === void 0 && (me = new ae()), t = me), e.getTopRight ? e.getTopRight(t) : (t.x = e.x - ne(e) * e.originX + ne(e), t.y = e.y - re(e) * e.originY, he(e, t, n));
133
- }, fe = function(e, t, n) {
134
- return t === void 0 ? t = new ae() : t === !0 && (me === void 0 && (me = new ae()), t = me), e.getBottomLeft ? e.getBottomLeft(t) : (t.x = e.x - ne(e) * e.originX, t.y = e.y - re(e) * e.originY + re(e), he(e, t, n));
135
- }, pe = function(e, t, n) {
136
- return t === void 0 ? t = new ae() : t === !0 && (me === void 0 && (me = new ae()), t = me), e.getBottomRight ? e.getBottomRight(t) : (t.x = e.x - ne(e) * e.originX + ne(e), t.y = e.y - re(e) * e.originY + re(e), he(e, t, n));
137
- }, me = void 0, he = function(e, t, n) {
138
- if (n === void 0 && (n = !1), e.rotation !== 0 && oe(t, e.x, e.y, e.rotation), n && e.parentContainer) {
129
+ }, re = void 0, ie = function(e, t, n) {
130
+ return t === void 0 ? t = new Z() : t === !0 && (Q === void 0 && (Q = new Z()), t = Q), e.getTopLeft ? e.getTopLeft(t) : (t.x = e.x - J(e) * e.originX, t.y = e.y - Y(e) * e.originY, ce(e, t, n));
131
+ }, ae = function(e, t, n) {
132
+ return t === void 0 ? t = new Z() : t === !0 && (Q === void 0 && (Q = new Z()), t = Q), e.getTopRight ? e.getTopRight(t) : (t.x = e.x - J(e) * e.originX + J(e), t.y = e.y - Y(e) * e.originY, ce(e, t, n));
133
+ }, oe = function(e, t, n) {
134
+ return t === void 0 ? t = new Z() : t === !0 && (Q === void 0 && (Q = new Z()), t = Q), e.getBottomLeft ? e.getBottomLeft(t) : (t.x = e.x - J(e) * e.originX, t.y = e.y - Y(e) * e.originY + Y(e), ce(e, t, n));
135
+ }, se = function(e, t, n) {
136
+ return t === void 0 ? t = new Z() : t === !0 && (Q === void 0 && (Q = new Z()), t = Q), e.getBottomRight ? e.getBottomRight(t) : (t.x = e.x - J(e) * e.originX + J(e), t.y = e.y - Y(e) * e.originY + Y(e), ce(e, t, n));
137
+ }, Q = void 0, ce = function(e, t, n) {
138
+ if (n === void 0 && (n = !1), e.rotation !== 0 && ee(t, e.x, e.y, e.rotation), n && e.parentContainer) {
139
139
  var r = e.parentContainer.getBoundsTransformMatrix();
140
140
  r.transformPoint(t.x, t.y, t);
141
141
  }
142
142
  return t;
143
- }, ge = function(e, t, n, r, i) {
143
+ }, le = function(e, t, n, r, i) {
144
144
  if (!e || r && !r(e, t, n)) return !1;
145
- var a = ce(e, !0);
145
+ var a = ne(e, !0);
146
146
  return !(!a.contains(t, n) || i && !i(e, t, n));
147
- }, _e = ge, ve = function(e, t, n) {
147
+ }, ue = function(e, t, n) {
148
148
  var r = e.camera;
149
- return r ? (n === void 0 ? n = {} : n === !0 && (n = ye), r === t ? (n.x = e.worldX, n.y = e.worldY) : r.getWorldPoint(e.x, e.y, n), n) : null;
150
- }, ye = {}, be = ve, xe = function(e, t, n, r, i) {
149
+ return r ? (n === void 0 ? n = {} : n === !0 && (n = de), r === t ? (n.x = e.worldX, n.y = e.worldY) : r.getWorldPoint(e.x, e.y, n), n) : null;
150
+ }, de = {}, fe = function(e, t, n, r, i) {
151
151
  var a = e.scene.sys.cameras.main, o, s = e.scrollFactorX === 0 && e.scrollFactorY === 0;
152
- if (t) return s ? n(e, t.x, t.y, r, i) : (o = be(t, a, !0), o ? n(e, o.x, o.y, r, i) : !1);
152
+ if (t) return s ? n(e, t.x, t.y, r, i) : (o = ue(t, a, !0), o ? n(e, o.x, o.y, r, i) : !1);
153
153
  for (var c = e.scene.input.manager, l = c.pointersTotal, u = c.pointers, d = 0; d < l; d++) if (t = u[d], s) {
154
154
  if (n(e, t.x, t.y, r, i)) return !0;
155
155
  } else {
156
- if (o = be(t, a, !0), !o) continue;
156
+ if (o = ue(t, a, !0), !o) continue;
157
157
  if (n(e, o.x, o.y, r, i)) return !0;
158
158
  }
159
159
  return !1;
160
- }, Se = xe, Ce = function(e, t, n, r) {
161
- return Se(e, t, _e, n, r);
162
- }, we = Ce;
163
- const Te = Phaser.Utils.Objects.GetValue;
164
- var Ee = class extends J {
160
+ }, pe = function(e, t, n, r) {
161
+ return fe(e, t, le, n, r);
162
+ };
163
+ const me = Phaser.Utils.Objects.GetValue;
164
+ var he = class extends W {
165
165
  constructor(e, t) {
166
166
  super(e, t), this._enable = void 0;
167
- var n = Te(t, "inputConfig", void 0);
167
+ var n = me(t, "inputConfig", void 0);
168
168
  n && e.setInteractive(n), this.resetFromJSON(t), this.boot();
169
169
  }
170
170
  resetFromJSON(e) {
171
- return this.pointer = void 0, this.lastClickTime = void 0, this.setEnable(Te(e, "enable", !0)), this.setMode(Te(e, "mode", 1)), this.setClickInterval(Te(e, "clickInterval", 100)), this.setDragThreshold(Te(e, "threshold", void 0)), this;
171
+ return this.pointer = void 0, this.lastClickTime = void 0, this.setEnable(me(e, "enable", !0)), this.setMode(me(e, "mode", 1)), this.setClickInterval(me(e, "clickInterval", 100)), this.setDragThreshold(me(e, "threshold", void 0)), this;
172
172
  }
173
173
  boot() {
174
174
  var e = this.parent.scene;
@@ -197,7 +197,7 @@ var Ee = class extends J {
197
197
  return this.setEnable(!this.enable), this;
198
198
  }
199
199
  setMode(e) {
200
- return typeof e == "string" && (e = De[e]), this.mode = e, this;
200
+ return typeof e == "string" && (e = ge[e]), this.mode = e, this;
201
201
  }
202
202
  setClickInterval(e) {
203
203
  return this.clickInterval = e, this;
@@ -206,7 +206,7 @@ var Ee = class extends J {
206
206
  return this.dragThreshold = e, this;
207
207
  }
208
208
  isPointerInside(e) {
209
- var t = this.parent, n = t.input ? te : we;
209
+ var t = this.parent, n = t.input ? G : pe;
210
210
  return n(t, e);
211
211
  }
212
212
  onPress(e) {
@@ -229,15 +229,13 @@ var Ee = class extends J {
229
229
  return this.pointer = void 0, this;
230
230
  }
231
231
  };
232
- const De = {
232
+ const ge = {
233
233
  press: 0,
234
234
  pointerdown: 0,
235
235
  release: 1,
236
236
  pointerup: 1
237
- };
238
- var Oe = Ee, ke = Oe;
239
- const Ae = () => {
240
- let e = o(), t = new Set(Object.keys(e?.attrs ?? {}).filter(F).map(P)), n = Object.keys(N).filter(t.has), r = [], i = (e, t, i) => {
237
+ }, _e = () => {
238
+ let e = o(), t = new Set(Object.keys(e?.attrs ?? {}).filter(F).map(P)), n = Object.keys(N).filter((e) => t.has(e)), r = [], i = (e, t, i) => {
241
239
  if (n.length !== 0) {
242
240
  e.input || e.setInteractive(), n.some((e) => "drag" in N[e]) && i.input.setDraggable(e);
243
241
  for (let i of n) {
@@ -245,7 +243,7 @@ const Ae = () => {
245
243
  "eventIndex" in n && (e[0].stopPropagation = e[n.eventIndex].stopPropagation), t(i, ...e);
246
244
  };
247
245
  if (i === "clickoutside") {
248
- let t = new ke(e);
246
+ let t = new he(e);
249
247
  t.on(i, a), r.push(() => {
250
248
  t.off(i, a);
251
249
  });
@@ -261,64 +259,64 @@ const Ae = () => {
261
259
  eventStopHandles: r,
262
260
  initializeGameObjectEvents: i
263
261
  };
264
- }, je = {
262
+ }, ve = {
265
263
  ParentContainer: Symbol("ParentContainer"),
266
264
  SceneKey: Symbol("SceneKey")
267
265
  };
268
- var Me = class extends Error {
266
+ var ye = class extends Error {
269
267
  constructor(e, t, n) {
270
268
  super(`Invalid operation: ${e}, name: ${t}, ${n}`), this.name = "InvalidOperationError";
271
269
  }
272
- }, Ne = class extends Error {
270
+ }, be = class extends Error {
273
271
  constructor(e, t) {
274
272
  super(`${e} is not found for id: ${t}`), this.name = "NotFoundError";
275
273
  }
276
- }, Pe = class extends Error {
274
+ }, xe = class extends Error {
277
275
  constructor(e) {
278
276
  super(`${e} is not initialized`), this.name = "NotInitializedError";
279
277
  }
280
278
  };
281
- let Fe = /* @__PURE__ */ function(e) {
279
+ let Se = /* @__PURE__ */ function(e) {
282
280
  return e.Create = "Create", e.Delete = "Delete", e.Push = "Push", e.Read = "Read", e.Unshift = "Unshift", e.Update = "Update", e;
283
281
  }({});
284
282
  String.raw, String.raw;
285
- const Ie = (e) => {
283
+ const Ce = (e) => {
286
284
  if (typeof e != "object" || !e) return !1;
287
285
  let t = Object.getPrototypeOf(e);
288
286
  return t === null || t === Object.prototype;
289
- }, Le = (e) => e.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)?.map((e) => e.toLowerCase()).join("-") ?? "", Re = () => {
290
- let e = s(je.SceneKey);
291
- if (!e) throw new Pe(je.SceneKey.description ?? "");
287
+ }, we = (e) => e.match(/[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+/g)?.map((e) => e.toLowerCase()).join("-") ?? "", Te = () => {
288
+ let e = s(ve.SceneKey);
289
+ if (!e) throw new xe(ve.SceneKey.description ?? "");
292
290
  return e;
293
291
  };
294
- let Q = /* @__PURE__ */ function(e) {
292
+ let Ee = /* @__PURE__ */ function(e) {
295
293
  return e.Create = "Create", e.Init = "Init", e.NextTick = "NextTick", e.Preload = "Preload", e.Shutdown = "Shutdown", e.Update = "Update", e;
296
294
  }({});
297
- const ze = {
295
+ const De = {
298
296
  lifecycleListenersMap: /* @__PURE__ */ new Map(),
299
297
  sceneReadyMap: /* @__PURE__ */ new Map()
300
- }, Be = (e, t, n) => {
301
- let r = n ?? Re(), i = ze.lifecycleListenersMap.get(e);
298
+ }, Oe = (e, t, n) => {
299
+ let r = n ?? Te(), i = De.lifecycleListenersMap.get(e);
302
300
  if (!i) {
303
- ze.lifecycleListenersMap.set(e, new Map([[r, [t]]]));
301
+ De.lifecycleListenersMap.set(e, new Map([[r, [t]]]));
304
302
  return;
305
303
  }
306
304
  let a = i.get(r);
307
305
  a ? a.push(t) : i.set(r, [t]);
308
- }, Ve = (...e) => {
309
- Be(Q.NextTick, ...e);
310
- }, He = (e) => `update:${Le(e)}`, Ue = (e, t, n, r, i) => {
311
- let a = Re(), o = [], s = [];
306
+ }, ke = (...e) => {
307
+ Oe(Ee.NextTick, ...e);
308
+ }, Ae = (e) => `update:${we(e)}`, je = (e, t, n, r, i) => {
309
+ let a = Te(), o = [], s = [];
312
310
  for (let [c, l] of Object.entries(h(t))) {
313
311
  let u = r[c];
314
312
  if (!u) continue;
315
313
  o.push((e) => {
316
- u(e, n)(l), l === void 0 ? c in e && n(He(c), e[c]) : n(He(c), l);
314
+ u(e, n)(l), l === void 0 ? c in e && n(Ae(c), e[c]) : n(Ae(c), l);
317
315
  }), s.push(v(() => h(t)[c], (t) => {
318
316
  let r = () => {
319
- u(h(e), n)(t), n(He(c), t);
317
+ u(h(e), n)(t), n(Ae(c), t);
320
318
  };
321
- i ? r() : Ve(() => {
319
+ i ? r() : ke(() => {
322
320
  r();
323
321
  }, a);
324
322
  }, { deep: typeof h(t)[c] == "object" }));
@@ -330,7 +328,7 @@ const ze = {
330
328
  initializeGameObjectSetters: c,
331
329
  setterWatchHandles: s
332
330
  };
333
- }, We = y("phaser", () => {
331
+ }, Me = y("phaser", () => {
334
332
  let e, n = t({
335
333
  get: () => e,
336
334
  set: (t) => {
@@ -338,7 +336,7 @@ const ze = {
338
336
  }
339
337
  }), r = p(), i = r, a = (e) => e === r.value, o = async (e) => {
340
338
  if (a(e)) return;
341
- let t = Ge(), n = r.value;
339
+ let t = Ne(), n = r.value;
342
340
  r.value = e, await c(), n && t.scene.isActive(n) && t.scene.stop(n), t.scene.start(e);
343
341
  }, s = p([]), l = p([]), u = (e, t) => {
344
342
  if (!s.value.includes(t)) {
@@ -362,23 +360,23 @@ const ze = {
362
360
  rootSceneKey: i,
363
361
  switchToScene: o
364
362
  };
365
- }), Ge = () => {
366
- let e = We(), { game: t } = b(e);
367
- if (!t.value) throw new Pe(C.name);
363
+ }), Ne = () => {
364
+ let e = Me(), { game: t } = b(e);
365
+ if (!t.value) throw new xe(C.name);
368
366
  return t.value;
369
- }, Ke = (e) => {
370
- let t = Ge();
367
+ }, Pe = (e) => {
368
+ let t = Ne();
371
369
  return t.scene.getScene(e);
372
- }, qe = (...e) => {
373
- Be(Q.Create, ...e);
374
- }, Je = (e) => ze.sceneReadyMap.get(e) ? Ve : qe, Ye = (e, t, n, r, i) => {
375
- let a, { initializeGameObjectSetters: o, setterWatchHandles: c } = Ue(() => a, t, n, r, i), { eventStopHandles: l, initializeGameObjectEvents: d } = Ae(), f = s(je.ParentContainer), p = Re(), m = Je(p), g = (t) => {
370
+ }, Fe = (...e) => {
371
+ Oe(Ee.Create, ...e);
372
+ }, Ie = (e) => De.sceneReadyMap.get(e) ? ke : Fe, Le = (e, t, n, r, i) => {
373
+ let a, { initializeGameObjectSetters: o, setterWatchHandles: c } = je(() => a, t, n, r, i), { eventStopHandles: l, initializeGameObjectEvents: d } = _e(), f = s(ve.ParentContainer), p = Te(), m = Ie(p), g = (t) => {
376
374
  a = e(t), o(a), d(a, n, t);
377
375
  }, _ = () => {
378
376
  f?.value && M(f.value, h(t), a);
379
377
  };
380
378
  if (i) {
381
- let e = Ke(p);
379
+ let e = Pe(p);
382
380
  g(e), m(() => {
383
381
  _();
384
382
  });
@@ -390,18 +388,18 @@ const ze = {
390
388
  for (let e of l) e();
391
389
  a.destroy();
392
390
  });
393
- }, Xe = { depth: (e) => (t) => {
391
+ }, Re = { depth: (e) => (t) => {
394
392
  if (t === void 0) return;
395
393
  e.setDepth(t);
396
394
  let n = e.parentContainer.list.findIndex((t) => "depth" in t && typeof t.depth == "number" && t.depth > e.depth);
397
395
  n === -1 ? e.parentContainer.bringToTop(e) : e.parentContainer.moveTo(e, Math.max(n - 1, 0));
398
- } }, Ze = {
396
+ } }, ze = {
399
397
  displayOriginX: (e) => (t) => e.setDisplayOrigin(t, e.displayOriginY),
400
398
  displayOriginY: (e) => (t) => e.setDisplayOrigin(e.displayOriginX, t),
401
399
  origin: (e) => (t) => e.setOrigin(t, t),
402
400
  originX: (e) => (t) => e.setOrigin(t, e.originY),
403
401
  originY: (e) => (t) => e.setOrigin(e.originX, t)
404
- }, Qe = {
402
+ }, Be = {
405
403
  scrollFactor: (e) => (t) => {
406
404
  t !== void 0 && e.setScrollFactor(t, t);
407
405
  },
@@ -411,7 +409,7 @@ const ze = {
411
409
  scrollFactorY: (e) => (t) => {
412
410
  t !== void 0 && e.setScrollFactor(e.scrollFactorX, t);
413
411
  }
414
- }, $e = {
412
+ }, Ve = {
415
413
  angle: (e) => (t) => e.setAngle(t),
416
414
  rotation: (e) => (t) => e.setRotation(t),
417
415
  scale: (e) => (t) => e.setScale(t, t),
@@ -421,11 +419,11 @@ const ze = {
421
419
  x: (e) => (t) => e.setX(t),
422
420
  y: (e) => (t) => e.setY(t),
423
421
  z: (e) => (t) => e.setZ(t)
424
- }, et = { visible: (e) => (t) => {
422
+ }, He = { visible: (e) => (t) => {
425
423
  t !== void 0 && e.setVisible(t);
426
- } }, tt = { active: (e) => (t) => {
424
+ } }, Ue = { active: (e) => (t) => {
427
425
  t !== void 0 && e.setActive(t);
428
- } }, nt = {
426
+ } }, We = {
429
427
  tween: (e, t) => (n) => {
430
428
  if (!n) return;
431
429
  let r = e.scene.add.tween({
@@ -446,10 +444,10 @@ const ze = {
446
444
  t("update:tweenchain", void 0);
447
445
  }), r;
448
446
  }
449
- }, rt = {
450
- ...nt,
451
- ...tt
452
- }, it = {
447
+ }, Ge = {
448
+ ...We,
449
+ ...Ue
450
+ }, Ke = {
453
451
  displayHeight: (e) => (t) => {
454
452
  t !== void 0 && e.setDisplaySize(e.displayWidth, t);
455
453
  },
@@ -462,33 +460,33 @@ const ze = {
462
460
  width: (e) => (t) => {
463
461
  t !== void 0 && e.setSize(t, e.height);
464
462
  },
465
- ...Xe,
466
- ...Ze,
467
- ...$e,
468
- ...Qe,
469
- ...et,
470
- ...rt
463
+ ...Re,
464
+ ...ze,
465
+ ...Ve,
466
+ ...Be,
467
+ ...He,
468
+ ...Ge
471
469
  };
472
- var at = /* @__PURE__ */ a({
470
+ var qe = /* @__PURE__ */ a({
473
471
  __name: "Zone",
474
472
  props: { configuration: {} },
475
473
  setup(e, { emit: t }) {
476
474
  let n = t;
477
- return Ye((t) => {
475
+ return Le((t) => {
478
476
  let { height: n, width: r, x: i, y: a } = e.configuration;
479
477
  return t.add.zone(i, a, r, n);
480
- }, () => e.configuration, n, it), (e, t) => null;
478
+ }, () => e.configuration, n, Ke), (e, t) => null;
481
479
  }
482
- }), ot = at;
483
- const st = {
480
+ });
481
+ const Je = {
484
482
  alpha: (e) => (t) => e.setAlpha(t, t, t, t),
485
483
  alphaBottomLeft: (e) => (t) => e.setAlpha(e.alphaTopLeft, e.alphaTopRight, t, e.alphaBottomRight),
486
484
  alphaBottomRight: (e) => (t) => e.setAlpha(e.alphaTopLeft, e.alphaTopRight, e.alphaBottomLeft, t),
487
485
  alphaTopLeft: (e) => (t) => e.setAlpha(t, e.alphaTopRight, e.alphaBottomLeft, e.alphaBottomRight),
488
486
  alphaTopRight: (e) => (t) => e.setAlpha(e.alphaTopLeft, t, e.alphaBottomLeft, e.alphaBottomRight)
489
- }, ct = { blendMode: (e) => (t) => {
487
+ }, Ye = { blendMode: (e) => (t) => {
490
488
  t !== void 0 && e.setBlendMode(t);
491
- } }, lt = {
489
+ } }, Xe = {
492
490
  displayHeight: (e) => (t) => {
493
491
  t !== void 0 && e.setDisplaySize(e.displayWidth, t);
494
492
  },
@@ -501,78 +499,76 @@ const st = {
501
499
  width: (e) => (t) => {
502
500
  t !== void 0 && e.setSize(t, e.height);
503
501
  }
504
- }, ut = {
502
+ }, Ze = {
505
503
  flipX: (e) => (t) => {
506
504
  t !== void 0 && e.setFlipX(t);
507
505
  },
508
506
  flipY: (e) => (t) => {
509
507
  t !== void 0 && e.setFlipY(t);
510
508
  }
511
- }, dt = { mask: (e) => (t) => {
509
+ }, Qe = { mask: (e) => (t) => {
512
510
  t && e.setMask(t);
513
- } }, ft = { pipeline: (e) => (t) => {
514
- t && e.setPipeline(t);
515
- } }, pt = {
511
+ } }, $e = {}, et = {
516
512
  frame: (e) => (t) => {
517
513
  t !== void 0 && e.setFrame(t);
518
514
  },
519
515
  texture: (e) => (t) => {
520
516
  t && e.setTexture(t);
521
517
  }
522
- }, mt = { ...pt }, ht = {
518
+ }, tt = { ...et }, nt = {
523
519
  tint: (e) => (t) => e.setTint(t, t, t, t),
524
520
  tintBottomLeft: (e) => (t) => e.setTint(e.tintTopLeft, e.tintTopRight, t, e.tintBottomRight),
525
521
  tintBottomRight: (e) => (t) => e.setTint(e.tintTopLeft, e.tintTopRight, e.tintBottomLeft, t),
526
522
  tintTopLeft: (e) => (t) => e.setTint(t, e.tintTopRight, e.tintBottomLeft, e.tintBottomRight),
527
523
  tintTopRight: (e) => (t) => e.setTint(e.tintTopLeft, t, e.tintBottomLeft, e.tintBottomRight)
528
- }, gt = {
529
- ...st,
530
- ...ct,
531
- ...lt,
524
+ }, rt = {
525
+ ...Je,
526
+ ...Ye,
532
527
  ...Xe,
533
- ...ut,
534
- ...dt,
528
+ ...Re,
535
529
  ...Ze,
536
- ...ft,
537
530
  ...Qe,
538
- ...mt,
539
- ...ht,
531
+ ...ze,
540
532
  ...$e,
541
- ...et,
542
- ...rt
533
+ ...Be,
534
+ ...tt,
535
+ ...nt,
536
+ ...Ve,
537
+ ...He,
538
+ ...Ge
543
539
  };
544
- var _t = /* @__PURE__ */ a({
540
+ var it = /* @__PURE__ */ a({
545
541
  __name: "TileSprite",
546
542
  props: { configuration: {} },
547
543
  setup(e, { emit: t }) {
548
544
  let n = t;
549
- return Ye((t) => {
545
+ return Le((t) => {
550
546
  let { frame: n, height: r, texture: i, width: a, x: o, y: s } = e.configuration;
551
547
  return t.add.tileSprite(o ?? 0, s ?? 0, a ?? 0, r ?? 0, i, n);
552
- }, () => e.configuration, n, gt), (e, t) => null;
548
+ }, () => e.configuration, n, rt), (e, t) => null;
553
549
  }
554
- }), vt = _t, yt = /* @__PURE__ */ a({
550
+ }), at = /* @__PURE__ */ a({
555
551
  __name: "Tilemap",
556
552
  props: {
557
553
  configuration: {},
558
554
  onComplete: { type: Function }
559
555
  },
560
556
  setup(e) {
561
- let t = Re(), n = p();
562
- return qe((t) => {
557
+ let t = Te(), n = p();
558
+ return Fe((t) => {
563
559
  n.value = t.make.tilemap(e.configuration), e.onComplete?.(t, n.value);
564
560
  }), v(() => e.configuration.key, (r) => {
565
- let i = Ke(t), a = n.value;
561
+ let i = Pe(t), a = n.value;
566
562
  r ? (n.value = i.make.tilemap(e.configuration), e.onComplete?.(i, n.value)) : n.value = void 0, a && a.destroy();
567
563
  }), u(() => {
568
564
  n.value && n.value.destroy();
569
565
  }), (e, t) => m(e.$slots, "default");
570
566
  }
571
- }), bt = yt;
572
- const xt = y("phaser/text", () => {
567
+ });
568
+ const ot = y("phaser/text", () => {
573
569
  let e = p();
574
570
  return { defaultTextStyle: e };
575
- }), St = {
571
+ }), st = {
576
572
  padding: (e) => (t) => {
577
573
  t && e.setPadding(t);
578
574
  },
@@ -582,38 +578,38 @@ const xt = y("phaser/text", () => {
582
578
  text: (e, t) => (n) => {
583
579
  n !== void 0 && (e.setText(n), t("update:width", e.width), t("update:displayWidth", e.displayWidth));
584
580
  },
585
- ...st,
586
- ...ct,
587
- ...lt,
581
+ ...Je,
582
+ ...Ye,
588
583
  ...Xe,
589
- ...ut,
590
- ...dt,
584
+ ...Re,
591
585
  ...Ze,
592
- ...ft,
593
586
  ...Qe,
594
- ...ht,
587
+ ...ze,
595
588
  ...$e,
596
- ...et,
597
- ...rt
589
+ ...Be,
590
+ ...nt,
591
+ ...Ve,
592
+ ...He,
593
+ ...Ge
598
594
  };
599
- var Ct = /* @__PURE__ */ a({
595
+ var ct = /* @__PURE__ */ a({
600
596
  __name: "Text",
601
597
  props: {
602
598
  configuration: {},
603
599
  immediate: { type: Boolean }
604
600
  },
605
601
  setup(e, { emit: t }) {
606
- let n = t, r = xt(), { defaultTextStyle: i } = b(r);
607
- return Ye((t) => {
602
+ let n = t, r = ot(), { defaultTextStyle: i } = b(r);
603
+ return Le((t) => {
608
604
  let { style: n, text: r, x: a, y: o } = e.configuration;
609
605
  return t.add.text(a ?? 0, o ?? 0, r, {
610
606
  ...i.value,
611
607
  ...n
612
608
  });
613
- }, () => e.configuration, n, St, e.immediate), (e, t) => null;
609
+ }, () => e.configuration, n, st, e.immediate), (e, t) => null;
614
610
  }
615
- }), wt = Ct;
616
- const Tt = {
611
+ });
612
+ const lt = {
617
613
  displayHeight: (e) => (t) => {
618
614
  t !== void 0 && e.setDisplaySize(e.displayWidth, t);
619
615
  },
@@ -626,7 +622,7 @@ const Tt = {
626
622
  width: (e) => (t) => {
627
623
  t !== void 0 && e.setSize(t, e.height);
628
624
  }
629
- }, Et = {
625
+ }, ut = {
630
626
  animations: (e, t) => (n) => {
631
627
  if (n && n.length > 0) for (let r of n) {
632
628
  if (!r.key) continue;
@@ -634,7 +630,7 @@ const Tt = {
634
630
  if (e.once(n, () => {
635
631
  t(n);
636
632
  }), e.scene.anims.exists(r.key)) continue;
637
- if (!e.scene.anims.create(r)) throw new Me(Fe.Create, "Animation", r.key);
633
+ if (!e.scene.anims.create(r)) throw new ye(Se.Create, "Animation", r.key);
638
634
  }
639
635
  },
640
636
  playAnimationKey: (e) => (t) => {
@@ -644,24 +640,24 @@ const Tt = {
644
640
  }
645
641
  e.play(t);
646
642
  }
647
- }, Dt = {
648
- ...st,
649
- ...ct,
650
- ...Xe,
651
- ...ut,
652
- ...dt,
643
+ }, dt = {
644
+ ...Je,
645
+ ...Ye,
646
+ ...Re,
653
647
  ...Ze,
654
- ...ft,
655
648
  ...Qe,
656
- ...Tt,
657
- ...mt,
658
- ...ht,
649
+ ...ze,
659
650
  ...$e,
660
- ...et,
661
- ...Et,
662
- ...rt
651
+ ...Be,
652
+ ...lt,
653
+ ...tt,
654
+ ...nt,
655
+ ...Ve,
656
+ ...He,
657
+ ...ut,
658
+ ...Ge
663
659
  };
664
- var Ot = /* @__PURE__ */ a({
660
+ var ft = /* @__PURE__ */ a({
665
661
  __name: "Sprite",
666
662
  props: {
667
663
  configuration: {},
@@ -670,17 +666,17 @@ var Ot = /* @__PURE__ */ a({
670
666
  },
671
667
  setup(e, { emit: t }) {
672
668
  let n = t;
673
- return Ye((t) => {
669
+ return Le((t) => {
674
670
  let { frame: n, texture: r, x: i, y: a } = e.configuration, o = t.add.sprite(i ?? 0, a ?? 0, r, n);
675
671
  return e.onComplete?.(t, o), o;
676
- }, () => e.configuration, n, Dt, e.immediate), (e, t) => null;
672
+ }, () => e.configuration, n, dt, e.immediate), (e, t) => null;
677
673
  }
678
- }), kt = Ot;
679
- const At = y("phaser/input", () => {
674
+ });
675
+ const pt = y("phaser/input", () => {
680
676
  let e = p(!1);
681
677
  return { isInputActive: e };
682
- }), jt = y("phaser/camera", () => {
683
- let e = At(), t = p(!1), n = (n, ...r) => {
678
+ }), mt = y("phaser/camera", () => {
679
+ let e = pt(), t = p(!1), n = (n, ...r) => {
684
680
  t.value = !0, e.isInputActive = !1, n.cameras.main.fadeIn(...r);
685
681
  }, r = (n, ...r) => {
686
682
  t.value = !0, e.isInputActive = !1, n.cameras.main.fadeOut(...r);
@@ -690,21 +686,21 @@ const At = y("phaser/input", () => {
690
686
  fadeOut: r,
691
687
  isFading: t
692
688
  };
693
- }), Mt = (e, t) => {
694
- let n = ze.lifecycleListenersMap.get(t);
689
+ }), ht = (e, t) => {
690
+ let n = De.lifecycleListenersMap.get(t);
695
691
  if (!n) return;
696
692
  let r = n.get(e.scene.key);
697
693
  r && n.set(e.scene.key, []);
698
- }, Nt = (e, t, n = !0) => {
699
- let r = ze.lifecycleListenersMap.get(t);
694
+ }, gt = (e, t, n = !0) => {
695
+ let r = De.lifecycleListenersMap.get(t);
700
696
  if (!r) return;
701
697
  let i = r.get(e.scene.key);
702
698
  if (i) {
703
699
  for (let t of i) t(e);
704
- n && Mt(e, t);
700
+ n && ht(e, t);
705
701
  }
706
702
  };
707
- var Pt = /* @__PURE__ */ a({
703
+ var _t = /* @__PURE__ */ a({
708
704
  __name: "Scene",
709
705
  props: {
710
706
  autoStart: { type: Boolean },
@@ -718,48 +714,48 @@ var Pt = /* @__PURE__ */ a({
718
714
  "update"
719
715
  ],
720
716
  setup(e, { emit: r }) {
721
- let i = r, a = We(), { isSameScene: o, switchToScene: s } = a, c = jt(), { isFading: d } = b(c), p = At(), { isInputActive: h } = b(p), { parallelSceneKeys: _ } = b(a), v = t(() => o(e.sceneKey) || _.value.includes(e.sceneKey)), y = class extends T {
717
+ let i = r, a = Me(), { isSameScene: o, switchToScene: s } = a, c = mt(), { isFading: d } = b(c), p = pt(), { isInputActive: h } = b(p), { parallelSceneKeys: _ } = b(a), v = t(() => o(e.sceneKey) || _.value.includes(e.sceneKey)), y = class extends T {
722
718
  create() {
723
- i("create", this), Nt(this, Q.Create), this.cameras.main.on(S.Scene2D.Events.FADE_IN_COMPLETE, C), this.cameras.main.on(S.Scene2D.Events.FADE_OUT_COMPLETE, w), h.value ||= !0;
719
+ i("create", this), gt(this, Ee.Create), this.cameras.main.on(S.Scene2D.Events.FADE_IN_COMPLETE, C), this.cameras.main.on(S.Scene2D.Events.FADE_OUT_COMPLETE, w), h.value ||= !0;
724
720
  }
725
721
  init() {
726
- i("init", this), Nt(this, Q.Init);
722
+ i("init", this), gt(this, Ee.Init);
727
723
  }
728
724
  preload() {
729
- i("preload", this), Nt(this, Q.Preload);
725
+ i("preload", this), gt(this, Ee.Preload);
730
726
  }
731
727
  update(...e) {
732
- i("update", this, ...e), Nt(this, Q.Update, !1), Nt(this, Q.NextTick);
728
+ i("update", this, ...e), gt(this, Ee.Update, !1), gt(this, Ee.NextTick);
733
729
  }
734
730
  }, x = () => {
735
- ze.sceneReadyMap.set(e.sceneKey, !0);
731
+ De.sceneReadyMap.set(e.sceneKey, !0);
736
732
  }, C = () => {
737
733
  d.value = !1, h.value ||= !0;
738
734
  }, w = () => {
739
735
  d.value = !1, h.value ||= !0;
740
736
  }, D = () => {
741
- let t = Ke(e.sceneKey);
742
- Mt(t, Q.Update), Mt(t, Q.NextTick), Nt(t, Q.Shutdown), t.cameras.main.off(S.Scene2D.Events.FADE_IN_COMPLETE, C), t.cameras.main.off(S.Scene2D.Events.FADE_OUT_COMPLETE, w), ze.sceneReadyMap.set(e.sceneKey, !1), i("shutdown", t);
737
+ let t = Pe(e.sceneKey);
738
+ ht(t, Ee.Update), ht(t, Ee.NextTick), gt(t, Ee.Shutdown), t.cameras.main.off(S.Scene2D.Events.FADE_IN_COMPLETE, C), t.cameras.main.off(S.Scene2D.Events.FADE_OUT_COMPLETE, w), De.sceneReadyMap.set(e.sceneKey, !1), i("shutdown", t);
743
739
  };
744
740
  return l(async () => {
745
- let t = Ge(), n = t.scene.add(e.sceneKey, y);
741
+ let t = Ne(), n = t.scene.add(e.sceneKey, y);
746
742
  n.events.on(E.Events.READY, x), n.events.on(E.Events.SHUTDOWN, D), e.autoStart && await s(e.sceneKey);
747
743
  }), u(() => {
748
- let t = Ge(), n = Ke(e.sceneKey);
744
+ let t = Ne(), n = Pe(e.sceneKey);
749
745
  n.events.off(E.Events.READY, x), n.events.off(E.Events.SHUTDOWN, D), t.scene.remove(e.sceneKey);
750
- }), f(je.SceneKey, e.sceneKey), (e, t) => g(v) ? m(e.$slots, "default", { key: 0 }) : n("", !0);
746
+ }), f(ve.SceneKey, e.sceneKey), (e, t) => g(v) ? m(e.$slots, "default", { key: 0 }) : n("", !0);
751
747
  }
752
- }), Ft = Pt;
753
- const It = { alpha: (e) => (t) => e.setAlpha(t) }, Lt = {
754
- ...It,
755
- ...ct,
756
- ...Xe,
757
- ...dt,
758
- ...Ze,
759
- ...ft,
748
+ });
749
+ const vt = { alpha: (e) => (t) => e.setAlpha(t) }, yt = {
750
+ ...vt,
751
+ ...Ye,
752
+ ...Re,
760
753
  ...Qe,
754
+ ...ze,
761
755
  ...$e,
762
- ...et,
756
+ ...Be,
757
+ ...Ve,
758
+ ...He,
763
759
  active: (e) => (t) => {
764
760
  t !== void 0 && e.setActive(t);
765
761
  },
@@ -774,17 +770,17 @@ const It = { alpha: (e) => (t) => e.setAlpha(t) }, Lt = {
774
770
  strokeStyle: (e) => (t) => {
775
771
  t && e.setStrokeStyle(...t);
776
772
  }
777
- }, Rt = {
773
+ }, bt = {
778
774
  height: (e) => (t) => {
779
775
  t !== void 0 && e.setSize(e.width, t);
780
776
  },
781
777
  width: (e) => (t) => {
782
778
  t !== void 0 && e.setSize(t, e.height);
783
779
  },
784
- ...Lt,
785
- ...rt
780
+ ...yt,
781
+ ...Ge
786
782
  };
787
- var zt = /* @__PURE__ */ a({
783
+ var xt = /* @__PURE__ */ a({
788
784
  __name: "Rectangle",
789
785
  props: {
790
786
  configuration: {},
@@ -793,32 +789,32 @@ var zt = /* @__PURE__ */ a({
793
789
  },
794
790
  setup(e, { emit: t }) {
795
791
  let n = t;
796
- return Ye((t) => {
792
+ return Le((t) => {
797
793
  let { alpha: n, fillColor: r, height: i, width: a, x: o, y: s } = e.configuration, c = t.add.rectangle(o, s, a, i, r, n);
798
794
  return e.onComplete?.(t, c), c;
799
- }, () => e.configuration, n, Rt, e.immediate), (e, t) => null;
795
+ }, () => e.configuration, n, bt, e.immediate), (e, t) => null;
800
796
  }
801
- }), Bt = zt;
802
- const Vt = { path: (e) => (t) => {
797
+ });
798
+ const St = { path: (e) => (t) => {
803
799
  t && e.setPath(t);
804
- } }, Ht = {
805
- ...st,
806
- ...ct,
807
- ...Xe,
808
- ...ut,
809
- ...dt,
800
+ } }, Ct = {
801
+ ...Je,
802
+ ...Ye,
803
+ ...Re,
810
804
  ...Ze,
811
- ...Vt,
812
- ...ft,
813
805
  ...Qe,
814
- ...Tt,
815
- ...mt,
816
- ...ht,
806
+ ...ze,
807
+ ...St,
817
808
  ...$e,
818
- ...et,
819
- ...rt
809
+ ...Be,
810
+ ...lt,
811
+ ...tt,
812
+ ...nt,
813
+ ...Ve,
814
+ ...He,
815
+ ...Ge
820
816
  };
821
- var Ut = /* @__PURE__ */ a({
817
+ var wt = /* @__PURE__ */ a({
822
818
  __name: "PathFollower",
823
819
  props: {
824
820
  configuration: {},
@@ -826,59 +822,59 @@ var Ut = /* @__PURE__ */ a({
826
822
  },
827
823
  setup(e, { emit: t }) {
828
824
  let n = t;
829
- return Ye((t) => {
825
+ return Le((t) => {
830
826
  let { frame: n, path: r, texture: i, x: a, y: o } = e.configuration, s = t.add.follower(r, a ?? 0, o ?? 0, i, n);
831
827
  return e.onComplete?.(t, s), s;
832
- }, () => e.configuration, n, Ht), (e, t) => null;
828
+ }, () => e.configuration, n, Ct), (e, t) => null;
833
829
  }
834
- }), Wt = Ut;
835
- const Gt = {
830
+ });
831
+ const Tt = {
836
832
  height: (e) => (t) => {
837
833
  t !== void 0 && e.setSize(e.width, t);
838
834
  },
839
835
  width: (e) => (t) => {
840
836
  t !== void 0 && e.setSize(t, e.height);
841
837
  },
842
- ...It,
843
- ...ct,
844
- ...Xe,
845
- ...dt,
846
- ...Ze,
847
- ...ft,
838
+ ...vt,
839
+ ...Ye,
840
+ ...Re,
848
841
  ...Qe,
849
- ...mt,
842
+ ...ze,
850
843
  ...$e,
851
- ...et,
852
- ...rt
844
+ ...Be,
845
+ ...tt,
846
+ ...Ve,
847
+ ...He,
848
+ ...Ge
853
849
  };
854
- var Kt = /* @__PURE__ */ a({
850
+ var Et = /* @__PURE__ */ a({
855
851
  __name: "Nineslice",
856
852
  props: { configuration: {} },
857
853
  setup(e, { emit: t }) {
858
854
  let n = t;
859
- return Ye((t) => {
855
+ return Le((t) => {
860
856
  let { bottomHeight: n, frame: r, height: i, leftWidth: a, rightWidth: o, texture: s, topHeight: c, width: l, x: u, y: d } = e.configuration;
861
857
  return t.add.nineslice(u ?? 0, d ?? 0, s, r, l, i, a, o, c, n);
862
- }, () => e.configuration, n, Gt), (e, t) => null;
858
+ }, () => e.configuration, n, Tt), (e, t) => null;
863
859
  }
864
- }), qt = Kt;
865
- const Jt = { ...pt }, Yt = {
866
- ...st,
867
- ...ct,
868
- ...Xe,
869
- ...ut,
870
- ...dt,
860
+ });
861
+ const Dt = { ...et }, Ot = {
862
+ ...Je,
863
+ ...Ye,
864
+ ...Re,
871
865
  ...Ze,
872
- ...ft,
873
866
  ...Qe,
874
- ...Tt,
875
- ...Jt,
876
- ...ht,
867
+ ...ze,
877
868
  ...$e,
878
- ...et,
879
- ...rt
869
+ ...Be,
870
+ ...lt,
871
+ ...Dt,
872
+ ...nt,
873
+ ...Ve,
874
+ ...He,
875
+ ...Ge
880
876
  };
881
- var Xt = /* @__PURE__ */ a({
877
+ var kt = /* @__PURE__ */ a({
882
878
  __name: "Image",
883
879
  props: {
884
880
  configuration: {},
@@ -886,101 +882,100 @@ var Xt = /* @__PURE__ */ a({
886
882
  },
887
883
  setup(e, { emit: t }) {
888
884
  let n = t;
889
- return Ye((t) => {
885
+ return Le((t) => {
890
886
  let { frame: n, texture: r, x: i, y: a } = e.configuration, o = t.add.image(i ?? 0, a ?? 0, r, n);
891
887
  return e.onComplete?.(t, o), o;
892
- }, () => e.configuration, n, Yt), (e, t) => null;
888
+ }, () => e.configuration, n, Ot), (e, t) => null;
893
889
  }
894
- }), Zt = Xt;
895
- const Qt = w.FileTypes.XMLFile;
896
- var $t = class extends Qt {
897
- tilesetIndex;
890
+ });
891
+ const At = w.FileTypes.XMLFile;
892
+ var jt = class extends At {
898
893
  constructor(e, ...t) {
899
894
  super(...t), this.tilesetIndex = e;
900
895
  }
901
- }, en = /* @__PURE__ */ A(((exports, t) => {
896
+ }, Mt = /* @__PURE__ */ A(((exports, t) => {
902
897
  t.exports = {};
903
898
  }));
904
- en();
905
- var tn = Object.create, nn = Object.defineProperty, rn = Object.getOwnPropertyDescriptor, an = Object.getOwnPropertyNames, on = Object.getPrototypeOf, sn = Object.prototype.hasOwnProperty, cn = (e, t) => function() {
906
- return e && (t = (0, e[an(e)[0]])(e = 0)), t;
899
+ Mt();
900
+ var Nt = Object.create, Pt = Object.defineProperty, Ft = Object.getOwnPropertyDescriptor, It = Object.getOwnPropertyNames, Lt = Object.getPrototypeOf, Rt = Object.prototype.hasOwnProperty, zt = (e, t) => function() {
901
+ return e && (t = (0, e[It(e)[0]])(e = 0)), t;
907
902
  }, $ = (e, t) => function() {
908
- return t || (0, e[an(e)[0]])((t = { exports: {} }).exports, t), t.exports;
909
- }, ln = (e, t) => {
910
- for (var n in t) nn(e, n, {
903
+ return t || (0, e[It(e)[0]])((t = { exports: {} }).exports, t), t.exports;
904
+ }, Bt = (e, t) => {
905
+ for (var n in t) Pt(e, n, {
911
906
  get: t[n],
912
907
  enumerable: !0
913
908
  });
914
- }, un = (e, t, n, r) => {
915
- if (t && typeof t == "object" || typeof t == "function") for (var i = an(t), a = 0, o = i.length, s; a < o; a++) s = i[a], !sn.call(e, s) && s !== n && nn(e, s, {
909
+ }, Vt = (e, t, n, r) => {
910
+ if (t && typeof t == "object" || typeof t == "function") for (var i = It(t), a = 0, o = i.length, s; a < o; a++) s = i[a], !Rt.call(e, s) && s !== n && Pt(e, s, {
916
911
  get: ((e) => t[e]).bind(null, s),
917
- enumerable: !(r = rn(t, s)) || r.enumerable
912
+ enumerable: !(r = Ft(t, s)) || r.enumerable
918
913
  });
919
914
  return e;
920
- }, dn = (e, t, n) => (n = e == null ? {} : tn(on(e)), un(t || !e || !e.__esModule ? nn(n, "default", {
915
+ }, Ht = (e, t, n) => (n = e == null ? {} : Nt(Lt(e)), Vt(t || !e || !e.__esModule ? Pt(n, "default", {
921
916
  value: e,
922
917
  enumerable: !0
923
- }) : n, e)), fn = (e) => un(nn({}, "__esModule", { value: !0 }), e), pn = /* @__PURE__ */ ((e) => j === void 0 ? typeof Proxy < "u" ? new Proxy(e, { get: (e, t) => (j === void 0 ? e : j)[t] }) : e : j)(function(e) {
918
+ }) : n, e)), Ut = (e) => Vt(Pt({}, "__esModule", { value: !0 }), e), Wt = /* @__PURE__ */ ((e) => j === void 0 ? typeof Proxy < "u" ? new Proxy(e, { get: (e, t) => (j === void 0 ? e : j)[t] }) : e : j)(function(e) {
924
919
  if (j !== void 0) return j.apply(this, arguments);
925
920
  throw Error("Calling `require` for \"" + e + "\" in an environment that doesn't expose the `require` function.");
926
921
  });
927
- let mn = /* @__PURE__ */ function(e) {
922
+ let Gt = /* @__PURE__ */ function(e) {
928
923
  return e.Data = "data", e.EditorSettings = "editorsettings", e.Export = "export", e.Group = "group", e.Image = "image", e.ImageLayer = "imagelayer", e.Layer = "layer", e.Object = "object", e.Objectgroup = "objectgroup", e.Properties = "properties", e.Property = "property", e.Tileset = "tileset", e;
929
- }({}), hn = /* @__PURE__ */ function(e) {
924
+ }({}), Kt = /* @__PURE__ */ function(e) {
930
925
  return e[e.Diagonally = 536870912] = "Diagonally", e[e.Horizontally = 2147483648] = "Horizontally", e[e.Vertically = 1073741824] = "Vertically", e;
931
926
  }({});
932
- const gn = (e) => ({
933
- D: !!(e & hn.Diagonally),
934
- H: !!(e & hn.Horizontally),
935
- V: !!(e & hn.Vertically)
927
+ const qt = (e) => ({
928
+ D: !!(e & Kt.Diagonally),
929
+ H: !!(e & Kt.Horizontally),
930
+ V: !!(e & Kt.Vertically)
936
931
  });
937
- let _n = /* @__PURE__ */ function(e) {
932
+ let Jt = /* @__PURE__ */ function(e) {
938
933
  return e.Ellipse = "ellipse", e.Point = "point", e.Polygon = "polygon", e.Rectangle = "rectangle", e;
939
934
  }({});
940
- const vn = (e) => "point" in e ? _n.Point : "ellipse" in e ? _n.Ellipse : "polygon" in e ? _n.Polygon : _n.Rectangle, yn = (e) => e.map(({ property: e }) => {
935
+ const Yt = (e) => "point" in e ? Jt.Point : "ellipse" in e ? Jt.Ellipse : "polygon" in e ? Jt.Polygon : Jt.Rectangle, Xt = (e) => e.map(({ property: e }) => {
941
936
  let { $: t, _: n } = e[0], { name: r, value: i } = t;
942
937
  return {
943
938
  name: r,
944
939
  value: i ?? n
945
940
  };
946
- }), bn = (e) => e &= ~Object.values(hn).reduce((e, t) => e | t, 0), xn = (e) => {
941
+ }), Zt = (e) => e &= ~Object.values(Kt).reduce((e, t) => e | t, 0), Qt = (e) => {
947
942
  let { $: t, polygon: n, properties: r, text: i } = e, a = structuredClone(t);
948
- if (a.shape = vn(e), r && (a.properties = yn(r)), n && (a.points = n[0].$.points.split(" ").map((e) => {
943
+ if (a.shape = Yt(e), r && (a.properties = Xt(r)), n && (a.points = n[0].$.points.split(" ").map((e) => {
949
944
  let [t, n] = e.split(",");
950
945
  return [parseFloat(t), parseFloat(n)];
951
946
  })), i) {
952
947
  let e = i[0];
953
948
  a.text = e._, a.properties = Object.assign({}, ...a.properties ?? [], e.$);
954
949
  }
955
- return a.gid && (a.flips = gn(a.gid), a.gid = bn(a.gid)), a;
950
+ return a.gid &&= (a.flips = qt(a.gid), Zt(a.gid)), a;
956
951
  };
957
- var Sn = class extends Error {
952
+ var $t = class extends Error {
958
953
  constructor(e, t, n) {
959
954
  super(`Invalid operation: ${e}, name: ${t}, ${n}`), this.name = "InvalidOperationError";
960
955
  }
961
956
  };
962
- let Cn = /* @__PURE__ */ function(e) {
957
+ let en = /* @__PURE__ */ function(e) {
963
958
  return e.Create = "Create", e.Delete = "Delete", e.Push = "Push", e.Read = "Read", e.Unshift = "Unshift", e.Update = "Update", e;
964
959
  }({});
965
960
  String.raw, String.raw;
966
- const wn = (e) => "source" in e, Tn = (e) => {
961
+ const tn = (e) => "source" in e, nn = (e) => {
967
962
  let { $: t, animation: n, objectgroup: r, properties: i } = e, a = structuredClone(t);
968
- return n && (a.animation = { frames: n[0].frame.map(({ $: e }) => structuredClone(e)) }), r && (a.objects = r[0].object.map((e) => xn(e))), i && (a.properties = yn(i)), a;
969
- }, En = (e) => {
970
- if (wn(e.$)) return structuredClone(e.$);
963
+ return n && (a.animation = { frames: n[0].frame.map(({ $: e }) => structuredClone(e)) }), r && (a.objects = r[0].object.map((e) => Qt(e))), i && (a.properties = Xt(i)), a;
964
+ }, rn = (e) => {
965
+ if (tn(e.$)) return structuredClone(e.$);
971
966
  let { $: t, $$: n, tile: r } = e;
972
967
  for (let e of n) {
973
968
  let n = e["#name"];
974
- if (n !== mn.Image) continue;
975
- let i = structuredClone(e.$), a = r?.map((e) => Tn(e)) ?? [];
969
+ if (n !== Gt.Image) continue;
970
+ let i = structuredClone(e.$), a = r?.map((e) => nn(e)) ?? [];
976
971
  return {
977
972
  ...t,
978
973
  image: i,
979
974
  tiles: a
980
975
  };
981
976
  }
982
- throw new Sn(Cn.Read, En.name, t.name);
983
- }, Dn = (e) => {
977
+ throw new $t(en.Read, rn.name, t.name);
978
+ }, an = (e) => {
984
979
  if (e === "true") return !0;
985
980
  if (e === "false") return !1;
986
981
  if (/^[+-]?\d+(\.\d+)?$/g.test(e)) {
@@ -989,27 +984,27 @@ const wn = (e) => "source" in e, Tn = (e) => {
989
984
  }
990
985
  return e;
991
986
  };
992
- var On = Object.create, kn = Object.defineProperty, An = Object.getOwnPropertyDescriptor, jn = Object.getOwnPropertyNames, Mn = Object.getPrototypeOf, Nn = Object.prototype.hasOwnProperty, Pn = (e, t) => function() {
993
- return t || (0, e[jn(e)[0]])((t = { exports: {} }).exports, t), t.exports;
994
- }, Fn = (e, t, n, r) => {
995
- if (t && typeof t == "object" || typeof t == "function") for (var i = jn(t), a = 0, o = i.length, s; a < o; a++) s = i[a], !Nn.call(e, s) && s !== n && kn(e, s, {
987
+ var on = Object.create, sn = Object.defineProperty, cn = Object.getOwnPropertyDescriptor, ln = Object.getOwnPropertyNames, un = Object.getPrototypeOf, dn = Object.prototype.hasOwnProperty, fn = (e, t) => function() {
988
+ return t || (0, e[ln(e)[0]])((t = { exports: {} }).exports, t), t.exports;
989
+ }, pn = (e, t, n, r) => {
990
+ if (t && typeof t == "object" || typeof t == "function") for (var i = ln(t), a = 0, o = i.length, s; a < o; a++) s = i[a], !dn.call(e, s) && s !== n && sn(e, s, {
996
991
  get: ((e) => t[e]).bind(null, s),
997
- enumerable: !(r = An(t, s)) || r.enumerable
992
+ enumerable: !(r = cn(t, s)) || r.enumerable
998
993
  });
999
994
  return e;
1000
- }, In = (e, t, n) => (n = e == null ? {} : On(Mn(e)), Fn(t || !e || !e.__esModule ? kn(n, "default", {
995
+ }, mn = (e, t, n) => (n = e == null ? {} : on(un(e)), pn(t || !e || !e.__esModule ? sn(n, "default", {
1001
996
  value: e,
1002
997
  enumerable: !0
1003
- }) : n, e)), Ln = /* @__PURE__ */ ((e) => pn === void 0 ? typeof Proxy < "u" ? new Proxy(e, { get: (e, t) => (pn === void 0 ? e : pn)[t] }) : e : pn)(function(e) {
1004
- if (pn !== void 0) return pn.apply(this, arguments);
998
+ }) : n, e)), hn = /* @__PURE__ */ ((e) => Wt === void 0 ? typeof Proxy < "u" ? new Proxy(e, { get: (e, t) => (Wt === void 0 ? e : Wt)[t] }) : e : Wt)(function(e) {
999
+ if (Wt !== void 0) return Wt.apply(this, arguments);
1005
1000
  throw Error("Calling `require` for \"" + e + "\" in an environment that doesn't expose the `require` function.");
1006
1001
  });
1007
- const Rn = {
1002
+ const gn = {
1008
1003
  attrkey: "$",
1009
1004
  charkey: "_"
1010
1005
  };
1011
- ({ ...Rn });
1012
- var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_modules/xmlbuilder2/lib/xmlbuilder2.min.js": ((e, t) => {
1006
+ ({ ...gn });
1007
+ var _n = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_modules/xmlbuilder2/lib/xmlbuilder2.min.js": ((e, t) => {
1013
1008
  (function(n, r) {
1014
1009
  typeof e == "object" && typeof t == "object" ? t.exports = r() : typeof define == "function" && define.amd ? define([], r) : typeof e == "object" ? e.xmlbuilder2 = r() : n.xmlbuilder2 = r();
1015
1010
  })(e, (function() {
@@ -1157,7 +1152,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
1157
1152
  return !1;
1158
1153
  }
1159
1154
  t.StringWalker = c.StringWalker, t.applyMixin = function(e, t) {
1160
- for (var n = [], r = 2; r < arguments.length; r++) n[r - 2] = arguments[r];
1155
+ var n = [...arguments].slice(2);
1161
1156
  Object.getOwnPropertyNames(t.prototype).forEach((function(r) {
1162
1157
  if (r !== "constructor") {
1163
1158
  if (n.indexOf(r) !== -1) {
@@ -2186,15 +2181,15 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
2186
2181
  }, t.dom_runEventConstructingSteps = function(e) {}, t.dom_runChildTextContentChangeSteps = function(e) {};
2187
2182
  },
2188
2183
  function(e, t, n) {
2189
- var r = n(4), i = n(11), a = n(46), o = n(44), s = n(16), c = n(86), l = n(124), u = n(8), d = n(14), f = n(59), p = n(13), m = n(18), h = n(27), g = n(24), _ = n(56), v = n(40), y = n(60), b = n(61), x = n(82), S = n(190), C = n(85), w = n(55), T = n(15), E = n(79), D = n(21), O = n(25), k = n(81), A = n(57), j = n(45), M = n(58), N = n(5), P = n(125), F = n(126), I = n(62), L = n(43), R = n(36).forEach, z = A("hidden"), B = N("toPrimitive"), V = L.set, H = L.getterFor("Symbol"), U = Object.prototype, W = i.Symbol, ee = a("JSON", "stringify"), G = w.f, K = T.f, q = S.f, J = E.f, Y = k("symbols"), X = k("op-symbols"), Z = k("string-to-symbol-registry"), te = k("symbol-to-string-registry"), ne = k("wks"), re = i.QObject, ie = !re || !re.prototype || !re.prototype.findChild, ae = s && u((function() {
2190
- return y(K({}, "a", { get: function() {
2191
- return K(this, "a", { value: 7 }).a;
2184
+ var r = n(4), i = n(11), a = n(46), o = n(44), s = n(16), c = n(86), l = n(124), u = n(8), d = n(14), f = n(59), p = n(13), m = n(18), h = n(27), g = n(24), _ = n(56), v = n(40), y = n(60), b = n(61), x = n(82), S = n(190), C = n(85), w = n(55), T = n(15), E = n(79), D = n(21), O = n(25), k = n(81), A = n(57), j = n(45), M = n(58), N = n(5), P = n(125), F = n(126), I = n(62), L = n(43), R = n(36).forEach, z = A("hidden"), B = N("toPrimitive"), V = L.set, H = L.getterFor("Symbol"), U = Object.prototype, W = i.Symbol, G = a("JSON", "stringify"), K = w.f, q = T.f, J = S.f, Y = E.f, X = k("symbols"), Z = k("op-symbols"), ee = k("string-to-symbol-registry"), te = k("symbol-to-string-registry"), ne = k("wks"), re = i.QObject, ie = !re || !re.prototype || !re.prototype.findChild, ae = s && u((function() {
2185
+ return y(q({}, "a", { get: function() {
2186
+ return q(this, "a", { value: 7 }).a;
2192
2187
  } })).a != 7;
2193
2188
  })) ? function(e, t, n) {
2194
- var r = G(U, t);
2195
- r && delete U[t], K(e, t, n), r && e !== U && K(U, t, r);
2196
- } : K, oe = function(e, t) {
2197
- var n = Y[e] = y(W.prototype);
2189
+ var r = K(U, t);
2190
+ r && delete U[t], q(e, t, n), r && e !== U && q(U, t, r);
2191
+ } : q, oe = function(e, t) {
2192
+ var n = X[e] = y(W.prototype);
2198
2193
  return V(n, {
2199
2194
  type: "Symbol",
2200
2195
  tag: e,
@@ -2204,40 +2199,40 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
2204
2199
  return typeof e == "symbol";
2205
2200
  } : function(e) {
2206
2201
  return Object(e) instanceof W;
2207
- }, ce = function(e, t, n) {
2208
- e === U && ce(X, t, n), m(e);
2202
+ }, Q = function(e, t, n) {
2203
+ e === U && Q(Z, t, n), m(e);
2209
2204
  var r = _(t, !0);
2210
- return m(n), d(Y, r) ? (n.enumerable ? (d(e, z) && e[z][r] && (e[z][r] = !1), n = y(n, { enumerable: v(0, !1) })) : (d(e, z) || K(e, z, v(1, {})), e[z][r] = !0), ae(e, r, n)) : K(e, r, n);
2211
- }, le = function(e, t) {
2205
+ return m(n), d(X, r) ? (n.enumerable ? (d(e, z) && e[z][r] && (e[z][r] = !1), n = y(n, { enumerable: v(0, !1) })) : (d(e, z) || q(e, z, v(1, {})), e[z][r] = !0), ae(e, r, n)) : q(e, r, n);
2206
+ }, ce = function(e, t) {
2212
2207
  m(e);
2213
- var n = g(t), r = b(n).concat(pe(n));
2208
+ var n = g(t), r = b(n).concat(fe(n));
2214
2209
  return R(r, (function(t) {
2215
- s && !ue.call(n, t) || ce(e, t, n[t]);
2210
+ s && !le.call(n, t) || Q(e, t, n[t]);
2216
2211
  })), e;
2217
- }, ue = function(e) {
2218
- var t = _(e, !0), n = J.call(this, t);
2219
- return !(this === U && d(Y, t) && !d(X, t)) && (!(n || !d(this, t) || !d(Y, t) || d(this, z) && this[z][t]) || n);
2220
- }, de = function(e, t) {
2212
+ }, le = function(e) {
2213
+ var t = _(e, !0), n = Y.call(this, t);
2214
+ return !(this === U && d(X, t) && !d(Z, t)) && (!(n || !d(this, t) || !d(X, t) || d(this, z) && this[z][t]) || n);
2215
+ }, ue = function(e, t) {
2221
2216
  var n = g(e), r = _(t, !0);
2222
- if (n !== U || !d(Y, r) || d(X, r)) {
2223
- var i = G(n, r);
2224
- return !i || !d(Y, r) || d(n, z) && n[z][r] || (i.enumerable = !0), i;
2217
+ if (n !== U || !d(X, r) || d(Z, r)) {
2218
+ var i = K(n, r);
2219
+ return !i || !d(X, r) || d(n, z) && n[z][r] || (i.enumerable = !0), i;
2225
2220
  }
2226
- }, fe = function(e) {
2227
- var t = q(g(e)), n = [];
2221
+ }, de = function(e) {
2222
+ var t = J(g(e)), n = [];
2228
2223
  return R(t, (function(e) {
2229
- d(Y, e) || d(j, e) || n.push(e);
2224
+ d(X, e) || d(j, e) || n.push(e);
2230
2225
  })), n;
2231
- }, pe = function(e) {
2232
- var t = e === U, n = q(t ? X : g(e)), r = [];
2226
+ }, fe = function(e) {
2227
+ var t = e === U, n = J(t ? Z : g(e)), r = [];
2233
2228
  return R(n, (function(e) {
2234
- !d(Y, e) || t && !d(U, e) || r.push(Y[e]);
2229
+ !d(X, e) || t && !d(U, e) || r.push(X[e]);
2235
2230
  })), r;
2236
2231
  };
2237
2232
  (c || (O((W = function() {
2238
2233
  if (this instanceof W) throw TypeError("Symbol is not a constructor");
2239
2234
  var e = arguments.length && arguments[0] !== void 0 ? String(arguments[0]) : void 0, t = M(e), n = function(e) {
2240
- this === U && n.call(X, e), d(this, z) && d(this[z], t) && (this[z][t] = !1), ae(this, t, v(1, e));
2235
+ this === U && n.call(Z, e), d(this, z) && d(this[z], t) && (this[z][t] = !1), ae(this, t, v(1, e));
2241
2236
  };
2242
2237
  return s && ie && ae(U, t, {
2243
2238
  configurable: !0,
@@ -2247,14 +2242,14 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
2247
2242
  return H(this).tag;
2248
2243
  })), O(W, "withoutSetter", (function(e) {
2249
2244
  return oe(M(e), e);
2250
- })), E.f = ue, T.f = ce, w.f = de, x.f = S.f = fe, C.f = pe, P.f = function(e) {
2245
+ })), E.f = le, T.f = Q, w.f = ue, x.f = S.f = de, C.f = fe, P.f = function(e) {
2251
2246
  return oe(N(e), e);
2252
- }, s && (K(W.prototype, "description", {
2247
+ }, s && (q(W.prototype, "description", {
2253
2248
  configurable: !0,
2254
2249
  get: function() {
2255
2250
  return H(this).description;
2256
2251
  }
2257
- }), o || O(U, "propertyIsEnumerable", ue, { unsafe: !0 }))), r({
2252
+ }), o || O(U, "propertyIsEnumerable", le, { unsafe: !0 }))), r({
2258
2253
  global: !0,
2259
2254
  wrap: !0,
2260
2255
  forced: !c,
@@ -2268,9 +2263,9 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
2268
2263
  }, {
2269
2264
  for: function(e) {
2270
2265
  var t = String(e);
2271
- if (d(Z, t)) return Z[t];
2266
+ if (d(ee, t)) return ee[t];
2272
2267
  var n = W(t);
2273
- return Z[t] = n, te[n] = t, n;
2268
+ return ee[t] = n, te[n] = t, n;
2274
2269
  },
2275
2270
  keyFor: function(e) {
2276
2271
  if (!se(e)) throw TypeError(e + " is not a symbol");
@@ -2289,18 +2284,18 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
2289
2284
  sham: !s
2290
2285
  }, {
2291
2286
  create: function(e, t) {
2292
- return t === void 0 ? y(e) : le(y(e), t);
2287
+ return t === void 0 ? y(e) : ce(y(e), t);
2293
2288
  },
2294
- defineProperty: ce,
2295
- defineProperties: le,
2296
- getOwnPropertyDescriptor: de
2289
+ defineProperty: Q,
2290
+ defineProperties: ce,
2291
+ getOwnPropertyDescriptor: ue
2297
2292
  }), r({
2298
2293
  target: "Object",
2299
2294
  stat: !0,
2300
2295
  forced: !c
2301
2296
  }, {
2302
- getOwnPropertyNames: fe,
2303
- getOwnPropertySymbols: pe
2297
+ getOwnPropertyNames: de,
2298
+ getOwnPropertySymbols: fe
2304
2299
  }), r({
2305
2300
  target: "Object",
2306
2301
  stat: !0,
@@ -2309,18 +2304,18 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
2309
2304
  }))
2310
2305
  }, { getOwnPropertySymbols: function(e) {
2311
2306
  return C.f(h(e));
2312
- } }), ee) && r({
2307
+ } }), G) && r({
2313
2308
  target: "JSON",
2314
2309
  stat: !0,
2315
2310
  forced: !c || u((function() {
2316
2311
  var e = W();
2317
- return ee([e]) != "[null]" || ee({ a: e }) != "{}" || ee(Object(e)) != "{}";
2312
+ return G([e]) != "[null]" || G({ a: e }) != "{}" || G(Object(e)) != "{}";
2318
2313
  }))
2319
2314
  }, { stringify: function(e, t, n) {
2320
2315
  for (var r, i = [e], a = 1; arguments.length > a;) i.push(arguments[a++]);
2321
2316
  if (r = t, (p(t) || e !== void 0) && !se(e)) return f(t) || (t = function(e, t) {
2322
2317
  if (typeof r == "function" && (t = r.call(this, e, t)), !se(t)) return t;
2323
- }), i[1] = t, ee.apply(null, i);
2318
+ }), i[1] = t, G.apply(null, i);
2324
2319
  } }), W.prototype[B] || D(W.prototype, B, W.prototype.valueOf), I(W, "Symbol"), j[z] = !0;
2325
2320
  },
2326
2321
  function(e, t, n) {
@@ -4256,13 +4251,10 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
4256
4251
  enumerable: !0,
4257
4252
  configurable: !0
4258
4253
  }), t.prototype.before = function() {
4259
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
4260
4254
  throw Error("Mixin: ChildNode not implemented.");
4261
4255
  }, t.prototype.after = function() {
4262
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
4263
4256
  throw Error("Mixin: ChildNode not implemented.");
4264
4257
  }, t.prototype.replaceWith = function() {
4265
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
4266
4258
  throw Error("Mixin: ChildNode not implemented.");
4267
4259
  }, t.prototype.remove = function() {
4268
4260
  throw Error("Mixin: ChildNode not implemented.");
@@ -5365,10 +5357,8 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
5365
5357
  enumerable: !0,
5366
5358
  configurable: !0
5367
5359
  }), t.prototype.prepend = function() {
5368
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5369
5360
  throw Error("Mixin: ParentNode not implemented.");
5370
5361
  }, t.prototype.append = function() {
5371
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5372
5362
  throw Error("Mixin: ParentNode not implemented.");
5373
5363
  }, t.prototype.querySelector = function(e) {
5374
5364
  throw Error("Mixin: ParentNode not implemented.");
@@ -5638,10 +5628,8 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
5638
5628
  enumerable: !0,
5639
5629
  configurable: !0
5640
5630
  }), t.prototype.prepend = function() {
5641
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5642
5631
  throw Error("Mixin: ParentNode not implemented.");
5643
5632
  }, t.prototype.append = function() {
5644
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5645
5633
  throw Error("Mixin: ParentNode not implemented.");
5646
5634
  }, t.prototype.querySelector = function(e) {
5647
5635
  throw Error("Mixin: ParentNode not implemented.");
@@ -5660,13 +5648,10 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
5660
5648
  enumerable: !0,
5661
5649
  configurable: !0
5662
5650
  }), t.prototype.before = function() {
5663
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5664
5651
  throw Error("Mixin: ChildNode not implemented.");
5665
5652
  }, t.prototype.after = function() {
5666
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5667
5653
  throw Error("Mixin: ChildNode not implemented.");
5668
5654
  }, t.prototype.replaceWith = function() {
5669
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5670
5655
  throw Error("Mixin: ChildNode not implemented.");
5671
5656
  }, t.prototype.remove = function() {
5672
5657
  throw Error("Mixin: ChildNode not implemented.");
@@ -5731,10 +5716,8 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
5731
5716
  enumerable: !0,
5732
5717
  configurable: !0
5733
5718
  }), t.prototype.prepend = function() {
5734
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5735
5719
  throw Error("Mixin: ParentNode not implemented.");
5736
5720
  }, t.prototype.append = function() {
5737
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
5738
5721
  throw Error("Mixin: ParentNode not implemented.");
5739
5722
  }, t.prototype.querySelector = function(e) {
5740
5723
  throw Error("Mixin: ParentNode not implemented.");
@@ -7802,8 +7785,8 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7802
7785
  for (var V = (l = void 0, r(F)), H = V.next(); !H.done; H = V.next()) {
7803
7786
  var W = H.value;
7804
7787
  if (W !== ":" || R) {
7805
- var ee = U(W, m);
7806
- R ? i.password += ee : i.username += ee;
7788
+ var G = U(W, m);
7789
+ R ? i.password += G : i.username += G;
7807
7790
  } else R = !0;
7808
7791
  }
7809
7792
  } catch (e) {
@@ -7827,13 +7810,13 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7827
7810
  else if (z.c() !== ":" || L) if (z.c() === "" || z.c() === "/" || z.c() === "?" || z.c() === "#" || b(i) && z.c() === "\\") {
7828
7811
  if (z.pointer--, b(i) && F === "") return _("Invalid input string."), null;
7829
7812
  if (a !== void 0 && F === "" && (S(i) || i.port !== null)) return _("Invalid input string."), i;
7830
- if ((K = P(F, !b(i))) === null) return null;
7831
- if (i.host = K, F = "", E = s.ParserState.PathStart, a !== void 0) return i;
7813
+ if ((q = P(F, !b(i))) === null) return null;
7814
+ if (i.host = q, F = "", E = s.ParserState.PathStart, a !== void 0) return i;
7832
7815
  } else z.c() === "[" && (L = !0), z.c() === "]" && (L = !1), F += z.c();
7833
7816
  else {
7834
7817
  if (F === "") return _("Invalid input string."), null;
7835
- if ((K = P(F, !b(i))) === null) return null;
7836
- if (i.host = K, F = "", E = s.ParserState.Port, a === s.ParserState.Hostname) return i;
7818
+ if ((q = P(F, !b(i))) === null) return null;
7819
+ if (i.host = q, F = "", E = s.ParserState.Port, a === s.ParserState.Hostname) return i;
7837
7820
  }
7838
7821
  break;
7839
7822
  case s.ParserState.Port:
@@ -7841,9 +7824,9 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7841
7824
  else {
7842
7825
  if (!(z.c() === "" || z.c() === "/" || z.c() === "?" || z.c() === "#" || b(i) && z.c() === "\\" || a)) return _("Invalid input string."), null;
7843
7826
  if (F !== "" && F !== "") {
7844
- var G = parseInt(F, 10);
7845
- if (G > 2 ** 16 - 1) return _("Invalid port number."), null;
7846
- i.port = G === x(i.scheme) ? null : G, F = "";
7827
+ var K = parseInt(F, 10);
7828
+ if (K > 2 ** 16 - 1) return _("Invalid port number."), null;
7829
+ i.port = K === x(i.scheme) ? null : K, F = "";
7847
7830
  }
7848
7831
  if (a !== void 0) return i;
7849
7832
  E = s.ParserState.PathStart, z.pointer--;
@@ -7874,9 +7857,9 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7874
7857
  if (i.host = "", a !== void 0) return i;
7875
7858
  E = s.ParserState.PathStart;
7876
7859
  } else {
7877
- var K;
7878
- if ((K = P(F, !b(i))) === null) return null;
7879
- if (K === "localhost" && (K = ""), i.host = K, a !== void 0) return i;
7860
+ var q;
7861
+ if ((q = P(F, !b(i))) === null) return null;
7862
+ if (q === "localhost" && (q = ""), i.host = q, a !== void 0) return i;
7880
7863
  F = "", E = s.ParserState.PathStart;
7881
7864
  }
7882
7865
  else F += z.c();
@@ -7891,8 +7874,8 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7891
7874
  if (!O(F)) {
7892
7875
  if (i.scheme === "file" && i.path.length === 0 && M(F)) {
7893
7876
  i.host !== null && i.host !== "" && (_("Invalid input string."), i.host = "");
7894
- var q = Array.from(F);
7895
- F = q.slice(0, 1) + ":" + q.slice(2);
7877
+ var J = Array.from(F);
7878
+ F = J.slice(0, 1) + ":" + J.slice(2);
7896
7879
  }
7897
7880
  i.path.push(F);
7898
7881
  }
@@ -7908,18 +7891,18 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7908
7891
  if (D === "UTF-8" || b(i) && i.scheme !== "ws" && i.scheme !== "wss" || (D = "UTF-8"), a === void 0 && z.c() === "#") i.fragment = "", E = s.ParserState.Fragment;
7909
7892
  else if (z.c() !== "") {
7910
7893
  if (h.test(z.c()) || z.c() === "%" || _("Character is not a URL code point or a percent encoded character."), z.c() !== "%" || /^[0-9a-fA-F][0-9a-fA-F]/.test(z.remaining()) || _("Percent encoded character must be followed by two hex digits."), D.toUpperCase() !== "UTF-8") throw Error("Only UTF-8 encoding is supported.");
7911
- var J = o.utf8Encode(z.c());
7912
- if (J.length >= 3 && J[0] === 38 && J[1] === 35 && J[J.length - 1] === 59) J = J.subarray(2, J.length - 1), i.query += "%26%23" + c.byteSequence.isomorphicDecode(J) + "%3B";
7894
+ var Y = o.utf8Encode(z.c());
7895
+ if (Y.length >= 3 && Y[0] === 38 && Y[1] === 35 && Y[Y.length - 1] === 59) Y = Y.subarray(2, Y.length - 1), i.query += "%26%23" + c.byteSequence.isomorphicDecode(Y) + "%3B";
7913
7896
  else try {
7914
- for (var Y = (g = void 0, r(J)), X = Y.next(); !X.done; X = Y.next()) {
7915
- var Z = X.value;
7916
- Z < 33 || Z > 126 || Z === 34 || Z === 35 || Z === 60 || Z === 62 || Z === 39 && b(i) ? i.query += B(Z) : i.query += String.fromCharCode(Z);
7897
+ for (var X = (g = void 0, r(Y)), Z = X.next(); !Z.done; Z = X.next()) {
7898
+ var ee = Z.value;
7899
+ ee < 33 || ee > 126 || ee === 34 || ee === 35 || ee === 60 || ee === 62 || ee === 39 && b(i) ? i.query += B(ee) : i.query += String.fromCharCode(ee);
7917
7900
  }
7918
7901
  } catch (e) {
7919
7902
  g = { error: e };
7920
7903
  } finally {
7921
7904
  try {
7922
- X && !X.done && (v = Y.return) && v.call(Y);
7905
+ Z && !Z.done && (v = X.return) && v.call(X);
7923
7906
  } finally {
7924
7907
  if (g) throw g.error;
7925
7908
  }
@@ -7956,7 +7939,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
7956
7939
  function P(e, t) {
7957
7940
  if (t === void 0 && (t = !1), e.startsWith("[")) return e.endsWith("]") ? L(e.substring(1, e.length - 1)) : (_("Expected ']' after '['."), null);
7958
7941
  if (t) return R(e);
7959
- var n = G(o.utf8Decode(H(e)));
7942
+ var n = K(o.utf8Decode(H(e)));
7960
7943
  if (n === null || g.test(n)) return _("Invalid domain."), null;
7961
7944
  var r = I(n);
7962
7945
  return r === null || o.isNumber(r) ? r : n;
@@ -8162,7 +8145,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
8162
8145
  }
8163
8146
  return f;
8164
8147
  }
8165
- function ee(e) {
8148
+ function G(e) {
8166
8149
  var t, n, i = "";
8167
8150
  try {
8168
8151
  for (var a = r(e), o = a.next(); !o.done; o = a.next()) {
@@ -8180,7 +8163,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
8180
8163
  }
8181
8164
  return i;
8182
8165
  }
8183
- function G(e, t) {
8166
+ function K(e, t) {
8184
8167
  t === void 0 && (t = !1);
8185
8168
  var n = l.domainToASCII(e);
8186
8169
  return n === "" ? (_("Invalid domain name."), null) : n;
@@ -8226,14 +8209,14 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
8226
8209
  return n === void 0 && (n = !1), C(e, n) === C(t, n);
8227
8210
  }, t.urlEncodedStringParser = function(e) {
8228
8211
  return W(o.utf8Encode(e));
8229
- }, t.urlEncodedParser = W, t.urlEncodedByteSerializer = ee, t.urlEncodedSerializer = function(e, t) {
8212
+ }, t.urlEncodedParser = W, t.urlEncodedByteSerializer = G, t.urlEncodedSerializer = function(e, t) {
8230
8213
  var n, i;
8231
8214
  if ((t === void 0 || t === "replacement" || t === "UTF-16BE" || t === "UTF-16LE" ? "UTF-8" : t).toUpperCase() !== "UTF-8") throw Error("Only UTF-8 encoding is supported.");
8232
8215
  var a = "";
8233
8216
  try {
8234
8217
  for (var s = r(e), c = s.next(); !c.done; c = s.next()) {
8235
- var l = c.value, u = ee(o.utf8Encode(l[0])), d = l[1];
8236
- d = ee(o.utf8Encode(d)), a !== "" && (a += "&"), a += u + "=" + d;
8218
+ var l = c.value, u = G(o.utf8Encode(l[0])), d = l[1];
8219
+ d = G(o.utf8Encode(d)), a !== "" && (a += "&"), a += u + "=" + d;
8237
8220
  }
8238
8221
  } catch (e) {
8239
8222
  n = { error: e };
@@ -8264,7 +8247,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
8264
8247
  case "file":
8265
8248
  default: return s.OpaqueOrigin;
8266
8249
  }
8267
- }, t.domainToASCII = G, t.domainToUnicode = function(e, t) {
8250
+ }, t.domainToASCII = K, t.domainToUnicode = function(e, t) {
8268
8251
  t === void 0 && (t = !1);
8269
8252
  var n = l.domainToUnicode(e);
8270
8253
  return n === "" && _("Invalid domain name."), n;
@@ -8370,13 +8353,10 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
8370
8353
  enumerable: !0,
8371
8354
  configurable: !0
8372
8355
  }), t.prototype.before = function() {
8373
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
8374
8356
  throw Error("Mixin: ChildNode not implemented.");
8375
8357
  }, t.prototype.after = function() {
8376
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
8377
8358
  throw Error("Mixin: ChildNode not implemented.");
8378
8359
  }, t.prototype.replaceWith = function() {
8379
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
8380
8360
  throw Error("Mixin: ChildNode not implemented.");
8381
8361
  }, t.prototype.remove = function() {
8382
8362
  throw Error("Mixin: ChildNode not implemented.");
@@ -11122,7 +11102,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
11122
11102
  }
11123
11103
  return Object.defineProperty(e.prototype, "value", {
11124
11104
  get: function() {
11125
- return this._initialized || (this._value = this._initFunc(), this._initialized = !0), this._value;
11105
+ return this._initialized ||= (this._value = this._initFunc(), !0), this._value;
11126
11106
  },
11127
11107
  enumerable: !0,
11128
11108
  configurable: !0
@@ -12636,8 +12616,8 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
12636
12616
  var W = y.indexOf("?");
12637
12617
  if (W === -1 ? t && (this.search = "", this.query = {}) : (this.search = y.substr(W), this.query = y.substr(W + 1), t && (this.query = v.parse(this.query)), y = y.slice(0, W)), y && (this.pathname = y), _[S] && this.hostname && !this.pathname && (this.pathname = "/"), this.pathname || this.search) {
12638
12618
  z = this.pathname || "";
12639
- var ee = this.search || "";
12640
- this.path = z + ee;
12619
+ var G = this.search || "";
12620
+ this.path = z + G;
12641
12621
  }
12642
12622
  return this.href = this.format(), this;
12643
12623
  }, a.prototype.format = function() {
@@ -12791,7 +12771,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
12791
12771
  },
12792
12772
  function(e, t) {
12793
12773
  e.exports = function(e) {
12794
- return e.webpackPolyfill || (e.deprecate = function() {}, e.paths = [], e.children ||= [], Object.defineProperty(e, "loaded", {
12774
+ return e.webpackPolyfill ||= (e.deprecate = function() {}, e.paths = [], e.children ||= [], Object.defineProperty(e, "loaded", {
12795
12775
  enumerable: !0,
12796
12776
  get: function() {
12797
12777
  return e.l;
@@ -12801,7 +12781,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
12801
12781
  get: function() {
12802
12782
  return e.i;
12803
12783
  }
12804
- }), e.webpackPolyfill = 1), e;
12784
+ }), 1), e;
12805
12785
  };
12806
12786
  },
12807
12787
  function(e, t, n) {
@@ -13599,55 +13579,52 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
13599
13579
  var r = n(3), i = n(0), a = function() {
13600
13580
  function e() {}
13601
13581
  return e.prototype.before = function() {
13602
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
13603
- var n = r.Cast.asNode(this), a = n._parent;
13604
- if (a !== null) {
13605
- for (var o = n._previousSibling, s = !0; s && o;) {
13606
- s = !1;
13607
- for (var c = 0; c < e.length; c++) {
13608
- var l = e[c];
13609
- if (l === o) {
13610
- o = o._previousSibling, s = !0;
13582
+ var e = [...arguments], t = r.Cast.asNode(this), n = t._parent;
13583
+ if (n !== null) {
13584
+ for (var a = t._previousSibling, o = !0; o && a;) {
13585
+ o = !1;
13586
+ for (var s = 0; s < e.length; s++) {
13587
+ var c = e[s];
13588
+ if (c === a) {
13589
+ a = a._previousSibling, o = !0;
13611
13590
  break;
13612
13591
  }
13613
13592
  }
13614
13593
  }
13615
- var u = i.parentNode_convertNodesIntoANode(e, n._nodeDocument);
13616
- o = o === null ? a._firstChild : o._nextSibling, i.mutation_preInsert(u, a, o);
13594
+ var l = i.parentNode_convertNodesIntoANode(e, t._nodeDocument);
13595
+ a = a === null ? n._firstChild : a._nextSibling, i.mutation_preInsert(l, n, a);
13617
13596
  }
13618
13597
  }, e.prototype.after = function() {
13619
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
13620
- var n = r.Cast.asNode(this), a = n._parent;
13621
- if (a) {
13622
- for (var o = n._nextSibling, s = !0; s && o;) {
13623
- s = !1;
13624
- for (var c = 0; c < e.length; c++) {
13625
- var l = e[c];
13626
- if (l === o) {
13627
- o = o._nextSibling, s = !0;
13598
+ var e = [...arguments], t = r.Cast.asNode(this), n = t._parent;
13599
+ if (n) {
13600
+ for (var a = t._nextSibling, o = !0; o && a;) {
13601
+ o = !1;
13602
+ for (var s = 0; s < e.length; s++) {
13603
+ var c = e[s];
13604
+ if (c === a) {
13605
+ a = a._nextSibling, o = !0;
13628
13606
  break;
13629
13607
  }
13630
13608
  }
13631
13609
  }
13632
- var u = i.parentNode_convertNodesIntoANode(e, n._nodeDocument);
13633
- i.mutation_preInsert(u, a, o);
13610
+ var l = i.parentNode_convertNodesIntoANode(e, t._nodeDocument);
13611
+ i.mutation_preInsert(l, n, a);
13634
13612
  }
13635
13613
  }, e.prototype.replaceWith = function() {
13636
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
13637
- var n = r.Cast.asNode(this), a = n._parent;
13638
- if (a) {
13639
- for (var o = n._nextSibling, s = !0; s && o;) {
13640
- s = !1;
13641
- for (var c = 0; c < e.length; c++) {
13642
- var l = e[c];
13643
- if (l === o) {
13644
- o = o._nextSibling, s = !0;
13614
+ var e = [...arguments], t = r.Cast.asNode(this), n = t._parent;
13615
+ if (n) {
13616
+ for (var a = t._nextSibling, o = !0; o && a;) {
13617
+ o = !1;
13618
+ for (var s = 0; s < e.length; s++) {
13619
+ var c = e[s];
13620
+ if (c === a) {
13621
+ a = a._nextSibling, o = !0;
13645
13622
  break;
13646
13623
  }
13647
13624
  }
13648
13625
  }
13649
- var u = i.parentNode_convertNodesIntoANode(e, n._nodeDocument);
13650
- n._parent === a ? i.mutation_replace(n, u, a) : i.mutation_preInsert(u, a, o);
13626
+ var l = i.parentNode_convertNodesIntoANode(e, t._nodeDocument);
13627
+ t._parent === n ? i.mutation_replace(t, l, n) : i.mutation_preInsert(l, n, a);
13651
13628
  }
13652
13629
  }, e.prototype.remove = function() {
13653
13630
  var e = r.Cast.asNode(this), t = e._parent;
@@ -13859,13 +13836,11 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
13859
13836
  enumerable: !0,
13860
13837
  configurable: !0
13861
13838
  }), e.prototype.prepend = function() {
13862
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
13863
- var n = i.Cast.asNode(this), r = a.parentNode_convertNodesIntoANode(e, n._nodeDocument);
13864
- a.mutation_preInsert(r, n, n._firstChild);
13839
+ var e = [...arguments], t = i.Cast.asNode(this), n = a.parentNode_convertNodesIntoANode(e, t._nodeDocument);
13840
+ a.mutation_preInsert(n, t, t._firstChild);
13865
13841
  }, e.prototype.append = function() {
13866
- for (var e = [], t = 0; t < arguments.length; t++) e[t] = arguments[t];
13867
- var n = i.Cast.asNode(this), r = a.parentNode_convertNodesIntoANode(e, n._nodeDocument);
13868
- a.mutation_append(r, n);
13842
+ var e = [...arguments], t = i.Cast.asNode(this), n = a.parentNode_convertNodesIntoANode(e, t._nodeDocument);
13843
+ a.mutation_append(n, t);
13869
13844
  }, e.prototype.querySelector = function(e) {
13870
13845
  var t = i.Cast.asNode(this), n = a.selectors_scopeMatchASelectorsString(e, t);
13871
13846
  return n.length === 0 ? null : n[0];
@@ -14855,7 +14830,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
14855
14830
  break;
14856
14831
  }
14857
14832
  }
14858
- o && (A(e, i, a, !1), I(e, e.line - s), i = a = e.position, o = !1), g(u) || (a = e.position + 1), u = e.input.charCodeAt(++e.position);
14833
+ o &&= (A(e, i, a, !1), I(e, e.line - s), i = a = e.position, !1), g(u) || (a = e.position + 1), u = e.input.charCodeAt(++e.position);
14859
14834
  }
14860
14835
  return A(e, i, a, !1), !!e.result || (e.kind = d, e.result = f, !1);
14861
14836
  }(e, p, n === 1) && (T = !0, e.tag === null && (e.tag = "?")), e.anchor !== null && (e.anchorMap[e.anchor] = e.result)) : b === 0 && (T = l && L(e, m))), e.tag !== null && e.tag !== "!") if (e.tag === "?") {
@@ -15287,7 +15262,7 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
15287
15262
  resolve: function(e) {
15288
15263
  if (e === null || e.length === 0) return !1;
15289
15264
  var t = e, n = /\/([gim]*)$/.exec(e), r = "";
15290
- return t[0] === "/" && (n && (r = n[1]), r.length > 3 || t[t.length - r.length - 1] !== "/") ? !1 : !0;
15265
+ return !(t[0] === "/" && (n && (r = n[1]), r.length > 3 || t[t.length - r.length - 1] !== "/"));
15291
15266
  },
15292
15267
  construct: function(e) {
15293
15268
  var t = e, n = /\/([gim]*)$/.exec(e), r = "";
@@ -16109,38 +16084,38 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
16109
16084
  this.type = r.Syntax.LabeledStatement, this.label = e, this.body = t;
16110
16085
  };
16111
16086
  t.LabeledStatement = W;
16112
- var ee = function(e, t) {
16087
+ var G = function(e, t) {
16113
16088
  this.type = r.Syntax.Literal, this.value = e, this.raw = t;
16114
16089
  };
16115
- t.Literal = ee;
16116
- var G = function(e, t) {
16090
+ t.Literal = G;
16091
+ var K = function(e, t) {
16117
16092
  this.type = r.Syntax.MetaProperty, this.meta = e, this.property = t;
16118
16093
  };
16119
- t.MetaProperty = G;
16120
- var K = function(e, t, n, i, a) {
16094
+ t.MetaProperty = K;
16095
+ var q = function(e, t, n, i, a) {
16121
16096
  this.type = r.Syntax.MethodDefinition, this.key = e, this.computed = t, this.value = n, this.kind = i, this.static = a;
16122
16097
  };
16123
- t.MethodDefinition = K;
16124
- var q = function(e) {
16098
+ t.MethodDefinition = q;
16099
+ var J = function(e) {
16125
16100
  this.type = r.Syntax.Program, this.body = e, this.sourceType = "module";
16126
16101
  };
16127
- t.Module = q;
16128
- var J = function(e, t) {
16102
+ t.Module = J;
16103
+ var Y = function(e, t) {
16129
16104
  this.type = r.Syntax.NewExpression, this.callee = e, this.arguments = t;
16130
16105
  };
16131
- t.NewExpression = J;
16132
- var Y = function(e) {
16106
+ t.NewExpression = Y;
16107
+ var X = function(e) {
16133
16108
  this.type = r.Syntax.ObjectExpression, this.properties = e;
16134
16109
  };
16135
- t.ObjectExpression = Y;
16136
- var X = function(e) {
16110
+ t.ObjectExpression = X;
16111
+ var Z = function(e) {
16137
16112
  this.type = r.Syntax.ObjectPattern, this.properties = e;
16138
16113
  };
16139
- t.ObjectPattern = X;
16140
- var Z = function(e, t, n, i, a, o) {
16114
+ t.ObjectPattern = Z;
16115
+ var ee = function(e, t, n, i, a, o) {
16141
16116
  this.type = r.Syntax.Property, this.key = t, this.computed = n, this.value = i, this.kind = e, this.method = a, this.shorthand = o;
16142
16117
  };
16143
- t.Property = Z;
16118
+ t.Property = ee;
16144
16119
  var te = function(e, t, n, i) {
16145
16120
  this.type = r.Syntax.Literal, this.value = e, this.raw = t, this.regex = {
16146
16121
  pattern: n,
@@ -16172,70 +16147,70 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
16172
16147
  this.type = r.Syntax.MemberExpression, this.computed = !1, this.object = e, this.property = t;
16173
16148
  };
16174
16149
  t.StaticMemberExpression = se;
16175
- var ce = function() {
16150
+ var Q = function() {
16176
16151
  this.type = r.Syntax.Super;
16177
16152
  };
16178
- t.Super = ce;
16179
- var le = function(e, t) {
16153
+ t.Super = Q;
16154
+ var ce = function(e, t) {
16180
16155
  this.type = r.Syntax.SwitchCase, this.test = e, this.consequent = t;
16181
16156
  };
16182
- t.SwitchCase = le;
16183
- var ue = function(e, t) {
16157
+ t.SwitchCase = ce;
16158
+ var le = function(e, t) {
16184
16159
  this.type = r.Syntax.SwitchStatement, this.discriminant = e, this.cases = t;
16185
16160
  };
16186
- t.SwitchStatement = ue;
16187
- var de = function(e, t) {
16161
+ t.SwitchStatement = le;
16162
+ var ue = function(e, t) {
16188
16163
  this.type = r.Syntax.TaggedTemplateExpression, this.tag = e, this.quasi = t;
16189
16164
  };
16190
- t.TaggedTemplateExpression = de;
16191
- var fe = function(e, t) {
16165
+ t.TaggedTemplateExpression = ue;
16166
+ var de = function(e, t) {
16192
16167
  this.type = r.Syntax.TemplateElement, this.value = e, this.tail = t;
16193
16168
  };
16194
- t.TemplateElement = fe;
16195
- var pe = function(e, t) {
16169
+ t.TemplateElement = de;
16170
+ var fe = function(e, t) {
16196
16171
  this.type = r.Syntax.TemplateLiteral, this.quasis = e, this.expressions = t;
16197
16172
  };
16198
- t.TemplateLiteral = pe;
16199
- var me = function() {
16173
+ t.TemplateLiteral = fe;
16174
+ var pe = function() {
16200
16175
  this.type = r.Syntax.ThisExpression;
16201
16176
  };
16202
- t.ThisExpression = me;
16203
- var he = function(e) {
16177
+ t.ThisExpression = pe;
16178
+ var me = function(e) {
16204
16179
  this.type = r.Syntax.ThrowStatement, this.argument = e;
16205
16180
  };
16206
- t.ThrowStatement = he;
16207
- var ge = function(e, t, n) {
16181
+ t.ThrowStatement = me;
16182
+ var he = function(e, t, n) {
16208
16183
  this.type = r.Syntax.TryStatement, this.block = e, this.handler = t, this.finalizer = n;
16209
16184
  };
16210
- t.TryStatement = ge;
16211
- var _e = function(e, t) {
16185
+ t.TryStatement = he;
16186
+ var ge = function(e, t) {
16212
16187
  this.type = r.Syntax.UnaryExpression, this.operator = e, this.argument = t, this.prefix = !0;
16213
16188
  };
16214
- t.UnaryExpression = _e;
16215
- var ve = function(e, t, n) {
16189
+ t.UnaryExpression = ge;
16190
+ var _e = function(e, t, n) {
16216
16191
  this.type = r.Syntax.UpdateExpression, this.operator = e, this.argument = t, this.prefix = n;
16217
16192
  };
16218
- t.UpdateExpression = ve;
16219
- var ye = function(e, t) {
16193
+ t.UpdateExpression = _e;
16194
+ var ve = function(e, t) {
16220
16195
  this.type = r.Syntax.VariableDeclaration, this.declarations = e, this.kind = t;
16221
16196
  };
16222
- t.VariableDeclaration = ye;
16223
- var be = function(e, t) {
16197
+ t.VariableDeclaration = ve;
16198
+ var ye = function(e, t) {
16224
16199
  this.type = r.Syntax.VariableDeclarator, this.id = e, this.init = t;
16225
16200
  };
16226
- t.VariableDeclarator = be;
16227
- var xe = function(e, t) {
16201
+ t.VariableDeclarator = ye;
16202
+ var be = function(e, t) {
16228
16203
  this.type = r.Syntax.WhileStatement, this.test = e, this.body = t;
16229
16204
  };
16230
- t.WhileStatement = xe;
16231
- var Se = function(e, t) {
16205
+ t.WhileStatement = be;
16206
+ var xe = function(e, t) {
16232
16207
  this.type = r.Syntax.WithStatement, this.object = e, this.body = t;
16233
16208
  };
16234
- t.WithStatement = Se;
16235
- var Ce = function(e, t) {
16209
+ t.WithStatement = xe;
16210
+ var Se = function(e, t) {
16236
16211
  this.type = r.Syntax.YieldExpression, this.argument = e, this.delegate = t;
16237
16212
  };
16238
- t.YieldExpression = Ce;
16213
+ t.YieldExpression = Se;
16239
16214
  },
16240
16215
  function(e, t, n) {
16241
16216
  Object.defineProperty(t, "__esModule", { value: !0 });
@@ -16311,17 +16286,15 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
16311
16286
  };
16312
16287
  }
16313
16288
  return e.prototype.throwError = function(e) {
16314
- for (var t = [], n = 1; n < arguments.length; n++) t[n - 1] = arguments[n];
16315
- var i = Array.prototype.slice.call(arguments, 1), a = e.replace(/%(\d)/g, (function(e, t) {
16316
- return r.assert(t < i.length, "Message reference must be in range"), i[t];
16317
- })), o = this.lastMarker.index, s = this.lastMarker.line, c = this.lastMarker.column + 1;
16318
- throw this.errorHandler.createError(o, s, c, a);
16289
+ var t = Array.prototype.slice.call(arguments, 1), n = e.replace(/%(\d)/g, (function(e, n) {
16290
+ return r.assert(n < t.length, "Message reference must be in range"), t[n];
16291
+ })), i = this.lastMarker.index, a = this.lastMarker.line, o = this.lastMarker.column + 1;
16292
+ throw this.errorHandler.createError(i, a, o, n);
16319
16293
  }, e.prototype.tolerateError = function(e) {
16320
- for (var t = [], n = 1; n < arguments.length; n++) t[n - 1] = arguments[n];
16321
- var i = Array.prototype.slice.call(arguments, 1), a = e.replace(/%(\d)/g, (function(e, t) {
16322
- return r.assert(t < i.length, "Message reference must be in range"), i[t];
16323
- })), o = this.lastMarker.index, s = this.scanner.lineNumber, c = this.lastMarker.column + 1;
16324
- this.errorHandler.tolerateError(o, s, c, a);
16294
+ var t = Array.prototype.slice.call(arguments, 1), n = e.replace(/%(\d)/g, (function(e, n) {
16295
+ return r.assert(n < t.length, "Message reference must be in range"), t[n];
16296
+ })), i = this.lastMarker.index, a = this.scanner.lineNumber, o = this.lastMarker.column + 1;
16297
+ this.errorHandler.tolerateError(i, a, o, n);
16325
16298
  }, e.prototype.unexpectedTokenError = function(e, t) {
16326
16299
  var n, r = t || a.Messages.UnexpectedToken;
16327
16300
  if (e ? (t || (r = e.type === 2 ? a.Messages.UnexpectedEOS : e.type === 3 ? a.Messages.UnexpectedIdentifier : e.type === 6 ? a.Messages.UnexpectedNumber : e.type === 8 ? a.Messages.UnexpectedString : e.type === 10 ? a.Messages.UnexpectedTemplate : a.Messages.UnexpectedToken, e.type === 4 && (this.scanner.isFutureReservedWord(e.value) ? r = a.Messages.UnexpectedReserved : this.context.strict && this.scanner.isStrictModeReservedWord(e.value) && (r = a.Messages.StrictReservedWord))), n = e.value) : n = "ILLEGAL", r = r.replace("%0", n), e && typeof e.lineNumber == "number") {
@@ -18056,11 +18029,6 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
18056
18029
  var i = parseInt(t || n, 16);
18057
18030
  return i > 1114111 && r.throwUnexpectedToken(a.Messages.InvalidRegExp), i <= 65535 ? String.fromCharCode(i) : "￿";
18058
18031
  })).replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, "￿"));
18059
- try {
18060
- RegExp(n);
18061
- } catch {
18062
- this.throwUnexpectedToken(a.Messages.InvalidRegExp);
18063
- }
18064
18032
  try {
18065
18033
  return new RegExp(e, t);
18066
18034
  } catch {
@@ -19345,9 +19313,9 @@ var zn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/xmlbuilder2@3.1.1/node_m
19345
19313
  ]);
19346
19314
  }));
19347
19315
  }) });
19348
- zn();
19349
- const Bn = "#name", Vn = {
19350
- ...Rn,
19316
+ _n();
19317
+ const vn = "#name", yn = {
19318
+ ...gn,
19351
19319
  async: !1,
19352
19320
  charsAsChildren: !1,
19353
19321
  childkey: "$$",
@@ -19365,8 +19333,8 @@ const Bn = "#name", Vn = {
19365
19333
  strict: !0,
19366
19334
  trim: !1,
19367
19335
  xmlns: !1
19368
- }, Hn = (e) => e.toLowerCase(), Un = (e) => e.startsWith("") ? e.slice(1) : e;
19369
- var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js": ((e) => {
19336
+ }, bn = (e) => e.toLowerCase(), xn = (e) => e.startsWith("") ? e.slice(1) : e;
19337
+ var Sn = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_modules/base64-js/index.js": ((e) => {
19370
19338
  e.byteLength = c, e.toByteArray = u, e.fromByteArray = p;
19371
19339
  for (var t = [], n = [], r = typeof Uint8Array < "u" ? Uint8Array : Array, i = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", a = 0, o = i.length; a < o; ++a) t[a] = i[a], n[i.charCodeAt(a)] = a;
19372
19340
  n[45] = 62, n[95] = 63;
@@ -19401,7 +19369,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19401
19369
  for (var n, r = e.length, i = r % 3, a = [], o = 16383, s = 0, c = r - i; s < c; s += o) a.push(f(e, s, s + o > c ? c : s + o));
19402
19370
  return i === 1 ? (n = e[r - 1], a.push(t[n >> 2] + t[n << 4 & 63] + "==")) : i === 2 && (n = (e[r - 2] << 8) + e[r - 1], a.push(t[n >> 10] + t[n >> 4 & 63] + t[n << 2 & 63] + "=")), a.join("");
19403
19371
  }
19404
- }) }), Gn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js": ((e) => {
19372
+ }) }), Cn = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js": ((e) => {
19405
19373
  e.read = function(e, t, n, r, i) {
19406
19374
  var a, o, s = i * 8 - r - 1, c = (1 << s) - 1, l = c >> 1, u = -7, d = n ? i - 1 : 0, f = n ? -1 : 1, p = e[t + d];
19407
19375
  for (d += f, a = p & (1 << -u) - 1, p >>= -u, u += s; u > 0; a = a * 256 + e[t + d], d += f, u -= 8);
@@ -19416,8 +19384,8 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19416
19384
  for (o = o << i | s, l += i; l > 0; e[n + p] = o & 255, p += m, o /= 256, l -= 8);
19417
19385
  e[n + p - m] |= h * 128;
19418
19386
  };
19419
- }) }), Kn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js": ((e) => {
19420
- var t = Wn(), n = Gn(), r = typeof Symbol == "function" && typeof Symbol.for == "function" ? Symbol.for("nodejs.util.inspect.custom") : null;
19387
+ }) }), wn = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js": ((e) => {
19388
+ var t = Sn(), n = Cn(), r = typeof Symbol == "function" && typeof Symbol.for == "function" ? Symbol.for("nodejs.util.inspect.custom") : null;
19421
19389
  e.Buffer = s, e.SlowBuffer = v, e.INSPECT_MAX_BYTES = 50;
19422
19390
  var i = 2147483647;
19423
19391
  e.kMaxLength = i, s.TYPED_ARRAY_SUPPORT = a(), !s.TYPED_ARRAY_SUPPORT && typeof console < "u" && typeof console.error == "function" && console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");
@@ -19459,7 +19427,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19459
19427
  if (typeof e == "string") return f(e, t);
19460
19428
  if (ArrayBuffer.isView(e)) return m(e);
19461
19429
  if (e == null) throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type " + typeof e);
19462
- if (J(e, ArrayBuffer) || e && J(e.buffer, ArrayBuffer) || typeof SharedArrayBuffer < "u" && (J(e, SharedArrayBuffer) || e && J(e.buffer, SharedArrayBuffer))) return h(e, t, n);
19430
+ if (Y(e, ArrayBuffer) || e && Y(e.buffer, ArrayBuffer) || typeof SharedArrayBuffer < "u" && (Y(e, SharedArrayBuffer) || e && Y(e.buffer, SharedArrayBuffer))) return h(e, t, n);
19463
19431
  if (typeof e == "number") throw TypeError("The \"value\" argument must not be of type number. Received type number");
19464
19432
  var r = e.valueOf && e.valueOf();
19465
19433
  if (r != null && r !== e) return s.from(r, t, n);
@@ -19499,7 +19467,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19499
19467
  return n;
19500
19468
  }
19501
19469
  function m(e) {
19502
- if (J(e, Uint8Array)) {
19470
+ if (Y(e, Uint8Array)) {
19503
19471
  var t = new Uint8Array(e);
19504
19472
  return h(t.buffer, t.byteOffset, t.byteLength);
19505
19473
  }
@@ -19516,7 +19484,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19516
19484
  var t = _(e.length) | 0, n = o(t);
19517
19485
  return n.length === 0 || e.copy(n, 0, 0, t), n;
19518
19486
  }
19519
- if (e.length !== void 0) return typeof e.length != "number" || Y(e.length) ? o(0) : p(e);
19487
+ if (e.length !== void 0) return typeof e.length != "number" || X(e.length) ? o(0) : p(e);
19520
19488
  if (e.type === "Buffer" && Array.isArray(e.data)) return p(e.data);
19521
19489
  }
19522
19490
  function _(e) {
@@ -19529,7 +19497,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19529
19497
  s.isBuffer = function(e) {
19530
19498
  return e != null && e._isBuffer === !0 && e !== s.prototype;
19531
19499
  }, s.compare = function(e, t) {
19532
- if (J(e, Uint8Array) && (e = s.from(e, e.offset, e.byteLength)), J(t, Uint8Array) && (t = s.from(t, t.offset, t.byteLength)), !s.isBuffer(e) || !s.isBuffer(t)) throw TypeError("The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array");
19500
+ if (Y(e, Uint8Array) && (e = s.from(e, e.offset, e.byteLength)), Y(t, Uint8Array) && (t = s.from(t, t.offset, t.byteLength)), !s.isBuffer(e) || !s.isBuffer(t)) throw TypeError("The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array");
19533
19501
  if (e === t) return 0;
19534
19502
  for (var n = e.length, r = t.length, i = 0, a = Math.min(n, r); i < a; ++i) if (e[i] !== t[i]) {
19535
19503
  n = e[i], r = t[i];
@@ -19559,7 +19527,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19559
19527
  var r = s.allocUnsafe(t), i = 0;
19560
19528
  for (n = 0; n < e.length; ++n) {
19561
19529
  var a = e[n];
19562
- if (J(a, Uint8Array)) i + a.length > r.length ? s.from(a).copy(r, i) : Uint8Array.prototype.set.call(r, a, i);
19530
+ if (Y(a, Uint8Array)) i + a.length > r.length ? s.from(a).copy(r, i) : Uint8Array.prototype.set.call(r, a, i);
19563
19531
  else if (s.isBuffer(a)) a.copy(r, i);
19564
19532
  else throw TypeError("\"list\" argument must be an Array of Buffers");
19565
19533
  i += a.length;
@@ -19568,7 +19536,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19568
19536
  };
19569
19537
  function y(e, t) {
19570
19538
  if (s.isBuffer(e)) return e.length;
19571
- if (ArrayBuffer.isView(e) || J(e, ArrayBuffer)) return e.byteLength;
19539
+ if (ArrayBuffer.isView(e) || Y(e, ArrayBuffer)) return e.byteLength;
19572
19540
  if (typeof e != "string") throw TypeError("The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. Received type " + typeof e);
19573
19541
  var n = e.length, r = arguments.length > 2 && arguments[2] === !0;
19574
19542
  if (!r && n === 0) return 0;
@@ -19583,7 +19551,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19583
19551
  case "utf16le":
19584
19552
  case "utf-16le": return n * 2;
19585
19553
  case "hex": return n >>> 1;
19586
- case "base64": return K(e).length;
19554
+ case "base64": return q(e).length;
19587
19555
  default:
19588
19556
  if (i) return r ? -1 : W(e).length;
19589
19557
  t = ("" + t).toLowerCase(), i = !0;
@@ -19640,7 +19608,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19640
19608
  var t = "", n = e.INSPECT_MAX_BYTES;
19641
19609
  return t = this.toString("hex", 0, n).replace(/(.{2})/g, "$1 ").trim(), this.length > n && (t += " ... "), "<Buffer " + t + ">";
19642
19610
  }, r && (s.prototype[r] = s.prototype.inspect), s.prototype.compare = function(e, t, n, r, i) {
19643
- if (J(e, Uint8Array) && (e = s.from(e, e.offset, e.byteLength)), !s.isBuffer(e)) throw TypeError("The \"target\" argument must be one of type Buffer or Uint8Array. Received type " + typeof e);
19611
+ if (Y(e, Uint8Array) && (e = s.from(e, e.offset, e.byteLength)), !s.isBuffer(e)) throw TypeError("The \"target\" argument must be one of type Buffer or Uint8Array. Received type " + typeof e);
19644
19612
  if (t === void 0 && (t = 0), n === void 0 && (n = e ? e.length : 0), r === void 0 && (r = 0), i === void 0 && (i = this.length), t < 0 || n > e.length || r < 0 || i > this.length) throw RangeError("out of range index");
19645
19613
  if (r >= i && t >= n) return 0;
19646
19614
  if (r >= i) return -1;
@@ -19654,7 +19622,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19654
19622
  };
19655
19623
  function S(e, t, n, r, i) {
19656
19624
  if (e.length === 0) return -1;
19657
- if (typeof n == "string" ? (r = n, n = 0) : n > 2147483647 ? n = 2147483647 : n < -2147483648 && (n = -2147483648), n = +n, Y(n) && (n = i ? 0 : e.length - 1), n < 0 && (n = e.length + n), n >= e.length) {
19625
+ if (typeof n == "string" ? (r = n, n = 0) : n > 2147483647 ? n = 2147483647 : n < -2147483648 && (n = -2147483648), n = +n, X(n) && (n = i ? 0 : e.length - 1), n < 0 && (n = e.length + n), n >= e.length) {
19658
19626
  if (i) return -1;
19659
19627
  n = e.length - 1;
19660
19628
  } else if (n < 0) if (i) n = 0;
@@ -19702,22 +19670,22 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19702
19670
  r > a / 2 && (r = a / 2);
19703
19671
  for (var o = 0; o < r; ++o) {
19704
19672
  var s = parseInt(t.substr(o * 2, 2), 16);
19705
- if (Y(s)) return o;
19673
+ if (X(s)) return o;
19706
19674
  e[n + o] = s;
19707
19675
  }
19708
19676
  return o;
19709
19677
  }
19710
19678
  function T(e, t, n, r) {
19711
- return q(W(t, e.length - n), e, n, r);
19679
+ return J(W(t, e.length - n), e, n, r);
19712
19680
  }
19713
19681
  function E(e, t, n, r) {
19714
- return q(ee(t), e, n, r);
19682
+ return J(G(t), e, n, r);
19715
19683
  }
19716
19684
  function D(e, t, n, r) {
19717
- return q(K(t), e, n, r);
19685
+ return J(q(t), e, n, r);
19718
19686
  }
19719
19687
  function O(e, t, n, r) {
19720
- return q(G(t, e.length - n), e, n, r);
19688
+ return J(K(t, e.length - n), e, n, r);
19721
19689
  }
19722
19690
  s.prototype.write = function(e, t, n, r) {
19723
19691
  if (t === void 0) r = "utf8", n = this.length, t = 0;
@@ -19797,7 +19765,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
19797
19765
  function F(e, t, n) {
19798
19766
  var r = e.length;
19799
19767
  (!t || t < 0) && (t = 0), (!n || n < 0 || n > r) && (n = r);
19800
- for (var i = "", a = t; a < n; ++a) i += X[e[a]];
19768
+ for (var i = "", a = t; a < n; ++a) i += Z[e[a]];
19801
19769
  return i;
19802
19770
  }
19803
19771
  function I(e, t, n) {
@@ -20012,34 +19980,34 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
20012
19980
  }
20013
19981
  return a;
20014
19982
  }
20015
- function ee(e) {
19983
+ function G(e) {
20016
19984
  for (var t = [], n = 0; n < e.length; ++n) t.push(e.charCodeAt(n) & 255);
20017
19985
  return t;
20018
19986
  }
20019
- function G(e, t) {
19987
+ function K(e, t) {
20020
19988
  for (var n, r, i, a = [], o = 0; o < e.length && !((t -= 2) < 0); ++o) n = e.charCodeAt(o), r = n >> 8, i = n % 256, a.push(i), a.push(r);
20021
19989
  return a;
20022
19990
  }
20023
- function K(e) {
19991
+ function q(e) {
20024
19992
  return t.toByteArray(U(e));
20025
19993
  }
20026
- function q(e, t, n, r) {
19994
+ function J(e, t, n, r) {
20027
19995
  for (var i = 0; i < r && !(i + n >= t.length || i >= e.length); ++i) t[i + n] = e[i];
20028
19996
  return i;
20029
19997
  }
20030
- function J(e, t) {
19998
+ function Y(e, t) {
20031
19999
  return e instanceof t || e != null && e.constructor != null && e.constructor.name != null && e.constructor.name === t.name;
20032
20000
  }
20033
- function Y(e) {
20001
+ function X(e) {
20034
20002
  return e !== e;
20035
20003
  }
20036
- var X = (function() {
20004
+ var Z = (function() {
20037
20005
  for (var e = "0123456789abcdef", t = Array(256), n = 0; n < 16; ++n) for (var r = n * 16, i = 0; i < 16; ++i) t[r + i] = e[n] + e[i];
20038
20006
  return t;
20039
20007
  })();
20040
- }) }), qn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js": ((e, t) => {
20008
+ }) }), Tn = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js": ((e, t) => {
20041
20009
  /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
20042
- var n = Kn(), r = n.Buffer;
20010
+ var n = wn(), r = n.Buffer;
20043
20011
  function i(e, t) {
20044
20012
  for (var n in e) t[n] = e[n];
20045
20013
  }
@@ -20061,8 +20029,8 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
20061
20029
  if (typeof e != "number") throw TypeError("Argument must be a number");
20062
20030
  return n.SlowBuffer(e);
20063
20031
  };
20064
- }) }), Jn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js": ((e) => {
20065
- var t = qn().Buffer, n = t.isEncoding || function(e) {
20032
+ }) }), En = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js": ((e) => {
20033
+ var t = Tn().Buffer, n = t.isEncoding || function(e) {
20066
20034
  switch (e = "" + e, e && e.toLowerCase()) {
20067
20035
  case "hex":
20068
20036
  case "utf8":
@@ -20200,7 +20168,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
20200
20168
  function _(e) {
20201
20169
  return e && e.length ? this.write(e) : "";
20202
20170
  }
20203
- }) }), Yn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/sax@1.4.1/node_modules/sax/lib/sax.js": ((e) => {
20171
+ }) }), Dn = /* @__PURE__ */ fn({ "../../node_modules/.pnpm/sax@1.4.1/node_modules/sax/lib/sax.js": ((e) => {
20204
20172
  (function(e) {
20205
20173
  e.parser = function(e, t) {
20206
20174
  return new n(e, t);
@@ -20297,7 +20265,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
20297
20265
  };
20298
20266
  var o;
20299
20267
  try {
20300
- o = Ln("stream").Stream;
20268
+ o = hn("stream").Stream;
20301
20269
  } catch {
20302
20270
  o = function() {};
20303
20271
  }
@@ -20333,7 +20301,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
20333
20301
  l.prototype = Object.create(o.prototype, { constructor: { value: l } }), l.prototype.write = function(e) {
20334
20302
  if (typeof Buffer == "function" && typeof Buffer.isBuffer == "function" && Buffer.isBuffer(e)) {
20335
20303
  if (!this._decoder) {
20336
- var t = Jn().StringDecoder;
20304
+ var t = En().StringDecoder;
20337
20305
  this._decoder = new t("utf8");
20338
20306
  }
20339
20307
  e = this._decoder.write(e);
@@ -20994,16 +20962,16 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
20994
20962
  }) : String.fromCodePoint = n;
20995
20963
  })();
20996
20964
  })(e === void 0 ? e.sax = {} : e);
20997
- }) }), Xn = /* @__PURE__ */ In(Yn(), 1), Zn = class {
20965
+ }) }), On = /* @__PURE__ */ mn(Dn()), kn = class {
20998
20966
  get xmlnsKey() {
20999
20967
  return `${this.options.attrkey}ns`;
21000
20968
  }
21001
- options = structuredClone(Vn);
20969
+ options = structuredClone(yn);
21002
20970
  resultObject = {};
21003
20971
  saxParser;
21004
20972
  stack = [];
21005
20973
  constructor(e) {
21006
- Object.assign(this.options, e), this.options.normalizeTags && (this.options.tagNameProcessors ??= [], this.options.tagNameProcessors.unshift(Hn)), this.saxParser = (0, Xn.parser)(this.options.strict, {
20974
+ Object.assign(this.options, e), this.options.normalizeTags && (this.options.tagNameProcessors ??= [], this.options.tagNameProcessors.unshift(bn)), this.saxParser = (0, On.parser)(this.options.strict, {
21007
20975
  normalize: !1,
21008
20976
  trim: !1,
21009
20977
  xmlns: this.options.xmlns
@@ -21014,27 +20982,27 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
21014
20982
  if (t[this.options.charkey] = "", !this.options.ignoreAttrs) {
21015
20983
  for (let n in e.attributes) if (Object.hasOwn(e.attributes, n)) {
21016
20984
  !(this.options.attrkey in t) && !this.options.mergeAttrs && (t[this.options.attrkey] = {});
21017
- let r = this.options.attrValueProcessors ? er(this.options.attrValueProcessors, e.attributes[n], n) : e.attributes[n], i = this.options.attrNameProcessors ? er(this.options.attrNameProcessors, n, "") : n;
21018
- this.options.mergeAttrs ? this.assignOrPush(t, i, r) : tr(t[this.options.attrkey], i, r);
20985
+ let r = this.options.attrValueProcessors ? Mn(this.options.attrValueProcessors, e.attributes[n], n) : e.attributes[n], i = this.options.attrNameProcessors ? Mn(this.options.attrNameProcessors, n, "") : n;
20986
+ this.options.mergeAttrs ? this.assignOrPush(t, i, r) : Nn(t[this.options.attrkey], i, r);
21019
20987
  }
21020
20988
  }
21021
- t[Bn] = this.options.tagNameProcessors ? er(this.options.tagNameProcessors, e.name, "") : e.name, this.options.xmlns && (t[this.xmlnsKey] = {
20989
+ t[vn] = this.options.tagNameProcessors ? Mn(this.options.tagNameProcessors, e.name, "") : e.name, this.options.xmlns && (t[this.xmlnsKey] = {
21022
20990
  local: e.local,
21023
20991
  uri: e.uri
21024
20992
  }), this.stack.push(t);
21025
20993
  }, this.saxParser.onclosetag = () => {
21026
20994
  let e = this.stack.pop();
21027
20995
  if (!e) return;
21028
- let t = e[Bn];
21029
- this.options.explicitChildren && this.options.preserveChildrenOrder || delete e[Bn];
20996
+ let t = e[vn];
20997
+ this.options.explicitChildren && this.options.preserveChildrenOrder || delete e[vn];
21030
20998
  let n = !1;
21031
20999
  e.cdata === !0 && (n = e.cdata, delete e.cdata);
21032
21000
  let r = this.stack.at(-1), i = "", a = e[this.options.charkey];
21033
- if (/^\s*$/.exec(a) && !n ? (i = a, delete e[this.options.charkey]) : (this.options.trim && (e[this.options.charkey] = a.trim()), this.options.normalize && (e[this.options.charkey] = a.replaceAll(/\s{2,}/g, " ").trim()), e[this.options.charkey] = this.options.valueProcessors ? er(this.options.valueProcessors, a, t) : a, Object.keys(e).length === 1 && this.options.charkey in e && (e = e[this.options.charkey])), $n(e) && (e = typeof this.options.emptyTag == "function" ? this.options.emptyTag() : this.options.emptyTag || i), this.options.validator) {
21034
- let n = `/${[...this.stack.map((e) => e[Bn]), t].join("/")}`;
21001
+ if (/^\s*$/.exec(a) && !n ? (i = a, delete e[this.options.charkey]) : (this.options.trim && (e[this.options.charkey] = a.trim()), this.options.normalize && (e[this.options.charkey] = a.replaceAll(/\s{2,}/g, " ").trim()), e[this.options.charkey] = this.options.valueProcessors ? Mn(this.options.valueProcessors, a, t) : a, Object.keys(e).length === 1 && this.options.charkey in e && (e = e[this.options.charkey])), jn(e) && (e = typeof this.options.emptyTag == "function" ? this.options.emptyTag() : this.options.emptyTag || i), this.options.validator) {
21002
+ let n = `/${[...this.stack.map((e) => e[vn]), t].join("/")}`;
21035
21003
  e = this.options.validator(n, r?.[t], e);
21036
21004
  }
21037
- if (this.options.explicitChildren && !this.options.mergeAttrs && typeof e == "object") if (this.options.preserveChildrenOrder) r && (r[this.options.childkey] ??= [], r[this.options.childkey].push(structuredClone(e)), delete e[Bn], Object.keys(e).length === 1 && this.options.charkey in e && (e = e[this.options.charkey]));
21005
+ if (this.options.explicitChildren && !this.options.mergeAttrs && typeof e == "object") if (this.options.preserveChildrenOrder) r && (r[this.options.childkey] ??= [], r[this.options.childkey].push(structuredClone(e)), delete e[vn], Object.keys(e).length === 1 && this.options.charkey in e && (e = e[this.options.charkey]));
21038
21006
  else {
21039
21007
  let t = {};
21040
21008
  this.options.attrkey in e && (t[this.options.attrkey] = e[this.options.attrkey], delete e[this.options.attrkey]), !this.options.charsAsChildren && this.options.charkey in e && (t[this.options.charkey] = e[this.options.charkey], delete e[this.options.charkey]), Object.getOwnPropertyNames(e).length > 0 && (t[this.options.childkey] = e), e = t;
@@ -21043,7 +21011,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
21043
21011
  else {
21044
21012
  if (this.options.explicitRoot) {
21045
21013
  let n = e;
21046
- e = {}, tr(e, t, n);
21014
+ e = {}, Nn(e, t, n);
21047
21015
  }
21048
21016
  this.resultObject = e ?? {};
21049
21017
  }
@@ -21053,7 +21021,7 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
21053
21021
  if (t) {
21054
21022
  if (t[this.options.charkey] += e, this.options.explicitChildren && this.options.preserveChildrenOrder && this.options.charsAsChildren && (this.options.includeWhiteChars || e.replaceAll(String.raw`\\n`, "").trim() !== "")) {
21055
21023
  t[this.options.childkey] ??= [];
21056
- let n = { [Bn]: "__text__" };
21024
+ let n = { [vn]: "__text__" };
21057
21025
  n[this.options.charkey] = e, this.options.normalize && (n[this.options.charkey] = n[this.options.charkey].replaceAll(/\s{2,}/g, " ").trim()), t[this.options.childkey].push(n);
21058
21026
  }
21059
21027
  return t;
@@ -21070,28 +21038,28 @@ var Wn = /* @__PURE__ */ Pn({ "../../node_modules/.pnpm/base64-js@1.5.1/node_mod
21070
21038
  assignOrPush(e, t, n) {
21071
21039
  if (t in e) {
21072
21040
  let r = e[t];
21073
- Array.isArray(r) ? r.push(n) : tr(e, t, [r]);
21074
- } else this.options.explicitArray ? tr(e, t, [n]) : tr(e, t, n);
21041
+ Array.isArray(r) ? r.push(n) : Nn(e, t, [r]);
21042
+ } else this.options.explicitArray ? Nn(e, t, [n]) : Nn(e, t, n);
21075
21043
  }
21076
21044
  parseString(e, t) {
21077
- let n = Un(e.toString());
21045
+ let n = xn(e.toString());
21078
21046
  return this.saxParser.onend = () => {
21079
21047
  t(this.resultObject), this.resultObject = {};
21080
21048
  }, this.saxParser.write(n).close();
21081
21049
  }
21082
21050
  };
21083
- const Qn = (e, t) => {
21084
- let n = new Zn(t);
21051
+ const An = (e, t) => {
21052
+ let n = new kn(t);
21085
21053
  return n.parseStringPromise(e);
21086
- }, $n = (e) => typeof e == "object" && !!e && Object.keys(e).length === 0, er = (e, t, n) => {
21054
+ }, jn = (e) => typeof e == "object" && !!e && Object.keys(e).length === 0, Mn = (e, t, n) => {
21087
21055
  let r = t;
21088
21056
  for (let t of e) r = t(r, n);
21089
21057
  return r;
21090
- }, tr = (e, t, n) => {
21058
+ }, Nn = (e, t, n) => {
21091
21059
  let r = Object.create(null);
21092
21060
  r.value = n, r.writable = !0, r.enumerable = !0, r.configurable = !0, Object.defineProperty(e, t, r);
21093
21061
  };
21094
- var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/utils.js": ((exports) => {
21062
+ var Pn = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/utils.js": ((exports) => {
21095
21063
  exports.removeLeadingAndTrailingHTTPWhitespace = (e) => e.replace(/^[ \t\n\r]+/u, "").replace(/[ \t\n\r]+$/u, ""), exports.removeTrailingHTTPWhitespace = (e) => e.replace(/[ \t\n\r]+$/u, ""), exports.isHTTPWhitespaceChar = (e) => e === " " || e === " " || e === "\n" || e === "\r", exports.solelyContainsHTTPTokenCodePoints = (e) => /^[-!#$%&'*+.^_`|~A-Za-z0-9]*$/u.test(e), exports.soleyContainsHTTPQuotedStringTokenCodePoints = (e) => /^[\t\u0020-\u007E\u0080-\u00FF]*$/u.test(e), exports.asciiLowercase = (e) => e.replace(/[A-Z]/gu, (e) => e.toLowerCase()), exports.collectAnHTTPQuotedString = (e, t) => {
21096
21064
  let n = "";
21097
21065
  for (t++;;) {
@@ -21108,8 +21076,8 @@ var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/nod
21108
21076
  }
21109
21077
  return [n, t];
21110
21078
  };
21111
- }) }), rr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/mime-type-parameters.js": ((exports, t) => {
21112
- let { asciiLowercase: n, solelyContainsHTTPTokenCodePoints: r, soleyContainsHTTPQuotedStringTokenCodePoints: i } = nr();
21079
+ }) }), Fn = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/mime-type-parameters.js": ((exports, t) => {
21080
+ let { asciiLowercase: n, solelyContainsHTTPTokenCodePoints: r, soleyContainsHTTPQuotedStringTokenCodePoints: i } = Pn();
21113
21081
  t.exports = class {
21114
21082
  constructor(e) {
21115
21083
  this._map = e;
@@ -21150,8 +21118,8 @@ var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/nod
21150
21118
  return this._map[Symbol.iterator]();
21151
21119
  }
21152
21120
  };
21153
- }) }), ir = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/parser.js": ((exports, t) => {
21154
- let { removeLeadingAndTrailingHTTPWhitespace: n, removeTrailingHTTPWhitespace: r, isHTTPWhitespaceChar: i, solelyContainsHTTPTokenCodePoints: a, soleyContainsHTTPQuotedStringTokenCodePoints: o, asciiLowercase: s, collectAnHTTPQuotedString: c } = nr();
21121
+ }) }), In = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/parser.js": ((exports, t) => {
21122
+ let { removeLeadingAndTrailingHTTPWhitespace: n, removeTrailingHTTPWhitespace: r, isHTTPWhitespaceChar: i, solelyContainsHTTPTokenCodePoints: a, soleyContainsHTTPQuotedStringTokenCodePoints: o, asciiLowercase: s, collectAnHTTPQuotedString: c } = Pn();
21155
21123
  t.exports = (e) => {
21156
21124
  e = n(e);
21157
21125
  let t = 0, l = "";
@@ -21184,16 +21152,16 @@ var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/nod
21184
21152
  }
21185
21153
  return d;
21186
21154
  };
21187
- }) }), ar = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/serializer.js": ((exports, t) => {
21188
- let { solelyContainsHTTPTokenCodePoints: n } = nr();
21155
+ }) }), Ln = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/serializer.js": ((exports, t) => {
21156
+ let { solelyContainsHTTPTokenCodePoints: n } = Pn();
21189
21157
  t.exports = (e) => {
21190
21158
  let t = `${e.type}/${e.subtype}`;
21191
21159
  if (e.parameters.size === 0) return t;
21192
21160
  for (let [r, i] of e.parameters) t += ";", t += r, t += "=", (!n(i) || i.length === 0) && (i = i.replace(/(["\\])/gu, "\\$1"), i = `"${i}"`), t += i;
21193
21161
  return t;
21194
21162
  };
21195
- }) }), or = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/mime-type.js": ((exports, t) => {
21196
- let n = rr(), r = ir(), i = ar(), { asciiLowercase: a, solelyContainsHTTPTokenCodePoints: o } = nr();
21163
+ }) }), Rn = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/node_modules/whatwg-mimetype/lib/mime-type.js": ((exports, t) => {
21164
+ let n = Fn(), r = In(), i = Ln(), { asciiLowercase: a, solelyContainsHTTPTokenCodePoints: o } = Pn();
21197
21165
  t.exports = class {
21198
21166
  constructor(e) {
21199
21167
  e = String(e);
@@ -21267,7 +21235,7 @@ var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/nod
21267
21235
  return this._subtype === "html" && this._type === "text";
21268
21236
  }
21269
21237
  };
21270
- }) }), sr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/webidl-conversions@7.0.0/node_modules/webidl-conversions/lib/index.js": ((exports) => {
21238
+ }) }), zn = /* @__PURE__ */ $({ "../../node_modules/.pnpm/webidl-conversions@7.0.0/node_modules/webidl-conversions/lib/index.js": ((exports) => {
21271
21239
  function t(e, t, n) {
21272
21240
  return n.globals && (e = n.globals[e.name]), new e(`${n.context ? n.context : "Value"} ${t}.`);
21273
21241
  }
@@ -21439,7 +21407,7 @@ var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/nod
21439
21407
  if (m(e)) throw t(TypeError, "is a detached ArrayBuffer", n);
21440
21408
  return e;
21441
21409
  }, exports.DOMTimeStamp = exports["unsigned long long"];
21442
- }) }), cr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/utils.js": ((exports, t) => {
21410
+ }) }), Bn = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/utils.js": ((exports, t) => {
21443
21411
  function n(e) {
21444
21412
  return typeof e == "object" && !!e || typeof e == "function";
21445
21413
  }
@@ -21552,31 +21520,31 @@ var nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-mimetype@4.0.0/nod
21552
21520
  asyncIteratorEOI: I,
21553
21521
  iteratorResult: x
21554
21522
  };
21555
- }) }), lr = {};
21556
- ln(lr, {
21557
- decode: () => Pr,
21558
- default: () => zr,
21559
- encode: () => Fr,
21560
- toASCII: () => Lr,
21561
- toUnicode: () => Ir,
21562
- ucs2decode: () => pr,
21563
- ucs2encode: () => Ar
21523
+ }) }), Vn = {};
21524
+ Bt(Vn, {
21525
+ decode: () => fr,
21526
+ default: () => _r,
21527
+ encode: () => pr,
21528
+ toASCII: () => hr,
21529
+ toUnicode: () => mr,
21530
+ ucs2decode: () => Gn,
21531
+ ucs2encode: () => cr
21564
21532
  });
21565
- function ur(e) {
21566
- throw RangeError(Er[e]);
21533
+ function Hn(e) {
21534
+ throw RangeError(ir[e]);
21567
21535
  }
21568
- function dr(e, t) {
21536
+ function Un(e, t) {
21569
21537
  let n = [], r = e.length;
21570
21538
  for (; r--;) n[r] = t(e[r]);
21571
21539
  return n;
21572
21540
  }
21573
- function fr(e, t) {
21541
+ function Wn(e, t) {
21574
21542
  let n = e.split("@"), r = "";
21575
- n.length > 1 && (r = n[0] + "@", e = n[1]), e = e.replace(Tr, ".");
21576
- let i = e.split("."), a = dr(i, t).join(".");
21543
+ n.length > 1 && (r = n[0] + "@", e = n[1]), e = e.replace(rr, ".");
21544
+ let i = e.split("."), a = Un(i, t).join(".");
21577
21545
  return r + a;
21578
21546
  }
21579
- function pr(e) {
21547
+ function Gn(e) {
21580
21548
  let t = [], n = 0, r = e.length;
21581
21549
  for (; n < r;) {
21582
21550
  let i = e.charCodeAt(n++);
@@ -21587,82 +21555,82 @@ function pr(e) {
21587
21555
  }
21588
21556
  return t;
21589
21557
  }
21590
- var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr, Nr, Pr, Fr, Ir, Lr, Rr, zr, Br = cn({ "../../node_modules/.pnpm/punycode@2.3.1/node_modules/punycode/punycode.es6.js": (() => {
21591
- mr = 2147483647, hr = 36, gr = 1, _r = 26, vr = 38, yr = 700, br = 72, xr = 128, Sr = "-", Cr = /^xn--/, wr = /[^\0-\x7F]/, Tr = /[\x2E\u3002\uFF0E\uFF61]/g, Er = {
21558
+ var Kn, qn, Jn, Yn, Xn, Zn, Qn, $n, er, tr, nr, rr, ir, ar, or, sr, cr, lr, ur, dr, fr, pr, mr, hr, gr, _r, vr = zt({ "../../node_modules/.pnpm/punycode@2.3.1/node_modules/punycode/punycode.es6.js": (() => {
21559
+ Kn = 2147483647, qn = 36, Jn = 1, Yn = 26, Xn = 38, Zn = 700, Qn = 72, $n = 128, er = "-", tr = /^xn--/, nr = /[^\0-\x7F]/, rr = /[\x2E\u3002\uFF0E\uFF61]/g, ir = {
21592
21560
  overflow: "Overflow: input needs wider integers to process",
21593
21561
  "not-basic": "Illegal input >= 0x80 (not a basic code point)",
21594
21562
  "invalid-input": "Invalid input"
21595
- }, Dr = hr - gr, Or = Math.floor, kr = String.fromCharCode, Ar = (e) => String.fromCodePoint(...e), jr = function(e) {
21596
- return e >= 48 && e < 58 ? 26 + (e - 48) : e >= 65 && e < 91 ? e - 65 : e >= 97 && e < 123 ? e - 97 : hr;
21597
- }, Mr = function(e, t) {
21563
+ }, ar = qn - Jn, or = Math.floor, sr = String.fromCharCode, cr = (e) => String.fromCodePoint(...e), lr = function(e) {
21564
+ return e >= 48 && e < 58 ? 26 + (e - 48) : e >= 65 && e < 91 ? e - 65 : e >= 97 && e < 123 ? e - 97 : qn;
21565
+ }, ur = function(e, t) {
21598
21566
  return e + 22 + 75 * (e < 26) - ((t != 0) << 5);
21599
- }, Nr = function(e, t, n) {
21567
+ }, dr = function(e, t, n) {
21600
21568
  let r = 0;
21601
- for (e = n ? Or(e / yr) : e >> 1, e += Or(e / t); e > Dr * _r >> 1; r += hr) e = Or(e / Dr);
21602
- return Or(r + (Dr + 1) * e / (e + vr));
21603
- }, Pr = function(e) {
21604
- let t = [], n = e.length, r = 0, i = xr, a = br, o = e.lastIndexOf(Sr);
21569
+ for (e = n ? or(e / Zn) : e >> 1, e += or(e / t); e > ar * Yn >> 1; r += qn) e = or(e / ar);
21570
+ return or(r + (ar + 1) * e / (e + Xn));
21571
+ }, fr = function(e) {
21572
+ let t = [], n = e.length, r = 0, i = $n, a = Qn, o = e.lastIndexOf(er);
21605
21573
  o < 0 && (o = 0);
21606
- for (let n = 0; n < o; ++n) e.charCodeAt(n) >= 128 && ur("not-basic"), t.push(e.charCodeAt(n));
21574
+ for (let n = 0; n < o; ++n) e.charCodeAt(n) >= 128 && Hn("not-basic"), t.push(e.charCodeAt(n));
21607
21575
  for (let s = o > 0 ? o + 1 : 0; s < n;) {
21608
21576
  let o = r;
21609
- for (let t = 1, i = hr;; i += hr) {
21610
- s >= n && ur("invalid-input");
21611
- let o = jr(e.charCodeAt(s++));
21612
- o >= hr && ur("invalid-input"), o > Or((mr - r) / t) && ur("overflow"), r += o * t;
21613
- let c = i <= a ? gr : i >= a + _r ? _r : i - a;
21577
+ for (let t = 1, i = qn;; i += qn) {
21578
+ s >= n && Hn("invalid-input");
21579
+ let o = lr(e.charCodeAt(s++));
21580
+ o >= qn && Hn("invalid-input"), o > or((Kn - r) / t) && Hn("overflow"), r += o * t;
21581
+ let c = i <= a ? Jn : i >= a + Yn ? Yn : i - a;
21614
21582
  if (o < c) break;
21615
- let l = hr - c;
21616
- t > Or(mr / l) && ur("overflow"), t *= l;
21583
+ let l = qn - c;
21584
+ t > or(Kn / l) && Hn("overflow"), t *= l;
21617
21585
  }
21618
21586
  let c = t.length + 1;
21619
- a = Nr(r - o, c, o == 0), Or(r / c) > mr - i && ur("overflow"), i += Or(r / c), r %= c, t.splice(r++, 0, i);
21587
+ a = dr(r - o, c, o == 0), or(r / c) > Kn - i && Hn("overflow"), i += or(r / c), r %= c, t.splice(r++, 0, i);
21620
21588
  }
21621
21589
  return String.fromCodePoint(...t);
21622
- }, Fr = function(e) {
21590
+ }, pr = function(e) {
21623
21591
  let t = [];
21624
- e = pr(e);
21625
- let n = e.length, r = xr, i = 0, a = br;
21626
- for (let n of e) n < 128 && t.push(kr(n));
21592
+ e = Gn(e);
21593
+ let n = e.length, r = $n, i = 0, a = Qn;
21594
+ for (let n of e) n < 128 && t.push(sr(n));
21627
21595
  let o = t.length, s = o;
21628
- for (o && t.push(Sr); s < n;) {
21629
- let n = mr;
21596
+ for (o && t.push(er); s < n;) {
21597
+ let n = Kn;
21630
21598
  for (let t of e) t >= r && t < n && (n = t);
21631
21599
  let c = s + 1;
21632
- n - r > Or((mr - i) / c) && ur("overflow"), i += (n - r) * c, r = n;
21633
- for (let n of e) if (n < r && ++i > mr && ur("overflow"), n === r) {
21600
+ n - r > or((Kn - i) / c) && Hn("overflow"), i += (n - r) * c, r = n;
21601
+ for (let n of e) if (n < r && ++i > Kn && Hn("overflow"), n === r) {
21634
21602
  let e = i;
21635
- for (let n = hr;; n += hr) {
21636
- let r = n <= a ? gr : n >= a + _r ? _r : n - a;
21603
+ for (let n = qn;; n += qn) {
21604
+ let r = n <= a ? Jn : n >= a + Yn ? Yn : n - a;
21637
21605
  if (e < r) break;
21638
- let i = e - r, o = hr - r;
21639
- t.push(kr(Mr(r + i % o, 0))), e = Or(i / o);
21606
+ let i = e - r, o = qn - r;
21607
+ t.push(sr(ur(r + i % o, 0))), e = or(i / o);
21640
21608
  }
21641
- t.push(kr(Mr(e, 0))), a = Nr(i, c, s === o), i = 0, ++s;
21609
+ t.push(sr(ur(e, 0))), a = dr(i, c, s === o), i = 0, ++s;
21642
21610
  }
21643
21611
  ++i, ++r;
21644
21612
  }
21645
21613
  return t.join("");
21646
- }, Ir = function(e) {
21647
- return fr(e, function(e) {
21648
- return Cr.test(e) ? Pr(e.slice(4).toLowerCase()) : e;
21614
+ }, mr = function(e) {
21615
+ return Wn(e, function(e) {
21616
+ return tr.test(e) ? fr(e.slice(4).toLowerCase()) : e;
21649
21617
  });
21650
- }, Lr = function(e) {
21651
- return fr(e, function(e) {
21652
- return wr.test(e) ? "xn--" + Fr(e) : e;
21618
+ }, hr = function(e) {
21619
+ return Wn(e, function(e) {
21620
+ return nr.test(e) ? "xn--" + pr(e) : e;
21653
21621
  });
21654
- }, Rr = {
21622
+ }, gr = {
21655
21623
  version: "2.3.1",
21656
21624
  ucs2: {
21657
- decode: pr,
21658
- encode: Ar
21625
+ decode: Gn,
21626
+ encode: cr
21659
21627
  },
21660
- decode: Pr,
21661
- encode: Fr,
21662
- toASCII: Lr,
21663
- toUnicode: Ir
21664
- }, zr = Rr;
21665
- }) }), Vr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/lib/regexes.js": ((exports, t) => {
21628
+ decode: fr,
21629
+ encode: pr,
21630
+ toASCII: hr,
21631
+ toUnicode: mr
21632
+ }, _r = gr;
21633
+ }) }), yr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/lib/regexes.js": ((exports, t) => {
21666
21634
  let n = /[\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u192B\u1930-\u193B\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10D69}-\u{10D6D}\u{10EAB}\u{10EAC}\u{10EFC}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{11002}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11082}\u{110B0}-\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{11134}\u{11145}\u{11146}\u{11173}\u{11180}-\u{11182}\u{111B3}-\u{111C0}\u{111C9}-\u{111CC}\u{111CE}\u{111CF}\u{1122C}-\u{11237}\u{1123E}\u{11241}\u{112DF}-\u{112EA}\u{11300}-\u{11303}\u{1133B}\u{1133C}\u{1133E}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11357}\u{11362}\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{113B8}-\u{113C0}\u{113C2}\u{113C5}\u{113C7}-\u{113CA}\u{113CC}-\u{113D0}\u{113D2}\u{113E1}\u{113E2}\u{11435}-\u{11446}\u{1145E}\u{114B0}-\u{114C3}\u{115AF}-\u{115B5}\u{115B8}-\u{115C0}\u{115DC}\u{115DD}\u{11630}-\u{11640}\u{116AB}-\u{116B7}\u{1171D}-\u{1172B}\u{1182C}-\u{1183A}\u{11930}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{1193E}\u{11940}\u{11942}\u{11943}\u{119D1}-\u{119D7}\u{119DA}-\u{119E0}\u{119E4}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A39}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A5B}\u{11A8A}-\u{11A99}\u{11C2F}-\u{11C36}\u{11C38}-\u{11C3F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D8A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D97}\u{11EF3}-\u{11EF6}\u{11F00}\u{11F01}\u{11F03}\u{11F34}-\u{11F3A}\u{11F3E}-\u{11F42}\u{11F5A}\u{13440}\u{13447}-\u{13455}\u{1611E}-\u{1612F}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F51}-\u{16F87}\u{16F8F}-\u{16F92}\u{16FE4}\u{16FF0}\u{16FF1}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D165}-\u{1D169}\u{1D16D}-\u{1D172}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E5EE}\u{1E5EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]/u, r = /[\u094D\u09CD\u0A4D\u0ACD\u0B4D\u0BCD\u0C4D\u0CCD\u0D3B\u0D3C\u0D4D\u0DCA\u0E3A\u0EBA\u0F84\u1039\u103A\u1714\u1715\u1734\u17D2\u1A60\u1B44\u1BAA\u1BAB\u1BF2\u1BF3\u2D7F\uA806\uA82C\uA8C4\uA953\uA9C0\uAAF6\uABED\u{10A3F}\u{11046}\u{11070}\u{1107F}\u{110B9}\u{11133}\u{11134}\u{111C0}\u{11235}\u{112EA}\u{1134D}\u{113CE}-\u{113D0}\u{11442}\u{114C2}\u{115BF}\u{1163F}\u{116B6}\u{1172B}\u{11839}\u{1193D}\u{1193E}\u{119E0}\u{11A34}\u{11A47}\u{11A99}\u{11C3F}\u{11D44}\u{11D45}\u{11D97}\u{11F41}\u{11F42}\u{1612F}]/u, i = /[\u0620\u0626\u0628\u062A-\u062E\u0633-\u063F\u0641-\u0647\u0649\u064A\u066E\u066F\u0678-\u0687\u069A-\u06BF\u06C1\u06C2\u06CC\u06CE\u06D0\u06D1\u06FA-\u06FC\u06FF\u0712-\u0714\u071A-\u071D\u071F-\u0727\u0729\u072B\u072D\u072E\u074E-\u0758\u075C-\u076A\u076D-\u0770\u0772\u0775-\u0777\u077A-\u077F\u07CA-\u07EA\u0841-\u0845\u0848\u084A-\u0853\u0855\u0860\u0862-\u0865\u0868\u0886\u0889-\u088D\u08A0-\u08A9\u08AF\u08B0\u08B3-\u08B8\u08BA-\u08C8\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA872\u{10AC0}-\u{10AC4}\u{10ACD}\u{10AD3}-\u{10ADC}\u{10ADE}-\u{10AE0}\u{10AEB}-\u{10AEE}\u{10B80}\u{10B82}\u{10B86}-\u{10B88}\u{10B8A}\u{10B8B}\u{10B8D}\u{10B90}\u{10BAD}\u{10BAE}\u{10D00}-\u{10D21}\u{10D23}\u{10EC3}\u{10EC4}\u{10F30}-\u{10F32}\u{10F34}-\u{10F44}\u{10F51}-\u{10F53}\u{10F70}-\u{10F73}\u{10F76}-\u{10F81}\u{10FB0}\u{10FB2}\u{10FB3}\u{10FB8}\u{10FBB}\u{10FBC}\u{10FBE}\u{10FBF}\u{10FC1}\u{10FC4}\u{10FCA}\u{10FCB}\u{1E900}-\u{1E943}][\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10D69}-\u{10D6D}\u{10EAB}\u{10EAC}\u{10EFC}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{113BB}-\u{113C0}\u{113CE}\u{113D0}\u{113D2}\u{113E1}\u{113E2}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{11F5A}\u{13430}-\u{13440}\u{13447}-\u{13455}\u{1611E}-\u{16129}\u{1612D}-\u{1612F}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E5EE}\u{1E5EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*\u200C[\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10D69}-\u{10D6D}\u{10EAB}\u{10EAC}\u{10EFC}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{113BB}-\u{113C0}\u{113CE}\u{113D0}\u{113D2}\u{113E1}\u{113E2}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{11F5A}\u{13430}-\u{13440}\u{13447}-\u{13455}\u{1611E}-\u{16129}\u{1612D}-\u{1612F}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E5EE}\u{1E5EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*[\u0620\u0622-\u063F\u0641-\u064A\u066E\u066F\u0671-\u0673\u0675-\u06D3\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u077F\u07CA-\u07EA\u0840-\u0858\u0860\u0862-\u0865\u0867-\u086A\u0870-\u0882\u0886\u0889-\u088E\u08A0-\u08AC\u08AE-\u08C8\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA871\u{10AC0}-\u{10AC5}\u{10AC7}\u{10AC9}\u{10ACA}\u{10ACE}-\u{10AD6}\u{10AD8}-\u{10AE1}\u{10AE4}\u{10AEB}-\u{10AEF}\u{10B80}-\u{10B91}\u{10BA9}-\u{10BAE}\u{10D01}-\u{10D23}\u{10EC2}-\u{10EC4}\u{10F30}-\u{10F44}\u{10F51}-\u{10F54}\u{10F70}-\u{10F81}\u{10FB0}\u{10FB2}-\u{10FB6}\u{10FB8}-\u{10FBF}\u{10FC1}-\u{10FC4}\u{10FC9}\u{10FCA}\u{1E900}-\u{1E943}]/u, a = /[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10D40}-\u{10D65}\u{10D6F}-\u{10D85}\u{10D8E}\u{10D8F}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10EC2}-\u{10EC4}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u, o = /[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B4E-\u1B6A\u1B74-\u1B7F\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C8A\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u249C-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{105C0}-\u{105F3}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11380}-\u{11389}\u{1138B}\u{1138E}\u{11390}-\u{113B5}\u{113B7}-\u{113BA}\u{113C2}\u{113C5}\u{113C7}-\u{113CA}\u{113CC}\u{113CD}\u{113CF}\u{113D1}\u{113D3}-\u{113D5}\u{113D7}\u{113D8}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{116D0}-\u{116E3}\u{11700}-\u{1171A}\u{1171E}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11B00}-\u{11B09}\u{11BC0}-\u{11BE1}\u{11BF0}-\u{11BF9}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11F02}-\u{11F10}\u{11F12}-\u{11F35}\u{11F3E}\u{11F3F}\u{11F41}\u{11F43}-\u{11F59}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1343F}\u{13441}-\u{13446}\u{13460}-\u{143FA}\u{14400}-\u{14646}\u{16100}-\u{1611D}\u{1612A}-\u{1612C}\u{16130}-\u{16139}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16D40}-\u{16D79}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18CFF}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CCD6}-\u{1CCEF}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2C0}-\u{1D2D3}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6C0}\u{1D6C2}-\u{1D6DA}\u{1D6DC}-\u{1D6FA}\u{1D6FC}-\u{1D714}\u{1D716}-\u{1D734}\u{1D736}-\u{1D74E}\u{1D750}-\u{1D76E}\u{1D770}-\u{1D788}\u{1D78A}-\u{1D7A8}\u{1D7AA}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D800}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E4D0}-\u{1E4EB}\u{1E4F0}-\u{1E4F9}\u{1E5D0}-\u{1E5ED}\u{1E5F0}-\u{1E5FA}\u{1E5FF}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]/u, s = /[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0608\u060B\u060D\u061B-\u064A\u066D-\u066F\u0671-\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u08A0-\u08C9\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D4A}-\u{10D65}\u{10D6F}-\u{10D85}\u{10D8E}\u{10D8F}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10EC2}-\u{10EC4}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u, c = /^[\0-\x08\x0E-\x1B!-@\[-`\{-\x84\x86-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02B9\u02BA\u02C2-\u02CF\u02D2-\u02DF\u02E5-\u02ED\u02EF-\u036F\u0374\u0375\u037E\u0384\u0385\u0387\u03F6\u0483-\u0489\u058A\u058D-\u058F\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\u0600-\u070D\u070F-\u074A\u074D-\u07B1\u07C0-\u07FA\u07FD-\u082D\u0830-\u083E\u0840-\u085B\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u0897-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09F2\u09F3\u09FB\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AF1\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0BF3-\u0BFA\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C78-\u0C7E\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E3F\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39-\u0F3D\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1390-\u1399\u1400\u169B\u169C\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DB\u17DD\u17F0-\u17F9\u1800-\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1940\u1944\u1945\u19DE-\u19FF\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u200B-\u200D\u200F-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2070\u2074-\u207E\u2080-\u208E\u20A0-\u20C0\u20D0-\u20F0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u2150-\u215F\u2189-\u218B\u2190-\u2335\u237B-\u2394\u2396-\u2429\u2440-\u244A\u2460-\u249B\u24EA-\u26AB\u26AD-\u27FF\u2900-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2CEF-\u2CF1\u2CF9-\u2CFF\u2D7F\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3001-\u3004\u3008-\u3020\u302A-\u302D\u3030\u3036\u3037\u303D-\u303F\u3099-\u309C\u30A0\u30FB\u31C0-\u31E5\u31EF\u321D\u321E\u3250-\u325F\u327C-\u327E\u32B1-\u32BF\u32CC-\u32CF\u3377-\u337A\u33DE\u33DF\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA60D-\uA60F\uA66F-\uA67F\uA69E\uA69F\uA6F0\uA6F1\uA700-\uA721\uA788\uA802\uA806\uA80B\uA825\uA826\uA828-\uA82C\uA838\uA839\uA874-\uA877\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uAB6A\uAB6B\uABE5\uABE8\uABED\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD8F\uFD92-\uFDC7\uFDCF\uFDF0-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFE70-\uFE74\uFE76-\uFEFC\uFEFF\uFF01-\uFF20\uFF3B-\uFF40\uFF5B-\uFF65\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10101}\u{10140}-\u{1018C}\u{10190}-\u{1019C}\u{101A0}\u{101FD}\u{102E0}-\u{102FB}\u{10376}-\u{1037A}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{1091F}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A38}-\u{10A3A}\u{10A3F}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE6}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B39}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D27}\u{10D30}-\u{10D39}\u{10D40}-\u{10D65}\u{10D69}-\u{10D85}\u{10D8E}\u{10D8F}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAB}-\u{10EAD}\u{10EB0}\u{10EB1}\u{10EC2}-\u{10EC4}\u{10EFC}-\u{10F27}\u{10F30}-\u{10F59}\u{10F70}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{11001}\u{11038}-\u{11046}\u{11052}-\u{11065}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{113BB}-\u{113C0}\u{113CE}\u{113D0}\u{113D2}\u{113E1}\u{113E2}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{11660}-\u{1166C}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{11F5A}\u{11FD5}-\u{11FF1}\u{13440}\u{13447}-\u{13455}\u{1611E}-\u{16129}\u{1612D}-\u{1612F}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE2}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1CC00}-\u{1CCD5}\u{1CCF0}-\u{1CCF9}\u{1CD00}-\u{1CEB3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D1E9}\u{1D1EA}\u{1D200}-\u{1D245}\u{1D300}-\u{1D356}\u{1D6C1}\u{1D6DB}\u{1D6FB}\u{1D715}\u{1D735}\u{1D74F}\u{1D76F}\u{1D789}\u{1D7A9}\u{1D7C3}\u{1D7CE}-\u{1D7FF}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E2FF}\u{1E4EC}-\u{1E4EF}\u{1E5EE}\u{1E5EF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8D6}\u{1E900}-\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F10F}\u{1F12F}\u{1F16A}-\u{1F16F}\u{1F1AD}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DC}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F776}\u{1F77B}-\u{1F7D9}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}-\u{1F8BB}\u{1F8C0}\u{1F8C1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA7C}\u{1FA80}-\u{1FA89}\u{1FA8F}-\u{1FAC6}\u{1FACE}-\u{1FADC}\u{1FADF}-\u{1FAE9}\u{1FAF0}-\u{1FAF8}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBF9}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*$/u, l = /[0-9\xB2\xB3\xB9\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\u{102E1}-\u{102FB}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10D40}-\u{10D65}\u{10D6F}-\u{10D85}\u{10D8E}\u{10D8F}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10EC2}-\u{10EC4}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1CCF0}-\u{1CCF9}\u{1D7CE}-\u{1D7FF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10D69}-\u{10D6D}\u{10EAB}\u{10EAC}\u{10EFC}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{113BB}-\u{113C0}\u{113CE}\u{113D0}\u{113D2}\u{113E1}\u{113E2}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{11F5A}\u{13440}\u{13447}-\u{13455}\u{1611E}-\u{16129}\u{1612D}-\u{1612F}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E5EE}\u{1E5EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u, u = /[0-9\xB2\xB3\xB9\u06F0-\u06F9\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFF10-\uFF19\u{102E1}-\u{102FB}\u{1CCF0}-\u{1CCF9}\u{1D7CE}-\u{1D7FF}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}]/u, d = /[\u0600-\u0605\u0660-\u0669\u066B\u066C\u06DD\u0890\u0891\u08E2\u{10D30}-\u{10D39}\u{10D40}-\u{10D49}\u{10E60}-\u{10E7E}]/u, f = /^[\0-\x08\x0E-\x1B!-\x84\x86-\u0377\u037A-\u037F\u0384-\u038A\u038C\u038E-\u03A1\u03A3-\u052F\u0531-\u0556\u0559-\u058A\u058D-\u058F\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0606\u0607\u0609\u060A\u060C\u060E-\u061A\u064B-\u065F\u066A\u0670\u06D6-\u06DC\u06DE-\u06E4\u06E7-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07F6-\u07F9\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B77\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4F\u0D54-\u0D63\u0D66-\u0D7F\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E3A\u0E3F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECE\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FDA\u1000-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u13A0-\u13F5\u13F8-\u13FD\u1400-\u167F\u1681-\u169C\u16A0-\u16F8\u1700-\u1715\u171F-\u1736\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u1800-\u1819\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1940\u1944-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u19DE-\u1A1B\u1A1E-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1AB0-\u1ACE\u1B00-\u1B4C\u1B4E-\u1BF3\u1BFC-\u1C37\u1C3B-\u1C49\u1C4D-\u1C8A\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD0-\u1CFA\u1D00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u200B-\u200E\u2010-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2071\u2074-\u208E\u2090-\u209C\u20A0-\u20C0\u20D0-\u20F0\u2100-\u218B\u2190-\u2429\u2440-\u244A\u2460-\u2B73\u2B76-\u2B95\u2B97-\u2CF3\u2CF9-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFF\u3001-\u303F\u3041-\u3096\u3099-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31E5\u31EF-\u321E\u3220-\uA48C\uA490-\uA4C6\uA4D0-\uA62B\uA640-\uA6F7\uA700-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\uA7F2-\uA82C\uA830-\uA839\uA840-\uA877\uA880-\uA8C5\uA8CE-\uA8D9\uA8E0-\uA953\uA95F-\uA97C\uA980-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA5C-\uAAC2\uAADB-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB6B\uAB70-\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1E\uFB29\uFD3E-\uFD4F\uFDCF\uFDFD-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFEFF\uFF01-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}-\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1018E}\u{10190}-\u{1019C}\u{101A0}\u{101D0}-\u{101FD}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E0}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{1037A}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{105C0}-\u{105F3}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{1091F}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10B39}-\u{10B3F}\u{10D24}-\u{10D27}\u{10D69}-\u{10D6E}\u{10EAB}\u{10EAC}\u{10EFC}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{1104D}\u{11052}-\u{11075}\u{1107F}-\u{110C2}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11100}-\u{11134}\u{11136}-\u{11147}\u{11150}-\u{11176}\u{11180}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{11241}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112EA}\u{112F0}-\u{112F9}\u{11300}-\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133B}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11380}-\u{11389}\u{1138B}\u{1138E}\u{11390}-\u{113B5}\u{113B7}-\u{113C0}\u{113C2}\u{113C5}\u{113C7}-\u{113CA}\u{113CC}-\u{113D5}\u{113D7}\u{113D8}\u{113E1}\u{113E2}\u{11400}-\u{1145B}\u{1145D}-\u{11461}\u{11480}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B5}\u{115B8}-\u{115DD}\u{11600}-\u{11644}\u{11650}-\u{11659}\u{11660}-\u{1166C}\u{11680}-\u{116B9}\u{116C0}-\u{116C9}\u{116D0}-\u{116E3}\u{11700}-\u{1171A}\u{1171D}-\u{1172B}\u{11730}-\u{11746}\u{11800}-\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D7}\u{119DA}-\u{119E4}\u{11A00}-\u{11A47}\u{11A50}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11B00}-\u{11B09}\u{11BC0}-\u{11BE1}\u{11BF0}-\u{11BF9}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C36}\u{11C38}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D47}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF8}\u{11F00}-\u{11F10}\u{11F12}-\u{11F3A}\u{11F3E}-\u{11F5A}\u{11FB0}\u{11FC0}-\u{11FF1}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{13455}\u{13460}-\u{143FA}\u{14400}-\u{14646}\u{16100}-\u{16139}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF0}-\u{16AF5}\u{16B00}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16D40}-\u{16D79}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F4F}-\u{16F87}\u{16F8F}-\u{16F9F}\u{16FE0}-\u{16FE4}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18CFF}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}-\u{1BCA3}\u{1CC00}-\u{1CCF9}\u{1CD00}-\u{1CEB3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D1EA}\u{1D200}-\u{1D245}\u{1D2C0}-\u{1D2D3}\u{1D2E0}-\u{1D2F3}\u{1D300}-\u{1D356}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D7CB}\u{1D7CE}-\u{1DA8B}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E030}-\u{1E06D}\u{1E08F}\u{1E100}-\u{1E12C}\u{1E130}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AE}\u{1E2C0}-\u{1E2F9}\u{1E2FF}\u{1E4D0}-\u{1E4F9}\u{1E5D0}-\u{1E5FA}\u{1E5FF}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F1AD}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DC}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F776}\u{1F77B}-\u{1F7D9}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}-\u{1F8BB}\u{1F8C0}\u{1F8C1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA7C}\u{1FA80}-\u{1FA89}\u{1FA8F}-\u{1FAC6}\u{1FACE}-\u{1FADC}\u{1FADF}-\u{1FAE9}\u{1FAF0}-\u{1FAF8}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]*$/u, p = /[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u06F0-\u06F9\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B4E-\u1B6A\u1B74-\u1B7F\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C8A\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u2488-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E1}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{105C0}-\u{105F3}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11380}-\u{11389}\u{1138B}\u{1138E}\u{11390}-\u{113B5}\u{113B7}-\u{113BA}\u{113C2}\u{113C5}\u{113C7}-\u{113CA}\u{113CC}\u{113CD}\u{113CF}\u{113D1}\u{113D3}-\u{113D5}\u{113D7}\u{113D8}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{116D0}-\u{116E3}\u{11700}-\u{1171A}\u{1171E}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11B00}-\u{11B09}\u{11BC0}-\u{11BE1}\u{11BF0}-\u{11BF9}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11F02}-\u{11F10}\u{11F12}-\u{11F35}\u{11F3E}\u{11F3F}\u{11F41}\u{11F43}-\u{11F59}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1343F}\u{13441}-\u{13446}\u{13460}-\u{143FA}\u{14400}-\u{14646}\u{16100}-\u{1611D}\u{1612A}-\u{1612C}\u{16130}-\u{16139}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16D40}-\u{16D79}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18CFF}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CCD6}-\u{1CCF9}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2C0}-\u{1D2D3}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6C0}\u{1D6C2}-\u{1D6DA}\u{1D6DC}-\u{1D6FA}\u{1D6FC}-\u{1D714}\u{1D716}-\u{1D734}\u{1D736}-\u{1D74E}\u{1D750}-\u{1D76E}\u{1D770}-\u{1D788}\u{1D78A}-\u{1D7A8}\u{1D7AA}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D7CE}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E4D0}-\u{1E4EB}\u{1E4F0}-\u{1E4F9}\u{1E5D0}-\u{1E5ED}\u{1E5F0}-\u{1E5FA}\u{1E5FF}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F100}-\u{1F10A}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10D69}-\u{10D6D}\u{10EAB}\u{10EAC}\u{10EFC}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{113BB}-\u{113C0}\u{113CE}\u{113D0}\u{113D2}\u{113E1}\u{113E2}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{11F5A}\u{13440}\u{13447}-\u{13455}\u{1611E}-\u{16129}\u{1612D}-\u{1612F}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E5EE}\u{1E5EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u;
21667
21635
  t.exports = {
21668
21636
  combiningMarks: n,
@@ -21678,7 +21646,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
21678
21646
  bidiS5: f,
21679
21647
  bidiS6: p
21680
21648
  };
21681
- }) }), Hr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/lib/mappingTable.json": ((exports, t) => {
21649
+ }) }), br = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/lib/mappingTable.json": ((exports, t) => {
21682
21650
  t.exports = [
21683
21651
  [[0, 44], 2],
21684
21652
  [[45, 46], 2],
@@ -55258,7 +55226,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55258
55226
  [[1048576, 1114109], 3],
55259
55227
  [[1114110, 1114111], 3]
55260
55228
  ];
55261
- }) }), Ur = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/lib/statusMapping.js": ((exports, t) => {
55229
+ }) }), xr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/lib/statusMapping.js": ((exports, t) => {
55262
55230
  t.exports.STATUS_MAPPING = {
55263
55231
  mapped: 1,
55264
55232
  valid: 2,
@@ -55266,8 +55234,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55266
55234
  deviation: 6,
55267
55235
  ignored: 7
55268
55236
  };
55269
- }) }), Wr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/index.js": ((exports, t) => {
55270
- let n = (Br(), fn(lr)), r = Vr(), i = Hr(), { STATUS_MAPPING: a } = Ur();
55237
+ }) }), Sr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/tr46@5.1.1/node_modules/tr46/index.js": ((exports, t) => {
55238
+ let n = (vr(), Ut(Vn)), r = yr(), i = br(), { STATUS_MAPPING: a } = xr();
55271
55239
  function o(e) {
55272
55240
  return /[^\x00-\x7F]/u.test(e);
55273
55241
  }
@@ -55430,7 +55398,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55430
55398
  toASCII: f,
55431
55399
  toUnicode: p
55432
55400
  };
55433
- }) }), Gr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/infra.js": ((exports, t) => {
55401
+ }) }), Cr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/infra.js": ((exports, t) => {
55434
55402
  function n(e) {
55435
55403
  return e >= 48 && e <= 57;
55436
55404
  }
@@ -55449,7 +55417,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55449
55417
  isASCIIAlphanumeric: i,
55450
55418
  isASCIIHex: a
55451
55419
  };
55452
- }) }), Kr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/encoding.js": ((exports, t) => {
55420
+ }) }), wr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/encoding.js": ((exports, t) => {
55453
55421
  let n = new TextEncoder(), r = new TextDecoder("utf-8", { ignoreBOM: !0 });
55454
55422
  function i(e) {
55455
55423
  return n.encode(e);
@@ -55461,8 +55429,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55461
55429
  utf8Encode: i,
55462
55430
  utf8DecodeWithoutBOM: a
55463
55431
  };
55464
- }) }), qr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/percent-encoding.js": ((exports, t) => {
55465
- let { isASCIIHex: n } = Gr(), { utf8Encode: r } = Kr();
55432
+ }) }), Tr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/percent-encoding.js": ((exports, t) => {
55433
+ let { isASCIIHex: n } = Cr(), { utf8Encode: r } = wr();
55466
55434
  function i(e) {
55467
55435
  return e.codePointAt(0);
55468
55436
  }
@@ -55583,8 +55551,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55583
55551
  utf8PercentEncodeString: w,
55584
55552
  utf8PercentEncodeCodePoint: C
55585
55553
  };
55586
- }) }), Jr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/url-state-machine.js": ((exports, t) => {
55587
- let n = Wr(), r = Gr(), { utf8DecodeWithoutBOM: i } = Kr(), { percentDecodeString: a, utf8PercentEncodeCodePoint: o, utf8PercentEncodeString: s, isC0ControlPercentEncode: c, isFragmentPercentEncode: l, isQueryPercentEncode: u, isSpecialQueryPercentEncode: d, isPathPercentEncode: f, isUserinfoPercentEncode: p } = qr();
55554
+ }) }), Er = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/url-state-machine.js": ((exports, t) => {
55555
+ let n = Sr(), r = Cr(), { utf8DecodeWithoutBOM: i } = wr(), { percentDecodeString: a, utf8PercentEncodeCodePoint: o, utf8PercentEncodeString: s, isC0ControlPercentEncode: c, isFragmentPercentEncode: l, isQueryPercentEncode: u, isSpecialQueryPercentEncode: d, isPathPercentEncode: f, isUserinfoPercentEncode: p } = Tr();
55588
55556
  function m(e) {
55589
55557
  return e.codePointAt(0);
55590
55558
  }
@@ -55782,21 +55750,21 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55782
55750
  }
55783
55751
  function U(e) {
55784
55752
  let { path: t } = e;
55785
- t.length !== 0 && (e.scheme === "file" && t.length === 1 && K(t[0]) || t.pop());
55753
+ t.length !== 0 && (e.scheme === "file" && t.length === 1 && q(t[0]) || t.pop());
55786
55754
  }
55787
55755
  function W(e) {
55788
55756
  return e.username !== "" || e.password !== "";
55789
55757
  }
55790
- function ee(e) {
55758
+ function G(e) {
55791
55759
  return e.host === null || e.host === "" || e.scheme === "file";
55792
55760
  }
55793
- function G(e) {
55761
+ function K(e) {
55794
55762
  return typeof e.path == "string";
55795
55763
  }
55796
- function K(e) {
55764
+ function q(e) {
55797
55765
  return /^[A-Za-z]:$/u.test(e);
55798
55766
  }
55799
- function q(e, t, n, r, i) {
55767
+ function J(e, t, n, r, i) {
55800
55768
  if (this.pointer = 0, this.input = e, this.base = t || null, this.encodingOverride = n || "utf-8", this.stateOverride = i, this.url = r, this.failure = !1, this.parseError = !1, !this.url) {
55801
55769
  this.url = {
55802
55770
  scheme: "",
@@ -55822,12 +55790,12 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55822
55790
  } else break;
55823
55791
  }
55824
55792
  }
55825
- q.prototype["parse scheme start"] = function(e, t) {
55793
+ J.prototype["parse scheme start"] = function(e, t) {
55826
55794
  if (r.isASCIIAlpha(e)) this.buffer += t.toLowerCase(), this.state = "scheme";
55827
55795
  else if (!this.stateOverride) this.state = "no scheme", --this.pointer;
55828
55796
  else return this.parseError = !0, g;
55829
55797
  return !0;
55830
- }, q.prototype["parse scheme"] = function(e, t) {
55798
+ }, J.prototype["parse scheme"] = function(e, t) {
55831
55799
  if (r.isASCIIAlphanumeric(e) || e === m("+") || e === m("-") || e === m(".")) this.buffer += t.toLowerCase();
55832
55800
  else if (e === m(":")) {
55833
55801
  if (this.stateOverride && (D(this.url) && !E(this.buffer) || !D(this.url) && E(this.buffer) || (W(this.url) || this.url.port !== null) && this.buffer === "file" || this.url.scheme === "file" && this.url.host === "")) return !1;
@@ -55836,21 +55804,21 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55836
55804
  } else if (!this.stateOverride) this.buffer = "", this.state = "no scheme", this.pointer = -1;
55837
55805
  else return this.parseError = !0, g;
55838
55806
  return !0;
55839
- }, q.prototype["parse no scheme"] = function(e) {
55840
- return this.base === null || G(this.base) && e !== m("#") ? g : (G(this.base) && e === m("#") ? (this.url.scheme = this.base.scheme, this.url.path = this.base.path, this.url.query = this.base.query, this.url.fragment = "", this.state = "fragment") : this.base.scheme === "file" ? (this.state = "file", --this.pointer) : (this.state = "relative", --this.pointer), !0);
55841
- }, q.prototype["parse special relative or authority"] = function(e) {
55807
+ }, J.prototype["parse no scheme"] = function(e) {
55808
+ return this.base === null || K(this.base) && e !== m("#") ? g : (K(this.base) && e === m("#") ? (this.url.scheme = this.base.scheme, this.url.path = this.base.path, this.url.query = this.base.query, this.url.fragment = "", this.state = "fragment") : this.base.scheme === "file" ? (this.state = "file", --this.pointer) : (this.state = "relative", --this.pointer), !0);
55809
+ }, J.prototype["parse special relative or authority"] = function(e) {
55842
55810
  return e === m("/") && this.input[this.pointer + 1] === m("/") ? (this.state = "special authority ignore slashes", ++this.pointer) : (this.parseError = !0, this.state = "relative", --this.pointer), !0;
55843
- }, q.prototype["parse path or authority"] = function(e) {
55811
+ }, J.prototype["parse path or authority"] = function(e) {
55844
55812
  return e === m("/") ? this.state = "authority" : (this.state = "path", --this.pointer), !0;
55845
- }, q.prototype["parse relative"] = function(e) {
55813
+ }, J.prototype["parse relative"] = function(e) {
55846
55814
  return this.url.scheme = this.base.scheme, e === m("/") ? this.state = "relative slash" : D(this.url) && e === m("\\") ? (this.parseError = !0, this.state = "relative slash") : (this.url.username = this.base.username, this.url.password = this.base.password, this.url.host = this.base.host, this.url.port = this.base.port, this.url.path = this.base.path.slice(), this.url.query = this.base.query, e === m("?") ? (this.url.query = "", this.state = "query") : e === m("#") ? (this.url.fragment = "", this.state = "fragment") : isNaN(e) || (this.url.query = null, this.url.path.pop(), this.state = "path", --this.pointer)), !0;
55847
- }, q.prototype["parse relative slash"] = function(e) {
55815
+ }, J.prototype["parse relative slash"] = function(e) {
55848
55816
  return D(this.url) && (e === m("/") || e === m("\\")) ? (e === m("\\") && (this.parseError = !0), this.state = "special authority ignore slashes") : e === m("/") ? this.state = "authority" : (this.url.username = this.base.username, this.url.password = this.base.password, this.url.host = this.base.host, this.url.port = this.base.port, this.state = "path", --this.pointer), !0;
55849
- }, q.prototype["parse special authority slashes"] = function(e) {
55817
+ }, J.prototype["parse special authority slashes"] = function(e) {
55850
55818
  return e === m("/") && this.input[this.pointer + 1] === m("/") ? (this.state = "special authority ignore slashes", ++this.pointer) : (this.parseError = !0, this.state = "special authority ignore slashes", --this.pointer), !0;
55851
- }, q.prototype["parse special authority ignore slashes"] = function(e) {
55819
+ }, J.prototype["parse special authority ignore slashes"] = function(e) {
55852
55820
  return e !== m("/") && e !== m("\\") ? (this.state = "authority", --this.pointer) : this.parseError = !0, !0;
55853
- }, q.prototype["parse authority"] = function(e, t) {
55821
+ }, J.prototype["parse authority"] = function(e, t) {
55854
55822
  if (e === m("@")) {
55855
55823
  this.parseError = !0, this.atFlag && (this.buffer = `%40${this.buffer}`), this.atFlag = !0;
55856
55824
  let e = _(this.buffer);
@@ -55869,7 +55837,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55869
55837
  this.pointer -= _(this.buffer) + 1, this.buffer = "", this.state = "host";
55870
55838
  } else this.buffer += t;
55871
55839
  return !0;
55872
- }, q.prototype["parse hostname"] = q.prototype["parse host"] = function(e, t) {
55840
+ }, J.prototype["parse hostname"] = J.prototype["parse host"] = function(e, t) {
55873
55841
  if (this.stateOverride && this.url.scheme === "file") --this.pointer, this.state = "file host";
55874
55842
  else if (e === m(":") && !this.arrFlag) {
55875
55843
  if (this.buffer === "") return this.parseError = !0, g;
@@ -55885,7 +55853,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55885
55853
  if (this.url.host = e, this.buffer = "", this.state = "path start", this.stateOverride) return !1;
55886
55854
  } else e === m("[") ? this.arrFlag = !0 : e === m("]") && (this.arrFlag = !1), this.buffer += t;
55887
55855
  return !0;
55888
- }, q.prototype["parse port"] = function(e, t) {
55856
+ }, J.prototype["parse port"] = function(e, t) {
55889
55857
  if (r.isASCIIDigit(e)) this.buffer += t;
55890
55858
  else if (isNaN(e) || e === m("/") || e === m("?") || e === m("#") || D(this.url) && e === m("\\") || this.stateOverride) {
55891
55859
  if (this.buffer !== "") {
@@ -55898,21 +55866,21 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55898
55866
  } else return this.parseError = !0, g;
55899
55867
  return !0;
55900
55868
  };
55901
- let J = new Set([
55869
+ let Y = new Set([
55902
55870
  m("/"),
55903
55871
  m("\\"),
55904
55872
  m("?"),
55905
55873
  m("#")
55906
55874
  ]);
55907
- function Y(e, t) {
55875
+ function X(e, t) {
55908
55876
  let n = e.length - t;
55909
- return n >= 2 && x(e[t], e[t + 1]) && (n === 2 || J.has(e[t + 2]));
55877
+ return n >= 2 && x(e[t], e[t + 1]) && (n === 2 || Y.has(e[t + 2]));
55910
55878
  }
55911
- q.prototype["parse file"] = function(e) {
55912
- return this.url.scheme = "file", this.url.host = "", e === m("/") || e === m("\\") ? (e === m("\\") && (this.parseError = !0), this.state = "file slash") : this.base !== null && this.base.scheme === "file" ? (this.url.host = this.base.host, this.url.path = this.base.path.slice(), this.url.query = this.base.query, e === m("?") ? (this.url.query = "", this.state = "query") : e === m("#") ? (this.url.fragment = "", this.state = "fragment") : isNaN(e) || (this.url.query = null, Y(this.input, this.pointer) ? (this.parseError = !0, this.url.path = []) : U(this.url), this.state = "path", --this.pointer)) : (this.state = "path", --this.pointer), !0;
55913
- }, q.prototype["parse file slash"] = function(e) {
55914
- return e === m("/") || e === m("\\") ? (e === m("\\") && (this.parseError = !0), this.state = "file host") : (this.base !== null && this.base.scheme === "file" && (!Y(this.input, this.pointer) && C(this.base.path[0]) && this.url.path.push(this.base.path[0]), this.url.host = this.base.host), this.state = "path", --this.pointer), !0;
55915
- }, q.prototype["parse file host"] = function(e, t) {
55879
+ J.prototype["parse file"] = function(e) {
55880
+ return this.url.scheme = "file", this.url.host = "", e === m("/") || e === m("\\") ? (e === m("\\") && (this.parseError = !0), this.state = "file slash") : this.base !== null && this.base.scheme === "file" ? (this.url.host = this.base.host, this.url.path = this.base.path.slice(), this.url.query = this.base.query, e === m("?") ? (this.url.query = "", this.state = "query") : e === m("#") ? (this.url.fragment = "", this.state = "fragment") : isNaN(e) || (this.url.query = null, X(this.input, this.pointer) ? (this.parseError = !0, this.url.path = []) : U(this.url), this.state = "path", --this.pointer)) : (this.state = "path", --this.pointer), !0;
55881
+ }, J.prototype["parse file slash"] = function(e) {
55882
+ return e === m("/") || e === m("\\") ? (e === m("\\") && (this.parseError = !0), this.state = "file host") : (this.base !== null && this.base.scheme === "file" && (!X(this.input, this.pointer) && C(this.base.path[0]) && this.url.path.push(this.base.path[0]), this.url.host = this.base.host), this.state = "path", --this.pointer), !0;
55883
+ }, J.prototype["parse file host"] = function(e, t) {
55916
55884
  if (isNaN(e) || e === m("/") || e === m("\\") || e === m("?") || e === m("#")) if (--this.pointer, !this.stateOverride && S(this.buffer)) this.parseError = !0, this.state = "path";
55917
55885
  else if (this.buffer === "") {
55918
55886
  if (this.url.host = "", this.stateOverride) return !1;
@@ -55925,11 +55893,11 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55925
55893
  }
55926
55894
  else this.buffer += t;
55927
55895
  return !0;
55928
- }, q.prototype["parse path start"] = function(e) {
55896
+ }, J.prototype["parse path start"] = function(e) {
55929
55897
  return D(this.url) ? (e === m("\\") && (this.parseError = !0), this.state = "path", e !== m("/") && e !== m("\\") && --this.pointer) : !this.stateOverride && e === m("?") ? (this.url.query = "", this.state = "query") : !this.stateOverride && e === m("#") ? (this.url.fragment = "", this.state = "fragment") : e === void 0 ? this.stateOverride && this.url.host === null && this.url.path.push("") : (this.state = "path", e !== m("/") && --this.pointer), !0;
55930
- }, q.prototype["parse path"] = function(e) {
55898
+ }, J.prototype["parse path"] = function(e) {
55931
55899
  return isNaN(e) || e === m("/") || D(this.url) && e === m("\\") || !this.stateOverride && (e === m("?") || e === m("#")) ? (D(this.url) && e === m("\\") && (this.parseError = !0), b(this.buffer) ? (U(this.url), e !== m("/") && !(D(this.url) && e === m("\\")) && this.url.path.push("")) : y(this.buffer) && e !== m("/") && !(D(this.url) && e === m("\\")) ? this.url.path.push("") : y(this.buffer) || (this.url.scheme === "file" && this.url.path.length === 0 && S(this.buffer) && (this.buffer = `${this.buffer[0]}:`), this.url.path.push(this.buffer)), this.buffer = "", e === m("?") && (this.url.query = "", this.state = "query"), e === m("#") && (this.url.fragment = "", this.state = "fragment")) : (e === m("%") && (!r.isASCIIHex(this.input[this.pointer + 1]) || !r.isASCIIHex(this.input[this.pointer + 2])) && (this.parseError = !0), this.buffer += o(e, f)), !0;
55932
- }, q.prototype["parse opaque path"] = function(e) {
55900
+ }, J.prototype["parse opaque path"] = function(e) {
55933
55901
  if (e === m("?")) this.url.query = "", this.state = "query";
55934
55902
  else if (e === m("#")) this.url.fragment = "", this.state = "fragment";
55935
55903
  else if (e === m(" ")) {
@@ -55937,30 +55905,30 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55937
55905
  e === m("?") || e === m("#") ? this.url.path += "%20" : this.url.path += " ";
55938
55906
  } else !isNaN(e) && e !== m("%") && (this.parseError = !0), e === m("%") && (!r.isASCIIHex(this.input[this.pointer + 1]) || !r.isASCIIHex(this.input[this.pointer + 2])) && (this.parseError = !0), isNaN(e) || (this.url.path += o(e, c));
55939
55907
  return !0;
55940
- }, q.prototype["parse query"] = function(e, t) {
55908
+ }, J.prototype["parse query"] = function(e, t) {
55941
55909
  if ((!D(this.url) || this.url.scheme === "ws" || this.url.scheme === "wss") && (this.encodingOverride = "utf-8"), !this.stateOverride && e === m("#") || isNaN(e)) {
55942
55910
  let t = D(this.url) ? d : u;
55943
55911
  this.url.query += s(this.buffer, t), this.buffer = "", e === m("#") && (this.url.fragment = "", this.state = "fragment");
55944
55912
  } else isNaN(e) || (e === m("%") && (!r.isASCIIHex(this.input[this.pointer + 1]) || !r.isASCIIHex(this.input[this.pointer + 2])) && (this.parseError = !0), this.buffer += t);
55945
55913
  return !0;
55946
- }, q.prototype["parse fragment"] = function(e) {
55914
+ }, J.prototype["parse fragment"] = function(e) {
55947
55915
  return isNaN(e) || (e === m("%") && (!r.isASCIIHex(this.input[this.pointer + 1]) || !r.isASCIIHex(this.input[this.pointer + 2])) && (this.parseError = !0), this.url.fragment += o(e, l)), !0;
55948
55916
  };
55949
- function X(e, t) {
55917
+ function Z(e, t) {
55950
55918
  let n = `${e.scheme}:`;
55951
- return e.host !== null && (n += "//", (e.username !== "" || e.password !== "") && (n += e.username, e.password !== "" && (n += `:${e.password}`), n += "@"), n += z(e.host), e.port !== null && (n += `:${e.port}`)), e.host === null && !G(e) && e.path.length > 1 && e.path[0] === "" && (n += "/."), n += te(e), e.query !== null && (n += `?${e.query}`), !t && e.fragment !== null && (n += `#${e.fragment}`), n;
55919
+ return e.host !== null && (n += "//", (e.username !== "" || e.password !== "") && (n += e.username, e.password !== "" && (n += `:${e.password}`), n += "@"), n += z(e.host), e.port !== null && (n += `:${e.port}`)), e.host === null && !K(e) && e.path.length > 1 && e.path[0] === "" && (n += "/."), n += te(e), e.query !== null && (n += `?${e.query}`), !t && e.fragment !== null && (n += `#${e.fragment}`), n;
55952
55920
  }
55953
- function Z(e) {
55921
+ function ee(e) {
55954
55922
  let t = `${e.scheme}://`;
55955
55923
  return t += z(e.host), e.port !== null && (t += `:${e.port}`), t;
55956
55924
  }
55957
55925
  function te(e) {
55958
- if (G(e)) return e.path;
55926
+ if (K(e)) return e.path;
55959
55927
  let t = "";
55960
55928
  for (let n of e.path) t += `/${n}`;
55961
55929
  return t;
55962
55930
  }
55963
- t.exports.serializeURL = X, t.exports.serializePath = te, t.exports.serializeURLOrigin = function(e) {
55931
+ t.exports.serializeURL = Z, t.exports.serializePath = te, t.exports.serializeURLOrigin = function(e) {
55964
55932
  switch (e.scheme) {
55965
55933
  case "blob": {
55966
55934
  let n = t.exports.parseURL(te(e));
@@ -55970,7 +55938,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55970
55938
  case "http":
55971
55939
  case "https":
55972
55940
  case "ws":
55973
- case "wss": return Z({
55941
+ case "wss": return ee({
55974
55942
  scheme: e.scheme,
55975
55943
  host: e.host,
55976
55944
  port: e.port
@@ -55980,13 +55948,13 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55980
55948
  }
55981
55949
  }, t.exports.basicURLParse = function(e, t) {
55982
55950
  t === void 0 && (t = {});
55983
- let n = new q(e, t.baseURL, t.encodingOverride, t.url, t.stateOverride);
55951
+ let n = new J(e, t.baseURL, t.encodingOverride, t.url, t.stateOverride);
55984
55952
  return n.failure ? null : n.url;
55985
55953
  }, t.exports.setTheUsername = function(e, t) {
55986
55954
  e.username = s(t, p);
55987
55955
  }, t.exports.setThePassword = function(e, t) {
55988
55956
  e.password = s(t, p);
55989
- }, t.exports.serializeHost = z, t.exports.cannotHaveAUsernamePasswordPort = ee, t.exports.hasAnOpaquePath = G, t.exports.serializeInteger = function(e) {
55957
+ }, t.exports.serializeHost = z, t.exports.cannotHaveAUsernamePasswordPort = G, t.exports.hasAnOpaquePath = K, t.exports.serializeInteger = function(e) {
55990
55958
  return String(e);
55991
55959
  }, t.exports.parseURL = function(e, n) {
55992
55960
  return n === void 0 && (n = {}), t.exports.basicURLParse(e, {
@@ -55994,8 +55962,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
55994
55962
  encodingOverride: n.encodingOverride
55995
55963
  });
55996
55964
  };
55997
- }) }), Yr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/urlencoded.js": ((exports, t) => {
55998
- let { utf8Encode: n, utf8DecodeWithoutBOM: r } = Kr(), { percentDecodeBytes: i, utf8PercentEncodeString: a, isURLEncodedPercentEncode: o } = qr();
55965
+ }) }), Dr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/urlencoded.js": ((exports, t) => {
55966
+ let { utf8Encode: n, utf8DecodeWithoutBOM: r } = wr(), { percentDecodeBytes: i, utf8PercentEncodeString: a, isURLEncodedPercentEncode: o } = Tr();
55999
55967
  function s(e) {
56000
55968
  return e.codePointAt(0);
56001
55969
  }
@@ -56035,8 +56003,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56035
56003
  parseUrlencodedString: l,
56036
56004
  serializeUrlencoded: u
56037
56005
  };
56038
- }) }), Xr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/Function.js": ((exports) => {
56039
- let t = sr(), n = cr();
56006
+ }) }), Or = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/Function.js": ((exports) => {
56007
+ let t = zn(), n = Bn();
56040
56008
  exports.convert = (e, r, { context: i = "The provided value" } = {}) => {
56041
56009
  if (typeof r != "function") throw new e.TypeError(i + " is not a function");
56042
56010
  function a(...a) {
@@ -56056,8 +56024,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56056
56024
  }), o;
56057
56025
  }, a[n.wrapperSymbol] = r, a.objectReference = r, a;
56058
56026
  };
56059
- }) }), Zr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URLSearchParams-impl.js": ((exports) => {
56060
- let t = Yr();
56027
+ }) }), kr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URLSearchParams-impl.js": ((exports) => {
56028
+ let t = Dr();
56061
56029
  exports.implementation = class {
56062
56030
  constructor(e, n, { doNotStripQMark: r = !1 }) {
56063
56031
  let i = n[0];
@@ -56116,8 +56084,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56116
56084
  return t.serializeUrlencoded(this._list);
56117
56085
  }
56118
56086
  };
56119
- }) }), Qr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URLSearchParams.js": ((exports) => {
56120
- let t = sr(), n = cr(), r = Xr(), i = n.newObjectInRealm, a = n.implSymbol, o = n.ctorRegistrySymbol, s = "URLSearchParams";
56087
+ }) }), Ar = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URLSearchParams.js": ((exports) => {
56088
+ let t = zn(), n = Bn(), r = Or(), i = n.newObjectInRealm, a = n.implSymbol, o = n.ctorRegistrySymbol, s = "URLSearchParams";
56121
56089
  exports.is = (e) => n.isObject(e) && n.hasOwn(e, a) && e[a] instanceof u.implementation, exports.isImpl = (e) => n.isObject(e) && e instanceof u.implementation, exports.convert = (t, r, { context: i = "The provided value" } = {}) => {
56122
56090
  if (exports.is(r)) return n.implForWrapper(r);
56123
56091
  throw new t.TypeError(`${i} is not of type 'URLSearchParams'.`);
@@ -56396,9 +56364,9 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56396
56364
  value: d
56397
56365
  });
56398
56366
  };
56399
- let u = Zr();
56400
- }) }), $r = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URL-impl.js": ((exports) => {
56401
- let t = Jr(), n = Yr(), r = Qr();
56367
+ let u = kr();
56368
+ }) }), jr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URL-impl.js": ((exports) => {
56369
+ let t = Er(), n = Dr(), r = Ar();
56402
56370
  exports.implementation = class e {
56403
56371
  constructor(e, [n, i]) {
56404
56372
  let a = null;
@@ -56528,8 +56496,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56528
56496
  return this.href;
56529
56497
  }
56530
56498
  };
56531
- }) }), ei = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URL.js": ((exports) => {
56532
- let t = sr(), n = cr(), r = n.implSymbol, i = n.ctorRegistrySymbol;
56499
+ }) }), Mr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/lib/URL.js": ((exports) => {
56500
+ let t = zn(), n = Bn(), r = n.implSymbol, i = n.ctorRegistrySymbol;
56533
56501
  exports.is = (e) => n.isObject(e) && n.hasOwn(e, r) && e[r] instanceof s.implementation, exports.isImpl = (e) => n.isObject(e) && e instanceof s.implementation, exports.convert = (t, r, { context: i = "The provided value" } = {}) => {
56534
56502
  if (exports.is(r)) return n.implForWrapper(r);
56535
56503
  throw new t.TypeError(`${i} is not of type 'URL'.`);
@@ -56799,12 +56767,12 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56799
56767
  value: l
56800
56768
  });
56801
56769
  };
56802
- let s = $r();
56803
- }) }), ti = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/webidl2js-wrapper.js": ((exports) => {
56804
- let t = ei(), n = Qr();
56770
+ let s = jr();
56771
+ }) }), Nr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/webidl2js-wrapper.js": ((exports) => {
56772
+ let t = Mr(), n = Ar();
56805
56773
  exports.URL = t, exports.URLSearchParams = n;
56806
- }) }), ni = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/index.js": ((exports) => {
56807
- let { URL: t, URLSearchParams: n } = ti(), r = Jr(), i = qr(), a = {
56774
+ }) }), Pr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/whatwg-url@14.2.0/node_modules/whatwg-url/index.js": ((exports) => {
56775
+ let { URL: t, URLSearchParams: n } = Nr(), r = Er(), i = Tr(), a = {
56808
56776
  Array,
56809
56777
  Object,
56810
56778
  Promise,
@@ -56812,7 +56780,7 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56812
56780
  TypeError
56813
56781
  };
56814
56782
  t.install(a, ["Window"]), n.install(a, ["Window"]), exports.URL = a.URL, exports.URLSearchParams = a.URLSearchParams, exports.parseURL = r.parseURL, exports.basicURLParse = r.basicURLParse, exports.serializeURL = r.serializeURL, exports.serializePath = r.serializePath, exports.serializeHost = r.serializeHost, exports.serializeInteger = r.serializeInteger, exports.serializeURLOrigin = r.serializeURLOrigin, exports.setTheUsername = r.setTheUsername, exports.setThePassword = r.setThePassword, exports.cannotHaveAUsernamePasswordPort = r.cannotHaveAUsernamePasswordPort, exports.hasAnOpaquePath = r.hasAnOpaquePath, exports.percentDecodeString = i.percentDecodeString, exports.percentDecodeBytes = i.percentDecodeBytes;
56815
- }) }), ri = /* @__PURE__ */ $({ "../../node_modules/.pnpm/data-urls@5.0.0/node_modules/data-urls/lib/utils.js": ((exports) => {
56783
+ }) }), Fr = /* @__PURE__ */ $({ "../../node_modules/.pnpm/data-urls@5.0.0/node_modules/data-urls/lib/utils.js": ((exports) => {
56816
56784
  exports.stripLeadingAndTrailingASCIIWhitespace = (e) => e.replace(/^[ \t\n\f\r]+/u, "").replace(/[ \t\n\f\r]+$/u, ""), exports.isomorphicDecode = (e) => Array.from(e, (e) => String.fromCodePoint(e)).join(""), exports.forgivingBase64Decode = (e) => {
56817
56785
  let t;
56818
56786
  try {
@@ -56822,8 +56790,8 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56822
56790
  }
56823
56791
  return Uint8Array.from(t, (e) => e.codePointAt(0));
56824
56792
  };
56825
- }) }), ii = /* @__PURE__ */ $({ "../../node_modules/.pnpm/data-urls@5.0.0/node_modules/data-urls/lib/parser.js": ((exports, t) => {
56826
- let n = or(), { parseURL: r, serializeURL: i, percentDecodeString: a } = ni(), { stripLeadingAndTrailingASCIIWhitespace: o, isomorphicDecode: s, forgivingBase64Decode: c } = ri();
56793
+ }) }), Ir = /* @__PURE__ */ $({ "../../node_modules/.pnpm/data-urls@5.0.0/node_modules/data-urls/lib/parser.js": ((exports, t) => {
56794
+ let n = Rn(), { parseURL: r, serializeURL: i, percentDecodeString: a } = Pr(), { stripLeadingAndTrailingASCIIWhitespace: o, isomorphicDecode: s, forgivingBase64Decode: c } = Fr();
56827
56795
  t.exports = (e) => {
56828
56796
  let n = r(e);
56829
56797
  return n === null ? null : t.exports.fromURLRecord(n);
@@ -56851,22 +56819,22 @@ var mr, hr, gr, _r, vr, yr, br, xr, Sr, Cr, wr, Tr, Er, Dr, Or, kr, Ar, jr, Mr,
56851
56819
  body: d
56852
56820
  };
56853
56821
  };
56854
- }) }), ai = /* @__PURE__ */ dn(ii());
56855
- const oi = (e) => {
56856
- let t = (0, ai.default)(e) ?? e;
56857
- return Qn(t, {
56858
- attrValueProcessors: [(e) => Dn(e)],
56822
+ }) }), Lr = /* @__PURE__ */ Ht(Ir());
56823
+ const Rr = (e) => {
56824
+ let t = (0, Lr.default)(e) ?? e;
56825
+ return An(t, {
56826
+ attrValueProcessors: [(e) => an(e)],
56859
56827
  explicitChildren: !0,
56860
56828
  preserveChildrenOrder: !0
56861
56829
  });
56862
- }, si = k.Objects.GetFastValue, ci = w.FileTypes.JSONFile, li = w.MultiFile;
56863
- var ui = class extends li {
56830
+ }, zr = k.Objects.GetFastValue, Br = w.FileTypes.JSONFile, Vr = w.MultiFile;
56831
+ var Hr = class extends Vr {
56864
56832
  constructor(e, t, n, r, i, a, o) {
56865
- if (Ie(t)) {
56833
+ if (Ce(t)) {
56866
56834
  let e = t;
56867
- t = si(e, "key"), n = si(e, "url"), a = si(e, "xhrSettings"), r = si(e, "path"), i = si(e, "baseURL"), o = si(e, "tilesetXhrSettings");
56835
+ t = zr(e, "key"), n = zr(e, "url"), a = zr(e, "xhrSettings"), r = zr(e, "path"), i = zr(e, "baseURL"), o = zr(e, "tilesetXhrSettings");
56868
56836
  }
56869
- let s = new ci(e, t, n, a);
56837
+ let s = new Br(e, t, n, a);
56870
56838
  super(e, "tilemapJSON", t, [s]), this.config.path = r, this.config.baseURL = i, this.config.tilesetXhrSettings = o;
56871
56839
  }
56872
56840
  async addToCache() {
@@ -56875,8 +56843,8 @@ var ui = class extends li {
56875
56843
  if (e.type === "json" && Object.hasOwn(e.data, "tilesets")) {
56876
56844
  for (let n of t) {
56877
56845
  let t = n.xhrLoader?.responseText;
56878
- if (!t) throw new Me(Fe.Read, this.addToCache.name, n.url.toString());
56879
- let r = await oi(t), i = En(r.tileset), a = n.tilesetIndex;
56846
+ if (!t) throw new ye(Se.Read, this.addToCache.name, n.url.toString());
56847
+ let r = await Rr(t), i = rn(r.tileset), a = n.tilesetIndex;
56880
56848
  Object.assign(e.data.tilesets[a], i, {
56881
56849
  imageheight: i.image.height,
56882
56850
  imagewidth: i.image.width,
@@ -56893,74 +56861,74 @@ var ui = class extends li {
56893
56861
  onFileComplete(e) {
56894
56862
  let t = this.files.indexOf(e);
56895
56863
  if (t === -1 || (this.pending--, !(e.type === "json" && Object.hasOwn(e.data, "tilesets")))) return;
56896
- let n = e.data.tilesets, r = this.config, i = this.loader, a = i.baseURL, o = i.path, s = i.prefix, c = si(r, "baseURL", a), l = si(r, "path", o), u = si(r, "prefix", s), d = si(r, "tilesetXhrSettings");
56864
+ let n = e.data.tilesets, r = this.config, i = this.loader, a = i.baseURL, o = i.path, s = i.prefix, c = zr(r, "baseURL", a), l = zr(r, "path", o), u = zr(r, "prefix", s), d = zr(r, "tilesetXhrSettings");
56897
56865
  i.setBaseURL(c), i.setPath(l), i.setPrefix(u);
56898
56866
  for (let [t, r] of n.entries()) {
56899
56867
  let n = r.source.indexOf("public");
56900
- if (n === -1) throw new Ne(this.onFileComplete.name, r.source);
56901
- let a = r.source.slice(n + 6), o = new $t(t, i, `${e.key}|Tileset|${a}`, a, d);
56868
+ if (n === -1) throw new be(this.onFileComplete.name, r.source);
56869
+ let a = r.source.slice(n + 6), o = new jt(t, i, `${e.key}|Tileset|${a}`, a, d);
56902
56870
  this.addToMultiFile(o), i.addFile(o);
56903
56871
  }
56904
56872
  i.setBaseURL(a), i.setPath(o), i.setPrefix(s);
56905
56873
  }
56906
56874
  };
56907
- const di = "tilemapTiledJSONExternal", fi = w.FileTypesManager, pi = () => {
56908
- fi.register(di, function(...e) {
56875
+ const Ur = "tilemapTiledJSONExternal", Wr = w.FileTypesManager, Gr = () => {
56876
+ Wr.register(Ur, function(...e) {
56909
56877
  let [t, n, r, i, a, o] = e;
56910
56878
  if (Array.isArray(t)) for (let e of t) {
56911
- let t = new ui(this, e);
56879
+ let t = new Hr(this, e);
56912
56880
  this.addFile(t.files);
56913
56881
  }
56914
56882
  else {
56915
- let e = new ui(this, t, n, r, i, a, o);
56883
+ let e = new Hr(this, t, n, r, i, a, o);
56916
56884
  this.addFile(e.files);
56917
56885
  }
56918
56886
  return this;
56919
56887
  });
56920
56888
  };
56921
- var mi = /* @__PURE__ */ a({
56889
+ var Kr = /* @__PURE__ */ a({
56922
56890
  __name: "Game",
56923
56891
  props: { configuration: {} },
56924
56892
  setup(t) {
56925
- let a = We(), { game: o } = b(a), s = _("canvasRoot"), c = p(!1), f = () => {
56893
+ let a = Me(), { game: o } = b(a), s = _("canvasRoot"), c = p(!1), f = () => {
56926
56894
  c.value = !0;
56927
56895
  };
56928
56896
  return l(() => {
56929
- pi(), o.value = new C({
56897
+ Gr(), o.value = new C({
56930
56898
  ...t.configuration,
56931
56899
  parent: s.value
56932
56900
  }), o.value.events.on("ready", f);
56933
56901
  }), u(() => {
56934
- let e = Ge();
56902
+ let e = Ne();
56935
56903
  e.events.off("ready", f), e.destroy(!0), o.value = void 0;
56936
56904
  }), (t, a) => (d(), r(e, null, [i("div", {
56937
56905
  ref_key: "canvasRoot",
56938
56906
  ref: s
56939
56907
  }, null, 512), g(c) ? m(t.$slots, "default", { key: 0 }) : n("", !0)], 64));
56940
56908
  }
56941
- }), hi = mi;
56942
- const gi = {
56943
- ...It,
56944
- ...ct,
56945
- ...lt,
56909
+ });
56910
+ const qr = {
56911
+ ...vt,
56912
+ ...Ye,
56946
56913
  ...Xe,
56947
- ...dt,
56948
- ...$e,
56949
- ...et,
56950
- ...rt
56914
+ ...Re,
56915
+ ...Qe,
56916
+ ...Ve,
56917
+ ...He,
56918
+ ...Ge
56951
56919
  };
56952
- var _i = /* @__PURE__ */ a({
56920
+ var Jr = /* @__PURE__ */ a({
56953
56921
  __name: "Container",
56954
56922
  props: { configuration: { default: () => ({}) } },
56955
56923
  setup(e, { emit: t }) {
56956
56924
  let n = t, r = p();
56957
- return Ye((t) => {
56925
+ return Le((t) => {
56958
56926
  let { children: n, x: i, y: a } = e.configuration;
56959
56927
  return r.value = t.add.container(i, a, n), r.value;
56960
- }, () => e.configuration, n, gi), f(je.ParentContainer, r), (e, t) => m(e.$slots, "default");
56928
+ }, () => e.configuration, n, qr), f(ve.ParentContainer, r), (e, t) => m(e.$slots, "default");
56961
56929
  }
56962
- }), vi = _i;
56963
- const yi = {
56930
+ });
56931
+ const Yr = {
56964
56932
  closePath: (e) => (t) => {
56965
56933
  t !== void 0 && e.setClosePath(t);
56966
56934
  },
@@ -56973,52 +56941,51 @@ const yi = {
56973
56941
  startAngle: (e) => (t) => {
56974
56942
  t !== void 0 && e.setStartAngle(t);
56975
56943
  },
56976
- ...Lt,
56977
- ...rt
56944
+ ...yt,
56945
+ ...Ge
56978
56946
  };
56979
- var bi = /* @__PURE__ */ a({
56947
+ var Xr = /* @__PURE__ */ a({
56980
56948
  __name: "Circle",
56981
56949
  props: { configuration: {} },
56982
56950
  setup(e, { emit: t }) {
56983
56951
  let n = t;
56984
- return Ye((t) => {
56952
+ return Le((t) => {
56985
56953
  let { alpha: n, fillColor: r, radius: i, x: a, y: o } = e.configuration;
56986
56954
  return t.add.circle(a, o, i, r, n);
56987
- }, () => e.configuration, n, yi), (e, t) => null;
56955
+ }, () => e.configuration, n, Yr), (e, t) => null;
56988
56956
  }
56989
- }), xi = bi;
56990
- const Si = (...e) => {
56991
- Be(Q.Shutdown, ...e);
56992
- }, Ci = (e, t) => {
56957
+ });
56958
+ const Zr = (...e) => {
56959
+ Oe(Ee.Shutdown, ...e);
56960
+ }, Qr = (e, t) => {
56993
56961
  let n = p([]);
56994
56962
  if (t) {
56995
- let t = Re(), r = Ke(t);
56963
+ let t = Te(), r = Pe(t);
56996
56964
  n.value = e(r);
56997
- } else Ve((t) => {
56965
+ } else ke((t) => {
56998
56966
  n.value = e(t);
56999
56967
  });
57000
- return Si((e) => {
56968
+ return Zr((e) => {
57001
56969
  for (let { key: t } of n.value) {
57002
56970
  if (!t) continue;
57003
56971
  e.anims.remove(t);
57004
56972
  }
57005
56973
  }), n;
57006
- }, wi = (e, t) => {
56974
+ }, $r = (e, t) => {
57007
56975
  e.value = {
57008
56976
  ...t,
57009
56977
  onComplete: (...n) => {
57010
56978
  e.value = void 0, t.onComplete?.(...n);
57011
56979
  }
57012
56980
  };
57013
- }, Ti = (...e) => {
57014
- Be(Q.Init, ...e);
57015
- }, Ei = (...e) => {
57016
- Be(Q.Preload, ...e);
57017
- }, Di = (...e) => {
57018
- Be(Q.Update, ...e);
57019
- }, Oi = (e, t) => new Promise((n) => e.time.delayedCall(t, () => {
56981
+ }, ei = (...e) => {
56982
+ Oe(Ee.Init, ...e);
56983
+ }, ti = (...e) => {
56984
+ Oe(Ee.Preload, ...e);
56985
+ }, ni = (...e) => {
56986
+ Oe(Ee.Update, ...e);
56987
+ }, ri = (e, t) => new Promise((n) => e.time.delayedCall(t, () => {
57020
56988
  n();
57021
- })), ki = w.FileTypes.JSONFile;
57022
- var Ai = class extends ki {};
57023
- const ji = { padding: (e) => (t) => e.setPadding(t) };
57024
- export { st as AlphaSetterMap, It as AlphaSingleSetterMap, Et as AnimationSetterMap, yi as ArcSetterMap, pt as BaseTextureSetterMap, ct as BlendModeSetterMap, xi as Circle, lt as ComputedSizeSetterMap, vi as Container, gi as ContainerSetterMap, Xe as DepthSetterMap, ze as ExternalSceneStore, ji as FXSetterMap, ut as FlipSetterMap, hi as Game, N as GameObjectEventMap, tt as GameObjectSetterMap, rt as GlobalSetterMap, Zt as Image, Yt as ImageSetterMap, je as InjectionKeyMap, Q as Lifecycle, dt as MaskSetterMap, Gt as NineSliceSetterMap, qt as Nineslice, Ze as OriginSetterMap, Wt as PathFollower, Vt as PathFollowerComponentSetterMap, Ht as PathFollowerSetterMap, ft as PipelineSetterMap, Bt as Rectangle, Rt as RectangleSetterMap, Ft as Scene, Qe as ScrollFactorSetterMap, Lt as ShapeSetterMap, Tt as SizeSetterMap, kt as Sprite, Dt as SpriteSetterMap, di as TILEMAP_TILED_JSON_EXTERNAL_KEY, wt as Text, St as TextSetterMap, Jt as TextureCropSetterMap, mt as TextureSetterMap, vt as TileSprite, gt as TileSpriteSetterMap, ui as TiledJSONExternalFile, bt as Tilemap, Ai as TilemapFile, $t as TilesetFile, ht as TintSetterMap, $e as TransformSetterMap, nt as TweenSetterMap, et as VisibleSetterMap, ot as Zone, it as ZoneSetterMap, P as getEventName, Je as getInitializeGameObjectLifecycleHook, Ke as getScene, He as getUpdateEvent, F as isEvent, qe as onCreate, Ti as onInit, Ve as onNextTick, Ei as onPreload, Si as onShutdown, Di as onUpdate, M as pushGameObject, Be as pushListener, pi as registerTiledJSONExternalLoader, Mt as resetLifecycleListeners, Nt as runLifecycleListeners, Oi as sleep, Ci as useAnimations, jt as useCameraStore, Ge as useGame, Ye as useInitializeGameObject, Ae as useInitializeGameObjectEvents, Ue as useInitializeGameObjectSetters, Re as useInjectSceneKey, At as useInputStore, We as usePhaserStore, xt as useTextStore, wi as useTween };
56989
+ })), ii = w.FileTypes.JSONFile;
56990
+ var ai = class extends ii {};
56991
+ export { Je as AlphaSetterMap, vt as AlphaSingleSetterMap, ut as AnimationSetterMap, Yr as ArcSetterMap, et as BaseTextureSetterMap, Ye as BlendModeSetterMap, Xr as Circle, Xe as ComputedSizeSetterMap, Jr as Container, qr as ContainerSetterMap, Re as DepthSetterMap, De as ExternalSceneStore, Ze as FlipSetterMap, Kr as Game, N as GameObjectEventMap, Ue as GameObjectSetterMap, Ge as GlobalSetterMap, kt as Image, Ot as ImageSetterMap, ve as InjectionKeyMap, Ee as Lifecycle, Qe as MaskSetterMap, Tt as NineSliceSetterMap, Et as Nineslice, ze as OriginSetterMap, wt as PathFollower, St as PathFollowerComponentSetterMap, Ct as PathFollowerSetterMap, xt as Rectangle, bt as RectangleSetterMap, $e as RenderNodesSetterMap, _t as Scene, Be as ScrollFactorSetterMap, yt as ShapeSetterMap, lt as SizeSetterMap, ft as Sprite, dt as SpriteSetterMap, Ur as TILEMAP_TILED_JSON_EXTERNAL_KEY, ct as Text, st as TextSetterMap, Dt as TextureCropSetterMap, tt as TextureSetterMap, it as TileSprite, rt as TileSpriteSetterMap, Hr as TiledJSONExternalFile, at as Tilemap, ai as TilemapFile, jt as TilesetFile, nt as TintSetterMap, Ve as TransformSetterMap, We as TweenSetterMap, He as VisibleSetterMap, qe as Zone, Ke as ZoneSetterMap, P as getEventName, Ie as getInitializeGameObjectLifecycleHook, Pe as getScene, Ae as getUpdateEvent, F as isEvent, Fe as onCreate, ei as onInit, ke as onNextTick, ti as onPreload, Zr as onShutdown, ni as onUpdate, M as pushGameObject, Oe as pushListener, Gr as registerTiledJSONExternalLoader, ht as resetLifecycleListeners, gt as runLifecycleListeners, ri as sleep, Qr as useAnimations, mt as useCameraStore, Ne as useGame, Le as useInitializeGameObject, _e as useInitializeGameObjectEvents, je as useInitializeGameObjectSetters, Te as useInjectSceneKey, pt as useInputStore, Me as usePhaserStore, ot as useTextStore, $r as useTween };