jodit 4.5.8 → 4.5.11
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/CHANGELOG.md +23 -2
- package/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +2 -2
- package/es2015/jodit.js +76 -29
- package/es2015/jodit.min.js +2 -2
- package/es2015/plugins/debug/debug.css +1 -1
- package/es2015/plugins/debug/debug.js +1 -1
- package/es2015/plugins/debug/debug.min.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2018/jodit.css +1 -1
- package/es2018/jodit.fat.min.js +2 -2
- package/es2018/jodit.js +79 -29
- package/es2018/jodit.min.js +2 -2
- package/es2018/plugins/debug/debug.css +1 -1
- package/es2018/plugins/debug/debug.js +1 -1
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +1 -1
- package/es2021/jodit.fat.min.js +2 -2
- package/es2021/jodit.js +79 -28
- package/es2021/jodit.min.js +2 -2
- package/es2021/plugins/debug/debug.css +1 -1
- package/es2021/plugins/debug/debug.js +1 -1
- package/es2021/plugins/debug/debug.min.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021.en/jodit.css +1 -1
- package/es2021.en/jodit.fat.min.js +2 -2
- package/es2021.en/jodit.js +79 -28
- package/es2021.en/jodit.min.js +2 -2
- package/es2021.en/plugins/debug/debug.css +1 -1
- package/es2021.en/plugins/debug/debug.js +1 -1
- package/es2021.en/plugins/debug/debug.min.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/415.fat.min.js +10 -0
- package/es5/{975.js → 415.js} +604 -604
- package/es5/415.min.js +10 -0
- package/es5/5.fat.min.js +2 -2
- package/es5/5.js +5 -5
- package/es5/5.min.js +2 -2
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +79 -29
- package/es5/jodit.min.css +2 -2
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.css +1 -1
- package/es5/plugins/debug/debug.js +1 -1
- package/es5/plugins/debug/debug.min.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/esm/core/async/async.d.ts +13 -3
- package/esm/core/async/async.js +59 -11
- package/esm/core/constants.js +1 -1
- package/esm/core/dom/lazy-walker.d.ts +4 -3
- package/esm/core/dom/lazy-walker.js +14 -12
- package/esm/types/async.d.ts +6 -0
- package/package.json +1 -1
- package/types/core/async/async.d.ts +13 -3
- package/types/core/dom/lazy-walker.d.ts +4 -3
- package/types/types/async.d.ts +6 -0
- package/es5/975.fat.min.js +0 -10
- package/es5/975.min.js +0 -10
|
@@ -53,9 +53,10 @@ export declare class Async implements IAsync {
|
|
|
53
53
|
* Get Promise status
|
|
54
54
|
*/
|
|
55
55
|
promiseState(p: Promise<any>): Promise<'pending' | 'fulfilled' | 'rejected'>;
|
|
56
|
-
private
|
|
57
|
-
private
|
|
58
|
-
private
|
|
56
|
+
private __requestsIdle;
|
|
57
|
+
private __controllers;
|
|
58
|
+
private __requestsRaf;
|
|
59
|
+
private __requestIdleCallbackNative;
|
|
59
60
|
private __cancelIdleCallbackNative;
|
|
60
61
|
requestIdleCallback(callback: IdleRequestCallback, options?: {
|
|
61
62
|
timeout: number;
|
|
@@ -63,6 +64,15 @@ export declare class Async implements IAsync {
|
|
|
63
64
|
requestIdlePromise(options?: {
|
|
64
65
|
timeout: number;
|
|
65
66
|
}): RejectablePromise<number>;
|
|
67
|
+
/**
|
|
68
|
+
* Try to use scheduler.postTask if it is available https://wicg.github.io/scheduling-apis/
|
|
69
|
+
*/
|
|
70
|
+
schedulerPostTask<T = void>(task: () => T, options?: {
|
|
71
|
+
signal?: AbortSignal;
|
|
72
|
+
delay?: number;
|
|
73
|
+
priority?: 'background' | 'user-blocking' | 'user-visible';
|
|
74
|
+
}): Promise<T>;
|
|
75
|
+
schedulerYield(): Promise<void>;
|
|
66
76
|
cancelIdleCallback(request: number): void;
|
|
67
77
|
requestAnimationFrame(callback: FrameRequestCallback): number;
|
|
68
78
|
cancelAnimationFrame(request: number): void;
|
package/esm/core/async/async.js
CHANGED
|
@@ -21,9 +21,10 @@ export class Async {
|
|
|
21
21
|
this.__callbacks = new Map();
|
|
22
22
|
this.__queueMicrotaskNative = (_a = queueMicrotask === null || queueMicrotask === void 0 ? void 0 : queueMicrotask.bind(window)) !== null && _a !== void 0 ? _a : Promise.resolve().then.bind(Promise.resolve());
|
|
23
23
|
this.promisesRejections = new Set();
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
26
|
-
this.
|
|
24
|
+
this.__requestsIdle = new Set();
|
|
25
|
+
this.__controllers = new Set();
|
|
26
|
+
this.__requestsRaf = new Set();
|
|
27
|
+
this.__requestIdleCallbackNative = (_c = (_b = window['requestIdleCallback']) === null || _b === void 0 ? void 0 : _b.bind(window)) !== null && _c !== void 0 ? _c : ((callback, options) => {
|
|
27
28
|
var _a;
|
|
28
29
|
const start = Date.now();
|
|
29
30
|
return this.setTimeout(() => {
|
|
@@ -252,9 +253,9 @@ export class Async {
|
|
|
252
253
|
const t = {};
|
|
253
254
|
return Promise.race([p, t]).then(v => (v === t ? 'pending' : 'fulfilled'), () => 'rejected');
|
|
254
255
|
}
|
|
255
|
-
requestIdleCallback(callback, options) {
|
|
256
|
-
const request = this.
|
|
257
|
-
this.
|
|
256
|
+
requestIdleCallback(callback, options = { timeout: 100 }) {
|
|
257
|
+
const request = this.__requestIdleCallbackNative(callback, options);
|
|
258
|
+
this.__requestsIdle.add(request);
|
|
258
259
|
return request;
|
|
259
260
|
}
|
|
260
261
|
requestIdlePromise(options) {
|
|
@@ -262,22 +263,69 @@ export class Async {
|
|
|
262
263
|
const request = this.requestIdleCallback(() => res(request), options);
|
|
263
264
|
});
|
|
264
265
|
}
|
|
266
|
+
/**
|
|
267
|
+
* Try to use scheduler.postTask if it is available https://wicg.github.io/scheduling-apis/
|
|
268
|
+
*/
|
|
269
|
+
schedulerPostTask(task, options = {
|
|
270
|
+
delay: 0,
|
|
271
|
+
priority: 'user-visible'
|
|
272
|
+
}) {
|
|
273
|
+
const controller = new AbortController();
|
|
274
|
+
if (options.signal) {
|
|
275
|
+
options.signal.addEventListener('abort', () => controller.abort());
|
|
276
|
+
}
|
|
277
|
+
this.__controllers.add(controller);
|
|
278
|
+
// @ts-ignore
|
|
279
|
+
if (typeof globalThis.scheduler !== 'undefined') {
|
|
280
|
+
const scheduler = globalThis.scheduler;
|
|
281
|
+
const promise = scheduler.postTask(task, {
|
|
282
|
+
...options,
|
|
283
|
+
signal: controller.signal
|
|
284
|
+
});
|
|
285
|
+
promise
|
|
286
|
+
.finally(() => {
|
|
287
|
+
this.__controllers.delete(controller);
|
|
288
|
+
})
|
|
289
|
+
.catch(() => null);
|
|
290
|
+
return promise;
|
|
291
|
+
}
|
|
292
|
+
return this.promise((resolve, reject) => {
|
|
293
|
+
const timeout = this.setTimeout(() => {
|
|
294
|
+
try {
|
|
295
|
+
resolve(task());
|
|
296
|
+
}
|
|
297
|
+
catch (e) {
|
|
298
|
+
reject(e);
|
|
299
|
+
}
|
|
300
|
+
this.__controllers.delete(controller);
|
|
301
|
+
}, options.delay || 1);
|
|
302
|
+
controller.signal.addEventListener('abort', () => {
|
|
303
|
+
this.clearTimeout(timeout);
|
|
304
|
+
this.__controllers.delete(controller);
|
|
305
|
+
reject(abort());
|
|
306
|
+
});
|
|
307
|
+
});
|
|
308
|
+
}
|
|
309
|
+
schedulerYield() {
|
|
310
|
+
return this.schedulerPostTask(() => { }, { priority: 'user-visible' });
|
|
311
|
+
}
|
|
265
312
|
cancelIdleCallback(request) {
|
|
266
|
-
this.
|
|
313
|
+
this.__requestsIdle.delete(request);
|
|
267
314
|
return this.__cancelIdleCallbackNative(request);
|
|
268
315
|
}
|
|
269
316
|
requestAnimationFrame(callback) {
|
|
270
317
|
const request = requestAnimationFrame(callback);
|
|
271
|
-
this.
|
|
318
|
+
this.__requestsRaf.add(request);
|
|
272
319
|
return request;
|
|
273
320
|
}
|
|
274
321
|
cancelAnimationFrame(request) {
|
|
275
|
-
this.
|
|
322
|
+
this.__requestsRaf.delete(request);
|
|
276
323
|
cancelAnimationFrame(request);
|
|
277
324
|
}
|
|
278
325
|
clear() {
|
|
279
|
-
this.
|
|
280
|
-
this.
|
|
326
|
+
this.__requestsIdle.forEach(key => this.cancelIdleCallback(key));
|
|
327
|
+
this.__requestsRaf.forEach(key => this.cancelAnimationFrame(key));
|
|
328
|
+
this.__controllers.forEach(controller => controller.abort());
|
|
281
329
|
this.timers.forEach(key => clearTimeout(this.timers.get(key)));
|
|
282
330
|
this.timers.clear();
|
|
283
331
|
this.promisesRejections.forEach(reject => reject());
|
package/esm/core/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4
4
|
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5
5
|
*/
|
|
6
|
-
export const APP_VERSION = "4.5.
|
|
6
|
+
export const APP_VERSION = "4.5.11";
|
|
7
7
|
// prettier-ignore
|
|
8
8
|
export const ES = "es2020";
|
|
9
9
|
export const IS_ES_MODERN = true;
|
|
@@ -21,17 +21,18 @@ export declare class LazyWalker extends Eventify<{
|
|
|
21
21
|
private isWorked;
|
|
22
22
|
private isFinished;
|
|
23
23
|
constructor(async: IAsync, options?: {
|
|
24
|
-
readonly timeout?: number;
|
|
25
24
|
readonly whatToShow?: number;
|
|
26
25
|
readonly reverse?: boolean;
|
|
27
26
|
readonly timeoutChunkSize?: number;
|
|
27
|
+
readonly timeout?: number;
|
|
28
28
|
});
|
|
29
29
|
private idleId;
|
|
30
|
-
private
|
|
30
|
+
private __schedulerController;
|
|
31
|
+
private _requestStarting;
|
|
31
32
|
break(reason?: string): void;
|
|
32
33
|
end(): void;
|
|
33
34
|
private stop;
|
|
34
35
|
destruct(): void;
|
|
35
|
-
private
|
|
36
|
+
private __workPerform;
|
|
36
37
|
private visitNode;
|
|
37
38
|
}
|
|
@@ -23,7 +23,7 @@ export class LazyWalker extends Eventify {
|
|
|
23
23
|
}
|
|
24
24
|
this.workNodes = Dom.eachGen(root, !this.options.reverse);
|
|
25
25
|
this.isFinished = false;
|
|
26
|
-
this.
|
|
26
|
+
this._requestStarting();
|
|
27
27
|
return this;
|
|
28
28
|
}
|
|
29
29
|
constructor(async, options = {}) {
|
|
@@ -35,12 +35,16 @@ export class LazyWalker extends Eventify {
|
|
|
35
35
|
this.isWorked = false;
|
|
36
36
|
this.isFinished = false;
|
|
37
37
|
this.idleId = 0;
|
|
38
|
+
this.__schedulerController = null;
|
|
38
39
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
this.
|
|
42
|
-
|
|
43
|
-
|
|
40
|
+
_requestStarting() {
|
|
41
|
+
this.__schedulerController = new AbortController();
|
|
42
|
+
this.async
|
|
43
|
+
.schedulerPostTask(this.__workPerform, {
|
|
44
|
+
delay: this.options.timeout,
|
|
45
|
+
signal: this.__schedulerController.signal
|
|
46
|
+
})
|
|
47
|
+
.catch(() => null);
|
|
44
48
|
}
|
|
45
49
|
break(reason) {
|
|
46
50
|
if (this.isWorked) {
|
|
@@ -65,15 +69,13 @@ export class LazyWalker extends Eventify {
|
|
|
65
69
|
super.destruct();
|
|
66
70
|
this.stop();
|
|
67
71
|
}
|
|
68
|
-
|
|
72
|
+
__workPerform() {
|
|
69
73
|
var _a;
|
|
70
74
|
if (this.workNodes) {
|
|
71
75
|
this.isWorked = true;
|
|
72
76
|
let count = 0;
|
|
73
77
|
const chunkSize = (_a = this.options.timeoutChunkSize) !== null && _a !== void 0 ? _a : 50;
|
|
74
|
-
while (!this.isFinished &&
|
|
75
|
-
(deadline.timeRemaining() > 0 ||
|
|
76
|
-
(deadline.didTimeout && count <= chunkSize))) {
|
|
78
|
+
while (!this.isFinished && count <= chunkSize) {
|
|
77
79
|
const item = this.workNodes.next();
|
|
78
80
|
count += 1;
|
|
79
81
|
if (this.visitNode(item.value)) {
|
|
@@ -89,7 +91,7 @@ export class LazyWalker extends Eventify {
|
|
|
89
91
|
this.end();
|
|
90
92
|
}
|
|
91
93
|
if (!this.isFinished) {
|
|
92
|
-
this.
|
|
94
|
+
this._requestStarting();
|
|
93
95
|
}
|
|
94
96
|
}
|
|
95
97
|
visitNode(nodeElm) {
|
|
@@ -104,4 +106,4 @@ export class LazyWalker extends Eventify {
|
|
|
104
106
|
}
|
|
105
107
|
__decorate([
|
|
106
108
|
autobind
|
|
107
|
-
], LazyWalker.prototype, "
|
|
109
|
+
], LazyWalker.prototype, "__workPerform", null);
|
package/esm/types/async.d.ts
CHANGED
|
@@ -38,6 +38,12 @@ export interface IAsync extends IDestructible {
|
|
|
38
38
|
timeout: number;
|
|
39
39
|
}): RejectablePromise<number>;
|
|
40
40
|
cancelIdleCallback(request: number): void;
|
|
41
|
+
schedulerPostTask<T = void>(task: () => T, options: {
|
|
42
|
+
delay?: number;
|
|
43
|
+
priority?: 'background' | 'user-blocking' | 'user-visible';
|
|
44
|
+
signal?: AbortSignal;
|
|
45
|
+
}): Promise<T>;
|
|
46
|
+
schedulerYield(): Promise<void>;
|
|
41
47
|
/**
|
|
42
48
|
* Smart wrapper for `requestAnimationFrame`
|
|
43
49
|
*/
|
package/package.json
CHANGED
|
@@ -53,9 +53,10 @@ export declare class Async implements IAsync {
|
|
|
53
53
|
* Get Promise status
|
|
54
54
|
*/
|
|
55
55
|
promiseState(p: Promise<any>): Promise<'pending' | 'fulfilled' | 'rejected'>;
|
|
56
|
-
private
|
|
57
|
-
private
|
|
58
|
-
private
|
|
56
|
+
private __requestsIdle;
|
|
57
|
+
private __controllers;
|
|
58
|
+
private __requestsRaf;
|
|
59
|
+
private __requestIdleCallbackNative;
|
|
59
60
|
private __cancelIdleCallbackNative;
|
|
60
61
|
requestIdleCallback(callback: IdleRequestCallback, options?: {
|
|
61
62
|
timeout: number;
|
|
@@ -63,6 +64,15 @@ export declare class Async implements IAsync {
|
|
|
63
64
|
requestIdlePromise(options?: {
|
|
64
65
|
timeout: number;
|
|
65
66
|
}): RejectablePromise<number>;
|
|
67
|
+
/**
|
|
68
|
+
* Try to use scheduler.postTask if it is available https://wicg.github.io/scheduling-apis/
|
|
69
|
+
*/
|
|
70
|
+
schedulerPostTask<T = void>(task: () => T, options?: {
|
|
71
|
+
signal?: AbortSignal;
|
|
72
|
+
delay?: number;
|
|
73
|
+
priority?: 'background' | 'user-blocking' | 'user-visible';
|
|
74
|
+
}): Promise<T>;
|
|
75
|
+
schedulerYield(): Promise<void>;
|
|
66
76
|
cancelIdleCallback(request: number): void;
|
|
67
77
|
requestAnimationFrame(callback: FrameRequestCallback): number;
|
|
68
78
|
cancelAnimationFrame(request: number): void;
|
|
@@ -21,17 +21,18 @@ export declare class LazyWalker extends Eventify<{
|
|
|
21
21
|
private isWorked;
|
|
22
22
|
private isFinished;
|
|
23
23
|
constructor(async: IAsync, options?: {
|
|
24
|
-
readonly timeout?: number;
|
|
25
24
|
readonly whatToShow?: number;
|
|
26
25
|
readonly reverse?: boolean;
|
|
27
26
|
readonly timeoutChunkSize?: number;
|
|
27
|
+
readonly timeout?: number;
|
|
28
28
|
});
|
|
29
29
|
private idleId;
|
|
30
|
-
private
|
|
30
|
+
private __schedulerController;
|
|
31
|
+
private _requestStarting;
|
|
31
32
|
break(reason?: string): void;
|
|
32
33
|
end(): void;
|
|
33
34
|
private stop;
|
|
34
35
|
destruct(): void;
|
|
35
|
-
private
|
|
36
|
+
private __workPerform;
|
|
36
37
|
private visitNode;
|
|
37
38
|
}
|
package/types/types/async.d.ts
CHANGED
|
@@ -38,6 +38,12 @@ export interface IAsync extends IDestructible {
|
|
|
38
38
|
timeout: number;
|
|
39
39
|
}): RejectablePromise<number>;
|
|
40
40
|
cancelIdleCallback(request: number): void;
|
|
41
|
+
schedulerPostTask<T = void>(task: () => T, options: {
|
|
42
|
+
delay?: number;
|
|
43
|
+
priority?: 'background' | 'user-blocking' | 'user-visible';
|
|
44
|
+
signal?: AbortSignal;
|
|
45
|
+
}): Promise<T>;
|
|
46
|
+
schedulerYield(): Promise<void>;
|
|
41
47
|
/**
|
|
42
48
|
* Smart wrapper for `requestAnimationFrame`
|
|
43
49
|
*/
|
package/es5/975.fat.min.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
|
|
3
|
-
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
4
|
-
* Version: v4.5.8
|
|
5
|
-
* Url: https://xdsoft.net/jodit/
|
|
6
|
-
* License(s): MIT
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
(self.webpackChunkjodit=self.webpackChunkjodit||[]).push([[975],{92944:function(){"document"in window.self&&((!("classList"in document.createElement("_"))||document.createElementNS&&!("classList"in document.createElementNS("http://www.w3.org/2000/svg","g")))&&function(t){"use strict";if("Element"in t){var r="classList",n="prototype",e=t.Element[n],o=Object,i=String[n].trim||function(){return this.replace(/^\s+|\s+$/g,"")},u=Array[n].indexOf||function(t){for(var r=0,n=this.length;n>r;r++)if(r in this&&this[r]===t)return r;return-1},c=function(t,r){this.name=t,this.code=DOMException[t],this.message=r},s=function(t,r){if(""===r)throw new c("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(r))throw new c("INVALID_CHARACTER_ERR","String contains an invalid character");return u.call(t,r)},f=function(t){for(var r=i.call(t.getAttribute("class")||""),n=r?r.split(/\s+/):[],e=0,o=n.length;o>e;e++)this.push(n[e]);this._updateClassName=function(){t.setAttribute("class",this.toString())}},a=f[n]=[],l=function(){return new f(this)};if(c[n]=Error[n],a.item=function(t){return this[t]||null},a.contains=function(t){return-1!==s(this,t+="")},a.add=function(){var t,r=arguments,n=0,e=r.length,o=!1;do{-1===s(this,t=r[n]+"")&&(this.push(t),o=!0)}while(++n<e);o&&this._updateClassName()},a.remove=function(){var t,r,n=arguments,e=0,o=n.length,i=!1;do{for(r=s(this,t=n[e]+"");-1!==r;)this.splice(r,1),i=!0,r=s(this,t)}while(++e<o);i&&this._updateClassName()},a.toggle=function(t,r){var n=this.contains(t+=""),e=n?!0!==r&&"remove":!1!==r&&"add";return e&&this[e](t),!0===r||!1===r?r:!n},a.toString=function(){return this.join(" ")},o.defineProperty){var p={get:l,enumerable:!0,configurable:!0};try{o.defineProperty(e,r,p)}catch(t){void 0!==t.number&&-2146823252!==t.number||(p.enumerable=!1,o.defineProperty(e,r,p))}}else o[n].__defineGetter__&&e.__defineGetter__(r,l)}}(window.self),function(){"use strict";var t=document.createElement("_");if(t.classList.add("c1","c2"),!t.classList.contains("c2")){var r=function(t){var r=DOMTokenList.prototype[t];DOMTokenList.prototype[t]=function(t){var n,e=arguments.length;for(n=0;e>n;n++)r.call(this,t=arguments[n])}};r("add"),r("remove")}if(t.classList.toggle("c3",!1),t.classList.contains("c3")){var n=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,r){return 1 in arguments&&!this.contains(t)==!r?r:n.call(this,t)}}t=null}())},73310:function(t,r,n){"use strict";t.exports=n(55996).polyfill()},55996:function(t,r,n){var e,o,i;function u(t){return t&&"undefined"!=typeof Symbol&&t.constructor===Symbol?"symbol":typeof t}i=function(){"use strict";function t(t){return"function"==typeof t}var r=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)},e=0,o=void 0,i=void 0,c=function(t,r){y[e]=t,y[e+1]=r,2===(e+=2)&&(i?i(d):w())},s="undefined"!=typeof window?window:void 0,f=s||{},a=f.MutationObserver||f.WebKitMutationObserver,l="undefined"==typeof self&&"undefined"!=typeof process&&"[object process]"==={}.toString.call(process),p="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel;function v(){var t=setTimeout;return function(){return t(d,1)}}var y=new Array(1e3);function d(){for(var t=0;e>t;t+=2)(0,y[t])(y[t+1]),y[t]=void 0,y[t+1]=void 0;e=0}var h,b,m,g,w=void 0;function S(t,r){var n=this,e=new this.constructor(O);void 0===e[_]&&L(e);var o=n._state;if(o){var i=arguments[o-1];c((function(){return M(o,e,i,n._result)}))}else R(n,e,t,r);return e}function x(t){if(t&&"object"===(void 0===t?"undefined":u(t))&&t.constructor===this)return t;var r=new this(O);return I(r,t),r}l?w=function(){return process.nextTick(d)}:a?(b=0,m=new a(d),g=document.createTextNode(""),m.observe(g,{characterData:!0}),w=function(){g.data=b=++b%2}):p?((h=new MessageChannel).port1.onmessage=d,w=function(){return h.port2.postMessage(0)}):w=void 0===s?function(){try{var t=Function("return this")().require("vertx");return void 0!==(o=t.runOnLoop||t.runOnContext)?function(){o(d)}:v()}catch(t){return v()}}():v();var _=Math.random().toString(36).substring(2);function O(){}var j=void 0,A=1,E=2;function P(r,n,e){n.constructor===r.constructor&&e===S&&n.constructor.resolve===x?function(t,r){r._state===A?F(t,r._result):r._state===E?C(t,r._result):R(r,void 0,(function(r){return I(t,r)}),(function(r){return C(t,r)}))}(r,n):void 0===e?F(r,n):t(e)?function(t,r,n){c((function(t){var e=!1,o=function(n,o){try{n.call(o,(function(n){e||(e=!0,r!==n?I(t,n):F(t,n))}),(function(r){e||(e=!0,C(t,r))}))}catch(t){return t}}(n,r);!e&&o&&(e=!0,C(t,o))}),t)}(r,n,e):F(r,n)}function I(t,r){if(t===r)C(t,new TypeError("You cannot resolve a promise with itself"));else if(o=void 0===(e=r)?"undefined":u(e),null===e||"object"!==o&&"function"!==o)F(t,r);else{var n=void 0;try{n=r.then}catch(r){return void C(t,r)}P(t,r,n)}var e,o}function T(t){t._onerror&&t._onerror(t._result),k(t)}function F(t,r){t._state===j&&(t._result=r,t._state=A,0!==t._subscribers.length&&c(k,t))}function C(t,r){t._state===j&&(t._state=E,t._result=r,c(T,t))}function R(t,r,n,e){var o=t._subscribers,i=o.length;t._onerror=null,o[i]=r,o[i+A]=n,o[i+E]=e,0===i&&t._state&&c(k,t)}function k(t){var r=t._subscribers,n=t._state;if(0!==r.length){for(var e=void 0,o=void 0,i=t._result,u=0;r.length>u;u+=3)o=r[u+n],(e=r[u])?M(n,e,o,i):o(i);t._subscribers.length=0}}function M(r,n,e,o){var i=t(e),u=void 0,c=void 0,s=!0;if(i){try{u=e(o)}catch(t){s=!1,c=t}if(n===u)return void C(n,new TypeError("A promises callback cannot return that same promise."))}else u=o;n._state!==j||(i&&s?I(n,u):!1===s?C(n,c):r===A?F(n,u):r===E&&C(n,u))}var N=0;function L(t){t[_]=N++,t._state=void 0,t._result=void 0,t._subscribers=[]}var D=function(){function t(t,n){this._instanceConstructor=t,this.promise=new t(O),this.promise[_]||L(this.promise),r(n)?(this.length=n.length,this._remaining=n.length,this._result=new Array(this.length),0===this.length?F(this.promise,this._result):(this.length=this.length||0,this._enumerate(n),0===this._remaining&&F(this.promise,this._result))):C(this.promise,new Error("Array Methods must be provided an Array"))}return t.prototype._enumerate=function(t){for(var r=0;this._state===j&&t.length>r;r++)this._eachEntry(t[r],r)},t.prototype._eachEntry=function(t,r){var n=this._instanceConstructor,e=n.resolve;if(e===x){var o=void 0,i=void 0,u=!1;try{o=t.then}catch(t){u=!0,i=t}if(o===S&&t._state!==j)this._settledAt(t._state,r,t._result);else if("function"!=typeof o)this._remaining--,this._result[r]=t;else if(n===G){var c=new n(O);u?C(c,i):P(c,t,o),this._willSettleAt(c,r)}else this._willSettleAt(new n((function(r){return r(t)})),r)}else this._willSettleAt(e(t),r)},t.prototype._settledAt=function(t,r,n){var e=this.promise;e._state===j&&(this._remaining--,t===E?C(e,n):this._result[r]=n),0===this._remaining&&F(e,this._result)},t.prototype._willSettleAt=function(t,r){var n=this;R(t,void 0,(function(t){return n._settledAt(A,r,t)}),(function(t){return n._settledAt(E,r,t)}))},t}(),G=function(){function r(t){var n;this[_]=N++,this._result=this._state=void 0,this._subscribers=[],O!==t&&("function"!=typeof t&&function(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}(),(null!=(n=r)&&"undefined"!=typeof Symbol&&n[Symbol.hasInstance]?n[Symbol.hasInstance](this):this instanceof n)?function(t,r){try{r((function(r){I(t,r)}),(function(r){C(t,r)}))}catch(r){C(t,r)}}(this,t):function(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}())}return r.prototype.catch=function(t){return this.then(null,t)},r.prototype.finally=function(r){var n=this,e=n.constructor;return t(r)?n.then((function(t){return e.resolve(r()).then((function(){return t}))}),(function(t){return e.resolve(r()).then((function(){throw t}))})):n.then(r,r)},r}();return G.prototype.then=S,G.all=function(t){return new D(this,t).promise},G.race=function(t){var n=this;return r(t)?new n((function(r,e){for(var o=t.length,i=0;o>i;i++)n.resolve(t[i]).then(r,e)})):new n((function(t,r){return r(new TypeError("You must pass an array to race."))}))},G.resolve=x,G.reject=function(t){var r=new this(O);return C(r,t),r},G._setScheduler=function(t){i=t},G._setAsap=function(t){c=t},G._asap=c,G.polyfill=function(){var t=void 0;if(void 0!==n.g)t=n.g;else if("undefined"!=typeof self)t=self;else try{t=Function("return this")()}catch(t){throw new Error("polyfill failed because global object is unavailable in this environment")}var r=t.Promise;if(r){var e=null;try{e=Object.prototype.toString.call(r.resolve())}catch(t){}if("[object Promise]"===e&&!r.cast)return}t.Promise=G},G.Promise=G,G},"object"===u(r)?t.exports=i():void 0===(o="function"==typeof(e=i)?e.call(r,n,r,t):e)||(t.exports=o)},43740:function(t,r,n){"use strict";n(13382);var e=n(71665);t.exports=e("Array","findIndex")},53090:function(t,r,n){"use strict";n(88778),n(78676);var e=n(21517);t.exports=e.Array.from},26939:function(t,r,n){"use strict";n(54040),n(71597),n(57705),n(17802),n(28429),n(83483),n(26918),n(43021),n(44882),n(60796),n(81863),n(77467),n(17313),n(99031),n(32446),n(59823),n(752),n(12657),n(41733),n(55822);var e=n(21517);t.exports=e.Symbol},95560:function(t,r,n){"use strict";var e=n(11195),o=n(52921),i=TypeError;t.exports=function(t){if(e(t))return t;throw new i(o(t)+" is not a function")}},29148:function(t,r,n){"use strict";var e=n(85551),o=String,i=TypeError;t.exports=function(t){if(e(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},80055:function(t,r,n){"use strict";var e=n(84174),o=n(4538),i=n(38523).f,u=e("unscopables"),c=Array.prototype;void 0===c[u]&&i(c,u,{configurable:!0,value:o(null)}),t.exports=function(t){c[u][t]=!0}},59813:function(t,r,n){"use strict";var e=n(22632),o=String,i=TypeError;t.exports=function(t){if(e(t))return t;throw new i(o(t)+" is not an object")}},13038:function(t,r,n){"use strict";var e=n(94114),o=n(45247),i=n(32891),u=n(16821),c=n(58003),s=n(32911),f=n(71360),a=n(8766),l=n(7895),p=n(45977),v=Array;t.exports=function(t){var r=i(t),n=s(this),y=arguments.length,d=y>1?arguments[1]:void 0,h=void 0!==d;h&&(d=e(d,y>2?arguments[2]:void 0));var b,m,g,w,S,x,_=p(r),O=0;if(!_||this===v&&c(_))for(b=f(r),m=n?new this(b):v(b);b>O;O++)x=h?d(r[O],O):r[O],a(m,O,x);else for(m=n?new this:[],S=(w=l(r,_)).next;!(g=o(S,w)).done;O++)x=h?u(w,d,[g.value,O],!0):g.value,a(m,O,x);return m.length=O,m}},65579:function(t,r,n){"use strict";var e=n(91295),o=n(48960),i=n(71360),u=function(t){return function(r,n,u){var c=e(r),s=i(c);if(0===s)return!t&&-1;var f,a=o(u,s);if(t&&n!=n){for(;s>a;)if((f=c[a++])!=f)return!0}else for(;s>a;a++)if((t||a in c)&&c[a]===n)return t||a||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},98163:function(t,r,n){"use strict";var e=n(94114),o=n(72058),i=n(37513),u=n(32891),c=n(71360),s=n(6391),f=o([].push),a=function(t){var r=1===t,n=2===t,o=3===t,a=4===t,l=6===t,p=7===t,v=5===t||l;return function(y,d,h,b){for(var m,g,w=u(y),S=i(w),x=c(S),_=e(d,h),O=0,j=b||s,A=r?j(y,x):n||p?j(y,0):void 0;x>O;O++)if((v||O in S)&&(g=_(m=S[O],O,w),t))if(r)A[O]=g;else if(g)switch(t){case 3:return!0;case 5:return m;case 6:return O;case 2:f(A,m)}else switch(t){case 4:return!1;case 7:f(A,m)}return l?-1:o||a?a:A}};t.exports={forEach:a(0),map:a(1),filter:a(2),some:a(3),every:a(4),find:a(5),findIndex:a(6),filterReject:a(7)}},12291:function(t,r,n){"use strict";var e=n(18185),o=n(84174),i=n(93821),u=o("species");t.exports=function(t){return i>=51||!e((function(){var r=[];return(r.constructor={})[u]=function(){return{foo:1}},1!==r[t](Boolean).foo}))}},82898:function(t,r,n){"use strict";var e=n(72058);t.exports=e([].slice)},99175:function(t,r,n){"use strict";var e=n(42450),o=n(32911),i=n(22632),u=n(84174)("species"),c=Array;t.exports=function(t){var r;return e(t)&&(o(r=t.constructor)&&(r===c||e(r.prototype))||i(r)&&null===(r=r[u]))&&(r=void 0),void 0===r?c:r}},6391:function(t,r,n){"use strict";var e=n(99175);t.exports=function(t,r){return new(e(t))(0===r?0:r)}},16821:function(t,r,n){"use strict";var e=n(59813),o=n(31729);t.exports=function(t,r,n,i){try{return i?r(e(n)[0],n[1]):r(n)}catch(r){o(t,"throw",r)}}},74114:function(t,r,n){"use strict";var e=n(84174)("iterator"),o=!1;try{var i=0,u={next:function(){return{done:!!i++}},return:function(){o=!0}};u[e]=function(){return this},Array.from(u,(function(){throw 2}))}catch(t){}t.exports=function(t,r){try{if(!r&&!o)return!1}catch(t){return!1}var n=!1;try{var i={};i[e]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(t){}return n}},54686:function(t,r,n){"use strict";var e=n(72058),o=e({}.toString),i=e("".slice);t.exports=function(t){return i(o(t),8,-1)}},54897:function(t,r,n){"use strict";var e=n(23826),o=n(11195),i=n(54686),u=n(84174)("toStringTag"),c=Object,s="Arguments"===i(function(){return arguments}());t.exports=e?i:function(t){var r,n,e;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,r){try{return t[r]}catch(t){}}(r=c(t),u))?n:s?i(r):"Object"===(e=i(r))&&o(r.callee)?"Arguments":e}},60710:function(t,r,n){"use strict";var e=n(6779),o=n(29961),i=n(55729),u=n(38523);t.exports=function(t,r,n){for(var c=o(r),s=u.f,f=i.f,a=0;c.length>a;a++){var l=c[a];e(t,l)||n&&e(n,l)||s(t,l,f(r,l))}}},12609:function(t,r,n){"use strict";var e=n(18185);t.exports=!e((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},46943:function(t){"use strict";t.exports=function(t,r){return{value:t,done:r}}},94557:function(t,r,n){"use strict";var e=n(25134),o=n(38523),i=n(83162);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},83162:function(t){"use strict";t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},8766:function(t,r,n){"use strict";var e=n(25134),o=n(38523),i=n(83162);t.exports=function(t,r,n){e?o.f(t,r,i(0,n)):t[r]=n}},46312:function(t,r,n){"use strict";var e=n(35113),o=n(38523);t.exports=function(t,r,n){return n.get&&e(n.get,r,{getter:!0}),n.set&&e(n.set,r,{setter:!0}),o.f(t,r,n)}},75210:function(t,r,n){"use strict";var e=n(11195),o=n(38523),i=n(35113),u=n(50079);t.exports=function(t,r,n,c){c||(c={});var s=c.enumerable,f=void 0!==c.name?c.name:r;if(e(n)&&i(n,f,c),c.global)s?t[r]=n:u(r,n);else{try{c.unsafe?t[r]&&(s=!0):delete t[r]}catch(t){}s?t[r]=n:o.f(t,r,{value:n,enumerable:!1,configurable:!c.nonConfigurable,writable:!c.nonWritable})}return t}},50079:function(t,r,n){"use strict";var e=n(83482),o=Object.defineProperty;t.exports=function(t,r){try{o(e,t,{value:r,configurable:!0,writable:!0})}catch(n){e[t]=r}return r}},25134:function(t,r,n){"use strict";var e=n(18185);t.exports=!e((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},91321:function(t,r,n){"use strict";var e=n(83482),o=n(22632),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},30019:function(t){"use strict";var r=TypeError;t.exports=function(t){if(t>9007199254740991)throw r("Maximum allowed index exceeded");return t}},71665:function(t,r,n){"use strict";var e=n(83482),o=n(72058);t.exports=function(t,r){return o(e[t].prototype[r])}},21013:function(t){"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},16757:function(t,r,n){"use strict";var e=n(83482).navigator,o=e&&e.userAgent;t.exports=o?String(o):""},93821:function(t,r,n){"use strict";var e,o,i=n(83482),u=n(16757),c=i.process,s=i.Deno,f=c&&c.versions||s&&s.version,a=f&&f.v8;a&&(o=(e=a.split("."))[0]>0&&4>e[0]?1:+(e[0]+e[1])),!o&&u&&((e=u.match(/Edge\/(\d+)/))&&74>e[1]||(e=u.match(/Chrome\/(\d+)/))&&(o=+e[1])),t.exports=o},73716:function(t,r,n){"use strict";function e(t){return t&&"undefined"!=typeof Symbol&&t.constructor===Symbol?"symbol":typeof t}var o=n(83482),i=n(55729).f,u=n(94557),c=n(75210),s=n(50079),f=n(60710),a=n(84378);t.exports=function(t,r){var n,l,p,v,y,d=t.target,h=t.global,b=t.stat;if(n=h?o:b?o[d]||s(d,{}):o[d]&&o[d].prototype)for(l in r){if(v=r[l],p=t.dontCallGetSet?(y=i(n,l))&&y.value:n[l],!a(h?l:d+(b?".":"#")+l,t.forced)&&void 0!==p){if((void 0===v?"undefined":e(v))==(void 0===p?"undefined":e(p)))continue;f(v,p)}(t.sham||p&&p.sham)&&u(v,"sham",!0),c(n,l,v,t)}}},18185:function(t){"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},36571:function(t,r,n){"use strict";var e,o=n(52002),i=Function.prototype,u=i.apply,c=i.call;t.exports="object"==("undefined"==typeof Reflect?"undefined":(e=Reflect)&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e)&&Reflect.apply||(o?c.bind(u):function(){return c.apply(u,arguments)})},94114:function(t,r,n){"use strict";var e=n(87578),o=n(95560),i=n(52002),u=e(e.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?u(t,r):function(){return t.apply(r,arguments)}}},52002:function(t,r,n){"use strict";var e=n(18185);t.exports=!e((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},45247:function(t,r,n){"use strict";var e=n(52002),o=Function.prototype.call;t.exports=e?o.bind(o):function(){return o.apply(o,arguments)}},86128:function(t,r,n){"use strict";var e=n(25134),o=n(6779),i=Function.prototype,u=e&&Object.getOwnPropertyDescriptor,c=o(i,"name"),s=c&&"something"===function(){}.name,f=c&&(!e||e&&u(i,"name").configurable);t.exports={EXISTS:c,PROPER:s,CONFIGURABLE:f}},53112:function(t,r,n){"use strict";var e=n(72058),o=n(95560);t.exports=function(t,r,n){try{return e(o(Object.getOwnPropertyDescriptor(t,r)[n]))}catch(t){}}},87578:function(t,r,n){"use strict";var e=n(54686),o=n(72058);t.exports=function(t){if("Function"===e(t))return o(t)}},72058:function(t,r,n){"use strict";var e=n(52002),o=Function.prototype,i=o.call,u=e&&o.bind.bind(i,i);t.exports=e?u:function(t){return function(){return i.apply(t,arguments)}}},77825:function(t,r,n){"use strict";var e=n(83482),o=n(11195);t.exports=function(t,r){return 2>arguments.length?o(n=e[t])?n:void 0:e[t]&&e[t][r];var n}},45977:function(t,r,n){"use strict";var e=n(54897),o=n(5444),i=n(16351),u=n(47431),c=n(84174)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||u[e(t)]}},7895:function(t,r,n){"use strict";var e=n(45247),o=n(95560),i=n(59813),u=n(52921),c=n(45977),s=TypeError;t.exports=function(t,r){var n=2>arguments.length?c(t):r;if(o(n))return i(e(n,t));throw new s(u(t)+" is not iterable")}},10623:function(t,r,n){"use strict";var e=n(72058),o=n(42450),i=n(11195),u=n(54686),c=n(29637),s=e([].push);t.exports=function(t){if(i(t))return t;if(o(t)){for(var r=t.length,n=[],e=0;r>e;e++){var f=t[e];"string"==typeof f?s(n,f):"number"!=typeof f&&"Number"!==u(f)&&"String"!==u(f)||s(n,c(f))}var a=n.length,l=!0;return function(t,r){if(l)return l=!1,r;if(o(this))return r;for(var e=0;a>e;e++)if(n[e]===t)return r}}}},5444:function(t,r,n){"use strict";var e=n(95560),o=n(16351);t.exports=function(t,r){var n=t[r];return o(n)?void 0:e(n)}},83482:function(t,r,n){"use strict";function e(t){return t&&"undefined"!=typeof Symbol&&t.constructor===Symbol?"symbol":typeof t}var o=function(t){return t&&t.Math===Math&&t};t.exports=o("object"==("undefined"==typeof globalThis?"undefined":e(globalThis))&&globalThis)||o("object"==("undefined"==typeof window?"undefined":e(window))&&window)||o("object"==("undefined"==typeof self?"undefined":e(self))&&self)||o("object"==(void 0===n.g?"undefined":e(n.g))&&n.g)||o("object"==e(this)&&this)||function(){return this}()||Function("return this")()},6779:function(t,r,n){"use strict";var e=n(72058),o=n(32891),i=e({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},16003:function(t){"use strict";t.exports={}},93195:function(t,r,n){"use strict";var e=n(77825);t.exports=e("document","documentElement")},74647:function(t,r,n){"use strict";var e=n(25134),o=n(18185),i=n(91321);t.exports=!e&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},37513:function(t,r,n){"use strict";var e=n(72058),o=n(18185),i=n(54686),u=Object,c=e("".split);t.exports=o((function(){return!u("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?c(t,""):u(t)}:u},80100:function(t,r,n){"use strict";var e=n(72058),o=n(11195),i=n(71175),u=e(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return u(t)}),t.exports=i.inspectSource},36211:function(t,r,n){"use strict";var e,o,i,u=n(77316),c=n(83482),s=n(22632),f=n(94557),a=n(6779),l=n(71175),p=n(33873),v=n(16003),y="Object already initialized",d=c.TypeError;if(u||l.state){var h=l.state||(l.state=new(0,c.WeakMap));h.get=h.get,h.has=h.has,h.set=h.set,e=function(t,r){if(h.has(t))throw new d(y);return r.facade=t,h.set(t,r),r},o=function(t){return h.get(t)||{}},i=function(t){return h.has(t)}}else{var b=p("state");v[b]=!0,e=function(t,r){if(a(t,b))throw new d(y);return r.facade=t,f(t,b,r),r},o=function(t){return a(t,b)?t[b]:{}},i=function(t){return a(t,b)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(r){var n;if(!s(r)||(n=o(r)).type!==t)throw new d("Incompatible receiver, "+t+" required");return n}}}},58003:function(t,r,n){"use strict";var e=n(84174),o=n(47431),i=e("iterator"),u=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||u[i]===t)}},42450:function(t,r,n){"use strict";var e=n(54686);t.exports=Array.isArray||function(t){return"Array"===e(t)}},11195:function(t){"use strict";var r,n="object"==("undefined"==typeof document?"undefined":(r=document)&&"undefined"!=typeof Symbol&&r.constructor===Symbol?"symbol":typeof r)&&document.all;t.exports=void 0===n&&void 0!==n?function(t){return"function"==typeof t||t===n}:function(t){return"function"==typeof t}},32911:function(t,r,n){"use strict";var e=n(72058),o=n(18185),i=n(11195),u=n(54897),c=n(77825),s=n(80100),f=function(){},a=c("Reflect","construct"),l=/^\s*(?:class|function)\b/,p=e(l.exec),v=!l.test(f),y=function(t){if(!i(t))return!1;try{return a(f,[],t),!0}catch(t){return!1}},d=function(t){if(!i(t))return!1;switch(u(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return v||!!p(l,s(t))}catch(t){return!0}};d.sham=!0,t.exports=!a||o((function(){var t;return y(y.call)||!y(Object)||!y((function(){t=!0}))||t}))?d:y},84378:function(t,r,n){"use strict";var e=n(18185),o=n(11195),i=/#|\.prototype\./,u=function(t,r){var n=s[c(t)];return n===a||n!==f&&(o(r)?e(r):!!r)},c=u.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=u.data={},f=u.NATIVE="N",a=u.POLYFILL="P";t.exports=u},16351:function(t){"use strict";t.exports=function(t){return null==t}},22632:function(t,r,n){"use strict";var e=n(11195);t.exports=function(t){return"object"==(void 0===t?"undefined":(r=t)&&"undefined"!=typeof Symbol&&r.constructor===Symbol?"symbol":typeof r)?null!==t:e(t);var r}},85551:function(t,r,n){"use strict";var e=n(22632);t.exports=function(t){return e(t)||null===t}},81941:function(t){"use strict";t.exports=!1},98415:function(t,r,n){"use strict";var e=n(77825),o=n(11195),i=n(17119),u=n(45326),c=Object;t.exports=u?function(t){return"symbol"==(void 0===t?"undefined":(r=t)&&"undefined"!=typeof Symbol&&r.constructor===Symbol?"symbol":typeof r);var r}:function(t){var r=e("Symbol");return o(r)&&i(r.prototype,c(t))}},31729:function(t,r,n){"use strict";var e=n(45247),o=n(59813),i=n(5444);t.exports=function(t,r,n){var u,c;o(t);try{if(!(u=i(t,"return"))){if("throw"===r)throw n;return n}u=e(u,t)}catch(t){c=!0,u=t}if("throw"===r)throw n;if(c)throw u;return o(u),n}},2832:function(t,r,n){"use strict";var e=n(80587).IteratorPrototype,o=n(4538),i=n(83162),u=n(52837),c=n(47431),s=function(){return this};t.exports=function(t,r,n,f){var a=r+" Iterator";return t.prototype=o(e,{next:i(+!f,n)}),u(t,a,!1,!0),c[a]=s,t}},95838:function(t,r,n){"use strict";var e=n(73716),o=n(45247),i=n(81941),u=n(86128),c=n(11195),s=n(2832),f=n(70029),a=n(74817),l=n(52837),p=n(94557),v=n(75210),y=n(84174),d=n(47431),h=n(80587),b=u.PROPER,m=u.CONFIGURABLE,g=h.IteratorPrototype,w=h.BUGGY_SAFARI_ITERATORS,S=y("iterator"),x="keys",_="values",O="entries",j=function(){return this};t.exports=function(t,r,n,u,y,h,A){s(n,r,u);var E,P,I,T=function(t){if(t===y&&M)return M;if(!w&&t&&t in R)return R[t];switch(t){case x:case _:case O:return function(){return new n(this,t)}}return function(){return new n(this)}},F=r+" Iterator",C=!1,R=t.prototype,k=R[S]||R["@@iterator"]||y&&R[y],M=!w&&k||T(y),N="Array"===r&&R.entries||k;if(N&&(E=f(N.call(new t)))!==Object.prototype&&E.next&&(i||f(E)===g||(a?a(E,g):c(E[S])||v(E,S,j)),l(E,F,!0,!0),i&&(d[F]=j)),b&&y===_&&k&&k.name!==_&&(!i&&m?p(R,"name",_):(C=!0,M=function(){return o(k,this)})),y)if(P={values:T(_),keys:h?M:T(x),entries:T(O)},A)for(I in P)(w||C||!(I in R))&&v(R,I,P[I]);else e({target:r,proto:!0,forced:w||C},P);return i&&!A||R[S]===M||v(R,S,M,{name:y}),d[r]=M,P}},80587:function(t,r,n){"use strict";var e,o,i,u=n(18185),c=n(11195),s=n(22632),f=n(4538),a=n(70029),l=n(75210),p=n(84174),v=n(81941),y=p("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=a(a(i)))!==Object.prototype&&(e=o):d=!0),!s(e)||u((function(){var t={};return e[y].call(t)!==t}))?e={}:v&&(e=f(e)),c(e[y])||l(e,y,(function(){return this})),t.exports={IteratorPrototype:e,BUGGY_SAFARI_ITERATORS:d}},47431:function(t){"use strict";t.exports={}},71360:function(t,r,n){"use strict";var e=n(34692);t.exports=function(t){return e(t.length)}},35113:function(t,r,n){"use strict";var e=n(72058),o=n(18185),i=n(11195),u=n(6779),c=n(25134),s=n(86128).CONFIGURABLE,f=n(80100),a=n(36211),l=a.enforce,p=a.get,v=String,y=Object.defineProperty,d=e("".slice),h=e("".replace),b=e([].join),m=c&&!o((function(){return 8!==y((function(){}),"length",{value:8}).length})),g=String(String).split("String"),w=t.exports=function(t,r,n){"Symbol("===d(v(r),0,7)&&(r="["+h(v(r),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),n&&n.getter&&(r="get "+r),n&&n.setter&&(r="set "+r),(!u(t,"name")||s&&t.name!==r)&&(c?y(t,"name",{value:r,configurable:!0}):t.name=r),m&&n&&u(n,"arity")&&t.length!==n.arity&&y(t,"length",{value:n.arity});try{n&&u(n,"constructor")&&n.constructor?c&&y(t,"prototype",{writable:!1}):t.prototype&&(t.prototype=void 0)}catch(t){}var e=l(t);return u(e,"source")||(e.source=b(g,"string"==typeof r?r:"")),t};Function.prototype.toString=w((function(){return i(this)&&p(this).source||f(this)}),"toString")},3287:function(t){"use strict";var r=Math.ceil,n=Math.floor;t.exports=Math.trunc||function(t){var e=+t;return(e>0?n:r)(e)}},4538:function(t,r,n){"use strict";var e,o=n(59813),i=n(93095),u=n(21013),c=n(16003),s=n(93195),f=n(91321),a=n(33873),l="prototype",p="script",v=a("IE_PROTO"),y=function(){},d=function(t){return"<"+p+">"+t+"</"+p+">"},h=function(t){t.write(d("")),t.close();var r=t.parentWindow.Object;return t=null,r},b=function(){try{e=new ActiveXObject("htmlfile")}catch(t){}var t,r,n;b="undefined"!=typeof document?document.domain&&e?h(e):(r=f("iframe"),n="java"+p+":",r.style.display="none",s.appendChild(r),r.src=String(n),(t=r.contentWindow.document).open(),t.write(d("document.F=Object")),t.close(),t.F):h(e);for(var o=u.length;o--;)delete b[l][u[o]];return b()};c[v]=!0,t.exports=Object.create||function(t,r){var n;return null!==t?(y[l]=o(t),n=new y,y[l]=null,n[v]=t):n=b(),void 0===r?n:i.f(n,r)}},93095:function(t,r,n){"use strict";var e=n(25134),o=n(72168),i=n(38523),u=n(59813),c=n(91295),s=n(33930);r.f=e&&!o?Object.defineProperties:function(t,r){u(t);for(var n,e=c(r),o=s(r),f=o.length,a=0;f>a;)i.f(t,n=o[a++],e[n]);return t}},38523:function(t,r,n){"use strict";var e=n(25134),o=n(74647),i=n(72168),u=n(59813),c=n(23223),s=TypeError,f=Object.defineProperty,a=Object.getOwnPropertyDescriptor,l="enumerable",p="configurable",v="writable";r.f=e?i?function(t,r,n){if(u(t),r=c(r),u(n),"function"==typeof t&&"prototype"===r&&"value"in n&&v in n&&!n[v]){var e=a(t,r);e&&e[v]&&(t[r]=n.value,n={configurable:p in n?n[p]:e[p],enumerable:l in n?n[l]:e[l],writable:!1})}return f(t,r,n)}:f:function(t,r,n){if(u(t),r=c(r),u(n),o)try{return f(t,r,n)}catch(t){}if("get"in n||"set"in n)throw new s("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},55729:function(t,r,n){"use strict";var e=n(25134),o=n(45247),i=n(15355),u=n(83162),c=n(91295),s=n(23223),f=n(6779),a=n(74647),l=Object.getOwnPropertyDescriptor;r.f=e?l:function(t,r){if(t=c(t),r=s(r),a)try{return l(t,r)}catch(t){}if(f(t,r))return u(!o(i.f,t,r),t[r])}},6756:function(t,r,n){"use strict";var e,o=n(54686),i=n(91295),u=n(57126).f,c=n(82898),s="object"==("undefined"==typeof window?"undefined":(e=window)&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e)&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return s&&"Window"===o(t)?function(t){try{return u(t)}catch(t){return c(s)}}(t):u(i(t))}},57126:function(t,r,n){"use strict";var e=n(35158),o=n(21013).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return e(t,o)}},14203:function(t,r){"use strict";r.f=Object.getOwnPropertySymbols},70029:function(t,r,n){"use strict";function e(t,r){return null!=r&&"undefined"!=typeof Symbol&&r[Symbol.hasInstance]?!!r[Symbol.hasInstance](t):t instanceof r}var o=n(6779),i=n(11195),u=n(32891),c=n(33873),s=n(12609),f=c("IE_PROTO"),a=Object,l=a.prototype;t.exports=s?a.getPrototypeOf:function(t){var r=u(t);if(o(r,f))return r[f];var n=r.constructor;return i(n)&&e(r,n)?n.prototype:e(r,a)?l:null}},17119:function(t,r,n){"use strict";var e=n(72058);t.exports=e({}.isPrototypeOf)},35158:function(t,r,n){"use strict";var e=n(72058),o=n(6779),i=n(91295),u=n(65579).indexOf,c=n(16003),s=e([].push);t.exports=function(t,r){var n,e=i(t),f=0,a=[];for(n in e)!o(c,n)&&o(e,n)&&s(a,n);for(;r.length>f;)o(e,n=r[f++])&&(~u(a,n)||s(a,n));return a}},33930:function(t,r,n){"use strict";var e=n(35158),o=n(21013);t.exports=Object.keys||function(t){return e(t,o)}},15355:function(t,r){"use strict";var n={}.propertyIsEnumerable,e=Object.getOwnPropertyDescriptor,o=e&&!n.call({1:2},1);r.f=o?function(t){var r=e(this,t);return!!r&&r.enumerable}:n},74817:function(t,r,n){"use strict";var e=n(53112),o=n(22632),i=n(61744),u=n(29148);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r,n,c=!1,s={};try{(t=e(Object.prototype,"__proto__","set"))(s,[]),r=s,c=null!=(n=Array)&&"undefined"!=typeof Symbol&&n[Symbol.hasInstance]?!!n[Symbol.hasInstance](r):r instanceof n}catch(t){}return function(r,n){return i(r),u(n),o(r)?(c?t(r,n):r.__proto__=n,r):r}}():void 0)},83637:function(t,r,n){"use strict";var e=n(23826),o=n(54897);t.exports=e?{}.toString:function(){return"[object "+o(this)+"]"}},48972:function(t,r,n){"use strict";var e=n(45247),o=n(11195),i=n(22632),u=TypeError;t.exports=function(t,r){var n,c;if("string"===r&&o(n=t.toString)&&!i(c=e(n,t)))return c;if(o(n=t.valueOf)&&!i(c=e(n,t)))return c;if("string"!==r&&o(n=t.toString)&&!i(c=e(n,t)))return c;throw new u("Can't convert object to primitive value")}},29961:function(t,r,n){"use strict";var e=n(77825),o=n(72058),i=n(57126),u=n(14203),c=n(59813),s=o([].concat);t.exports=e("Reflect","ownKeys")||function(t){var r=i.f(c(t)),n=u.f;return n?s(r,n(t)):r}},21517:function(t,r,n){"use strict";var e=n(83482);t.exports=e},61744:function(t,r,n){"use strict";var e=n(16351),o=TypeError;t.exports=function(t){if(e(t))throw new o("Can't call method on "+t);return t}},52837:function(t,r,n){"use strict";var e=n(38523).f,o=n(6779),i=n(84174)("toStringTag");t.exports=function(t,r,n){t&&!n&&(t=t.prototype),t&&!o(t,i)&&e(t,i,{configurable:!0,value:r})}},33873:function(t,r,n){"use strict";var e=n(61607),o=n(18746),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},71175:function(t,r,n){"use strict";var e=n(81941),o=n(83482),i=n(50079),u="__core-js_shared__",c=t.exports=o[u]||i(u,{});(c.versions||(c.versions=[])).push({version:"3.39.0",mode:e?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.39.0/LICENSE",source:"https://github.com/zloirock/core-js"})},61607:function(t,r,n){"use strict";var e=n(71175);t.exports=function(t,r){return e[t]||(e[t]=r||{})}},63937:function(t,r,n){"use strict";var e=n(72058),o=n(71786),i=n(29637),u=n(61744),c=e("".charAt),s=e("".charCodeAt),f=e("".slice),a=function(t){return function(r,n){var e,a,l=i(u(r)),p=o(n),v=l.length;return 0>p||p>=v?t?"":void 0:55296>(e=s(l,p))||e>56319||p+1===v||56320>(a=s(l,p+1))||a>57343?t?c(l,p):e:t?f(l,p,p+2):a-56320+(e-55296<<10)+65536}};t.exports={codeAt:a(!1),charAt:a(!0)}},46909:function(t,r,n){"use strict";var e=n(93821),o=n(18185),i=n(83482).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t,r,n=Symbol("symbol detection");return!i(n)||(t=Object(n),!(null!=(r=Symbol)&&"undefined"!=typeof Symbol&&r[Symbol.hasInstance]?r[Symbol.hasInstance](t):t instanceof r))||!Symbol.sham&&e&&41>e}))},4512:function(t,r,n){"use strict";var e=n(45247),o=n(77825),i=n(84174),u=n(75210);t.exports=function(){var t=o("Symbol"),r=t&&t.prototype,n=r&&r.valueOf,c=i("toPrimitive");r&&!r[c]&&u(r,c,(function(t){return e(n,this)}),{arity:1})}},9922:function(t,r,n){"use strict";var e=n(46909);t.exports=e&&!!Symbol.for&&!!Symbol.keyFor},48960:function(t,r,n){"use strict";var e=n(71786),o=Math.max,i=Math.min;t.exports=function(t,r){var n=e(t);return 0>n?o(n+r,0):i(n,r)}},91295:function(t,r,n){"use strict";var e=n(37513),o=n(61744);t.exports=function(t){return e(o(t))}},71786:function(t,r,n){"use strict";var e=n(3287);t.exports=function(t){var r=+t;return r!=r||0===r?0:e(r)}},34692:function(t,r,n){"use strict";var e=n(71786),o=Math.min;t.exports=function(t){var r=e(t);return r>0?o(r,9007199254740991):0}},32891:function(t,r,n){"use strict";var e=n(61744),o=Object;t.exports=function(t){return o(e(t))}},12547:function(t,r,n){"use strict";var e=n(45247),o=n(22632),i=n(98415),u=n(5444),c=n(48972),s=n(84174),f=TypeError,a=s("toPrimitive");t.exports=function(t,r){if(!o(t)||i(t))return t;var n,s=u(t,a);if(s){if(void 0===r&&(r="default"),n=e(s,t,r),!o(n)||i(n))return n;throw new f("Can't convert object to primitive value")}return void 0===r&&(r="number"),c(t,r)}},23223:function(t,r,n){"use strict";var e=n(12547),o=n(98415);t.exports=function(t){var r=e(t,"string");return o(r)?r:r+""}},23826:function(t,r,n){"use strict";var e={};e[n(84174)("toStringTag")]="z",t.exports="[object z]"===String(e)},29637:function(t,r,n){"use strict";var e=n(54897),o=String;t.exports=function(t){if("Symbol"===e(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},52921:function(t){"use strict";var r=String;t.exports=function(t){try{return r(t)}catch(t){return"Object"}}},18746:function(t,r,n){"use strict";var e=n(72058),o=0,i=Math.random(),u=e(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+u(++o+i,36)}},45326:function(t,r,n){"use strict";var e,o=n(46909);t.exports=o&&!Symbol.sham&&"symbol"==((e=Symbol.iterator)&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e)},72168:function(t,r,n){"use strict";var e=n(25134),o=n(18185);t.exports=e&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},77316:function(t,r,n){"use strict";var e=n(83482),o=n(11195),i=e.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},34409:function(t,r,n){"use strict";var e=n(21517),o=n(6779),i=n(95325),u=n(38523).f;t.exports=function(t){var r=e.Symbol||(e.Symbol={});o(r,t)||u(r,t,{value:i.f(t)})}},95325:function(t,r,n){"use strict";var e=n(84174);r.f=e},84174:function(t,r,n){"use strict";var e=n(83482),o=n(61607),i=n(6779),u=n(18746),c=n(46909),s=n(45326),f=e.Symbol,a=o("wks"),l=s?f.for||f:f&&f.withoutSetter||u;t.exports=function(t){return i(a,t)||(a[t]=c&&i(f,t)?f[t]:l("Symbol."+t)),a[t]}},54040:function(t,r,n){"use strict";var e=n(73716),o=n(18185),i=n(42450),u=n(22632),c=n(32891),s=n(71360),f=n(30019),a=n(8766),l=n(6391),p=n(12291),v=n(84174),y=n(93821),d=v("isConcatSpreadable"),h=y>=51||!o((function(){var t=[];return t[d]=!1,t.concat()[0]!==t})),b=function(t){if(!u(t))return!1;var r=t[d];return void 0!==r?!!r:i(t)};e({target:"Array",proto:!0,arity:1,forced:!h||!p("concat")},{concat:function(t){var r,n,e,o,i,u=c(this),p=l(u,0),v=0;for(r=-1,e=arguments.length;e>r;r++)if(b(i=-1===r?u:arguments[r]))for(o=s(i),f(v+o),n=0;o>n;n++,v++)n in i&&a(p,v,i[n]);else f(v+1),a(p,v++,i);return p.length=v,p}})},13382:function(t,r,n){"use strict";var e=n(73716),o=n(98163).findIndex,i=n(80055),u="findIndex",c=!0;u in[]&&Array(1)[u]((function(){c=!1})),e({target:"Array",proto:!0,forced:c},{findIndex:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),i(u)},78676:function(t,r,n){"use strict";var e=n(73716),o=n(13038);e({target:"Array",stat:!0,forced:!n(74114)((function(t){Array.from(t)}))},{from:o})},77272:function(t,r,n){"use strict";var e=n(73716),o=n(77825),i=n(36571),u=n(45247),c=n(72058),s=n(18185),f=n(11195),a=n(98415),l=n(82898),p=n(10623),v=n(46909),y=String,d=o("JSON","stringify"),h=c(/./.exec),b=c("".charAt),m=c("".charCodeAt),g=c("".replace),w=c(1..toString),S=/[\uD800-\uDFFF]/g,x=/^[\uD800-\uDBFF]$/,_=/^[\uDC00-\uDFFF]$/,O=!v||s((function(){var t=o("Symbol")("stringify detection");return"[null]"!==d([t])||"{}"!==d({a:t})||"{}"!==d(Object(t))})),j=s((function(){return'"\udf06\ud834"'!==d("\udf06\ud834")||'"\udead"'!==d("\udead")})),A=function(t,r){var n=l(arguments),e=p(r);if(f(e)||void 0!==t&&!a(t))return n[1]=function(t,r){if(f(e)&&(r=u(e,this,y(t),r)),!a(r))return r},i(d,null,n)},E=function(t,r,n){var e=b(n,r-1),o=b(n,r+1);return h(x,t)&&!h(_,o)||h(_,t)&&!h(x,e)?"\\u"+w(m(t,0),16):t};d&&e({target:"JSON",stat:!0,arity:3,forced:O||j},{stringify:function(t,r,n){var e=l(arguments),o=i(O?A:d,null,e);return j&&"string"==typeof o?g(o,S,E):o}})},12657:function(t,r,n){"use strict";var e=n(83482);n(52837)(e.JSON,"JSON",!0)},41733:function(t,r,n){"use strict";n(52837)(Math,"Math",!0)},42483:function(t,r,n){"use strict";var e=n(73716),o=n(46909),i=n(18185),u=n(14203),c=n(32891);e({target:"Object",stat:!0,forced:!o||i((function(){u.f(1)}))},{getOwnPropertySymbols:function(t){var r=u.f;return r?r(c(t)):[]}})},71597:function(t,r,n){"use strict";var e=n(23826),o=n(75210),i=n(83637);e||o(Object.prototype,"toString",i,{unsafe:!0})},55822:function(t,r,n){"use strict";var e=n(73716),o=n(83482),i=n(52837);e({global:!0},{Reflect:{}}),i(o.Reflect,"Reflect",!0)},88778:function(t,r,n){"use strict";var e=n(63937).charAt,o=n(29637),i=n(36211),u=n(95838),c=n(46943),s="String Iterator",f=i.set,a=i.getterFor(s);u(String,"String",(function(t){f(this,{type:s,string:o(t),index:0})}),(function(){var t,r=a(this),n=r.string,o=r.index;return n.length>o?(t=e(n,o),r.index+=t.length,c(t,!1)):c(void 0,!0)}))},17802:function(t,r,n){"use strict";n(34409)("asyncIterator")},71955:function(t,r,n){"use strict";var e=n(73716),o=n(83482),i=n(45247),u=n(72058),c=n(81941),s=n(25134),f=n(46909),a=n(18185),l=n(6779),p=n(17119),v=n(59813),y=n(91295),d=n(23223),h=n(29637),b=n(83162),m=n(4538),g=n(33930),w=n(57126),S=n(6756),x=n(14203),_=n(55729),O=n(38523),j=n(93095),A=n(15355),E=n(75210),P=n(46312),I=n(61607),T=n(33873),F=n(16003),C=n(18746),R=n(84174),k=n(95325),M=n(34409),N=n(4512),L=n(52837),D=n(36211),G=n(98163).forEach,z=T("hidden"),B="Symbol",U="prototype",W=D.set,Y=D.getterFor(B),$=Object[U],J=o.Symbol,X=J&&J[U],q=o.RangeError,K=o.TypeError,V=o.QObject,H=_.f,Q=O.f,Z=S.f,tt=A.f,rt=u([].push),nt=I("symbols"),et=I("op-symbols"),ot=I("wks"),it=!V||!V[U]||!V[U].findChild,ut=function(t,r,n){var e=H($,r);e&&delete $[r],Q(t,r,n),e&&t!==$&&Q($,r,e)},ct=s&&a((function(){return 7!==m(Q({},"a",{get:function(){return Q(this,"a",{value:7}).a}})).a}))?ut:Q,st=function(t,r){var n=nt[t]=m(X);return W(n,{type:B,tag:t,description:r}),s||(n.description=r),n},ft=function(t,r,n){t===$&&ft(et,r,n),v(t);var e=d(r);return v(n),l(nt,e)?(n.enumerable?(l(t,z)&&t[z][e]&&(t[z][e]=!1),n=m(n,{enumerable:b(0,!1)})):(l(t,z)||Q(t,z,b(1,m(null))),t[z][e]=!0),ct(t,e,n)):Q(t,e,n)},at=function(t,r){v(t);var n=y(r),e=g(n).concat(yt(n));return G(e,(function(r){s&&!i(lt,n,r)||ft(t,r,n[r])})),t},lt=function(t){var r=d(t),n=i(tt,this,r);return!(this===$&&l(nt,r)&&!l(et,r))&&(!(n||!l(this,r)||!l(nt,r)||l(this,z)&&this[z][r])||n)},pt=function(t,r){var n=y(t),e=d(r);if(n!==$||!l(nt,e)||l(et,e)){var o=H(n,e);return!o||!l(nt,e)||l(n,z)&&n[z][e]||(o.enumerable=!0),o}},vt=function(t){var r=Z(y(t)),n=[];return G(r,(function(t){l(nt,t)||l(F,t)||rt(n,t)})),n},yt=function(t){var r=t===$,n=Z(r?et:y(t)),e=[];return G(n,(function(t){!l(nt,t)||r&&!l($,t)||rt(e,nt[t])})),e};f||(J=function(){if(p(X,this))throw new K("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?h(arguments[0]):void 0,r=C(t),n=function(t){var e=void 0===this?o:this;e===$&&i(n,et,t),l(e,z)&&l(e[z],r)&&(e[z][r]=!1);var u,c,s=b(1,t);try{ct(e,r,s)}catch(t){if(u=t,!(null!=(c=q)&&"undefined"!=typeof Symbol&&c[Symbol.hasInstance]?c[Symbol.hasInstance](u):u instanceof c))throw t;ut(e,r,s)}};return s&&it&&ct($,r,{configurable:!0,set:n}),st(r,t)},E(X=J[U],"toString",(function(){return Y(this).tag})),E(J,"withoutSetter",(function(t){return st(C(t),t)})),A.f=lt,O.f=ft,j.f=at,_.f=pt,w.f=S.f=vt,x.f=yt,k.f=function(t){return st(R(t),t)},s&&(P(X,"description",{configurable:!0,get:function(){return Y(this).description}}),c||E($,"propertyIsEnumerable",lt,{unsafe:!0}))),e({global:!0,constructor:!0,wrap:!0,forced:!f,sham:!f},{Symbol:J}),G(g(ot),(function(t){M(t)})),e({target:B,stat:!0,forced:!f},{useSetter:function(){it=!0},useSimple:function(){it=!1}}),e({target:"Object",stat:!0,forced:!f,sham:!s},{create:function(t,r){return void 0===r?m(t):at(m(t),r)},defineProperty:ft,defineProperties:at,getOwnPropertyDescriptor:pt}),e({target:"Object",stat:!0,forced:!f},{getOwnPropertyNames:vt}),N(),L(J,B),F[z]=!0},28429:function(t,r,n){"use strict";var e=n(73716),o=n(25134),i=n(83482),u=n(72058),c=n(6779),s=n(11195),f=n(17119),a=n(29637),l=n(46312),p=n(60710),v=i.Symbol,y=v&&v.prototype;if(o&&s(v)&&(!("description"in y)||void 0!==v().description)){var d={},h=function(){var t=1>arguments.length||void 0===arguments[0]?void 0:a(arguments[0]),r=f(y,this)?new v(t):void 0===t?v():v(t);return""===t&&(d[r]=!0),r};p(h,v),h.prototype=y,y.constructor=h;var b="Symbol(description detection)"===String(v("description detection")),m=u(y.valueOf),g=u(y.toString),w=/^Symbol\((.*)\)[^)]+$/,S=u("".replace),x=u("".slice);l(y,"description",{configurable:!0,get:function(){var t=m(this);if(c(d,t))return"";var r=g(t),n=b?x(r,7,-1):S(r,w,"$1");return""===n?void 0:n}}),e({global:!0,constructor:!0,forced:!0},{Symbol:h})}},820:function(t,r,n){"use strict";var e=n(73716),o=n(77825),i=n(6779),u=n(29637),c=n(61607),s=n(9922),f=c("string-to-symbol-registry"),a=c("symbol-to-string-registry");e({target:"Symbol",stat:!0,forced:!s},{for:function(t){var r=u(t);if(i(f,r))return f[r];var n=o("Symbol")(r);return f[r]=n,a[n]=r,n}})},83483:function(t,r,n){"use strict";n(34409)("hasInstance")},26918:function(t,r,n){"use strict";n(34409)("isConcatSpreadable")},43021:function(t,r,n){"use strict";n(34409)("iterator")},57705:function(t,r,n){"use strict";n(71955),n(820),n(51750),n(77272),n(42483)},51750:function(t,r,n){"use strict";var e=n(73716),o=n(6779),i=n(98415),u=n(52921),c=n(61607),s=n(9922),f=c("symbol-to-string-registry");e({target:"Symbol",stat:!0,forced:!s},{keyFor:function(t){if(!i(t))throw new TypeError(u(t)+" is not a symbol");if(o(f,t))return f[t]}})},60796:function(t,r,n){"use strict";n(34409)("matchAll")},44882:function(t,r,n){"use strict";n(34409)("match")},81863:function(t,r,n){"use strict";n(34409)("replace")},77467:function(t,r,n){"use strict";n(34409)("search")},17313:function(t,r,n){"use strict";n(34409)("species")},99031:function(t,r,n){"use strict";n(34409)("split")},32446:function(t,r,n){"use strict";var e=n(34409),o=n(4512);e("toPrimitive"),o()},59823:function(t,r,n){"use strict";var e=n(77825),o=n(34409),i=n(52837);o("toStringTag"),i(e("Symbol"),"Symbol")},752:function(t,r,n){"use strict";n(34409)("unscopables")}}]);
|