zwplayer-vue2x 1.0.32 → 1.0.34

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.
@@ -1,71 +1,2225 @@
1
1
  /******/ (function() { // webpackBootstrap
2
2
  /******/ var __webpack_modules__ = ({
3
3
 
4
- /***/ 96:
4
+ /***/ 34:
5
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
6
+
7
+ "use strict";
8
+
9
+ var isCallable = __webpack_require__(4901);
10
+
11
+ module.exports = function (it) {
12
+ return typeof it == 'object' ? it !== null : isCallable(it);
13
+ };
14
+
15
+
16
+ /***/ }),
17
+
18
+ /***/ 283:
19
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
20
+
21
+ "use strict";
22
+
23
+ var uncurryThis = __webpack_require__(9504);
24
+ var fails = __webpack_require__(9039);
25
+ var isCallable = __webpack_require__(4901);
26
+ var hasOwn = __webpack_require__(9297);
27
+ var DESCRIPTORS = __webpack_require__(3724);
28
+ var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(350).CONFIGURABLE);
29
+ var inspectSource = __webpack_require__(3706);
30
+ var InternalStateModule = __webpack_require__(1181);
31
+
32
+ var enforceInternalState = InternalStateModule.enforce;
33
+ var getInternalState = InternalStateModule.get;
34
+ var $String = String;
35
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
36
+ var defineProperty = Object.defineProperty;
37
+ var stringSlice = uncurryThis(''.slice);
38
+ var replace = uncurryThis(''.replace);
39
+ var join = uncurryThis([].join);
40
+
41
+ var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
42
+ return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
43
+ });
44
+
45
+ var TEMPLATE = String(String).split('String');
46
+
47
+ var makeBuiltIn = module.exports = function (value, name, options) {
48
+ if (stringSlice($String(name), 0, 7) === 'Symbol(') {
49
+ name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
50
+ }
51
+ if (options && options.getter) name = 'get ' + name;
52
+ if (options && options.setter) name = 'set ' + name;
53
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
54
+ if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
55
+ else value.name = name;
56
+ }
57
+ if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
58
+ defineProperty(value, 'length', { value: options.arity });
59
+ }
60
+ try {
61
+ if (options && hasOwn(options, 'constructor') && options.constructor) {
62
+ if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
63
+ // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
64
+ } else if (value.prototype) value.prototype = undefined;
65
+ } catch (error) { /* empty */ }
66
+ var state = enforceInternalState(value);
67
+ if (!hasOwn(state, 'source')) {
68
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
69
+ } return value;
70
+ };
71
+
72
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
73
+ // eslint-disable-next-line no-extend-native -- required
74
+ Function.prototype.toString = makeBuiltIn(function toString() {
75
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
76
+ }, 'toString');
77
+
78
+
79
+ /***/ }),
80
+
81
+ /***/ 350:
82
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
83
+
84
+ "use strict";
85
+
86
+ var DESCRIPTORS = __webpack_require__(3724);
87
+ var hasOwn = __webpack_require__(9297);
88
+
89
+ var FunctionPrototype = Function.prototype;
90
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
91
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
92
+
93
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
94
+ // additional protection from minified / mangled / dropped function names
95
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
96
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
97
+
98
+ module.exports = {
99
+ EXISTS: EXISTS,
100
+ PROPER: PROPER,
101
+ CONFIGURABLE: CONFIGURABLE
102
+ };
103
+
104
+
105
+ /***/ }),
106
+
107
+ /***/ 421:
108
+ /***/ (function(module) {
109
+
110
+ "use strict";
111
+
112
+ module.exports = {};
113
+
114
+
115
+ /***/ }),
116
+
117
+ /***/ 616:
118
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
119
+
120
+ "use strict";
121
+
122
+ var fails = __webpack_require__(9039);
123
+
124
+ module.exports = !fails(function () {
125
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
126
+ var test = (function () { /* empty */ }).bind();
127
+ // eslint-disable-next-line no-prototype-builtins -- safe
128
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
129
+ });
130
+
131
+
132
+ /***/ }),
133
+
134
+ /***/ 655:
135
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
136
+
137
+ "use strict";
138
+
139
+ var classof = __webpack_require__(6955);
140
+
141
+ var $String = String;
142
+
143
+ module.exports = function (argument) {
144
+ if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
145
+ return $String(argument);
146
+ };
147
+
148
+
149
+ /***/ }),
150
+
151
+ /***/ 741:
152
+ /***/ (function(module) {
153
+
154
+ "use strict";
155
+
156
+ var ceil = Math.ceil;
157
+ var floor = Math.floor;
158
+
159
+ // `Math.trunc` method
160
+ // https://tc39.es/ecma262/#sec-math.trunc
161
+ // eslint-disable-next-line es/no-math-trunc -- safe
162
+ module.exports = Math.trunc || function trunc(x) {
163
+ var n = +x;
164
+ return (n > 0 ? floor : ceil)(n);
165
+ };
166
+
167
+
168
+ /***/ }),
169
+
170
+ /***/ 757:
171
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
172
+
173
+ "use strict";
174
+
175
+ var getBuiltIn = __webpack_require__(7751);
176
+ var isCallable = __webpack_require__(4901);
177
+ var isPrototypeOf = __webpack_require__(1625);
178
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
179
+
180
+ var $Object = Object;
181
+
182
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
183
+ return typeof it == 'symbol';
184
+ } : function (it) {
185
+ var $Symbol = getBuiltIn('Symbol');
186
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
187
+ };
188
+
189
+
190
+ /***/ }),
191
+
192
+ /***/ 1181:
193
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
194
+
195
+ "use strict";
196
+
197
+ var NATIVE_WEAK_MAP = __webpack_require__(8622);
198
+ var globalThis = __webpack_require__(4576);
199
+ var isObject = __webpack_require__(34);
200
+ var createNonEnumerableProperty = __webpack_require__(6699);
201
+ var hasOwn = __webpack_require__(9297);
202
+ var shared = __webpack_require__(7629);
203
+ var sharedKey = __webpack_require__(6119);
204
+ var hiddenKeys = __webpack_require__(421);
205
+
206
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
207
+ var TypeError = globalThis.TypeError;
208
+ var WeakMap = globalThis.WeakMap;
209
+ var set, get, has;
210
+
211
+ var enforce = function (it) {
212
+ return has(it) ? get(it) : set(it, {});
213
+ };
214
+
215
+ var getterFor = function (TYPE) {
216
+ return function (it) {
217
+ var state;
218
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
219
+ throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
220
+ } return state;
221
+ };
222
+ };
223
+
224
+ if (NATIVE_WEAK_MAP || shared.state) {
225
+ var store = shared.state || (shared.state = new WeakMap());
226
+ /* eslint-disable no-self-assign -- prototype methods protection */
227
+ store.get = store.get;
228
+ store.has = store.has;
229
+ store.set = store.set;
230
+ /* eslint-enable no-self-assign -- prototype methods protection */
231
+ set = function (it, metadata) {
232
+ if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
233
+ metadata.facade = it;
234
+ store.set(it, metadata);
235
+ return metadata;
236
+ };
237
+ get = function (it) {
238
+ return store.get(it) || {};
239
+ };
240
+ has = function (it) {
241
+ return store.has(it);
242
+ };
243
+ } else {
244
+ var STATE = sharedKey('state');
245
+ hiddenKeys[STATE] = true;
246
+ set = function (it, metadata) {
247
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
248
+ metadata.facade = it;
249
+ createNonEnumerableProperty(it, STATE, metadata);
250
+ return metadata;
251
+ };
252
+ get = function (it) {
253
+ return hasOwn(it, STATE) ? it[STATE] : {};
254
+ };
255
+ has = function (it) {
256
+ return hasOwn(it, STATE);
257
+ };
258
+ }
259
+
260
+ module.exports = {
261
+ set: set,
262
+ get: get,
263
+ has: has,
264
+ enforce: enforce,
265
+ getterFor: getterFor
266
+ };
267
+
268
+
269
+ /***/ }),
270
+
271
+ /***/ 1291:
272
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
273
+
274
+ "use strict";
275
+
276
+ var trunc = __webpack_require__(741);
277
+
278
+ // `ToIntegerOrInfinity` abstract operation
279
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
280
+ module.exports = function (argument) {
281
+ var number = +argument;
282
+ // eslint-disable-next-line no-self-compare -- NaN check
283
+ return number !== number || number === 0 ? 0 : trunc(number);
284
+ };
285
+
286
+
287
+ /***/ }),
288
+
289
+ /***/ 1625:
290
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
291
+
292
+ "use strict";
293
+
294
+ var uncurryThis = __webpack_require__(9504);
295
+
296
+ module.exports = uncurryThis({}.isPrototypeOf);
297
+
298
+
299
+ /***/ }),
300
+
301
+ /***/ 1709:
302
+ /***/ (function(module) {
303
+
304
+ // zwplayer tools
305
+
306
+ const zwplayer_loadjs = function (id, url, cb) {
307
+ let headNode = document.getElementsByTagName("head");
308
+ if (headNode.length == 0) {
309
+ headNode = document.createElement("head");
310
+ let body = document.getElementsByTagName("body");
311
+ if (body.length > 0) {
312
+ body = body[0];
313
+ document.insertBefore(headNode, body);
314
+ } else {
315
+ alert('Invalid html document: no HEAD tag');
316
+ return false;
317
+ }
318
+ } else {
319
+ headNode = headNode[0];
320
+ const nodes = headNode.childNodes;
321
+ for (let i = 0; i < nodes.length; i++) {
322
+ const node = nodes[i];
323
+ if (node.nodeName.toUpperCase() === 'SCRIPT') {
324
+ if (node.id && node.id == id) {
325
+ if (node.getAttribute('loadstate') != 'true') {
326
+ const checkLoad = function () {
327
+ if (node.getAttribute('loadstate') != 'true') {
328
+ setTimeout(checkLoad, 50);
329
+ } else {
330
+ if (typeof cb == 'function') cb(id);
331
+ }
332
+ };
333
+ setTimeout(checkLoad, 50);
334
+ return false;
335
+ }
336
+ if (typeof cb == 'function') cb(id);
337
+ return true;
338
+ }
339
+ }
340
+ }
341
+ }
342
+ const script = document.createElement("script");
343
+ script.type = "text/javascript";
344
+ if (script.readyState) {
345
+ // IE
346
+ script.onreadystatechange = function () {
347
+ if (script.readyState == "loaded" || script.readyState == "complete") {
348
+ script.onreadystatechange = null;
349
+ script.setAttribute('loadstate', 'true');
350
+ if (typeof cb == 'function') cb(id);
351
+ }
352
+ };
353
+ } else {
354
+ script.onload = function () {
355
+ script.setAttribute('loadstate', 'true');
356
+ script.setAttribute('charset', 'utf-8');
357
+ if (typeof cb == 'function') cb(id);
358
+ };
359
+ }
360
+ script.id = id;
361
+ script.src = url;
362
+ headNode.appendChild(script);
363
+ return false;
364
+ };
365
+ module.exports.l = zwplayer_loadjs;
366
+
367
+ /***/ }),
368
+
369
+ /***/ 1828:
370
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
371
+
372
+ "use strict";
373
+
374
+ var uncurryThis = __webpack_require__(9504);
375
+ var hasOwn = __webpack_require__(9297);
376
+ var toIndexedObject = __webpack_require__(5397);
377
+ var indexOf = (__webpack_require__(9617).indexOf);
378
+ var hiddenKeys = __webpack_require__(421);
379
+
380
+ var push = uncurryThis([].push);
381
+
382
+ module.exports = function (object, names) {
383
+ var O = toIndexedObject(object);
384
+ var i = 0;
385
+ var result = [];
386
+ var key;
387
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
388
+ // Don't enum bug & hidden keys
389
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
390
+ ~indexOf(result, key) || push(result, key);
391
+ }
392
+ return result;
393
+ };
394
+
395
+
396
+ /***/ }),
397
+
398
+ /***/ 2140:
399
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
400
+
401
+ "use strict";
402
+
403
+ var wellKnownSymbol = __webpack_require__(8227);
404
+
405
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
406
+ var test = {};
407
+ // eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
408
+ test[TO_STRING_TAG] = 'z';
409
+
410
+ module.exports = String(test) === '[object z]';
411
+
412
+
413
+ /***/ }),
414
+
415
+ /***/ 2777:
416
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
417
+
418
+ "use strict";
419
+
420
+ var call = __webpack_require__(9565);
421
+ var isObject = __webpack_require__(34);
422
+ var isSymbol = __webpack_require__(757);
423
+ var getMethod = __webpack_require__(5966);
424
+ var ordinaryToPrimitive = __webpack_require__(4270);
425
+ var wellKnownSymbol = __webpack_require__(8227);
426
+
427
+ var $TypeError = TypeError;
428
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
429
+
430
+ // `ToPrimitive` abstract operation
431
+ // https://tc39.es/ecma262/#sec-toprimitive
432
+ module.exports = function (input, pref) {
433
+ if (!isObject(input) || isSymbol(input)) return input;
434
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
435
+ var result;
436
+ if (exoticToPrim) {
437
+ if (pref === undefined) pref = 'default';
438
+ result = call(exoticToPrim, input, pref);
439
+ if (!isObject(result) || isSymbol(result)) return result;
440
+ throw new $TypeError("Can't convert object to primitive value");
441
+ }
442
+ if (pref === undefined) pref = 'number';
443
+ return ordinaryToPrimitive(input, pref);
444
+ };
445
+
446
+
447
+ /***/ }),
448
+
449
+ /***/ 2796:
450
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
451
+
452
+ "use strict";
453
+
454
+ var fails = __webpack_require__(9039);
455
+ var isCallable = __webpack_require__(4901);
456
+
457
+ var replacement = /#|\.prototype\./;
458
+
459
+ var isForced = function (feature, detection) {
460
+ var value = data[normalize(feature)];
461
+ return value === POLYFILL ? true
462
+ : value === NATIVE ? false
463
+ : isCallable(detection) ? fails(detection)
464
+ : !!detection;
465
+ };
466
+
467
+ var normalize = isForced.normalize = function (string) {
468
+ return String(string).replace(replacement, '.').toLowerCase();
469
+ };
470
+
471
+ var data = isForced.data = {};
472
+ var NATIVE = isForced.NATIVE = 'N';
473
+ var POLYFILL = isForced.POLYFILL = 'P';
474
+
475
+ module.exports = isForced;
476
+
477
+
478
+ /***/ }),
479
+
480
+ /***/ 2839:
481
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
482
+
483
+ "use strict";
484
+
485
+ var globalThis = __webpack_require__(4576);
486
+
487
+ var navigator = globalThis.navigator;
488
+ var userAgent = navigator && navigator.userAgent;
489
+
490
+ module.exports = userAgent ? String(userAgent) : '';
491
+
492
+
493
+ /***/ }),
494
+
495
+ /***/ 3110:
496
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
497
+
498
+ "use strict";
499
+
500
+ var $ = __webpack_require__(6518);
501
+ var getBuiltIn = __webpack_require__(7751);
502
+ var apply = __webpack_require__(8745);
503
+ var call = __webpack_require__(9565);
504
+ var uncurryThis = __webpack_require__(9504);
505
+ var fails = __webpack_require__(9039);
506
+ var isArray = __webpack_require__(4376);
507
+ var isCallable = __webpack_require__(4901);
508
+ var isRawJSON = __webpack_require__(5810);
509
+ var isSymbol = __webpack_require__(757);
510
+ var classof = __webpack_require__(9814);
511
+ var toString = __webpack_require__(655);
512
+ var arraySlice = __webpack_require__(7680);
513
+ var parseJSONString = __webpack_require__(8235);
514
+ var uid = __webpack_require__(3392);
515
+ var NATIVE_SYMBOL = __webpack_require__(4495);
516
+ var NATIVE_RAW_JSON = __webpack_require__(7819);
517
+
518
+ var $String = String;
519
+ var $stringify = getBuiltIn('JSON', 'stringify');
520
+ var exec = uncurryThis(/./.exec);
521
+ var charAt = uncurryThis(''.charAt);
522
+ var charCodeAt = uncurryThis(''.charCodeAt);
523
+ var replace = uncurryThis(''.replace);
524
+ var slice = uncurryThis(''.slice);
525
+ var push = uncurryThis([].push);
526
+ var numberToString = uncurryThis(1.1.toString);
527
+
528
+ var surrogates = /[\uD800-\uDFFF]/g;
529
+ var lowSurrogates = /^[\uD800-\uDBFF]$/;
530
+ var hiSurrogates = /^[\uDC00-\uDFFF]$/;
531
+
532
+ var MARK = uid();
533
+ var MARK_LENGTH = MARK.length;
534
+
535
+ var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL || fails(function () {
536
+ var symbol = getBuiltIn('Symbol')('stringify detection');
537
+ // MS Edge converts symbol values to JSON as {}
538
+ return $stringify([symbol]) !== '[null]'
539
+ // WebKit converts symbol values to JSON as null
540
+ || $stringify({ a: symbol }) !== '{}'
541
+ // V8 throws on boxed symbols
542
+ || $stringify(Object(symbol)) !== '{}';
543
+ });
544
+
545
+ // https://github.com/tc39/proposal-well-formed-stringify
546
+ var ILL_FORMED_UNICODE = fails(function () {
547
+ return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
548
+ || $stringify('\uDEAD') !== '"\\udead"';
549
+ });
550
+
551
+ var stringifyWithProperSymbolsConversion = WRONG_SYMBOLS_CONVERSION ? function (it, replacer) {
552
+ var args = arraySlice(arguments);
553
+ var $replacer = getReplacerFunction(replacer);
554
+ if (!isCallable($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
555
+ args[1] = function (key, value) {
556
+ // some old implementations (like WebKit) could pass numbers as keys
557
+ if (isCallable($replacer)) value = call($replacer, this, $String(key), value);
558
+ if (!isSymbol(value)) return value;
559
+ };
560
+ return apply($stringify, null, args);
561
+ } : $stringify;
562
+
563
+ var fixIllFormedJSON = function (match, offset, string) {
564
+ var prev = charAt(string, offset - 1);
565
+ var next = charAt(string, offset + 1);
566
+ if ((exec(lowSurrogates, match) && !exec(hiSurrogates, next)) || (exec(hiSurrogates, match) && !exec(lowSurrogates, prev))) {
567
+ return '\\u' + numberToString(charCodeAt(match, 0), 16);
568
+ } return match;
569
+ };
570
+
571
+ var getReplacerFunction = function (replacer) {
572
+ if (isCallable(replacer)) return replacer;
573
+ if (!isArray(replacer)) return;
574
+ var rawLength = replacer.length;
575
+ var keys = [];
576
+ for (var i = 0; i < rawLength; i++) {
577
+ var element = replacer[i];
578
+ if (typeof element == 'string') push(keys, element);
579
+ else if (typeof element == 'number' || classof(element) === 'Number' || classof(element) === 'String') push(keys, toString(element));
580
+ }
581
+ var keysLength = keys.length;
582
+ var root = true;
583
+ return function (key, value) {
584
+ if (root) {
585
+ root = false;
586
+ return value;
587
+ }
588
+ if (isArray(this)) return value;
589
+ for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
590
+ };
591
+ };
592
+
593
+ // `JSON.stringify` method
594
+ // https://tc39.es/ecma262/#sec-json.stringify
595
+ // https://github.com/tc39/proposal-json-parse-with-source
596
+ if ($stringify) $({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE || !NATIVE_RAW_JSON }, {
597
+ stringify: function stringify(text, replacer, space) {
598
+ var replacerFunction = getReplacerFunction(replacer);
599
+ var rawStrings = [];
600
+
601
+ var json = stringifyWithProperSymbolsConversion(text, function (key, value) {
602
+ // some old implementations (like WebKit) could pass numbers as keys
603
+ var v = isCallable(replacerFunction) ? call(replacerFunction, this, $String(key), value) : value;
604
+ return !NATIVE_RAW_JSON && isRawJSON(v) ? MARK + (push(rawStrings, v.rawJSON) - 1) : v;
605
+ }, space);
606
+
607
+ if (typeof json != 'string') return json;
608
+
609
+ if (ILL_FORMED_UNICODE) json = replace(json, surrogates, fixIllFormedJSON);
610
+
611
+ if (NATIVE_RAW_JSON) return json;
612
+
613
+ var result = '';
614
+ var length = json.length;
615
+
616
+ for (var i = 0; i < length; i++) {
617
+ var chr = charAt(json, i);
618
+ if (chr === '"') {
619
+ var end = parseJSONString(json, ++i).end - 1;
620
+ var string = slice(json, i, end);
621
+ result += slice(string, 0, MARK_LENGTH) === MARK
622
+ ? rawStrings[slice(string, MARK_LENGTH)]
623
+ : '"' + string + '"';
624
+ i = end;
625
+ } else result += chr;
626
+ }
627
+
628
+ return result;
629
+ }
630
+ });
631
+
632
+
633
+ /***/ }),
634
+
635
+ /***/ 3392:
636
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
637
+
638
+ "use strict";
639
+
640
+ var uncurryThis = __webpack_require__(9504);
641
+
642
+ var id = 0;
643
+ var postfix = Math.random();
644
+ var toString = uncurryThis(1.1.toString);
645
+
646
+ module.exports = function (key) {
647
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
648
+ };
649
+
650
+
651
+ /***/ }),
652
+
653
+ /***/ 3706:
654
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
655
+
656
+ "use strict";
657
+
658
+ var uncurryThis = __webpack_require__(9504);
659
+ var isCallable = __webpack_require__(4901);
660
+ var store = __webpack_require__(7629);
661
+
662
+ var functionToString = uncurryThis(Function.toString);
663
+
664
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
665
+ if (!isCallable(store.inspectSource)) {
666
+ store.inspectSource = function (it) {
667
+ return functionToString(it);
668
+ };
669
+ }
670
+
671
+ module.exports = store.inspectSource;
672
+
673
+
674
+ /***/ }),
675
+
676
+ /***/ 3717:
677
+ /***/ (function(__unused_webpack_module, exports) {
678
+
679
+ "use strict";
680
+
681
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
682
+ exports.f = Object.getOwnPropertySymbols;
683
+
684
+
685
+ /***/ }),
686
+
687
+ /***/ 3724:
688
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
689
+
690
+ "use strict";
691
+
692
+ var fails = __webpack_require__(9039);
693
+
694
+ // Detect IE8's incomplete defineProperty implementation
695
+ module.exports = !fails(function () {
696
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
697
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
698
+ });
699
+
700
+
701
+ /***/ }),
702
+
703
+ /***/ 4055:
704
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
705
+
706
+ "use strict";
707
+
708
+ var globalThis = __webpack_require__(4576);
709
+ var isObject = __webpack_require__(34);
710
+
711
+ var document = globalThis.document;
712
+ // typeof document.createElement is 'object' in old IE
713
+ var EXISTS = isObject(document) && isObject(document.createElement);
714
+
715
+ module.exports = function (it) {
716
+ return EXISTS ? document.createElement(it) : {};
717
+ };
718
+
719
+
720
+ /***/ }),
721
+
722
+ /***/ 4117:
723
+ /***/ (function(module) {
724
+
725
+ "use strict";
726
+
727
+ // we can't use just `it == null` since of `document.all` special case
728
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
729
+ module.exports = function (it) {
730
+ return it === null || it === undefined;
731
+ };
732
+
733
+
734
+ /***/ }),
735
+
736
+ /***/ 4270:
737
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
738
+
739
+ "use strict";
740
+
741
+ var call = __webpack_require__(9565);
742
+ var isCallable = __webpack_require__(4901);
743
+ var isObject = __webpack_require__(34);
744
+
745
+ var $TypeError = TypeError;
746
+
747
+ // `OrdinaryToPrimitive` abstract operation
748
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
749
+ module.exports = function (input, pref) {
750
+ var fn, val;
751
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
752
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
753
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
754
+ throw new $TypeError("Can't convert object to primitive value");
755
+ };
756
+
757
+
758
+ /***/ }),
759
+
760
+ /***/ 4376:
761
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
762
+
763
+ "use strict";
764
+
765
+ var classof = __webpack_require__(9814);
766
+
767
+ // `IsArray` abstract operation
768
+ // https://tc39.es/ecma262/#sec-isarray
769
+ // eslint-disable-next-line es/no-array-isarray -- safe
770
+ module.exports = Array.isArray || function isArray(argument) {
771
+ return classof(argument) === 'Array';
772
+ };
773
+
774
+
775
+ /***/ }),
776
+
777
+ /***/ 4495:
778
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
779
+
780
+ "use strict";
781
+
782
+ /* eslint-disable es/no-symbol -- required for testing */
783
+ var V8_VERSION = __webpack_require__(9519);
784
+ var fails = __webpack_require__(9039);
785
+ var globalThis = __webpack_require__(4576);
786
+
787
+ var $String = globalThis.String;
788
+
789
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
790
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
791
+ var symbol = Symbol('symbol detection');
792
+ // Chrome 38 Symbol has incorrect toString conversion
793
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
794
+ // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
795
+ // of course, fail.
796
+ return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
797
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
798
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
799
+ });
800
+
801
+
802
+ /***/ }),
803
+
804
+ /***/ 4576:
805
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
806
+
807
+ "use strict";
808
+
809
+ var check = function (it) {
810
+ return it && it.Math === Math && it;
811
+ };
812
+
813
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
814
+ module.exports =
815
+ // eslint-disable-next-line es/no-global-this -- safe
816
+ check(typeof globalThis == 'object' && globalThis) ||
817
+ check(typeof window == 'object' && window) ||
818
+ // eslint-disable-next-line no-restricted-globals -- safe
819
+ check(typeof self == 'object' && self) ||
820
+ check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
821
+ check(typeof this == 'object' && this) ||
822
+ // eslint-disable-next-line no-new-func -- fallback
823
+ (function () { return this; })() || Function('return this')();
824
+
825
+
826
+ /***/ }),
827
+
828
+ /***/ 4659:
829
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
830
+
831
+ "use strict";
832
+
833
+ var DESCRIPTORS = __webpack_require__(3724);
834
+ var definePropertyModule = __webpack_require__(4913);
835
+ var createPropertyDescriptor = __webpack_require__(6980);
836
+
837
+ module.exports = function (object, key, value) {
838
+ if (DESCRIPTORS) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
839
+ else object[key] = value;
840
+ };
841
+
842
+
843
+ /***/ }),
844
+
845
+ /***/ 4901:
846
+ /***/ (function(module) {
847
+
848
+ "use strict";
849
+
850
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
851
+ var documentAll = typeof document == 'object' && document.all;
852
+
853
+ // `IsCallable` abstract operation
854
+ // https://tc39.es/ecma262/#sec-iscallable
855
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
856
+ module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
857
+ return typeof argument == 'function' || argument === documentAll;
858
+ } : function (argument) {
859
+ return typeof argument == 'function';
860
+ };
861
+
862
+
863
+ /***/ }),
864
+
865
+ /***/ 4913:
866
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
867
+
868
+ "use strict";
869
+
870
+ var DESCRIPTORS = __webpack_require__(3724);
871
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
872
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(8686);
873
+ var anObject = __webpack_require__(8551);
874
+ var toPropertyKey = __webpack_require__(6969);
875
+
876
+ var $TypeError = TypeError;
877
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
878
+ var $defineProperty = Object.defineProperty;
879
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
880
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
881
+ var ENUMERABLE = 'enumerable';
882
+ var CONFIGURABLE = 'configurable';
883
+ var WRITABLE = 'writable';
884
+
885
+ // `Object.defineProperty` method
886
+ // https://tc39.es/ecma262/#sec-object.defineproperty
887
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
888
+ anObject(O);
889
+ P = toPropertyKey(P);
890
+ anObject(Attributes);
891
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
892
+ var current = $getOwnPropertyDescriptor(O, P);
893
+ if (current && current[WRITABLE]) {
894
+ O[P] = Attributes.value;
895
+ Attributes = {
896
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
897
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
898
+ writable: false
899
+ };
900
+ }
901
+ } return $defineProperty(O, P, Attributes);
902
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
903
+ anObject(O);
904
+ P = toPropertyKey(P);
905
+ anObject(Attributes);
906
+ if (IE8_DOM_DEFINE) try {
907
+ return $defineProperty(O, P, Attributes);
908
+ } catch (error) { /* empty */ }
909
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
910
+ if ('value' in Attributes) O[P] = Attributes.value;
911
+ return O;
912
+ };
913
+
914
+
915
+ /***/ }),
916
+
917
+ /***/ 5031:
918
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
919
+
920
+ "use strict";
921
+
922
+ var getBuiltIn = __webpack_require__(7751);
923
+ var uncurryThis = __webpack_require__(9504);
924
+ var getOwnPropertyNamesModule = __webpack_require__(8480);
925
+ var getOwnPropertySymbolsModule = __webpack_require__(3717);
926
+ var anObject = __webpack_require__(8551);
927
+
928
+ var concat = uncurryThis([].concat);
929
+
930
+ // all object keys, includes non-enumerable and symbols
931
+ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
932
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
933
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
934
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
935
+ };
936
+
937
+
938
+ /***/ }),
939
+
940
+ /***/ 5397:
941
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
942
+
943
+ "use strict";
944
+
945
+ // toObject with fallback for non-array-like ES3 strings
946
+ var IndexedObject = __webpack_require__(7055);
947
+ var requireObjectCoercible = __webpack_require__(7750);
948
+
949
+ module.exports = function (it) {
950
+ return IndexedObject(requireObjectCoercible(it));
951
+ };
952
+
953
+
954
+ /***/ }),
955
+
956
+ /***/ 5610:
957
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
958
+
959
+ "use strict";
960
+
961
+ var toIntegerOrInfinity = __webpack_require__(1291);
962
+
963
+ var max = Math.max;
964
+ var min = Math.min;
965
+
966
+ // Helper for a popular repeating case of the spec:
967
+ // Let integer be ? ToInteger(index).
968
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
969
+ module.exports = function (index, length) {
970
+ var integer = toIntegerOrInfinity(index);
971
+ return integer < 0 ? max(integer + length, 0) : min(integer, length);
972
+ };
973
+
974
+
975
+ /***/ }),
976
+
977
+ /***/ 5745:
978
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
979
+
980
+ "use strict";
981
+
982
+ var store = __webpack_require__(7629);
983
+
984
+ module.exports = function (key, value) {
985
+ return store[key] || (store[key] = value || {});
986
+ };
987
+
988
+
989
+ /***/ }),
990
+
991
+ /***/ 5810:
992
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
993
+
994
+ "use strict";
995
+
996
+ var isObject = __webpack_require__(34);
997
+ var getInternalState = (__webpack_require__(1181).get);
998
+
999
+ module.exports = function isRawJSON(O) {
1000
+ if (!isObject(O)) return false;
1001
+ var state = getInternalState(O);
1002
+ return !!state && state.type === 'RawJSON';
1003
+ };
1004
+
1005
+
1006
+ /***/ }),
1007
+
1008
+ /***/ 5917:
1009
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1010
+
1011
+ "use strict";
1012
+
1013
+ var DESCRIPTORS = __webpack_require__(3724);
1014
+ var fails = __webpack_require__(9039);
1015
+ var createElement = __webpack_require__(4055);
1016
+
1017
+ // Thanks to IE8 for its funny defineProperty
1018
+ module.exports = !DESCRIPTORS && !fails(function () {
1019
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1020
+ return Object.defineProperty(createElement('div'), 'a', {
1021
+ get: function () { return 7; }
1022
+ }).a !== 7;
1023
+ });
1024
+
1025
+
1026
+ /***/ }),
1027
+
1028
+ /***/ 5966:
1029
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1030
+
1031
+ "use strict";
1032
+
1033
+ var aCallable = __webpack_require__(9306);
1034
+ var isNullOrUndefined = __webpack_require__(4117);
1035
+
1036
+ // `GetMethod` abstract operation
1037
+ // https://tc39.es/ecma262/#sec-getmethod
1038
+ module.exports = function (V, P) {
1039
+ var func = V[P];
1040
+ return isNullOrUndefined(func) ? undefined : aCallable(func);
1041
+ };
1042
+
1043
+
1044
+ /***/ }),
1045
+
1046
+ /***/ 6119:
1047
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1048
+
1049
+ "use strict";
1050
+
1051
+ var shared = __webpack_require__(5745);
1052
+ var uid = __webpack_require__(3392);
1053
+
1054
+ var keys = shared('keys');
1055
+
1056
+ module.exports = function (key) {
1057
+ return keys[key] || (keys[key] = uid(key));
1058
+ };
1059
+
1060
+
1061
+ /***/ }),
1062
+
1063
+ /***/ 6198:
1064
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1065
+
1066
+ "use strict";
1067
+
1068
+ var toLength = __webpack_require__(8014);
1069
+
1070
+ // `LengthOfArrayLike` abstract operation
1071
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
1072
+ module.exports = function (obj) {
1073
+ return toLength(obj.length);
1074
+ };
1075
+
1076
+
1077
+ /***/ }),
1078
+
1079
+ /***/ 6395:
1080
+ /***/ (function(module) {
1081
+
1082
+ "use strict";
1083
+
1084
+ module.exports = false;
1085
+
1086
+
1087
+ /***/ }),
1088
+
1089
+ /***/ 6518:
1090
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1091
+
1092
+ "use strict";
1093
+
1094
+ var globalThis = __webpack_require__(4576);
1095
+ var getOwnPropertyDescriptor = (__webpack_require__(7347).f);
1096
+ var createNonEnumerableProperty = __webpack_require__(6699);
1097
+ var defineBuiltIn = __webpack_require__(6840);
1098
+ var defineGlobalProperty = __webpack_require__(9433);
1099
+ var copyConstructorProperties = __webpack_require__(7740);
1100
+ var isForced = __webpack_require__(2796);
1101
+
1102
+ /*
1103
+ options.target - name of the target object
1104
+ options.global - target is the global object
1105
+ options.stat - export as static methods of target
1106
+ options.proto - export as prototype methods of target
1107
+ options.real - real prototype method for the `pure` version
1108
+ options.forced - export even if the native feature is available
1109
+ options.bind - bind methods to the target, required for the `pure` version
1110
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1111
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
1112
+ options.sham - add a flag to not completely full polyfills
1113
+ options.enumerable - export as enumerable property
1114
+ options.dontCallGetSet - prevent calling a getter on target
1115
+ options.name - the .name of the function if it does not match the key
1116
+ */
1117
+ module.exports = function (options, source) {
1118
+ var TARGET = options.target;
1119
+ var GLOBAL = options.global;
1120
+ var STATIC = options.stat;
1121
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1122
+ if (GLOBAL) {
1123
+ target = globalThis;
1124
+ } else if (STATIC) {
1125
+ target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
1126
+ } else {
1127
+ target = globalThis[TARGET] && globalThis[TARGET].prototype;
1128
+ }
1129
+ if (target) for (key in source) {
1130
+ sourceProperty = source[key];
1131
+ if (options.dontCallGetSet) {
1132
+ descriptor = getOwnPropertyDescriptor(target, key);
1133
+ targetProperty = descriptor && descriptor.value;
1134
+ } else targetProperty = target[key];
1135
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1136
+ // contained in target
1137
+ if (!FORCED && targetProperty !== undefined) {
1138
+ if (typeof sourceProperty == typeof targetProperty) continue;
1139
+ copyConstructorProperties(sourceProperty, targetProperty);
1140
+ }
1141
+ // add a flag to not completely full polyfills
1142
+ if (options.sham || (targetProperty && targetProperty.sham)) {
1143
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
1144
+ }
1145
+ defineBuiltIn(target, key, sourceProperty, options);
1146
+ }
1147
+ };
1148
+
1149
+
1150
+ /***/ }),
1151
+
1152
+ /***/ 6699:
1153
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1154
+
1155
+ "use strict";
1156
+
1157
+ var DESCRIPTORS = __webpack_require__(3724);
1158
+ var definePropertyModule = __webpack_require__(4913);
1159
+ var createPropertyDescriptor = __webpack_require__(6980);
1160
+
1161
+ module.exports = DESCRIPTORS ? function (object, key, value) {
1162
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
1163
+ } : function (object, key, value) {
1164
+ object[key] = value;
1165
+ return object;
1166
+ };
1167
+
1168
+
1169
+ /***/ }),
1170
+
1171
+ /***/ 6823:
1172
+ /***/ (function(module) {
1173
+
1174
+ "use strict";
1175
+
1176
+ var $String = String;
1177
+
1178
+ module.exports = function (argument) {
1179
+ try {
1180
+ return $String(argument);
1181
+ } catch (error) {
1182
+ return 'Object';
1183
+ }
1184
+ };
1185
+
1186
+
1187
+ /***/ }),
1188
+
1189
+ /***/ 6840:
1190
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1191
+
1192
+ "use strict";
1193
+
1194
+ var isCallable = __webpack_require__(4901);
1195
+ var definePropertyModule = __webpack_require__(4913);
1196
+ var makeBuiltIn = __webpack_require__(283);
1197
+ var defineGlobalProperty = __webpack_require__(9433);
1198
+
1199
+ module.exports = function (O, key, value, options) {
1200
+ if (!options) options = {};
1201
+ var simple = options.enumerable;
1202
+ var name = options.name !== undefined ? options.name : key;
1203
+ if (isCallable(value)) makeBuiltIn(value, name, options);
1204
+ if (options.global) {
1205
+ if (simple) O[key] = value;
1206
+ else defineGlobalProperty(key, value);
1207
+ } else {
1208
+ try {
1209
+ if (!options.unsafe) delete O[key];
1210
+ else if (O[key]) simple = true;
1211
+ } catch (error) { /* empty */ }
1212
+ if (simple) O[key] = value;
1213
+ else definePropertyModule.f(O, key, {
1214
+ value: value,
1215
+ enumerable: false,
1216
+ configurable: !options.nonConfigurable,
1217
+ writable: !options.nonWritable
1218
+ });
1219
+ } return O;
1220
+ };
1221
+
1222
+
1223
+ /***/ }),
1224
+
1225
+ /***/ 6955:
1226
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1227
+
1228
+ "use strict";
1229
+
1230
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(2140);
1231
+ var isCallable = __webpack_require__(4901);
1232
+ var classofRaw = __webpack_require__(9814);
1233
+ var wellKnownSymbol = __webpack_require__(8227);
1234
+
1235
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1236
+ var $Object = Object;
1237
+
1238
+ // ES3 wrong here
1239
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1240
+
1241
+ // fallback for IE11 Script Access Denied error
1242
+ var tryGet = function (it, key) {
1243
+ try {
1244
+ return it[key];
1245
+ } catch (error) { /* empty */ }
1246
+ };
1247
+
1248
+ // getting tag from ES6+ `Object.prototype.toString`
1249
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1250
+ var O, tag, result;
1251
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
1252
+ // @@toStringTag case
1253
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1254
+ // builtinTag case
1255
+ : CORRECT_ARGUMENTS ? classofRaw(O)
1256
+ // ES3 arguments fallback
1257
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1258
+ };
1259
+
1260
+
1261
+ /***/ }),
1262
+
1263
+ /***/ 6969:
1264
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1265
+
1266
+ "use strict";
1267
+
1268
+ var toPrimitive = __webpack_require__(2777);
1269
+ var isSymbol = __webpack_require__(757);
1270
+
1271
+ // `ToPropertyKey` abstract operation
1272
+ // https://tc39.es/ecma262/#sec-topropertykey
1273
+ module.exports = function (argument) {
1274
+ var key = toPrimitive(argument, 'string');
1275
+ return isSymbol(key) ? key : key + '';
1276
+ };
1277
+
1278
+
1279
+ /***/ }),
1280
+
1281
+ /***/ 6980:
1282
+ /***/ (function(module) {
1283
+
1284
+ "use strict";
1285
+
1286
+ module.exports = function (bitmap, value) {
1287
+ return {
1288
+ enumerable: !(bitmap & 1),
1289
+ configurable: !(bitmap & 2),
1290
+ writable: !(bitmap & 4),
1291
+ value: value
1292
+ };
1293
+ };
1294
+
1295
+
1296
+ /***/ }),
1297
+
1298
+ /***/ 7040:
1299
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1300
+
1301
+ "use strict";
1302
+
1303
+ /* eslint-disable es/no-symbol -- required for testing */
1304
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1305
+
1306
+ module.exports = NATIVE_SYMBOL &&
1307
+ !Symbol.sham &&
1308
+ typeof Symbol.iterator == 'symbol';
1309
+
1310
+
1311
+ /***/ }),
1312
+
1313
+ /***/ 7055:
1314
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1315
+
1316
+ "use strict";
1317
+
1318
+ var uncurryThis = __webpack_require__(9504);
1319
+ var fails = __webpack_require__(9039);
1320
+ var classof = __webpack_require__(9814);
1321
+
1322
+ var $Object = Object;
1323
+ var split = uncurryThis(''.split);
1324
+
1325
+ // fallback for non-array-like ES3 and non-enumerable old V8 strings
1326
+ module.exports = fails(function () {
1327
+ // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
1328
+ // eslint-disable-next-line no-prototype-builtins -- safe
1329
+ return !$Object('z').propertyIsEnumerable(0);
1330
+ }) ? function (it) {
1331
+ return classof(it) === 'String' ? split(it, '') : $Object(it);
1332
+ } : $Object;
1333
+
1334
+
1335
+ /***/ }),
1336
+
1337
+ /***/ 7347:
1338
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1339
+
1340
+ "use strict";
1341
+
1342
+ var DESCRIPTORS = __webpack_require__(3724);
1343
+ var call = __webpack_require__(9565);
1344
+ var propertyIsEnumerableModule = __webpack_require__(8773);
1345
+ var createPropertyDescriptor = __webpack_require__(6980);
1346
+ var toIndexedObject = __webpack_require__(5397);
1347
+ var toPropertyKey = __webpack_require__(6969);
1348
+ var hasOwn = __webpack_require__(9297);
1349
+ var IE8_DOM_DEFINE = __webpack_require__(5917);
1350
+
1351
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1352
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1353
+
1354
+ // `Object.getOwnPropertyDescriptor` method
1355
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
1356
+ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
1357
+ O = toIndexedObject(O);
1358
+ P = toPropertyKey(P);
1359
+ if (IE8_DOM_DEFINE) try {
1360
+ return $getOwnPropertyDescriptor(O, P);
1361
+ } catch (error) { /* empty */ }
1362
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
1363
+ };
1364
+
1365
+
1366
+ /***/ }),
1367
+
1368
+ /***/ 7629:
1369
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1370
+
1371
+ "use strict";
1372
+
1373
+ var IS_PURE = __webpack_require__(6395);
1374
+ var globalThis = __webpack_require__(4576);
1375
+ var defineGlobalProperty = __webpack_require__(9433);
1376
+
1377
+ var SHARED = '__core-js_shared__';
1378
+ var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
1379
+
1380
+ (store.versions || (store.versions = [])).push({
1381
+ version: '3.48.0',
1382
+ mode: IS_PURE ? 'pure' : 'global',
1383
+ copyright: '© 2013–2025 Denis Pushkarev (zloirock.ru), 2025–2026 CoreJS Company (core-js.io). All rights reserved.',
1384
+ license: 'https://github.com/zloirock/core-js/blob/v3.48.0/LICENSE',
1385
+ source: 'https://github.com/zloirock/core-js'
1386
+ });
1387
+
1388
+
1389
+ /***/ }),
1390
+
1391
+ /***/ 7680:
1392
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1393
+
1394
+ "use strict";
1395
+
1396
+ var uncurryThis = __webpack_require__(9504);
1397
+
1398
+ module.exports = uncurryThis([].slice);
1399
+
1400
+
1401
+ /***/ }),
1402
+
1403
+ /***/ 7740:
1404
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1405
+
1406
+ "use strict";
1407
+
1408
+ var hasOwn = __webpack_require__(9297);
1409
+ var ownKeys = __webpack_require__(5031);
1410
+ var getOwnPropertyDescriptorModule = __webpack_require__(7347);
1411
+ var definePropertyModule = __webpack_require__(4913);
1412
+
1413
+ module.exports = function (target, source, exceptions) {
1414
+ var keys = ownKeys(source);
1415
+ var defineProperty = definePropertyModule.f;
1416
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1417
+ for (var i = 0; i < keys.length; i++) {
1418
+ var key = keys[i];
1419
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
1420
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1421
+ }
1422
+ }
1423
+ };
1424
+
1425
+
1426
+ /***/ }),
1427
+
1428
+ /***/ 7750:
1429
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1430
+
1431
+ "use strict";
1432
+
1433
+ var isNullOrUndefined = __webpack_require__(4117);
1434
+
1435
+ var $TypeError = TypeError;
1436
+
1437
+ // `RequireObjectCoercible` abstract operation
1438
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
1439
+ module.exports = function (it) {
1440
+ if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
1441
+ return it;
1442
+ };
1443
+
1444
+
1445
+ /***/ }),
1446
+
1447
+ /***/ 7751:
1448
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1449
+
1450
+ "use strict";
1451
+
1452
+ var globalThis = __webpack_require__(4576);
1453
+ var isCallable = __webpack_require__(4901);
1454
+
1455
+ var aFunction = function (argument) {
1456
+ return isCallable(argument) ? argument : undefined;
1457
+ };
1458
+
1459
+ module.exports = function (namespace, method) {
1460
+ return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
1461
+ };
1462
+
1463
+
1464
+ /***/ }),
1465
+
1466
+ /***/ 7819:
1467
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1468
+
1469
+ "use strict";
1470
+
1471
+ /* eslint-disable es/no-json -- safe */
1472
+ var fails = __webpack_require__(9039);
1473
+
1474
+ module.exports = !fails(function () {
1475
+ var unsafeInt = '9007199254740993';
1476
+ // eslint-disable-next-line es/no-json-rawjson -- feature detection
1477
+ var raw = JSON.rawJSON(unsafeInt);
1478
+ // eslint-disable-next-line es/no-json-israwjson -- feature detection
1479
+ return !JSON.isRawJSON(raw) || JSON.stringify(raw) !== unsafeInt;
1480
+ });
1481
+
1482
+
1483
+ /***/ }),
1484
+
1485
+ /***/ 8014:
1486
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1487
+
1488
+ "use strict";
1489
+
1490
+ var toIntegerOrInfinity = __webpack_require__(1291);
1491
+
1492
+ var min = Math.min;
1493
+
1494
+ // `ToLength` abstract operation
1495
+ // https://tc39.es/ecma262/#sec-tolength
1496
+ module.exports = function (argument) {
1497
+ var len = toIntegerOrInfinity(argument);
1498
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1499
+ };
1500
+
1501
+
1502
+ /***/ }),
1503
+
1504
+ /***/ 8227:
1505
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1506
+
1507
+ "use strict";
1508
+
1509
+ var globalThis = __webpack_require__(4576);
1510
+ var shared = __webpack_require__(5745);
1511
+ var hasOwn = __webpack_require__(9297);
1512
+ var uid = __webpack_require__(3392);
1513
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1514
+ var USE_SYMBOL_AS_UID = __webpack_require__(7040);
1515
+
1516
+ var Symbol = globalThis.Symbol;
1517
+ var WellKnownSymbolsStore = shared('wks');
1518
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
1519
+
1520
+ module.exports = function (name) {
1521
+ if (!hasOwn(WellKnownSymbolsStore, name)) {
1522
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
1523
+ ? Symbol[name]
1524
+ : createWellKnownSymbol('Symbol.' + name);
1525
+ } return WellKnownSymbolsStore[name];
1526
+ };
1527
+
1528
+
1529
+ /***/ }),
1530
+
1531
+ /***/ 8235:
1532
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1533
+
1534
+ "use strict";
1535
+
1536
+ var uncurryThis = __webpack_require__(9504);
1537
+ var hasOwn = __webpack_require__(9297);
1538
+
1539
+ var $SyntaxError = SyntaxError;
1540
+ var $parseInt = parseInt;
1541
+ var fromCharCode = String.fromCharCode;
1542
+ var at = uncurryThis(''.charAt);
1543
+ var slice = uncurryThis(''.slice);
1544
+ var exec = uncurryThis(/./.exec);
1545
+
1546
+ var codePoints = {
1547
+ '\\"': '"',
1548
+ '\\\\': '\\',
1549
+ '\\/': '/',
1550
+ '\\b': '\b',
1551
+ '\\f': '\f',
1552
+ '\\n': '\n',
1553
+ '\\r': '\r',
1554
+ '\\t': '\t'
1555
+ };
1556
+
1557
+ var IS_4_HEX_DIGITS = /^[\da-f]{4}$/i;
1558
+ // eslint-disable-next-line regexp/no-control-character -- safe
1559
+ var IS_C0_CONTROL_CODE = /^[\u0000-\u001F]$/;
1560
+
1561
+ module.exports = function (source, i) {
1562
+ var unterminated = true;
1563
+ var value = '';
1564
+ while (i < source.length) {
1565
+ var chr = at(source, i);
1566
+ if (chr === '\\') {
1567
+ var twoChars = slice(source, i, i + 2);
1568
+ if (hasOwn(codePoints, twoChars)) {
1569
+ value += codePoints[twoChars];
1570
+ i += 2;
1571
+ } else if (twoChars === '\\u') {
1572
+ i += 2;
1573
+ var fourHexDigits = slice(source, i, i + 4);
1574
+ if (!exec(IS_4_HEX_DIGITS, fourHexDigits)) throw new $SyntaxError('Bad Unicode escape at: ' + i);
1575
+ value += fromCharCode($parseInt(fourHexDigits, 16));
1576
+ i += 4;
1577
+ } else throw new $SyntaxError('Unknown escape sequence: "' + twoChars + '"');
1578
+ } else if (chr === '"') {
1579
+ unterminated = false;
1580
+ i++;
1581
+ break;
1582
+ } else {
1583
+ if (exec(IS_C0_CONTROL_CODE, chr)) throw new $SyntaxError('Bad control character in string literal at: ' + i);
1584
+ value += chr;
1585
+ i++;
1586
+ }
1587
+ }
1588
+ if (unterminated) throw new $SyntaxError('Unterminated string at: ' + i);
1589
+ return { value: value, end: i };
1590
+ };
1591
+
1592
+
1593
+ /***/ }),
1594
+
1595
+ /***/ 8335:
1596
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1597
+
1598
+ "use strict";
1599
+
1600
+ // TODO: Remove from `core-js@4`
1601
+ __webpack_require__(9112);
1602
+
1603
+
1604
+ /***/ }),
1605
+
1606
+ /***/ 8480:
1607
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
1608
+
1609
+ "use strict";
1610
+
1611
+ var internalObjectKeys = __webpack_require__(1828);
1612
+ var enumBugKeys = __webpack_require__(8727);
1613
+
1614
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1615
+
1616
+ // `Object.getOwnPropertyNames` method
1617
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
1618
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1619
+ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1620
+ return internalObjectKeys(O, hiddenKeys);
1621
+ };
1622
+
1623
+
1624
+ /***/ }),
1625
+
1626
+ /***/ 8551:
1627
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1628
+
1629
+ "use strict";
1630
+
1631
+ var isObject = __webpack_require__(34);
1632
+
1633
+ var $String = String;
1634
+ var $TypeError = TypeError;
1635
+
1636
+ // `Assert: Type(argument) is Object`
1637
+ module.exports = function (argument) {
1638
+ if (isObject(argument)) return argument;
1639
+ throw new $TypeError($String(argument) + ' is not an object');
1640
+ };
1641
+
1642
+
1643
+ /***/ }),
1644
+
1645
+ /***/ 8622:
1646
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1647
+
1648
+ "use strict";
1649
+
1650
+ var globalThis = __webpack_require__(4576);
1651
+ var isCallable = __webpack_require__(4901);
1652
+
1653
+ var WeakMap = globalThis.WeakMap;
1654
+
1655
+ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
1656
+
1657
+
1658
+ /***/ }),
1659
+
1660
+ /***/ 8686:
1661
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1662
+
1663
+ "use strict";
1664
+
1665
+ var DESCRIPTORS = __webpack_require__(3724);
1666
+ var fails = __webpack_require__(9039);
1667
+
1668
+ // V8 ~ Chrome 36-
1669
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
1670
+ module.exports = DESCRIPTORS && fails(function () {
1671
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1672
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
1673
+ value: 42,
1674
+ writable: false
1675
+ }).prototype !== 42;
1676
+ });
1677
+
1678
+
1679
+ /***/ }),
1680
+
1681
+ /***/ 8727:
5
1682
  /***/ (function(module) {
6
1683
 
7
- // zwplayer tools
1684
+ "use strict";
8
1685
 
9
- const zwplayer_loadjs = function (id, url, cb) {
10
- let headNode = document.getElementsByTagName("head");
11
- if (headNode.length == 0) {
12
- headNode = document.createElement("head");
13
- let body = document.getElementsByTagName("body");
14
- if (body.length > 0) {
15
- body = body[0];
16
- document.insertBefore(headNode, body);
1686
+ // IE8- don't enum bug keys
1687
+ module.exports = [
1688
+ 'constructor',
1689
+ 'hasOwnProperty',
1690
+ 'isPrototypeOf',
1691
+ 'propertyIsEnumerable',
1692
+ 'toLocaleString',
1693
+ 'toString',
1694
+ 'valueOf'
1695
+ ];
1696
+
1697
+
1698
+ /***/ }),
1699
+
1700
+ /***/ 8745:
1701
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1702
+
1703
+ "use strict";
1704
+
1705
+ var NATIVE_BIND = __webpack_require__(616);
1706
+
1707
+ var FunctionPrototype = Function.prototype;
1708
+ var apply = FunctionPrototype.apply;
1709
+ var call = FunctionPrototype.call;
1710
+
1711
+ // eslint-disable-next-line es/no-function-prototype-bind, es/no-reflect -- safe
1712
+ module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
1713
+ return call.apply(apply, arguments);
1714
+ });
1715
+
1716
+
1717
+ /***/ }),
1718
+
1719
+ /***/ 8773:
1720
+ /***/ (function(__unused_webpack_module, exports) {
1721
+
1722
+ "use strict";
1723
+
1724
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
1725
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1726
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1727
+
1728
+ // Nashorn ~ JDK8 bug
1729
+ var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
1730
+
1731
+ // `Object.prototype.propertyIsEnumerable` method implementation
1732
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
1733
+ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
1734
+ var descriptor = getOwnPropertyDescriptor(this, V);
1735
+ return !!descriptor && descriptor.enumerable;
1736
+ } : $propertyIsEnumerable;
1737
+
1738
+
1739
+ /***/ }),
1740
+
1741
+ /***/ 8981:
1742
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1743
+
1744
+ "use strict";
1745
+
1746
+ var requireObjectCoercible = __webpack_require__(7750);
1747
+
1748
+ var $Object = Object;
1749
+
1750
+ // `ToObject` abstract operation
1751
+ // https://tc39.es/ecma262/#sec-toobject
1752
+ module.exports = function (argument) {
1753
+ return $Object(requireObjectCoercible(argument));
1754
+ };
1755
+
1756
+
1757
+ /***/ }),
1758
+
1759
+ /***/ 9039:
1760
+ /***/ (function(module) {
1761
+
1762
+ "use strict";
1763
+
1764
+ module.exports = function (exec) {
1765
+ try {
1766
+ return !!exec();
1767
+ } catch (error) {
1768
+ return true;
1769
+ }
1770
+ };
1771
+
1772
+
1773
+ /***/ }),
1774
+
1775
+ /***/ 9112:
1776
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
1777
+
1778
+ "use strict";
1779
+
1780
+ var $ = __webpack_require__(6518);
1781
+ var DESCRIPTORS = __webpack_require__(3724);
1782
+ var globalThis = __webpack_require__(4576);
1783
+ var getBuiltIn = __webpack_require__(7751);
1784
+ var uncurryThis = __webpack_require__(9504);
1785
+ var call = __webpack_require__(9565);
1786
+ var isCallable = __webpack_require__(4901);
1787
+ var isObject = __webpack_require__(34);
1788
+ var isArray = __webpack_require__(4376);
1789
+ var hasOwn = __webpack_require__(9297);
1790
+ var toString = __webpack_require__(655);
1791
+ var lengthOfArrayLike = __webpack_require__(6198);
1792
+ var createProperty = __webpack_require__(4659);
1793
+ var fails = __webpack_require__(9039);
1794
+ var parseJSONString = __webpack_require__(8235);
1795
+ var NATIVE_SYMBOL = __webpack_require__(4495);
1796
+
1797
+ var JSON = globalThis.JSON;
1798
+ var Number = globalThis.Number;
1799
+ var SyntaxError = globalThis.SyntaxError;
1800
+ var nativeParse = JSON && JSON.parse;
1801
+ var enumerableOwnProperties = getBuiltIn('Object', 'keys');
1802
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1803
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1804
+ var at = uncurryThis(''.charAt);
1805
+ var slice = uncurryThis(''.slice);
1806
+ var exec = uncurryThis(/./.exec);
1807
+ var push = uncurryThis([].push);
1808
+
1809
+ var IS_DIGIT = /^\d$/;
1810
+ var IS_NON_ZERO_DIGIT = /^[1-9]$/;
1811
+ var IS_NUMBER_START = /^[\d-]$/;
1812
+ var IS_WHITESPACE = /^[\t\n\r ]$/;
1813
+
1814
+ var PRIMITIVE = 0;
1815
+ var OBJECT = 1;
1816
+
1817
+ var $parse = function (source, reviver) {
1818
+ source = toString(source);
1819
+ var context = new Context(source, 0, '');
1820
+ var root = context.parse();
1821
+ var value = root.value;
1822
+ var endIndex = context.skip(IS_WHITESPACE, root.end);
1823
+ if (endIndex < source.length) {
1824
+ throw new SyntaxError('Unexpected extra character: "' + at(source, endIndex) + '" after the parsed data at: ' + endIndex);
1825
+ }
1826
+ return isCallable(reviver) ? internalize({ '': value }, '', reviver, root) : value;
1827
+ };
1828
+
1829
+ var internalize = function (holder, name, reviver, node) {
1830
+ var val = holder[name];
1831
+ var unmodified = node && val === node.value;
1832
+ var context = unmodified && typeof node.source == 'string' ? { source: node.source } : {};
1833
+ var elementRecordsLen, keys, len, i, P;
1834
+ if (isObject(val)) {
1835
+ var nodeIsArray = isArray(val);
1836
+ var nodes = unmodified ? node.nodes : nodeIsArray ? [] : {};
1837
+ if (nodeIsArray) {
1838
+ elementRecordsLen = nodes.length;
1839
+ len = lengthOfArrayLike(val);
1840
+ for (i = 0; i < len; i++) {
1841
+ internalizeProperty(val, i, internalize(val, '' + i, reviver, i < elementRecordsLen ? nodes[i] : undefined));
1842
+ }
17
1843
  } else {
18
- alert('Invalid html document: no HEAD tag');
19
- return false;
20
- }
21
- } else {
22
- headNode = headNode[0];
23
- const nodes = headNode.childNodes;
24
- for (let i = 0; i < nodes.length; i++) {
25
- const node = nodes[i];
26
- if (node.nodeName.toUpperCase() === 'SCRIPT') {
27
- if (node.id && node.id == id) {
28
- if (node.getAttribute('loadstate') != 'true') {
29
- const checkLoad = function () {
30
- if (node.getAttribute('loadstate') != 'true') {
31
- setTimeout(checkLoad, 50);
32
- } else {
33
- if (typeof cb == 'function') cb(id);
34
- }
35
- };
36
- setTimeout(checkLoad, 50);
37
- return false;
38
- }
39
- if (typeof cb == 'function') cb(id);
40
- return true;
41
- }
1844
+ keys = enumerableOwnProperties(val);
1845
+ len = lengthOfArrayLike(keys);
1846
+ for (i = 0; i < len; i++) {
1847
+ P = keys[i];
1848
+ internalizeProperty(val, P, internalize(val, P, reviver, hasOwn(nodes, P) ? nodes[P] : undefined));
42
1849
  }
43
1850
  }
44
1851
  }
45
- const script = document.createElement("script");
46
- script.type = "text/javascript";
47
- if (script.readyState) {
48
- // IE
49
- script.onreadystatechange = function () {
50
- if (script.readyState == "loaded" || script.readyState == "complete") {
51
- script.onreadystatechange = null;
52
- script.setAttribute('loadstate', 'true');
53
- if (typeof cb == 'function') cb(id);
1852
+ return call(reviver, holder, name, val, context);
1853
+ };
1854
+
1855
+ var internalizeProperty = function (object, key, value) {
1856
+ if (DESCRIPTORS) {
1857
+ var descriptor = getOwnPropertyDescriptor(object, key);
1858
+ if (descriptor && !descriptor.configurable) return;
1859
+ }
1860
+ if (value === undefined) delete object[key];
1861
+ else createProperty(object, key, value);
1862
+ };
1863
+
1864
+ var Node = function (value, end, source, nodes) {
1865
+ this.value = value;
1866
+ this.end = end;
1867
+ this.source = source;
1868
+ this.nodes = nodes;
1869
+ };
1870
+
1871
+ var Context = function (source, index) {
1872
+ this.source = source;
1873
+ this.index = index;
1874
+ };
1875
+
1876
+ // https://www.json.org/json-en.html
1877
+ Context.prototype = {
1878
+ fork: function (nextIndex) {
1879
+ return new Context(this.source, nextIndex);
1880
+ },
1881
+ parse: function () {
1882
+ var source = this.source;
1883
+ var i = this.skip(IS_WHITESPACE, this.index);
1884
+ var fork = this.fork(i);
1885
+ var chr = at(source, i);
1886
+ if (exec(IS_NUMBER_START, chr)) return fork.number();
1887
+ switch (chr) {
1888
+ case '{':
1889
+ return fork.object();
1890
+ case '[':
1891
+ return fork.array();
1892
+ case '"':
1893
+ return fork.string();
1894
+ case 't':
1895
+ return fork.keyword(true);
1896
+ case 'f':
1897
+ return fork.keyword(false);
1898
+ case 'n':
1899
+ return fork.keyword(null);
1900
+ } throw new SyntaxError('Unexpected character: "' + chr + '" at: ' + i);
1901
+ },
1902
+ node: function (type, value, start, end, nodes) {
1903
+ return new Node(value, end, type ? null : slice(this.source, start, end), nodes);
1904
+ },
1905
+ object: function () {
1906
+ var source = this.source;
1907
+ var i = this.index + 1;
1908
+ var expectKeypair = false;
1909
+ var object = {};
1910
+ var nodes = {};
1911
+ while (i < source.length) {
1912
+ i = this.until(['"', '}'], i);
1913
+ if (at(source, i) === '}' && !expectKeypair) {
1914
+ i++;
1915
+ break;
54
1916
  }
55
- };
56
- } else {
57
- script.onload = function () {
58
- script.setAttribute('loadstate', 'true');
59
- script.setAttribute('charset', 'utf-8');
60
- if (typeof cb == 'function') cb(id);
61
- };
1917
+ // Parsing the key
1918
+ var result = this.fork(i).string();
1919
+ var key = result.value;
1920
+ i = result.end;
1921
+ i = this.until([':'], i) + 1;
1922
+ // Parsing value
1923
+ i = this.skip(IS_WHITESPACE, i);
1924
+ result = this.fork(i).parse();
1925
+ createProperty(nodes, key, result);
1926
+ createProperty(object, key, result.value);
1927
+ i = this.until([',', '}'], result.end);
1928
+ var chr = at(source, i);
1929
+ if (chr === ',') {
1930
+ expectKeypair = true;
1931
+ i++;
1932
+ } else if (chr === '}') {
1933
+ i++;
1934
+ break;
1935
+ }
1936
+ }
1937
+ return this.node(OBJECT, object, this.index, i, nodes);
1938
+ },
1939
+ array: function () {
1940
+ var source = this.source;
1941
+ var i = this.index + 1;
1942
+ var expectElement = false;
1943
+ var array = [];
1944
+ var nodes = [];
1945
+ while (i < source.length) {
1946
+ i = this.skip(IS_WHITESPACE, i);
1947
+ if (at(source, i) === ']' && !expectElement) {
1948
+ i++;
1949
+ break;
1950
+ }
1951
+ var result = this.fork(i).parse();
1952
+ push(nodes, result);
1953
+ push(array, result.value);
1954
+ i = this.until([',', ']'], result.end);
1955
+ if (at(source, i) === ',') {
1956
+ expectElement = true;
1957
+ i++;
1958
+ } else if (at(source, i) === ']') {
1959
+ i++;
1960
+ break;
1961
+ }
1962
+ }
1963
+ return this.node(OBJECT, array, this.index, i, nodes);
1964
+ },
1965
+ string: function () {
1966
+ var index = this.index;
1967
+ var parsed = parseJSONString(this.source, this.index + 1);
1968
+ return this.node(PRIMITIVE, parsed.value, index, parsed.end);
1969
+ },
1970
+ number: function () {
1971
+ var source = this.source;
1972
+ var startIndex = this.index;
1973
+ var i = startIndex;
1974
+ if (at(source, i) === '-') i++;
1975
+ if (at(source, i) === '0') i++;
1976
+ else if (exec(IS_NON_ZERO_DIGIT, at(source, i))) i = this.skip(IS_DIGIT, i + 1);
1977
+ else throw new SyntaxError('Failed to parse number at: ' + i);
1978
+ if (at(source, i) === '.') i = this.skip(IS_DIGIT, i + 1);
1979
+ if (at(source, i) === 'e' || at(source, i) === 'E') {
1980
+ i++;
1981
+ if (at(source, i) === '+' || at(source, i) === '-') i++;
1982
+ var exponentStartIndex = i;
1983
+ i = this.skip(IS_DIGIT, i);
1984
+ if (exponentStartIndex === i) throw new SyntaxError("Failed to parse number's exponent value at: " + i);
1985
+ }
1986
+ return this.node(PRIMITIVE, Number(slice(source, startIndex, i)), startIndex, i);
1987
+ },
1988
+ keyword: function (value) {
1989
+ var keyword = '' + value;
1990
+ var index = this.index;
1991
+ var endIndex = index + keyword.length;
1992
+ if (slice(this.source, index, endIndex) !== keyword) throw new SyntaxError('Failed to parse value at: ' + index);
1993
+ return this.node(PRIMITIVE, value, index, endIndex);
1994
+ },
1995
+ skip: function (regex, i) {
1996
+ var source = this.source;
1997
+ for (; i < source.length; i++) if (!exec(regex, at(source, i))) break;
1998
+ return i;
1999
+ },
2000
+ until: function (array, i) {
2001
+ i = this.skip(IS_WHITESPACE, i);
2002
+ var chr = at(this.source, i);
2003
+ for (var j = 0; j < array.length; j++) if (array[j] === chr) return i;
2004
+ throw new SyntaxError('Unexpected character: "' + chr + '" at: ' + i);
62
2005
  }
63
- script.id = id;
64
- script.src = url;
65
- headNode.appendChild(script);
66
- return false;
67
2006
  };
68
- module.exports.l = zwplayer_loadjs;
2007
+
2008
+ var NO_SOURCE_SUPPORT = fails(function () {
2009
+ var unsafeInt = '9007199254740993';
2010
+ var source;
2011
+ nativeParse(unsafeInt, function (key, value, context) {
2012
+ source = context.source;
2013
+ });
2014
+ return source !== unsafeInt;
2015
+ });
2016
+
2017
+ var PROPER_BASE_PARSE = NATIVE_SYMBOL && !fails(function () {
2018
+ // Safari 9 bug
2019
+ return 1 / nativeParse('-0 \t') !== -Infinity;
2020
+ });
2021
+
2022
+ // `JSON.parse` method
2023
+ // https://tc39.es/ecma262/#sec-json.parse
2024
+ // https://github.com/tc39/proposal-json-parse-with-source
2025
+ $({ target: 'JSON', stat: true, forced: NO_SOURCE_SUPPORT }, {
2026
+ parse: function parse(text, reviver) {
2027
+ return PROPER_BASE_PARSE && !isCallable(reviver) ? nativeParse(text) : $parse(text, reviver);
2028
+ }
2029
+ });
2030
+
2031
+
2032
+ /***/ }),
2033
+
2034
+ /***/ 9297:
2035
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2036
+
2037
+ "use strict";
2038
+
2039
+ var uncurryThis = __webpack_require__(9504);
2040
+ var toObject = __webpack_require__(8981);
2041
+
2042
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
2043
+
2044
+ // `HasOwnProperty` abstract operation
2045
+ // https://tc39.es/ecma262/#sec-hasownproperty
2046
+ // eslint-disable-next-line es/no-object-hasown -- safe
2047
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
2048
+ return hasOwnProperty(toObject(it), key);
2049
+ };
2050
+
2051
+
2052
+ /***/ }),
2053
+
2054
+ /***/ 9306:
2055
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2056
+
2057
+ "use strict";
2058
+
2059
+ var isCallable = __webpack_require__(4901);
2060
+ var tryToString = __webpack_require__(6823);
2061
+
2062
+ var $TypeError = TypeError;
2063
+
2064
+ // `Assert: IsCallable(argument) is true`
2065
+ module.exports = function (argument) {
2066
+ if (isCallable(argument)) return argument;
2067
+ throw new $TypeError(tryToString(argument) + ' is not a function');
2068
+ };
2069
+
2070
+
2071
+ /***/ }),
2072
+
2073
+ /***/ 9433:
2074
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2075
+
2076
+ "use strict";
2077
+
2078
+ var globalThis = __webpack_require__(4576);
2079
+
2080
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
2081
+ var defineProperty = Object.defineProperty;
2082
+
2083
+ module.exports = function (key, value) {
2084
+ try {
2085
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
2086
+ } catch (error) {
2087
+ globalThis[key] = value;
2088
+ } return value;
2089
+ };
2090
+
2091
+
2092
+ /***/ }),
2093
+
2094
+ /***/ 9504:
2095
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2096
+
2097
+ "use strict";
2098
+
2099
+ var NATIVE_BIND = __webpack_require__(616);
2100
+
2101
+ var FunctionPrototype = Function.prototype;
2102
+ var call = FunctionPrototype.call;
2103
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2104
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
2105
+
2106
+ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
2107
+ return function () {
2108
+ return call.apply(fn, arguments);
2109
+ };
2110
+ };
2111
+
2112
+
2113
+ /***/ }),
2114
+
2115
+ /***/ 9519:
2116
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2117
+
2118
+ "use strict";
2119
+
2120
+ var globalThis = __webpack_require__(4576);
2121
+ var userAgent = __webpack_require__(2839);
2122
+
2123
+ var process = globalThis.process;
2124
+ var Deno = globalThis.Deno;
2125
+ var versions = process && process.versions || Deno && Deno.version;
2126
+ var v8 = versions && versions.v8;
2127
+ var match, version;
2128
+
2129
+ if (v8) {
2130
+ match = v8.split('.');
2131
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
2132
+ // but their correct versions are not interesting for us
2133
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
2134
+ }
2135
+
2136
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
2137
+ // so check `userAgent` even if `.v8` exists, but 0
2138
+ if (!version && userAgent) {
2139
+ match = userAgent.match(/Edge\/(\d+)/);
2140
+ if (!match || match[1] >= 74) {
2141
+ match = userAgent.match(/Chrome\/(\d+)/);
2142
+ if (match) version = +match[1];
2143
+ }
2144
+ }
2145
+
2146
+ module.exports = version;
2147
+
2148
+
2149
+ /***/ }),
2150
+
2151
+ /***/ 9565:
2152
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2153
+
2154
+ "use strict";
2155
+
2156
+ var NATIVE_BIND = __webpack_require__(616);
2157
+
2158
+ var call = Function.prototype.call;
2159
+ // eslint-disable-next-line es/no-function-prototype-bind -- safe
2160
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
2161
+ return call.apply(call, arguments);
2162
+ };
2163
+
2164
+
2165
+ /***/ }),
2166
+
2167
+ /***/ 9617:
2168
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2169
+
2170
+ "use strict";
2171
+
2172
+ var toIndexedObject = __webpack_require__(5397);
2173
+ var toAbsoluteIndex = __webpack_require__(5610);
2174
+ var lengthOfArrayLike = __webpack_require__(6198);
2175
+
2176
+ // `Array.prototype.{ indexOf, includes }` methods implementation
2177
+ var createMethod = function (IS_INCLUDES) {
2178
+ return function ($this, el, fromIndex) {
2179
+ var O = toIndexedObject($this);
2180
+ var length = lengthOfArrayLike(O);
2181
+ if (length === 0) return !IS_INCLUDES && -1;
2182
+ var index = toAbsoluteIndex(fromIndex, length);
2183
+ var value;
2184
+ // Array#includes uses SameValueZero equality algorithm
2185
+ // eslint-disable-next-line no-self-compare -- NaN check
2186
+ if (IS_INCLUDES && el !== el) while (length > index) {
2187
+ value = O[index++];
2188
+ // eslint-disable-next-line no-self-compare -- NaN check
2189
+ if (value !== value) return true;
2190
+ // Array#indexOf ignores holes, Array#includes - not
2191
+ } else for (;length > index; index++) {
2192
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
2193
+ } return !IS_INCLUDES && -1;
2194
+ };
2195
+ };
2196
+
2197
+ module.exports = {
2198
+ // `Array.prototype.includes` method
2199
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
2200
+ includes: createMethod(true),
2201
+ // `Array.prototype.indexOf` method
2202
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
2203
+ indexOf: createMethod(false)
2204
+ };
2205
+
2206
+
2207
+ /***/ }),
2208
+
2209
+ /***/ 9814:
2210
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2211
+
2212
+ "use strict";
2213
+
2214
+ var uncurryThis = __webpack_require__(9504);
2215
+
2216
+ var toString = uncurryThis({}.toString);
2217
+ var stringSlice = uncurryThis(''.slice);
2218
+
2219
+ module.exports = function (it) {
2220
+ return stringSlice(toString(it), 8, -1);
2221
+ };
2222
+
69
2223
 
70
2224
  /***/ })
71
2225
 
@@ -89,7 +2243,7 @@ module.exports.l = zwplayer_loadjs;
89
2243
  /******/ };
90
2244
  /******/
91
2245
  /******/ // Execute the module function
92
- /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
2246
+ /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
93
2247
  /******/
94
2248
  /******/ // Return the exports of the module
95
2249
  /******/ return module.exports;
@@ -108,6 +2262,18 @@ module.exports.l = zwplayer_loadjs;
108
2262
  /******/ };
109
2263
  /******/ }();
110
2264
  /******/
2265
+ /******/ /* webpack/runtime/global */
2266
+ /******/ !function() {
2267
+ /******/ __webpack_require__.g = (function() {
2268
+ /******/ if (typeof globalThis === 'object') return globalThis;
2269
+ /******/ try {
2270
+ /******/ return this || new Function('return this')();
2271
+ /******/ } catch (e) {
2272
+ /******/ if (typeof window === 'object') return window;
2273
+ /******/ }
2274
+ /******/ })();
2275
+ /******/ }();
2276
+ /******/
111
2277
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
112
2278
  /******/ !function() {
113
2279
  /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
@@ -144,7 +2310,7 @@ __webpack_require__.d(__webpack_exports__, {
144
2310
  zwplayer: function() { return /* reexport */ vueplayer; }
145
2311
  });
146
2312
 
147
- ;// ./node_modules/.pnpm/@vue+cli-service@5.0.9_@vue_f4a29e173fddc84262ec7621c4e0ef6c/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
2313
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
148
2314
  /* eslint-disable no-var */
149
2315
  // This file is imported into lib/wc client bundles.
150
2316
 
@@ -162,9 +2328,15 @@ if (typeof window !== 'undefined') {
162
2328
  // Indicate to webpack that this file can be concatenated
163
2329
  /* harmony default export */ var setPublicPath = (null);
164
2330
 
2331
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.json.stringify.js
2332
+ var es_json_stringify = __webpack_require__(3110);
2333
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.json.parse.js
2334
+ var esnext_json_parse = __webpack_require__(8335);
165
2335
  // EXTERNAL MODULE: ./sources/vueplayer/src/loadjs.js
166
- var loadjs = __webpack_require__(96);
167
- ;// ./node_modules/.pnpm/thread-loader@3.0.4_webpack@5.101.3/node_modules/thread-loader/dist/cjs.js!./node_modules/.pnpm/babel-loader@8.4.1_@babel+core@7.28.3_webpack@5.101.3/node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/.pnpm/vue-loader@15.11.1_@vue+com_7c7793d1852df33c99c082426f2edbd5/node_modules/vue-loader/lib/index.js??vue-loader-options!./sources/vueplayer/src/main.vue?vue&type=script&lang=js
2336
+ var loadjs = __webpack_require__(1709);
2337
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./sources/vueplayer/src/main.vue?vue&type=script&lang=js
2338
+
2339
+
168
2340
  // import { h } from 'vue'
169
2341
 
170
2342
  const zwplayer_js_def = 'zwplayer/zwplayer.js?v=3.6';
@@ -492,7 +2664,7 @@ const availabe_props = {
492
2664
  });
493
2665
  ;// ./sources/vueplayer/src/main.vue?vue&type=script&lang=js
494
2666
  /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
495
- ;// ./node_modules/.pnpm/vue-loader@15.11.1_@vue+com_7c7793d1852df33c99c082426f2edbd5/node_modules/vue-loader/lib/runtime/componentNormalizer.js
2667
+ ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
496
2668
  /* globals __VUE_SSR_CONTEXT__ */
497
2669
 
498
2670
  // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
@@ -789,7 +2961,7 @@ Player.prototype = {
789
2961
  };
790
2962
 
791
2963
  /* harmony default export */ var sources = (ZwModule);
792
- ;// ./node_modules/.pnpm/@vue+cli-service@5.0.9_@vue_f4a29e173fddc84262ec7621c4e0ef6c/node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
2964
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
793
2965
 
794
2966
 
795
2967
  /* harmony default export */ var entry_lib = (sources);