@opengeoweb/authentication 9.6.0 → 9.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.esm.js +361 -390
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -28,30 +28,30 @@ var functionBindNative = !fails$q(function () {
28
28
  var NATIVE_BIND$3 = functionBindNative;
29
29
 
30
30
  var FunctionPrototype$2 = Function.prototype;
31
- var call$k = FunctionPrototype$2.call;
32
- var uncurryThisWithBind = NATIVE_BIND$3 && FunctionPrototype$2.bind.bind(call$k, call$k);
31
+ var call$l = FunctionPrototype$2.call;
32
+ var uncurryThisWithBind = NATIVE_BIND$3 && FunctionPrototype$2.bind.bind(call$l, call$l);
33
33
 
34
34
  var functionUncurryThis = NATIVE_BIND$3 ? uncurryThisWithBind : function (fn) {
35
35
  return function () {
36
- return call$k.apply(fn, arguments);
36
+ return call$l.apply(fn, arguments);
37
37
  };
38
38
  };
39
39
 
40
- var uncurryThis$q = functionUncurryThis;
40
+ var uncurryThis$p = functionUncurryThis;
41
41
 
42
- var toString$7 = uncurryThis$q({}.toString);
43
- var stringSlice$6 = uncurryThis$q(''.slice);
42
+ var toString$7 = uncurryThis$p({}.toString);
43
+ var stringSlice$6 = uncurryThis$p(''.slice);
44
44
 
45
45
  var classofRaw$2 = function (it) {
46
46
  return stringSlice$6(toString$7(it), 8, -1);
47
47
  };
48
48
 
49
- var uncurryThis$p = functionUncurryThis;
49
+ var uncurryThis$o = functionUncurryThis;
50
50
  var fails$p = fails$r;
51
51
  var classof$c = classofRaw$2;
52
52
 
53
53
  var $Object$4 = Object;
54
- var split$1 = uncurryThis$p(''.split);
54
+ var split$1 = uncurryThis$o(''.split);
55
55
 
56
56
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
57
57
  var indexedObject = fails$p(function () {
@@ -92,7 +92,7 @@ var check = function (it) {
92
92
  };
93
93
 
94
94
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
95
- var global$n =
95
+ var global$o =
96
96
  // eslint-disable-next-line es/no-global-this -- safe
97
97
  check(typeof globalThis == 'object' && globalThis) ||
98
98
  check(typeof window == 'object' && window) ||
@@ -107,24 +107,24 @@ var shared$4 = {exports: {}};
107
107
 
108
108
  var isPure = false;
109
109
 
110
- var global$m = global$n;
110
+ var global$n = global$o;
111
111
 
112
112
  // eslint-disable-next-line es/no-object-defineproperty -- safe
113
113
  var defineProperty$6 = Object.defineProperty;
114
114
 
115
115
  var defineGlobalProperty$3 = function (key, value) {
116
116
  try {
117
- defineProperty$6(global$m, key, { value: value, configurable: true, writable: true });
117
+ defineProperty$6(global$n, key, { value: value, configurable: true, writable: true });
118
118
  } catch (error) {
119
- global$m[key] = value;
119
+ global$n[key] = value;
120
120
  } return value;
121
121
  };
122
122
 
123
- var global$l = global$n;
123
+ var global$m = global$o;
124
124
  var defineGlobalProperty$2 = defineGlobalProperty$3;
125
125
 
126
126
  var SHARED = '__core-js_shared__';
127
- var store$3 = global$l[SHARED] || defineGlobalProperty$2(SHARED, {});
127
+ var store$3 = global$m[SHARED] || defineGlobalProperty$2(SHARED, {});
128
128
 
129
129
  var sharedStore = store$3;
130
130
 
@@ -133,10 +133,10 @@ var store$2 = sharedStore;
133
133
  (shared$4.exports = function (key, value) {
134
134
  return store$2[key] || (store$2[key] = value !== undefined ? value : {});
135
135
  })('versions', []).push({
136
- version: '3.34.0',
136
+ version: '3.35.1',
137
137
  mode: 'global',
138
- copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
139
- license: 'https://github.com/zloirock/core-js/blob/v3.34.0/LICENSE',
138
+ copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
139
+ license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
140
140
  source: 'https://github.com/zloirock/core-js'
141
141
  });
142
142
 
@@ -150,10 +150,10 @@ var toObject$7 = function (argument) {
150
150
  return $Object$3(requireObjectCoercible$4(argument));
151
151
  };
152
152
 
153
- var uncurryThis$o = functionUncurryThis;
153
+ var uncurryThis$n = functionUncurryThis;
154
154
  var toObject$6 = toObject$7;
155
155
 
156
- var hasOwnProperty = uncurryThis$o({}.hasOwnProperty);
156
+ var hasOwnProperty = uncurryThis$n({}.hasOwnProperty);
157
157
 
158
158
  // `HasOwnProperty` abstract operation
159
159
  // https://tc39.es/ecma262/#sec-hasownproperty
@@ -162,11 +162,11 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
162
162
  return hasOwnProperty(toObject$6(it), key);
163
163
  };
164
164
 
165
- var uncurryThis$n = functionUncurryThis;
165
+ var uncurryThis$m = functionUncurryThis;
166
166
 
167
167
  var id = 0;
168
168
  var postfix = Math.random();
169
- var toString$6 = uncurryThis$n(1.0.toString);
169
+ var toString$6 = uncurryThis$m(1.0.toString);
170
170
 
171
171
  var uid$3 = function (key) {
172
172
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$6(++id + postfix, 36);
@@ -174,11 +174,11 @@ var uid$3 = function (key) {
174
174
 
175
175
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
176
176
 
177
- var global$k = global$n;
177
+ var global$l = global$o;
178
178
  var userAgent$2 = engineUserAgent;
179
179
 
180
- var process = global$k.process;
181
- var Deno = global$k.Deno;
180
+ var process = global$l.process;
181
+ var Deno = global$l.Deno;
182
182
  var versions = process && process.versions || Deno && Deno.version;
183
183
  var v8 = versions && versions.v8;
184
184
  var match, version;
@@ -205,9 +205,9 @@ var engineV8Version = version;
205
205
  /* eslint-disable es/no-symbol -- required for testing */
206
206
  var V8_VERSION = engineV8Version;
207
207
  var fails$o = fails$r;
208
- var global$j = global$n;
208
+ var global$k = global$o;
209
209
 
210
- var $String$5 = global$j.String;
210
+ var $String$5 = global$k.String;
211
211
 
212
212
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
213
213
  var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$o(function () {
@@ -228,14 +228,14 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
228
228
  && !Symbol.sham
229
229
  && typeof Symbol.iterator == 'symbol';
230
230
 
231
- var global$i = global$n;
231
+ var global$j = global$o;
232
232
  var shared$3 = shared$4.exports;
233
233
  var hasOwn$c = hasOwnProperty_1;
234
234
  var uid$2 = uid$3;
235
235
  var NATIVE_SYMBOL = symbolConstructorDetection;
236
236
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
237
237
 
238
- var Symbol$1 = global$i.Symbol;
238
+ var Symbol$1 = global$j.Symbol;
239
239
  var WellKnownSymbolsStore = shared$3('wks');
240
240
  var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$2;
241
241
 
@@ -247,48 +247,32 @@ var wellKnownSymbol$l = function (name) {
247
247
  } return WellKnownSymbolsStore[name];
248
248
  };
249
249
 
250
- var documentAll$2 = typeof document == 'object' && document.all;
251
-
252
250
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
253
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
254
- var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
255
-
256
- var documentAll_1 = {
257
- all: documentAll$2,
258
- IS_HTMLDDA: IS_HTMLDDA
259
- };
260
-
261
- var $documentAll$1 = documentAll_1;
262
-
263
- var documentAll$1 = $documentAll$1.all;
251
+ var documentAll = typeof document == 'object' && document.all;
264
252
 
265
253
  // `IsCallable` abstract operation
266
254
  // https://tc39.es/ecma262/#sec-iscallable
267
- var isCallable$l = $documentAll$1.IS_HTMLDDA ? function (argument) {
268
- return typeof argument == 'function' || argument === documentAll$1;
255
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
256
+ var isCallable$k = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
257
+ return typeof argument == 'function' || argument === documentAll;
269
258
  } : function (argument) {
270
259
  return typeof argument == 'function';
271
260
  };
272
261
 
273
- var isCallable$k = isCallable$l;
274
- var $documentAll = documentAll_1;
275
-
276
- var documentAll = $documentAll.all;
262
+ var isCallable$j = isCallable$k;
277
263
 
278
- var isObject$d = $documentAll.IS_HTMLDDA ? function (it) {
279
- return typeof it == 'object' ? it !== null : isCallable$k(it) || it === documentAll;
280
- } : function (it) {
281
- return typeof it == 'object' ? it !== null : isCallable$k(it);
264
+ var isObject$e = function (it) {
265
+ return typeof it == 'object' ? it !== null : isCallable$j(it);
282
266
  };
283
267
 
284
- var isObject$c = isObject$d;
268
+ var isObject$d = isObject$e;
285
269
 
286
270
  var $String$4 = String;
287
271
  var $TypeError$d = TypeError;
288
272
 
289
273
  // `Assert: Type(argument) is Object`
290
274
  var anObject$g = function (argument) {
291
- if (isObject$c(argument)) return argument;
275
+ if (isObject$d(argument)) return argument;
292
276
  throw new $TypeError$d($String$4(argument) + ' is not an object');
293
277
  };
294
278
 
@@ -302,12 +286,12 @@ var descriptors = !fails$n(function () {
302
286
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
303
287
  });
304
288
 
305
- var DESCRIPTORS$f = descriptors;
289
+ var DESCRIPTORS$g = descriptors;
306
290
  var fails$m = fails$r;
307
291
 
308
292
  // V8 ~ Chrome 36-
309
293
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
310
- var v8PrototypeDefineBug = DESCRIPTORS$f && fails$m(function () {
294
+ var v8PrototypeDefineBug = DESCRIPTORS$g && fails$m(function () {
311
295
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
312
296
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
313
297
  value: 42,
@@ -317,23 +301,23 @@ var v8PrototypeDefineBug = DESCRIPTORS$f && fails$m(function () {
317
301
 
318
302
  var objectDefineProperty = {};
319
303
 
320
- var global$h = global$n;
321
- var isObject$b = isObject$d;
304
+ var global$i = global$o;
305
+ var isObject$c = isObject$e;
322
306
 
323
- var document$1 = global$h.document;
307
+ var document$1 = global$i.document;
324
308
  // typeof document.createElement is 'object' in old IE
325
- var EXISTS$1 = isObject$b(document$1) && isObject$b(document$1.createElement);
309
+ var EXISTS$1 = isObject$c(document$1) && isObject$c(document$1.createElement);
326
310
 
327
311
  var documentCreateElement$2 = function (it) {
328
312
  return EXISTS$1 ? document$1.createElement(it) : {};
329
313
  };
330
314
 
331
- var DESCRIPTORS$e = descriptors;
315
+ var DESCRIPTORS$f = descriptors;
332
316
  var fails$l = fails$r;
333
317
  var createElement = documentCreateElement$2;
334
318
 
335
319
  // Thanks to IE8 for its funny defineProperty
336
- var ie8DomDefine = !DESCRIPTORS$e && !fails$l(function () {
320
+ var ie8DomDefine = !DESCRIPTORS$f && !fails$l(function () {
337
321
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
338
322
  return Object.defineProperty(createElement('div'), 'a', {
339
323
  get: function () { return 7; }
@@ -342,29 +326,29 @@ var ie8DomDefine = !DESCRIPTORS$e && !fails$l(function () {
342
326
 
343
327
  var NATIVE_BIND$2 = functionBindNative;
344
328
 
345
- var call$j = Function.prototype.call;
329
+ var call$k = Function.prototype.call;
346
330
 
347
- var functionCall = NATIVE_BIND$2 ? call$j.bind(call$j) : function () {
348
- return call$j.apply(call$j, arguments);
331
+ var functionCall = NATIVE_BIND$2 ? call$k.bind(call$k) : function () {
332
+ return call$k.apply(call$k, arguments);
349
333
  };
350
334
 
351
- var global$g = global$n;
352
- var isCallable$j = isCallable$l;
335
+ var global$h = global$o;
336
+ var isCallable$i = isCallable$k;
353
337
 
354
338
  var aFunction = function (argument) {
355
- return isCallable$j(argument) ? argument : undefined;
339
+ return isCallable$i(argument) ? argument : undefined;
356
340
  };
357
341
 
358
342
  var getBuiltIn$5 = function (namespace, method) {
359
- return arguments.length < 2 ? aFunction(global$g[namespace]) : global$g[namespace] && global$g[namespace][method];
343
+ return arguments.length < 2 ? aFunction(global$h[namespace]) : global$h[namespace] && global$h[namespace][method];
360
344
  };
361
345
 
362
- var uncurryThis$m = functionUncurryThis;
346
+ var uncurryThis$l = functionUncurryThis;
363
347
 
364
- var objectIsPrototypeOf = uncurryThis$m({}.isPrototypeOf);
348
+ var objectIsPrototypeOf = uncurryThis$l({}.isPrototypeOf);
365
349
 
366
350
  var getBuiltIn$4 = getBuiltIn$5;
367
- var isCallable$i = isCallable$l;
351
+ var isCallable$h = isCallable$k;
368
352
  var isPrototypeOf$5 = objectIsPrototypeOf;
369
353
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
370
354
 
@@ -374,7 +358,7 @@ var isSymbol$3 = USE_SYMBOL_AS_UID ? function (it) {
374
358
  return typeof it == 'symbol';
375
359
  } : function (it) {
376
360
  var $Symbol = getBuiltIn$4('Symbol');
377
- return isCallable$i($Symbol) && isPrototypeOf$5($Symbol.prototype, $Object$2(it));
361
+ return isCallable$h($Symbol) && isPrototypeOf$5($Symbol.prototype, $Object$2(it));
378
362
  };
379
363
 
380
364
  var $String$3 = String;
@@ -387,14 +371,14 @@ var tryToString$5 = function (argument) {
387
371
  }
388
372
  };
389
373
 
390
- var isCallable$h = isCallable$l;
374
+ var isCallable$g = isCallable$k;
391
375
  var tryToString$4 = tryToString$5;
392
376
 
393
377
  var $TypeError$c = TypeError;
394
378
 
395
379
  // `Assert: IsCallable(argument) is true`
396
380
  var aCallable$5 = function (argument) {
397
- if (isCallable$h(argument)) return argument;
381
+ if (isCallable$g(argument)) return argument;
398
382
  throw new $TypeError$c(tryToString$4(argument) + ' is not a function');
399
383
  };
400
384
 
@@ -408,9 +392,9 @@ var getMethod$5 = function (V, P) {
408
392
  return isNullOrUndefined$4(func) ? undefined : aCallable$4(func);
409
393
  };
410
394
 
411
- var call$i = functionCall;
412
- var isCallable$g = isCallable$l;
413
- var isObject$a = isObject$d;
395
+ var call$j = functionCall;
396
+ var isCallable$f = isCallable$k;
397
+ var isObject$b = isObject$e;
414
398
 
415
399
  var $TypeError$b = TypeError;
416
400
 
@@ -418,14 +402,14 @@ var $TypeError$b = TypeError;
418
402
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
419
403
  var ordinaryToPrimitive$1 = function (input, pref) {
420
404
  var fn, val;
421
- if (pref === 'string' && isCallable$g(fn = input.toString) && !isObject$a(val = call$i(fn, input))) return val;
422
- if (isCallable$g(fn = input.valueOf) && !isObject$a(val = call$i(fn, input))) return val;
423
- if (pref !== 'string' && isCallable$g(fn = input.toString) && !isObject$a(val = call$i(fn, input))) return val;
405
+ if (pref === 'string' && isCallable$f(fn = input.toString) && !isObject$b(val = call$j(fn, input))) return val;
406
+ if (isCallable$f(fn = input.valueOf) && !isObject$b(val = call$j(fn, input))) return val;
407
+ if (pref !== 'string' && isCallable$f(fn = input.toString) && !isObject$b(val = call$j(fn, input))) return val;
424
408
  throw new $TypeError$b("Can't convert object to primitive value");
425
409
  };
426
410
 
427
- var call$h = functionCall;
428
- var isObject$9 = isObject$d;
411
+ var call$i = functionCall;
412
+ var isObject$a = isObject$e;
429
413
  var isSymbol$2 = isSymbol$3;
430
414
  var getMethod$4 = getMethod$5;
431
415
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
@@ -437,13 +421,13 @@ var TO_PRIMITIVE = wellKnownSymbol$k('toPrimitive');
437
421
  // `ToPrimitive` abstract operation
438
422
  // https://tc39.es/ecma262/#sec-toprimitive
439
423
  var toPrimitive$2 = function (input, pref) {
440
- if (!isObject$9(input) || isSymbol$2(input)) return input;
424
+ if (!isObject$a(input) || isSymbol$2(input)) return input;
441
425
  var exoticToPrim = getMethod$4(input, TO_PRIMITIVE);
442
426
  var result;
443
427
  if (exoticToPrim) {
444
428
  if (pref === undefined) pref = 'default';
445
- result = call$h(exoticToPrim, input, pref);
446
- if (!isObject$9(result) || isSymbol$2(result)) return result;
429
+ result = call$i(exoticToPrim, input, pref);
430
+ if (!isObject$a(result) || isSymbol$2(result)) return result;
447
431
  throw new $TypeError$a("Can't convert object to primitive value");
448
432
  }
449
433
  if (pref === undefined) pref = 'number';
@@ -460,7 +444,7 @@ var toPropertyKey$4 = function (argument) {
460
444
  return isSymbol$1(key) ? key : key + '';
461
445
  };
462
446
 
463
- var DESCRIPTORS$d = descriptors;
447
+ var DESCRIPTORS$e = descriptors;
464
448
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
465
449
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
466
450
  var anObject$f = anObject$g;
@@ -477,7 +461,7 @@ var WRITABLE = 'writable';
477
461
 
478
462
  // `Object.defineProperty` method
479
463
  // https://tc39.es/ecma262/#sec-object.defineproperty
480
- objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
464
+ objectDefineProperty.f = DESCRIPTORS$e ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
481
465
  anObject$f(O);
482
466
  P = toPropertyKey$3(P);
483
467
  anObject$f(Attributes);
@@ -527,15 +511,15 @@ var toIntegerOrInfinity$7 = function (argument) {
527
511
 
528
512
  var toIntegerOrInfinity$6 = toIntegerOrInfinity$7;
529
513
 
530
- var max$2 = Math.max;
514
+ var max$1 = Math.max;
531
515
  var min$2 = Math.min;
532
516
 
533
517
  // Helper for a popular repeating case of the spec:
534
518
  // Let integer be ? ToInteger(index).
535
519
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
536
- var toAbsoluteIndex$4 = function (index, length) {
520
+ var toAbsoluteIndex$3 = function (index, length) {
537
521
  var integer = toIntegerOrInfinity$6(index);
538
- return integer < 0 ? max$2(integer + length, 0) : min$2(integer, length);
522
+ return integer < 0 ? max$1(integer + length, 0) : min$2(integer, length);
539
523
  };
540
524
 
541
525
  var toIntegerOrInfinity$5 = toIntegerOrInfinity$7;
@@ -545,7 +529,8 @@ var min$1 = Math.min;
545
529
  // `ToLength` abstract operation
546
530
  // https://tc39.es/ecma262/#sec-tolength
547
531
  var toLength$6 = function (argument) {
548
- return argument > 0 ? min$1(toIntegerOrInfinity$5(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
532
+ var len = toIntegerOrInfinity$5(argument);
533
+ return len > 0 ? min$1(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
549
534
  };
550
535
 
551
536
  var toLength$5 = toLength$6;
@@ -557,7 +542,7 @@ var lengthOfArrayLike$7 = function (obj) {
557
542
  };
558
543
 
559
544
  var toIndexedObject$5 = toIndexedObject$6;
560
- var toAbsoluteIndex$3 = toAbsoluteIndex$4;
545
+ var toAbsoluteIndex$2 = toAbsoluteIndex$3;
561
546
  var lengthOfArrayLike$6 = lengthOfArrayLike$7;
562
547
 
563
548
  // `Array.prototype.{ indexOf, includes }` methods implementation
@@ -565,7 +550,7 @@ var createMethod$2 = function (IS_INCLUDES) {
565
550
  return function ($this, el, fromIndex) {
566
551
  var O = toIndexedObject$5($this);
567
552
  var length = lengthOfArrayLike$6(O);
568
- var index = toAbsoluteIndex$3(fromIndex, length);
553
+ var index = toAbsoluteIndex$2(fromIndex, length);
569
554
  var value;
570
555
  // Array#includes uses SameValueZero equality algorithm
571
556
  // eslint-disable-next-line no-self-compare -- NaN check
@@ -591,13 +576,13 @@ var arrayIncludes = {
591
576
 
592
577
  var hiddenKeys$4 = {};
593
578
 
594
- var uncurryThis$l = functionUncurryThis;
579
+ var uncurryThis$k = functionUncurryThis;
595
580
  var hasOwn$b = hasOwnProperty_1;
596
581
  var toIndexedObject$4 = toIndexedObject$6;
597
582
  var indexOf$1 = arrayIncludes.indexOf;
598
583
  var hiddenKeys$3 = hiddenKeys$4;
599
584
 
600
- var push$3 = uncurryThis$l([].push);
585
+ var push$3 = uncurryThis$k([].push);
601
586
 
602
587
  var objectKeysInternal = function (object, names) {
603
588
  var O = toIndexedObject$4(object);
@@ -633,7 +618,7 @@ var objectKeys$2 = Object.keys || function keys(O) {
633
618
  return internalObjectKeys$1(O, enumBugKeys$2);
634
619
  };
635
620
 
636
- var DESCRIPTORS$c = descriptors;
621
+ var DESCRIPTORS$d = descriptors;
637
622
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
638
623
  var definePropertyModule$5 = objectDefineProperty;
639
624
  var anObject$e = anObject$g;
@@ -643,7 +628,7 @@ var objectKeys$1 = objectKeys$2;
643
628
  // `Object.defineProperties` method
644
629
  // https://tc39.es/ecma262/#sec-object.defineproperties
645
630
  // eslint-disable-next-line es/no-object-defineproperties -- safe
646
- objectDefineProperties.f = DESCRIPTORS$c && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
631
+ objectDefineProperties.f = DESCRIPTORS$d && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
647
632
  anObject$e(O);
648
633
  var props = toIndexedObject$3(Properties);
649
634
  var keys = objectKeys$1(Properties);
@@ -661,10 +646,10 @@ var html$1 = getBuiltIn$3('document', 'documentElement');
661
646
  var shared$2 = shared$4.exports;
662
647
  var uid$1 = uid$3;
663
648
 
664
- var keys$1 = shared$2('keys');
649
+ var keys = shared$2('keys');
665
650
 
666
651
  var sharedKey$3 = function (key) {
667
- return keys$1[key] || (keys$1[key] = uid$1(key));
652
+ return keys[key] || (keys[key] = uid$1(key));
668
653
  };
669
654
 
670
655
  /* global ActiveXObject -- old IE, WSH */
@@ -774,12 +759,12 @@ var addToUnscopables$2 = function (key) {
774
759
 
775
760
  var iterators = {};
776
761
 
777
- var global$f = global$n;
778
- var isCallable$f = isCallable$l;
762
+ var global$g = global$o;
763
+ var isCallable$e = isCallable$k;
779
764
 
780
- var WeakMap$1 = global$f.WeakMap;
765
+ var WeakMap$1 = global$g.WeakMap;
781
766
 
782
- var weakMapBasicDetection = isCallable$f(WeakMap$1) && /native code/.test(String(WeakMap$1));
767
+ var weakMapBasicDetection = isCallable$e(WeakMap$1) && /native code/.test(String(WeakMap$1));
783
768
 
784
769
  var createPropertyDescriptor$6 = function (bitmap, value) {
785
770
  return {
@@ -790,11 +775,11 @@ var createPropertyDescriptor$6 = function (bitmap, value) {
790
775
  };
791
776
  };
792
777
 
793
- var DESCRIPTORS$b = descriptors;
778
+ var DESCRIPTORS$c = descriptors;
794
779
  var definePropertyModule$4 = objectDefineProperty;
795
780
  var createPropertyDescriptor$5 = createPropertyDescriptor$6;
796
781
 
797
- var createNonEnumerableProperty$8 = DESCRIPTORS$b ? function (object, key, value) {
782
+ var createNonEnumerableProperty$8 = DESCRIPTORS$c ? function (object, key, value) {
798
783
  return definePropertyModule$4.f(object, key, createPropertyDescriptor$5(1, value));
799
784
  } : function (object, key, value) {
800
785
  object[key] = value;
@@ -802,8 +787,8 @@ var createNonEnumerableProperty$8 = DESCRIPTORS$b ? function (object, key, value
802
787
  };
803
788
 
804
789
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
805
- var global$e = global$n;
806
- var isObject$8 = isObject$d;
790
+ var global$f = global$o;
791
+ var isObject$9 = isObject$e;
807
792
  var createNonEnumerableProperty$7 = createNonEnumerableProperty$8;
808
793
  var hasOwn$a = hasOwnProperty_1;
809
794
  var shared$1 = sharedStore;
@@ -811,8 +796,8 @@ var sharedKey$1 = sharedKey$3;
811
796
  var hiddenKeys$1 = hiddenKeys$4;
812
797
 
813
798
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
814
- var TypeError$3 = global$e.TypeError;
815
- var WeakMap = global$e.WeakMap;
799
+ var TypeError$3 = global$f.TypeError;
800
+ var WeakMap = global$f.WeakMap;
816
801
  var set$1, get$1, has;
817
802
 
818
803
  var enforce = function (it) {
@@ -822,7 +807,7 @@ var enforce = function (it) {
822
807
  var getterFor = function (TYPE) {
823
808
  return function (it) {
824
809
  var state;
825
- if (!isObject$8(it) || (state = get$1(it)).type !== TYPE) {
810
+ if (!isObject$9(it) || (state = get$1(it)).type !== TYPE) {
826
811
  throw new TypeError$3('Incompatible receiver, ' + TYPE + ' required');
827
812
  } return state;
828
813
  };
@@ -890,8 +875,8 @@ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
890
875
  return !!descriptor && descriptor.enumerable;
891
876
  } : $propertyIsEnumerable;
892
877
 
893
- var DESCRIPTORS$a = descriptors;
894
- var call$g = functionCall;
878
+ var DESCRIPTORS$b = descriptors;
879
+ var call$h = functionCall;
895
880
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
896
881
  var createPropertyDescriptor$4 = createPropertyDescriptor$6;
897
882
  var toIndexedObject$2 = toIndexedObject$6;
@@ -904,28 +889,28 @@ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
904
889
 
905
890
  // `Object.getOwnPropertyDescriptor` method
906
891
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
907
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$a ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
892
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$b ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
908
893
  O = toIndexedObject$2(O);
909
894
  P = toPropertyKey$2(P);
910
895
  if (IE8_DOM_DEFINE) try {
911
896
  return $getOwnPropertyDescriptor(O, P);
912
897
  } catch (error) { /* empty */ }
913
- if (hasOwn$9(O, P)) return createPropertyDescriptor$4(!call$g(propertyIsEnumerableModule$1.f, O, P), O[P]);
898
+ if (hasOwn$9(O, P)) return createPropertyDescriptor$4(!call$h(propertyIsEnumerableModule$1.f, O, P), O[P]);
914
899
  };
915
900
 
916
901
  var makeBuiltIn$3 = {exports: {}};
917
902
 
918
- var DESCRIPTORS$9 = descriptors;
903
+ var DESCRIPTORS$a = descriptors;
919
904
  var hasOwn$8 = hasOwnProperty_1;
920
905
 
921
906
  var FunctionPrototype$1 = Function.prototype;
922
907
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
923
- var getDescriptor = DESCRIPTORS$9 && Object.getOwnPropertyDescriptor;
908
+ var getDescriptor = DESCRIPTORS$a && Object.getOwnPropertyDescriptor;
924
909
 
925
910
  var EXISTS = hasOwn$8(FunctionPrototype$1, 'name');
926
911
  // additional protection from minified / mangled / dropped function names
927
912
  var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
928
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$9 || (DESCRIPTORS$9 && getDescriptor(FunctionPrototype$1, 'name').configurable));
913
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$a || (DESCRIPTORS$a && getDescriptor(FunctionPrototype$1, 'name').configurable));
929
914
 
930
915
  var functionName = {
931
916
  EXISTS: EXISTS,
@@ -933,14 +918,14 @@ var functionName = {
933
918
  CONFIGURABLE: CONFIGURABLE
934
919
  };
935
920
 
936
- var uncurryThis$k = functionUncurryThis;
937
- var isCallable$e = isCallable$l;
921
+ var uncurryThis$j = functionUncurryThis;
922
+ var isCallable$d = isCallable$k;
938
923
  var store = sharedStore;
939
924
 
940
- var functionToString = uncurryThis$k(Function.toString);
925
+ var functionToString = uncurryThis$j(Function.toString);
941
926
 
942
927
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
943
- if (!isCallable$e(store.inspectSource)) {
928
+ if (!isCallable$d(store.inspectSource)) {
944
929
  store.inspectSource = function (it) {
945
930
  return functionToString(it);
946
931
  };
@@ -948,11 +933,11 @@ if (!isCallable$e(store.inspectSource)) {
948
933
 
949
934
  var inspectSource$2 = store.inspectSource;
950
935
 
951
- var uncurryThis$j = functionUncurryThis;
936
+ var uncurryThis$i = functionUncurryThis;
952
937
  var fails$k = fails$r;
953
- var isCallable$d = isCallable$l;
938
+ var isCallable$c = isCallable$k;
954
939
  var hasOwn$7 = hasOwnProperty_1;
955
- var DESCRIPTORS$8 = descriptors;
940
+ var DESCRIPTORS$9 = descriptors;
956
941
  var CONFIGURABLE_FUNCTION_NAME$2 = functionName.CONFIGURABLE;
957
942
  var inspectSource$1 = inspectSource$2;
958
943
  var InternalStateModule$5 = internalState;
@@ -962,11 +947,11 @@ var getInternalState$4 = InternalStateModule$5.get;
962
947
  var $String$2 = String;
963
948
  // eslint-disable-next-line es/no-object-defineproperty -- safe
964
949
  var defineProperty$4 = Object.defineProperty;
965
- var stringSlice$5 = uncurryThis$j(''.slice);
966
- var replace$3 = uncurryThis$j(''.replace);
967
- var join$1 = uncurryThis$j([].join);
950
+ var stringSlice$5 = uncurryThis$i(''.slice);
951
+ var replace$3 = uncurryThis$i(''.replace);
952
+ var join$1 = uncurryThis$i([].join);
968
953
 
969
- var CONFIGURABLE_LENGTH = DESCRIPTORS$8 && !fails$k(function () {
954
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$9 && !fails$k(function () {
970
955
  return defineProperty$4(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
971
956
  });
972
957
 
@@ -974,12 +959,12 @@ var TEMPLATE = String(String).split('String');
974
959
 
975
960
  var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
976
961
  if (stringSlice$5($String$2(name), 0, 7) === 'Symbol(') {
977
- name = '[' + replace$3($String$2(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
962
+ name = '[' + replace$3($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
978
963
  }
979
964
  if (options && options.getter) name = 'get ' + name;
980
965
  if (options && options.setter) name = 'set ' + name;
981
966
  if (!hasOwn$7(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$2 && value.name !== name)) {
982
- if (DESCRIPTORS$8) defineProperty$4(value, 'name', { value: name, configurable: true });
967
+ if (DESCRIPTORS$9) defineProperty$4(value, 'name', { value: name, configurable: true });
983
968
  else value.name = name;
984
969
  }
985
970
  if (CONFIGURABLE_LENGTH && options && hasOwn$7(options, 'arity') && value.length !== options.arity) {
@@ -987,7 +972,7 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
987
972
  }
988
973
  try {
989
974
  if (options && hasOwn$7(options, 'constructor') && options.constructor) {
990
- if (DESCRIPTORS$8) defineProperty$4(value, 'prototype', { writable: false });
975
+ if (DESCRIPTORS$9) defineProperty$4(value, 'prototype', { writable: false });
991
976
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
992
977
  } else if (value.prototype) value.prototype = undefined;
993
978
  } catch (error) { /* empty */ }
@@ -1000,10 +985,10 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
1000
985
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
1001
986
  // eslint-disable-next-line no-extend-native -- required
1002
987
  Function.prototype.toString = makeBuiltIn$2(function toString() {
1003
- return isCallable$d(this) && getInternalState$4(this).source || inspectSource$1(this);
988
+ return isCallable$c(this) && getInternalState$4(this).source || inspectSource$1(this);
1004
989
  }, 'toString');
1005
990
 
1006
- var isCallable$c = isCallable$l;
991
+ var isCallable$b = isCallable$k;
1007
992
  var definePropertyModule$3 = objectDefineProperty;
1008
993
  var makeBuiltIn$1 = makeBuiltIn$3.exports;
1009
994
  var defineGlobalProperty$1 = defineGlobalProperty$3;
@@ -1012,7 +997,7 @@ var defineBuiltIn$8 = function (O, key, value, options) {
1012
997
  if (!options) options = {};
1013
998
  var simple = options.enumerable;
1014
999
  var name = options.name !== undefined ? options.name : key;
1015
- if (isCallable$c(value)) makeBuiltIn$1(value, name, options);
1000
+ if (isCallable$b(value)) makeBuiltIn$1(value, name, options);
1016
1001
  if (options.global) {
1017
1002
  if (simple) O[key] = value;
1018
1003
  else defineGlobalProperty$1(key, value);
@@ -1051,12 +1036,12 @@ var objectGetOwnPropertySymbols = {};
1051
1036
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1052
1037
 
1053
1038
  var getBuiltIn$2 = getBuiltIn$5;
1054
- var uncurryThis$i = functionUncurryThis;
1039
+ var uncurryThis$h = functionUncurryThis;
1055
1040
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1056
1041
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1057
1042
  var anObject$c = anObject$g;
1058
1043
 
1059
- var concat$2 = uncurryThis$i([].concat);
1044
+ var concat$2 = uncurryThis$h([].concat);
1060
1045
 
1061
1046
  // all object keys, includes non-enumerable and symbols
1062
1047
  var ownKeys$1 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
@@ -1070,7 +1055,7 @@ var ownKeys = ownKeys$1;
1070
1055
  var getOwnPropertyDescriptorModule$1 = objectGetOwnPropertyDescriptor;
1071
1056
  var definePropertyModule$2 = objectDefineProperty;
1072
1057
 
1073
- var copyConstructorProperties$1 = function (target, source, exceptions) {
1058
+ var copyConstructorProperties$2 = function (target, source, exceptions) {
1074
1059
  var keys = ownKeys(source);
1075
1060
  var defineProperty = definePropertyModule$2.f;
1076
1061
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule$1.f;
@@ -1083,7 +1068,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
1083
1068
  };
1084
1069
 
1085
1070
  var fails$j = fails$r;
1086
- var isCallable$b = isCallable$l;
1071
+ var isCallable$a = isCallable$k;
1087
1072
 
1088
1073
  var replacement = /#|\.prototype\./;
1089
1074
 
@@ -1091,7 +1076,7 @@ var isForced$1 = function (feature, detection) {
1091
1076
  var value = data[normalize(feature)];
1092
1077
  return value === POLYFILL ? true
1093
1078
  : value === NATIVE ? false
1094
- : isCallable$b(detection) ? fails$j(detection)
1079
+ : isCallable$a(detection) ? fails$j(detection)
1095
1080
  : !!detection;
1096
1081
  };
1097
1082
 
@@ -1105,12 +1090,12 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
1105
1090
 
1106
1091
  var isForced_1 = isForced$1;
1107
1092
 
1108
- var global$d = global$n;
1093
+ var global$e = global$o;
1109
1094
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1110
1095
  var createNonEnumerableProperty$6 = createNonEnumerableProperty$8;
1111
1096
  var defineBuiltIn$7 = defineBuiltIn$8;
1112
1097
  var defineGlobalProperty = defineGlobalProperty$3;
1113
- var copyConstructorProperties = copyConstructorProperties$1;
1098
+ var copyConstructorProperties$1 = copyConstructorProperties$2;
1114
1099
  var isForced = isForced_1;
1115
1100
 
1116
1101
  /*
@@ -1134,11 +1119,11 @@ var _export = function (options, source) {
1134
1119
  var STATIC = options.stat;
1135
1120
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1136
1121
  if (GLOBAL) {
1137
- target = global$d;
1122
+ target = global$e;
1138
1123
  } else if (STATIC) {
1139
- target = global$d[TARGET] || defineGlobalProperty(TARGET, {});
1124
+ target = global$e[TARGET] || defineGlobalProperty(TARGET, {});
1140
1125
  } else {
1141
- target = (global$d[TARGET] || {}).prototype;
1126
+ target = global$e[TARGET] && global$e[TARGET].prototype;
1142
1127
  }
1143
1128
  if (target) for (key in source) {
1144
1129
  sourceProperty = source[key];
@@ -1150,7 +1135,7 @@ var _export = function (options, source) {
1150
1135
  // contained in target
1151
1136
  if (!FORCED && targetProperty !== undefined) {
1152
1137
  if (typeof sourceProperty == typeof targetProperty) continue;
1153
- copyConstructorProperties(sourceProperty, targetProperty);
1138
+ copyConstructorProperties$1(sourceProperty, targetProperty);
1154
1139
  }
1155
1140
  // add a flag to not completely full polyfills
1156
1141
  if (options.sham || (targetProperty && targetProperty.sham)) {
@@ -1170,7 +1155,7 @@ var correctPrototypeGetter = !fails$i(function () {
1170
1155
  });
1171
1156
 
1172
1157
  var hasOwn$5 = hasOwnProperty_1;
1173
- var isCallable$a = isCallable$l;
1158
+ var isCallable$9 = isCallable$k;
1174
1159
  var toObject$5 = toObject$7;
1175
1160
  var sharedKey = sharedKey$3;
1176
1161
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
@@ -1186,14 +1171,14 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf :
1186
1171
  var object = toObject$5(O);
1187
1172
  if (hasOwn$5(object, IE_PROTO)) return object[IE_PROTO];
1188
1173
  var constructor = object.constructor;
1189
- if (isCallable$a(constructor) && object instanceof constructor) {
1174
+ if (isCallable$9(constructor) && object instanceof constructor) {
1190
1175
  return constructor.prototype;
1191
1176
  } return object instanceof $Object$1 ? ObjectPrototype$2 : null;
1192
1177
  };
1193
1178
 
1194
1179
  var fails$h = fails$r;
1195
- var isCallable$9 = isCallable$l;
1196
- var isObject$7 = isObject$d;
1180
+ var isCallable$8 = isCallable$k;
1181
+ var isObject$8 = isObject$e;
1197
1182
  var getPrototypeOf$3 = objectGetPrototypeOf;
1198
1183
  var defineBuiltIn$6 = defineBuiltIn$8;
1199
1184
  var wellKnownSymbol$i = wellKnownSymbol$l;
@@ -1216,7 +1201,7 @@ if ([].keys) {
1216
1201
  }
1217
1202
  }
1218
1203
 
1219
- var NEW_ITERATOR_PROTOTYPE = !isObject$7(IteratorPrototype$2) || fails$h(function () {
1204
+ var NEW_ITERATOR_PROTOTYPE = !isObject$8(IteratorPrototype$2) || fails$h(function () {
1220
1205
  var test = {};
1221
1206
  // FF44- legacy iterators case
1222
1207
  return IteratorPrototype$2[ITERATOR$7].call(test) !== test;
@@ -1226,7 +1211,7 @@ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1226
1211
 
1227
1212
  // `%IteratorPrototype%[@@iterator]()` method
1228
1213
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1229
- if (!isCallable$9(IteratorPrototype$2[ITERATOR$7])) {
1214
+ if (!isCallable$8(IteratorPrototype$2[ITERATOR$7])) {
1230
1215
  defineBuiltIn$6(IteratorPrototype$2, ITERATOR$7, function () {
1231
1216
  return this;
1232
1217
  });
@@ -1266,23 +1251,29 @@ var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUME
1266
1251
  return IteratorConstructor;
1267
1252
  };
1268
1253
 
1269
- var uncurryThis$h = functionUncurryThis;
1254
+ var uncurryThis$g = functionUncurryThis;
1270
1255
  var aCallable$3 = aCallable$5;
1271
1256
 
1272
1257
  var functionUncurryThisAccessor = function (object, key, method) {
1273
1258
  try {
1274
1259
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1275
- return uncurryThis$h(aCallable$3(Object.getOwnPropertyDescriptor(object, key)[method]));
1260
+ return uncurryThis$g(aCallable$3(Object.getOwnPropertyDescriptor(object, key)[method]));
1276
1261
  } catch (error) { /* empty */ }
1277
1262
  };
1278
1263
 
1279
- var isCallable$8 = isCallable$l;
1264
+ var isObject$7 = isObject$e;
1265
+
1266
+ var isPossiblePrototype$1 = function (argument) {
1267
+ return isObject$7(argument) || argument === null;
1268
+ };
1269
+
1270
+ var isPossiblePrototype = isPossiblePrototype$1;
1280
1271
 
1281
1272
  var $String$1 = String;
1282
1273
  var $TypeError$8 = TypeError;
1283
1274
 
1284
1275
  var aPossiblePrototype$1 = function (argument) {
1285
- if (typeof argument == 'object' || isCallable$8(argument)) return argument;
1276
+ if (isPossiblePrototype(argument)) return argument;
1286
1277
  throw new $TypeError$8("Can't set " + $String$1(argument) + ' as a prototype');
1287
1278
  };
1288
1279
 
@@ -1314,9 +1305,9 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1314
1305
  }() : undefined);
1315
1306
 
1316
1307
  var $$8 = _export;
1317
- var call$f = functionCall;
1308
+ var call$g = functionCall;
1318
1309
  var FunctionName$1 = functionName;
1319
- var isCallable$7 = isCallable$l;
1310
+ var isCallable$7 = isCallable$k;
1320
1311
  var createIteratorConstructor$1 = iteratorCreateConstructor;
1321
1312
  var getPrototypeOf$2 = objectGetPrototypeOf;
1322
1313
  var setPrototypeOf$4 = objectSetPrototypeOf;
@@ -1386,7 +1377,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1386
1377
  createNonEnumerableProperty$5(IterablePrototype, 'name', VALUES);
1387
1378
  } else {
1388
1379
  INCORRECT_VALUES_NAME = true;
1389
- defaultIterator = function values() { return call$f(nativeIterator, this); };
1380
+ defaultIterator = function values() { return call$g(nativeIterator, this); };
1390
1381
  }
1391
1382
  }
1392
1383
 
@@ -1426,7 +1417,7 @@ var InternalStateModule$4 = internalState;
1426
1417
  var defineProperty$2 = objectDefineProperty.f;
1427
1418
  var defineIterator = iteratorDefine;
1428
1419
  var createIterResultObject$1 = createIterResultObject$2;
1429
- var DESCRIPTORS$7 = descriptors;
1420
+ var DESCRIPTORS$8 = descriptors;
1430
1421
 
1431
1422
  var ARRAY_ITERATOR = 'Array Iterator';
1432
1423
  var setInternalState$3 = InternalStateModule$4.set;
@@ -1476,7 +1467,7 @@ addToUnscopables$1('values');
1476
1467
  addToUnscopables$1('entries');
1477
1468
 
1478
1469
  // V8 ~ Chrome 45- bug
1479
- if (DESCRIPTORS$7 && values.name !== 'values') try {
1470
+ if (DESCRIPTORS$8 && values.name !== 'values') try {
1480
1471
  defineProperty$2(values, 'name', { value: 'values' });
1481
1472
  } catch (error) { /* empty */ }
1482
1473
 
@@ -1524,7 +1515,7 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
1524
1515
 
1525
1516
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1526
1517
 
1527
- var global$c = global$n;
1518
+ var global$d = global$o;
1528
1519
  var DOMIterables = domIterables;
1529
1520
  var DOMTokenListPrototype = domTokenListPrototype;
1530
1521
  var ArrayIteratorMethods = es_array_iterator;
@@ -1556,26 +1547,26 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1556
1547
  };
1557
1548
 
1558
1549
  for (var COLLECTION_NAME in DOMIterables) {
1559
- handlePrototype(global$c[COLLECTION_NAME] && global$c[COLLECTION_NAME].prototype, COLLECTION_NAME);
1550
+ handlePrototype(global$d[COLLECTION_NAME] && global$d[COLLECTION_NAME].prototype, COLLECTION_NAME);
1560
1551
  }
1561
1552
 
1562
1553
  handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
1563
1554
 
1564
1555
  var classofRaw$1 = classofRaw$2;
1565
- var uncurryThis$g = functionUncurryThis;
1556
+ var uncurryThis$f = functionUncurryThis;
1566
1557
 
1567
1558
  var functionUncurryThisClause = function (fn) {
1568
1559
  // Nashorn bug:
1569
1560
  // https://github.com/zloirock/core-js/issues/1128
1570
1561
  // https://github.com/zloirock/core-js/issues/1130
1571
- if (classofRaw$1(fn) === 'Function') return uncurryThis$g(fn);
1562
+ if (classofRaw$1(fn) === 'Function') return uncurryThis$f(fn);
1572
1563
  };
1573
1564
 
1574
- var uncurryThis$f = functionUncurryThisClause;
1565
+ var uncurryThis$e = functionUncurryThisClause;
1575
1566
  var aCallable$2 = aCallable$5;
1576
1567
  var NATIVE_BIND$1 = functionBindNative;
1577
1568
 
1578
- var bind$4 = uncurryThis$f(uncurryThis$f.bind);
1569
+ var bind$4 = uncurryThis$e(uncurryThis$e.bind);
1579
1570
 
1580
1571
  // optional / simple context binding
1581
1572
  var functionBindContext = function (fn, that) {
@@ -1606,7 +1597,7 @@ test[TO_STRING_TAG$2] = 'z';
1606
1597
  var toStringTagSupport = String(test) === '[object z]';
1607
1598
 
1608
1599
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1609
- var isCallable$6 = isCallable$l;
1600
+ var isCallable$6 = isCallable$k;
1610
1601
  var classofRaw = classofRaw$2;
1611
1602
  var wellKnownSymbol$c = wellKnownSymbol$l;
1612
1603
 
@@ -1649,7 +1640,7 @@ var getIteratorMethod$4 = function (it) {
1649
1640
  || Iterators[classof$a(it)];
1650
1641
  };
1651
1642
 
1652
- var call$e = functionCall;
1643
+ var call$f = functionCall;
1653
1644
  var aCallable$1 = aCallable$5;
1654
1645
  var anObject$a = anObject$g;
1655
1646
  var tryToString$3 = tryToString$5;
@@ -1659,11 +1650,11 @@ var $TypeError$7 = TypeError;
1659
1650
 
1660
1651
  var getIterator$3 = function (argument, usingIterator) {
1661
1652
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$3(argument) : usingIterator;
1662
- if (aCallable$1(iteratorMethod)) return anObject$a(call$e(iteratorMethod, argument));
1653
+ if (aCallable$1(iteratorMethod)) return anObject$a(call$f(iteratorMethod, argument));
1663
1654
  throw new $TypeError$7(tryToString$3(argument) + ' is not iterable');
1664
1655
  };
1665
1656
 
1666
- var call$d = functionCall;
1657
+ var call$e = functionCall;
1667
1658
  var anObject$9 = anObject$g;
1668
1659
  var getMethod$2 = getMethod$5;
1669
1660
 
@@ -1676,7 +1667,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
1676
1667
  if (kind === 'throw') throw value;
1677
1668
  return value;
1678
1669
  }
1679
- innerResult = call$d(innerResult, iterator);
1670
+ innerResult = call$e(innerResult, iterator);
1680
1671
  } catch (error) {
1681
1672
  innerError = true;
1682
1673
  innerResult = error;
@@ -1688,7 +1679,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
1688
1679
  };
1689
1680
 
1690
1681
  var bind$3 = functionBindContext;
1691
- var call$c = functionCall;
1682
+ var call$d = functionCall;
1692
1683
  var anObject$8 = anObject$g;
1693
1684
  var tryToString$2 = tryToString$5;
1694
1685
  var isArrayIteratorMethod$1 = isArrayIteratorMethod$2;
@@ -1746,7 +1737,7 @@ var iterate$1 = function (iterable, unboundFunction, options) {
1746
1737
  }
1747
1738
 
1748
1739
  next = IS_RECORD ? iterable.next : iterator.next;
1749
- while (!(step = call$c(next, iterator)).done) {
1740
+ while (!(step = call$d(next, iterator)).done) {
1750
1741
  try {
1751
1742
  result = callFn(step.value);
1752
1743
  } catch (error) {
@@ -1760,7 +1751,7 @@ var toPropertyKey$1 = toPropertyKey$4;
1760
1751
  var definePropertyModule$1 = objectDefineProperty;
1761
1752
  var createPropertyDescriptor$2 = createPropertyDescriptor$6;
1762
1753
 
1763
- var createProperty$2 = function (object, key, value) {
1754
+ var createProperty$1 = function (object, key, value) {
1764
1755
  var propertyKey = toPropertyKey$1(key);
1765
1756
  if (propertyKey in object) definePropertyModule$1.f(object, propertyKey, createPropertyDescriptor$2(0, value));
1766
1757
  else object[propertyKey] = value;
@@ -1768,7 +1759,7 @@ var createProperty$2 = function (object, key, value) {
1768
1759
 
1769
1760
  var $$7 = _export;
1770
1761
  var iterate = iterate$1;
1771
- var createProperty$1 = createProperty$2;
1762
+ var createProperty = createProperty$1;
1772
1763
 
1773
1764
  // `Object.fromEntries` method
1774
1765
  // https://github.com/tc39/proposal-object-from-entries
@@ -1776,12 +1767,25 @@ $$7({ target: 'Object', stat: true }, {
1776
1767
  fromEntries: function fromEntries(iterable) {
1777
1768
  var obj = {};
1778
1769
  iterate(iterable, function (k, v) {
1779
- createProperty$1(obj, k, v);
1770
+ createProperty(obj, k, v);
1780
1771
  }, { AS_ENTRIES: true });
1781
1772
  return obj;
1782
1773
  }
1783
1774
  });
1784
1775
 
1776
+ var global$c = global$o;
1777
+ var DESCRIPTORS$7 = descriptors;
1778
+
1779
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1780
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1781
+
1782
+ // Avoid NodeJS experimental warning
1783
+ var safeGetBuiltIn$1 = function (name) {
1784
+ if (!DESCRIPTORS$7) return global$c[name];
1785
+ var descriptor = getOwnPropertyDescriptor(global$c, name);
1786
+ return descriptor && descriptor.value;
1787
+ };
1788
+
1785
1789
  var fails$g = fails$r;
1786
1790
  var wellKnownSymbol$a = wellKnownSymbol$l;
1787
1791
  var DESCRIPTORS$6 = descriptors;
@@ -1865,75 +1869,59 @@ var validateArgumentsLength$1 = function (passed, required) {
1865
1869
  return passed;
1866
1870
  };
1867
1871
 
1868
- var toAbsoluteIndex$2 = toAbsoluteIndex$4;
1869
- var lengthOfArrayLike$4 = lengthOfArrayLike$7;
1870
- var createProperty = createProperty$2;
1871
-
1872
- var $Array$2 = Array;
1873
- var max$1 = Math.max;
1872
+ var uncurryThis$d = functionUncurryThis;
1874
1873
 
1875
- var arraySliceSimple = function (O, start, end) {
1876
- var length = lengthOfArrayLike$4(O);
1877
- var k = toAbsoluteIndex$2(start, length);
1878
- var fin = toAbsoluteIndex$2(end === undefined ? length : end, length);
1879
- var result = $Array$2(max$1(fin - k, 0));
1880
- var n = 0;
1881
- for (; k < fin; k++, n++) createProperty(result, n, O[k]);
1882
- result.length = n;
1883
- return result;
1884
- };
1874
+ var arraySlice$3 = uncurryThis$d([].slice);
1885
1875
 
1886
- var arraySlice$3 = arraySliceSimple;
1876
+ var arraySlice$2 = arraySlice$3;
1887
1877
 
1888
1878
  var floor$3 = Math.floor;
1889
1879
 
1890
- var mergeSort = function (array, comparefn) {
1880
+ var sort = function (array, comparefn) {
1891
1881
  var length = array.length;
1892
- var middle = floor$3(length / 2);
1893
- return length < 8 ? insertionSort(array, comparefn) : merge(
1894
- array,
1895
- mergeSort(arraySlice$3(array, 0, middle), comparefn),
1896
- mergeSort(arraySlice$3(array, middle), comparefn),
1897
- comparefn
1898
- );
1899
- };
1900
1882
 
1901
- var insertionSort = function (array, comparefn) {
1902
- var length = array.length;
1903
- var i = 1;
1904
- var element, j;
1905
-
1906
- while (i < length) {
1907
- j = i;
1908
- element = array[i];
1909
- while (j && comparefn(array[j - 1], element) > 0) {
1910
- array[j] = array[--j];
1911
- }
1912
- if (j !== i++) array[j] = element;
1913
- } return array;
1914
- };
1883
+ if (length < 8) {
1884
+ // insertion sort
1885
+ var i = 1;
1886
+ var element, j;
1915
1887
 
1916
- var merge = function (array, left, right, comparefn) {
1917
- var llength = left.length;
1918
- var rlength = right.length;
1919
- var lindex = 0;
1920
- var rindex = 0;
1888
+ while (i < length) {
1889
+ j = i;
1890
+ element = array[i];
1891
+ while (j && comparefn(array[j - 1], element) > 0) {
1892
+ array[j] = array[--j];
1893
+ }
1894
+ if (j !== i++) array[j] = element;
1895
+ }
1896
+ } else {
1897
+ // merge sort
1898
+ var middle = floor$3(length / 2);
1899
+ var left = sort(arraySlice$2(array, 0, middle), comparefn);
1900
+ var right = sort(arraySlice$2(array, middle), comparefn);
1901
+ var llength = left.length;
1902
+ var rlength = right.length;
1903
+ var lindex = 0;
1904
+ var rindex = 0;
1905
+
1906
+ while (lindex < llength || rindex < rlength) {
1907
+ array[lindex + rindex] = (lindex < llength && rindex < rlength)
1908
+ ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]
1909
+ : lindex < llength ? left[lindex++] : right[rindex++];
1910
+ }
1911
+ }
1921
1912
 
1922
- while (lindex < llength || rindex < rlength) {
1923
- array[lindex + rindex] = (lindex < llength && rindex < rlength)
1924
- ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]
1925
- : lindex < llength ? left[lindex++] : right[rindex++];
1926
- } return array;
1913
+ return array;
1927
1914
  };
1928
1915
 
1929
- var arraySort$1 = mergeSort;
1916
+ var arraySort$1 = sort;
1930
1917
 
1931
1918
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
1932
1919
 
1933
1920
  var $$6 = _export;
1934
- var global$b = global$n;
1935
- var call$b = functionCall;
1936
- var uncurryThis$e = functionUncurryThis;
1921
+ var global$b = global$o;
1922
+ var safeGetBuiltIn = safeGetBuiltIn$1;
1923
+ var call$c = functionCall;
1924
+ var uncurryThis$c = functionUncurryThis;
1937
1925
  var DESCRIPTORS$5 = descriptors;
1938
1926
  var USE_NATIVE_URL = urlConstructorDetection;
1939
1927
  var defineBuiltIn$3 = defineBuiltIn$8;
@@ -1943,12 +1931,12 @@ var setToStringTag$1 = setToStringTag$5;
1943
1931
  var createIteratorConstructor = iteratorCreateConstructor;
1944
1932
  var InternalStateModule$3 = internalState;
1945
1933
  var anInstance$2 = anInstance$3;
1946
- var isCallable$5 = isCallable$l;
1934
+ var isCallable$5 = isCallable$k;
1947
1935
  var hasOwn$3 = hasOwnProperty_1;
1948
1936
  var bind$2 = functionBindContext;
1949
1937
  var classof$8 = classof$b;
1950
1938
  var anObject$7 = anObject$g;
1951
- var isObject$6 = isObject$d;
1939
+ var isObject$6 = isObject$e;
1952
1940
  var $toString$1 = toString$5;
1953
1941
  var create$2 = objectCreate;
1954
1942
  var createPropertyDescriptor$1 = createPropertyDescriptor$6;
@@ -1965,15 +1953,6 @@ var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
1965
1953
  var setInternalState$2 = InternalStateModule$3.set;
1966
1954
  var getInternalParamsState = InternalStateModule$3.getterFor(URL_SEARCH_PARAMS);
1967
1955
  var getInternalIteratorState = InternalStateModule$3.getterFor(URL_SEARCH_PARAMS_ITERATOR);
1968
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1969
- var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1970
-
1971
- // Avoid NodeJS experimental warning
1972
- var safeGetBuiltIn = function (name) {
1973
- if (!DESCRIPTORS$5) return global$b[name];
1974
- var descriptor = getOwnPropertyDescriptor(global$b, name);
1975
- return descriptor && descriptor.value;
1976
- };
1977
1956
 
1978
1957
  var nativeFetch = safeGetBuiltIn('fetch');
1979
1958
  var NativeRequest = safeGetBuiltIn('Request');
@@ -1984,14 +1963,14 @@ var RegExp$1 = global$b.RegExp;
1984
1963
  var TypeError$2 = global$b.TypeError;
1985
1964
  var decodeURIComponent = global$b.decodeURIComponent;
1986
1965
  var encodeURIComponent = global$b.encodeURIComponent;
1987
- var charAt$4 = uncurryThis$e(''.charAt);
1988
- var join = uncurryThis$e([].join);
1989
- var push$2 = uncurryThis$e([].push);
1990
- var replace$2 = uncurryThis$e(''.replace);
1991
- var shift = uncurryThis$e([].shift);
1992
- var splice = uncurryThis$e([].splice);
1993
- var split = uncurryThis$e(''.split);
1994
- var stringSlice$4 = uncurryThis$e(''.slice);
1966
+ var charAt$4 = uncurryThis$c(''.charAt);
1967
+ var join = uncurryThis$c([].join);
1968
+ var push$2 = uncurryThis$c([].push);
1969
+ var replace$2 = uncurryThis$c(''.replace);
1970
+ var shift = uncurryThis$c([].shift);
1971
+ var splice = uncurryThis$c([].splice);
1972
+ var split = uncurryThis$c(''.split);
1973
+ var stringSlice$4 = uncurryThis$c(''.slice);
1995
1974
 
1996
1975
  var plus = /\+/g;
1997
1976
  var sequences = Array(4);
@@ -2086,13 +2065,13 @@ URLSearchParamsState.prototype = {
2086
2065
  if (iteratorMethod) {
2087
2066
  iterator = getIterator$1(object, iteratorMethod);
2088
2067
  next = iterator.next;
2089
- while (!(step = call$b(next, iterator)).done) {
2068
+ while (!(step = call$c(next, iterator)).done) {
2090
2069
  entryIterator = getIterator$1(anObject$7(step.value));
2091
2070
  entryNext = entryIterator.next;
2092
2071
  if (
2093
- (first = call$b(entryNext, entryIterator)).done ||
2094
- (second = call$b(entryNext, entryIterator)).done ||
2095
- !call$b(entryNext, entryIterator).done
2072
+ (first = call$c(entryNext, entryIterator)).done ||
2073
+ (second = call$c(entryNext, entryIterator)).done ||
2074
+ !call$c(entryNext, entryIterator).done
2096
2075
  ) throw new TypeError$2('Expected sequence with length 2');
2097
2076
  push$2(entries, { key: $toString$1(first.value), value: $toString$1(second.value) });
2098
2077
  }
@@ -2304,8 +2283,8 @@ $$6({ global: true, constructor: true, forced: !USE_NATIVE_URL }, {
2304
2283
 
2305
2284
  // Wrap `fetch` and `Request` for correct work with polyfilled `URLSearchParams`
2306
2285
  if (!USE_NATIVE_URL && isCallable$5(Headers)) {
2307
- var headersHas = uncurryThis$e(HeadersPrototype.has);
2308
- var headersSet = uncurryThis$e(HeadersPrototype.set);
2286
+ var headersHas = uncurryThis$c(HeadersPrototype.has);
2287
+ var headersSet = uncurryThis$c(HeadersPrototype.set);
2309
2288
 
2310
2289
  var wrapRequestOptions = function (init) {
2311
2290
  if (isObject$6(init)) {
@@ -2366,7 +2345,7 @@ var regexpFlags$1 = function () {
2366
2345
  };
2367
2346
 
2368
2347
  var fails$f = fails$r;
2369
- var global$a = global$n;
2348
+ var global$a = global$o;
2370
2349
 
2371
2350
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
2372
2351
  var $RegExp$2 = global$a.RegExp;
@@ -2397,7 +2376,7 @@ var regexpStickyHelpers = {
2397
2376
  };
2398
2377
 
2399
2378
  var fails$e = fails$r;
2400
- var global$9 = global$n;
2379
+ var global$9 = global$o;
2401
2380
 
2402
2381
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
2403
2382
  var $RegExp$1 = global$9.RegExp;
@@ -2408,7 +2387,7 @@ var regexpUnsupportedDotAll = fails$e(function () {
2408
2387
  });
2409
2388
 
2410
2389
  var fails$d = fails$r;
2411
- var global$8 = global$n;
2390
+ var global$8 = global$o;
2412
2391
 
2413
2392
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
2414
2393
  var $RegExp = global$8.RegExp;
@@ -2421,8 +2400,8 @@ var regexpUnsupportedNcg = fails$d(function () {
2421
2400
 
2422
2401
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
2423
2402
  /* eslint-disable regexp/no-useless-quantifier -- testing */
2424
- var call$a = functionCall;
2425
- var uncurryThis$d = functionUncurryThis;
2403
+ var call$b = functionCall;
2404
+ var uncurryThis$b = functionUncurryThis;
2426
2405
  var toString$4 = toString$5;
2427
2406
  var regexpFlags = regexpFlags$1;
2428
2407
  var stickyHelpers = regexpStickyHelpers;
@@ -2435,16 +2414,16 @@ var UNSUPPORTED_NCG = regexpUnsupportedNcg;
2435
2414
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
2436
2415
  var nativeExec = RegExp.prototype.exec;
2437
2416
  var patchedExec = nativeExec;
2438
- var charAt$3 = uncurryThis$d(''.charAt);
2439
- var indexOf = uncurryThis$d(''.indexOf);
2440
- var replace$1 = uncurryThis$d(''.replace);
2441
- var stringSlice$3 = uncurryThis$d(''.slice);
2417
+ var charAt$3 = uncurryThis$b(''.charAt);
2418
+ var indexOf = uncurryThis$b(''.indexOf);
2419
+ var replace$1 = uncurryThis$b(''.replace);
2420
+ var stringSlice$3 = uncurryThis$b(''.slice);
2442
2421
 
2443
2422
  var UPDATES_LAST_INDEX_WRONG = (function () {
2444
2423
  var re1 = /a/;
2445
2424
  var re2 = /b*/g;
2446
- call$a(nativeExec, re1, 'a');
2447
- call$a(nativeExec, re2, 'a');
2425
+ call$b(nativeExec, re1, 'a');
2426
+ call$b(nativeExec, re2, 'a');
2448
2427
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
2449
2428
  })();
2450
2429
 
@@ -2465,14 +2444,14 @@ if (PATCH) {
2465
2444
 
2466
2445
  if (raw) {
2467
2446
  raw.lastIndex = re.lastIndex;
2468
- result = call$a(patchedExec, raw, str);
2447
+ result = call$b(patchedExec, raw, str);
2469
2448
  re.lastIndex = raw.lastIndex;
2470
2449
  return result;
2471
2450
  }
2472
2451
 
2473
2452
  var groups = state.groups;
2474
2453
  var sticky = UNSUPPORTED_Y && re.sticky;
2475
- var flags = call$a(regexpFlags, re);
2454
+ var flags = call$b(regexpFlags, re);
2476
2455
  var source = re.source;
2477
2456
  var charsAdded = 0;
2478
2457
  var strCopy = str;
@@ -2500,7 +2479,7 @@ if (PATCH) {
2500
2479
  }
2501
2480
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
2502
2481
 
2503
- match = call$a(nativeExec, sticky ? reCopy : re, strCopy);
2482
+ match = call$b(nativeExec, sticky ? reCopy : re, strCopy);
2504
2483
 
2505
2484
  if (sticky) {
2506
2485
  if (match) {
@@ -2515,7 +2494,7 @@ if (PATCH) {
2515
2494
  if (NPCG_INCLUDED && match && match.length > 1) {
2516
2495
  // Fix browsers whose `exec` methods don't consistently return `undefined`
2517
2496
  // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
2518
- call$a(nativeReplace, match[0], reCopy, function () {
2497
+ call$b(nativeReplace, match[0], reCopy, function () {
2519
2498
  for (i = 1; i < arguments.length - 2; i++) {
2520
2499
  if (arguments[i] === undefined) match[i] = undefined;
2521
2500
  }
@@ -2547,7 +2526,7 @@ $$5({ target: 'RegExp', proto: true, forced: /./.exec !== exec$1 }, {
2547
2526
 
2548
2527
  // TODO: Remove from `core-js@4` since it's moved to entry points
2549
2528
 
2550
- var uncurryThis$c = functionUncurryThisClause;
2529
+ var call$a = functionCall;
2551
2530
  var defineBuiltIn$2 = defineBuiltIn$8;
2552
2531
  var regexpExec$1 = regexpExec$2;
2553
2532
  var fails$c = fails$r;
@@ -2561,7 +2540,7 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2561
2540
  var SYMBOL = wellKnownSymbol$8(KEY);
2562
2541
 
2563
2542
  var DELEGATES_TO_SYMBOL = !fails$c(function () {
2564
- // String methods call symbol-named RegEp methods
2543
+ // String methods call symbol-named RegExp methods
2565
2544
  var O = {};
2566
2545
  O[SYMBOL] = function () { return 7; };
2567
2546
  return ''[KEY](O) !== 7;
@@ -2599,18 +2578,17 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2599
2578
  !DELEGATES_TO_EXEC ||
2600
2579
  FORCED
2601
2580
  ) {
2602
- var uncurriedNativeRegExpMethod = uncurryThis$c(/./[SYMBOL]);
2581
+ var nativeRegExpMethod = /./[SYMBOL];
2603
2582
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
2604
- var uncurriedNativeMethod = uncurryThis$c(nativeMethod);
2605
2583
  var $exec = regexp.exec;
2606
2584
  if ($exec === regexpExec$1 || $exec === RegExpPrototype$2.exec) {
2607
2585
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
2608
2586
  // The native String method already delegates to @@method (this
2609
2587
  // polyfilled function), leasing to infinite recursion.
2610
2588
  // We avoid it by directly calling the native @@method method.
2611
- return { done: true, value: uncurriedNativeRegExpMethod(regexp, str, arg2) };
2589
+ return { done: true, value: call$a(nativeRegExpMethod, regexp, str, arg2) };
2612
2590
  }
2613
- return { done: true, value: uncurriedNativeMethod(str, regexp, arg2) };
2591
+ return { done: true, value: call$a(nativeMethod, str, regexp, arg2) };
2614
2592
  }
2615
2593
  return { done: false };
2616
2594
  });
@@ -2632,7 +2610,7 @@ var sameValue$1 = Object.is || function is(x, y) {
2632
2610
 
2633
2611
  var call$9 = functionCall;
2634
2612
  var anObject$5 = anObject$g;
2635
- var isCallable$4 = isCallable$l;
2613
+ var isCallable$4 = isCallable$k;
2636
2614
  var classof$7 = classofRaw$2;
2637
2615
  var regexpExec = regexpExec$2;
2638
2616
 
@@ -2711,7 +2689,7 @@ $$4({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
2711
2689
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
2712
2690
  addToUnscopables('includes');
2713
2691
 
2714
- var isObject$5 = isObject$d;
2692
+ var isObject$5 = isObject$e;
2715
2693
  var classof$6 = classofRaw$2;
2716
2694
  var wellKnownSymbol$7 = wellKnownSymbol$l;
2717
2695
 
@@ -2751,13 +2729,13 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
2751
2729
  };
2752
2730
 
2753
2731
  var $$3 = _export;
2754
- var uncurryThis$b = functionUncurryThis;
2732
+ var uncurryThis$a = functionUncurryThis;
2755
2733
  var notARegExp = notARegexp;
2756
2734
  var requireObjectCoercible$2 = requireObjectCoercible$6;
2757
2735
  var toString$2 = toString$5;
2758
2736
  var correctIsRegExpLogic = correctIsRegexpLogic;
2759
2737
 
2760
- var stringIndexOf$1 = uncurryThis$b(''.indexOf);
2738
+ var stringIndexOf$1 = uncurryThis$a(''.indexOf);
2761
2739
 
2762
2740
  // `String.prototype.includes` method
2763
2741
  // https://tc39.es/ecma262/#sec-string.prototype.includes
@@ -2772,7 +2750,7 @@ $$3({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }
2772
2750
  });
2773
2751
 
2774
2752
  var DESCRIPTORS$4 = descriptors;
2775
- var uncurryThis$a = functionUncurryThis;
2753
+ var uncurryThis$9 = functionUncurryThis;
2776
2754
  var call$7 = functionCall;
2777
2755
  var fails$a = fails$r;
2778
2756
  var objectKeys = objectKeys$2;
@@ -2785,7 +2763,7 @@ var IndexedObject$1 = indexedObject;
2785
2763
  var $assign = Object.assign;
2786
2764
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2787
2765
  var defineProperty = Object.defineProperty;
2788
- var concat$1 = uncurryThis$a([].concat);
2766
+ var concat$1 = uncurryThis$9([].concat);
2789
2767
 
2790
2768
  // `Object.assign` method
2791
2769
  // https://tc39.es/ecma262/#sec-object.assign
@@ -3035,14 +3013,14 @@ var ieee754 = {
3035
3013
  };
3036
3014
 
3037
3015
  var toObject$3 = toObject$7;
3038
- var toAbsoluteIndex$1 = toAbsoluteIndex$4;
3039
- var lengthOfArrayLike$3 = lengthOfArrayLike$7;
3016
+ var toAbsoluteIndex$1 = toAbsoluteIndex$3;
3017
+ var lengthOfArrayLike$4 = lengthOfArrayLike$7;
3040
3018
 
3041
3019
  // `Array.prototype.fill` method implementation
3042
3020
  // https://tc39.es/ecma262/#sec-array.prototype.fill
3043
3021
  var arrayFill$1 = function fill(value /* , start = 0, end = @length */) {
3044
3022
  var O = toObject$3(this);
3045
- var length = lengthOfArrayLike$3(O);
3023
+ var length = lengthOfArrayLike$4(O);
3046
3024
  var argumentsLength = arguments.length;
3047
3025
  var index = toAbsoluteIndex$1(argumentsLength > 1 ? arguments[1] : undefined, length);
3048
3026
  var end = argumentsLength > 2 ? arguments[2] : undefined;
@@ -3051,8 +3029,27 @@ var arrayFill$1 = function fill(value /* , start = 0, end = @length */) {
3051
3029
  return O;
3052
3030
  };
3053
3031
 
3054
- var global$7 = global$n;
3055
- var uncurryThis$9 = functionUncurryThis;
3032
+ var isCallable$3 = isCallable$k;
3033
+ var isObject$4 = isObject$e;
3034
+ var setPrototypeOf$3 = objectSetPrototypeOf;
3035
+
3036
+ // makes subclassing work correct for wrapped built-ins
3037
+ var inheritIfRequired$2 = function ($this, dummy, Wrapper) {
3038
+ var NewTarget, NewTargetPrototype;
3039
+ if (
3040
+ // it can work only with native `setPrototypeOf`
3041
+ setPrototypeOf$3 &&
3042
+ // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3043
+ isCallable$3(NewTarget = dummy.constructor) &&
3044
+ NewTarget !== Wrapper &&
3045
+ isObject$4(NewTargetPrototype = NewTarget.prototype) &&
3046
+ NewTargetPrototype !== Wrapper.prototype
3047
+ ) setPrototypeOf$3($this, NewTargetPrototype);
3048
+ return $this;
3049
+ };
3050
+
3051
+ var global$7 = global$o;
3052
+ var uncurryThis$8 = functionUncurryThis;
3056
3053
  var DESCRIPTORS$3 = descriptors;
3057
3054
  var NATIVE_ARRAY_BUFFER$1 = arrayBufferBasicDetection;
3058
3055
  var FunctionName = functionName;
@@ -3067,10 +3064,11 @@ var toIndex$1 = toIndex$2;
3067
3064
  var fround = mathFround;
3068
3065
  var IEEE754 = ieee754;
3069
3066
  var getPrototypeOf$1 = objectGetPrototypeOf;
3070
- var setPrototypeOf$3 = objectSetPrototypeOf;
3071
- var getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
3067
+ var setPrototypeOf$2 = objectSetPrototypeOf;
3072
3068
  var arrayFill = arrayFill$1;
3073
- var arraySlice$2 = arraySliceSimple;
3069
+ var arraySlice$1 = arraySlice$3;
3070
+ var inheritIfRequired$1 = inheritIfRequired$2;
3071
+ var copyConstructorProperties = copyConstructorProperties$2;
3074
3072
  var setToStringTag = setToStringTag$5;
3075
3073
  var InternalStateModule$2 = internalState;
3076
3074
 
@@ -3092,8 +3090,8 @@ var DataViewPrototype$1 = $DataView && $DataView[PROTOTYPE];
3092
3090
  var ObjectPrototype$1 = Object.prototype;
3093
3091
  var Array$1 = global$7.Array;
3094
3092
  var RangeError$3 = global$7.RangeError;
3095
- var fill = uncurryThis$9(arrayFill);
3096
- var reverse = uncurryThis$9([].reverse);
3093
+ var fill = uncurryThis$8(arrayFill);
3094
+ var reverse = uncurryThis$8([].reverse);
3097
3095
 
3098
3096
  var packIEEE754 = IEEE754.pack;
3099
3097
  var unpackIEEE754 = IEEE754.unpack;
@@ -3138,7 +3136,7 @@ var get = function (view, count, index, isLittleEndian) {
3138
3136
  if (intIndex + count > store.byteLength) throw new RangeError$3(WRONG_INDEX);
3139
3137
  var bytes = store.bytes;
3140
3138
  var start = intIndex + store.byteOffset;
3141
- var pack = arraySlice$2(bytes, start, start + count);
3139
+ var pack = arraySlice$1(bytes, start, start + count);
3142
3140
  return boolIsLittleEndian ? pack : reverse(pack);
3143
3141
  };
3144
3142
 
@@ -3270,30 +3268,26 @@ if (!NATIVE_ARRAY_BUFFER$1) {
3270
3268
  /* eslint-enable no-new -- required for testing */
3271
3269
  $ArrayBuffer = function ArrayBuffer(length) {
3272
3270
  anInstance$1(this, ArrayBufferPrototype$1);
3273
- return new NativeArrayBuffer(toIndex$1(length));
3271
+ return inheritIfRequired$1(new NativeArrayBuffer(toIndex$1(length)), this, $ArrayBuffer);
3274
3272
  };
3275
3273
 
3276
3274
  $ArrayBuffer[PROTOTYPE] = ArrayBufferPrototype$1;
3277
3275
 
3278
- for (var keys = getOwnPropertyNames$1(NativeArrayBuffer), j = 0, key; keys.length > j;) {
3279
- if (!((key = keys[j++]) in $ArrayBuffer)) {
3280
- createNonEnumerableProperty$2($ArrayBuffer, key, NativeArrayBuffer[key]);
3281
- }
3282
- }
3283
-
3284
3276
  ArrayBufferPrototype$1.constructor = $ArrayBuffer;
3277
+
3278
+ copyConstructorProperties($ArrayBuffer, NativeArrayBuffer);
3285
3279
  } else if (INCORRECT_ARRAY_BUFFER_NAME && CONFIGURABLE_FUNCTION_NAME) {
3286
3280
  createNonEnumerableProperty$2(NativeArrayBuffer, 'name', ARRAY_BUFFER);
3287
3281
  }
3288
3282
 
3289
3283
  // WebKit bug - the same parent prototype for typed arrays and data view
3290
- if (setPrototypeOf$3 && getPrototypeOf$1(DataViewPrototype$1) !== ObjectPrototype$1) {
3291
- setPrototypeOf$3(DataViewPrototype$1, ObjectPrototype$1);
3284
+ if (setPrototypeOf$2 && getPrototypeOf$1(DataViewPrototype$1) !== ObjectPrototype$1) {
3285
+ setPrototypeOf$2(DataViewPrototype$1, ObjectPrototype$1);
3292
3286
  }
3293
3287
 
3294
3288
  // iOS Safari 7.x bug
3295
3289
  var testView = new $DataView(new $ArrayBuffer(2));
3296
- var $setInt8 = uncurryThis$9(DataViewPrototype$1.setInt8);
3290
+ var $setInt8 = uncurryThis$8(DataViewPrototype$1.setInt8);
3297
3291
  testView.setInt8(0, 2147483648);
3298
3292
  testView.setInt8(1, 2147483649);
3299
3293
  if (testView.getInt8(0) || !testView.getInt8(1)) defineBuiltIns(DataViewPrototype$1, {
@@ -3314,24 +3308,23 @@ var arrayBuffer = {
3314
3308
  DataView: $DataView
3315
3309
  };
3316
3310
 
3317
- var uncurryThis$8 = functionUncurryThis;
3311
+ var uncurryThis$7 = functionUncurryThis;
3318
3312
  var fails$8 = fails$r;
3319
- var isCallable$3 = isCallable$l;
3313
+ var isCallable$2 = isCallable$k;
3320
3314
  var classof$5 = classof$b;
3321
3315
  var getBuiltIn$1 = getBuiltIn$5;
3322
3316
  var inspectSource = inspectSource$2;
3323
3317
 
3324
3318
  var noop = function () { /* empty */ };
3325
- var empty = [];
3326
3319
  var construct = getBuiltIn$1('Reflect', 'construct');
3327
3320
  var constructorRegExp = /^\s*(?:class|function)\b/;
3328
- var exec = uncurryThis$8(constructorRegExp.exec);
3321
+ var exec = uncurryThis$7(constructorRegExp.exec);
3329
3322
  var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
3330
3323
 
3331
3324
  var isConstructorModern = function isConstructor(argument) {
3332
- if (!isCallable$3(argument)) return false;
3325
+ if (!isCallable$2(argument)) return false;
3333
3326
  try {
3334
- construct(noop, empty, argument);
3327
+ construct(noop, [], argument);
3335
3328
  return true;
3336
3329
  } catch (error) {
3337
3330
  return false;
@@ -3339,7 +3332,7 @@ var isConstructorModern = function isConstructor(argument) {
3339
3332
  };
3340
3333
 
3341
3334
  var isConstructorLegacy = function isConstructor(argument) {
3342
- if (!isCallable$3(argument)) return false;
3335
+ if (!isCallable$2(argument)) return false;
3343
3336
  switch (classof$5(argument)) {
3344
3337
  case 'AsyncFunction':
3345
3338
  case 'GeneratorFunction':
@@ -3394,20 +3387,20 @@ var speciesConstructor$1 = function (O, defaultConstructor) {
3394
3387
  };
3395
3388
 
3396
3389
  var $$1 = _export;
3397
- var uncurryThis$7 = functionUncurryThisClause;
3390
+ var uncurryThis$6 = functionUncurryThisClause;
3398
3391
  var fails$7 = fails$r;
3399
3392
  var ArrayBufferModule$1 = arrayBuffer;
3400
3393
  var anObject$2 = anObject$g;
3401
- var toAbsoluteIndex = toAbsoluteIndex$4;
3394
+ var toAbsoluteIndex = toAbsoluteIndex$3;
3402
3395
  var toLength$2 = toLength$6;
3403
3396
  var speciesConstructor = speciesConstructor$1;
3404
3397
 
3405
3398
  var ArrayBuffer$3 = ArrayBufferModule$1.ArrayBuffer;
3406
3399
  var DataView$2 = ArrayBufferModule$1.DataView;
3407
3400
  var DataViewPrototype = DataView$2.prototype;
3408
- var nativeArrayBufferSlice = uncurryThis$7(ArrayBuffer$3.prototype.slice);
3409
- var getUint8 = uncurryThis$7(DataViewPrototype.getUint8);
3410
- var setUint8 = uncurryThis$7(DataViewPrototype.setUint8);
3401
+ var nativeArrayBufferSlice = uncurryThis$6(ArrayBuffer$3.prototype.slice);
3402
+ var getUint8 = uncurryThis$6(DataViewPrototype.getUint8);
3403
+ var setUint8 = uncurryThis$6(DataViewPrototype.setUint8);
3411
3404
 
3412
3405
  var INCORRECT_SLICE = fails$7(function () {
3413
3406
  return !new ArrayBuffer$3(2).slice(1, undefined).byteLength;
@@ -3478,9 +3471,9 @@ var checkCorrectnessOfIteration$1 = function (exec, SKIP_CLOSING) {
3478
3471
 
3479
3472
  var NATIVE_ARRAY_BUFFER = arrayBufferBasicDetection;
3480
3473
  var DESCRIPTORS$2 = descriptors;
3481
- var global$6 = global$n;
3482
- var isCallable$2 = isCallable$l;
3483
- var isObject$4 = isObject$d;
3474
+ var global$6 = global$o;
3475
+ var isCallable$1 = isCallable$k;
3476
+ var isObject$3 = isObject$e;
3484
3477
  var hasOwn$2 = hasOwnProperty_1;
3485
3478
  var classof$4 = classof$b;
3486
3479
  var tryToString = tryToString$5;
@@ -3489,7 +3482,7 @@ var defineBuiltIn$1 = defineBuiltIn$8;
3489
3482
  var defineBuiltInAccessor$2 = defineBuiltInAccessor$5;
3490
3483
  var isPrototypeOf$2 = objectIsPrototypeOf;
3491
3484
  var getPrototypeOf = objectGetPrototypeOf;
3492
- var setPrototypeOf$2 = objectSetPrototypeOf;
3485
+ var setPrototypeOf$1 = objectSetPrototypeOf;
3493
3486
  var wellKnownSymbol$3 = wellKnownSymbol$l;
3494
3487
  var uid = uid$3;
3495
3488
  var InternalStateModule$1 = internalState;
@@ -3509,7 +3502,7 @@ var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
3509
3502
  var TYPED_ARRAY_TAG$1 = uid('TYPED_ARRAY_TAG');
3510
3503
  var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
3511
3504
  // Fixing native typed arrays in Opera Presto crashes the browser, see #595
3512
- var NATIVE_ARRAY_BUFFER_VIEWS$2 = NATIVE_ARRAY_BUFFER && !!setPrototypeOf$2 && classof$4(global$6.opera) !== 'Opera';
3505
+ var NATIVE_ARRAY_BUFFER_VIEWS$2 = NATIVE_ARRAY_BUFFER && !!setPrototypeOf$1 && classof$4(global$6.opera) !== 'Opera';
3513
3506
  var TYPED_ARRAY_TAG_REQUIRED = false;
3514
3507
  var NAME, Constructor, Prototype;
3515
3508
 
@@ -3531,7 +3524,7 @@ var BigIntArrayConstructorsList = {
3531
3524
  };
3532
3525
 
3533
3526
  var isView = function isView(it) {
3534
- if (!isObject$4(it)) return false;
3527
+ if (!isObject$3(it)) return false;
3535
3528
  var klass = classof$4(it);
3536
3529
  return klass === 'DataView'
3537
3530
  || hasOwn$2(TypedArrayConstructorsList, klass)
@@ -3540,13 +3533,13 @@ var isView = function isView(it) {
3540
3533
 
3541
3534
  var getTypedArrayConstructor = function (it) {
3542
3535
  var proto = getPrototypeOf(it);
3543
- if (!isObject$4(proto)) return;
3536
+ if (!isObject$3(proto)) return;
3544
3537
  var state = getInternalState$1(proto);
3545
3538
  return (state && hasOwn$2(state, TYPED_ARRAY_CONSTRUCTOR)) ? state[TYPED_ARRAY_CONSTRUCTOR] : getTypedArrayConstructor(proto);
3546
3539
  };
3547
3540
 
3548
3541
  var isTypedArray$1 = function (it) {
3549
- if (!isObject$4(it)) return false;
3542
+ if (!isObject$3(it)) return false;
3550
3543
  var klass = classof$4(it);
3551
3544
  return hasOwn$2(TypedArrayConstructorsList, klass)
3552
3545
  || hasOwn$2(BigIntArrayConstructorsList, klass);
@@ -3557,8 +3550,8 @@ var aTypedArray$4 = function (it) {
3557
3550
  throw new TypeError$1('Target is not a typed array');
3558
3551
  };
3559
3552
 
3560
- var aTypedArrayConstructor$2 = function (C) {
3561
- if (isCallable$2(C) && (!setPrototypeOf$2 || isPrototypeOf$2(TypedArray$1, C))) return C;
3553
+ var aTypedArrayConstructor$1 = function (C) {
3554
+ if (isCallable$1(C) && (!setPrototypeOf$1 || isPrototypeOf$2(TypedArray$1, C))) return C;
3562
3555
  throw new TypeError$1(tryToString(C) + ' is not a typed array constructor');
3563
3556
  };
3564
3557
 
@@ -3584,7 +3577,7 @@ var exportTypedArrayMethod$4 = function (KEY, property, forced, options) {
3584
3577
  var exportTypedArrayStaticMethod = function (KEY, property, forced) {
3585
3578
  var ARRAY, TypedArrayConstructor;
3586
3579
  if (!DESCRIPTORS$2) return;
3587
- if (setPrototypeOf$2) {
3580
+ if (setPrototypeOf$1) {
3588
3581
  if (forced) for (ARRAY in TypedArrayConstructorsList) {
3589
3582
  TypedArrayConstructor = global$6[ARRAY];
3590
3583
  if (TypedArrayConstructor && hasOwn$2(TypedArrayConstructor, KEY)) try {
@@ -3620,26 +3613,26 @@ for (NAME in BigIntArrayConstructorsList) {
3620
3613
  }
3621
3614
 
3622
3615
  // WebKit bug - typed arrays constructors prototype is Object.prototype
3623
- if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !isCallable$2(TypedArray$1) || TypedArray$1 === Function.prototype) {
3616
+ if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !isCallable$1(TypedArray$1) || TypedArray$1 === Function.prototype) {
3624
3617
  // eslint-disable-next-line no-shadow -- safe
3625
3618
  TypedArray$1 = function TypedArray() {
3626
3619
  throw new TypeError$1('Incorrect invocation');
3627
3620
  };
3628
3621
  if (NATIVE_ARRAY_BUFFER_VIEWS$2) for (NAME in TypedArrayConstructorsList) {
3629
- if (global$6[NAME]) setPrototypeOf$2(global$6[NAME], TypedArray$1);
3622
+ if (global$6[NAME]) setPrototypeOf$1(global$6[NAME], TypedArray$1);
3630
3623
  }
3631
3624
  }
3632
3625
 
3633
3626
  if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !TypedArrayPrototype$1 || TypedArrayPrototype$1 === ObjectPrototype) {
3634
3627
  TypedArrayPrototype$1 = TypedArray$1.prototype;
3635
3628
  if (NATIVE_ARRAY_BUFFER_VIEWS$2) for (NAME in TypedArrayConstructorsList) {
3636
- if (global$6[NAME]) setPrototypeOf$2(global$6[NAME].prototype, TypedArrayPrototype$1);
3629
+ if (global$6[NAME]) setPrototypeOf$1(global$6[NAME].prototype, TypedArrayPrototype$1);
3637
3630
  }
3638
3631
  }
3639
3632
 
3640
3633
  // WebKit bug - one more object in Uint8ClampedArray prototype chain
3641
3634
  if (NATIVE_ARRAY_BUFFER_VIEWS$2 && getPrototypeOf(Uint8ClampedArrayPrototype) !== TypedArrayPrototype$1) {
3642
- setPrototypeOf$2(Uint8ClampedArrayPrototype, TypedArrayPrototype$1);
3635
+ setPrototypeOf$1(Uint8ClampedArrayPrototype, TypedArrayPrototype$1);
3643
3636
  }
3644
3637
 
3645
3638
  if (DESCRIPTORS$2 && !hasOwn$2(TypedArrayPrototype$1, TO_STRING_TAG)) {
@@ -3647,7 +3640,7 @@ if (DESCRIPTORS$2 && !hasOwn$2(TypedArrayPrototype$1, TO_STRING_TAG)) {
3647
3640
  defineBuiltInAccessor$2(TypedArrayPrototype$1, TO_STRING_TAG, {
3648
3641
  configurable: true,
3649
3642
  get: function () {
3650
- return isObject$4(this) ? this[TYPED_ARRAY_TAG$1] : undefined;
3643
+ return isObject$3(this) ? this[TYPED_ARRAY_TAG$1] : undefined;
3651
3644
  }
3652
3645
  });
3653
3646
  for (NAME in TypedArrayConstructorsList) if (global$6[NAME]) {
@@ -3659,7 +3652,7 @@ var arrayBufferViewCore = {
3659
3652
  NATIVE_ARRAY_BUFFER_VIEWS: NATIVE_ARRAY_BUFFER_VIEWS$2,
3660
3653
  TYPED_ARRAY_TAG: TYPED_ARRAY_TAG_REQUIRED && TYPED_ARRAY_TAG$1,
3661
3654
  aTypedArray: aTypedArray$4,
3662
- aTypedArrayConstructor: aTypedArrayConstructor$2,
3655
+ aTypedArrayConstructor: aTypedArrayConstructor$1,
3663
3656
  exportTypedArrayMethod: exportTypedArrayMethod$4,
3664
3657
  exportTypedArrayStaticMethod: exportTypedArrayStaticMethod,
3665
3658
  getTypedArrayConstructor: getTypedArrayConstructor,
@@ -3670,7 +3663,7 @@ var arrayBufferViewCore = {
3670
3663
  };
3671
3664
 
3672
3665
  /* eslint-disable no-new -- required for testing */
3673
- var global$5 = global$n;
3666
+ var global$5 = global$o;
3674
3667
  var fails$6 = fails$r;
3675
3668
  var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
3676
3669
  var NATIVE_ARRAY_BUFFER_VIEWS$1 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS;
@@ -3692,7 +3685,7 @@ var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS$1 || !fai
3692
3685
  return new Int8Array$3(new ArrayBuffer$2(2), 1, undefined).length !== 1;
3693
3686
  });
3694
3687
 
3695
- var isObject$3 = isObject$d;
3688
+ var isObject$2 = isObject$e;
3696
3689
 
3697
3690
  var floor$1 = Math.floor;
3698
3691
 
@@ -3700,7 +3693,7 @@ var floor$1 = Math.floor;
3700
3693
  // https://tc39.es/ecma262/#sec-isintegralnumber
3701
3694
  // eslint-disable-next-line es/no-number-isinteger -- safe
3702
3695
  var isIntegralNumber$1 = Number.isInteger || function isInteger(it) {
3703
- return !isObject$3(it) && isFinite(it) && floor$1(it) === it;
3696
+ return !isObject$2(it) && isFinite(it) && floor$1(it) === it;
3704
3697
  };
3705
3698
 
3706
3699
  var toIntegerOrInfinity$2 = toIntegerOrInfinity$7;
@@ -3754,12 +3747,12 @@ var bind$1 = functionBindContext;
3754
3747
  var call$6 = functionCall;
3755
3748
  var aConstructor = aConstructor$2;
3756
3749
  var toObject$2 = toObject$7;
3757
- var lengthOfArrayLike$2 = lengthOfArrayLike$7;
3750
+ var lengthOfArrayLike$3 = lengthOfArrayLike$7;
3758
3751
  var getIterator = getIterator$3;
3759
3752
  var getIteratorMethod = getIteratorMethod$4;
3760
3753
  var isArrayIteratorMethod = isArrayIteratorMethod$2;
3761
3754
  var isBigIntArray = isBigIntArray$1;
3762
- var aTypedArrayConstructor$1 = arrayBufferViewCore.aTypedArrayConstructor;
3755
+ var aTypedArrayConstructor = arrayBufferViewCore.aTypedArrayConstructor;
3763
3756
  var toBigInt$1 = toBigInt$2;
3764
3757
 
3765
3758
  var typedArrayFrom$1 = function from(source /* , mapfn, thisArg */) {
@@ -3781,8 +3774,8 @@ var typedArrayFrom$1 = function from(source /* , mapfn, thisArg */) {
3781
3774
  if (mapping && argumentsLength > 2) {
3782
3775
  mapfn = bind$1(mapfn, arguments[2]);
3783
3776
  }
3784
- length = lengthOfArrayLike$2(O);
3785
- result = new (aTypedArrayConstructor$1(C))(length);
3777
+ length = lengthOfArrayLike$3(O);
3778
+ result = new (aTypedArrayConstructor(C))(length);
3786
3779
  thisIsBigIntArray = isBigIntArray(result);
3787
3780
  for (i = 0; length > i; i++) {
3788
3781
  value = mapping ? mapfn(O[i], i) : O[i];
@@ -3803,7 +3796,7 @@ var isArray$1 = Array.isArray || function isArray(argument) {
3803
3796
 
3804
3797
  var isArray = isArray$1;
3805
3798
  var isConstructor = isConstructor$2;
3806
- var isObject$2 = isObject$d;
3799
+ var isObject$1 = isObject$e;
3807
3800
  var wellKnownSymbol$2 = wellKnownSymbol$l;
3808
3801
 
3809
3802
  var SPECIES$1 = wellKnownSymbol$2('species');
@@ -3817,7 +3810,7 @@ var arraySpeciesConstructor$1 = function (originalArray) {
3817
3810
  C = originalArray.constructor;
3818
3811
  // cross-realm fallback
3819
3812
  if (isConstructor(C) && (C === $Array || isArray(C.prototype))) C = undefined;
3820
- else if (isObject$2(C)) {
3813
+ else if (isObject$1(C)) {
3821
3814
  C = C[SPECIES$1];
3822
3815
  if (C === null) C = undefined;
3823
3816
  }
@@ -3833,13 +3826,13 @@ var arraySpeciesCreate$1 = function (originalArray, length) {
3833
3826
  };
3834
3827
 
3835
3828
  var bind = functionBindContext;
3836
- var uncurryThis$6 = functionUncurryThis;
3829
+ var uncurryThis$5 = functionUncurryThis;
3837
3830
  var IndexedObject = indexedObject;
3838
3831
  var toObject$1 = toObject$7;
3839
- var lengthOfArrayLike$1 = lengthOfArrayLike$7;
3832
+ var lengthOfArrayLike$2 = lengthOfArrayLike$7;
3840
3833
  var arraySpeciesCreate = arraySpeciesCreate$1;
3841
3834
 
3842
- var push$1 = uncurryThis$6([].push);
3835
+ var push$1 = uncurryThis$5([].push);
3843
3836
 
3844
3837
  // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
3845
3838
  var createMethod$1 = function (TYPE) {
@@ -3853,7 +3846,7 @@ var createMethod$1 = function (TYPE) {
3853
3846
  return function ($this, callbackfn, that, specificCreate) {
3854
3847
  var O = toObject$1($this);
3855
3848
  var self = IndexedObject(O);
3856
- var length = lengthOfArrayLike$1(self);
3849
+ var length = lengthOfArrayLike$2(self);
3857
3850
  var boundFunction = bind(callbackfn, that);
3858
3851
  var index = 0;
3859
3852
  var create = specificCreate || arraySpeciesCreate;
@@ -3924,27 +3917,18 @@ var setSpecies$1 = function (CONSTRUCTOR_NAME) {
3924
3917
  }
3925
3918
  };
3926
3919
 
3927
- var isCallable$1 = isCallable$l;
3928
- var isObject$1 = isObject$d;
3929
- var setPrototypeOf$1 = objectSetPrototypeOf;
3920
+ var lengthOfArrayLike$1 = lengthOfArrayLike$7;
3930
3921
 
3931
- // makes subclassing work correct for wrapped built-ins
3932
- var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
3933
- var NewTarget, NewTargetPrototype;
3934
- if (
3935
- // it can work only with native `setPrototypeOf`
3936
- setPrototypeOf$1 &&
3937
- // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3938
- isCallable$1(NewTarget = dummy.constructor) &&
3939
- NewTarget !== Wrapper &&
3940
- isObject$1(NewTargetPrototype = NewTarget.prototype) &&
3941
- NewTargetPrototype !== Wrapper.prototype
3942
- ) setPrototypeOf$1($this, NewTargetPrototype);
3943
- return $this;
3922
+ var arrayFromConstructorAndList$1 = function (Constructor, list, $length) {
3923
+ var index = 0;
3924
+ var length = arguments.length > 2 ? $length : lengthOfArrayLike$1(list);
3925
+ var result = new Constructor(length);
3926
+ while (length > index) result[index] = list[index++];
3927
+ return result;
3944
3928
  };
3945
3929
 
3946
3930
  var $ = _export;
3947
- var global$4 = global$n;
3931
+ var global$4 = global$o;
3948
3932
  var call$5 = functionCall;
3949
3933
  var DESCRIPTORS = descriptors;
3950
3934
  var TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS = typedArrayConstructorsRequireWrappers;
@@ -3961,7 +3945,7 @@ var toUint8Clamped = toUint8Clamped$1;
3961
3945
  var toPropertyKey = toPropertyKey$4;
3962
3946
  var hasOwn$1 = hasOwnProperty_1;
3963
3947
  var classof$1 = classof$b;
3964
- var isObject = isObject$d;
3948
+ var isObject = isObject$e;
3965
3949
  var isSymbol = isSymbol$3;
3966
3950
  var create = objectCreate;
3967
3951
  var isPrototypeOf$1 = objectIsPrototypeOf;
@@ -3973,8 +3957,9 @@ var setSpecies = setSpecies$1;
3973
3957
  var defineBuiltInAccessor = defineBuiltInAccessor$5;
3974
3958
  var definePropertyModule = objectDefineProperty;
3975
3959
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
3960
+ var arrayFromConstructorAndList = arrayFromConstructorAndList$1;
3976
3961
  var InternalStateModule = internalState;
3977
- var inheritIfRequired = inheritIfRequired$1;
3962
+ var inheritIfRequired = inheritIfRequired$2;
3978
3963
 
3979
3964
  var getInternalState = InternalStateModule.get;
3980
3965
  var setInternalState = InternalStateModule.set;
@@ -3989,20 +3974,10 @@ var NATIVE_ARRAY_BUFFER_VIEWS = ArrayBufferViewCore$4.NATIVE_ARRAY_BUFFER_VIEWS;
3989
3974
  var TYPED_ARRAY_TAG = ArrayBufferViewCore$4.TYPED_ARRAY_TAG;
3990
3975
  var TypedArray = ArrayBufferViewCore$4.TypedArray;
3991
3976
  var TypedArrayPrototype = ArrayBufferViewCore$4.TypedArrayPrototype;
3992
- var aTypedArrayConstructor = ArrayBufferViewCore$4.aTypedArrayConstructor;
3993
3977
  var isTypedArray = ArrayBufferViewCore$4.isTypedArray;
3994
3978
  var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT';
3995
3979
  var WRONG_LENGTH = 'Wrong length';
3996
3980
 
3997
- var fromList = function (C, list) {
3998
- aTypedArrayConstructor(C);
3999
- var index = 0;
4000
- var length = list.length;
4001
- var result = new C(length);
4002
- while (length > index) result[index] = list[index++];
4003
- return result;
4004
- };
4005
-
4006
3981
  var addGetter = function (it, key) {
4007
3982
  defineBuiltInAccessor(it, key, {
4008
3983
  configurable: true,
@@ -4120,7 +4095,7 @@ if (DESCRIPTORS) {
4120
4095
  }
4121
4096
  length = byteLength / BYTES;
4122
4097
  } else if (isTypedArray(data)) {
4123
- return fromList(TypedArrayConstructor, data);
4098
+ return arrayFromConstructorAndList(TypedArrayConstructor, data);
4124
4099
  } else {
4125
4100
  return call$5(typedArrayFrom, TypedArrayConstructor, data);
4126
4101
  }
@@ -4146,7 +4121,7 @@ if (DESCRIPTORS) {
4146
4121
  : typedArrayOffset !== undefined
4147
4122
  ? new NativeTypedArrayConstructor(data, toOffset$1(typedArrayOffset, BYTES))
4148
4123
  : new NativeTypedArrayConstructor(data);
4149
- if (isTypedArray(data)) return fromList(TypedArrayConstructor, data);
4124
+ if (isTypedArray(data)) return arrayFromConstructorAndList(TypedArrayConstructor, data);
4150
4125
  return call$5(typedArrayFrom, TypedArrayConstructor, data);
4151
4126
  }(), dummy, TypedArrayConstructor);
4152
4127
  });
@@ -4203,12 +4178,12 @@ var $fill = arrayFill$1;
4203
4178
  var toBigInt = toBigInt$2;
4204
4179
  var classof = classof$b;
4205
4180
  var call$4 = functionCall;
4206
- var uncurryThis$5 = functionUncurryThis;
4181
+ var uncurryThis$4 = functionUncurryThis;
4207
4182
  var fails$5 = fails$r;
4208
4183
 
4209
4184
  var aTypedArray$3 = ArrayBufferViewCore$3.aTypedArray;
4210
4185
  var exportTypedArrayMethod$3 = ArrayBufferViewCore$3.exportTypedArrayMethod;
4211
- var slice = uncurryThis$5(''.slice);
4186
+ var slice = uncurryThis$4(''.slice);
4212
4187
 
4213
4188
  // V8 ~ Chrome < 59, Safari < 14.1, FF < 55, Edge <=18
4214
4189
  var CONVERSION_BUG = fails$5(function () {
@@ -4227,7 +4202,7 @@ exportTypedArrayMethod$3('fill', function fill(value /* , start, end */) {
4227
4202
  return call$4($fill, this, actualValue, length > 1 ? arguments[1] : undefined, length > 2 ? arguments[2] : undefined);
4228
4203
  }, CONVERSION_BUG);
4229
4204
 
4230
- var global$3 = global$n;
4205
+ var global$3 = global$o;
4231
4206
  var call$3 = functionCall;
4232
4207
  var ArrayBufferViewCore$2 = arrayBufferViewCore;
4233
4208
  var lengthOfArrayLike = lengthOfArrayLike$7;
@@ -4287,8 +4262,8 @@ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
4287
4262
 
4288
4263
  var engineWebkitVersion = !!webkit && +webkit[1];
4289
4264
 
4290
- var global$2 = global$n;
4291
- var uncurryThis$4 = functionUncurryThisClause;
4265
+ var global$2 = global$o;
4266
+ var uncurryThis$3 = functionUncurryThisClause;
4292
4267
  var fails$3 = fails$r;
4293
4268
  var aCallable = aCallable$5;
4294
4269
  var internalSort = arraySort$1;
@@ -4301,7 +4276,7 @@ var WEBKIT = engineWebkitVersion;
4301
4276
  var aTypedArray$1 = ArrayBufferViewCore$1.aTypedArray;
4302
4277
  var exportTypedArrayMethod$1 = ArrayBufferViewCore$1.exportTypedArrayMethod;
4303
4278
  var Uint16Array = global$2.Uint16Array;
4304
- var nativeSort = Uint16Array && uncurryThis$4(Uint16Array.prototype.sort);
4279
+ var nativeSort = Uint16Array && uncurryThis$3(Uint16Array.prototype.sort);
4305
4280
 
4306
4281
  // WebKit
4307
4282
  var ACCEPT_INCORRECT_ARGUMENTS = !!nativeSort && !(fails$3(function () {
@@ -4368,15 +4343,11 @@ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND
4368
4343
  return call$2.apply(apply$2, arguments);
4369
4344
  });
4370
4345
 
4371
- var uncurryThis$3 = functionUncurryThis;
4372
-
4373
- var arraySlice$1 = uncurryThis$3([].slice);
4374
-
4375
- var global$1 = global$n;
4346
+ var global$1 = global$o;
4376
4347
  var apply$1 = functionApply;
4377
4348
  var ArrayBufferViewCore = arrayBufferViewCore;
4378
4349
  var fails$2 = fails$r;
4379
- var arraySlice = arraySlice$1;
4350
+ var arraySlice = arraySlice$3;
4380
4351
 
4381
4352
  var Int8Array$1 = global$1.Int8Array;
4382
4353
  var aTypedArray = ArrayBufferViewCore.aTypedArray;
@@ -4435,7 +4406,7 @@ var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
4435
4406
  // `RegExp.prototype.toString` method
4436
4407
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
4437
4408
  if (NOT_GENERIC || INCORRECT_NAME) {
4438
- defineBuiltIn(RegExp.prototype, TO_STRING, function toString() {
4409
+ defineBuiltIn(RegExpPrototype, TO_STRING, function toString() {
4439
4410
  var R = anObject$1(this);
4440
4411
  var pattern = $toString(R.source);
4441
4412
  var flags = $toString(getRegExpFlags(R));
@@ -4540,7 +4511,7 @@ var uncurryThis = functionUncurryThis;
4540
4511
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
4541
4512
  var fails = fails$r;
4542
4513
  var anObject = anObject$g;
4543
- var isCallable = isCallable$l;
4514
+ var isCallable = isCallable$k;
4544
4515
  var isNullOrUndefined = isNullOrUndefined$6;
4545
4516
  var toIntegerOrInfinity = toIntegerOrInfinity$7;
4546
4517
  var toLength = toLength$6;