@capsitech/react-utilities 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -1,3 +1,3461 @@
1
- export * from './Components';
2
- export * from './Hooks';
3
- export * from './Utilities';
1
+ import { jsx as D } from "react/jsx-runtime";
2
+ import E, { useRef as ue, useEffect as Y, useCallback as ja } from "react";
3
+ import $ from "axios";
4
+ import { saveAs as Ya } from "file-saver";
5
+ import { stringify as je } from "qs";
6
+ import { useLocation as Ua, Route as Z, matchPath as Ye } from "react-router-dom";
7
+ import R from "dayjs";
8
+ const Wa = (n) => typeof n == "object" && n && n.hasOwnProperty("$$typeof") && n.hasOwnProperty("_payload") && n.hasOwnProperty("_init"), Ue = ({
9
+ children: n,
10
+ label: e = "Loading components...",
11
+ fallback: a
12
+ }) => Wa(n) ? (a || (a = Ja), /* @__PURE__ */ D(E.Suspense, { fallback: /* @__PURE__ */ D(a, { label: e }), children: /* @__PURE__ */ D(n, {}) })) : /* @__PURE__ */ D(n, {}), Ja = ({ label: n = "Loading components..." }) => /* @__PURE__ */ D("div", { style: {
13
+ position: "fixed",
14
+ top: 0,
15
+ left: 0,
16
+ width: "100%",
17
+ height: "100%",
18
+ backgroundColor: "rgba(0, 0, 0, 0.3)",
19
+ zIndex: 9999,
20
+ display: "flex",
21
+ justifyContent: "center",
22
+ alignItems: "center"
23
+ }, children: n }), Ln = (n, e) => {
24
+ const a = E.useCallback(
25
+ (i) => {
26
+ new IntersectionObserver((r) => {
27
+ r.forEach((t) => {
28
+ t.intersectionRatio > 0 && e({ type: "next-page" });
29
+ });
30
+ }).observe(i);
31
+ },
32
+ [e]
33
+ );
34
+ E.useEffect(() => {
35
+ n.current && a(n.current);
36
+ }, [a, n]);
37
+ }, Nn = typeof window < "u", qa = typeof navigator < "u", j = qa ? navigator : void 0, _ = j && (j.connection || j.mozConnection || j.webkitConnection);
38
+ function We(n) {
39
+ const e = j?.onLine, a = n?.online;
40
+ return {
41
+ online: e,
42
+ previous: a,
43
+ since: e !== a ? /* @__PURE__ */ new Date() : n?.since,
44
+ downlink: _?.downlink,
45
+ downlinkMax: _?.downlinkMax,
46
+ effectiveType: _?.effectiveType,
47
+ rtt: _?.rtt,
48
+ saveData: _?.saveData,
49
+ type: _?.type
50
+ };
51
+ }
52
+ function Dn(n) {
53
+ const [e, a] = E.useState(n ?? We);
54
+ return E.useEffect(() => {
55
+ const i = () => {
56
+ a(We);
57
+ };
58
+ return window.addEventListener("online", i, { passive: !0 }), window.addEventListener("offline", i, { passive: !0 }), _ && window.addEventListener("change", i, { passive: !0 }), () => {
59
+ window.removeEventListener("online", i), window.removeEventListener("offline", i), _ && window.removeEventListener("change", i);
60
+ };
61
+ }, []), e;
62
+ }
63
+ const Je = ["INPUT", "TEXTAREA", "SELECT"], Za = (n, e) => {
64
+ switch (e.type) {
65
+ case "set-key-down":
66
+ return { ...n, [e.key]: !0 };
67
+ case "set-key-up":
68
+ return { ...n, [e.key]: !1 };
69
+ case "reset-keys":
70
+ return { ...e.data };
71
+ default:
72
+ return n;
73
+ }
74
+ }, En = (n, e, a) => {
75
+ if (!Array.isArray(n)) throw new Error("The first parameter to `useShortcuts` must be an ordered array of `KeyboardEvent.key` strings.");
76
+ if (!n.length) throw new Error("The first parameter to `useShortcuts` must contain atleast one `KeyboardEvent.key` string.");
77
+ if (!e || typeof e != "function") throw new Error("The second parameter to `useShortcuts` must be a function that will be envoked when the keys are pressed.");
78
+ const { overrideSystem: i } = a || {}, r = n.reduce((s, l) => (s[l.toLowerCase()] = !1, s), {}), [t, o] = E.useReducer(Za, r), d = E.useCallback(
79
+ (s) => (l) => {
80
+ const g = s.toLowerCase();
81
+ if (!l.repeat && !Je.includes(l.target.tagName) && g === l.key.toLowerCase() && t[g] !== void 0)
82
+ return i && (l.preventDefault(), qe(l)), o({ type: "set-key-down", key: g }), !1;
83
+ },
84
+ [t, i]
85
+ ), u = E.useCallback(
86
+ (s) => (l) => {
87
+ const g = s.toLowerCase();
88
+ if (!Je.includes(l.target.tagName) && l.key.toLowerCase() === g && t[g] !== void 0)
89
+ return i && (l.preventDefault(), qe(l)), o({ type: "set-key-up", key: g }), !1;
90
+ },
91
+ [t, i]
92
+ );
93
+ E.useEffect(() => {
94
+ Object.values(t).filter((s) => !s).length ? o({ type: "" }) : (e(t), o({ type: "reset-keys", data: r }));
95
+ }, [e, t]), E.useEffect(() => (n.forEach((s) => window.addEventListener("keydown", d(s))), () => n.forEach((s) => window.removeEventListener("keydown", d(s)))), []), E.useEffect(() => (n.forEach((s) => window.addEventListener("keyup", u(s))), () => n.forEach((s) => window.removeEventListener("keyup", u(s)))), []);
96
+ };
97
+ function qe(n) {
98
+ n && (n.stopPropagation ? n.stopPropagation() : window.event && (window.event.cancelBubble = !0));
99
+ }
100
+ const Rn = (n, e) => {
101
+ const a = ue(!1);
102
+ return Y(() => {
103
+ if (a.current)
104
+ return n();
105
+ a.current = !0;
106
+ }, e), a.current;
107
+ };
108
+ function Na(n) {
109
+ const e = ue(n);
110
+ return Y(() => {
111
+ e.current = n;
112
+ }, [n]), e;
113
+ }
114
+ const In = (n) => {
115
+ const e = ue(n);
116
+ return Y(() => {
117
+ e.current = n;
118
+ }), ja(
119
+ ((...a) => e.current?.(...a)),
120
+ []
121
+ );
122
+ }, Gn = () => {
123
+ const n = ue(!0);
124
+ return n.current ? (n.current = !1, !0) : n.current;
125
+ };
126
+ function On(n, e) {
127
+ const a = Na(n);
128
+ Y(() => {
129
+ const i = () => {
130
+ a.current?.();
131
+ };
132
+ if (e !== null) {
133
+ const r = setInterval(i, e);
134
+ return () => clearInterval(r);
135
+ }
136
+ }, [e, a]);
137
+ }
138
+ function Kn(n, e) {
139
+ const a = Na(n);
140
+ Y(() => {
141
+ if (e == null) return;
142
+ const i = setTimeout(() => {
143
+ a.current?.();
144
+ }, e);
145
+ return () => clearTimeout(i);
146
+ }, [e, a]);
147
+ }
148
+ var Qa = /* @__PURE__ */ ((n) => (n.get = "get", n.post = "post", n))(Qa || {}), Xa = /* @__PURE__ */ ((n) => (n.downloading = "downloading", n.done = "done", n.error = "error", n))(Xa || {});
149
+ class ei {
150
+ config = {};
151
+ get accessToken() {
152
+ return this.config.accessToken;
153
+ }
154
+ set accessToken(e) {
155
+ this.config.accessToken = e;
156
+ }
157
+ get handleError() {
158
+ return this.config.handleError || ((e, a) => {
159
+ });
160
+ }
161
+ set handleError(e) {
162
+ this.config.handleError = e;
163
+ }
164
+ /**
165
+ * Configure the API utility with base URL and other options
166
+ * @param config Configuration object
167
+ */
168
+ configure(e) {
169
+ this.config = { ...this.config, ...e };
170
+ }
171
+ // private getParams = (params?: any) => {
172
+ // if (params) {
173
+ // for (const key in params) {
174
+ // if (params[key] == null || params[key] === undefined || params[key] === '')
175
+ // delete params[key];
176
+ // }
177
+ // }
178
+ // return params;
179
+ // };
180
+ getResponse = async (e, a, i) => await $.get(e, {
181
+ params: a,
182
+ paramsSerializer: {
183
+ serialize: (r, t) => je(a, {
184
+ arrayFormat: "indices",
185
+ allowDots: !0,
186
+ skipNulls: !0
187
+ })
188
+ },
189
+ ...this._axiosOptions(i || {})
190
+ });
191
+ get = async (e, a, i, r) => {
192
+ const t = await this.getResponse(e, a, r);
193
+ return this.handleResponse(t, i);
194
+ };
195
+ getResult = async (e, a, i, r) => {
196
+ try {
197
+ const t = await this.get(e, a, void 0, r);
198
+ if (t.status)
199
+ return t.result;
200
+ this.handleErrorResponse(t.message, t.errors);
201
+ } catch (t) {
202
+ t.isAxiosError ? this.handleAxiosError(t, i) : this.handleResponse(t, i);
203
+ }
204
+ return null;
205
+ };
206
+ post = async (e, a, i, r) => {
207
+ try {
208
+ const t = await $.post(e, a, this._axiosOptions({ contentType: i, ...r || {} }));
209
+ return this.handleResponse(t);
210
+ } catch (t) {
211
+ if (t?.isAxiosError)
212
+ return this.handleAxiosError(t);
213
+ }
214
+ return {};
215
+ };
216
+ put = async (e, a, i, r) => {
217
+ try {
218
+ const t = await $.put(e, a, this._axiosOptions({ contentType: i, ...r || {} }));
219
+ return this.handleResponse(t);
220
+ } catch (t) {
221
+ if (t?.isAxiosError)
222
+ return this.handleAxiosError(t);
223
+ }
224
+ return {};
225
+ };
226
+ appendFormDataValues = (e, a, i) => {
227
+ if ((!i || i.length <= 0) && (i = ""), typeof a != "function" && typeof a != "object" && typeof a != "symbol" || a instanceof File) {
228
+ a && i && e.append(i, a);
229
+ return;
230
+ }
231
+ for (const r in a) {
232
+ const t = `${i}${i && !i.endsWith(".") ? "." : ""}${r}`;
233
+ if (a[r] instanceof FileList) {
234
+ const o = a[r];
235
+ for (let d = 0; d < o.length; d++)
236
+ e.append(`${t}[${d}]`, o[d]);
237
+ } else
238
+ Array.isArray(a[r]) ? a[r].forEach((o, d) => {
239
+ this.appendFormDataValues(e, o, `${t}[${d}]`);
240
+ }) : typeof a[r] == "object" ? this.appendFormDataValues(e, a[r], t) : a[r] && e.append(t, a[r]);
241
+ }
242
+ };
243
+ postForm = async (e, a, i) => {
244
+ let r = new FormData();
245
+ a instanceof FormData ? r = a : this.appendFormDataValues(r, a);
246
+ try {
247
+ const t = await $.post(e, r, this._axiosOptions({ contentType: "multipart/form-data", ...i || {} }));
248
+ return this.handleResponse(t);
249
+ } catch (t) {
250
+ if (t?.isAxiosError)
251
+ return this.handleAxiosError(t);
252
+ }
253
+ return {};
254
+ };
255
+ putForm = async (e, a, i) => {
256
+ let r = new FormData();
257
+ a instanceof FormData ? r = a : this.appendFormDataValues(r, a);
258
+ try {
259
+ const t = await $.putForm(e, r, this._axiosOptions({ contentType: "multipart/form-data", ...i || {} }));
260
+ return this.handleResponse(t);
261
+ } catch (t) {
262
+ if (t?.isAxiosError)
263
+ return this.handleAxiosError(t);
264
+ }
265
+ return {};
266
+ };
267
+ delete = async (e, a, i) => {
268
+ const r = await $.delete(e, this._axiosOptions({ contentType: a, ...i || {} }));
269
+ return this.handleResponse(r);
270
+ };
271
+ getFileName = (e) => {
272
+ var a = void 0;
273
+ if (e && e.indexOf("attachment") !== -1) {
274
+ var i = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/, r = i.exec(e);
275
+ r != null && r[1] && (a = r[1].replace(/['"]/g, ""));
276
+ }
277
+ return a;
278
+ };
279
+ downloadFile = async (e, a, i, r) => {
280
+ let t;
281
+ const o = {}, d = this.accessToken;
282
+ d && (o.Authorization = `Bearer ${d}`);
283
+ const u = { headers: o, ...r || {} };
284
+ i === "post" ? t = $.post(e, a, {
285
+ ...this._axiosOptions(u),
286
+ responseType: "blob"
287
+ }) : t = $.get(e, {
288
+ params: a,
289
+ paramsSerializer: {
290
+ serialize: (s, l) => je(a, {
291
+ arrayFormat: "indices",
292
+ allowDots: !0,
293
+ skipNulls: !0
294
+ })
295
+ },
296
+ ...this._axiosOptions(u),
297
+ responseType: "blob"
298
+ });
299
+ try {
300
+ const s = await t, l = this.getFileName(s.headers.get("Content-Disposition"));
301
+ return Ya(s.data, l), {
302
+ status: "done"
303
+ /* done */
304
+ };
305
+ } catch (s) {
306
+ return s.isAxiosError ? this.handleResponse(s.response) : this.handleResponse(s), s.response ? {
307
+ status: "error",
308
+ error: s.response.status
309
+ } : { status: "error", error: s.message };
310
+ }
311
+ };
312
+ getAuthHeader = (e) => {
313
+ const a = {
314
+ "Content-Type": e || "application/json",
315
+ Accept: "application/json"
316
+ }, i = this.accessToken;
317
+ return i && (a.Authorization = `Bearer ${i}`), a;
318
+ };
319
+ handleResponse = (e, a) => {
320
+ if (!e)
321
+ this.handleError && this.handleError("No response from the server, please try after some time.");
322
+ else if ([401, 403].indexOf(e.status) !== -1) {
323
+ if (a)
324
+ throw e;
325
+ console.error("401 Unauthorized or 403 Forbidden response returned from api");
326
+ }
327
+ return e?.data;
328
+ };
329
+ handleAxiosError = (e, a) => {
330
+ if (a && e.response?.status === 401) throw e;
331
+ if (e.response?.status === 400) {
332
+ const i = e.response.data;
333
+ if (i && i.errors) {
334
+ const r = [];
335
+ for (const t in i.errors)
336
+ i.errors[t] && i.errors[t].length > 0 && r.push(i.errors[t][0]);
337
+ return {
338
+ result: null,
339
+ status: !1,
340
+ message: r.length > 0 ? r[0] : "",
341
+ errors: r
342
+ };
343
+ }
344
+ }
345
+ return {};
346
+ };
347
+ handleErrorResponse = (e, a) => {
348
+ this.handleError && this.handleError(e, a);
349
+ };
350
+ _axiosOptions = (e) => {
351
+ const { contentType: a, headers: i, ...r } = e || {};
352
+ return {
353
+ headers: i || this.getAuthHeader(a),
354
+ baseURL: this.getBaseUrl(),
355
+ ...r
356
+ };
357
+ };
358
+ getBaseUrl = () => this.config.baseURL || process.env.REACT_APP_API_URL || typeof window < "u" && window.__API_BASE_URL__;
359
+ }
360
+ const xn = new ei(), Ze = 4, z = {
361
+ deviceIpString: "",
362
+ deviceIpTimeStamp: ""
363
+ }, $n = () => {
364
+ z.deviceIpString = "";
365
+ }, _n = () => {
366
+ z.deviceIpTimeStamp = "";
367
+ }, zn = () => new Promise((n, e) => {
368
+ z.deviceIpString !== "" && z.deviceIpTimeStamp !== "" && n(z);
369
+ const a = RTCPeerConnection;
370
+ a || e({ message: "WEBRTC_UNSUPPORTED_BROWSER", error: void 0 });
371
+ const i = [];
372
+ let r;
373
+ try {
374
+ r = new a();
375
+ } catch (t) {
376
+ e({ message: "WEBRTC_CONSTRUCTION_FAILED", error: t });
377
+ }
378
+ r.onicecandidate = (t) => {
379
+ if (!t || !t.candidate)
380
+ r.close(), i.length < 1 && e({ message: "NO_IP_FOUND", error: void 0 }), z.deviceIpString = i.join(","), z.deviceIpTimeStamp = (/* @__PURE__ */ new Date()).toISOString(), n(z);
381
+ else if (t.candidate.candidate) {
382
+ const o = t.candidate.candidate.split(" ");
383
+ o.length > Ze && i.push(o[Ze]);
384
+ }
385
+ }, r.createDataChannel(""), r.createOffer().then(r.setLocalDescription.bind(r)).catch((t) => {
386
+ e({ message: "CREATE_CONNECTION_ERROR", error: t });
387
+ });
388
+ }), Fn = () => Array.from(navigator.plugins, (n) => n && n.name).filter((n) => n).join(","), ai = () => {
389
+ const n = (/* @__PURE__ */ new Date()).toString().split("GMT")[1], e = `${n[0]}${n[1]}${n[2]}`, a = `${n[3]}${n[4]}`;
390
+ return `${e}:${a}`;
391
+ }, ii = () => `UTC${ai()}`, V = (n) => isNaN(n) ? null : n, Da = () => V(screen.width), Ea = () => V(screen.height), Ra = () => V(window.devicePixelRatio), Ia = () => V(screen.colorDepth), Ga = () => V(window.innerWidth), Oa = () => V(window.innerHeight), Hn = () => {
392
+ const n = window, e = navigator;
393
+ return n.doNotTrack && n.doNotTrack === "1" || e.doNotTrack && (e.doNotTrack === "yes" || e.doNotTrack === "1") || e.msDoNotTrack && e.msDoNotTrack === "1" || n.external && n.external.msTrackingProtectionEnabled && n.external.msTrackingProtectionEnabled() ? "true" : "false";
394
+ }, Vn = () => navigator.userAgent;
395
+ var Q = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
396
+ function K(n) {
397
+ return n && n.__esModule && Object.prototype.hasOwnProperty.call(n, "default") ? n.default : n;
398
+ }
399
+ var Se, Qe;
400
+ function ni() {
401
+ if (Qe) return Se;
402
+ Qe = 1;
403
+ function n(e, a, i) {
404
+ return e === e && (i !== void 0 && (e = e <= i ? e : i), a !== void 0 && (e = e >= a ? e : a)), e;
405
+ }
406
+ return Se = n, Se;
407
+ }
408
+ var Ce, Xe;
409
+ function ri() {
410
+ if (Xe) return Ce;
411
+ Xe = 1;
412
+ var n = typeof Q == "object" && Q && Q.Object === Object && Q;
413
+ return Ce = n, Ce;
414
+ }
415
+ var Me, ea;
416
+ function ti() {
417
+ if (ea) return Me;
418
+ ea = 1;
419
+ var n = ri(), e = typeof self == "object" && self && self.Object === Object && self, a = n || e || Function("return this")();
420
+ return Me = a, Me;
421
+ }
422
+ var ve, aa;
423
+ function Fe() {
424
+ if (aa) return ve;
425
+ aa = 1;
426
+ var n = ti(), e = n.Symbol;
427
+ return ve = e, ve;
428
+ }
429
+ var ke, ia;
430
+ function oi() {
431
+ if (ia) return ke;
432
+ ia = 1;
433
+ function n(e, a) {
434
+ for (var i = -1, r = e == null ? 0 : e.length, t = Array(r); ++i < r; )
435
+ t[i] = a(e[i], i, e);
436
+ return t;
437
+ }
438
+ return ke = n, ke;
439
+ }
440
+ var be, na;
441
+ function di() {
442
+ if (na) return be;
443
+ na = 1;
444
+ var n = Array.isArray;
445
+ return be = n, be;
446
+ }
447
+ var Te, ra;
448
+ function si() {
449
+ if (ra) return Te;
450
+ ra = 1;
451
+ var n = Fe(), e = Object.prototype, a = e.hasOwnProperty, i = e.toString, r = n ? n.toStringTag : void 0;
452
+ function t(o) {
453
+ var d = a.call(o, r), u = o[r];
454
+ try {
455
+ o[r] = void 0;
456
+ var s = !0;
457
+ } catch {
458
+ }
459
+ var l = i.call(o);
460
+ return s && (d ? o[r] = u : delete o[r]), l;
461
+ }
462
+ return Te = t, Te;
463
+ }
464
+ var Be, ta;
465
+ function ci() {
466
+ if (ta) return Be;
467
+ ta = 1;
468
+ var n = Object.prototype, e = n.toString;
469
+ function a(i) {
470
+ return e.call(i);
471
+ }
472
+ return Be = a, Be;
473
+ }
474
+ var we, oa;
475
+ function ui() {
476
+ if (oa) return we;
477
+ oa = 1;
478
+ var n = Fe(), e = si(), a = ci(), i = "[object Null]", r = "[object Undefined]", t = n ? n.toStringTag : void 0;
479
+ function o(d) {
480
+ return d == null ? d === void 0 ? r : i : t && t in Object(d) ? e(d) : a(d);
481
+ }
482
+ return we = o, we;
483
+ }
484
+ var Pe, da;
485
+ function li() {
486
+ if (da) return Pe;
487
+ da = 1;
488
+ function n(e) {
489
+ return e != null && typeof e == "object";
490
+ }
491
+ return Pe = n, Pe;
492
+ }
493
+ var Le, sa;
494
+ function Ka() {
495
+ if (sa) return Le;
496
+ sa = 1;
497
+ var n = ui(), e = li(), a = "[object Symbol]";
498
+ function i(r) {
499
+ return typeof r == "symbol" || e(r) && n(r) == a;
500
+ }
501
+ return Le = i, Le;
502
+ }
503
+ var Ne, ca;
504
+ function xa() {
505
+ if (ca) return Ne;
506
+ ca = 1;
507
+ var n = Fe(), e = oi(), a = di(), i = Ka(), r = n ? n.prototype : void 0, t = r ? r.toString : void 0;
508
+ function o(d) {
509
+ if (typeof d == "string")
510
+ return d;
511
+ if (a(d))
512
+ return e(d, o) + "";
513
+ if (i(d))
514
+ return t ? t.call(d) : "";
515
+ var u = d + "";
516
+ return u == "0" && 1 / d == -1 / 0 ? "-0" : u;
517
+ }
518
+ return Ne = o, Ne;
519
+ }
520
+ var De, ua;
521
+ function mi() {
522
+ if (ua) return De;
523
+ ua = 1;
524
+ var n = /\s/;
525
+ function e(a) {
526
+ for (var i = a.length; i-- && n.test(a.charAt(i)); )
527
+ ;
528
+ return i;
529
+ }
530
+ return De = e, De;
531
+ }
532
+ var Ee, la;
533
+ function hi() {
534
+ if (la) return Ee;
535
+ la = 1;
536
+ var n = mi(), e = /^\s+/;
537
+ function a(i) {
538
+ return i && i.slice(0, n(i) + 1).replace(e, "");
539
+ }
540
+ return Ee = a, Ee;
541
+ }
542
+ var Re, ma;
543
+ function fi() {
544
+ if (ma) return Re;
545
+ ma = 1;
546
+ function n(e) {
547
+ var a = typeof e;
548
+ return e != null && (a == "object" || a == "function");
549
+ }
550
+ return Re = n, Re;
551
+ }
552
+ var Ie, ha;
553
+ function pi() {
554
+ if (ha) return Ie;
555
+ ha = 1;
556
+ var n = hi(), e = fi(), a = Ka(), i = NaN, r = /^[-+]0x[0-9a-f]+$/i, t = /^0b[01]+$/i, o = /^0o[0-7]+$/i, d = parseInt;
557
+ function u(s) {
558
+ if (typeof s == "number")
559
+ return s;
560
+ if (a(s))
561
+ return i;
562
+ if (e(s)) {
563
+ var l = typeof s.valueOf == "function" ? s.valueOf() : s;
564
+ s = e(l) ? l + "" : l;
565
+ }
566
+ if (typeof s != "string")
567
+ return s === 0 ? s : +s;
568
+ s = n(s);
569
+ var g = t.test(s);
570
+ return g || o.test(s) ? d(s.slice(2), g ? 2 : 8) : r.test(s) ? i : +s;
571
+ }
572
+ return Ie = u, Ie;
573
+ }
574
+ var Ge, fa;
575
+ function yi() {
576
+ if (fa) return Ge;
577
+ fa = 1;
578
+ var n = pi(), e = 1 / 0, a = 17976931348623157e292;
579
+ function i(r) {
580
+ if (!r)
581
+ return r === 0 ? r : 0;
582
+ if (r = n(r), r === e || r === -e) {
583
+ var t = r < 0 ? -1 : 1;
584
+ return t * a;
585
+ }
586
+ return r === r ? r : 0;
587
+ }
588
+ return Ge = i, Ge;
589
+ }
590
+ var Oe, pa;
591
+ function gi() {
592
+ if (pa) return Oe;
593
+ pa = 1;
594
+ var n = yi();
595
+ function e(a) {
596
+ var i = n(a), r = i % 1;
597
+ return i === i ? r ? i - r : i : 0;
598
+ }
599
+ return Oe = e, Oe;
600
+ }
601
+ var Ke, ya;
602
+ function Ai() {
603
+ if (ya) return Ke;
604
+ ya = 1;
605
+ var n = xa();
606
+ function e(a) {
607
+ return a == null ? "" : n(a);
608
+ }
609
+ return Ke = e, Ke;
610
+ }
611
+ var xe, ga;
612
+ function Si() {
613
+ if (ga) return xe;
614
+ ga = 1;
615
+ var n = ni(), e = xa(), a = gi(), i = Ai();
616
+ function r(t, o, d) {
617
+ return t = i(t), d = d == null ? 0 : n(a(d), 0, t.length), o = e(o), t.slice(d, d + o.length) == o;
618
+ }
619
+ return xe = r, xe;
620
+ }
621
+ var Ci = Si();
622
+ const Mi = /* @__PURE__ */ K(Ci);
623
+ var X = { exports: {} }, vi = X.exports, Aa;
624
+ function ki() {
625
+ return Aa || (Aa = 1, (function(n, e) {
626
+ (function(a, i) {
627
+ n.exports = i(R);
628
+ })(vi, (function(a) {
629
+ function i(o) {
630
+ return o && typeof o == "object" && "default" in o ? o : { default: o };
631
+ }
632
+ var r = i(a), t = { name: "en-gb", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), weekdaysShort: "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), weekdaysMin: "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), monthsShort: "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), weekStart: 1, yearStart: 4, relativeTime: { future: "in %s", past: "%s ago", s: "a few seconds", m: "a minute", mm: "%d minutes", h: "an hour", hh: "%d hours", d: "a day", dd: "%d days", M: "a month", MM: "%d months", y: "a year", yy: "%d years" }, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd, D MMMM YYYY HH:mm" }, ordinal: function(o) {
633
+ var d = ["th", "st", "nd", "rd"], u = o % 100;
634
+ return "[" + o + (d[(u - 20) % 10] || d[u] || d[0]) + "]";
635
+ } };
636
+ return r.default.locale(t, null, !0), t;
637
+ }));
638
+ })(X)), X.exports;
639
+ }
640
+ ki();
641
+ var ee = { exports: {} }, bi = ee.exports, Sa;
642
+ function Ti() {
643
+ return Sa || (Sa = 1, (function(n, e) {
644
+ (function(a, i) {
645
+ n.exports = i();
646
+ })(bi, (function() {
647
+ return function(a, i) {
648
+ var r = i.prototype, t = r.format;
649
+ r.format = function(o) {
650
+ var d = this, u = this.$locale();
651
+ if (!this.isValid()) return t.bind(this)(o);
652
+ var s = this.$utils(), l = (o || "YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g, (function(g) {
653
+ switch (g) {
654
+ case "Q":
655
+ return Math.ceil((d.$M + 1) / 3);
656
+ case "Do":
657
+ return u.ordinal(d.$D);
658
+ case "gggg":
659
+ return d.weekYear();
660
+ case "GGGG":
661
+ return d.isoWeekYear();
662
+ case "wo":
663
+ return u.ordinal(d.week(), "W");
664
+ case "w":
665
+ case "ww":
666
+ return s.s(d.week(), g === "w" ? 1 : 2, "0");
667
+ case "W":
668
+ case "WW":
669
+ return s.s(d.isoWeek(), g === "W" ? 1 : 2, "0");
670
+ case "k":
671
+ case "kk":
672
+ return s.s(String(d.$H === 0 ? 24 : d.$H), g === "k" ? 1 : 2, "0");
673
+ case "X":
674
+ return Math.floor(d.$d.getTime() / 1e3);
675
+ case "x":
676
+ return d.$d.getTime();
677
+ case "z":
678
+ return "[" + d.offsetName() + "]";
679
+ case "zzz":
680
+ return "[" + d.offsetName("long") + "]";
681
+ default:
682
+ return g;
683
+ }
684
+ }));
685
+ return t.bind(this)(l);
686
+ };
687
+ };
688
+ }));
689
+ })(ee)), ee.exports;
690
+ }
691
+ var Bi = Ti();
692
+ const wi = /* @__PURE__ */ K(Bi);
693
+ var ae = { exports: {} }, Pi = ae.exports, Ca;
694
+ function Li() {
695
+ return Ca || (Ca = 1, (function(n, e) {
696
+ (function(a, i) {
697
+ n.exports = i();
698
+ })(Pi, (function() {
699
+ var a = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, i = /(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, r = /\d/, t = /\d\d/, o = /\d\d?/, d = /\d*[^-_:/,()\s\d]+/, u = {}, s = function(f) {
700
+ return (f = +f) + (f > 68 ? 1900 : 2e3);
701
+ }, l = function(f) {
702
+ return function(y) {
703
+ this[f] = +y;
704
+ };
705
+ }, g = [/[+-]\d\d:?(\d\d)?|Z/, function(f) {
706
+ (this.zone || (this.zone = {})).offset = (function(y) {
707
+ if (!y || y === "Z") return 0;
708
+ var C = y.match(/([+-]|\d\d)/g), A = 60 * C[1] + (+C[2] || 0);
709
+ return A === 0 ? 0 : C[0] === "+" ? -A : A;
710
+ })(f);
711
+ }], c = function(f) {
712
+ var y = u[f];
713
+ return y && (y.indexOf ? y : y.s.concat(y.f));
714
+ }, k = function(f, y) {
715
+ var C, A = u.meridiem;
716
+ if (A) {
717
+ for (var w = 1; w <= 24; w += 1) if (f.indexOf(A(w, 0, y)) > -1) {
718
+ C = w > 12;
719
+ break;
720
+ }
721
+ } else C = f === (y ? "pm" : "PM");
722
+ return C;
723
+ }, S = { A: [d, function(f) {
724
+ this.afternoon = k(f, !1);
725
+ }], a: [d, function(f) {
726
+ this.afternoon = k(f, !0);
727
+ }], Q: [r, function(f) {
728
+ this.month = 3 * (f - 1) + 1;
729
+ }], S: [r, function(f) {
730
+ this.milliseconds = 100 * +f;
731
+ }], SS: [t, function(f) {
732
+ this.milliseconds = 10 * +f;
733
+ }], SSS: [/\d{3}/, function(f) {
734
+ this.milliseconds = +f;
735
+ }], s: [o, l("seconds")], ss: [o, l("seconds")], m: [o, l("minutes")], mm: [o, l("minutes")], H: [o, l("hours")], h: [o, l("hours")], HH: [o, l("hours")], hh: [o, l("hours")], D: [o, l("day")], DD: [t, l("day")], Do: [d, function(f) {
736
+ var y = u.ordinal, C = f.match(/\d+/);
737
+ if (this.day = C[0], y) for (var A = 1; A <= 31; A += 1) y(A).replace(/\[|\]/g, "") === f && (this.day = A);
738
+ }], w: [o, l("week")], ww: [t, l("week")], M: [o, l("month")], MM: [t, l("month")], MMM: [d, function(f) {
739
+ var y = c("months"), C = (c("monthsShort") || y.map((function(A) {
740
+ return A.slice(0, 3);
741
+ }))).indexOf(f) + 1;
742
+ if (C < 1) throw new Error();
743
+ this.month = C % 12 || C;
744
+ }], MMMM: [d, function(f) {
745
+ var y = c("months").indexOf(f) + 1;
746
+ if (y < 1) throw new Error();
747
+ this.month = y % 12 || y;
748
+ }], Y: [/[+-]?\d+/, l("year")], YY: [t, function(f) {
749
+ this.year = s(f);
750
+ }], YYYY: [/\d{4}/, l("year")], Z: g, ZZ: g };
751
+ function h(f) {
752
+ var y, C;
753
+ y = f, C = u && u.formats;
754
+ for (var A = (f = y.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, (function(T, B, P) {
755
+ var L = P && P.toUpperCase();
756
+ return B || C[P] || a[P] || C[L].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, (function(N, I, x) {
757
+ return I || x.slice(1);
758
+ }));
759
+ }))).match(i), w = A.length, b = 0; b < w; b += 1) {
760
+ var M = A[b], p = S[M], m = p && p[0], v = p && p[1];
761
+ A[b] = v ? { regex: m, parser: v } : M.replace(/^\[|\]$/g, "");
762
+ }
763
+ return function(T) {
764
+ for (var B = {}, P = 0, L = 0; P < w; P += 1) {
765
+ var N = A[P];
766
+ if (typeof N == "string") L += N.length;
767
+ else {
768
+ var I = N.regex, x = N.parser, H = T.slice(L), O = I.exec(H)[0];
769
+ x.call(B, O), T = T.replace(O, "");
770
+ }
771
+ }
772
+ return (function(F) {
773
+ var U = F.afternoon;
774
+ if (U !== void 0) {
775
+ var G = F.hours;
776
+ U ? G < 12 && (F.hours += 12) : G === 12 && (F.hours = 0), delete F.afternoon;
777
+ }
778
+ })(B), B;
779
+ };
780
+ }
781
+ return function(f, y, C) {
782
+ C.p.customParseFormat = !0, f && f.parseTwoDigitYear && (s = f.parseTwoDigitYear);
783
+ var A = y.prototype, w = A.parse;
784
+ A.parse = function(b) {
785
+ var M = b.date, p = b.utc, m = b.args;
786
+ this.$u = p;
787
+ var v = m[1];
788
+ if (typeof v == "string") {
789
+ var T = m[2] === !0, B = m[3] === !0, P = T || B, L = m[2];
790
+ B && (L = m[2]), u = this.$locale(), !T && L && (u = C.Ls[L]), this.$d = (function(H, O, F, U) {
791
+ try {
792
+ if (["x", "X"].indexOf(O) > -1) return new Date((O === "X" ? 1e3 : 1) * H);
793
+ var G = h(O)(H), le = G.year, W = G.month, _a = G.day, za = G.hours, Fa = G.minutes, Ha = G.seconds, Va = G.milliseconds, He = G.zone, Ve = G.week, me = /* @__PURE__ */ new Date(), he = _a || (le || W ? 1 : me.getDate()), fe = le || me.getFullYear(), J = 0;
794
+ le && !W || (J = W > 0 ? W - 1 : me.getMonth());
795
+ var q, pe = za || 0, ye = Fa || 0, ge = Ha || 0, Ae = Va || 0;
796
+ return He ? new Date(Date.UTC(fe, J, he, pe, ye, ge, Ae + 60 * He.offset * 1e3)) : F ? new Date(Date.UTC(fe, J, he, pe, ye, ge, Ae)) : (q = new Date(fe, J, he, pe, ye, ge, Ae), Ve && (q = U(q).week(Ve).toDate()), q);
797
+ } catch {
798
+ return /* @__PURE__ */ new Date("");
799
+ }
800
+ })(M, v, p, C), this.init(), L && L !== !0 && (this.$L = this.locale(L).$L), P && M != this.format(v) && (this.$d = /* @__PURE__ */ new Date("")), u = {};
801
+ } else if (v instanceof Array) for (var N = v.length, I = 1; I <= N; I += 1) {
802
+ m[1] = v[I - 1];
803
+ var x = C.apply(this, m);
804
+ if (x.isValid()) {
805
+ this.$d = x.$d, this.$L = x.$L, this.init();
806
+ break;
807
+ }
808
+ I === N && (this.$d = /* @__PURE__ */ new Date(""));
809
+ }
810
+ else w.call(this, b);
811
+ };
812
+ };
813
+ }));
814
+ })(ae)), ae.exports;
815
+ }
816
+ var Ni = Li();
817
+ const Di = /* @__PURE__ */ K(Ni);
818
+ var ie = { exports: {} }, Ei = ie.exports, Ma;
819
+ function Ri() {
820
+ return Ma || (Ma = 1, (function(n, e) {
821
+ (function(a, i) {
822
+ n.exports = i();
823
+ })(Ei, (function() {
824
+ var a, i, r = 1e3, t = 6e4, o = 36e5, d = 864e5, u = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, s = 31536e6, l = 2628e6, g = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/, c = { years: s, months: l, days: d, hours: o, minutes: t, seconds: r, milliseconds: 1, weeks: 6048e5 }, k = function(M) {
825
+ return M instanceof w;
826
+ }, S = function(M, p, m) {
827
+ return new w(M, m, p.$l);
828
+ }, h = function(M) {
829
+ return i.p(M) + "s";
830
+ }, f = function(M) {
831
+ return M < 0;
832
+ }, y = function(M) {
833
+ return f(M) ? Math.ceil(M) : Math.floor(M);
834
+ }, C = function(M) {
835
+ return Math.abs(M);
836
+ }, A = function(M, p) {
837
+ return M ? f(M) ? { negative: !0, format: "" + C(M) + p } : { negative: !1, format: "" + M + p } : { negative: !1, format: "" };
838
+ }, w = (function() {
839
+ function M(m, v, T) {
840
+ var B = this;
841
+ if (this.$d = {}, this.$l = T, m === void 0 && (this.$ms = 0, this.parseFromMilliseconds()), v) return S(m * c[h(v)], this);
842
+ if (typeof m == "number") return this.$ms = m, this.parseFromMilliseconds(), this;
843
+ if (typeof m == "object") return Object.keys(m).forEach((function(N) {
844
+ B.$d[h(N)] = m[N];
845
+ })), this.calMilliseconds(), this;
846
+ if (typeof m == "string") {
847
+ var P = m.match(g);
848
+ if (P) {
849
+ var L = P.slice(2).map((function(N) {
850
+ return N != null ? Number(N) : 0;
851
+ }));
852
+ return this.$d.years = L[0], this.$d.months = L[1], this.$d.weeks = L[2], this.$d.days = L[3], this.$d.hours = L[4], this.$d.minutes = L[5], this.$d.seconds = L[6], this.calMilliseconds(), this;
853
+ }
854
+ }
855
+ return this;
856
+ }
857
+ var p = M.prototype;
858
+ return p.calMilliseconds = function() {
859
+ var m = this;
860
+ this.$ms = Object.keys(this.$d).reduce((function(v, T) {
861
+ return v + (m.$d[T] || 0) * c[T];
862
+ }), 0);
863
+ }, p.parseFromMilliseconds = function() {
864
+ var m = this.$ms;
865
+ this.$d.years = y(m / s), m %= s, this.$d.months = y(m / l), m %= l, this.$d.days = y(m / d), m %= d, this.$d.hours = y(m / o), m %= o, this.$d.minutes = y(m / t), m %= t, this.$d.seconds = y(m / r), m %= r, this.$d.milliseconds = m;
866
+ }, p.toISOString = function() {
867
+ var m = A(this.$d.years, "Y"), v = A(this.$d.months, "M"), T = +this.$d.days || 0;
868
+ this.$d.weeks && (T += 7 * this.$d.weeks);
869
+ var B = A(T, "D"), P = A(this.$d.hours, "H"), L = A(this.$d.minutes, "M"), N = this.$d.seconds || 0;
870
+ this.$d.milliseconds && (N += this.$d.milliseconds / 1e3, N = Math.round(1e3 * N) / 1e3);
871
+ var I = A(N, "S"), x = m.negative || v.negative || B.negative || P.negative || L.negative || I.negative, H = P.format || L.format || I.format ? "T" : "", O = (x ? "-" : "") + "P" + m.format + v.format + B.format + H + P.format + L.format + I.format;
872
+ return O === "P" || O === "-P" ? "P0D" : O;
873
+ }, p.toJSON = function() {
874
+ return this.toISOString();
875
+ }, p.format = function(m) {
876
+ var v = m || "YYYY-MM-DDTHH:mm:ss", T = { Y: this.$d.years, YY: i.s(this.$d.years, 2, "0"), YYYY: i.s(this.$d.years, 4, "0"), M: this.$d.months, MM: i.s(this.$d.months, 2, "0"), D: this.$d.days, DD: i.s(this.$d.days, 2, "0"), H: this.$d.hours, HH: i.s(this.$d.hours, 2, "0"), m: this.$d.minutes, mm: i.s(this.$d.minutes, 2, "0"), s: this.$d.seconds, ss: i.s(this.$d.seconds, 2, "0"), SSS: i.s(this.$d.milliseconds, 3, "0") };
877
+ return v.replace(u, (function(B, P) {
878
+ return P || String(T[B]);
879
+ }));
880
+ }, p.as = function(m) {
881
+ return this.$ms / c[h(m)];
882
+ }, p.get = function(m) {
883
+ var v = this.$ms, T = h(m);
884
+ return T === "milliseconds" ? v %= 1e3 : v = T === "weeks" ? y(v / c[T]) : this.$d[T], v || 0;
885
+ }, p.add = function(m, v, T) {
886
+ var B;
887
+ return B = v ? m * c[h(v)] : k(m) ? m.$ms : S(m, this).$ms, S(this.$ms + B * (T ? -1 : 1), this);
888
+ }, p.subtract = function(m, v) {
889
+ return this.add(m, v, !0);
890
+ }, p.locale = function(m) {
891
+ var v = this.clone();
892
+ return v.$l = m, v;
893
+ }, p.clone = function() {
894
+ return S(this.$ms, this);
895
+ }, p.humanize = function(m) {
896
+ return a().add(this.$ms, "ms").locale(this.$l).fromNow(!m);
897
+ }, p.valueOf = function() {
898
+ return this.asMilliseconds();
899
+ }, p.milliseconds = function() {
900
+ return this.get("milliseconds");
901
+ }, p.asMilliseconds = function() {
902
+ return this.as("milliseconds");
903
+ }, p.seconds = function() {
904
+ return this.get("seconds");
905
+ }, p.asSeconds = function() {
906
+ return this.as("seconds");
907
+ }, p.minutes = function() {
908
+ return this.get("minutes");
909
+ }, p.asMinutes = function() {
910
+ return this.as("minutes");
911
+ }, p.hours = function() {
912
+ return this.get("hours");
913
+ }, p.asHours = function() {
914
+ return this.as("hours");
915
+ }, p.days = function() {
916
+ return this.get("days");
917
+ }, p.asDays = function() {
918
+ return this.as("days");
919
+ }, p.weeks = function() {
920
+ return this.get("weeks");
921
+ }, p.asWeeks = function() {
922
+ return this.as("weeks");
923
+ }, p.months = function() {
924
+ return this.get("months");
925
+ }, p.asMonths = function() {
926
+ return this.as("months");
927
+ }, p.years = function() {
928
+ return this.get("years");
929
+ }, p.asYears = function() {
930
+ return this.as("years");
931
+ }, M;
932
+ })(), b = function(M, p, m) {
933
+ return M.add(p.years() * m, "y").add(p.months() * m, "M").add(p.days() * m, "d").add(p.hours() * m, "h").add(p.minutes() * m, "m").add(p.seconds() * m, "s").add(p.milliseconds() * m, "ms");
934
+ };
935
+ return function(M, p, m) {
936
+ a = m, i = m().$utils(), m.duration = function(B, P) {
937
+ var L = m.locale();
938
+ return S(B, { $l: L }, P);
939
+ }, m.isDuration = k;
940
+ var v = p.prototype.add, T = p.prototype.subtract;
941
+ p.prototype.add = function(B, P) {
942
+ return k(B) ? b(this, B, 1) : v.bind(this)(B, P);
943
+ }, p.prototype.subtract = function(B, P) {
944
+ return k(B) ? b(this, B, -1) : T.bind(this)(B, P);
945
+ };
946
+ };
947
+ }));
948
+ })(ie)), ie.exports;
949
+ }
950
+ var Ii = Ri();
951
+ const Gi = /* @__PURE__ */ K(Ii);
952
+ var ne = { exports: {} }, Oi = ne.exports, va;
953
+ function Ki() {
954
+ return va || (va = 1, (function(n, e) {
955
+ (function(a, i) {
956
+ n.exports = i();
957
+ })(Oi, (function() {
958
+ return function(a, i) {
959
+ i.prototype.isSameOrAfter = function(r, t) {
960
+ return this.isSame(r, t) || this.isAfter(r, t);
961
+ };
962
+ };
963
+ }));
964
+ })(ne)), ne.exports;
965
+ }
966
+ var xi = Ki();
967
+ const $i = /* @__PURE__ */ K(xi);
968
+ var re = { exports: {} }, _i = re.exports, ka;
969
+ function zi() {
970
+ return ka || (ka = 1, (function(n, e) {
971
+ (function(a, i) {
972
+ n.exports = i();
973
+ })(_i, (function() {
974
+ return function(a, i) {
975
+ i.prototype.isSameOrBefore = function(r, t) {
976
+ return this.isSame(r, t) || this.isBefore(r, t);
977
+ };
978
+ };
979
+ }));
980
+ })(re)), re.exports;
981
+ }
982
+ var Fi = zi();
983
+ const Hi = /* @__PURE__ */ K(Fi);
984
+ var te = { exports: {} }, Vi = te.exports, ba;
985
+ function ji() {
986
+ return ba || (ba = 1, (function(n, e) {
987
+ (function(a, i) {
988
+ n.exports = i();
989
+ })(Vi, (function() {
990
+ return function(a, i, r) {
991
+ a = a || {};
992
+ var t = i.prototype, o = { future: "in %s", past: "%s ago", s: "a few seconds", m: "a minute", mm: "%d minutes", h: "an hour", hh: "%d hours", d: "a day", dd: "%d days", M: "a month", MM: "%d months", y: "a year", yy: "%d years" };
993
+ function d(s, l, g, c) {
994
+ return t.fromToBase(s, l, g, c);
995
+ }
996
+ r.en.relativeTime = o, t.fromToBase = function(s, l, g, c, k) {
997
+ for (var S, h, f, y = g.$locale().relativeTime || o, C = a.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], A = C.length, w = 0; w < A; w += 1) {
998
+ var b = C[w];
999
+ b.d && (S = c ? r(s).diff(g, b.d, !0) : g.diff(s, b.d, !0));
1000
+ var M = (a.rounding || Math.round)(Math.abs(S));
1001
+ if (f = S > 0, M <= b.r || !b.r) {
1002
+ M <= 1 && w > 0 && (b = C[w - 1]);
1003
+ var p = y[b.l];
1004
+ k && (M = k("" + M)), h = typeof p == "string" ? p.replace("%d", M) : p(M, l, b.l, f);
1005
+ break;
1006
+ }
1007
+ }
1008
+ if (l) return h;
1009
+ var m = f ? y.future : y.past;
1010
+ return typeof m == "function" ? m(h) : m.replace("%s", h);
1011
+ }, t.to = function(s, l) {
1012
+ return d(s, l, this, !0);
1013
+ }, t.from = function(s, l) {
1014
+ return d(s, l, this);
1015
+ };
1016
+ var u = function(s) {
1017
+ return s.$u ? r.utc() : r();
1018
+ };
1019
+ t.toNow = function(s) {
1020
+ return this.to(u(this), s);
1021
+ }, t.fromNow = function(s) {
1022
+ return this.from(u(this), s);
1023
+ };
1024
+ };
1025
+ }));
1026
+ })(te)), te.exports;
1027
+ }
1028
+ var Yi = ji();
1029
+ const Ui = /* @__PURE__ */ K(Yi);
1030
+ var oe = { exports: {} }, Wi = oe.exports, Ta;
1031
+ function Ji() {
1032
+ return Ta || (Ta = 1, (function(n, e) {
1033
+ (function(a, i) {
1034
+ n.exports = i();
1035
+ })(Wi, (function() {
1036
+ var a = { year: 0, month: 1, day: 2, hour: 3, minute: 4, second: 5 }, i = {};
1037
+ return function(r, t, o) {
1038
+ var d, u = function(c, k, S) {
1039
+ S === void 0 && (S = {});
1040
+ var h = new Date(c), f = (function(y, C) {
1041
+ C === void 0 && (C = {});
1042
+ var A = C.timeZoneName || "short", w = y + "|" + A, b = i[w];
1043
+ return b || (b = new Intl.DateTimeFormat("en-US", { hour12: !1, timeZone: y, year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit", timeZoneName: A }), i[w] = b), b;
1044
+ })(k, S);
1045
+ return f.formatToParts(h);
1046
+ }, s = function(c, k) {
1047
+ for (var S = u(c, k), h = [], f = 0; f < S.length; f += 1) {
1048
+ var y = S[f], C = y.type, A = y.value, w = a[C];
1049
+ w >= 0 && (h[w] = parseInt(A, 10));
1050
+ }
1051
+ var b = h[3], M = b === 24 ? 0 : b, p = h[0] + "-" + h[1] + "-" + h[2] + " " + M + ":" + h[4] + ":" + h[5] + ":000", m = +c;
1052
+ return (o.utc(p).valueOf() - (m -= m % 1e3)) / 6e4;
1053
+ }, l = t.prototype;
1054
+ l.tz = function(c, k) {
1055
+ c === void 0 && (c = d);
1056
+ var S, h = this.utcOffset(), f = this.toDate(), y = f.toLocaleString("en-US", { timeZone: c }), C = Math.round((f - new Date(y)) / 1e3 / 60), A = 15 * -Math.round(f.getTimezoneOffset() / 15) - C;
1057
+ if (!Number(A)) S = this.utcOffset(0, k);
1058
+ else if (S = o(y, { locale: this.$L }).$set("millisecond", this.$ms).utcOffset(A, !0), k) {
1059
+ var w = S.utcOffset();
1060
+ S = S.add(h - w, "minute");
1061
+ }
1062
+ return S.$x.$timezone = c, S;
1063
+ }, l.offsetName = function(c) {
1064
+ var k = this.$x.$timezone || o.tz.guess(), S = u(this.valueOf(), k, { timeZoneName: c }).find((function(h) {
1065
+ return h.type.toLowerCase() === "timezonename";
1066
+ }));
1067
+ return S && S.value;
1068
+ };
1069
+ var g = l.startOf;
1070
+ l.startOf = function(c, k) {
1071
+ if (!this.$x || !this.$x.$timezone) return g.call(this, c, k);
1072
+ var S = o(this.format("YYYY-MM-DD HH:mm:ss:SSS"), { locale: this.$L });
1073
+ return g.call(S, c, k).tz(this.$x.$timezone, !0);
1074
+ }, o.tz = function(c, k, S) {
1075
+ var h = S && k, f = S || k || d, y = s(+o(), f);
1076
+ if (typeof c != "string") return o(c).tz(f);
1077
+ var C = (function(M, p, m) {
1078
+ var v = M - 60 * p * 1e3, T = s(v, m);
1079
+ if (p === T) return [v, p];
1080
+ var B = s(v -= 60 * (T - p) * 1e3, m);
1081
+ return T === B ? [v, T] : [M - 60 * Math.min(T, B) * 1e3, Math.max(T, B)];
1082
+ })(o.utc(c, h).valueOf(), y, f), A = C[0], w = C[1], b = o(A).utcOffset(w);
1083
+ return b.$x.$timezone = f, b;
1084
+ }, o.tz.guess = function() {
1085
+ return Intl.DateTimeFormat().resolvedOptions().timeZone;
1086
+ }, o.tz.setDefault = function(c) {
1087
+ d = c;
1088
+ };
1089
+ };
1090
+ }));
1091
+ })(oe)), oe.exports;
1092
+ }
1093
+ var qi = Ji();
1094
+ const Zi = /* @__PURE__ */ K(qi);
1095
+ var de = { exports: {} }, Qi = de.exports, Ba;
1096
+ function Xi() {
1097
+ return Ba || (Ba = 1, (function(n, e) {
1098
+ (function(a, i) {
1099
+ n.exports = i();
1100
+ })(Qi, (function() {
1101
+ var a = "minute", i = /[+-]\d\d(?::?\d\d)?/g, r = /([+-]|\d\d)/g;
1102
+ return function(t, o, d) {
1103
+ var u = o.prototype;
1104
+ d.utc = function(h) {
1105
+ var f = { date: h, utc: !0, args: arguments };
1106
+ return new o(f);
1107
+ }, u.utc = function(h) {
1108
+ var f = d(this.toDate(), { locale: this.$L, utc: !0 });
1109
+ return h ? f.add(this.utcOffset(), a) : f;
1110
+ }, u.local = function() {
1111
+ return d(this.toDate(), { locale: this.$L, utc: !1 });
1112
+ };
1113
+ var s = u.parse;
1114
+ u.parse = function(h) {
1115
+ h.utc && (this.$u = !0), this.$utils().u(h.$offset) || (this.$offset = h.$offset), s.call(this, h);
1116
+ };
1117
+ var l = u.init;
1118
+ u.init = function() {
1119
+ if (this.$u) {
1120
+ var h = this.$d;
1121
+ this.$y = h.getUTCFullYear(), this.$M = h.getUTCMonth(), this.$D = h.getUTCDate(), this.$W = h.getUTCDay(), this.$H = h.getUTCHours(), this.$m = h.getUTCMinutes(), this.$s = h.getUTCSeconds(), this.$ms = h.getUTCMilliseconds();
1122
+ } else l.call(this);
1123
+ };
1124
+ var g = u.utcOffset;
1125
+ u.utcOffset = function(h, f) {
1126
+ var y = this.$utils().u;
1127
+ if (y(h)) return this.$u ? 0 : y(this.$offset) ? g.call(this) : this.$offset;
1128
+ if (typeof h == "string" && (h = (function(b) {
1129
+ b === void 0 && (b = "");
1130
+ var M = b.match(i);
1131
+ if (!M) return null;
1132
+ var p = ("" + M[0]).match(r) || ["-", 0, 0], m = p[0], v = 60 * +p[1] + +p[2];
1133
+ return v === 0 ? 0 : m === "+" ? v : -v;
1134
+ })(h), h === null)) return this;
1135
+ var C = Math.abs(h) <= 16 ? 60 * h : h, A = this;
1136
+ if (f) return A.$offset = C, A.$u = h === 0, A;
1137
+ if (h !== 0) {
1138
+ var w = this.$u ? this.toDate().getTimezoneOffset() : -1 * this.utcOffset();
1139
+ (A = this.local().add(C + w, a)).$offset = C, A.$x.$localOffset = w;
1140
+ } else A = this.utc();
1141
+ return A;
1142
+ };
1143
+ var c = u.format;
1144
+ u.format = function(h) {
1145
+ var f = h || (this.$u ? "YYYY-MM-DDTHH:mm:ss[Z]" : "");
1146
+ return c.call(this, f);
1147
+ }, u.valueOf = function() {
1148
+ var h = this.$utils().u(this.$offset) ? 0 : this.$offset + (this.$x.$localOffset || this.$d.getTimezoneOffset());
1149
+ return this.$d.valueOf() - 6e4 * h;
1150
+ }, u.isUTC = function() {
1151
+ return !!this.$u;
1152
+ }, u.toISOString = function() {
1153
+ return this.toDate().toISOString();
1154
+ }, u.toString = function() {
1155
+ return this.toDate().toUTCString();
1156
+ };
1157
+ var k = u.toDate;
1158
+ u.toDate = function(h) {
1159
+ return h === "s" && this.$offset ? d(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate() : k.call(this);
1160
+ };
1161
+ var S = u.diff;
1162
+ u.diff = function(h, f, y) {
1163
+ if (h && this.$u === h.$u) return S.call(this, h, f, y);
1164
+ var C = this.local(), A = d(h).local();
1165
+ return S.call(C, A, f, y);
1166
+ };
1167
+ };
1168
+ }));
1169
+ })(de)), de.exports;
1170
+ }
1171
+ var en = Xi();
1172
+ const an = /* @__PURE__ */ K(en);
1173
+ var se = { exports: {} }, nn = se.exports, wa;
1174
+ function rn() {
1175
+ return wa || (wa = 1, (function(n, e) {
1176
+ (function(a, i) {
1177
+ n.exports = i();
1178
+ })(nn, (function() {
1179
+ return function(a, i) {
1180
+ i.prototype.weekday = function(r) {
1181
+ var t = this.$locale().weekStart || 0, o = this.$W, d = (o < t ? o + 7 : o) - t;
1182
+ return this.$utils().u(r) ? d : this.subtract(d, "day").add(r, "day");
1183
+ };
1184
+ };
1185
+ }));
1186
+ })(se)), se.exports;
1187
+ }
1188
+ var tn = rn();
1189
+ const on = /* @__PURE__ */ K(tn);
1190
+ R.locale("en-gb");
1191
+ R.extend(wi);
1192
+ R.extend(Di);
1193
+ R.extend(on);
1194
+ R.extend($i);
1195
+ R.extend(Hi);
1196
+ R.extend(Ui);
1197
+ R.extend(an);
1198
+ R.extend(Zi);
1199
+ R.extend(Gi);
1200
+ const dn = (n, e) => {
1201
+ function a(i) {
1202
+ return i = +i, i > 0 ? 1 : -1;
1203
+ }
1204
+ e.prototype.addWorkdays = function(i) {
1205
+ if (i === 0 || isNaN(i))
1206
+ return this;
1207
+ var r = a(i), t = this.day(), o = Math.abs(i), d = 0;
1208
+ (t === 0 && r === -1 || t === 6 && r === 1) && (d = 1);
1209
+ var u = o;
1210
+ t !== 0 && t !== 6 && r > 0 ? u += t : t !== 0 && t !== 6 && r < 0 && (u += 6 - t);
1211
+ var s = Math.max(Math.floor(u / 5) - 1, 0) + (u > 5 && u % 5 > 0 ? 1 : 0);
1212
+ return d += o + s * 2, this.add(r * d, "day");
1213
+ };
1214
+ };
1215
+ R.extend(dn);
1216
+ const Pa = R, $e = "ao-message";
1217
+ class sn {
1218
+ DateRegEx = /(0[1-9]|[12][0-9]|3[01])[- /.](0[1-9]|1[012])[- /.](19|20)[0-9]{2}/;
1219
+ NiNoRegEx = /([ACEHJLMOPRSWXY][A-CEGHJ-NPR-TW-Z]|B[A-CEHJ-NPR-TW-Z]|G[ACEGHJ-NPR-TW-Z]|[KT][A-CEGHJ-MPR-TW-Z]|N[A-CEGHJL-NPR-SW-Z]|Z[A-CEGHJ-NPR-TW-Y])[0-9]{6}[A-D ]/;
1220
+ /**
1221
+ * Unique id for the tab (openned browser tab)
1222
+ */
1223
+ TabIdKey;
1224
+ constructor() {
1225
+ this.TabIdKey = Math.random().toString(36).substring(2, 8);
1226
+ }
1227
+ /**
1228
+ * Get number from any type/value
1229
+ * @param num Value to get number
1230
+ */
1231
+ getNumber = (e) => !e || e === "" ? 0 : typeof e == "number" ? isNaN(e) ? 0 : e : this.getNumber(parseFloat(e.replaceAll(",", "")));
1232
+ /**
1233
+ * Get formatted date in DD/MM/YYYY hh:mm A or DD/MM/YYYY
1234
+ * @param date Date to be formatted
1235
+ * @param emptyValue Value to return if date is empty or null
1236
+ * @param withTime Return date with time
1237
+ */
1238
+ getFormattedDate = (e, a, i, r = "Europe/London") => {
1239
+ if (!e || e === "") return a;
1240
+ const t = typeof e == "string" && /^([0]?[1-9]|[1|2][0-9]|[3][0|1])[./-]([0]?[1-9]|[1][0-2])[./-]([0-9]{4}|[0-9]{2})$/.test(
1241
+ e
1242
+ ) ? Pa(e, "DD/MM/YYYY") : Pa(e);
1243
+ return t.isValid() ? i ? t.tz(r).format("DD/MM/YYYY hh:mm A") : t.format("DD/MM/YYYY") : a;
1244
+ };
1245
+ /**
1246
+ * Get formatted number
1247
+ * @param number Number to format
1248
+ * @param decimalPlaces Number of decimal places
1249
+ * @param withComma Get number with separator
1250
+ * @param useDashForZero Use dash for zero
1251
+ * @param withCurrency Prepend £ before number
1252
+ */
1253
+ getFormattedNumber = (e, a = 2, i = !0, r = !1, t = !1) => {
1254
+ if (isNaN(e) && (e = 0), r && (!e || e === "" || e === 0 || e === "0")) return "-";
1255
+ var o = !1;
1256
+ e < 0 && (o = !0, e = Math.abs(e));
1257
+ var d = parseFloat(e).toFixed(a ?? 2).split("."), u = e;
1258
+ if (d.length >= 1) {
1259
+ u = "";
1260
+ for (var s = d[0].slice(0), l = s.length - 1, g = 1; l >= 0; l--, g++)
1261
+ u = s[l] + u, i && g % 3 === 0 && l > 0 && (u = "," + u);
1262
+ d.length > 1 && (u += "." + d[1]);
1263
+ }
1264
+ return (t ? "£" : "") + (o ? `(${u})` : u);
1265
+ };
1266
+ /**
1267
+ * Get formatted number
1268
+ * @param number Number to format
1269
+ * @param useDashForZero Use dash for zero
1270
+ */
1271
+ getFormattedCurrency = (e, a = !1) => this.getFormattedNumber(e, 2, !0, a, !0);
1272
+ /**
1273
+ * Append zero if number is less then 10
1274
+ * @param num Number to check
1275
+ */
1276
+ appendZero = (e) => e < 10 ? `0${e}` : e;
1277
+ /**
1278
+ * Get formatted time (MM:SS)
1279
+ * @param seconds Seconds - to get time
1280
+ * @param minutes Minutes - to get time
1281
+ */
1282
+ getFormattedTime = (e, a = 0) => {
1283
+ const i = new Date(0, 0, 0, 0, a, e, 0), r = this.appendZero(i.getMinutes()), t = this.appendZero(i.getSeconds());
1284
+ return `${r}:${t}`;
1285
+ };
1286
+ /**
1287
+ * Get formatted time from total seconds
1288
+ * @param seconds Total seconds to calculate hours and minutes
1289
+ * @param ignoreSeconds Skip seconds in output string
1290
+ */
1291
+ getFormattedSeconds = (e, a) => {
1292
+ if (e > 0) {
1293
+ var i = Math.floor(e / 3600);
1294
+ e %= 3600;
1295
+ var r = Math.floor(e / 60);
1296
+ return e = Math.floor(e % 60), `${this.appendZero(i)}:${this.appendZero(r)}` + (a ? "" : `:${this.appendZero(e)}`);
1297
+ }
1298
+ return "-";
1299
+ };
1300
+ /**
1301
+ * Get a property value from local storage
1302
+ * @param {string} Key name to find the value
1303
+ */
1304
+ getLocal = (e) => {
1305
+ const a = localStorage.getItem(e);
1306
+ return a ? JSON.parse(a) : null;
1307
+ };
1308
+ /**
1309
+ * Set a property with value to local storage
1310
+ * @param {string} Key name to find the value
1311
+ * @param {any} data Data/value to be stored
1312
+ */
1313
+ setLocal = (e, a) => {
1314
+ localStorage.setItem(e, a ? JSON.stringify(a, this.jsonReplacer) : "");
1315
+ };
1316
+ /**
1317
+ * Remove a property with value from local storage
1318
+ * @param {string} Key name to find the value
1319
+ */
1320
+ removeLocal = (e) => {
1321
+ localStorage.removeItem(e);
1322
+ };
1323
+ /**
1324
+ * Get a property value from session storage
1325
+ * @param {string} Key name to find the value
1326
+ */
1327
+ getSession = (e) => {
1328
+ const a = sessionStorage.getItem(e);
1329
+ return a ? JSON.parse(a) : null;
1330
+ };
1331
+ /**
1332
+ * Set a property with value to session storage
1333
+ * @param {string} Key name to find the value
1334
+ * @param {any} data Data/value to be stored
1335
+ */
1336
+ setSession = (e, a) => {
1337
+ sessionStorage.setItem(e, a ? JSON.stringify(a, this.jsonReplacer) : "");
1338
+ };
1339
+ jsonReplacer = (e, a) => {
1340
+ if (a !== null && a !== !1)
1341
+ return a;
1342
+ };
1343
+ /**
1344
+ * Get file size in kb/mb/gb etc.
1345
+ * @param {number} size File lenth/size
1346
+ */
1347
+ getFileSize = (e) => {
1348
+ var a = 0, i = "b";
1349
+ if (e > 0) {
1350
+ for (var r = ["tb", "gb", "mb", "kb", "b"], t = 0; t < r.length; t++) {
1351
+ var o = r[t], d = Math.pow(1e3, 4 - t) / 10;
1352
+ if (e >= d) {
1353
+ a = e / Math.pow(1e3, 4 - t), i = o;
1354
+ break;
1355
+ }
1356
+ }
1357
+ a = Math.round(10 * a) / 10;
1358
+ }
1359
+ return `${a} ${i.toUpperCase()}`;
1360
+ };
1361
+ /**
1362
+ * A custom hook that builds on useLocation to parse the query string for you.
1363
+ */
1364
+ useQuery = () => new URLSearchParams(Ua().search);
1365
+ /**
1366
+ * Sum number array
1367
+ * @param {number[]} arr Number array
1368
+ */
1369
+ sumArray = (e) => e.reduce((a, i) => a + i);
1370
+ /**
1371
+ * Get sorted array by property
1372
+ * @param {any[]} arr Array of objects
1373
+ * @param {string} key Property/field name to sort
1374
+ * @returns {any[]}
1375
+ */
1376
+ sortArray(e, a) {
1377
+ return e.sort((i, r) => i[a] < r[a] ? -1 : i[a] > r[a] ? 1 : 0);
1378
+ }
1379
+ /**
1380
+ * Replace an item in array with index
1381
+ * @param arr Array of objects
1382
+ * @param index Index where to replace the item
1383
+ * @param newValue New item to be replaced with
1384
+ * @returns Array of objects
1385
+ */
1386
+ replaceItemAtIndex(e, a, i) {
1387
+ return [...e.slice(0, a), i, ...e.slice(a + 1)];
1388
+ }
1389
+ /**
1390
+ * Remove an item from array with index
1391
+ * @param arr Array of objects
1392
+ * @param index Index which item to be removed
1393
+ * @returns Array of object
1394
+ */
1395
+ removeItemAtIndex(e, a) {
1396
+ return [...e.slice(0, a), ...e.slice(a + 1)];
1397
+ }
1398
+ /**
1399
+ * Capitalize the words of a string
1400
+ * @param {string} value String or value to be capitalized
1401
+ * @param {boolean} lower To lowercase other chars
1402
+ */
1403
+ capitalize = (e, a = !1) => e ? (a ? e.toLowerCase() : e).replace(/(?:^|\s)\S/g, (i) => i.toUpperCase()) : "";
1404
+ /**
1405
+ * Validate current MongoDB ObjectId
1406
+ * @param id Id to check for ObjectId
1407
+ */
1408
+ isValidObjectId = (e) => !!(e && /^[a-fA-F0-9]{24}$/i.test(e));
1409
+ /**
1410
+ * Set a property with value to local storage and then remove imidiatly, it is usefull to send message to all opened tabs
1411
+ * @param {string} Key name to find the value
1412
+ * @param {any} data Data/value to be stored
1413
+ */
1414
+ sendMessageToAllTabs = (e, a) => {
1415
+ const i = {
1416
+ type: e,
1417
+ t: this.TabIdKey,
1418
+ domain: window.location.hostname,
1419
+ ...a
1420
+ };
1421
+ localStorage.setItem($e, JSON.stringify(i)), localStorage.removeItem($e);
1422
+ };
1423
+ /**
1424
+ * Check and get new event message, from event object
1425
+ * @param {StorageEvent} event Event object received in storage event listener
1426
+ */
1427
+ getStorageMessage = (e) => {
1428
+ if (e.key === $e && e.newValue) {
1429
+ const a = JSON.parse(e.newValue);
1430
+ if (a && a.t !== $a.TabIdKey && a.domain === window.location.hostname)
1431
+ return a;
1432
+ }
1433
+ return null;
1434
+ };
1435
+ /**
1436
+ * Assign value to an object by key/path name
1437
+ * @param obj Object to assign value to
1438
+ * @param path key full path
1439
+ * @param val value to be assigned
1440
+ * @param separator Path separator
1441
+ */
1442
+ setNestedKeyValue = (e, a, i, r = ".") => {
1443
+ const t = a.split(r), o = t.pop(), d = t.reduce((u, s) => u[s] = u[s] || {}, e);
1444
+ d[o] = i;
1445
+ };
1446
+ /**
1447
+ * Get comma separated address string
1448
+ * @param address address object to be converted
1449
+ */
1450
+ getAddressString = (e, a = "") => e && [
1451
+ e.building,
1452
+ e.street,
1453
+ e.city,
1454
+ e.county,
1455
+ e.postcode,
1456
+ e.country
1457
+ ].filter((i) => i && i.length > 0).join(", ") || a;
1458
+ /**
1459
+ * Get new random UUID
1460
+ * @returns {string}
1461
+ */
1462
+ uuid = () => {
1463
+ let e = "", a = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx", i = 0, r = Math.random() * 4294967295 | 0;
1464
+ for (; i++ < 36; ) {
1465
+ var t = a[i - 1], o = r & 15, d = t == "x" ? o : o & 3 | 8;
1466
+ e += t == "-" || t == "4" ? t : d.toString(16), r = i % 8 == 0 ? Math.random() * 4294967295 | 0 : r >> 4;
1467
+ }
1468
+ return e;
1469
+ };
1470
+ }
1471
+ const $a = new sn();
1472
+ function jn() {
1473
+ const n = E.useRef(null);
1474
+ return E.useEffect(() => (n.current = !0, () => {
1475
+ n.current = !1;
1476
+ })), n;
1477
+ }
1478
+ const ze = [
1479
+ { name: "Afghanistan", dialCode: "93", code: "AF", code3: "AFG", priority: 0 },
1480
+ { name: "Albania", dialCode: "355", code: "AL", code3: "ALB", priority: 0 },
1481
+ { name: "Algeria", dialCode: "213", code: "DZ", code3: "DZA", priority: 0 },
1482
+ { name: "American Samoa", dialCode: "1684", code: "AS", code3: "ASM", priority: 0 },
1483
+ { name: "Andorra", dialCode: "376", code: "AD", code3: "AND", priority: 0 },
1484
+ { name: "Angola", dialCode: "244", code: "AO", code3: "AGO", priority: 0 },
1485
+ { name: "Anguilla", dialCode: "1264", code: "AI", code3: "AIA", priority: 0 },
1486
+ { name: "Antarctica", dialCode: "672", code: "AQ", code3: "ATA", priority: 0 },
1487
+ { name: "Antigua and Barbuda", dialCode: "1268", code: "AG", code3: "ATG", priority: 0 },
1488
+ { name: "Argentina", dialCode: "54", code: "AR", code3: "ARG", priority: 0 },
1489
+ { name: "Armenia", dialCode: "374", code: "AM", code3: "ARM", priority: 0 },
1490
+ { name: "Aruba", dialCode: "297", code: "AW", code3: "ABW", priority: 0 },
1491
+ { name: "Australia", dialCode: "61", code: "AU", code3: "AUS", priority: 0 },
1492
+ { name: "Austria", dialCode: "43", code: "AT", code3: "AUT", priority: 0 },
1493
+ { name: "Azerbaijan", dialCode: "994", code: "AZ", code3: "AZE", priority: 0 },
1494
+ { name: "Bahamas", dialCode: "1242", code: "BS", code3: "BHS", priority: 0 },
1495
+ { name: "Bahrain", dialCode: "973", code: "BH", code3: "BHR", priority: 0 },
1496
+ { name: "Bangladesh", dialCode: "880", code: "BD", code3: "BGD", priority: 0 },
1497
+ { name: "Barbados", dialCode: "1246", code: "BB", code3: "BRB", priority: 0 },
1498
+ { name: "Belarus", dialCode: "375", code: "BY", code3: "BLR", priority: 0 },
1499
+ { name: "Belgium", dialCode: "32", code: "BE", code3: "BEL", priority: 0 },
1500
+ { name: "Belize", dialCode: "501", code: "BZ", code3: "BLZ", priority: 0 },
1501
+ { name: "Benin", dialCode: "229", code: "BJ", code3: "BEN", priority: 0 },
1502
+ { name: "Bermuda", dialCode: "1441", code: "BM", code3: "BMU", priority: 0 },
1503
+ { name: "Bhutan", dialCode: "975", code: "BT", code3: "BTN", priority: 0 },
1504
+ { name: "Bolivia", dialCode: "591", code: "BO", code3: "BOL", priority: 0 },
1505
+ { name: "Bosnia and Herzegovina", dialCode: "387", code: "BA", code3: "BIH", priority: 0 },
1506
+ { name: "Botswana", dialCode: "267", code: "BW", code3: "BWA", priority: 0 },
1507
+ { name: "Brazil", dialCode: "55", code: "BR", code3: "BRA", priority: 0 },
1508
+ {
1509
+ name: "British Indian Ocean Territory",
1510
+ dialCode: "246",
1511
+ code: "IO",
1512
+ code3: "IOT",
1513
+ priority: 0
1514
+ },
1515
+ { name: "British Virgin Islands", dialCode: "1284", code: "VG", code3: "VGB", priority: 0 },
1516
+ { name: "Brunei", dialCode: "673", code: "BN", code3: "BRN", priority: 0 },
1517
+ { name: "Bulgaria", dialCode: "359", code: "BG", code3: "BGR", priority: 0 },
1518
+ { name: "Burkina Faso", dialCode: "226", code: "BF", code3: "BFA", priority: 0 },
1519
+ { name: "Burundi", dialCode: "257", code: "BI", code3: "BDI", priority: 0 },
1520
+ { name: "Cambodia", dialCode: "855", code: "KH", code3: "KHM", priority: 0 },
1521
+ { name: "Cameroon", dialCode: "237", code: "CM", code3: "CMR", priority: 0 },
1522
+ { name: "Canada", dialCode: "1", code: "CA", code3: "CAN", priority: 1 },
1523
+ { name: "Cape Verde", dialCode: "238", code: "CV", code3: "CPV", priority: 0 },
1524
+ { name: "Cayman Islands", dialCode: "1345", code: "KY", code3: "CYM", priority: 0 },
1525
+ { name: "Central African Republic", dialCode: "236", code: "CF", code3: "CAF", priority: 0 },
1526
+ { name: "Chad", dialCode: "235", code: "TD", code3: "TCD", priority: 0 },
1527
+ { name: "Chile", dialCode: "56", code: "CL", code3: "CHL", priority: 0 },
1528
+ { name: "China", dialCode: "86", code: "CN", code3: "CHN", priority: 0 },
1529
+ { name: "Christmas Island", dialCode: "61", code: "CX", code3: "CXR", priority: 0 },
1530
+ { name: "Cocos Islands", dialCode: "61", code: "CC", code3: "CCK", priority: 0 },
1531
+ { name: "Colombia", dialCode: "57", code: "CO", code3: "COL", priority: 0 },
1532
+ { name: "Comoros", dialCode: "269", code: "KM", code3: "COM", priority: 0 },
1533
+ { name: "Cook Islands", dialCode: "682", code: "CK", code3: "COK", priority: 0 },
1534
+ { name: "Costa Rica", dialCode: "506", code: "CR", code3: "CRI", priority: 0 },
1535
+ { name: "Croatia", dialCode: "385", code: "HR", code3: "HRV", priority: 0 },
1536
+ { name: "Cuba", dialCode: "53", code: "CU", code3: "CUB", priority: 0 },
1537
+ { name: "Curacao", dialCode: "599", code: "CW", code3: "CUW", priority: 0 },
1538
+ { name: "Cyprus", dialCode: "357", code: "CY", code3: "CYP", priority: 0 },
1539
+ { name: "Czech Republic", dialCode: "420", code: "CZ", code3: "CZE", priority: 0 },
1540
+ {
1541
+ name: "Democratic Republic of the Congo",
1542
+ dialCode: "243",
1543
+ code: "CD",
1544
+ code3: "COD",
1545
+ priority: 0
1546
+ },
1547
+ { name: "Denmark", dialCode: "45", code: "DK", code3: "DNK", priority: 0 },
1548
+ { name: "Djibouti", dialCode: "253", code: "DJ", code3: "DJI", priority: 0 },
1549
+ { name: "Dominica", dialCode: "1767", code: "DM", code3: "DMA", priority: 0 },
1550
+ { name: "Dominican Republic", dialCode: "18", code: "DO", code3: "DOM", priority: 1 },
1551
+ //'1809, 1829, 1849'
1552
+ { name: "East Timor", dialCode: "670", code: "TL", code3: "TLS", priority: 0 },
1553
+ { name: "Ecuador", dialCode: "593", code: "EC", code3: "ECU", priority: 0 },
1554
+ { name: "Egypt", dialCode: "20", code: "EG", code3: "EGY", priority: 0 },
1555
+ { name: "England", dialCode: "44", code: "GB", code3: "GBR", priority: 0 },
1556
+ { name: "El Salvador", dialCode: "503", code: "SV", code3: "SLV", priority: 0 },
1557
+ { name: "Equatorial Guinea", dialCode: "240", code: "GQ", code3: "GNQ", priority: 0 },
1558
+ { name: "Eritrea", dialCode: "291", code: "ER", code3: "ERI", priority: 0 },
1559
+ { name: "Estonia", dialCode: "372", code: "EE", code3: "EST", priority: 0 },
1560
+ { name: "Ethiopia", dialCode: "251", code: "ET", code3: "ETH", priority: 0 },
1561
+ { name: "Falkland Islands", dialCode: "500", code: "FK", code3: "FLK", priority: 0 },
1562
+ { name: "Faroe Islands", dialCode: "298", code: "FO", code3: "FRO", priority: 0 },
1563
+ { name: "Fiji", dialCode: "679", code: "FJ", code3: "FJI", priority: 0 },
1564
+ { name: "Finland", dialCode: "358", code: "FI", code3: "FIN", priority: 0 },
1565
+ { name: "France", dialCode: "33", code: "FR", code3: "FRA", priority: 0 },
1566
+ { name: "French Polynesia", dialCode: "689", code: "PF", code3: "PYF", priority: 0 },
1567
+ { name: "Gabon", dialCode: "241", code: "GA", code3: "GAB", priority: 0 },
1568
+ { name: "Gambia", dialCode: "220", code: "GM", code3: "GMB", priority: 0 },
1569
+ { name: "Georgia", dialCode: "995", code: "GE", code3: "GEO", priority: 0 },
1570
+ { name: "Germany", dialCode: "49", code: "DE", code3: "DEU", priority: 0 },
1571
+ { name: "Ghana", dialCode: "233", code: "GH", code3: "GHA", priority: 0 },
1572
+ { name: "Gibraltar", dialCode: "350", code: "GI", code3: "GIB", priority: 0 },
1573
+ { name: "Greece", dialCode: "30", code: "GR", code3: "GRC", priority: 0 },
1574
+ { name: "Greenland", dialCode: "299", code: "GL", code3: "GRL", priority: 0 },
1575
+ { name: "Grenada", dialCode: "1473", code: "GD", code3: "GRD", priority: 0 },
1576
+ { name: "Guam", dialCode: "1671", code: "GU", code3: "GUM", priority: 0 },
1577
+ { name: "Guatemala", dialCode: "502", code: "GT", code3: "GTM", priority: 0 },
1578
+ { name: "Guernsey", dialCode: "441481", code: "GG", code3: "GGY", priority: 0 },
1579
+ { name: "Guinea", dialCode: "224", code: "GN", code3: "GIN", priority: 0 },
1580
+ { name: "GuineaBissau", dialCode: "245", code: "GW", code3: "GNB", priority: 0 },
1581
+ { name: "Guyana", dialCode: "592", code: "GY", code3: "GUY", priority: 0 },
1582
+ { name: "Haiti", dialCode: "509", code: "HT", code3: "HTI", priority: 0 },
1583
+ { name: "Honduras", dialCode: "504", code: "HN", code3: "HND", priority: 0 },
1584
+ { name: "Hong Kong", dialCode: "852", code: "HK", code3: "HKG", priority: 0 },
1585
+ { name: "Hungary", dialCode: "36", code: "HU", code3: "HUN", priority: 0 },
1586
+ { name: "Iceland", dialCode: "354", code: "IS", code3: "ISL", priority: 0 },
1587
+ { name: "India", dialCode: "91", code: "IN", code3: "IND", priority: 0 },
1588
+ { name: "Indonesia", dialCode: "62", code: "ID", code3: "IDN", priority: 0 },
1589
+ { name: "Iran", dialCode: "98", code: "IR", code3: "IRN", priority: 0 },
1590
+ { name: "Iraq", dialCode: "964", code: "IQ", code3: "IRQ", priority: 0 },
1591
+ { name: "Ireland", dialCode: "353", code: "IE", code3: "IRL", priority: 0 },
1592
+ { name: "Isle of Man", dialCode: "441624", code: "IM", code3: "IMN", priority: 0 },
1593
+ { name: "Israel", dialCode: "972", code: "IL", code3: "ISR", priority: 0 },
1594
+ { name: "Italy", dialCode: "39", code: "IT", code3: "ITA", priority: 0 },
1595
+ { name: "Ivory Coast", dialCode: "225", code: "CI", code3: "CIV", priority: 0 },
1596
+ { name: "Jamaica", dialCode: "1876", code: "JM", code3: "JAM", priority: 0 },
1597
+ { name: "Japan", dialCode: "81", code: "JP", code3: "JPN", priority: 0 },
1598
+ { name: "Jersey", dialCode: "441534", code: "JE", code3: "JEY", priority: 0 },
1599
+ { name: "Jordan", dialCode: "962", code: "JO", code3: "JOR", priority: 0 },
1600
+ { name: "Kazakhstan", dialCode: "7", code: "KZ", code3: "KAZ", priority: 1 },
1601
+ { name: "Kenya", dialCode: "254", code: "KE", code3: "KEN", priority: 0 },
1602
+ { name: "Kiribati", dialCode: "686", code: "KI", code3: "KIR", priority: 0 },
1603
+ { name: "Kosovo", dialCode: "383", code: "XK", code3: "XKX", priority: 0 },
1604
+ { name: "Kuwait", dialCode: "965", code: "KW", code3: "KWT", priority: 0 },
1605
+ { name: "Kyrgyzstan", dialCode: "996", code: "KG", code3: "KGZ", priority: 0 },
1606
+ { name: "Laos", dialCode: "856", code: "LA", code3: "LAO", priority: 0 },
1607
+ { name: "Latvia", dialCode: "371", code: "LV", code3: "LVA", priority: 0 },
1608
+ { name: "Lebanon", dialCode: "961", code: "LB", code3: "LBN", priority: 0 },
1609
+ { name: "Lesotho", dialCode: "266", code: "LS", code3: "LSO", priority: 0 },
1610
+ { name: "Liberia", dialCode: "231", code: "LR", code3: "LBR", priority: 0 },
1611
+ { name: "Libya", dialCode: "218", code: "LY", code3: "LBY", priority: 0 },
1612
+ { name: "Liechtenstein", dialCode: "423", code: "LI", code3: "LIE", priority: 0 },
1613
+ { name: "Lithuania", dialCode: "370", code: "LT", code3: "LTU", priority: 0 },
1614
+ { name: "Luxembourg", dialCode: "352", code: "LU", code3: "LUX", priority: 0 },
1615
+ { name: "Macau", dialCode: "853", code: "MO", code3: "MAC", priority: 0 },
1616
+ { name: "Macedonia", dialCode: "389", code: "MK", code3: "MKD", priority: 0 },
1617
+ { name: "Madagascar", dialCode: "261", code: "MG", code3: "MDG", priority: 0 },
1618
+ { name: "Malawi", dialCode: "265", code: "MW", code3: "MWI", priority: 0 },
1619
+ { name: "Malaysia", dialCode: "60", code: "MY", code3: "MYS", priority: 0 },
1620
+ { name: "Maldives", dialCode: "960", code: "MV", code3: "MDV", priority: 0 },
1621
+ { name: "Mali", dialCode: "223", code: "ML", code3: "MLI", priority: 0 },
1622
+ { name: "Malta", dialCode: "356", code: "MT", code3: "MLT", priority: 0 },
1623
+ { name: "Marshall Islands", dialCode: "692", code: "MH", code3: "MHL", priority: 0 },
1624
+ { name: "Mauritania", dialCode: "222", code: "MR", code3: "MRT", priority: 0 },
1625
+ { name: "Mauritius", dialCode: "230", code: "MU", code3: "MUS", priority: 0 },
1626
+ { name: "Mayotte", dialCode: "262", code: "YT", code3: "MYT", priority: 0 },
1627
+ { name: "Mexico", dialCode: "52", code: "MX", code3: "MEX", priority: 0 },
1628
+ { name: "Micronesia", dialCode: "691", code: "FM", code3: "FSM", priority: 0 },
1629
+ { name: "Moldova", dialCode: "373", code: "MD", code3: "MDA", priority: 0 },
1630
+ { name: "Monaco", dialCode: "377", code: "MC", code3: "MCO", priority: 0 },
1631
+ { name: "Mongolia", dialCode: "976", code: "MN", code3: "MNG", priority: 0 },
1632
+ { name: "Montenegro", dialCode: "382", code: "ME", code3: "MNE", priority: 0 },
1633
+ { name: "Montserrat", dialCode: "1664", code: "MS", code3: "MSR", priority: 0 },
1634
+ { name: "Morocco", dialCode: "212", code: "MA", code3: "MAR", priority: 0 },
1635
+ { name: "Mozambique", dialCode: "258", code: "MZ", code3: "MOZ", priority: 0 },
1636
+ { name: "Myanmar", dialCode: "95", code: "MM", code3: "MMR", priority: 0 },
1637
+ { name: "Namibia", dialCode: "264", code: "NA", code3: "NAM", priority: 0 },
1638
+ { name: "Nauru", dialCode: "674", code: "NR", code3: "NRU", priority: 0 },
1639
+ { name: "Nepal", dialCode: "977", code: "NP", code3: "NPL", priority: 0 },
1640
+ { name: "Netherlands", dialCode: "31", code: "NL", code3: "NLD", priority: 0 },
1641
+ { name: "Netherlands Antilles", dialCode: "599", code: "AN", code3: "ANT", priority: 1 },
1642
+ { name: "New Caledonia", dialCode: "687", code: "NC", code3: "NCL", priority: 0 },
1643
+ { name: "New Zealand", dialCode: "64", code: "NZ", code3: "NZL", priority: 0 },
1644
+ { name: "Nicaragua", dialCode: "505", code: "NI", code3: "NIC", priority: 0 },
1645
+ { name: "Niger", dialCode: "227", code: "NE", code3: "NER", priority: 0 },
1646
+ { name: "Nigeria", dialCode: "234", code: "NG", code3: "NGA", priority: 0 },
1647
+ { name: "Niue", dialCode: "683", code: "NU", code3: "NIU", priority: 0 },
1648
+ { name: "North Korea", dialCode: "850", code: "KP", code3: "PRK", priority: 0 },
1649
+ { name: "Northern Mariana Islands", dialCode: "1670", code: "MP", code3: "MNP", priority: 0 },
1650
+ { name: "Northern Ireland", dialCode: "44", code: "GB", code3: "GBR", priority: 0 },
1651
+ { name: "Norway", dialCode: "47", code: "NO", code3: "NOR", priority: 0 },
1652
+ { name: "Oman", dialCode: "968", code: "OM", code3: "OMN", priority: 0 },
1653
+ { name: "Pakistan", dialCode: "92", code: "PK", code3: "PAK", priority: 0 },
1654
+ { name: "Palau", dialCode: "680", code: "PW", code3: "PLW", priority: 0 },
1655
+ { name: "Palestine", dialCode: "970", code: "PS", code3: "PSE", priority: 0 },
1656
+ { name: "Panama", dialCode: "507", code: "PA", code3: "PAN", priority: 0 },
1657
+ { name: "Papua New Guinea", dialCode: "675", code: "PG", code3: "PNG", priority: 0 },
1658
+ { name: "Paraguay", dialCode: "595", code: "PY", code3: "PRY", priority: 0 },
1659
+ { name: "Peru", dialCode: "51", code: "PE", code3: "PER", priority: 0 },
1660
+ { name: "Philippines", dialCode: "63", code: "PH", code3: "PHL", priority: 0 },
1661
+ { name: "Pitcairn", dialCode: "64", code: "PN", code3: "PCN", priority: 0 },
1662
+ { name: "Poland", dialCode: "48", code: "PL", code3: "POL", priority: 0 },
1663
+ { name: "Portugal", dialCode: "351", code: "PT", code3: "PRT", priority: 0 },
1664
+ { name: "Puerto Rico", dialCode: "1", code: "PR", code3: "PRI", priority: 2 },
1665
+ { name: "Qatar", dialCode: "974", code: "QA", code3: "QAT", priority: 0 },
1666
+ { name: "Republic of the Congo", dialCode: "242", code: "CG", code3: "COG", priority: 0 },
1667
+ { name: "Reunion", dialCode: "262", code: "RE", code3: "REU", priority: 0 },
1668
+ { name: "Romania", dialCode: "40", code: "RO", code3: "ROU", priority: 0 },
1669
+ { name: "Russia", dialCode: "7", code: "RU", code3: "RUS", priority: 0 },
1670
+ { name: "Rwanda", dialCode: "250", code: "RW", code3: "RWA", priority: 0 },
1671
+ { name: "Saint Barthelemy", dialCode: "590", code: "BL", code3: "BLM", priority: 0 },
1672
+ { name: "Saint Helena", dialCode: "290", code: "SH", code3: "SHN", priority: 0 },
1673
+ { name: "Saint Kitts and Nevis", dialCode: "1869", code: "KN", code3: "KNA", priority: 0 },
1674
+ { name: "Saint Lucia", dialCode: "1758", code: "LC", code3: "LCA", priority: 0 },
1675
+ { name: "Saint Martin", dialCode: "590", code: "MF", code3: "MAF", priority: 0 },
1676
+ { name: "Saint Pierre and Miquelon", dialCode: "508", code: "PM", code3: "SPM", priority: 0 },
1677
+ {
1678
+ name: "Saint Vincent and the Grenadines",
1679
+ dialCode: "1784",
1680
+ code: "VC",
1681
+ code3: "VCT",
1682
+ priority: 0
1683
+ },
1684
+ { name: "Samoa", dialCode: "685", code: "WS", code3: "WSM", priority: 0 },
1685
+ { name: "San Marino", dialCode: "378", code: "SM", code3: "SMR", priority: 0 },
1686
+ { name: "Sao Tome and Principe", dialCode: "239", code: "ST", code3: "STP", priority: 0 },
1687
+ { name: "Saudi Arabia", dialCode: "966", code: "SA", code3: "SAU", priority: 0 },
1688
+ { name: "Scotland", dialCode: "44", code: "GB", code3: "GBR", priority: 0 },
1689
+ { name: "Senegal", dialCode: "221", code: "SN", code3: "SEN", priority: 0 },
1690
+ { name: "Serbia", dialCode: "381", code: "RS", code3: "SRB", priority: 0 },
1691
+ { name: "Seychelles", dialCode: "248", code: "SC", code3: "SYC", priority: 0 },
1692
+ { name: "Sierra Leone", dialCode: "232", code: "SL", code3: "SLE", priority: 0 },
1693
+ { name: "Singapore", dialCode: "65", code: "SG", code3: "SGP", priority: 0 },
1694
+ { name: "Sint Maarten", dialCode: "1721", code: "SX", code3: "SXM", priority: 0 },
1695
+ { name: "Slovakia", dialCode: "421", code: "SK", code3: "SVK", priority: 0 },
1696
+ { name: "Slovenia", dialCode: "386", code: "SI", code3: "SVN", priority: 0 },
1697
+ { name: "Solomon Islands", dialCode: "677", code: "SB", code3: "SLB", priority: 0 },
1698
+ { name: "Somalia", dialCode: "252", code: "SO", code3: "SOM", priority: 0 },
1699
+ { name: "South Africa", dialCode: "27", code: "ZA", code3: "ZAF", priority: 0 },
1700
+ { name: "South Korea", dialCode: "82", code: "KR", code3: "KOR", priority: 0 },
1701
+ { name: "South Sudan", dialCode: "211", code: "SS", code3: "SSD", priority: 0 },
1702
+ { name: "Spain", dialCode: "34", code: "ES", code3: "ESP", priority: 0 },
1703
+ { name: "Sri Lanka", dialCode: "94", code: "LK", code3: "LKA", priority: 0 },
1704
+ { name: "Sudan", dialCode: "249", code: "SD", code3: "SDN", priority: 0 },
1705
+ { name: "Suriname", dialCode: "597", code: "SR", code3: "SUR", priority: 0 },
1706
+ { name: "Svalbard and Jan Mayen", dialCode: "47", code: "SJ", code3: "SJM", priority: 0 },
1707
+ { name: "Swaziland", dialCode: "268", code: "SZ", code3: "SWZ", priority: 0 },
1708
+ { name: "Sweden", dialCode: "46", code: "SE", code3: "SWE", priority: 0 },
1709
+ { name: "Switzerland", dialCode: "41", code: "CH", code3: "CHE", priority: 0 },
1710
+ { name: "Syria", dialCode: "963", code: "SY", code3: "SYR", priority: 0 },
1711
+ { name: "Taiwan", dialCode: "886", code: "TW", code3: "TWN", priority: 0 },
1712
+ { name: "Tajikistan", dialCode: "992", code: "TJ", code3: "TJK", priority: 0 },
1713
+ { name: "Tanzania", dialCode: "255", code: "TZ", code3: "TZA", priority: 0 },
1714
+ { name: "Thailand", dialCode: "66", code: "TH", code3: "THA", priority: 0 },
1715
+ { name: "Togo", dialCode: "228", code: "TG", code3: "TGO", priority: 0 },
1716
+ { name: "Tokelau", dialCode: "690", code: "TK", code3: "TKL", priority: 0 },
1717
+ { name: "Tonga", dialCode: "676", code: "TO", code3: "TON", priority: 0 },
1718
+ { name: "Trinidad and Tobago", dialCode: "1868", code: "TT", code3: "TTO", priority: 0 },
1719
+ { name: "Tunisia", dialCode: "216", code: "TN", code3: "TUN", priority: 0 },
1720
+ { name: "Turkey", dialCode: "90", code: "TR", code3: "TUR", priority: 0 },
1721
+ { name: "Turkmenistan", dialCode: "993", code: "TM", code3: "TKM", priority: 0 },
1722
+ { name: "Turks and Caicos Islands", dialCode: "1649", code: "TC", code3: "TCA", priority: 0 },
1723
+ { name: "Tuvalu", dialCode: "688", code: "TV", code3: "TUV", priority: 0 },
1724
+ { name: "U.S. Virgin Islands", dialCode: "1340", code: "VI", code3: "VIR", priority: 0 },
1725
+ { name: "Uganda", dialCode: "256", code: "UG", code3: "UGA", priority: 0 },
1726
+ { name: "Ukraine", dialCode: "380", code: "UA", code3: "UKR", priority: 0 },
1727
+ { name: "United Arab Emirates", dialCode: "971", code: "AE", code3: "ARE", priority: 0 },
1728
+ { name: "United Kingdom", dialCode: "44", code: "GB", code3: "GBR", priority: 0 },
1729
+ { name: "United States", dialCode: "1", code: "US", code3: "USA", priority: 0 },
1730
+ { name: "Uruguay", dialCode: "598", code: "UY", code3: "URY", priority: 0 },
1731
+ { name: "Uzbekistan", dialCode: "998", code: "UZ", code3: "UZB", priority: 0 },
1732
+ { name: "Vanuatu", dialCode: "678", code: "VU", code3: "VUT", priority: 0 },
1733
+ { name: "Vatican", dialCode: "39", code: "VA", code3: "VAT", priority: 1 },
1734
+ { name: "Venezuela", dialCode: "58", code: "VE", code3: "VEN", priority: 0 },
1735
+ { name: "Vietnam", dialCode: "84", code: "VN", code3: "VNM", priority: 0 },
1736
+ { name: "Wallis and Futuna", dialCode: "681", code: "WF", code3: "WLF", priority: 0 },
1737
+ { name: "Wales", dialCode: "44", code: "GB", code3: "GBR", priority: 0 },
1738
+ { name: "Western Sahara", dialCode: "212", code: "EH", code3: "ESH", priority: 0 },
1739
+ { name: "Yemen", dialCode: "967", code: "YE", code3: "YEM", priority: 0 },
1740
+ { name: "Zambia", dialCode: "260", code: "ZM", code3: "ZMB", priority: 0 },
1741
+ { name: "Zimbabwe", dialCode: "263", code: "ZW", code3: "ZWE", priority: 0 }
1742
+ ];
1743
+ function cn(n) {
1744
+ return n && n !== "name" ? $a.sortArray(ze, n) : ze;
1745
+ }
1746
+ function Yn() {
1747
+ return cn().map((e) => ({ key: e.name, text: e.name }));
1748
+ }
1749
+ function Un(n) {
1750
+ if (!n || n.trim() === "") return;
1751
+ n = n.substring(0, 6);
1752
+ const e = ze.reduce(
1753
+ (a, i) => Mi(n, i.dialCode) && (i.dialCode.length > a?.dialCode?.length || i.dialCode.length === a.dialCode.length && i.priority < a.priority) ? i : a,
1754
+ { code: "", code3: "", dialCode: "", name: "", priority: 0 }
1755
+ );
1756
+ return e.code ? e : void 0;
1757
+ }
1758
+ class Wn {
1759
+ events;
1760
+ constructor() {
1761
+ this.events = {};
1762
+ }
1763
+ on = (e, a) => {
1764
+ this.events[e] || (this.events[e] = []), this.events[e].push(a);
1765
+ };
1766
+ off = (e, a) => {
1767
+ if (!this.events[e])
1768
+ return;
1769
+ const i = this.events[e].indexOf(a);
1770
+ this.events[e].splice(i, 1);
1771
+ };
1772
+ emit = (e, ...a) => {
1773
+ this.events[e] && this.events[e].forEach((i) => {
1774
+ i && i.apply(null, a);
1775
+ });
1776
+ };
1777
+ }
1778
+ var un = typeof Element < "u", ln = typeof Map == "function", mn = typeof Set == "function", hn = typeof ArrayBuffer == "function" && !!ArrayBuffer.isView;
1779
+ function ce(n, e) {
1780
+ if (n === e) return !0;
1781
+ if (n && e && typeof n == "object" && typeof e == "object") {
1782
+ if (n.constructor !== e.constructor) return !1;
1783
+ let a, i;
1784
+ if (Array.isArray(n)) {
1785
+ if (a = n.length, a != e.length) return !1;
1786
+ for (i = a; i-- !== 0; ) if (!ce(n[i], e[i])) return !1;
1787
+ return !0;
1788
+ }
1789
+ let r;
1790
+ if (ln && n instanceof Map && e instanceof Map) {
1791
+ if (n.size !== e.size) return !1;
1792
+ let o = n.entries();
1793
+ for (; !(i = o.next()).done; ) if (!e.has(i.value[0])) return !1;
1794
+ for (o = n.entries(); !(i = o.next()).done; ) if (!ce(i.value[1], e.get(i.value[0]))) return !1;
1795
+ return !0;
1796
+ }
1797
+ if (mn && n instanceof Set && e instanceof Set) {
1798
+ if (n.size !== e.size) return !1;
1799
+ for (r = n.entries(); !(i = r.next()).done; ) if (!e.has(i.value[0])) return !1;
1800
+ return !0;
1801
+ }
1802
+ if (hn && ArrayBuffer.isView(n) && ArrayBuffer.isView(e)) {
1803
+ if (a = n.length, a != e.length) return !1;
1804
+ for (i = a; i-- !== 0; ) if (n[i] !== e[i]) return !1;
1805
+ return !0;
1806
+ }
1807
+ if (n.constructor === RegExp) return n.source === e.source && n.flags === e.flags;
1808
+ if (n.valueOf !== Object.prototype.valueOf) return n.valueOf() === e.valueOf();
1809
+ if (n.toString !== Object.prototype.toString) return n.toString() === e.toString();
1810
+ const t = Object.keys(n);
1811
+ if (a = t.length, a !== Object.keys(e).length) return !1;
1812
+ for (i = a; i-- !== 0; ) if (!Object.prototype.hasOwnProperty.call(e, t[i])) return !1;
1813
+ if (un && n instanceof Element) return !1;
1814
+ for (i = a; i-- !== 0; )
1815
+ if (!((t[i] === "_owner" || t[i] === "__v" || t[i] === "__o") && n.$$typeof) && !ce(n[t[i]], e[t[i]]))
1816
+ return !1;
1817
+ return !0;
1818
+ }
1819
+ return n !== n && e !== e;
1820
+ }
1821
+ function Jn(n, e) {
1822
+ try {
1823
+ return ce(n, e);
1824
+ } catch (a) {
1825
+ if ((a.message || "").match(/stack|recursion/i))
1826
+ return console.warn("react-fast-compare cannot handle circular refs"), !1;
1827
+ throw a;
1828
+ }
1829
+ }
1830
+ class qn extends Promise {
1831
+ hide;
1832
+ id;
1833
+ //cancel the operation
1834
+ cancel() {
1835
+ this.hide && this.hide();
1836
+ }
1837
+ }
1838
+ const Zn = (n, e, a) => {
1839
+ var i = document.head || document.getElementsByTagName("head")[0], r = document.createElement("script");
1840
+ if (typeof e == "function" && (a = e, e = {}), e = e || {}, a = a || function() {
1841
+ }, r.type = e.type || "text/javascript", r.charset = e.charset || "utf8", r.async = "async" in e ? !!e.async : !0, r.src = n, e.attrs)
1842
+ for (var t in e.attrs)
1843
+ r.setAttribute(t, e.attrs[t]);
1844
+ e.text && (r.text = "" + e.text);
1845
+ var o = "onload" in r ? La : fn;
1846
+ o(r, a), r.onload || La(r, a), i.appendChild(r);
1847
+ };
1848
+ function La(n, e) {
1849
+ n.onload = function() {
1850
+ this.onerror = this.onload = null, e(null, n);
1851
+ }, n.onerror = function() {
1852
+ this.onerror = this.onload = null, e(new Error("Failed to load " + this.src), n);
1853
+ };
1854
+ }
1855
+ function fn(n, e) {
1856
+ n.onreadystatechange = function() {
1857
+ this.readyState !== "complete" && this.readyState !== "loaded" || (this.onreadystatechange = null, e(null, n));
1858
+ };
1859
+ }
1860
+ const _e = {
1861
+ TIMEZONE: "Gov-Client-Timezone",
1862
+ SCREENS_DETAILS: "Gov-Client-Screens",
1863
+ WINDOW_SIZE: "Gov-Client-Window-Size"
1864
+ //BROWSER_PLUGINS: 'Gov-Client-Browser-Plugins',
1865
+ //BROWSER_DONOTTRACK: 'Gov-Client-Browser-Do-Not-Track',
1866
+ //DEVICE_LOCAL_IPS: 'Gov-Client-Local-IPs',
1867
+ //DEVICE_LOCAL_IPS_TIMESTAMP: 'Gov-Client-Local-IPs-Timestamp',
1868
+ //DEVICE_ID: 'Gov-Client-Device-ID',
1869
+ //BROWSER_USER_AGENT: 'Gov-Client-Browser-JS-User-Agent',
1870
+ }, pn = () => {
1871
+ const n = `width=${Da()}&height=${Ea()}&scaling-factor=${Ra()}&colour-depth=${Ia()}`;
1872
+ return encodeURI(n);
1873
+ }, Qn = () => ({
1874
+ width: Da(),
1875
+ height: Ea(),
1876
+ colorDepth: Ia(),
1877
+ scalingFactor: Ra()
1878
+ }), yn = () => {
1879
+ const n = `width=${Ga()}&height=${Oa()}`;
1880
+ return encodeURI(n);
1881
+ }, Xn = () => ({
1882
+ width: Ga(),
1883
+ height: Oa()
1884
+ }), er = async () => {
1885
+ const n = {}, e = [], a = [
1886
+ { header: _e.TIMEZONE, callback: ii },
1887
+ {
1888
+ header: _e.SCREENS_DETAILS,
1889
+ callback: pn
1890
+ },
1891
+ { header: _e.WINDOW_SIZE, callback: yn }
1892
+ // {
1893
+ // header: fraudPreventionHeadersEnum.BROWSER_PLUGINS,
1894
+ // callback: () => encodeURI(getBrowserPluginsAsString()),
1895
+ // },
1896
+ // {
1897
+ // header: fraudPreventionHeadersEnum.BROWSER_DONOTTRACK,
1898
+ // callback: getBrowserDoNotTrackStatus,
1899
+ // },
1900
+ //{ header: fraudPreventionHeadersEnum.DEVICE_ID, callback: generateClientDeviceID},
1901
+ //{ header: fraudPreventionHeadersEnum.BROWSER_USER_AGENT, callback: getUserAgent },
1902
+ ];
1903
+ for (let i = 0; i < a.length; i++)
1904
+ try {
1905
+ const { header: r, callback: t } = a[i];
1906
+ n[r] = t();
1907
+ } catch (r) {
1908
+ e.push({ header: a[i], error: r });
1909
+ }
1910
+ return { headers: n, errors: e };
1911
+ }, gn = [
1912
+ "Afghan",
1913
+ "Albanian",
1914
+ "Algerian",
1915
+ "American Samoan",
1916
+ "Andorran",
1917
+ "Angolan",
1918
+ "Anguillan",
1919
+ "Antarctic",
1920
+ "Antiguan or Barbudan",
1921
+ "Argentine",
1922
+ "Armenian",
1923
+ "Aruban",
1924
+ "Australian",
1925
+ "Austrian",
1926
+ "Azerbaijani",
1927
+ "Bahamian",
1928
+ "Bahraini",
1929
+ "Bangladeshi",
1930
+ "Barbadian",
1931
+ "Belarusian",
1932
+ "Belgian",
1933
+ "Belizean",
1934
+ "Bermudian",
1935
+ "Bhutanese",
1936
+ "Bolivian",
1937
+ "Bosnian or Herzegovinian",
1938
+ "Botswanan",
1939
+ "Brazilian",
1940
+ "British Indian Ocean Territory",
1941
+ "British Virgin Islander",
1942
+ "Bruneian",
1943
+ "Bulgarian",
1944
+ "Burkinabe",
1945
+ "Burundian",
1946
+ "Cambodian",
1947
+ "Cameroonian",
1948
+ "Canadian",
1949
+ "Cape Verdean",
1950
+ "Caymanian",
1951
+ "Central African",
1952
+ "Beninese",
1953
+ "Chadian",
1954
+ "Chilean",
1955
+ "Chinese",
1956
+ "Cocos Islander",
1957
+ "Colombian",
1958
+ "Comoran",
1959
+ "Cook Islander",
1960
+ "Costa Rican",
1961
+ "Croatian",
1962
+ "Cuban",
1963
+ "Curacaoan",
1964
+ "Cypriot",
1965
+ "Czech",
1966
+ "Congolese",
1967
+ "Danish",
1968
+ "Djiboutian",
1969
+ "Dominican (Note: Different from Dominican Republic)",
1970
+ "Dominican",
1971
+ "Timorese or East Timorese",
1972
+ "Ecuadorian",
1973
+ "Egyptian",
1974
+ "Christmas Islander",
1975
+ "Salvadoran",
1976
+ "Equatorial Guinean",
1977
+ "Eritrean",
1978
+ "Ethiopian",
1979
+ "Falkland Islander",
1980
+ "Faroese",
1981
+ "Fijian",
1982
+ "Finnish",
1983
+ "French",
1984
+ "French Polynesian",
1985
+ "Gabonese",
1986
+ "Gambian",
1987
+ "Georgian",
1988
+ "German",
1989
+ "Ghanaian",
1990
+ "Gibraltarian",
1991
+ "Greek",
1992
+ "Greenlandic",
1993
+ "Grenadian",
1994
+ "Guamanian",
1995
+ "Guatemalan",
1996
+ "Estonian",
1997
+ "Guernsey (or Channel Islander)",
1998
+ "Guinean",
1999
+ "Bissau-Guinean",
2000
+ "Haitian",
2001
+ "Honduran",
2002
+ "Hong Konger",
2003
+ "Hungarian",
2004
+ "Icelander",
2005
+ "Indian",
2006
+ "Indonesian",
2007
+ "Iranian",
2008
+ "Iraqi",
2009
+ "Irish",
2010
+ "Manx",
2011
+ "Israeli",
2012
+ "Italian",
2013
+ "Ivorian",
2014
+ "Jamaican",
2015
+ "Japanese",
2016
+ "Jersey (or Channel Islander)",
2017
+ "Jordanian",
2018
+ "Guyanese",
2019
+ "Kazakhstani",
2020
+ "Kenyan",
2021
+ "I-Kiribati",
2022
+ "Kuwaiti",
2023
+ "Kyrgyzstani",
2024
+ "Lao or Laotian",
2025
+ "Latvian",
2026
+ "Lebanese",
2027
+ "Basotho or Lesothan",
2028
+ "Liberian",
2029
+ "Libyan",
2030
+ "Liechtensteiner",
2031
+ "Lithuanian",
2032
+ "Luxembourger",
2033
+ "Macanese",
2034
+ "Macedonian",
2035
+ "Malagasy",
2036
+ "Malawian",
2037
+ "Malaysian",
2038
+ "Maldivian",
2039
+ "Malian",
2040
+ "Kosovar",
2041
+ "Maltese",
2042
+ "Marshallese",
2043
+ "Mauritanian",
2044
+ "Mahoran or Mayotte",
2045
+ "Mexican",
2046
+ "Micronesian",
2047
+ "Moldovan",
2048
+ "Monégasque",
2049
+ "Mongolian",
2050
+ "Montenegrin",
2051
+ "Montserratian",
2052
+ "Moroccan",
2053
+ "Mozambican",
2054
+ "Burmese or Myanmarese",
2055
+ "Namibian",
2056
+ "Nauruan",
2057
+ "Nepali or Nepalese",
2058
+ "Dutch",
2059
+ "Netherlands Antillean",
2060
+ "New Caledonian",
2061
+ "New Zealander",
2062
+ "Mauritian",
2063
+ "Nicaraguan",
2064
+ "Nigerien",
2065
+ "Nigerian",
2066
+ "North Korean",
2067
+ "Northern Marianan",
2068
+ "Norwegian",
2069
+ "Omani",
2070
+ "Pakistani",
2071
+ "Palauan",
2072
+ "Palestinian",
2073
+ "Panamanian",
2074
+ "Papua New Guinean",
2075
+ "Paraguayan",
2076
+ "Peruvian",
2077
+ "Filipino",
2078
+ "Pitcairn Islander",
2079
+ "Polish",
2080
+ "Portuguese",
2081
+ "Puerto Rican",
2082
+ "Qatari",
2083
+ "Congolese",
2084
+ "Niuean",
2085
+ "Réunionese or Réunionnais",
2086
+ "Romanian",
2087
+ "Russian",
2088
+ "Barthélemois or Saint Barthélemy Islander",
2089
+ "Saint Helenian",
2090
+ "Kittitian or Nevisian",
2091
+ "Saint Lucian",
2092
+ "Saint-Martinoise",
2093
+ "Saint-Pierrais or Miquelonnais",
2094
+ "Vincentian or Vincy",
2095
+ "Samoan",
2096
+ "Sammarinese",
2097
+ "São Toméan",
2098
+ "Saudi or Saudi Arabian",
2099
+ "Senegalese",
2100
+ "Serbian",
2101
+ "Seychellois",
2102
+ "Sierra Leonean",
2103
+ "Singaporean",
2104
+ "Sint Maartener or Sint Maartian",
2105
+ "Slovak",
2106
+ "Rwandan",
2107
+ "Slovenian",
2108
+ "Solomon Islander",
2109
+ "Somali",
2110
+ "South Korean",
2111
+ "South Sudanese",
2112
+ "Spanish",
2113
+ "Sri Lankan",
2114
+ "Sudanese",
2115
+ "Surinamese",
2116
+ "Svalbardian or Jan Mayenian",
2117
+ "Swazi",
2118
+ "Swedish",
2119
+ "Swiss",
2120
+ "Syrian",
2121
+ "Taiwanese",
2122
+ "Tajikistani",
2123
+ "Tanzanian",
2124
+ "Thai",
2125
+ "Togolese",
2126
+ "Tokelauan",
2127
+ "Tongan",
2128
+ "South African",
2129
+ "Trinidadian or Tobagonian",
2130
+ "Tunisian",
2131
+ "Turkish",
2132
+ "Turks and Caicos Islander",
2133
+ "Tuvaluan",
2134
+ "Virgin Islander",
2135
+ "Ugandan",
2136
+ "Ukrainian",
2137
+ "Emirati or Emirian",
2138
+ "British",
2139
+ "American",
2140
+ "Uruguayan",
2141
+ "Uzbekistani",
2142
+ "Vanuatuan",
2143
+ "Vatican (or Vatican City)",
2144
+ "Venezuelan",
2145
+ "Vietnamese",
2146
+ "Wallisian or Futunan",
2147
+ "Sahrawi",
2148
+ "Turkmen",
2149
+ "Zambian",
2150
+ "Zimbabwean",
2151
+ "Yemeni"
2152
+ ];
2153
+ function ar() {
2154
+ return gn.map((n) => ({ key: n, text: n }));
2155
+ }
2156
+ var An = /* @__PURE__ */ ((n) => (n[n.placeholder = 0] = "placeholder", n[n.alpha = 1] = "alpha", n[n.beta = 2] = "beta", n[n.release = 3] = "release", n))(An || {});
2157
+ class Sn {
2158
+ hasValidRole = (e, a) => !e || !a ? !0 : e.some((i) => a.includes(i));
2159
+ hasValidPermission = (e, a) => !e || !a ? !0 : e.some((i) => a.includes(i));
2160
+ hasValidRoleOrPermission = (e, a, i, r) => e && a && this.hasValidRole(e, a) ? !0 : e && a && e.length > 0 ? !1 : this.hasValidPermission(i, r);
2161
+ hasValidFeatures = (e, a) => e == null ? !0 : a && e.some((i) => a.includes(i));
2162
+ hasValidBusinessType = (e, a) => e == null || a === void 0 || a === null ? !0 : e?.some((i) => i === a);
2163
+ hasValidUserConfig = (e, a) => e == null || e === null || !a ? !0 : Object.keys(a).some((i) => a[i] && e?.some((r) => r === i));
2164
+ hasValidUserParam = (e, a) => e == null || e === null || !a ? !0 : Object.keys(a).some((i) => a[i] && a[i]?.enabled && e?.some((r) => r === i));
2165
+ hasValidTags = (e, a) => !e || !a ? !0 : Object.keys(a).some((i) => a[i] && e?.some((r) => r === i));
2166
+ isValidLink = (e, a, i, r, t, o, d, u) => !(!this.hasValidRoleOrPermission(e.roles, a, e.permissions, i) || !this.hasValidFeatures(e.features, r) || !this.hasValidUserConfig(e.userConfig, o) || !this.hasValidUserParam(e.userParams, d) || !this.hasValidBusinessType(e.businessTypes, t) || !this.hasValidTags(e.tags, u));
2167
+ getPath = (e, a) => a && e?.url ? e.url.replace(a, "") : e.url;
2168
+ getRoutesFromGroups = (e, a, i, r, t, o, d, u, s, l) => {
2169
+ const g = [];
2170
+ for (const c of e)
2171
+ g.push(
2172
+ this.getRoutesFromGroup(
2173
+ c.links,
2174
+ a,
2175
+ i,
2176
+ r,
2177
+ t,
2178
+ o,
2179
+ d,
2180
+ u,
2181
+ s,
2182
+ l
2183
+ )
2184
+ );
2185
+ return g;
2186
+ };
2187
+ getRoutesFromGroup = (e, a, i, r, t, o, d, u, s, l) => {
2188
+ const g = [];
2189
+ for (const c of e) {
2190
+ if (c.component) {
2191
+ if (!this.isValidLink(c, i, r, t, o, d, u, s)) continue;
2192
+ g.push(
2193
+ c.roles || c.features ? /* @__PURE__ */ D(
2194
+ Z,
2195
+ {
2196
+ path: this.getPath(c, l),
2197
+ element: /* @__PURE__ */ D(a, { component: c.component, roles: c.roles })
2198
+ },
2199
+ c.key
2200
+ ) : /* @__PURE__ */ D(
2201
+ Z,
2202
+ {
2203
+ path: this.getPath(c, l),
2204
+ element: /* @__PURE__ */ D(Ue, { children: c.component })
2205
+ },
2206
+ c.key
2207
+ )
2208
+ );
2209
+ }
2210
+ c.links && g.push(
2211
+ ...this.getRoutesFromGroup(
2212
+ c.links,
2213
+ a,
2214
+ i,
2215
+ r,
2216
+ t,
2217
+ o,
2218
+ d,
2219
+ u,
2220
+ s,
2221
+ l
2222
+ )
2223
+ );
2224
+ }
2225
+ return g;
2226
+ };
2227
+ getLinksFromGroups = (e, a, i, r, t, o, d, u, s, l) => {
2228
+ const g = [];
2229
+ for (const c of e)
2230
+ this.isValidLink(c, a, i, r, t, o, d, l) && (g.push(c), c.links && (c.links = this.getLinksFromGroup(
2231
+ c.links,
2232
+ a,
2233
+ i,
2234
+ r,
2235
+ t,
2236
+ o,
2237
+ d,
2238
+ u,
2239
+ s,
2240
+ l
2241
+ )));
2242
+ return g;
2243
+ };
2244
+ getLinksFromGroup = (e, a, i, r, t, o, d, u, s, l) => {
2245
+ const g = [];
2246
+ for (const c of e) {
2247
+ if (!this.isValidLink(c, a, i, r, t, o, d, l)) continue;
2248
+ let k = c.url, S = c.activeUrl;
2249
+ if (k && s)
2250
+ for (const h in s)
2251
+ k = k?.replace(`:${h}`, s[h]), S && (S = S.replace(`:${h}`, s[h]));
2252
+ c.url = k, c.activeUrl = S, g.push(c), c.links && (u && c.activeUrl && (c.isExpanded = c.url === u || u.indexOf(c.activeUrl) === 0), c.links = this.getLinksFromGroup(
2253
+ c.links,
2254
+ a,
2255
+ i,
2256
+ r,
2257
+ t,
2258
+ o,
2259
+ d,
2260
+ u,
2261
+ s,
2262
+ l
2263
+ ));
2264
+ }
2265
+ return g;
2266
+ };
2267
+ getRoutesFromLinks = (e, a, i, r, t, o, d, u, s, l) => {
2268
+ const g = [];
2269
+ for (const c of e) {
2270
+ if (c.component) {
2271
+ if (!this.isValidLink(c, i, r, t, o, d, u, s)) continue;
2272
+ g.push(
2273
+ c.roles ? /* @__PURE__ */ D(
2274
+ Z,
2275
+ {
2276
+ path: this.getPath(c, l),
2277
+ element: /* @__PURE__ */ D(a, { component: c.component, roles: c.roles })
2278
+ },
2279
+ c.key
2280
+ ) : /* @__PURE__ */ D(
2281
+ Z,
2282
+ {
2283
+ path: this.getPath(c, l) || "#",
2284
+ element: /* @__PURE__ */ D(Ue, { children: c.component })
2285
+ },
2286
+ c.key
2287
+ )
2288
+ );
2289
+ }
2290
+ c.links && g.push(
2291
+ ...this.getRoutesFromLinks(
2292
+ c.links,
2293
+ a,
2294
+ i,
2295
+ r,
2296
+ t,
2297
+ o,
2298
+ d,
2299
+ u,
2300
+ s,
2301
+ l
2302
+ )
2303
+ );
2304
+ }
2305
+ return g;
2306
+ };
2307
+ getLinksFromLinks = (e, a, i, r, t, o, d, u, s, l) => {
2308
+ const g = [];
2309
+ for (const c of e) {
2310
+ if (!this.isValidLink(c, a, i, r, t, o, d, l)) continue;
2311
+ let k = c.url, S = c.activeUrl;
2312
+ if (k && s)
2313
+ for (const h in s)
2314
+ k = k?.replace(`:${h}`, s[h]), S && (S = S.replace(`:${h}`, s[h]));
2315
+ c.url = k, c.activeUrl = S, g.push(c), c.links && (u && c.activeUrl && (c.isExpanded = c.url === u || u.indexOf(c.activeUrl) === 0), c.links = this.getLinksFromLinks(
2316
+ c.links,
2317
+ a,
2318
+ i,
2319
+ r,
2320
+ t,
2321
+ o,
2322
+ d,
2323
+ u,
2324
+ s,
2325
+ l
2326
+ ));
2327
+ }
2328
+ return g;
2329
+ };
2330
+ getSelectedNavKey = (e, a) => {
2331
+ let i;
2332
+ for (const r of e)
2333
+ if (i = r.links.flatMap((t) => t.links ? t.links : [t]).find(
2334
+ (t) => t.url === a || t.activeUrls && t.activeUrls.some((o) => Ye(o, a)) || Ye(t.url, a)
2335
+ ), i) break;
2336
+ return i?.key;
2337
+ };
2338
+ }
2339
+ const ir = new Sn(), Cn = [
2340
+ { id: "Pacific/Midway", name: "Midway", utc: "-11:00" },
2341
+ { id: "Pacific/Niue", name: "Alofi", utc: "-11:00" },
2342
+ { id: "Pacific/Pago_Pago", name: "Pago Pago, Tāfuna, Ta`ū, Taulaga", utc: "-11:00" },
2343
+ { id: "America/Adak", name: "Adak", utc: "-10:00" },
2344
+ {
2345
+ id: "Pacific/Honolulu",
2346
+ name: "Honolulu, East Honolulu, Pearl City, Hilo, Kailua",
2347
+ utc: "-10:00"
2348
+ },
2349
+ { id: "Pacific/Rarotonga", name: "Avarua", utc: "-10:00" },
2350
+ { id: "Pacific/Tahiti", name: "Faaa, Papeete, Punaauia, Pirae, Mahina", utc: "-10:00" },
2351
+ { id: "Pacific/Marquesas", name: "Taiohae", utc: "-09:30" },
2352
+ {
2353
+ id: "America/Anchorage",
2354
+ name: "Anchorage, Fairbanks, Eagle River, Badger, Knik-Fairview",
2355
+ utc: "-09:00"
2356
+ },
2357
+ { id: "America/Juneau", name: "Juneau", utc: "-09:00" },
2358
+ { id: "America/Metlakatla", name: "Metlakatla", utc: "-09:00" },
2359
+ { id: "America/Nome", name: "Nome", utc: "-09:00" },
2360
+ { id: "America/Sitka", name: "Sitka, Ketchikan", utc: "-09:00" },
2361
+ { id: "America/Yakutat", name: "Yakutat", utc: "-09:00" },
2362
+ { id: "Pacific/Gambier", name: "Gambier", utc: "-09:00" },
2363
+ {
2364
+ id: "America/Los_Angeles",
2365
+ name: "Los Angeles, San Diego, San Jose, San Francisco, Seattle",
2366
+ utc: "-08:00"
2367
+ },
2368
+ { id: "America/Tijuana", name: "Tijuana, Mexicali, Ensenada, Rosarito, Tecate", utc: "-08:00" },
2369
+ {
2370
+ id: "America/Vancouver",
2371
+ name: "Vancouver, Surrey, Okanagan, Victoria, Burnaby",
2372
+ utc: "-08:00"
2373
+ },
2374
+ { id: "Pacific/Pitcairn", name: "Adamstown", utc: "-08:00" },
2375
+ { id: "America/Boise", name: "Boise, Meridian, Nampa, Idaho Falls, Pocatello", utc: "-07:00" },
2376
+ { id: "America/Cambridge_Bay", name: "Cambridge Bay", utc: "-07:00" },
2377
+ {
2378
+ id: "America/Chihuahua",
2379
+ name: "Chihuahua, Ciudad Delicias, Cuauhtémoc, Parral, Nuevo Casas Grandes",
2380
+ utc: "-07:00"
2381
+ },
2382
+ { id: "America/Creston", name: "Creston", utc: "-07:00" },
2383
+ { id: "America/Dawson", name: "Dawson", utc: "-07:00" },
2384
+ { id: "America/Dawson_Creek", name: "Fort St. John, Dawson Creek", utc: "-07:00" },
2385
+ {
2386
+ id: "America/Denver",
2387
+ name: "Denver, El Paso, Albuquerque, Colorado Springs, Aurora",
2388
+ utc: "-07:00"
2389
+ },
2390
+ {
2391
+ id: "America/Edmonton",
2392
+ name: "Calgary, Edmonton, Fort McMurray, Red Deer, Lethbridge",
2393
+ utc: "-07:00"
2394
+ },
2395
+ { id: "America/Fort_Nelson", name: "Fort Nelson", utc: "-07:00" },
2396
+ {
2397
+ id: "America/Hermosillo",
2398
+ name: "Hermosillo, Ciudad Obregón, Nogales, San Luis Río Colorado, Navojoa",
2399
+ utc: "-07:00"
2400
+ },
2401
+ { id: "America/Inuvik", name: "Inuvik", utc: "-07:00" },
2402
+ { id: "America/Mazatlan", name: "Culiacán, Mazatlán, Tepic, Los Mochis, La Paz", utc: "-07:00" },
2403
+ { id: "America/Ojinaga", name: "Ciudad Juárez, Manuel Ojinaga, Ojinaga", utc: "-07:00" },
2404
+ { id: "America/Phoenix", name: "Phoenix, Tucson, Mesa, Chandler, Gilbert", utc: "-07:00" },
2405
+ { id: "America/Whitehorse", name: "Whitehorse", utc: "-07:00" },
2406
+ { id: "America/Yellowknife", name: "Yellowknife", utc: "-07:00" },
2407
+ {
2408
+ id: "America/Bahia_Banderas",
2409
+ name: "Mezcales, San Vicente, Bucerías, Valle de Banderas",
2410
+ utc: "-06:00"
2411
+ },
2412
+ {
2413
+ id: "America/Belize",
2414
+ name: "Belize City, San Ignacio, Orange Walk, Belmopan, Dangriga",
2415
+ utc: "-06:00"
2416
+ },
2417
+ { id: "America/Chicago", name: "Chicago, Houston, San Antonio, Dallas, Austin", utc: "-06:00" },
2418
+ {
2419
+ id: "America/Costa_Rica",
2420
+ name: "San José, Limón, San Francisco, Alajuela, Liberia",
2421
+ utc: "-06:00"
2422
+ },
2423
+ {
2424
+ id: "America/El_Salvador",
2425
+ name: "San Salvador, Soyapango, Santa Ana, San Miguel, Mejicanos",
2426
+ utc: "-06:00"
2427
+ },
2428
+ {
2429
+ id: "America/Guatemala",
2430
+ name: "Guatemala City, Mixco, Villa Nueva, Petapa, San Juan Sacatepéquez",
2431
+ utc: "-06:00"
2432
+ },
2433
+ { id: "America/Indiana/Knox", name: "Knox", utc: "-06:00" },
2434
+ { id: "America/Indiana/Tell_City", name: "Tell City", utc: "-06:00" },
2435
+ { id: "America/Managua", name: "Managua, León, Masaya, Chinandega, Matagalpa", utc: "-06:00" },
2436
+ {
2437
+ id: "America/Matamoros",
2438
+ name: "Reynosa, Heroica Matamoros, Nuevo Laredo, Piedras Negras, Ciudad Acuña",
2439
+ utc: "-06:00"
2440
+ },
2441
+ {
2442
+ id: "America/Menominee",
2443
+ name: "Menominee, Iron Mountain, Kingsford, Ironwood, Iron River",
2444
+ utc: "-06:00"
2445
+ },
2446
+ {
2447
+ id: "America/Merida",
2448
+ name: "Mérida, Campeche, Ciudad del Carmen, Kanasín, Valladolid",
2449
+ utc: "-06:00"
2450
+ },
2451
+ {
2452
+ id: "America/Mexico_City",
2453
+ name: "Mexico City, Iztapalapa, Ecatepec de Morelos, Guadalajara, Puebla",
2454
+ utc: "-06:00"
2455
+ },
2456
+ {
2457
+ id: "America/Monterrey",
2458
+ name: "Monterrey, Saltillo, Guadalupe, Torreón, Victoria de Durango",
2459
+ utc: "-06:00"
2460
+ },
2461
+ { id: "America/North_Dakota/Beulah", name: "Beulah", utc: "-06:00" },
2462
+ { id: "America/North_Dakota/Center", name: "Center", utc: "-06:00" },
2463
+ { id: "America/North_Dakota/New_Salem", name: "Mandan", utc: "-06:00" },
2464
+ { id: "America/Rainy_River", name: "Rainy River", utc: "-06:00" },
2465
+ { id: "America/Rankin_Inlet", name: "Rankin Inlet", utc: "-06:00" },
2466
+ {
2467
+ id: "America/Regina",
2468
+ name: "Saskatoon, Regina, Prince Albert, Moose Jaw, North Battleford",
2469
+ utc: "-06:00"
2470
+ },
2471
+ { id: "America/Resolute", name: "Resolute", utc: "-06:00" },
2472
+ { id: "America/Swift_Current", name: "Swift Current", utc: "-06:00" },
2473
+ {
2474
+ id: "America/Tegucigalpa",
2475
+ name: "Tegucigalpa, San Pedro Sula, Choloma, La Ceiba, El Progreso",
2476
+ utc: "-06:00"
2477
+ },
2478
+ {
2479
+ id: "America/Winnipeg",
2480
+ name: "Winnipeg, Brandon, Kenora, Portage la Prairie, Thompson",
2481
+ utc: "-06:00"
2482
+ },
2483
+ { id: "Pacific/Easter", name: "Easter", utc: "-06:00" },
2484
+ { id: "Pacific/Galapagos", name: "Puerto Ayora, Puerto Baquerizo Moreno", utc: "-06:00" },
2485
+ { id: "America/Atikokan", name: "Atikokan", utc: "-05:00" },
2486
+ { id: "America/Bogota", name: "Bogotá, Cali, Medellín, Barranquilla, Cartagena", utc: "-05:00" },
2487
+ {
2488
+ id: "America/Cancun",
2489
+ name: "Cancún, Chetumal, Playa del Carmen, Cozumel, Felipe Carrillo Puerto",
2490
+ utc: "-05:00"
2491
+ },
2492
+ {
2493
+ id: "America/Cayman",
2494
+ name: "George Town, West Bay, Bodden Town, East End, North Side",
2495
+ utc: "-05:00"
2496
+ },
2497
+ {
2498
+ id: "America/Detroit",
2499
+ name: "Detroit, Grand Rapids, Warren, Sterling Heights, Ann Arbor",
2500
+ utc: "-05:00"
2501
+ },
2502
+ { id: "America/Eirunepe", name: "Eirunepé, Benjamin Constant, Envira", utc: "-05:00" },
2503
+ { id: "America/Grand_Turk", name: "Cockburn Town", utc: "-05:00" },
2504
+ {
2505
+ id: "America/Guayaquil",
2506
+ name: "Guayaquil, Quito, Cuenca, Santo Domingo de los Colorados, Machala",
2507
+ utc: "-05:00"
2508
+ },
2509
+ {
2510
+ id: "America/Havana",
2511
+ name: "Havana, Santiago de Cuba, Camagüey, Holguín, Guantánamo",
2512
+ utc: "-05:00"
2513
+ },
2514
+ {
2515
+ id: "America/Indiana/Indianapolis",
2516
+ name: "Indianapolis, Fort Wayne, South Bend, Carmel, Bloomington",
2517
+ utc: "-05:00"
2518
+ },
2519
+ { id: "America/Indiana/Marengo", name: "Marengo", utc: "-05:00" },
2520
+ { id: "America/Indiana/Petersburg", name: "Petersburg", utc: "-05:00" },
2521
+ { id: "America/Indiana/Vevay", name: "Vevay", utc: "-05:00" },
2522
+ {
2523
+ id: "America/Indiana/Vincennes",
2524
+ name: "Vincennes, Jasper, Washington, Huntingburg",
2525
+ utc: "-05:00"
2526
+ },
2527
+ { id: "America/Indiana/Winamac", name: "Winamac", utc: "-05:00" },
2528
+ { id: "America/Iqaluit", name: "Iqaluit", utc: "-05:00" },
2529
+ {
2530
+ id: "America/Jamaica",
2531
+ name: "Kingston, New Kingston, Spanish Town, Portmore, Montego Bay",
2532
+ utc: "-05:00"
2533
+ },
2534
+ {
2535
+ id: "America/Kentucky/Louisville",
2536
+ name: "Louisville, Jeffersonville, New Albany, Jeffersontown, Pleasure Ridge Park",
2537
+ utc: "-05:00"
2538
+ },
2539
+ { id: "America/Kentucky/Monticello", name: "Monticello", utc: "-05:00" },
2540
+ { id: "America/Lima", name: "Lima, Arequipa, Callao, Trujillo, Chiclayo", utc: "-05:00" },
2541
+ {
2542
+ id: "America/Nassau",
2543
+ name: "Nassau, Lucaya, Freeport, West End, Cooper's Town",
2544
+ utc: "-05:00"
2545
+ },
2546
+ {
2547
+ id: "America/New_York",
2548
+ name: "New York City, Brooklyn, Queens, Philadelphia, Manhattan",
2549
+ utc: "-05:00"
2550
+ },
2551
+ { id: "America/Nipigon", name: "Nipigon", utc: "-05:00" },
2552
+ {
2553
+ id: "America/Panama",
2554
+ name: "Panamá, San Miguelito, Juan Díaz, David, Arraiján",
2555
+ utc: "-05:00"
2556
+ },
2557
+ { id: "America/Pangnirtung", name: "Pangnirtung", utc: "-05:00" },
2558
+ {
2559
+ id: "America/Port-au-Prince",
2560
+ name: "Port-au-Prince, Carrefour, Delmas 73, Pétionville, Port-de-Paix",
2561
+ utc: "-05:00"
2562
+ },
2563
+ {
2564
+ id: "America/Rio_Branco",
2565
+ name: "Rio Branco, Cruzeiro do Sul, Sena Madureira, Tarauacá, Feijó",
2566
+ utc: "-05:00"
2567
+ },
2568
+ { id: "America/Thunder_Bay", name: "Thunder Bay", utc: "-05:00" },
2569
+ { id: "America/Toronto", name: "Toronto, Montréal, Ottawa, Mississauga, Québec", utc: "-05:00" },
2570
+ {
2571
+ id: "America/AnguillaSandy Hill",
2572
+ name: "The Valley, Blowing Point Village, Sandy Ground Village, The Quarter, Sandy Hill",
2573
+ utc: "-04:00"
2574
+ },
2575
+ {
2576
+ id: "America/Antigua",
2577
+ name: "Saint John's, Piggotts, Bolands, Codrington, Parham",
2578
+ utc: "-04:00"
2579
+ },
2580
+ {
2581
+ id: "America/Aruba",
2582
+ name: "Oranjestad, Tanki Leendert, San Nicolas, Santa Cruz, Paradera",
2583
+ utc: "-04:00"
2584
+ },
2585
+ {
2586
+ id: "America/Asuncion",
2587
+ name: "Asunción, Ciudad del Este, San Lorenzo, Capiatá, Lambaré",
2588
+ utc: "-04:00"
2589
+ },
2590
+ {
2591
+ id: "America/Barbados",
2592
+ name: "Bridgetown, Speightstown, Oistins, Bathsheba, Holetown",
2593
+ utc: "-04:00"
2594
+ },
2595
+ { id: "America/Blanc-Sablon", name: "Lévis", utc: "-04:00" },
2596
+ { id: "America/Boa_Vista", name: "Boa Vista", utc: "-04:00" },
2597
+ {
2598
+ id: "America/Campo_Grande",
2599
+ name: "Campo Grande, Dourados, Corumbá, Três Lagoas, Ponta Porã",
2600
+ utc: "-04:00"
2601
+ },
2602
+ {
2603
+ id: "America/Caracas",
2604
+ name: "Caracas, Maracaibo, Maracay, Valencia, Barquisimeto",
2605
+ utc: "-04:00"
2606
+ },
2607
+ {
2608
+ id: "America/Cuiaba",
2609
+ name: "Cuiabá, Várzea Grande, Rondonópolis, Sinop, Barra do Garças",
2610
+ utc: "-04:00"
2611
+ },
2612
+ { id: "America/Curacao", name: "Willemstad, Sint Michiel Liber", utc: "-04:00" },
2613
+ {
2614
+ id: "America/Dominica",
2615
+ name: "Roseau, Portsmouth, Berekua, Saint Joseph, Wesley",
2616
+ utc: "-04:00"
2617
+ },
2618
+ { id: "America/Glace_Bay", name: "Sydney, Glace Bay, Sydney Mines", utc: "-04:00" },
2619
+ { id: "America/Goose_Bay", name: "Labrador City, Happy Valley-Goose Bay", utc: "-04:00" },
2620
+ {
2621
+ id: "America/Grenada",
2622
+ name: "Saint George's, Gouyave, Grenville, Victoria, Saint David's",
2623
+ utc: "-04:00"
2624
+ },
2625
+ {
2626
+ id: "America/Guadeloupe",
2627
+ name: "Les Abymes, Baie-Mahault, Le Gosier, Petit-Bourg, Sainte-Anne",
2628
+ utc: "-04:00"
2629
+ },
2630
+ {
2631
+ id: "America/Guyana",
2632
+ name: "Georgetown, Linden, New Amsterdam, Anna Regina, Bartica",
2633
+ utc: "-04:00"
2634
+ },
2635
+ {
2636
+ id: "America/Halifax",
2637
+ name: "Halifax, Dartmouth, Charlottetown, Lower Sackville, Truro",
2638
+ utc: "-04:00"
2639
+ },
2640
+ { id: "America/Kralendijk", name: "Kralendijk, Oranjestad, The Bottom", utc: "-04:00" },
2641
+ {
2642
+ id: "America/La_Paz",
2643
+ name: "Santa Cruz de la Sierra, Cochabamba, La Paz, Sucre, Oruro",
2644
+ utc: "-04:00"
2645
+ },
2646
+ {
2647
+ id: "America/Lower_Princes",
2648
+ name: "Cul de Sac, Lower Prince's Quarter, Koolbaai, Philipsburg",
2649
+ utc: "-04:00"
2650
+ },
2651
+ {
2652
+ id: "America/Manaus",
2653
+ name: "Manaus, Itacoatiara, Parintins, Manacapuru, Coari",
2654
+ utc: "-04:00"
2655
+ },
2656
+ { id: "America/Marigot", name: "Marigot", utc: "-04:00" },
2657
+ {
2658
+ id: "America/Martinique",
2659
+ name: "Fort-de-France, Le Lamentin, Le Robert, Sainte-Marie, Le François",
2660
+ utc: "-04:00"
2661
+ },
2662
+ {
2663
+ id: "America/Moncton",
2664
+ name: "Moncton, Saint John, Fredericton, Dieppe, Miramichi",
2665
+ utc: "-04:00"
2666
+ },
2667
+ { id: "America/Montserrat", name: "Brades, Saint Peters, Plymouth", utc: "-04:00" },
2668
+ {
2669
+ id: "America/Porto_Velho",
2670
+ name: "Porto Velho, Ji Paraná, Vilhena, Ariquemes, Cacoal",
2671
+ utc: "-04:00"
2672
+ },
2673
+ {
2674
+ id: "America/Port_of_Spain",
2675
+ name: "Chaguanas, Mon Repos, San Fernando, Port of Spain, Rio Claro",
2676
+ utc: "-04:00"
2677
+ },
2678
+ { id: "America/Puerto_Rico", name: "San Juan, Bayamón, Carolina, Ponce, Caguas", utc: "-04:00" },
2679
+ {
2680
+ id: "America/Santiago",
2681
+ name: "Santiago, Puente Alto, Antofagasta, Viña del Mar, Valparaíso",
2682
+ utc: "-04:00"
2683
+ },
2684
+ {
2685
+ id: "America/Santo_Domingo",
2686
+ name: "Santo Domingo, Santiago de los Caballeros, Santo Domingo Oeste, Santo Domingo Este, San Pedro de Macorís",
2687
+ utc: "-04:00"
2688
+ },
2689
+ { id: "America/St_Barthelemy", name: "Gustavia", utc: "-04:00" },
2690
+ {
2691
+ id: "America/St_Kitts",
2692
+ name: "Basseterre, Fig Tree, Market Shop, Saint Paul's, Middle Island",
2693
+ utc: "-04:00"
2694
+ },
2695
+ { id: "America/St_Lucia", name: "Castries, Bisee, Vieux Fort, Micoud, Soufrière", utc: "-04:00" },
2696
+ { id: "America/St_Thomas", name: "Saint Croix, Charlotte Amalie, Cruz Bay", utc: "-04:00" },
2697
+ {
2698
+ id: "America/St_Vincent",
2699
+ name: "Kingstown, Kingstown Park, Georgetown, Barrouallie, Port Elizabeth",
2700
+ utc: "-04:00"
2701
+ },
2702
+ { id: "America/Thule", name: "Thule", utc: "-04:00" },
2703
+ { id: "America/Tortola", name: "Road Town", utc: "-04:00" },
2704
+ { id: "Atlantic/Bermuda", name: "Hamilton", utc: "-04:00" },
2705
+ {
2706
+ id: "America/St_Johns",
2707
+ name: "St. John's, Mount Pearl, Corner Brook, Conception Bay South, Bay Roberts",
2708
+ utc: "-03:30"
2709
+ },
2710
+ {
2711
+ id: "America/Araguaina",
2712
+ name: "Palmas, Araguaína, Gurupi, Miracema do Tocantins, Porto Franco",
2713
+ utc: "-03:00"
2714
+ },
2715
+ {
2716
+ id: "America/Argentina/Buenos_Aires",
2717
+ name: "Buenos Aires, La Plata, Mar del Plata, Morón, Bahía Blanca",
2718
+ utc: "-03:00"
2719
+ },
2720
+ {
2721
+ id: "America/Argentina/Catamarca",
2722
+ name: "San Fernando del Valle de Catamarca, Trelew, Puerto Madryn, Esquel, Rawson",
2723
+ utc: "-03:00"
2724
+ },
2725
+ {
2726
+ id: "America/Argentina/Cordoba",
2727
+ name: "Córdoba, Rosario, Santa Fe, Resistencia, Santiago del Estero",
2728
+ utc: "-03:00"
2729
+ },
2730
+ {
2731
+ id: "America/Argentina/Jujuy",
2732
+ name: "San Salvador de Jujuy, San Pedro de Jujuy, Libertador General San Martín, Palpalá, La Quiaca",
2733
+ utc: "-03:00"
2734
+ },
2735
+ {
2736
+ id: "America/Argentina/La_Rioja",
2737
+ name: "La Rioja, Chilecito, Arauco, Chamical",
2738
+ utc: "-03:00"
2739
+ },
2740
+ { id: "America/Argentina/Mendoza", name: "Mendoza, San Rafael, San Martín", utc: "-03:00" },
2741
+ {
2742
+ id: "America/Argentina/Rio_Gallegos",
2743
+ name: "Comodoro Rivadavia, Río Gallegos, Caleta Olivia, Pico Truncado, Puerto Deseado",
2744
+ utc: "-03:00"
2745
+ },
2746
+ {
2747
+ id: "America/Argentina/Salta",
2748
+ name: "Salta, Neuquén, Santa Rosa, San Carlos de Bariloche, Cipolletti",
2749
+ utc: "-03:00"
2750
+ },
2751
+ {
2752
+ id: "America/Argentina/San_Juan",
2753
+ name: "San Juan, Chimbas, Santa Lucía, Pocito, Caucete",
2754
+ utc: "-03:00"
2755
+ },
2756
+ {
2757
+ id: "America/Argentina/San_Luis",
2758
+ name: "San Luis, Villa Mercedes, La Punta, Merlo, Justo Daract",
2759
+ utc: "-03:00"
2760
+ },
2761
+ {
2762
+ id: "America/Argentina/Tucuman",
2763
+ name: "San Miguel de Tucumán, Yerba Buena, Tafí Viejo, Alderetes, Aguilares",
2764
+ utc: "-03:00"
2765
+ },
2766
+ { id: "America/Argentina/Ushuaia", name: "Ushuaia, Río Grande", utc: "-03:00" },
2767
+ {
2768
+ id: "America/Bahia",
2769
+ name: "Salvador, Feira de Santana, Vitória da Conquista, Itabuna, Camaçari",
2770
+ utc: "-03:00"
2771
+ },
2772
+ { id: "America/Belem", name: "Belém, Ananindeua, Macapá, Parauapebas, Marabá", utc: "-03:00" },
2773
+ {
2774
+ id: "America/Cayenne",
2775
+ name: "Cayenne, Matoury, Saint-Laurent-du-Maroni, Kourou, Rémire-Montjoly",
2776
+ utc: "-03:00"
2777
+ },
2778
+ {
2779
+ id: "America/Fortaleza",
2780
+ name: "Fortaleza, São Luís, Natal, Teresina, João Pessoa",
2781
+ utc: "-03:00"
2782
+ },
2783
+ { id: "America/Godthab", name: "Nuuk, Sisimiut, Ilulissat, Qaqortoq, Aasiaat", utc: "-03:00" },
2784
+ {
2785
+ id: "America/Maceio",
2786
+ name: "Maceió, Aracaju, Arapiraca, Nossa Senhora do Socorro, São Cristóvão",
2787
+ utc: "-03:00"
2788
+ },
2789
+ { id: "America/Miquelon", name: "Saint-Pierre, Miquelon", utc: "-03:00" },
2790
+ {
2791
+ id: "America/Montevideo",
2792
+ name: "Montevideo, Salto, Paysandú, Las Piedras, Rivera",
2793
+ utc: "-03:00"
2794
+ },
2795
+ {
2796
+ id: "America/Paramaribo",
2797
+ name: "Paramaribo, Lelydorp, Brokopondo, Nieuw Nickerie, Moengo",
2798
+ utc: "-03:00"
2799
+ },
2800
+ { id: "America/Punta_Arenas", name: "Punta Arenas, Puerto Natales", utc: "-03:00" },
2801
+ {
2802
+ id: "America/Recife",
2803
+ name: "Recife, Jaboatão, Jaboatão dos Guararapes, Olinda, Paulista",
2804
+ utc: "-03:00"
2805
+ },
2806
+ {
2807
+ id: "America/Santarem",
2808
+ name: "Santarém, Altamira, Itaituba, Oriximiná, Alenquer",
2809
+ utc: "-03:00"
2810
+ },
2811
+ {
2812
+ id: "America/Sao_Paulo",
2813
+ name: "São Paulo, Rio de Janeiro, Belo Horizonte, Brasília, Curitiba",
2814
+ utc: "-03:00"
2815
+ },
2816
+ { id: "Antarctica/Palmer", name: "Palmer", utc: "-03:00" },
2817
+ { id: "Antarctica/Rothera", name: "Rothera", utc: "-03:00" },
2818
+ { id: "Atlantic/Stanley", name: "Stanley", utc: "-03:00" },
2819
+ { id: "America/Noronha", name: "Itamaracá", utc: "-02:00" },
2820
+ { id: "Atlantic/South_Georgia", name: "Grytviken", utc: "-02:00" },
2821
+ { id: "America/Scoresbysund", name: "Scoresbysund", utc: "-01:00" },
2822
+ {
2823
+ id: "Atlantic/Azores",
2824
+ name: "Ponta Delgada, Lagoa, Angra do Heroísmo, Rosto de Cão, Rabo de Peixe",
2825
+ utc: "-01:00"
2826
+ },
2827
+ {
2828
+ id: "Atlantic/Cape_Verde",
2829
+ name: "Praia, Mindelo, Santa Maria, Cova Figueira, Santa Cruz",
2830
+ utc: "-01:00"
2831
+ },
2832
+ { id: "Africa/Abidjan", name: "Abidjan, Abobo, Bouaké, Daloa, San-Pédro", utc: "+00:00" },
2833
+ { id: "Africa/Accra", name: "Accra, Kumasi, Tamale, Takoradi, Atsiaman", utc: "+00:00" },
2834
+ { id: "Africa/Bamako", name: "Bamako, Sikasso, Mopti, Koutiala, Ségou", utc: "+00:00" },
2835
+ { id: "Africa/Banjul", name: "Serekunda, Brikama, Bakau, Banjul, Farafenni", utc: "+00:00" },
2836
+ { id: "Africa/Bissau", name: "Bissau, Bafatá, Gabú, Bissorã, Bolama", utc: "+00:00" },
2837
+ { id: "Africa/Casablanca", name: "Casablanca, Rabat, Fès, Sale, Marrakesh", utc: "+00:00" },
2838
+ { id: "Africa/Conakry", name: "Camayenne, Conakry, Nzérékoré, Kindia, Kankan", utc: "+00:00" },
2839
+ { id: "Africa/Dakar", name: "Dakar, Pikine, Touba, Thiès, Thiès Nones", utc: "+00:00" },
2840
+ { id: "Africa/El_Aaiun", name: "Laayoune, Dakhla, Laayoune Plage", utc: "+00:00" },
2841
+ { id: "Africa/Freetown", name: "Freetown, Bo, Kenema, Koidu, Makeni", utc: "+00:00" },
2842
+ { id: "Africa/Lome", name: "Lomé, Sokodé, Kara, Atakpamé, Kpalimé", utc: "+00:00" },
2843
+ { id: "Africa/Monrovia", name: "Monrovia, Gbarnga, Kakata, Bensonville, Harper", utc: "+00:00" },
2844
+ { id: "Africa/Nouakchott", name: "Nouakchott, Nouadhibou, Néma, Kaédi, Rosso", utc: "+00:00" },
2845
+ {
2846
+ id: "Africa/Ouagadougou",
2847
+ name: "Ouagadougou, Bobo-Dioulasso, Koudougou, Ouahigouya, Banfora",
2848
+ utc: "+00:00"
2849
+ },
2850
+ { id: "Africa/Sao_Tome", name: "São Tomé, Santo António", utc: "+00:00" },
2851
+ { id: "America/Danmarkshavn", name: "Danmarkshavn", utc: "+00:00" },
2852
+ { id: "Antarctica/Troll", name: "Troll", utc: "+00:00" },
2853
+ {
2854
+ id: "Atlantic/Canary",
2855
+ name: "Las Palmas de Gran Canaria, Santa Cruz de Tenerife, La Laguna, Telde, Arona",
2856
+ utc: "+00:00"
2857
+ },
2858
+ {
2859
+ id: "Atlantic/Faroe",
2860
+ name: "Tórshavn, Klaksvík, Fuglafjørður, Tvøroyri, Miðvágur",
2861
+ utc: "+00:00"
2862
+ },
2863
+ {
2864
+ id: "Atlantic/Madeira",
2865
+ name: "Funchal, Câmara de Lobos, São Martinho, Caniço, Machico",
2866
+ utc: "+00:00"
2867
+ },
2868
+ {
2869
+ id: "Atlantic/Reykjavik",
2870
+ name: "Reykjavík, Kópavogur, Hafnarfjörður, Akureyri, Garðabær",
2871
+ utc: "+00:00"
2872
+ },
2873
+ {
2874
+ id: "Atlantic/St_Helena",
2875
+ name: "Jamestown, Georgetown, Edinburgh of the Seven Seas",
2876
+ utc: "+00:00"
2877
+ },
2878
+ { id: "Europe/Dublin", name: "Dublin, Cork, Luimneach, Gaillimh, Tallaght", utc: "+00:00" },
2879
+ {
2880
+ id: "Europe/Guernsey",
2881
+ name: "Saint Peter Port, St Martin, Saint Sampson, St Anne, Saint Saviour",
2882
+ utc: "+00:00"
2883
+ },
2884
+ { id: "Europe/Isle_of_Man", name: "Douglas, Ramsey, Peel, Port Erin, Castletown", utc: "+00:00" },
2885
+ { id: "Europe/Jersey", name: "Saint Helier, Le Hocq", utc: "+00:00" },
2886
+ { id: "Europe/Lisbon", name: "Lisbon, Porto, Amadora, Braga, Setúbal", utc: "+00:00" },
2887
+ { id: "Europe/London", name: "London, Birmingham, Liverpool, Sheffield, Bristol", utc: "+00:00" },
2888
+ { id: "Africa/Algiers", name: "Algiers, Boumerdas, Oran, Tébessa, Constantine", utc: "+01:00" },
2889
+ { id: "Africa/Bangui", name: "Bangui, Bimbo, Mbaïki, Berbérati, Kaga Bandoro", utc: "+01:00" },
2890
+ {
2891
+ id: "Africa/Brazzaville",
2892
+ name: "Brazzaville, Pointe-Noire, Dolisie, Kayes, Owando",
2893
+ utc: "+01:00"
2894
+ },
2895
+ { id: "Africa/Ceuta", name: "Ceuta, Melilla", utc: "+01:00" },
2896
+ { id: "Africa/Douala", name: "Douala, Yaoundé, Garoua, Kousséri, Bamenda", utc: "+01:00" },
2897
+ { id: "Africa/Kinshasa", name: "Kinshasa, Masina, Kikwit, Mbandaka, Matadi", utc: "+01:00" },
2898
+ { id: "Africa/Lagos", name: "Lagos, Kano, Ibadan, Kaduna, Port Harcourt", utc: "+01:00" },
2899
+ {
2900
+ id: "Africa/Libreville",
2901
+ name: "Libreville, Port-Gentil, Franceville, Oyem, Moanda",
2902
+ utc: "+01:00"
2903
+ },
2904
+ { id: "Africa/Luanda", name: "Luanda, N'dalatando, Huambo, Lobito, Benguela", utc: "+01:00" },
2905
+ { id: "Africa/Malabo", name: "Bata, Malabo, Ebebiyin, Aconibe, Añisoc", utc: "+01:00" },
2906
+ { id: "Africa/Ndjamena", name: "N'Djamena, Moundou, Sarh, Abéché, Kelo", utc: "+01:00" },
2907
+ { id: "Africa/Niamey", name: "Niamey, Zinder, Maradi, Agadez, Alaghsas", utc: "+01:00" },
2908
+ {
2909
+ id: "Africa/Porto-Novo",
2910
+ name: "Cotonou, Abomey-Calavi, Djougou, Porto-Novo, Parakou",
2911
+ utc: "+01:00"
2912
+ },
2913
+ { id: "Africa/Tunis", name: "Tunis, Sfax, Sousse, Kairouan, Bizerte", utc: "+01:00" },
2914
+ {
2915
+ id: "Africa/Windhoek",
2916
+ name: "Windhoek, Rundu, Walvis Bay, Oshakati, Swakopmund",
2917
+ utc: "+01:00"
2918
+ },
2919
+ { id: "Arctic/Longyearbyen", name: "Longyearbyen, Olonkinbyen", utc: "+01:00" },
2920
+ {
2921
+ id: "Europe/Amsterdam",
2922
+ name: "Amsterdam, Rotterdam, The Hague, Utrecht, Eindhoven",
2923
+ utc: "+01:00"
2924
+ },
2925
+ {
2926
+ id: "Europe/Andorra",
2927
+ name: "Andorra la Vella, les Escaldes, Encamp, Sant Julià de Lòria, la Massana",
2928
+ utc: "+01:00"
2929
+ },
2930
+ { id: "Europe/Belgrade", name: "Belgrade, Pristina, Niš, Novi Sad, Prizren", utc: "+01:00" },
2931
+ { id: "Europe/Berlin", name: "Berlin, Hamburg, Munich, Köln, Frankfurt am Main", utc: "+01:00" },
2932
+ { id: "Europe/Bratislava", name: "Bratislava, Košice, Prešov, Nitra, Žilina", utc: "+01:00" },
2933
+ { id: "Europe/Brussels", name: "Brussels, Antwerpen, Gent, Charleroi, Liège", utc: "+01:00" },
2934
+ { id: "Europe/Budapest", name: "Budapest, Debrecen, Miskolc, Szeged, Pécs", utc: "+01:00" },
2935
+ {
2936
+ id: "Europe/Copenhagen",
2937
+ name: "Copenhagen, Århus, Odense, Aalborg, Frederiksberg",
2938
+ utc: "+01:00"
2939
+ },
2940
+ { id: "Europe/Gibraltar", name: "Gibraltar", utc: "+01:00" },
2941
+ { id: "Europe/Ljubljana", name: "Ljubljana, Maribor, Celje, Kranj, Velenje", utc: "+01:00" },
2942
+ {
2943
+ id: "Europe/Luxembourg",
2944
+ name: "Luxembourg, Esch-sur-Alzette, Dudelange, Schifflange, Bettembourg",
2945
+ utc: "+01:00"
2946
+ },
2947
+ { id: "Europe/Madrid", name: "Madrid, Barcelona, Valencia, Sevilla, Zaragoza", utc: "+01:00" },
2948
+ {
2949
+ id: "Europe/Malta",
2950
+ name: "Birkirkara, Qormi, Mosta, Żabbar, San Pawl il-Baħar",
2951
+ utc: "+01:00"
2952
+ },
2953
+ { id: "Europe/Monaco", name: "Monaco, Monte-Carlo, La Condamine", utc: "+01:00" },
2954
+ { id: "Europe/Oslo", name: "Oslo, Bergen, Trondheim, Stavanger, Drammen", utc: "+01:00" },
2955
+ { id: "Europe/Paris", name: "Paris, Marseille, Lyon, Toulouse, Nice", utc: "+01:00" },
2956
+ {
2957
+ id: "Europe/Podgorica",
2958
+ name: "Podgorica, Nikšić, Herceg Novi, Pljevlja, Budva",
2959
+ utc: "+01:00"
2960
+ },
2961
+ { id: "Europe/Prague", name: "Prague, Brno, Ostrava, Pilsen, Olomouc", utc: "+01:00" },
2962
+ { id: "Europe/Rome", name: "Rome, Milan, Naples, Turin, Palermo", utc: "+01:00" },
2963
+ {
2964
+ id: "Europe/San_Marino",
2965
+ name: "Serravalle, Borgo Maggiore, San Marino, Domagnano, Fiorentino",
2966
+ utc: "+01:00"
2967
+ },
2968
+ { id: "Europe/Sarajevo", name: "Sarajevo, Banja Luka, Zenica, Tuzla, Mostar", utc: "+01:00" },
2969
+ { id: "Europe/Skopje", name: "Skopje, Bitola, Kumanovo, Prilep, Tetovo", utc: "+01:00" },
2970
+ {
2971
+ id: "Europe/Stockholm",
2972
+ name: "Stockholm, Göteborg, Malmö, Uppsala, Sollentuna",
2973
+ utc: "+01:00"
2974
+ },
2975
+ { id: "Europe/Tirane", name: "Tirana, Durrës, Elbasan, Vlorë, Shkodër", utc: "+01:00" },
2976
+ { id: "Europe/Vaduz", name: "Schaan, Vaduz, Triesen, Balzers, Eschen", utc: "+01:00" },
2977
+ { id: "Europe/Vatican", name: "Vatican City", utc: "+01:00" },
2978
+ { id: "Europe/Vienna", name: "Vienna, Graz, Linz, Favoriten, Donaustadt", utc: "+01:00" },
2979
+ { id: "Europe/Warsaw", name: "Warsaw, Łódź, Kraków, Wrocław, Poznań", utc: "+01:00" },
2980
+ { id: "Europe/Zagreb", name: "Zagreb, Split, Rijeka, Osijek, Zadar", utc: "+01:00" },
2981
+ { id: "Europe/Zurich", name: "Zürich, Genève, Basel, Lausanne, Bern", utc: "+01:00" },
2982
+ { id: "Africa/Blantyre", name: "Lilongwe, Blantyre, Mzuzu, Zomba, Kasungu", utc: "+02:00" },
2983
+ { id: "Africa/Bujumbura", name: "Bujumbura, Muyinga, Gitega, Ruyigi, Ngozi", utc: "+02:00" },
2984
+ { id: "Africa/Cairo", name: "Cairo, Alexandria, Giza, Port Said, Suez", utc: "+02:00" },
2985
+ {
2986
+ id: "Africa/Gaborone",
2987
+ name: "Gaborone, Francistown, Molepolole, Selebi-Phikwe, Maun",
2988
+ utc: "+02:00"
2989
+ },
2990
+ { id: "Africa/Harare", name: "Harare, Bulawayo, Chitungwiza, Mutare, Gweru", utc: "+02:00" },
2991
+ {
2992
+ id: "Africa/Johannesburg",
2993
+ name: "Cape Town, Durban, Johannesburg, Soweto, Pretoria",
2994
+ utc: "+02:00"
2995
+ },
2996
+ { id: "Africa/Juba", name: "Juba, Winejok, Malakal, Wau, Kuacjok", utc: "+02:00" },
2997
+ { id: "Africa/Khartoum", name: "Khartoum, Omdurman, Nyala, Port Sudan, Kassala", utc: "+02:00" },
2998
+ { id: "Africa/Kigali", name: "Kigali, Butare, Gitarama, Musanze, Gisenyi", utc: "+02:00" },
2999
+ {
3000
+ id: "Africa/Lubumbashi",
3001
+ name: "Lubumbashi, Mbuji-Mayi, Kisangani, Kananga, Likasi",
3002
+ utc: "+02:00"
3003
+ },
3004
+ { id: "Africa/Lusaka", name: "Lusaka, Kitwe, Ndola, Kabwe, Chingola", utc: "+02:00" },
3005
+ { id: "Africa/Maputo", name: "Maputo, Matola, Beira, Nampula, Chimoio", utc: "+02:00" },
3006
+ { id: "Africa/Maseru", name: "Maseru, Mafeteng, Leribe, Maputsoe, Mohale's Hoek", utc: "+02:00" },
3007
+ { id: "Africa/Mbabane", name: "Manzini, Mbabane, Big Bend, Malkerns, Nhlangano", utc: "+02:00" },
3008
+ { id: "Africa/Tripoli", name: "Tripoli, Benghazi, Mişrātah, Tarhuna, Al Khums", utc: "+02:00" },
3009
+ { id: "Asia/Amman", name: "Amman, Zarqa, Irbid, Russeifa, Wādī as Sīr", utc: "+02:00" },
3010
+ { id: "Asia/Beirut", name: "Beirut, Ra's Bayrūt, Tripoli, Sidon, Tyre", utc: "+02:00" },
3011
+ { id: "Asia/Damascus", name: "Aleppo, Damascus, Homs, Ḩamāh, Latakia", utc: "+02:00" },
3012
+ {
3013
+ id: "Asia/Famagusta",
3014
+ name: "Famagusta, Kyrenia, Protaras, Paralímni, Lápithos",
3015
+ utc: "+02:00"
3016
+ },
3017
+ { id: "Asia/Gaza", name: "Gaza, Khān Yūnis, Jabālyā, Rafaḩ, Dayr al Balaḩ", utc: "+02:00" },
3018
+ { id: "Asia/Hebron", name: "East Jerusalem, Hebron, Nablus, Battir, Ţūlkarm", utc: "+02:00" },
3019
+ {
3020
+ id: "Asia/Jerusalem",
3021
+ name: "Jerusalem, Tel Aviv, West Jerusalem, Haifa, Ashdod",
3022
+ utc: "+02:00"
3023
+ },
3024
+ { id: "Asia/Nicosia", name: "Nicosia, Limassol, Larnaca, Stróvolos, Paphos", utc: "+02:00" },
3025
+ { id: "Europe/Athens", name: "Athens, Thessaloníki, Pátra, Piraeus, Lárisa", utc: "+02:00" },
3026
+ { id: "Europe/Bucharest", name: "Bucharest, Sector 3, Sector 6, Sector 2, Iaşi", utc: "+02:00" },
3027
+ { id: "Europe/Chisinau", name: "Chisinau, Tiraspol, Bălţi, Bender, Rîbniţa", utc: "+02:00" },
3028
+ { id: "Europe/Helsinki", name: "Helsinki, Espoo, Tampere, Vantaa, Turku", utc: "+02:00" },
3029
+ {
3030
+ id: "Europe/Kaliningrad",
3031
+ name: "Kaliningrad, Chernyakhovsk, Sovetsk, Baltiysk, Gusev",
3032
+ utc: "+02:00"
3033
+ },
3034
+ { id: "Europe/Kiev", name: "Kyiv, Kharkiv, Donetsk, Odessa, Dnipro", utc: "+02:00" },
3035
+ { id: "Europe/Mariehamn", name: "Mariehamn", utc: "+02:00" },
3036
+ { id: "Europe/Riga", name: "Riga, Daugavpils, Liepāja, Jelgava, Jūrmala", utc: "+02:00" },
3037
+ { id: "Europe/Sofia", name: "Sofia, Plovdiv, Varna, Burgas, Ruse", utc: "+02:00" },
3038
+ { id: "Europe/Tallinn", name: "Tallinn, Tartu, Narva, Kohtla-Järve, Pärnu", utc: "+02:00" },
3039
+ { id: "Europe/Uzhgorod", name: "Uzhgorod, Mukachevo, Khust, Berehove, Tyachiv", utc: "+02:00" },
3040
+ { id: "Europe/Vilnius", name: "Vilnius, Kaunas, Klaipėda, Šiauliai, Panevėžys", utc: "+02:00" },
3041
+ {
3042
+ id: "Europe/Zaporozhye",
3043
+ name: "Luhansk, Sevastopol, Sievierodonetsk, Alchevsk, Lysychansk",
3044
+ utc: "+02:00"
3045
+ },
3046
+ {
3047
+ id: "Africa/Addis_Ababa",
3048
+ name: "Addis Ababa, Dire Dawa, Mek'ele, Nazrēt, Bahir Dar",
3049
+ utc: "+03:00"
3050
+ },
3051
+ { id: "Africa/Asmara", name: "Asmara, Keren, Massawa, Assab, Mendefera", utc: "+03:00" },
3052
+ {
3053
+ id: "Africa/Dar_es_Salaam",
3054
+ name: "Dar es Salaam, Mwanza, Zanzibar, Arusha, Mbeya",
3055
+ utc: "+03:00"
3056
+ },
3057
+ { id: "Africa/Djibouti", name: "Djibouti, 'Ali Sabieh, Tadjourah, Obock, Dikhil", utc: "+03:00" },
3058
+ { id: "Africa/Kampala", name: "Kampala, Gulu, Lira, Mbarara, Jinja", utc: "+03:00" },
3059
+ { id: "Africa/Mogadishu", name: "Mogadishu, Hargeysa, Berbera, Kismayo, Marka", utc: "+03:00" },
3060
+ { id: "Africa/Nairobi", name: "Nairobi, Mombasa, Nakuru, Eldoret, Kisumu", utc: "+03:00" },
3061
+ { id: "Antarctica/Syowa", name: "Syowa", utc: "+03:00" },
3062
+ { id: "Asia/Aden", name: "Sanaa, Al Ḩudaydah, Taiz, Aden, Mukalla", utc: "+03:00" },
3063
+ {
3064
+ id: "Asia/Baghdad",
3065
+ name: "Baghdad, Basrah, Al Mawşil al Jadīdah, Al Başrah al Qadīmah, Mosul",
3066
+ utc: "+03:00"
3067
+ },
3068
+ {
3069
+ id: "Asia/Bahrain",
3070
+ name: "Manama, Al Muharraq, Ar Rifā', Dār Kulayb, Madīnat Ḩamad",
3071
+ utc: "+03:00"
3072
+ },
3073
+ {
3074
+ id: "Asia/Kuwait",
3075
+ name: "Al Aḩmadī, Ḩawallī, As Sālimīyah, Şabāḩ as Sālim, Al Farwānīyah",
3076
+ utc: "+03:00"
3077
+ },
3078
+ {
3079
+ id: "Asia/Qatar",
3080
+ name: "Doha, Ar Rayyān, Umm Şalāl Muḩammad, Al Wakrah, Al Khawr",
3081
+ utc: "+03:00"
3082
+ },
3083
+ { id: "Asia/Riyadh", name: "Riyadh, Jeddah, Mecca, Medina, Sulţānah", utc: "+03:00" },
3084
+ { id: "Europe/Istanbul", name: "Istanbul, Ankara, İzmir, Bursa, Adana", utc: "+03:00" },
3085
+ {
3086
+ id: "Europe/Kirov",
3087
+ name: "Kirov, Kirovo-Chepetsk, Vyatskiye Polyany, Slobodskoy, Kotel'nich",
3088
+ utc: "+03:00"
3089
+ },
3090
+ { id: "Europe/Minsk", name: "Minsk, Homyel', Mahilyow, Vitebsk, Hrodna", utc: "+03:00" },
3091
+ {
3092
+ id: "Europe/Moscow",
3093
+ name: "Moscow, Saint Petersburg, Nizhniy Novgorod, Kazan, Rostov-na-Donu",
3094
+ utc: "+03:00"
3095
+ },
3096
+ {
3097
+ id: "Europe/Simferopol",
3098
+ name: "Simferopol, Kerch, Yevpatoriya, Yalta, Feodosiya",
3099
+ utc: "+03:00"
3100
+ },
3101
+ {
3102
+ id: "Europe/Volgograd",
3103
+ name: "Volgograd, Volzhskiy, Kamyshin, Mikhaylovka, Uryupinsk",
3104
+ utc: "+03:00"
3105
+ },
3106
+ {
3107
+ id: "Indian/Antananarivo",
3108
+ name: "Antananarivo, Toamasina, Antsirabe, Fianarantsoa, Mahajanga",
3109
+ utc: "+03:00"
3110
+ },
3111
+ { id: "Indian/Comoro", name: "Moroni, Moutsamoudou, Fomboni, Domoni, Tsimbeo", utc: "+03:00" },
3112
+ { id: "Indian/Mayotte", name: "Mamoudzou, Koungou, Dzaoudzi, Dembeni, Sada", utc: "+03:00" },
3113
+ { id: "Asia/Tehran", name: "Tehran, Mashhad, Isfahan, Karaj, Tabriz", utc: "+03:30" },
3114
+ { id: "Asia/Baku", name: "Baku, Ganja, Sumqayıt, Lankaran, Yevlakh", utc: "+04:00" },
3115
+ {
3116
+ id: "Asia/Dubai",
3117
+ name: "Dubai, Sharjah, Abu Dhabi, Ajman City, Ras Al Khaimah City",
3118
+ utc: "+04:00"
3119
+ },
3120
+ { id: "Asia/Muscat", name: "Muscat, Seeb, Şalālah, Bawshar, Sohar", utc: "+04:00" },
3121
+ { id: "Asia/Tbilisi", name: "Tbilisi, Kutaisi, Batumi, Sokhumi, Zugdidi", utc: "+04:00" },
3122
+ { id: "Asia/Yerevan", name: "Yerevan, Gyumri, Vanadzor, Vagharshapat, Hrazdan", utc: "+04:00" },
3123
+ {
3124
+ id: "Europe/Astrakhan",
3125
+ name: "Astrakhan, Akhtubinsk, Znamensk, Kharabali, Kamyzyak",
3126
+ utc: "+04:00"
3127
+ },
3128
+ {
3129
+ id: "Europe/Samara",
3130
+ name: "Samara, Togliatti-on-the-Volga, Izhevsk, Syzran', Novokuybyshevsk",
3131
+ utc: "+04:00"
3132
+ },
3133
+ { id: "Europe/Saratov", name: "Saratov, Balakovo, Engel's, Balashov, Vol'sk", utc: "+04:00" },
3134
+ {
3135
+ id: "Europe/Ulyanovsk",
3136
+ name: "Ulyanovsk, Dimitrovgrad, Inza, Barysh, Novoul'yanovsk",
3137
+ utc: "+04:00"
3138
+ },
3139
+ {
3140
+ id: "Indian/Mahe",
3141
+ name: "Victoria, Anse Boileau, Bel Ombre, Beau Vallon, Cascade",
3142
+ utc: "+04:00"
3143
+ },
3144
+ {
3145
+ id: "Indian/Mauritius",
3146
+ name: "Port Louis, Beau Bassin-Rose Hill, Vacoas, Curepipe, Quatre Bornes",
3147
+ utc: "+04:00"
3148
+ },
3149
+ {
3150
+ id: "Indian/Reunion",
3151
+ name: "Saint-Denis, Saint-Paul, Saint-Pierre, Le Tampon, Saint-André",
3152
+ utc: "+04:00"
3153
+ },
3154
+ { id: "Asia/Kabul", name: "Kabul, Kandahār, Mazār-e Sharīf, Herāt, Jalālābād", utc: "+04:30" },
3155
+ { id: "Antarctica/Mawson", name: "Mawson", utc: "+05:00" },
3156
+ { id: "Asia/Aqtau", name: "Shevchenko, Zhanaozen, Beyneu, Shetpe, Yeraliyev", utc: "+05:00" },
3157
+ { id: "Asia/Aqtobe", name: "Aktobe, Kandyagash, Shalqar, Khromtau, Embi", utc: "+05:00" },
3158
+ { id: "Asia/Ashgabat", name: "Ashgabat, Türkmenabat, Daşoguz, Mary, Balkanabat", utc: "+05:00" },
3159
+ { id: "Asia/Atyrau", name: "Atyrau, Qulsary, Shalkar, Balykshi, Maqat", utc: "+05:00" },
3160
+ { id: "Asia/Dushanbe", name: "Dushanbe, Khujand, Kŭlob, Bokhtar, Istaravshan", utc: "+05:00" },
3161
+ { id: "Asia/Karachi", name: "Karachi, Lahore, Faisalabad, Rawalpindi, Multan", utc: "+05:00" },
3162
+ { id: "Asia/Oral", name: "Oral, Aqsay, Zhänibek, Tasqala, Zhumysker", utc: "+05:00" },
3163
+ { id: "Asia/Qyzylorda", name: "Kyzylorda, Baikonur, Novokazalinsk, Aral, Chiili", utc: "+05:00" },
3164
+ { id: "Asia/Samarkand", name: "Samarkand, Bukhara, Nukus, Qarshi, Jizzax", utc: "+05:00" },
3165
+ { id: "Asia/Tashkent", name: "Tashkent, Namangan, Andijon, Qo'qon, Chirchiq", utc: "+05:00" },
3166
+ {
3167
+ id: "Asia/Yekaterinburg",
3168
+ name: "Yekaterinburg, Chelyabinsk, Ufa, Perm, Orenburg",
3169
+ utc: "+05:00"
3170
+ },
3171
+ { id: "Indian/Kerguelen", name: "Port-aux-Français", utc: "+05:00" },
3172
+ {
3173
+ id: "Indian/Maldives",
3174
+ name: "Male, Fuvahmulah, Hithadhoo, Kulhudhuffushi, Thinadhoo",
3175
+ utc: "+05:00"
3176
+ },
3177
+ {
3178
+ id: "Asia/Colombo",
3179
+ name: "Colombo, Dehiwala-Mount Lavinia, Moratuwa, Jaffna, Negombo",
3180
+ utc: "+05:30"
3181
+ },
3182
+ { id: "Asia/Kolkata", name: "Mumbai, Delhi, Bengaluru, Kolkata, Chennai", utc: "+05:30" },
3183
+ { id: "Asia/Kathmandu", name: "Kathmandu, Pokhara, Pātan, Biratnagar, Birgañj", utc: "+05:45" },
3184
+ { id: "Antarctica/Vostok", name: "Vostok", utc: "+06:00" },
3185
+ { id: "Asia/Almaty", name: "Almaty, Karagandy, Shymkent, Taraz, Nur-Sultan", utc: "+06:00" },
3186
+ { id: "Asia/Bishkek", name: "Bishkek, Osh, Jalal-Abad, Karakol, Tokmok", utc: "+06:00" },
3187
+ { id: "Asia/Dhaka", name: "Dhaka, Chattogram, Khulna, Rājshāhi, Comilla", utc: "+06:00" },
3188
+ { id: "Asia/Omsk", name: "Omsk, Tara, Kalachinsk, Znamenskoye, Tavricheskoye", utc: "+06:00" },
3189
+ { id: "Asia/Qostanay", name: "Kostanay, Rudnyy, Dzhetygara, Arkalyk, Lisakovsk", utc: "+06:00" },
3190
+ {
3191
+ id: "Asia/Thimphu",
3192
+ name: "himphu, Punākha, Tsirang, Phuntsholing, Pemagatshel",
3193
+ utc: "+06:00"
3194
+ },
3195
+ { id: "Asia/Urumqi", name: "Zhongshan, Ürümqi, Zhanjiang, Shihezi, Huocheng", utc: "+06:00" },
3196
+ { id: "Indian/Chagos", name: "British Indian Ocean Territory", utc: "+06:00" },
3197
+ {
3198
+ id: "Asia/Yangon",
3199
+ name: "Yangon, Mandalay, Nay Pyi Taw, Mawlamyine, Kyain Seikgyi Township",
3200
+ utc: "+06:30"
3201
+ },
3202
+ { id: "Indian/Cocos", name: "West Island", utc: "+06:30" },
3203
+ { id: "Antarctica/Davis", name: "Davis", utc: "+07:00" },
3204
+ {
3205
+ id: "Asia/Bangkok",
3206
+ name: "Bangkok, Hanoi, Haiphong, Samut Prakan, Mueang Nonthaburi",
3207
+ utc: "+07:00"
3208
+ },
3209
+ {
3210
+ id: "Asia/Barnaul",
3211
+ name: "Barnaul, Biysk, Rubtsovsk, Novoaltaysk, Gorno-Altaysk",
3212
+ utc: "+07:00"
3213
+ },
3214
+ { id: "Asia/Hovd", name: "Khovd, Ölgii, Ulaangom, Uliastay, Altai", utc: "+07:00" },
3215
+ {
3216
+ id: "Asia/Ho_Chi_Minh",
3217
+ name: "Ho Chi Minh City, Da Nang, Biên Hòa, Nha Trang, Cần Thơ",
3218
+ utc: "+07:00"
3219
+ },
3220
+ { id: "Asia/Jakarta", name: "Jakarta, Surabaya, Medan, Bandung, Bekasi", utc: "+07:00" },
3221
+ { id: "Asia/Krasnoyarsk", name: "Krasnoyarsk, Abakan, Norilsk, Achinsk, Kyzyl", utc: "+07:00" },
3222
+ {
3223
+ id: "Asia/Novokuznetsk",
3224
+ name: "Novokuznetsk, Kemerovo, Prokop'yevsk, Leninsk-Kuznetsky, Kiselëvsk",
3225
+ utc: "+07:00"
3226
+ },
3227
+ {
3228
+ id: "Asia/Novosibirsk",
3229
+ name: "Novosibirsk, Berdsk, Iskitim, Akademgorodok, Kuybyshev",
3230
+ utc: "+07:00"
3231
+ },
3232
+ {
3233
+ id: "Asia/Phnom_Penh",
3234
+ name: "Phnom Penh, Takeo, Sihanoukville, Battambang, Siem Reap",
3235
+ utc: "+07:00"
3236
+ },
3237
+ {
3238
+ id: "Asia/Pontianak",
3239
+ name: "Pontianak, Tanjung Pinang, Palangkaraya, Singkawang, Sampit",
3240
+ utc: "+07:00"
3241
+ },
3242
+ { id: "Asia/Tomsk", name: "Tomsk, Seversk, Strezhevoy, Kolpashevo, Asino", utc: "+07:00" },
3243
+ {
3244
+ id: "Asia/Vientiane",
3245
+ name: "Vientiane, Pakse, Thakhèk, Savannakhet, Luang Prabang",
3246
+ utc: "+07:00"
3247
+ },
3248
+ { id: "Indian/Christmas", name: "Flying Fish Cove", utc: "+07:00" },
3249
+ {
3250
+ id: "Asia/Brunei",
3251
+ name: "Bandar Seri Begawan, Kuala Belait, Seria, Tutong, Bangar",
3252
+ utc: "+08:00"
3253
+ },
3254
+ { id: "Asia/Choibalsan", name: "Baruun-Urt, Choibalsan", utc: "+08:00" },
3255
+ {
3256
+ id: "Asia/Hong_Kong",
3257
+ name: "Hong Kong, Kowloon, Tsuen Wan, Yuen Long Kau Hui, Tung Chung",
3258
+ utc: "+08:00"
3259
+ },
3260
+ { id: "Asia/Irkutsk", name: "Irkutsk, Ulan-Ude, Bratsk, Angarsk, Ust'-Ilimsk", utc: "+08:00" },
3261
+ {
3262
+ id: "Asia/Kuala_Lumpur",
3263
+ name: "Kota Bharu, Kuala Lumpur, Klang, Kampung Baru Subang, Johor Bahru",
3264
+ utc: "+08:00"
3265
+ },
3266
+ { id: "Asia/Kuching", name: "Kuching, Kota Kinabalu, Sandakan, Tawau, Miri", utc: "+08:00" },
3267
+ { id: "Asia/Macau", name: "Macau", utc: "+08:00" },
3268
+ {
3269
+ id: "Asia/Makassar",
3270
+ name: "Makassar, Denpasar, City of Balikpapan, Banjarmasin, Manado",
3271
+ utc: "+08:00"
3272
+ },
3273
+ { id: "Asia/Manila", name: "Quezon City, Manila, Caloocan City, Budta, Davao", utc: "+08:00" },
3274
+ { id: "Asia/Shanghai", name: "Shanghai, Beijing, Tianjin, Guangzhou, Shenzhen", utc: "+08:00" },
3275
+ { id: "Asia/Singapore", name: "Singapore, Woodlands", utc: "+08:00" },
3276
+ { id: "Asia/Taipei", name: "Taipei, Kaohsiung, Taichung, Tainan, Banqiao", utc: "+08:00" },
3277
+ { id: "Asia/Ulaanbaatar", name: "Ulan Bator, Erdenet, Darhan, Hovd, Mörön", utc: "+08:00" },
3278
+ { id: "Australia/Perth", name: "Perth, Rockingham, Mandurah, Bunbury, Albany", utc: "+08:00" },
3279
+ { id: "Australia/Eucla", name: "Eucla", utc: "+08:45" },
3280
+ {
3281
+ id: "Asia/Chita",
3282
+ name: "Chita, Krasnokamensk, Borzya, Petrovsk-Zabaykal'skiy, Aginskoye",
3283
+ utc: "+09:00"
3284
+ },
3285
+ { id: "Asia/Dili", name: "Dili, Maliana, Suai, Likisá, Aileu", utc: "+09:00" },
3286
+ { id: "Asia/Jayapura", name: "Ambon, Jayapura, Sorong, Ternate, Abepura", utc: "+09:00" },
3287
+ { id: "Asia/Khandyga", name: "Khandyga", utc: "+09:00" },
3288
+ { id: "Asia/Pyongyang", name: "Pyongyang, Hamhŭng, Namp'o, Sunch'ŏn, Hŭngnam", utc: "+09:00" },
3289
+ { id: "Asia/Seoul", name: "Seoul, Busan, Incheon, Daegu, Daejeon", utc: "+09:00" },
3290
+ { id: "Asia/Tokyo", name: "Tokyo, Yokohama, Osaka, Nagoya, Sapporo", utc: "+09:00" },
3291
+ {
3292
+ id: "Asia/Yakutsk",
3293
+ name: "Yakutsk, Blagoveshchensk, Belogorsk, Neryungri, Svobodnyy",
3294
+ utc: "+09:00"
3295
+ },
3296
+ {
3297
+ id: "Pacific/Palau",
3298
+ name: "Koror, Koror Town, Kloulklubed, Ulimang, Mengellang",
3299
+ utc: "+09:00"
3300
+ },
3301
+ {
3302
+ id: "Australia/Adelaide",
3303
+ name: "Adelaide, Adelaide Hills, Mount Gambier, Morphett Vale, Gawler",
3304
+ utc: "+09:30"
3305
+ },
3306
+ { id: "Australia/Broken_Hill", name: "Broken Hill", utc: "+09:30" },
3307
+ {
3308
+ id: "Australia/Darwin",
3309
+ name: "Darwin, Alice Springs, Palmerston, Howard Springs",
3310
+ utc: "+09:30"
3311
+ },
3312
+ { id: "Antarctica/DumontDUrville", name: "DumontDUrville", utc: "+10:00" },
3313
+ { id: "Antarctica/Macquarie", name: "Macquarie", utc: "+10:00" },
3314
+ { id: "Asia/Ust-Nera", name: "Ust-Nera", utc: "+10:00" },
3315
+ {
3316
+ id: "Asia/Vladivostok",
3317
+ name: "Vladivostok, Khabarovsk, Khabarovsk Vtoroy, Komsomolsk-on-Amur, Ussuriysk",
3318
+ utc: "+10:00"
3319
+ },
3320
+ {
3321
+ id: "Australia/Brisbane",
3322
+ name: "Brisbane, Gold Coast, Logan City, Townsville, Cairns",
3323
+ utc: "+10:00"
3324
+ },
3325
+ { id: "Australia/Currie", name: "Currie", utc: "+10:00" },
3326
+ {
3327
+ id: "Australia/Hobart",
3328
+ name: "Hobart, Launceston, Burnie, Devonport, Sandy Bay",
3329
+ utc: "+10:00"
3330
+ },
3331
+ { id: "Australia/Lindeman", name: "Lindeman", utc: "+10:00" },
3332
+ {
3333
+ id: "Australia/Melbourne",
3334
+ name: "Melbourne, Geelong, Bendigo, Ballarat, Melbourne City Centre",
3335
+ utc: "+10:00"
3336
+ },
3337
+ {
3338
+ id: "Australia/Sydney",
3339
+ name: "Sydney, Canberra, Newcastle, Wollongong, Maitland",
3340
+ utc: "+10:00"
3341
+ },
3342
+ { id: "Pacific/Chuuk", name: "Weno, Colonia", utc: "+10:00" },
3343
+ {
3344
+ id: "Pacific/GuamVillage",
3345
+ name: "Dededo Village, Yigo Village, Tamuning, Tamuning-Tumon-Harmon Village, Mangilao Village",
3346
+ utc: "+10:00"
3347
+ },
3348
+ {
3349
+ id: "Pacific/Port_Moresby",
3350
+ name: "Port Moresby, Lae, Mount Hagen, Popondetta, Madang",
3351
+ utc: "+10:00"
3352
+ },
3353
+ { id: "Pacific/Saipan", name: "Saipan, San Jose Village", utc: "+10:00" },
3354
+ { id: "Australia/Lord_Howe", name: "Lord Howe", utc: "+10:30" },
3355
+ { id: "Antarctica/Casey", name: "Casey", utc: "+11:00" },
3356
+ { id: "Asia/Magadan", name: "Magadan, Ust-Nera, Susuman, Ola", utc: "+11:00" },
3357
+ {
3358
+ id: "Asia/Sakhalin",
3359
+ name: "Yuzhno-Sakhalinsk, Korsakov, Kholmsk, Okha, Nevel'sk",
3360
+ utc: "+11:00"
3361
+ },
3362
+ { id: "Asia/Srednekolymsk", name: "Srednekolymsk", utc: "+11:00" },
3363
+ { id: "Pacific/Bougainville", name: "Arawa, Buka", utc: "+11:00" },
3364
+ { id: "Pacific/Efate", name: "Port-Vila, Luganville, Isangel, Sola, Lakatoro", utc: "+11:00" },
3365
+ { id: "Pacific/Guadalcanal", name: "Honiara, Malango, Auki, Gizo, Buala", utc: "+11:00" },
3366
+ { id: "Pacific/Kosrae", name: "Tofol", utc: "+11:00" },
3367
+ { id: "Pacific/Norfolk", name: "Kingston", utc: "+11:00" },
3368
+ { id: "Pacific/Noumea", name: "Nouméa, Mont-Dore, Dumbéa, Païta, Wé", utc: "+11:00" },
3369
+ {
3370
+ id: "Pacific/Pohnpei",
3371
+ name: "Kolonia, Kolonia Town, Palikir - National Government Center",
3372
+ utc: "+11:00"
3373
+ },
3374
+ { id: "Antarctica/McMurdo", name: "McMurdo", utc: "+12:00" },
3375
+ { id: "Asia/Anadyr", name: "Anadyr, Bilibino", utc: "+12:00" },
3376
+ {
3377
+ id: "Asia/Kamchatka",
3378
+ name: "Petropavlovsk-Kamchatsky, Yelizovo, Vilyuchinsk, Klyuchi, Mil'kovo",
3379
+ utc: "+12:00"
3380
+ },
3381
+ {
3382
+ id: "Pacific/Auckland",
3383
+ name: "Auckland, Wellington, Christchurch, Manukau City, North Shore",
3384
+ utc: "+12:00"
3385
+ },
3386
+ { id: "Pacific/Fiji", name: "Suva, Lautoka, Nadi, Labasa, Ba", utc: "+12:00" },
3387
+ {
3388
+ id: "Pacific/Funafuti",
3389
+ name: "Funafuti, Savave Village, Tanrake Village, Toga Village, Asau Village",
3390
+ utc: "+12:00"
3391
+ },
3392
+ { id: "Pacific/Kwajalein", name: "Ebaye, Jabat", utc: "+12:00" },
3393
+ { id: "Pacific/Majuro", name: "Majuro, Arno, Jabor, Wotje, Mili", utc: "+12:00" },
3394
+ { id: "Pacific/Nauru", name: "Yaren, Baiti, Anabar, Uaboe, Ijuw", utc: "+12:00" },
3395
+ { id: "Pacific/Tarawa", name: "Tarawa, Betio Village, Bikenibeu Village", utc: "+12:00" },
3396
+ { id: "Pacific/Wake", name: "Wake", utc: "+12:00" },
3397
+ { id: "Pacific/Wallis", name: "Mata-Utu, Leava, Alo", utc: "+12:00" },
3398
+ { id: "Pacific/Chatham", name: "Waitangi", utc: "+12:45" },
3399
+ { id: "Pacific/Apia", name: "Apia, Asau, Mulifanua, Afega, Leulumoega", utc: "+13:00" },
3400
+ { id: "Pacific/Enderbury", name: "Enderbury", utc: "+13:00" },
3401
+ { id: "Pacific/Fakaofo", name: "Atafu Village, Nukunonu, Fale old settlement", utc: "+13:00" },
3402
+ { id: "Pacific/Tongatapu", name: "Nuku'alofa, Lapaha, Neiafu, Pangai, 'Ohonua", utc: "+13:00" },
3403
+ { id: "Pacific/Kiritimati", name: "Kiritimati", utc: "+14:00" }
3404
+ ];
3405
+ function nr() {
3406
+ return Cn.map((n) => ({ key: n.id, text: `(GMT${n.utc}) ${n.name}` }));
3407
+ }
3408
+ export {
3409
+ ze as AllCountries,
3410
+ gn as AllNationalities,
3411
+ Cn as AllTimeZones,
3412
+ xn as ApiUtility,
3413
+ Wn as CustomEventEmitter,
3414
+ An as FeatureStatus,
3415
+ Xa as FileDownloadStatus,
3416
+ qn as HideablePromise,
3417
+ Qa as HttpMethods,
3418
+ Zn as LoadScript,
3419
+ ir as RouteUtils,
3420
+ $e as StorageMessageKey,
3421
+ Ue as SuspenseRoute,
3422
+ $a as Utils,
3423
+ Pa as dayjs,
3424
+ qe as disabledEventPropagation,
3425
+ Jn as fastCompare,
3426
+ _e as fraudPreventionHeadersEnum,
3427
+ Hn as getBrowserDoNotTrackStatus,
3428
+ Fn as getBrowserPluginsAsString,
3429
+ cn as getCountries,
3430
+ Un as getCountryByPhoneNumber,
3431
+ Yn as getCountryOptions,
3432
+ zn as getDeviceLocalIPAsString,
3433
+ er as getFraudPreventionHeaders,
3434
+ ar as getNationalityOptions,
3435
+ Ia as getScreenColourDepth,
3436
+ Qn as getScreenDetails,
3437
+ Ea as getScreenHeight,
3438
+ Ra as getScreenScalingFactor,
3439
+ Da as getScreenWidth,
3440
+ nr as getTimeZoneOptions,
3441
+ ii as getTimezone,
3442
+ Vn as getUserAgent,
3443
+ Oa as getWindowHeight,
3444
+ Ga as getWindowWidth,
3445
+ Nn as isBrowser,
3446
+ qa as isNavigator,
3447
+ $n as resetDeviceIpString,
3448
+ _n as resetDeviceIpTimeStamp,
3449
+ In as useCallbackRef,
3450
+ Gn as useFirstRenderState,
3451
+ Ln as useInfiniteScroll,
3452
+ On as useInterval,
3453
+ jn as useIsMountedRef,
3454
+ Na as useLatestRef,
3455
+ Dn as useNetworkState,
3456
+ En as useShortcuts,
3457
+ Kn as useTimeout,
3458
+ Rn as useUpdateEffect,
3459
+ Xn as windowDetails
3460
+ };
3461
+ //# sourceMappingURL=index.js.map