libram 0.3.2 → 0.4.2

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 (99) hide show
  1. package/dist/Clan.js +268 -485
  2. package/dist/Copier.js +11 -48
  3. package/dist/Dungeon.js +77 -157
  4. package/dist/Kmail.d.ts +13 -7
  5. package/dist/Kmail.js +92 -233
  6. package/dist/Path.js +68 -120
  7. package/dist/ascend.js +153 -172
  8. package/dist/combat.d.ts +86 -1
  9. package/dist/combat.js +295 -387
  10. package/dist/console.js +13 -36
  11. package/dist/diet/index.d.ts +31 -0
  12. package/dist/diet/index.js +333 -0
  13. package/dist/diet/knapsack.d.ts +7 -0
  14. package/dist/diet/knapsack.js +106 -0
  15. package/dist/dungeons/Dreadsylvania.d.ts +4 -0
  16. package/dist/dungeons/Dreadsylvania.js +14 -0
  17. package/dist/dungeons/Dungeon.d.ts +28 -0
  18. package/dist/dungeons/Dungeon.js +99 -0
  19. package/dist/dungeons/Hobopolis.d.ts +4 -0
  20. package/dist/dungeons/Hobopolis.js +14 -0
  21. package/dist/dungeons/SlimeTube.d.ts +4 -0
  22. package/dist/dungeons/SlimeTube.js +14 -0
  23. package/dist/freerun.d.ts +23 -0
  24. package/dist/freerun.js +92 -0
  25. package/dist/index.d.ts +6 -1
  26. package/dist/index.js +21 -263
  27. package/dist/lib.d.ts +43 -0
  28. package/dist/lib.js +296 -405
  29. package/dist/logger.js +23 -63
  30. package/dist/maximize.d.ts +29 -12
  31. package/dist/maximize.js +318 -421
  32. package/dist/modifier.d.ts +13 -0
  33. package/dist/modifier.js +35 -0
  34. package/dist/modifierTypes.d.ts +16 -0
  35. package/dist/modifierTypes.js +9 -0
  36. package/dist/mood.js +220 -531
  37. package/dist/property.d.ts +2 -0
  38. package/dist/property.js +96 -242
  39. package/dist/propertyTypes.d.ts +9 -0
  40. package/dist/propertyTypes.js +1 -0
  41. package/dist/propertyTyping.d.ts +2 -9
  42. package/dist/propertyTyping.js +42 -53
  43. package/dist/resources/2007/CandyHearts.d.ts +9 -0
  44. package/dist/resources/2007/CandyHearts.js +24 -0
  45. package/dist/resources/2008/DivineFavors.d.ts +9 -0
  46. package/dist/resources/2008/DivineFavors.js +27 -0
  47. package/dist/resources/2009/Bandersnatch.js +37 -112
  48. package/dist/resources/2009/LoveSongs.d.ts +9 -0
  49. package/dist/resources/2009/LoveSongs.js +24 -0
  50. package/dist/resources/2009/SpookyPutty.js +20 -46
  51. package/dist/resources/2010/Brickos.d.ts +9 -0
  52. package/dist/resources/2010/Brickos.js +21 -0
  53. package/dist/resources/2010/CrownOfThrones.d.ts +18 -0
  54. package/dist/resources/2010/CrownOfThrones.js +550 -0
  55. package/dist/resources/2011/Gygaxian.d.ts +9 -0
  56. package/dist/resources/2011/Gygaxian.js +24 -0
  57. package/dist/resources/2011/ObtuseAngel.js +21 -63
  58. package/dist/resources/2012/RainDoh.js +14 -40
  59. package/dist/resources/2012/Resolutions.d.ts +9 -0
  60. package/dist/resources/2012/Resolutions.js +28 -0
  61. package/dist/resources/2013/Florist.d.ts +61 -0
  62. package/dist/resources/2013/Florist.js +149 -0
  63. package/dist/resources/2013/PulledTaffy.d.ts +9 -0
  64. package/dist/resources/2013/PulledTaffy.js +33 -0
  65. package/dist/resources/2014/WinterGarden.js +15 -43
  66. package/dist/resources/2015/ChateauMantegna.js +52 -86
  67. package/dist/resources/2015/MayoClinic.d.ts +13 -0
  68. package/dist/resources/2015/MayoClinic.js +36 -0
  69. package/dist/resources/2016/SourceTerminal.d.ts +1 -0
  70. package/dist/resources/2016/SourceTerminal.js +114 -237
  71. package/dist/resources/2016/Witchess.js +33 -59
  72. package/dist/resources/2017/TunnelOfLove.js +62 -111
  73. package/dist/resources/2018/SongBoom.js +32 -68
  74. package/dist/resources/2019/BeachComb.d.ts +2 -0
  75. package/dist/resources/2019/BeachComb.js +26 -0
  76. package/dist/resources/2019/Snapper.d.ts +28 -0
  77. package/dist/resources/2019/Snapper.js +70 -0
  78. package/dist/resources/2020/Guzzlr.js +79 -163
  79. package/dist/resources/LibramSummon.d.ts +12 -0
  80. package/dist/resources/LibramSummon.js +66 -0
  81. package/dist/resources/index.d.ts +18 -11
  82. package/dist/resources/index.js +19 -85
  83. package/dist/resources/putty-likes.js +15 -30
  84. package/dist/ring-buffer.d.ts +24 -0
  85. package/dist/ring-buffer.js +135 -0
  86. package/dist/since.d.ts +1 -0
  87. package/dist/since.js +56 -112
  88. package/dist/template-string.js +40 -132
  89. package/dist/utils.d.ts +14 -0
  90. package/dist/utils.js +50 -114
  91. package/package.json +5 -3
  92. package/dist/libram-example-briefcase.js +0 -16073
  93. package/dist/libram-example-clan.js +0 -8898
  94. package/dist/libram-example-consult.js +0 -6179
  95. package/dist/libram-example-item.js +0 -3248
  96. package/dist/libram-example-kmail.js +0 -2065
  97. package/dist/libram-example-lib.js +0 -7608
  98. package/dist/libram-example-props.js +0 -4770
  99. package/dist/libram-example-resources.js +0 -12226
@@ -1,4770 +0,0 @@
1
- (function(e, a) { for(var i in a) e[i] = a[i]; if(a.__esModule) Object.defineProperty(e, "__esModule", { value: true }); }(exports,
2
- /******/ (() => { // webpackBootstrap
3
- /******/ var __webpack_modules__ = ({
4
-
5
- /***/ "./examples/props.ts":
6
- /*!***************************!*
7
- !*** ./examples/props.ts ***!
8
- \***************************/
9
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
10
-
11
- "use strict";
12
- __webpack_require__.r(__webpack_exports__);
13
- /* harmony import */ var _src__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../src/property */ "./src/property.ts");
14
- /* provided dependency */ var console = __webpack_require__(/*! ./src/console */ "./src/console.ts");
15
-
16
-
17
- var raindoh = (0,_src__WEBPACK_IMPORTED_MODULE_0__.get)("_raindohCopiesMade");
18
- var putty = (0,_src__WEBPACK_IMPORTED_MODULE_0__.get)("spookyPuttyCopiesMade");
19
- console.log(raindoh + putty);
20
- console.log("before: ".concat((0,_src__WEBPACK_IMPORTED_MODULE_0__.get)("libram_test_prop", 0)));
21
- (0,_src__WEBPACK_IMPORTED_MODULE_0__.set)("libram_test_prop", 30000);
22
- console.log("after: ".concat((0,_src__WEBPACK_IMPORTED_MODULE_0__.get)("libram_test_prop") + 5));
23
- (0,_src__WEBPACK_IMPORTED_MODULE_0__.withProperty)("guzzlrBronzeDeliveries", 69, function () {
24
- console.log("nice");
25
- });
26
-
27
- /***/ }),
28
-
29
- /***/ "./src/console.ts":
30
- /*!************************!*
31
- !*** ./src/console.ts ***!
32
- \************************/
33
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
34
-
35
- "use strict";
36
- __webpack_require__.r(__webpack_exports__);
37
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
38
- /* harmony export */ "log": () => /* binding */ log,
39
- /* harmony export */ "info": () => /* binding */ info,
40
- /* harmony export */ "warn": () => /* binding */ warn,
41
- /* harmony export */ "error": () => /* binding */ error
42
- /* harmony export */ });
43
- /* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.join */ "./node_modules/core-js/modules/es.array.join.js");
44
- /* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_0__);
45
- /* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.map */ "./node_modules/core-js/modules/es.array.map.js");
46
- /* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_1__);
47
- /* harmony import */ var core_js_modules_es_date_to_string__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.date.to-string */ "./node_modules/core-js/modules/es.date.to-string.js");
48
- /* harmony import */ var core_js_modules_es_date_to_string__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_date_to_string__WEBPACK_IMPORTED_MODULE_2__);
49
- /* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/core-js/modules/es.object.to-string.js");
50
- /* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_3__);
51
- /* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.regexp.to-string */ "./node_modules/core-js/modules/es.regexp.to-string.js");
52
- /* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_4__);
53
- /* harmony import */ var kolmafia__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! kolmafia */ "kolmafia");
54
- /* harmony import */ var kolmafia__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(kolmafia__WEBPACK_IMPORTED_MODULE_5__);
55
-
56
-
57
-
58
-
59
-
60
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
61
-
62
- var logColor = function logColor(color) {
63
- return function () {
64
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
65
- args[_key] = arguments[_key];
66
- }
67
-
68
- var output = args.map(function (x) {
69
- return x.toString();
70
- }).join(" ");
71
-
72
- if (color) {
73
- (0,kolmafia__WEBPACK_IMPORTED_MODULE_5__.print)(output, color);
74
- } else {
75
- (0,kolmafia__WEBPACK_IMPORTED_MODULE_5__.print)(output);
76
- }
77
- };
78
- };
79
-
80
- var log = logColor();
81
- var info = logColor("blue");
82
- var warn = logColor("red");
83
- var error = logColor("red");
84
-
85
- /***/ }),
86
-
87
- /***/ "./src/property.ts":
88
- /*!*************************!*
89
- !*** ./src/property.ts ***!
90
- \*************************/
91
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
92
-
93
- "use strict";
94
- __webpack_require__.r(__webpack_exports__);
95
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
96
- /* harmony export */ "getString": () => /* binding */ getString,
97
- /* harmony export */ "getCommaSeparated": () => /* binding */ getCommaSeparated,
98
- /* harmony export */ "getBoolean": () => /* binding */ getBoolean,
99
- /* harmony export */ "getNumber": () => /* binding */ getNumber,
100
- /* harmony export */ "getBounty": () => /* binding */ getBounty,
101
- /* harmony export */ "getClass": () => /* binding */ getClass,
102
- /* harmony export */ "getCoinmaster": () => /* binding */ getCoinmaster,
103
- /* harmony export */ "getEffect": () => /* binding */ getEffect,
104
- /* harmony export */ "getElement": () => /* binding */ getElement,
105
- /* harmony export */ "getFamiliar": () => /* binding */ getFamiliar,
106
- /* harmony export */ "getItem": () => /* binding */ getItem,
107
- /* harmony export */ "getLocation": () => /* binding */ getLocation,
108
- /* harmony export */ "getMonster": () => /* binding */ getMonster,
109
- /* harmony export */ "getPhylum": () => /* binding */ getPhylum,
110
- /* harmony export */ "getServant": () => /* binding */ getServant,
111
- /* harmony export */ "getSkill": () => /* binding */ getSkill,
112
- /* harmony export */ "getSlot": () => /* binding */ getSlot,
113
- /* harmony export */ "getStat": () => /* binding */ getStat,
114
- /* harmony export */ "getThrall": () => /* binding */ getThrall,
115
- /* harmony export */ "get": () => /* binding */ get,
116
- /* harmony export */ "set": () => /* binding */ _set,
117
- /* harmony export */ "setProperties": () => /* binding */ setProperties,
118
- /* harmony export */ "withProperties": () => /* binding */ withProperties,
119
- /* harmony export */ "withProperty": () => /* binding */ withProperty,
120
- /* harmony export */ "withChoices": () => /* binding */ withChoices,
121
- /* harmony export */ "withChoice": () => /* binding */ withChoice,
122
- /* harmony export */ "PropertiesManager": () => /* binding */ PropertiesManager
123
- /* harmony export */ });
124
- /* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ "./node_modules/core-js/modules/es.symbol.js");
125
- /* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);
126
- /* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ "./node_modules/core-js/modules/es.symbol.description.js");
127
- /* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);
128
- /* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ "./node_modules/core-js/modules/es.symbol.iterator.js");
129
- /* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);
130
- /* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.for-each */ "./node_modules/core-js/modules/es.array.for-each.js");
131
- /* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_3__);
132
- /* harmony import */ var core_js_modules_es_array_from__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.from */ "./node_modules/core-js/modules/es.array.from.js");
133
- /* harmony import */ var core_js_modules_es_array_from__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_from__WEBPACK_IMPORTED_MODULE_4__);
134
- /* harmony import */ var core_js_modules_es_array_is_array__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.is-array */ "./node_modules/core-js/modules/es.array.is-array.js");
135
- /* harmony import */ var core_js_modules_es_array_is_array__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_is_array__WEBPACK_IMPORTED_MODULE_5__);
136
- /* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ "./node_modules/core-js/modules/es.array.iterator.js");
137
- /* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_6__);
138
- /* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.array.map */ "./node_modules/core-js/modules/es.array.map.js");
139
- /* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_7__);
140
- /* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.array.slice */ "./node_modules/core-js/modules/es.array.slice.js");
141
- /* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_8__);
142
- /* harmony import */ var core_js_modules_es_date_to_string__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/es.date.to-string */ "./node_modules/core-js/modules/es.date.to-string.js");
143
- /* harmony import */ var core_js_modules_es_date_to_string__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_date_to_string__WEBPACK_IMPORTED_MODULE_9__);
144
- /* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! core-js/modules/es.function.name */ "./node_modules/core-js/modules/es.function.name.js");
145
- /* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_10__);
146
- /* harmony import */ var core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! core-js/modules/es.number.constructor */ "./node_modules/core-js/modules/es.number.constructor.js");
147
- /* harmony import */ var core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_11__);
148
- /* harmony import */ var core_js_modules_es_object_define_property__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! core-js/modules/es.object.define-property */ "./node_modules/core-js/modules/es.object.define-property.js");
149
- /* harmony import */ var core_js_modules_es_object_define_property__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_define_property__WEBPACK_IMPORTED_MODULE_12__);
150
- /* harmony import */ var core_js_modules_es_object_entries__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! core-js/modules/es.object.entries */ "./node_modules/core-js/modules/es.object.entries.js");
151
- /* harmony import */ var core_js_modules_es_object_entries__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_entries__WEBPACK_IMPORTED_MODULE_13__);
152
- /* harmony import */ var core_js_modules_es_object_from_entries__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! core-js/modules/es.object.from-entries */ "./node_modules/core-js/modules/es.object.from-entries.js");
153
- /* harmony import */ var core_js_modules_es_object_from_entries__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_from_entries__WEBPACK_IMPORTED_MODULE_14__);
154
- /* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/core-js/modules/es.object.to-string.js");
155
- /* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_15___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_15__);
156
- /* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ "./node_modules/core-js/modules/es.regexp.exec.js");
157
- /* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_16___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_16__);
158
- /* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! core-js/modules/es.regexp.to-string */ "./node_modules/core-js/modules/es.regexp.to-string.js");
159
- /* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_17___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_17__);
160
- /* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ "./node_modules/core-js/modules/es.string.iterator.js");
161
- /* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_18___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_18__);
162
- /* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! core-js/modules/es.string.split */ "./node_modules/core-js/modules/es.string.split.js");
163
- /* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_19___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_19__);
164
- /* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ "./node_modules/core-js/modules/web.dom-collections.for-each.js");
165
- /* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_20___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_20__);
166
- /* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ "./node_modules/core-js/modules/web.dom-collections.iterator.js");
167
- /* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_21___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_21__);
168
- /* harmony import */ var kolmafia__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! kolmafia */ "kolmafia");
169
- /* harmony import */ var kolmafia__WEBPACK_IMPORTED_MODULE_22___default = /*#__PURE__*/__webpack_require__.n(kolmafia__WEBPACK_IMPORTED_MODULE_22__);
170
- /* harmony import */ var _propertyTyping__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./propertyTyping */ "./src/propertyTyping.ts");
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
-
188
-
189
-
190
-
191
-
192
-
193
-
194
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
195
-
196
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
197
-
198
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
199
-
200
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
201
-
202
- function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
203
-
204
- function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
205
-
206
- function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
207
-
208
- function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
209
-
210
- function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
211
-
212
- function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
213
-
214
-
215
-
216
-
217
- var createPropertyGetter = function createPropertyGetter(transform) {
218
- return function (property, default_) {
219
- var value = (0,kolmafia__WEBPACK_IMPORTED_MODULE_22__.getProperty)(property);
220
-
221
- if (default_ !== undefined && value === "") {
222
- return default_;
223
- }
224
-
225
- return transform(value, property);
226
- };
227
- };
228
-
229
- var createMafiaClassPropertyGetter = function createMafiaClassPropertyGetter(Type) {
230
- return createPropertyGetter(function (value) {
231
- if (value === "") return null;
232
- var v = Type.get(value);
233
- return v === Type.get("none") ? null : v;
234
- });
235
- };
236
-
237
- var getString = createPropertyGetter(function (value) {
238
- return value;
239
- });
240
- var getCommaSeparated = createPropertyGetter(function (value) {
241
- return value.split(/, ?/);
242
- });
243
- var getBoolean = createPropertyGetter(function (value) {
244
- return value === "true";
245
- });
246
- var getNumber = createPropertyGetter(function (value) {
247
- return Number(value);
248
- });
249
- var getBounty = createMafiaClassPropertyGetter(Bounty);
250
- var getClass = createMafiaClassPropertyGetter(Class);
251
- var getCoinmaster = createMafiaClassPropertyGetter(Coinmaster);
252
- var getEffect = createMafiaClassPropertyGetter(Effect);
253
- var getElement = createMafiaClassPropertyGetter(Element);
254
- var getFamiliar = createMafiaClassPropertyGetter(Familiar);
255
- var getItem = createMafiaClassPropertyGetter(Item);
256
- var getLocation = createMafiaClassPropertyGetter(Location);
257
- var getMonster = createMafiaClassPropertyGetter(Monster);
258
- var getPhylum = createMafiaClassPropertyGetter(Phylum);
259
- var getServant = createMafiaClassPropertyGetter(Servant);
260
- var getSkill = createMafiaClassPropertyGetter(Skill);
261
- var getSlot = createMafiaClassPropertyGetter(Slot);
262
- var getStat = createMafiaClassPropertyGetter(Stat);
263
- var getThrall = createMafiaClassPropertyGetter(Thrall);
264
- /**
265
- * Returns the value of a mafia property, either built in or custom
266
- * @param property Name of the property
267
- * @param _default Default value for the property to take if not set
268
- */
269
-
270
- function get(property, _default) {
271
- var value = getString(property);
272
-
273
- if ((0,_propertyTyping__WEBPACK_IMPORTED_MODULE_23__.isMonsterProperty)(property)) {
274
- return getMonster(property, _default);
275
- }
276
-
277
- if ((0,_propertyTyping__WEBPACK_IMPORTED_MODULE_23__.isLocationProperty)(property)) {
278
- return getLocation(property, _default);
279
- }
280
-
281
- if (value === "") {
282
- return _default === undefined ? "" : _default;
283
- }
284
-
285
- if ((0,_propertyTyping__WEBPACK_IMPORTED_MODULE_23__.isBooleanProperty)(property, value)) {
286
- return getBoolean(property, _default);
287
- }
288
-
289
- if ((0,_propertyTyping__WEBPACK_IMPORTED_MODULE_23__.isNumericProperty)(property, value)) {
290
- return getNumber(property, _default);
291
- }
292
-
293
- return value;
294
- }
295
- /**
296
- * Sets the value of a mafia property, either built in or custom
297
- * @param property Name of the property
298
- * @param value Value to give the property
299
- */
300
-
301
- function _set(property, value) {
302
- var stringValue = value === null ? "" : value.toString();
303
- (0,kolmafia__WEBPACK_IMPORTED_MODULE_22__.setProperty)(property, stringValue);
304
- }
305
-
306
-
307
- function setProperties(properties) {
308
- for (var _i = 0, _Object$entries = Object.entries(properties); _i < _Object$entries.length; _i++) {
309
- var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
310
- prop = _Object$entries$_i[0],
311
- _value = _Object$entries$_i[1];
312
-
313
- _set(prop, _value);
314
- }
315
- }
316
- function withProperties(properties, callback) {
317
- var propertiesBackup = Object.fromEntries(Object.entries(properties).map(function (_ref) {
318
- var _ref2 = _slicedToArray(_ref, 1),
319
- prop = _ref2[0];
320
-
321
- return [prop, get(prop)];
322
- }));
323
- setProperties(properties);
324
-
325
- try {
326
- callback();
327
- } finally {
328
- setProperties(propertiesBackup);
329
- }
330
- }
331
- function withProperty(property, value, callback) {
332
- withProperties(_defineProperty({}, property, value), callback);
333
- }
334
- function withChoices(choices, callback) {
335
- var properties = Object.fromEntries(Object.entries(choices).map(function (_ref3) {
336
- var _ref4 = _slicedToArray(_ref3, 2),
337
- choice = _ref4[0],
338
- option = _ref4[1];
339
-
340
- return ["choiceAdventure".concat(choice), option];
341
- }));
342
- withProperties(properties, callback);
343
- }
344
- function withChoice(choice, value, callback) {
345
- withChoices(_defineProperty({}, choice, value), callback);
346
- }
347
- var PropertiesManager = /*#__PURE__*/function () {
348
- function PropertiesManager() {
349
- _classCallCheck(this, PropertiesManager);
350
-
351
- _defineProperty(this, "properties", void 0);
352
-
353
- this.properties = {};
354
- }
355
-
356
- _createClass(PropertiesManager, [{
357
- key: "set",
358
- value: function set(propertiesToSet) {
359
- for (var _i2 = 0, _Object$entries2 = Object.entries(propertiesToSet); _i2 < _Object$entries2.length; _i2++) {
360
- var _Object$entries2$_i = _slicedToArray(_Object$entries2[_i2], 2),
361
- propertyName = _Object$entries2$_i[0],
362
- propertyValue = _Object$entries2$_i[1];
363
-
364
- if (this.properties[propertyName] === undefined) {
365
- this.properties[propertyName] = get(propertyName);
366
- }
367
-
368
- _set(propertyName, propertyValue);
369
- }
370
- }
371
- }, {
372
- key: "setChoices",
373
- value: function setChoices(choicesToSet) {
374
- this.set(Object.fromEntries(Object.entries(choicesToSet).map(function (_ref5) {
375
- var _ref6 = _slicedToArray(_ref5, 2),
376
- choiceNumber = _ref6[0],
377
- choiceValue = _ref6[1];
378
-
379
- return ["choiceAdventure".concat(choiceNumber), choiceValue];
380
- })));
381
- }
382
- }, {
383
- key: "resetAll",
384
- value: function resetAll() {
385
- Object.entries(this.properties).forEach(function (_ref7) {
386
- var _ref8 = _slicedToArray(_ref7, 2),
387
- propertyName = _ref8[0],
388
- propertyValue = _ref8[1];
389
-
390
- return _set(propertyName, propertyValue);
391
- });
392
- }
393
- }]);
394
-
395
- return PropertiesManager;
396
- }();
397
-
398
- /***/ }),
399
-
400
- /***/ "./src/propertyTyping.ts":
401
- /*!*******************************!*
402
- !*** ./src/propertyTyping.ts ***!
403
- \*******************************/
404
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
405
-
406
- "use strict";
407
- __webpack_require__.r(__webpack_exports__);
408
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
409
- /* harmony export */ "isNumericProperty": () => /* binding */ isNumericProperty,
410
- /* harmony export */ "isNumericOrStringProperty": () => /* binding */ isNumericOrStringProperty,
411
- /* harmony export */ "isBooleanProperty": () => /* binding */ isBooleanProperty,
412
- /* harmony export */ "isLocationProperty": () => /* binding */ isLocationProperty,
413
- /* harmony export */ "isMonsterProperty": () => /* binding */ isMonsterProperty,
414
- /* harmony export */ "isFamiliarProperty": () => /* binding */ isFamiliarProperty,
415
- /* harmony export */ "isStatProperty": () => /* binding */ isStatProperty
416
- /* harmony export */ });
417
- /* harmony import */ var core_js_modules_es_array_includes__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.includes */ "./node_modules/core-js/modules/es.array.includes.js");
418
- /* harmony import */ var core_js_modules_es_array_includes__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes__WEBPACK_IMPORTED_MODULE_0__);
419
- /* harmony import */ var core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.number.constructor */ "./node_modules/core-js/modules/es.number.constructor.js");
420
- /* harmony import */ var core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_1__);
421
- /* harmony import */ var core_js_modules_es_parse_float__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.parse-float */ "./node_modules/core-js/modules/es.parse-float.js");
422
- /* harmony import */ var core_js_modules_es_parse_float__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_parse_float__WEBPACK_IMPORTED_MODULE_2__);
423
- /* harmony import */ var core_js_modules_es_string_ends_with__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.string.ends-with */ "./node_modules/core-js/modules/es.string.ends-with.js");
424
- /* harmony import */ var core_js_modules_es_string_ends_with__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_ends_with__WEBPACK_IMPORTED_MODULE_3__);
425
-
426
-
427
-
428
-
429
- function isNumericProperty(property, value) {
430
- return !isNaN(Number(value)) && !isNaN(parseFloat(value));
431
- }
432
- var choiceAdventurePattern = /^choiceAdventure\d+$/;
433
- function isNumericOrStringProperty(property) {
434
- return choiceAdventurePattern.test(property);
435
- }
436
- var fakeBooleans = ["trackVoteMonster", "_jickJarAvailable"];
437
- function isBooleanProperty(property, value) {
438
- if (fakeBooleans.includes(property)) return false;
439
- return ["true", "false"].includes(value);
440
- }
441
- var otherLocations = ["nextSpookyravenElizabethRoom", "nextSpookyravenStephenRoom", "sourceOracleTarget"];
442
- function isLocationProperty(property) {
443
- return otherLocations.includes(property) || property.endsWith("Location");
444
- }
445
- var otherMonsters = ["romanticTarget", "yearbookCameraTarget"];
446
- function isMonsterProperty(property) {
447
- if (otherMonsters.includes(property)) return true;
448
- return property.endsWith("Monster");
449
- }
450
- function isFamiliarProperty(property) {
451
- return property.endsWith("Familiar");
452
- }
453
- var statProps = ["nsChallenge1", "shrugTopper", "snojoSetting"];
454
- function isStatProperty(property) {
455
- return statProps.includes(property);
456
- }
457
-
458
- /***/ }),
459
-
460
- /***/ "./node_modules/core-js/internals/a-function.js":
461
- /*!******************************************************!*
462
- !*** ./node_modules/core-js/internals/a-function.js ***!
463
- \******************************************************/
464
- /***/ ((module) => {
465
-
466
- module.exports = function (it) {
467
- if (typeof it != 'function') {
468
- throw TypeError(String(it) + ' is not a function');
469
- } return it;
470
- };
471
-
472
-
473
- /***/ }),
474
-
475
- /***/ "./node_modules/core-js/internals/a-possible-prototype.js":
476
- /*!****************************************************************!*
477
- !*** ./node_modules/core-js/internals/a-possible-prototype.js ***!
478
- \****************************************************************/
479
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
480
-
481
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
482
-
483
- module.exports = function (it) {
484
- if (!isObject(it) && it !== null) {
485
- throw TypeError("Can't set " + String(it) + ' as a prototype');
486
- } return it;
487
- };
488
-
489
-
490
- /***/ }),
491
-
492
- /***/ "./node_modules/core-js/internals/add-to-unscopables.js":
493
- /*!**************************************************************!*
494
- !*** ./node_modules/core-js/internals/add-to-unscopables.js ***!
495
- \**************************************************************/
496
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
497
-
498
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
499
- var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");
500
- var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
501
-
502
- var UNSCOPABLES = wellKnownSymbol('unscopables');
503
- var ArrayPrototype = Array.prototype;
504
-
505
- // Array.prototype[@@unscopables]
506
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
507
- if (ArrayPrototype[UNSCOPABLES] == undefined) {
508
- definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
509
- configurable: true,
510
- value: create(null)
511
- });
512
- }
513
-
514
- // add a key to Array.prototype[@@unscopables]
515
- module.exports = function (key) {
516
- ArrayPrototype[UNSCOPABLES][key] = true;
517
- };
518
-
519
-
520
- /***/ }),
521
-
522
- /***/ "./node_modules/core-js/internals/advance-string-index.js":
523
- /*!****************************************************************!*
524
- !*** ./node_modules/core-js/internals/advance-string-index.js ***!
525
- \****************************************************************/
526
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
527
-
528
- "use strict";
529
-
530
- var charAt = __webpack_require__(/*! ../internals/string-multibyte */ "./node_modules/core-js/internals/string-multibyte.js").charAt;
531
-
532
- // `AdvanceStringIndex` abstract operation
533
- // https://tc39.es/ecma262/#sec-advancestringindex
534
- module.exports = function (S, index, unicode) {
535
- return index + (unicode ? charAt(S, index).length : 1);
536
- };
537
-
538
-
539
- /***/ }),
540
-
541
- /***/ "./node_modules/core-js/internals/an-object.js":
542
- /*!*****************************************************!*
543
- !*** ./node_modules/core-js/internals/an-object.js ***!
544
- \*****************************************************/
545
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
546
-
547
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
548
-
549
- module.exports = function (it) {
550
- if (!isObject(it)) {
551
- throw TypeError(String(it) + ' is not an object');
552
- } return it;
553
- };
554
-
555
-
556
- /***/ }),
557
-
558
- /***/ "./node_modules/core-js/internals/array-for-each.js":
559
- /*!**********************************************************!*
560
- !*** ./node_modules/core-js/internals/array-for-each.js ***!
561
- \**********************************************************/
562
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
563
-
564
- "use strict";
565
-
566
- var $forEach = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").forEach;
567
- var arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ "./node_modules/core-js/internals/array-method-is-strict.js");
568
-
569
- var STRICT_METHOD = arrayMethodIsStrict('forEach');
570
-
571
- // `Array.prototype.forEach` method implementation
572
- // https://tc39.es/ecma262/#sec-array.prototype.foreach
573
- module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
574
- return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
575
- // eslint-disable-next-line es/no-array-prototype-foreach -- safe
576
- } : [].forEach;
577
-
578
-
579
- /***/ }),
580
-
581
- /***/ "./node_modules/core-js/internals/array-from.js":
582
- /*!******************************************************!*
583
- !*** ./node_modules/core-js/internals/array-from.js ***!
584
- \******************************************************/
585
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
586
-
587
- "use strict";
588
-
589
- var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/core-js/internals/function-bind-context.js");
590
- var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");
591
- var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "./node_modules/core-js/internals/call-with-safe-iteration-closing.js");
592
- var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "./node_modules/core-js/internals/is-array-iterator-method.js");
593
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
594
- var createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js");
595
- var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "./node_modules/core-js/internals/get-iterator-method.js");
596
-
597
- // `Array.from` method implementation
598
- // https://tc39.es/ecma262/#sec-array.from
599
- module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
600
- var O = toObject(arrayLike);
601
- var C = typeof this == 'function' ? this : Array;
602
- var argumentsLength = arguments.length;
603
- var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
604
- var mapping = mapfn !== undefined;
605
- var iteratorMethod = getIteratorMethod(O);
606
- var index = 0;
607
- var length, result, step, iterator, next, value;
608
- if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2);
609
- // if the target is not iterable or it's an array with the default iterator - use a simple case
610
- if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) {
611
- iterator = iteratorMethod.call(O);
612
- next = iterator.next;
613
- result = new C();
614
- for (;!(step = next.call(iterator)).done; index++) {
615
- value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
616
- createProperty(result, index, value);
617
- }
618
- } else {
619
- length = toLength(O.length);
620
- result = new C(length);
621
- for (;length > index; index++) {
622
- value = mapping ? mapfn(O[index], index) : O[index];
623
- createProperty(result, index, value);
624
- }
625
- }
626
- result.length = index;
627
- return result;
628
- };
629
-
630
-
631
- /***/ }),
632
-
633
- /***/ "./node_modules/core-js/internals/array-includes.js":
634
- /*!**********************************************************!*
635
- !*** ./node_modules/core-js/internals/array-includes.js ***!
636
- \**********************************************************/
637
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
638
-
639
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
640
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
641
- var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/core-js/internals/to-absolute-index.js");
642
-
643
- // `Array.prototype.{ indexOf, includes }` methods implementation
644
- var createMethod = function (IS_INCLUDES) {
645
- return function ($this, el, fromIndex) {
646
- var O = toIndexedObject($this);
647
- var length = toLength(O.length);
648
- var index = toAbsoluteIndex(fromIndex, length);
649
- var value;
650
- // Array#includes uses SameValueZero equality algorithm
651
- // eslint-disable-next-line no-self-compare -- NaN check
652
- if (IS_INCLUDES && el != el) while (length > index) {
653
- value = O[index++];
654
- // eslint-disable-next-line no-self-compare -- NaN check
655
- if (value != value) return true;
656
- // Array#indexOf ignores holes, Array#includes - not
657
- } else for (;length > index; index++) {
658
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
659
- } return !IS_INCLUDES && -1;
660
- };
661
- };
662
-
663
- module.exports = {
664
- // `Array.prototype.includes` method
665
- // https://tc39.es/ecma262/#sec-array.prototype.includes
666
- includes: createMethod(true),
667
- // `Array.prototype.indexOf` method
668
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
669
- indexOf: createMethod(false)
670
- };
671
-
672
-
673
- /***/ }),
674
-
675
- /***/ "./node_modules/core-js/internals/array-iteration.js":
676
- /*!***********************************************************!*
677
- !*** ./node_modules/core-js/internals/array-iteration.js ***!
678
- \***********************************************************/
679
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
680
-
681
- var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/core-js/internals/function-bind-context.js");
682
- var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js");
683
- var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");
684
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
685
- var arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/core-js/internals/array-species-create.js");
686
-
687
- var push = [].push;
688
-
689
- // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterOut }` methods implementation
690
- var createMethod = function (TYPE) {
691
- var IS_MAP = TYPE == 1;
692
- var IS_FILTER = TYPE == 2;
693
- var IS_SOME = TYPE == 3;
694
- var IS_EVERY = TYPE == 4;
695
- var IS_FIND_INDEX = TYPE == 6;
696
- var IS_FILTER_OUT = TYPE == 7;
697
- var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
698
- return function ($this, callbackfn, that, specificCreate) {
699
- var O = toObject($this);
700
- var self = IndexedObject(O);
701
- var boundFunction = bind(callbackfn, that, 3);
702
- var length = toLength(self.length);
703
- var index = 0;
704
- var create = specificCreate || arraySpeciesCreate;
705
- var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_OUT ? create($this, 0) : undefined;
706
- var value, result;
707
- for (;length > index; index++) if (NO_HOLES || index in self) {
708
- value = self[index];
709
- result = boundFunction(value, index, O);
710
- if (TYPE) {
711
- if (IS_MAP) target[index] = result; // map
712
- else if (result) switch (TYPE) {
713
- case 3: return true; // some
714
- case 5: return value; // find
715
- case 6: return index; // findIndex
716
- case 2: push.call(target, value); // filter
717
- } else switch (TYPE) {
718
- case 4: return false; // every
719
- case 7: push.call(target, value); // filterOut
720
- }
721
- }
722
- }
723
- return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;
724
- };
725
- };
726
-
727
- module.exports = {
728
- // `Array.prototype.forEach` method
729
- // https://tc39.es/ecma262/#sec-array.prototype.foreach
730
- forEach: createMethod(0),
731
- // `Array.prototype.map` method
732
- // https://tc39.es/ecma262/#sec-array.prototype.map
733
- map: createMethod(1),
734
- // `Array.prototype.filter` method
735
- // https://tc39.es/ecma262/#sec-array.prototype.filter
736
- filter: createMethod(2),
737
- // `Array.prototype.some` method
738
- // https://tc39.es/ecma262/#sec-array.prototype.some
739
- some: createMethod(3),
740
- // `Array.prototype.every` method
741
- // https://tc39.es/ecma262/#sec-array.prototype.every
742
- every: createMethod(4),
743
- // `Array.prototype.find` method
744
- // https://tc39.es/ecma262/#sec-array.prototype.find
745
- find: createMethod(5),
746
- // `Array.prototype.findIndex` method
747
- // https://tc39.es/ecma262/#sec-array.prototype.findIndex
748
- findIndex: createMethod(6),
749
- // `Array.prototype.filterOut` method
750
- // https://github.com/tc39/proposal-array-filtering
751
- filterOut: createMethod(7)
752
- };
753
-
754
-
755
- /***/ }),
756
-
757
- /***/ "./node_modules/core-js/internals/array-method-has-species-support.js":
758
- /*!****************************************************************************!*
759
- !*** ./node_modules/core-js/internals/array-method-has-species-support.js ***!
760
- \****************************************************************************/
761
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
762
-
763
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
764
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
765
- var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "./node_modules/core-js/internals/engine-v8-version.js");
766
-
767
- var SPECIES = wellKnownSymbol('species');
768
-
769
- module.exports = function (METHOD_NAME) {
770
- // We can't use this feature detection in V8 since it causes
771
- // deoptimization and serious performance degradation
772
- // https://github.com/zloirock/core-js/issues/677
773
- return V8_VERSION >= 51 || !fails(function () {
774
- var array = [];
775
- var constructor = array.constructor = {};
776
- constructor[SPECIES] = function () {
777
- return { foo: 1 };
778
- };
779
- return array[METHOD_NAME](Boolean).foo !== 1;
780
- });
781
- };
782
-
783
-
784
- /***/ }),
785
-
786
- /***/ "./node_modules/core-js/internals/array-method-is-strict.js":
787
- /*!******************************************************************!*
788
- !*** ./node_modules/core-js/internals/array-method-is-strict.js ***!
789
- \******************************************************************/
790
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
791
-
792
- "use strict";
793
-
794
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
795
-
796
- module.exports = function (METHOD_NAME, argument) {
797
- var method = [][METHOD_NAME];
798
- return !!method && fails(function () {
799
- // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing
800
- method.call(null, argument || function () { throw 1; }, 1);
801
- });
802
- };
803
-
804
-
805
- /***/ }),
806
-
807
- /***/ "./node_modules/core-js/internals/array-species-create.js":
808
- /*!****************************************************************!*
809
- !*** ./node_modules/core-js/internals/array-species-create.js ***!
810
- \****************************************************************/
811
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
812
-
813
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
814
- var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");
815
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
816
-
817
- var SPECIES = wellKnownSymbol('species');
818
-
819
- // `ArraySpeciesCreate` abstract operation
820
- // https://tc39.es/ecma262/#sec-arrayspeciescreate
821
- module.exports = function (originalArray, length) {
822
- var C;
823
- if (isArray(originalArray)) {
824
- C = originalArray.constructor;
825
- // cross-realm fallback
826
- if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
827
- else if (isObject(C)) {
828
- C = C[SPECIES];
829
- if (C === null) C = undefined;
830
- }
831
- } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
832
- };
833
-
834
-
835
- /***/ }),
836
-
837
- /***/ "./node_modules/core-js/internals/call-with-safe-iteration-closing.js":
838
- /*!****************************************************************************!*
839
- !*** ./node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
840
- \****************************************************************************/
841
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
842
-
843
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
844
- var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "./node_modules/core-js/internals/iterator-close.js");
845
-
846
- // call something on iterator step with safe closing on error
847
- module.exports = function (iterator, fn, value, ENTRIES) {
848
- try {
849
- return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
850
- } catch (error) {
851
- iteratorClose(iterator);
852
- throw error;
853
- }
854
- };
855
-
856
-
857
- /***/ }),
858
-
859
- /***/ "./node_modules/core-js/internals/check-correctness-of-iteration.js":
860
- /*!**************************************************************************!*
861
- !*** ./node_modules/core-js/internals/check-correctness-of-iteration.js ***!
862
- \**************************************************************************/
863
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
864
-
865
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
866
-
867
- var ITERATOR = wellKnownSymbol('iterator');
868
- var SAFE_CLOSING = false;
869
-
870
- try {
871
- var called = 0;
872
- var iteratorWithReturn = {
873
- next: function () {
874
- return { done: !!called++ };
875
- },
876
- 'return': function () {
877
- SAFE_CLOSING = true;
878
- }
879
- };
880
- iteratorWithReturn[ITERATOR] = function () {
881
- return this;
882
- };
883
- // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
884
- Array.from(iteratorWithReturn, function () { throw 2; });
885
- } catch (error) { /* empty */ }
886
-
887
- module.exports = function (exec, SKIP_CLOSING) {
888
- if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
889
- var ITERATION_SUPPORT = false;
890
- try {
891
- var object = {};
892
- object[ITERATOR] = function () {
893
- return {
894
- next: function () {
895
- return { done: ITERATION_SUPPORT = true };
896
- }
897
- };
898
- };
899
- exec(object);
900
- } catch (error) { /* empty */ }
901
- return ITERATION_SUPPORT;
902
- };
903
-
904
-
905
- /***/ }),
906
-
907
- /***/ "./node_modules/core-js/internals/classof-raw.js":
908
- /*!*******************************************************!*
909
- !*** ./node_modules/core-js/internals/classof-raw.js ***!
910
- \*******************************************************/
911
- /***/ ((module) => {
912
-
913
- var toString = {}.toString;
914
-
915
- module.exports = function (it) {
916
- return toString.call(it).slice(8, -1);
917
- };
918
-
919
-
920
- /***/ }),
921
-
922
- /***/ "./node_modules/core-js/internals/classof.js":
923
- /*!***************************************************!*
924
- !*** ./node_modules/core-js/internals/classof.js ***!
925
- \***************************************************/
926
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
927
-
928
- var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/core-js/internals/to-string-tag-support.js");
929
- var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");
930
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
931
-
932
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
933
- // ES3 wrong here
934
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
935
-
936
- // fallback for IE11 Script Access Denied error
937
- var tryGet = function (it, key) {
938
- try {
939
- return it[key];
940
- } catch (error) { /* empty */ }
941
- };
942
-
943
- // getting tag from ES6+ `Object.prototype.toString`
944
- module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
945
- var O, tag, result;
946
- return it === undefined ? 'Undefined' : it === null ? 'Null'
947
- // @@toStringTag case
948
- : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag
949
- // builtinTag case
950
- : CORRECT_ARGUMENTS ? classofRaw(O)
951
- // ES3 arguments fallback
952
- : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
953
- };
954
-
955
-
956
- /***/ }),
957
-
958
- /***/ "./node_modules/core-js/internals/copy-constructor-properties.js":
959
- /*!***********************************************************************!*
960
- !*** ./node_modules/core-js/internals/copy-constructor-properties.js ***!
961
- \***********************************************************************/
962
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
963
-
964
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
965
- var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "./node_modules/core-js/internals/own-keys.js");
966
- var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js");
967
- var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
968
-
969
- module.exports = function (target, source) {
970
- var keys = ownKeys(source);
971
- var defineProperty = definePropertyModule.f;
972
- var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
973
- for (var i = 0; i < keys.length; i++) {
974
- var key = keys[i];
975
- if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
976
- }
977
- };
978
-
979
-
980
- /***/ }),
981
-
982
- /***/ "./node_modules/core-js/internals/correct-is-regexp-logic.js":
983
- /*!*******************************************************************!*
984
- !*** ./node_modules/core-js/internals/correct-is-regexp-logic.js ***!
985
- \*******************************************************************/
986
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
987
-
988
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
989
-
990
- var MATCH = wellKnownSymbol('match');
991
-
992
- module.exports = function (METHOD_NAME) {
993
- var regexp = /./;
994
- try {
995
- '/./'[METHOD_NAME](regexp);
996
- } catch (error1) {
997
- try {
998
- regexp[MATCH] = false;
999
- return '/./'[METHOD_NAME](regexp);
1000
- } catch (error2) { /* empty */ }
1001
- } return false;
1002
- };
1003
-
1004
-
1005
- /***/ }),
1006
-
1007
- /***/ "./node_modules/core-js/internals/correct-prototype-getter.js":
1008
- /*!********************************************************************!*
1009
- !*** ./node_modules/core-js/internals/correct-prototype-getter.js ***!
1010
- \********************************************************************/
1011
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1012
-
1013
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
1014
-
1015
- module.exports = !fails(function () {
1016
- function F() { /* empty */ }
1017
- F.prototype.constructor = null;
1018
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1019
- return Object.getPrototypeOf(new F()) !== F.prototype;
1020
- });
1021
-
1022
-
1023
- /***/ }),
1024
-
1025
- /***/ "./node_modules/core-js/internals/create-iterator-constructor.js":
1026
- /*!***********************************************************************!*
1027
- !*** ./node_modules/core-js/internals/create-iterator-constructor.js ***!
1028
- \***********************************************************************/
1029
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1030
-
1031
- "use strict";
1032
-
1033
- var IteratorPrototype = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/core-js/internals/iterators-core.js").IteratorPrototype;
1034
- var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");
1035
- var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");
1036
- var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js");
1037
- var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");
1038
-
1039
- var returnThis = function () { return this; };
1040
-
1041
- module.exports = function (IteratorConstructor, NAME, next) {
1042
- var TO_STRING_TAG = NAME + ' Iterator';
1043
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
1044
- setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
1045
- Iterators[TO_STRING_TAG] = returnThis;
1046
- return IteratorConstructor;
1047
- };
1048
-
1049
-
1050
- /***/ }),
1051
-
1052
- /***/ "./node_modules/core-js/internals/create-non-enumerable-property.js":
1053
- /*!**************************************************************************!*
1054
- !*** ./node_modules/core-js/internals/create-non-enumerable-property.js ***!
1055
- \**************************************************************************/
1056
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1057
-
1058
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
1059
- var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
1060
- var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");
1061
-
1062
- module.exports = DESCRIPTORS ? function (object, key, value) {
1063
- return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
1064
- } : function (object, key, value) {
1065
- object[key] = value;
1066
- return object;
1067
- };
1068
-
1069
-
1070
- /***/ }),
1071
-
1072
- /***/ "./node_modules/core-js/internals/create-property-descriptor.js":
1073
- /*!**********************************************************************!*
1074
- !*** ./node_modules/core-js/internals/create-property-descriptor.js ***!
1075
- \**********************************************************************/
1076
- /***/ ((module) => {
1077
-
1078
- module.exports = function (bitmap, value) {
1079
- return {
1080
- enumerable: !(bitmap & 1),
1081
- configurable: !(bitmap & 2),
1082
- writable: !(bitmap & 4),
1083
- value: value
1084
- };
1085
- };
1086
-
1087
-
1088
- /***/ }),
1089
-
1090
- /***/ "./node_modules/core-js/internals/create-property.js":
1091
- /*!***********************************************************!*
1092
- !*** ./node_modules/core-js/internals/create-property.js ***!
1093
- \***********************************************************/
1094
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1095
-
1096
- "use strict";
1097
-
1098
- var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");
1099
- var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
1100
- var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");
1101
-
1102
- module.exports = function (object, key, value) {
1103
- var propertyKey = toPrimitive(key);
1104
- if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
1105
- else object[propertyKey] = value;
1106
- };
1107
-
1108
-
1109
- /***/ }),
1110
-
1111
- /***/ "./node_modules/core-js/internals/define-iterator.js":
1112
- /*!***********************************************************!*
1113
- !*** ./node_modules/core-js/internals/define-iterator.js ***!
1114
- \***********************************************************/
1115
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1116
-
1117
- "use strict";
1118
-
1119
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
1120
- var createIteratorConstructor = __webpack_require__(/*! ../internals/create-iterator-constructor */ "./node_modules/core-js/internals/create-iterator-constructor.js");
1121
- var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/core-js/internals/object-get-prototype-of.js");
1122
- var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/core-js/internals/object-set-prototype-of.js");
1123
- var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js");
1124
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
1125
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
1126
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
1127
- var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");
1128
- var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");
1129
- var IteratorsCore = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/core-js/internals/iterators-core.js");
1130
-
1131
- var IteratorPrototype = IteratorsCore.IteratorPrototype;
1132
- var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1133
- var ITERATOR = wellKnownSymbol('iterator');
1134
- var KEYS = 'keys';
1135
- var VALUES = 'values';
1136
- var ENTRIES = 'entries';
1137
-
1138
- var returnThis = function () { return this; };
1139
-
1140
- module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
1141
- createIteratorConstructor(IteratorConstructor, NAME, next);
1142
-
1143
- var getIterationMethod = function (KIND) {
1144
- if (KIND === DEFAULT && defaultIterator) return defaultIterator;
1145
- if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];
1146
- switch (KIND) {
1147
- case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };
1148
- case VALUES: return function values() { return new IteratorConstructor(this, KIND); };
1149
- case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };
1150
- } return function () { return new IteratorConstructor(this); };
1151
- };
1152
-
1153
- var TO_STRING_TAG = NAME + ' Iterator';
1154
- var INCORRECT_VALUES_NAME = false;
1155
- var IterablePrototype = Iterable.prototype;
1156
- var nativeIterator = IterablePrototype[ITERATOR]
1157
- || IterablePrototype['@@iterator']
1158
- || DEFAULT && IterablePrototype[DEFAULT];
1159
- var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
1160
- var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;
1161
- var CurrentIteratorPrototype, methods, KEY;
1162
-
1163
- // fix native
1164
- if (anyNativeIterator) {
1165
- CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1166
- if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1167
- if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1168
- if (setPrototypeOf) {
1169
- setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1170
- } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {
1171
- createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);
1172
- }
1173
- }
1174
- // Set @@toStringTag to native iterators
1175
- setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
1176
- if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;
1177
- }
1178
- }
1179
-
1180
- // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
1181
- if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1182
- INCORRECT_VALUES_NAME = true;
1183
- defaultIterator = function values() { return nativeIterator.call(this); };
1184
- }
1185
-
1186
- // define iterator
1187
- if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
1188
- createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);
1189
- }
1190
- Iterators[NAME] = defaultIterator;
1191
-
1192
- // export additional methods
1193
- if (DEFAULT) {
1194
- methods = {
1195
- values: getIterationMethod(VALUES),
1196
- keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
1197
- entries: getIterationMethod(ENTRIES)
1198
- };
1199
- if (FORCED) for (KEY in methods) {
1200
- if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1201
- redefine(IterablePrototype, KEY, methods[KEY]);
1202
- }
1203
- } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1204
- }
1205
-
1206
- return methods;
1207
- };
1208
-
1209
-
1210
- /***/ }),
1211
-
1212
- /***/ "./node_modules/core-js/internals/define-well-known-symbol.js":
1213
- /*!********************************************************************!*
1214
- !*** ./node_modules/core-js/internals/define-well-known-symbol.js ***!
1215
- \********************************************************************/
1216
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1217
-
1218
- var path = __webpack_require__(/*! ../internals/path */ "./node_modules/core-js/internals/path.js");
1219
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
1220
- var wrappedWellKnownSymbolModule = __webpack_require__(/*! ../internals/well-known-symbol-wrapped */ "./node_modules/core-js/internals/well-known-symbol-wrapped.js");
1221
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;
1222
-
1223
- module.exports = function (NAME) {
1224
- var Symbol = path.Symbol || (path.Symbol = {});
1225
- if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {
1226
- value: wrappedWellKnownSymbolModule.f(NAME)
1227
- });
1228
- };
1229
-
1230
-
1231
- /***/ }),
1232
-
1233
- /***/ "./node_modules/core-js/internals/descriptors.js":
1234
- /*!*******************************************************!*
1235
- !*** ./node_modules/core-js/internals/descriptors.js ***!
1236
- \*******************************************************/
1237
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1238
-
1239
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
1240
-
1241
- // Detect IE8's incomplete defineProperty implementation
1242
- module.exports = !fails(function () {
1243
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1244
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
1245
- });
1246
-
1247
-
1248
- /***/ }),
1249
-
1250
- /***/ "./node_modules/core-js/internals/document-create-element.js":
1251
- /*!*******************************************************************!*
1252
- !*** ./node_modules/core-js/internals/document-create-element.js ***!
1253
- \*******************************************************************/
1254
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1255
-
1256
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
1257
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
1258
-
1259
- var document = global.document;
1260
- // typeof document.createElement is 'object' in old IE
1261
- var EXISTS = isObject(document) && isObject(document.createElement);
1262
-
1263
- module.exports = function (it) {
1264
- return EXISTS ? document.createElement(it) : {};
1265
- };
1266
-
1267
-
1268
- /***/ }),
1269
-
1270
- /***/ "./node_modules/core-js/internals/dom-iterables.js":
1271
- /*!*********************************************************!*
1272
- !*** ./node_modules/core-js/internals/dom-iterables.js ***!
1273
- \*********************************************************/
1274
- /***/ ((module) => {
1275
-
1276
- // iterable DOM collections
1277
- // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1278
- module.exports = {
1279
- CSSRuleList: 0,
1280
- CSSStyleDeclaration: 0,
1281
- CSSValueList: 0,
1282
- ClientRectList: 0,
1283
- DOMRectList: 0,
1284
- DOMStringList: 0,
1285
- DOMTokenList: 1,
1286
- DataTransferItemList: 0,
1287
- FileList: 0,
1288
- HTMLAllCollection: 0,
1289
- HTMLCollection: 0,
1290
- HTMLFormElement: 0,
1291
- HTMLSelectElement: 0,
1292
- MediaList: 0,
1293
- MimeTypeArray: 0,
1294
- NamedNodeMap: 0,
1295
- NodeList: 1,
1296
- PaintRequestList: 0,
1297
- Plugin: 0,
1298
- PluginArray: 0,
1299
- SVGLengthList: 0,
1300
- SVGNumberList: 0,
1301
- SVGPathSegList: 0,
1302
- SVGPointList: 0,
1303
- SVGStringList: 0,
1304
- SVGTransformList: 0,
1305
- SourceBufferList: 0,
1306
- StyleSheetList: 0,
1307
- TextTrackCueList: 0,
1308
- TextTrackList: 0,
1309
- TouchList: 0
1310
- };
1311
-
1312
-
1313
- /***/ }),
1314
-
1315
- /***/ "./node_modules/core-js/internals/engine-user-agent.js":
1316
- /*!*************************************************************!*
1317
- !*** ./node_modules/core-js/internals/engine-user-agent.js ***!
1318
- \*************************************************************/
1319
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1320
-
1321
- var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");
1322
-
1323
- module.exports = getBuiltIn('navigator', 'userAgent') || '';
1324
-
1325
-
1326
- /***/ }),
1327
-
1328
- /***/ "./node_modules/core-js/internals/engine-v8-version.js":
1329
- /*!*************************************************************!*
1330
- !*** ./node_modules/core-js/internals/engine-v8-version.js ***!
1331
- \*************************************************************/
1332
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1333
-
1334
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
1335
- var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "./node_modules/core-js/internals/engine-user-agent.js");
1336
-
1337
- var process = global.process;
1338
- var versions = process && process.versions;
1339
- var v8 = versions && versions.v8;
1340
- var match, version;
1341
-
1342
- if (v8) {
1343
- match = v8.split('.');
1344
- version = match[0] < 4 ? 1 : match[0] + match[1];
1345
- } else if (userAgent) {
1346
- match = userAgent.match(/Edge\/(\d+)/);
1347
- if (!match || match[1] >= 74) {
1348
- match = userAgent.match(/Chrome\/(\d+)/);
1349
- if (match) version = match[1];
1350
- }
1351
- }
1352
-
1353
- module.exports = version && +version;
1354
-
1355
-
1356
- /***/ }),
1357
-
1358
- /***/ "./node_modules/core-js/internals/enum-bug-keys.js":
1359
- /*!*********************************************************!*
1360
- !*** ./node_modules/core-js/internals/enum-bug-keys.js ***!
1361
- \*********************************************************/
1362
- /***/ ((module) => {
1363
-
1364
- // IE8- don't enum bug keys
1365
- module.exports = [
1366
- 'constructor',
1367
- 'hasOwnProperty',
1368
- 'isPrototypeOf',
1369
- 'propertyIsEnumerable',
1370
- 'toLocaleString',
1371
- 'toString',
1372
- 'valueOf'
1373
- ];
1374
-
1375
-
1376
- /***/ }),
1377
-
1378
- /***/ "./node_modules/core-js/internals/export.js":
1379
- /*!**************************************************!*
1380
- !*** ./node_modules/core-js/internals/export.js ***!
1381
- \**************************************************/
1382
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1383
-
1384
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
1385
- var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
1386
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
1387
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
1388
- var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js");
1389
- var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "./node_modules/core-js/internals/copy-constructor-properties.js");
1390
- var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/core-js/internals/is-forced.js");
1391
-
1392
- /*
1393
- options.target - name of the target object
1394
- options.global - target is the global object
1395
- options.stat - export as static methods of target
1396
- options.proto - export as prototype methods of target
1397
- options.real - real prototype method for the `pure` version
1398
- options.forced - export even if the native feature is available
1399
- options.bind - bind methods to the target, required for the `pure` version
1400
- options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
1401
- options.unsafe - use the simple assignment of property instead of delete + defineProperty
1402
- options.sham - add a flag to not completely full polyfills
1403
- options.enumerable - export as enumerable property
1404
- options.noTargetGet - prevent calling a getter on target
1405
- */
1406
- module.exports = function (options, source) {
1407
- var TARGET = options.target;
1408
- var GLOBAL = options.global;
1409
- var STATIC = options.stat;
1410
- var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1411
- if (GLOBAL) {
1412
- target = global;
1413
- } else if (STATIC) {
1414
- target = global[TARGET] || setGlobal(TARGET, {});
1415
- } else {
1416
- target = (global[TARGET] || {}).prototype;
1417
- }
1418
- if (target) for (key in source) {
1419
- sourceProperty = source[key];
1420
- if (options.noTargetGet) {
1421
- descriptor = getOwnPropertyDescriptor(target, key);
1422
- targetProperty = descriptor && descriptor.value;
1423
- } else targetProperty = target[key];
1424
- FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1425
- // contained in target
1426
- if (!FORCED && targetProperty !== undefined) {
1427
- if (typeof sourceProperty === typeof targetProperty) continue;
1428
- copyConstructorProperties(sourceProperty, targetProperty);
1429
- }
1430
- // add a flag to not completely full polyfills
1431
- if (options.sham || (targetProperty && targetProperty.sham)) {
1432
- createNonEnumerableProperty(sourceProperty, 'sham', true);
1433
- }
1434
- // extend global
1435
- redefine(target, key, sourceProperty, options);
1436
- }
1437
- };
1438
-
1439
-
1440
- /***/ }),
1441
-
1442
- /***/ "./node_modules/core-js/internals/fails.js":
1443
- /*!*************************************************!*
1444
- !*** ./node_modules/core-js/internals/fails.js ***!
1445
- \*************************************************/
1446
- /***/ ((module) => {
1447
-
1448
- module.exports = function (exec) {
1449
- try {
1450
- return !!exec();
1451
- } catch (error) {
1452
- return true;
1453
- }
1454
- };
1455
-
1456
-
1457
- /***/ }),
1458
-
1459
- /***/ "./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js":
1460
- /*!******************************************************************************!*
1461
- !*** ./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js ***!
1462
- \******************************************************************************/
1463
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1464
-
1465
- "use strict";
1466
-
1467
- // TODO: Remove from `core-js@4` since it's moved to entry points
1468
- __webpack_require__(/*! ../modules/es.regexp.exec */ "./node_modules/core-js/modules/es.regexp.exec.js");
1469
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
1470
- var regexpExec = __webpack_require__(/*! ../internals/regexp-exec */ "./node_modules/core-js/internals/regexp-exec.js");
1471
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
1472
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
1473
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
1474
-
1475
- var SPECIES = wellKnownSymbol('species');
1476
- var RegExpPrototype = RegExp.prototype;
1477
-
1478
- module.exports = function (KEY, exec, FORCED, SHAM) {
1479
- var SYMBOL = wellKnownSymbol(KEY);
1480
-
1481
- var DELEGATES_TO_SYMBOL = !fails(function () {
1482
- // String methods call symbol-named RegEp methods
1483
- var O = {};
1484
- O[SYMBOL] = function () { return 7; };
1485
- return ''[KEY](O) != 7;
1486
- });
1487
-
1488
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {
1489
- // Symbol-named RegExp methods call .exec
1490
- var execCalled = false;
1491
- var re = /a/;
1492
-
1493
- if (KEY === 'split') {
1494
- // We can't use real regex here since it causes deoptimization
1495
- // and serious performance degradation in V8
1496
- // https://github.com/zloirock/core-js/issues/306
1497
- re = {};
1498
- // RegExp[@@split] doesn't call the regex's exec method, but first creates
1499
- // a new one. We need to return the patched regex when creating the new one.
1500
- re.constructor = {};
1501
- re.constructor[SPECIES] = function () { return re; };
1502
- re.flags = '';
1503
- re[SYMBOL] = /./[SYMBOL];
1504
- }
1505
-
1506
- re.exec = function () { execCalled = true; return null; };
1507
-
1508
- re[SYMBOL]('');
1509
- return !execCalled;
1510
- });
1511
-
1512
- if (
1513
- !DELEGATES_TO_SYMBOL ||
1514
- !DELEGATES_TO_EXEC ||
1515
- FORCED
1516
- ) {
1517
- var nativeRegExpMethod = /./[SYMBOL];
1518
- var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
1519
- var $exec = regexp.exec;
1520
- if ($exec === regexpExec || $exec === RegExpPrototype.exec) {
1521
- if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
1522
- // The native String method already delegates to @@method (this
1523
- // polyfilled function), leasing to infinite recursion.
1524
- // We avoid it by directly calling the native @@method method.
1525
- return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };
1526
- }
1527
- return { done: true, value: nativeMethod.call(str, regexp, arg2) };
1528
- }
1529
- return { done: false };
1530
- });
1531
-
1532
- redefine(String.prototype, KEY, methods[0]);
1533
- redefine(RegExpPrototype, SYMBOL, methods[1]);
1534
- }
1535
-
1536
- if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);
1537
- };
1538
-
1539
-
1540
- /***/ }),
1541
-
1542
- /***/ "./node_modules/core-js/internals/function-bind-context.js":
1543
- /*!*****************************************************************!*
1544
- !*** ./node_modules/core-js/internals/function-bind-context.js ***!
1545
- \*****************************************************************/
1546
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1547
-
1548
- var aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/core-js/internals/a-function.js");
1549
-
1550
- // optional / simple context binding
1551
- module.exports = function (fn, that, length) {
1552
- aFunction(fn);
1553
- if (that === undefined) return fn;
1554
- switch (length) {
1555
- case 0: return function () {
1556
- return fn.call(that);
1557
- };
1558
- case 1: return function (a) {
1559
- return fn.call(that, a);
1560
- };
1561
- case 2: return function (a, b) {
1562
- return fn.call(that, a, b);
1563
- };
1564
- case 3: return function (a, b, c) {
1565
- return fn.call(that, a, b, c);
1566
- };
1567
- }
1568
- return function (/* ...args */) {
1569
- return fn.apply(that, arguments);
1570
- };
1571
- };
1572
-
1573
-
1574
- /***/ }),
1575
-
1576
- /***/ "./node_modules/core-js/internals/get-built-in.js":
1577
- /*!********************************************************!*
1578
- !*** ./node_modules/core-js/internals/get-built-in.js ***!
1579
- \********************************************************/
1580
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1581
-
1582
- var path = __webpack_require__(/*! ../internals/path */ "./node_modules/core-js/internals/path.js");
1583
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
1584
-
1585
- var aFunction = function (variable) {
1586
- return typeof variable == 'function' ? variable : undefined;
1587
- };
1588
-
1589
- module.exports = function (namespace, method) {
1590
- return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])
1591
- : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
1592
- };
1593
-
1594
-
1595
- /***/ }),
1596
-
1597
- /***/ "./node_modules/core-js/internals/get-iterator-method.js":
1598
- /*!***************************************************************!*
1599
- !*** ./node_modules/core-js/internals/get-iterator-method.js ***!
1600
- \***************************************************************/
1601
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1602
-
1603
- var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/core-js/internals/classof.js");
1604
- var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");
1605
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
1606
-
1607
- var ITERATOR = wellKnownSymbol('iterator');
1608
-
1609
- module.exports = function (it) {
1610
- if (it != undefined) return it[ITERATOR]
1611
- || it['@@iterator']
1612
- || Iterators[classof(it)];
1613
- };
1614
-
1615
-
1616
- /***/ }),
1617
-
1618
- /***/ "./node_modules/core-js/internals/global.js":
1619
- /*!**************************************************!*
1620
- !*** ./node_modules/core-js/internals/global.js ***!
1621
- \**************************************************/
1622
- /***/ ((module) => {
1623
-
1624
- var check = function (it) {
1625
- return it && it.Math == Math && it;
1626
- };
1627
-
1628
- // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
1629
- module.exports =
1630
- // eslint-disable-next-line es/no-global-this -- safe
1631
- check(typeof globalThis == 'object' && globalThis) ||
1632
- check(typeof window == 'object' && window) ||
1633
- // eslint-disable-next-line no-restricted-globals -- safe
1634
- check(typeof self == 'object' && self) ||
1635
- check(typeof global == 'object' && global) ||
1636
- // eslint-disable-next-line no-new-func -- fallback
1637
- (function () { return this; })() || Function('return this')();
1638
-
1639
-
1640
- /***/ }),
1641
-
1642
- /***/ "./node_modules/core-js/internals/has.js":
1643
- /*!***********************************************!*
1644
- !*** ./node_modules/core-js/internals/has.js ***!
1645
- \***********************************************/
1646
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1647
-
1648
- var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");
1649
-
1650
- var hasOwnProperty = {}.hasOwnProperty;
1651
-
1652
- module.exports = Object.hasOwn || function hasOwn(it, key) {
1653
- return hasOwnProperty.call(toObject(it), key);
1654
- };
1655
-
1656
-
1657
- /***/ }),
1658
-
1659
- /***/ "./node_modules/core-js/internals/hidden-keys.js":
1660
- /*!*******************************************************!*
1661
- !*** ./node_modules/core-js/internals/hidden-keys.js ***!
1662
- \*******************************************************/
1663
- /***/ ((module) => {
1664
-
1665
- module.exports = {};
1666
-
1667
-
1668
- /***/ }),
1669
-
1670
- /***/ "./node_modules/core-js/internals/html.js":
1671
- /*!************************************************!*
1672
- !*** ./node_modules/core-js/internals/html.js ***!
1673
- \************************************************/
1674
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1675
-
1676
- var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");
1677
-
1678
- module.exports = getBuiltIn('document', 'documentElement');
1679
-
1680
-
1681
- /***/ }),
1682
-
1683
- /***/ "./node_modules/core-js/internals/ie8-dom-define.js":
1684
- /*!**********************************************************!*
1685
- !*** ./node_modules/core-js/internals/ie8-dom-define.js ***!
1686
- \**********************************************************/
1687
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1688
-
1689
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
1690
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
1691
- var createElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/core-js/internals/document-create-element.js");
1692
-
1693
- // Thank's IE8 for his funny defineProperty
1694
- module.exports = !DESCRIPTORS && !fails(function () {
1695
- // eslint-disable-next-line es/no-object-defineproperty -- requied for testing
1696
- return Object.defineProperty(createElement('div'), 'a', {
1697
- get: function () { return 7; }
1698
- }).a != 7;
1699
- });
1700
-
1701
-
1702
- /***/ }),
1703
-
1704
- /***/ "./node_modules/core-js/internals/indexed-object.js":
1705
- /*!**********************************************************!*
1706
- !*** ./node_modules/core-js/internals/indexed-object.js ***!
1707
- \**********************************************************/
1708
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1709
-
1710
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
1711
- var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");
1712
-
1713
- var split = ''.split;
1714
-
1715
- // fallback for non-array-like ES3 and non-enumerable old V8 strings
1716
- module.exports = fails(function () {
1717
- // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
1718
- // eslint-disable-next-line no-prototype-builtins -- safe
1719
- return !Object('z').propertyIsEnumerable(0);
1720
- }) ? function (it) {
1721
- return classof(it) == 'String' ? split.call(it, '') : Object(it);
1722
- } : Object;
1723
-
1724
-
1725
- /***/ }),
1726
-
1727
- /***/ "./node_modules/core-js/internals/inherit-if-required.js":
1728
- /*!***************************************************************!*
1729
- !*** ./node_modules/core-js/internals/inherit-if-required.js ***!
1730
- \***************************************************************/
1731
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1732
-
1733
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
1734
- var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/core-js/internals/object-set-prototype-of.js");
1735
-
1736
- // makes subclassing work correct for wrapped built-ins
1737
- module.exports = function ($this, dummy, Wrapper) {
1738
- var NewTarget, NewTargetPrototype;
1739
- if (
1740
- // it can work only with native `setPrototypeOf`
1741
- setPrototypeOf &&
1742
- // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
1743
- typeof (NewTarget = dummy.constructor) == 'function' &&
1744
- NewTarget !== Wrapper &&
1745
- isObject(NewTargetPrototype = NewTarget.prototype) &&
1746
- NewTargetPrototype !== Wrapper.prototype
1747
- ) setPrototypeOf($this, NewTargetPrototype);
1748
- return $this;
1749
- };
1750
-
1751
-
1752
- /***/ }),
1753
-
1754
- /***/ "./node_modules/core-js/internals/inspect-source.js":
1755
- /*!**********************************************************!*
1756
- !*** ./node_modules/core-js/internals/inspect-source.js ***!
1757
- \**********************************************************/
1758
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1759
-
1760
- var store = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/core-js/internals/shared-store.js");
1761
-
1762
- var functionToString = Function.toString;
1763
-
1764
- // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
1765
- if (typeof store.inspectSource != 'function') {
1766
- store.inspectSource = function (it) {
1767
- return functionToString.call(it);
1768
- };
1769
- }
1770
-
1771
- module.exports = store.inspectSource;
1772
-
1773
-
1774
- /***/ }),
1775
-
1776
- /***/ "./node_modules/core-js/internals/internal-state.js":
1777
- /*!**********************************************************!*
1778
- !*** ./node_modules/core-js/internals/internal-state.js ***!
1779
- \**********************************************************/
1780
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1781
-
1782
- var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "./node_modules/core-js/internals/native-weak-map.js");
1783
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
1784
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
1785
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
1786
- var objectHas = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
1787
- var shared = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/core-js/internals/shared-store.js");
1788
- var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");
1789
- var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");
1790
-
1791
- var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
1792
- var WeakMap = global.WeakMap;
1793
- var set, get, has;
1794
-
1795
- var enforce = function (it) {
1796
- return has(it) ? get(it) : set(it, {});
1797
- };
1798
-
1799
- var getterFor = function (TYPE) {
1800
- return function (it) {
1801
- var state;
1802
- if (!isObject(it) || (state = get(it)).type !== TYPE) {
1803
- throw TypeError('Incompatible receiver, ' + TYPE + ' required');
1804
- } return state;
1805
- };
1806
- };
1807
-
1808
- if (NATIVE_WEAK_MAP || shared.state) {
1809
- var store = shared.state || (shared.state = new WeakMap());
1810
- var wmget = store.get;
1811
- var wmhas = store.has;
1812
- var wmset = store.set;
1813
- set = function (it, metadata) {
1814
- if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1815
- metadata.facade = it;
1816
- wmset.call(store, it, metadata);
1817
- return metadata;
1818
- };
1819
- get = function (it) {
1820
- return wmget.call(store, it) || {};
1821
- };
1822
- has = function (it) {
1823
- return wmhas.call(store, it);
1824
- };
1825
- } else {
1826
- var STATE = sharedKey('state');
1827
- hiddenKeys[STATE] = true;
1828
- set = function (it, metadata) {
1829
- if (objectHas(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1830
- metadata.facade = it;
1831
- createNonEnumerableProperty(it, STATE, metadata);
1832
- return metadata;
1833
- };
1834
- get = function (it) {
1835
- return objectHas(it, STATE) ? it[STATE] : {};
1836
- };
1837
- has = function (it) {
1838
- return objectHas(it, STATE);
1839
- };
1840
- }
1841
-
1842
- module.exports = {
1843
- set: set,
1844
- get: get,
1845
- has: has,
1846
- enforce: enforce,
1847
- getterFor: getterFor
1848
- };
1849
-
1850
-
1851
- /***/ }),
1852
-
1853
- /***/ "./node_modules/core-js/internals/is-array-iterator-method.js":
1854
- /*!********************************************************************!*
1855
- !*** ./node_modules/core-js/internals/is-array-iterator-method.js ***!
1856
- \********************************************************************/
1857
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1858
-
1859
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
1860
- var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");
1861
-
1862
- var ITERATOR = wellKnownSymbol('iterator');
1863
- var ArrayPrototype = Array.prototype;
1864
-
1865
- // check on default Array iterator
1866
- module.exports = function (it) {
1867
- return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
1868
- };
1869
-
1870
-
1871
- /***/ }),
1872
-
1873
- /***/ "./node_modules/core-js/internals/is-array.js":
1874
- /*!****************************************************!*
1875
- !*** ./node_modules/core-js/internals/is-array.js ***!
1876
- \****************************************************/
1877
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1878
-
1879
- var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");
1880
-
1881
- // `IsArray` abstract operation
1882
- // https://tc39.es/ecma262/#sec-isarray
1883
- // eslint-disable-next-line es/no-array-isarray -- safe
1884
- module.exports = Array.isArray || function isArray(arg) {
1885
- return classof(arg) == 'Array';
1886
- };
1887
-
1888
-
1889
- /***/ }),
1890
-
1891
- /***/ "./node_modules/core-js/internals/is-forced.js":
1892
- /*!*****************************************************!*
1893
- !*** ./node_modules/core-js/internals/is-forced.js ***!
1894
- \*****************************************************/
1895
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1896
-
1897
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
1898
-
1899
- var replacement = /#|\.prototype\./;
1900
-
1901
- var isForced = function (feature, detection) {
1902
- var value = data[normalize(feature)];
1903
- return value == POLYFILL ? true
1904
- : value == NATIVE ? false
1905
- : typeof detection == 'function' ? fails(detection)
1906
- : !!detection;
1907
- };
1908
-
1909
- var normalize = isForced.normalize = function (string) {
1910
- return String(string).replace(replacement, '.').toLowerCase();
1911
- };
1912
-
1913
- var data = isForced.data = {};
1914
- var NATIVE = isForced.NATIVE = 'N';
1915
- var POLYFILL = isForced.POLYFILL = 'P';
1916
-
1917
- module.exports = isForced;
1918
-
1919
-
1920
- /***/ }),
1921
-
1922
- /***/ "./node_modules/core-js/internals/is-object.js":
1923
- /*!*****************************************************!*
1924
- !*** ./node_modules/core-js/internals/is-object.js ***!
1925
- \*****************************************************/
1926
- /***/ ((module) => {
1927
-
1928
- module.exports = function (it) {
1929
- return typeof it === 'object' ? it !== null : typeof it === 'function';
1930
- };
1931
-
1932
-
1933
- /***/ }),
1934
-
1935
- /***/ "./node_modules/core-js/internals/is-pure.js":
1936
- /*!***************************************************!*
1937
- !*** ./node_modules/core-js/internals/is-pure.js ***!
1938
- \***************************************************/
1939
- /***/ ((module) => {
1940
-
1941
- module.exports = false;
1942
-
1943
-
1944
- /***/ }),
1945
-
1946
- /***/ "./node_modules/core-js/internals/is-regexp.js":
1947
- /*!*****************************************************!*
1948
- !*** ./node_modules/core-js/internals/is-regexp.js ***!
1949
- \*****************************************************/
1950
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1951
-
1952
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
1953
- var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");
1954
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
1955
-
1956
- var MATCH = wellKnownSymbol('match');
1957
-
1958
- // `IsRegExp` abstract operation
1959
- // https://tc39.es/ecma262/#sec-isregexp
1960
- module.exports = function (it) {
1961
- var isRegExp;
1962
- return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
1963
- };
1964
-
1965
-
1966
- /***/ }),
1967
-
1968
- /***/ "./node_modules/core-js/internals/iterate.js":
1969
- /*!***************************************************!*
1970
- !*** ./node_modules/core-js/internals/iterate.js ***!
1971
- \***************************************************/
1972
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
1973
-
1974
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
1975
- var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "./node_modules/core-js/internals/is-array-iterator-method.js");
1976
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
1977
- var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/core-js/internals/function-bind-context.js");
1978
- var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "./node_modules/core-js/internals/get-iterator-method.js");
1979
- var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "./node_modules/core-js/internals/iterator-close.js");
1980
-
1981
- var Result = function (stopped, result) {
1982
- this.stopped = stopped;
1983
- this.result = result;
1984
- };
1985
-
1986
- module.exports = function (iterable, unboundFunction, options) {
1987
- var that = options && options.that;
1988
- var AS_ENTRIES = !!(options && options.AS_ENTRIES);
1989
- var IS_ITERATOR = !!(options && options.IS_ITERATOR);
1990
- var INTERRUPTED = !!(options && options.INTERRUPTED);
1991
- var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);
1992
- var iterator, iterFn, index, length, result, next, step;
1993
-
1994
- var stop = function (condition) {
1995
- if (iterator) iteratorClose(iterator);
1996
- return new Result(true, condition);
1997
- };
1998
-
1999
- var callFn = function (value) {
2000
- if (AS_ENTRIES) {
2001
- anObject(value);
2002
- return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
2003
- } return INTERRUPTED ? fn(value, stop) : fn(value);
2004
- };
2005
-
2006
- if (IS_ITERATOR) {
2007
- iterator = iterable;
2008
- } else {
2009
- iterFn = getIteratorMethod(iterable);
2010
- if (typeof iterFn != 'function') throw TypeError('Target is not iterable');
2011
- // optimisation for array iterators
2012
- if (isArrayIteratorMethod(iterFn)) {
2013
- for (index = 0, length = toLength(iterable.length); length > index; index++) {
2014
- result = callFn(iterable[index]);
2015
- if (result && result instanceof Result) return result;
2016
- } return new Result(false);
2017
- }
2018
- iterator = iterFn.call(iterable);
2019
- }
2020
-
2021
- next = iterator.next;
2022
- while (!(step = next.call(iterator)).done) {
2023
- try {
2024
- result = callFn(step.value);
2025
- } catch (error) {
2026
- iteratorClose(iterator);
2027
- throw error;
2028
- }
2029
- if (typeof result == 'object' && result && result instanceof Result) return result;
2030
- } return new Result(false);
2031
- };
2032
-
2033
-
2034
- /***/ }),
2035
-
2036
- /***/ "./node_modules/core-js/internals/iterator-close.js":
2037
- /*!**********************************************************!*
2038
- !*** ./node_modules/core-js/internals/iterator-close.js ***!
2039
- \**********************************************************/
2040
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2041
-
2042
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2043
-
2044
- module.exports = function (iterator) {
2045
- var returnMethod = iterator['return'];
2046
- if (returnMethod !== undefined) {
2047
- return anObject(returnMethod.call(iterator)).value;
2048
- }
2049
- };
2050
-
2051
-
2052
- /***/ }),
2053
-
2054
- /***/ "./node_modules/core-js/internals/iterators-core.js":
2055
- /*!**********************************************************!*
2056
- !*** ./node_modules/core-js/internals/iterators-core.js ***!
2057
- \**********************************************************/
2058
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2059
-
2060
- "use strict";
2061
-
2062
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
2063
- var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/core-js/internals/object-get-prototype-of.js");
2064
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
2065
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
2066
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
2067
- var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");
2068
-
2069
- var ITERATOR = wellKnownSymbol('iterator');
2070
- var BUGGY_SAFARI_ITERATORS = false;
2071
-
2072
- var returnThis = function () { return this; };
2073
-
2074
- // `%IteratorPrototype%` object
2075
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
2076
- var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
2077
-
2078
- /* eslint-disable es/no-array-prototype-keys -- safe */
2079
- if ([].keys) {
2080
- arrayIterator = [].keys();
2081
- // Safari 8 has buggy iterators w/o `next`
2082
- if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;
2083
- else {
2084
- PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
2085
- if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;
2086
- }
2087
- }
2088
-
2089
- var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () {
2090
- var test = {};
2091
- // FF44- legacy iterators case
2092
- return IteratorPrototype[ITERATOR].call(test) !== test;
2093
- });
2094
-
2095
- if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
2096
-
2097
- // `%IteratorPrototype%[@@iterator]()` method
2098
- // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
2099
- if ((!IS_PURE || NEW_ITERATOR_PROTOTYPE) && !has(IteratorPrototype, ITERATOR)) {
2100
- createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
2101
- }
2102
-
2103
- module.exports = {
2104
- IteratorPrototype: IteratorPrototype,
2105
- BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS
2106
- };
2107
-
2108
-
2109
- /***/ }),
2110
-
2111
- /***/ "./node_modules/core-js/internals/iterators.js":
2112
- /*!*****************************************************!*
2113
- !*** ./node_modules/core-js/internals/iterators.js ***!
2114
- \*****************************************************/
2115
- /***/ ((module) => {
2116
-
2117
- module.exports = {};
2118
-
2119
-
2120
- /***/ }),
2121
-
2122
- /***/ "./node_modules/core-js/internals/native-symbol.js":
2123
- /*!*********************************************************!*
2124
- !*** ./node_modules/core-js/internals/native-symbol.js ***!
2125
- \*********************************************************/
2126
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2127
-
2128
- /* eslint-disable es/no-symbol -- required for testing */
2129
- var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "./node_modules/core-js/internals/engine-v8-version.js");
2130
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
2131
-
2132
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
2133
- module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
2134
- var symbol = Symbol();
2135
- // Chrome 38 Symbol has incorrect toString conversion
2136
- // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
2137
- return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
2138
- // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
2139
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
2140
- });
2141
-
2142
-
2143
- /***/ }),
2144
-
2145
- /***/ "./node_modules/core-js/internals/native-weak-map.js":
2146
- /*!***********************************************************!*
2147
- !*** ./node_modules/core-js/internals/native-weak-map.js ***!
2148
- \***********************************************************/
2149
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2150
-
2151
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
2152
- var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/core-js/internals/inspect-source.js");
2153
-
2154
- var WeakMap = global.WeakMap;
2155
-
2156
- module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
2157
-
2158
-
2159
- /***/ }),
2160
-
2161
- /***/ "./node_modules/core-js/internals/not-a-regexp.js":
2162
- /*!********************************************************!*
2163
- !*** ./node_modules/core-js/internals/not-a-regexp.js ***!
2164
- \********************************************************/
2165
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2166
-
2167
- var isRegExp = __webpack_require__(/*! ../internals/is-regexp */ "./node_modules/core-js/internals/is-regexp.js");
2168
-
2169
- module.exports = function (it) {
2170
- if (isRegExp(it)) {
2171
- throw TypeError("The method doesn't accept regular expressions");
2172
- } return it;
2173
- };
2174
-
2175
-
2176
- /***/ }),
2177
-
2178
- /***/ "./node_modules/core-js/internals/number-parse-float.js":
2179
- /*!**************************************************************!*
2180
- !*** ./node_modules/core-js/internals/number-parse-float.js ***!
2181
- \**************************************************************/
2182
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2183
-
2184
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
2185
- var trim = __webpack_require__(/*! ../internals/string-trim */ "./node_modules/core-js/internals/string-trim.js").trim;
2186
- var whitespaces = __webpack_require__(/*! ../internals/whitespaces */ "./node_modules/core-js/internals/whitespaces.js");
2187
-
2188
- var $parseFloat = global.parseFloat;
2189
- var FORCED = 1 / $parseFloat(whitespaces + '-0') !== -Infinity;
2190
-
2191
- // `parseFloat` method
2192
- // https://tc39.es/ecma262/#sec-parsefloat-string
2193
- module.exports = FORCED ? function parseFloat(string) {
2194
- var trimmedString = trim(String(string));
2195
- var result = $parseFloat(trimmedString);
2196
- return result === 0 && trimmedString.charAt(0) == '-' ? -0 : result;
2197
- } : $parseFloat;
2198
-
2199
-
2200
- /***/ }),
2201
-
2202
- /***/ "./node_modules/core-js/internals/object-create.js":
2203
- /*!*********************************************************!*
2204
- !*** ./node_modules/core-js/internals/object-create.js ***!
2205
- \*********************************************************/
2206
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2207
-
2208
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2209
- var defineProperties = __webpack_require__(/*! ../internals/object-define-properties */ "./node_modules/core-js/internals/object-define-properties.js");
2210
- var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js");
2211
- var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");
2212
- var html = __webpack_require__(/*! ../internals/html */ "./node_modules/core-js/internals/html.js");
2213
- var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/core-js/internals/document-create-element.js");
2214
- var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");
2215
-
2216
- var GT = '>';
2217
- var LT = '<';
2218
- var PROTOTYPE = 'prototype';
2219
- var SCRIPT = 'script';
2220
- var IE_PROTO = sharedKey('IE_PROTO');
2221
-
2222
- var EmptyConstructor = function () { /* empty */ };
2223
-
2224
- var scriptTag = function (content) {
2225
- return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
2226
- };
2227
-
2228
- // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
2229
- var NullProtoObjectViaActiveX = function (activeXDocument) {
2230
- activeXDocument.write(scriptTag(''));
2231
- activeXDocument.close();
2232
- var temp = activeXDocument.parentWindow.Object;
2233
- activeXDocument = null; // avoid memory leak
2234
- return temp;
2235
- };
2236
-
2237
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
2238
- var NullProtoObjectViaIFrame = function () {
2239
- // Thrash, waste and sodomy: IE GC bug
2240
- var iframe = documentCreateElement('iframe');
2241
- var JS = 'java' + SCRIPT + ':';
2242
- var iframeDocument;
2243
- iframe.style.display = 'none';
2244
- html.appendChild(iframe);
2245
- // https://github.com/zloirock/core-js/issues/475
2246
- iframe.src = String(JS);
2247
- iframeDocument = iframe.contentWindow.document;
2248
- iframeDocument.open();
2249
- iframeDocument.write(scriptTag('document.F=Object'));
2250
- iframeDocument.close();
2251
- return iframeDocument.F;
2252
- };
2253
-
2254
- // Check for document.domain and active x support
2255
- // No need to use active x approach when document.domain is not set
2256
- // see https://github.com/es-shims/es5-shim/issues/150
2257
- // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
2258
- // avoid IE GC bug
2259
- var activeXDocument;
2260
- var NullProtoObject = function () {
2261
- try {
2262
- /* global ActiveXObject -- old IE */
2263
- activeXDocument = document.domain && new ActiveXObject('htmlfile');
2264
- } catch (error) { /* ignore */ }
2265
- NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
2266
- var length = enumBugKeys.length;
2267
- while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
2268
- return NullProtoObject();
2269
- };
2270
-
2271
- hiddenKeys[IE_PROTO] = true;
2272
-
2273
- // `Object.create` method
2274
- // https://tc39.es/ecma262/#sec-object.create
2275
- module.exports = Object.create || function create(O, Properties) {
2276
- var result;
2277
- if (O !== null) {
2278
- EmptyConstructor[PROTOTYPE] = anObject(O);
2279
- result = new EmptyConstructor();
2280
- EmptyConstructor[PROTOTYPE] = null;
2281
- // add "__proto__" for Object.getPrototypeOf polyfill
2282
- result[IE_PROTO] = O;
2283
- } else result = NullProtoObject();
2284
- return Properties === undefined ? result : defineProperties(result, Properties);
2285
- };
2286
-
2287
-
2288
- /***/ }),
2289
-
2290
- /***/ "./node_modules/core-js/internals/object-define-properties.js":
2291
- /*!********************************************************************!*
2292
- !*** ./node_modules/core-js/internals/object-define-properties.js ***!
2293
- \********************************************************************/
2294
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2295
-
2296
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
2297
- var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
2298
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2299
- var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js");
2300
-
2301
- // `Object.defineProperties` method
2302
- // https://tc39.es/ecma262/#sec-object.defineproperties
2303
- // eslint-disable-next-line es/no-object-defineproperties -- safe
2304
- module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
2305
- anObject(O);
2306
- var keys = objectKeys(Properties);
2307
- var length = keys.length;
2308
- var index = 0;
2309
- var key;
2310
- while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);
2311
- return O;
2312
- };
2313
-
2314
-
2315
- /***/ }),
2316
-
2317
- /***/ "./node_modules/core-js/internals/object-define-property.js":
2318
- /*!******************************************************************!*
2319
- !*** ./node_modules/core-js/internals/object-define-property.js ***!
2320
- \******************************************************************/
2321
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2322
-
2323
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
2324
- var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/core-js/internals/ie8-dom-define.js");
2325
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2326
- var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");
2327
-
2328
- // eslint-disable-next-line es/no-object-defineproperty -- safe
2329
- var $defineProperty = Object.defineProperty;
2330
-
2331
- // `Object.defineProperty` method
2332
- // https://tc39.es/ecma262/#sec-object.defineproperty
2333
- exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) {
2334
- anObject(O);
2335
- P = toPrimitive(P, true);
2336
- anObject(Attributes);
2337
- if (IE8_DOM_DEFINE) try {
2338
- return $defineProperty(O, P, Attributes);
2339
- } catch (error) { /* empty */ }
2340
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
2341
- if ('value' in Attributes) O[P] = Attributes.value;
2342
- return O;
2343
- };
2344
-
2345
-
2346
- /***/ }),
2347
-
2348
- /***/ "./node_modules/core-js/internals/object-get-own-property-descriptor.js":
2349
- /*!******************************************************************************!*
2350
- !*** ./node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
2351
- \******************************************************************************/
2352
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2353
-
2354
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
2355
- var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js");
2356
- var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");
2357
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
2358
- var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");
2359
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
2360
- var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/core-js/internals/ie8-dom-define.js");
2361
-
2362
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2363
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2364
-
2365
- // `Object.getOwnPropertyDescriptor` method
2366
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
2367
- exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
2368
- O = toIndexedObject(O);
2369
- P = toPrimitive(P, true);
2370
- if (IE8_DOM_DEFINE) try {
2371
- return $getOwnPropertyDescriptor(O, P);
2372
- } catch (error) { /* empty */ }
2373
- if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
2374
- };
2375
-
2376
-
2377
- /***/ }),
2378
-
2379
- /***/ "./node_modules/core-js/internals/object-get-own-property-names-external.js":
2380
- /*!**********************************************************************************!*
2381
- !*** ./node_modules/core-js/internals/object-get-own-property-names-external.js ***!
2382
- \**********************************************************************************/
2383
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2384
-
2385
- /* eslint-disable es/no-object-getownpropertynames -- safe */
2386
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
2387
- var $getOwnPropertyNames = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js").f;
2388
-
2389
- var toString = {}.toString;
2390
-
2391
- var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
2392
- ? Object.getOwnPropertyNames(window) : [];
2393
-
2394
- var getWindowNames = function (it) {
2395
- try {
2396
- return $getOwnPropertyNames(it);
2397
- } catch (error) {
2398
- return windowNames.slice();
2399
- }
2400
- };
2401
-
2402
- // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
2403
- module.exports.f = function getOwnPropertyNames(it) {
2404
- return windowNames && toString.call(it) == '[object Window]'
2405
- ? getWindowNames(it)
2406
- : $getOwnPropertyNames(toIndexedObject(it));
2407
- };
2408
-
2409
-
2410
- /***/ }),
2411
-
2412
- /***/ "./node_modules/core-js/internals/object-get-own-property-names.js":
2413
- /*!*************************************************************************!*
2414
- !*** ./node_modules/core-js/internals/object-get-own-property-names.js ***!
2415
- \*************************************************************************/
2416
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2417
-
2418
- var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/core-js/internals/object-keys-internal.js");
2419
- var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js");
2420
-
2421
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
2422
-
2423
- // `Object.getOwnPropertyNames` method
2424
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
2425
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
2426
- exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
2427
- return internalObjectKeys(O, hiddenKeys);
2428
- };
2429
-
2430
-
2431
- /***/ }),
2432
-
2433
- /***/ "./node_modules/core-js/internals/object-get-own-property-symbols.js":
2434
- /*!***************************************************************************!*
2435
- !*** ./node_modules/core-js/internals/object-get-own-property-symbols.js ***!
2436
- \***************************************************************************/
2437
- /***/ ((__unused_webpack_module, exports) => {
2438
-
2439
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
2440
- exports.f = Object.getOwnPropertySymbols;
2441
-
2442
-
2443
- /***/ }),
2444
-
2445
- /***/ "./node_modules/core-js/internals/object-get-prototype-of.js":
2446
- /*!*******************************************************************!*
2447
- !*** ./node_modules/core-js/internals/object-get-prototype-of.js ***!
2448
- \*******************************************************************/
2449
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2450
-
2451
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
2452
- var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");
2453
- var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");
2454
- var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "./node_modules/core-js/internals/correct-prototype-getter.js");
2455
-
2456
- var IE_PROTO = sharedKey('IE_PROTO');
2457
- var ObjectPrototype = Object.prototype;
2458
-
2459
- // `Object.getPrototypeOf` method
2460
- // https://tc39.es/ecma262/#sec-object.getprototypeof
2461
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
2462
- module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
2463
- O = toObject(O);
2464
- if (has(O, IE_PROTO)) return O[IE_PROTO];
2465
- if (typeof O.constructor == 'function' && O instanceof O.constructor) {
2466
- return O.constructor.prototype;
2467
- } return O instanceof Object ? ObjectPrototype : null;
2468
- };
2469
-
2470
-
2471
- /***/ }),
2472
-
2473
- /***/ "./node_modules/core-js/internals/object-keys-internal.js":
2474
- /*!****************************************************************!*
2475
- !*** ./node_modules/core-js/internals/object-keys-internal.js ***!
2476
- \****************************************************************/
2477
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2478
-
2479
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
2480
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
2481
- var indexOf = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/core-js/internals/array-includes.js").indexOf;
2482
- var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");
2483
-
2484
- module.exports = function (object, names) {
2485
- var O = toIndexedObject(object);
2486
- var i = 0;
2487
- var result = [];
2488
- var key;
2489
- for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
2490
- // Don't enum bug & hidden keys
2491
- while (names.length > i) if (has(O, key = names[i++])) {
2492
- ~indexOf(result, key) || result.push(key);
2493
- }
2494
- return result;
2495
- };
2496
-
2497
-
2498
- /***/ }),
2499
-
2500
- /***/ "./node_modules/core-js/internals/object-keys.js":
2501
- /*!*******************************************************!*
2502
- !*** ./node_modules/core-js/internals/object-keys.js ***!
2503
- \*******************************************************/
2504
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2505
-
2506
- var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/core-js/internals/object-keys-internal.js");
2507
- var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js");
2508
-
2509
- // `Object.keys` method
2510
- // https://tc39.es/ecma262/#sec-object.keys
2511
- // eslint-disable-next-line es/no-object-keys -- safe
2512
- module.exports = Object.keys || function keys(O) {
2513
- return internalObjectKeys(O, enumBugKeys);
2514
- };
2515
-
2516
-
2517
- /***/ }),
2518
-
2519
- /***/ "./node_modules/core-js/internals/object-property-is-enumerable.js":
2520
- /*!*************************************************************************!*
2521
- !*** ./node_modules/core-js/internals/object-property-is-enumerable.js ***!
2522
- \*************************************************************************/
2523
- /***/ ((__unused_webpack_module, exports) => {
2524
-
2525
- "use strict";
2526
-
2527
- var $propertyIsEnumerable = {}.propertyIsEnumerable;
2528
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2529
- var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2530
-
2531
- // Nashorn ~ JDK8 bug
2532
- var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
2533
-
2534
- // `Object.prototype.propertyIsEnumerable` method implementation
2535
- // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
2536
- exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
2537
- var descriptor = getOwnPropertyDescriptor(this, V);
2538
- return !!descriptor && descriptor.enumerable;
2539
- } : $propertyIsEnumerable;
2540
-
2541
-
2542
- /***/ }),
2543
-
2544
- /***/ "./node_modules/core-js/internals/object-set-prototype-of.js":
2545
- /*!*******************************************************************!*
2546
- !*** ./node_modules/core-js/internals/object-set-prototype-of.js ***!
2547
- \*******************************************************************/
2548
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2549
-
2550
- /* eslint-disable no-proto -- safe */
2551
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2552
- var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "./node_modules/core-js/internals/a-possible-prototype.js");
2553
-
2554
- // `Object.setPrototypeOf` method
2555
- // https://tc39.es/ecma262/#sec-object.setprototypeof
2556
- // Works with __proto__ only. Old v8 can't work with null proto objects.
2557
- // eslint-disable-next-line es/no-object-setprototypeof -- safe
2558
- module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
2559
- var CORRECT_SETTER = false;
2560
- var test = {};
2561
- var setter;
2562
- try {
2563
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2564
- setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
2565
- setter.call(test, []);
2566
- CORRECT_SETTER = test instanceof Array;
2567
- } catch (error) { /* empty */ }
2568
- return function setPrototypeOf(O, proto) {
2569
- anObject(O);
2570
- aPossiblePrototype(proto);
2571
- if (CORRECT_SETTER) setter.call(O, proto);
2572
- else O.__proto__ = proto;
2573
- return O;
2574
- };
2575
- }() : undefined);
2576
-
2577
-
2578
- /***/ }),
2579
-
2580
- /***/ "./node_modules/core-js/internals/object-to-array.js":
2581
- /*!***********************************************************!*
2582
- !*** ./node_modules/core-js/internals/object-to-array.js ***!
2583
- \***********************************************************/
2584
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2585
-
2586
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
2587
- var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js");
2588
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
2589
- var propertyIsEnumerable = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js").f;
2590
-
2591
- // `Object.{ entries, values }` methods implementation
2592
- var createMethod = function (TO_ENTRIES) {
2593
- return function (it) {
2594
- var O = toIndexedObject(it);
2595
- var keys = objectKeys(O);
2596
- var length = keys.length;
2597
- var i = 0;
2598
- var result = [];
2599
- var key;
2600
- while (length > i) {
2601
- key = keys[i++];
2602
- if (!DESCRIPTORS || propertyIsEnumerable.call(O, key)) {
2603
- result.push(TO_ENTRIES ? [key, O[key]] : O[key]);
2604
- }
2605
- }
2606
- return result;
2607
- };
2608
- };
2609
-
2610
- module.exports = {
2611
- // `Object.entries` method
2612
- // https://tc39.es/ecma262/#sec-object.entries
2613
- entries: createMethod(true),
2614
- // `Object.values` method
2615
- // https://tc39.es/ecma262/#sec-object.values
2616
- values: createMethod(false)
2617
- };
2618
-
2619
-
2620
- /***/ }),
2621
-
2622
- /***/ "./node_modules/core-js/internals/object-to-string.js":
2623
- /*!************************************************************!*
2624
- !*** ./node_modules/core-js/internals/object-to-string.js ***!
2625
- \************************************************************/
2626
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2627
-
2628
- "use strict";
2629
-
2630
- var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/core-js/internals/to-string-tag-support.js");
2631
- var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/core-js/internals/classof.js");
2632
-
2633
- // `Object.prototype.toString` method implementation
2634
- // https://tc39.es/ecma262/#sec-object.prototype.tostring
2635
- module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
2636
- return '[object ' + classof(this) + ']';
2637
- };
2638
-
2639
-
2640
- /***/ }),
2641
-
2642
- /***/ "./node_modules/core-js/internals/own-keys.js":
2643
- /*!****************************************************!*
2644
- !*** ./node_modules/core-js/internals/own-keys.js ***!
2645
- \****************************************************/
2646
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2647
-
2648
- var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");
2649
- var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js");
2650
- var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/core-js/internals/object-get-own-property-symbols.js");
2651
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2652
-
2653
- // all object keys, includes non-enumerable and symbols
2654
- module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
2655
- var keys = getOwnPropertyNamesModule.f(anObject(it));
2656
- var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
2657
- return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
2658
- };
2659
-
2660
-
2661
- /***/ }),
2662
-
2663
- /***/ "./node_modules/core-js/internals/path.js":
2664
- /*!************************************************!*
2665
- !*** ./node_modules/core-js/internals/path.js ***!
2666
- \************************************************/
2667
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2668
-
2669
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
2670
-
2671
- module.exports = global;
2672
-
2673
-
2674
- /***/ }),
2675
-
2676
- /***/ "./node_modules/core-js/internals/redefine.js":
2677
- /*!****************************************************!*
2678
- !*** ./node_modules/core-js/internals/redefine.js ***!
2679
- \****************************************************/
2680
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2681
-
2682
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
2683
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
2684
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
2685
- var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js");
2686
- var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/core-js/internals/inspect-source.js");
2687
- var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js");
2688
-
2689
- var getInternalState = InternalStateModule.get;
2690
- var enforceInternalState = InternalStateModule.enforce;
2691
- var TEMPLATE = String(String).split('String');
2692
-
2693
- (module.exports = function (O, key, value, options) {
2694
- var unsafe = options ? !!options.unsafe : false;
2695
- var simple = options ? !!options.enumerable : false;
2696
- var noTargetGet = options ? !!options.noTargetGet : false;
2697
- var state;
2698
- if (typeof value == 'function') {
2699
- if (typeof key == 'string' && !has(value, 'name')) {
2700
- createNonEnumerableProperty(value, 'name', key);
2701
- }
2702
- state = enforceInternalState(value);
2703
- if (!state.source) {
2704
- state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
2705
- }
2706
- }
2707
- if (O === global) {
2708
- if (simple) O[key] = value;
2709
- else setGlobal(key, value);
2710
- return;
2711
- } else if (!unsafe) {
2712
- delete O[key];
2713
- } else if (!noTargetGet && O[key]) {
2714
- simple = true;
2715
- }
2716
- if (simple) O[key] = value;
2717
- else createNonEnumerableProperty(O, key, value);
2718
- // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
2719
- })(Function.prototype, 'toString', function toString() {
2720
- return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
2721
- });
2722
-
2723
-
2724
- /***/ }),
2725
-
2726
- /***/ "./node_modules/core-js/internals/regexp-exec-abstract.js":
2727
- /*!****************************************************************!*
2728
- !*** ./node_modules/core-js/internals/regexp-exec-abstract.js ***!
2729
- \****************************************************************/
2730
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2731
-
2732
- var classof = __webpack_require__(/*! ./classof-raw */ "./node_modules/core-js/internals/classof-raw.js");
2733
- var regexpExec = __webpack_require__(/*! ./regexp-exec */ "./node_modules/core-js/internals/regexp-exec.js");
2734
-
2735
- // `RegExpExec` abstract operation
2736
- // https://tc39.es/ecma262/#sec-regexpexec
2737
- module.exports = function (R, S) {
2738
- var exec = R.exec;
2739
- if (typeof exec === 'function') {
2740
- var result = exec.call(R, S);
2741
- if (typeof result !== 'object') {
2742
- throw TypeError('RegExp exec method returned something other than an Object or null');
2743
- }
2744
- return result;
2745
- }
2746
-
2747
- if (classof(R) !== 'RegExp') {
2748
- throw TypeError('RegExp#exec called on incompatible receiver');
2749
- }
2750
-
2751
- return regexpExec.call(R, S);
2752
- };
2753
-
2754
-
2755
-
2756
- /***/ }),
2757
-
2758
- /***/ "./node_modules/core-js/internals/regexp-exec.js":
2759
- /*!*******************************************************!*
2760
- !*** ./node_modules/core-js/internals/regexp-exec.js ***!
2761
- \*******************************************************/
2762
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2763
-
2764
- "use strict";
2765
-
2766
- /* eslint-disable regexp/no-assertion-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
2767
- /* eslint-disable regexp/no-useless-quantifier -- testing */
2768
- var regexpFlags = __webpack_require__(/*! ../internals/regexp-flags */ "./node_modules/core-js/internals/regexp-flags.js");
2769
- var stickyHelpers = __webpack_require__(/*! ../internals/regexp-sticky-helpers */ "./node_modules/core-js/internals/regexp-sticky-helpers.js");
2770
- var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");
2771
- var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");
2772
- var getInternalState = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js").get;
2773
- var UNSUPPORTED_DOT_ALL = __webpack_require__(/*! ../internals/regexp-unsupported-dot-all */ "./node_modules/core-js/internals/regexp-unsupported-dot-all.js");
2774
- var UNSUPPORTED_NCG = __webpack_require__(/*! ../internals/regexp-unsupported-ncg */ "./node_modules/core-js/internals/regexp-unsupported-ncg.js");
2775
-
2776
- var nativeExec = RegExp.prototype.exec;
2777
- var nativeReplace = shared('native-string-replace', String.prototype.replace);
2778
-
2779
- var patchedExec = nativeExec;
2780
-
2781
- var UPDATES_LAST_INDEX_WRONG = (function () {
2782
- var re1 = /a/;
2783
- var re2 = /b*/g;
2784
- nativeExec.call(re1, 'a');
2785
- nativeExec.call(re2, 'a');
2786
- return re1.lastIndex !== 0 || re2.lastIndex !== 0;
2787
- })();
2788
-
2789
- var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET;
2790
-
2791
- // nonparticipating capturing group, copied from es5-shim's String#split patch.
2792
- var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
2793
-
2794
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
2795
-
2796
- if (PATCH) {
2797
- // eslint-disable-next-line max-statements -- TODO
2798
- patchedExec = function exec(str) {
2799
- var re = this;
2800
- var state = getInternalState(re);
2801
- var raw = state.raw;
2802
- var result, reCopy, lastIndex, match, i, object, group;
2803
-
2804
- if (raw) {
2805
- raw.lastIndex = re.lastIndex;
2806
- result = patchedExec.call(raw, str);
2807
- re.lastIndex = raw.lastIndex;
2808
- return result;
2809
- }
2810
-
2811
- var groups = state.groups;
2812
- var sticky = UNSUPPORTED_Y && re.sticky;
2813
- var flags = regexpFlags.call(re);
2814
- var source = re.source;
2815
- var charsAdded = 0;
2816
- var strCopy = str;
2817
-
2818
- if (sticky) {
2819
- flags = flags.replace('y', '');
2820
- if (flags.indexOf('g') === -1) {
2821
- flags += 'g';
2822
- }
2823
-
2824
- strCopy = String(str).slice(re.lastIndex);
2825
- // Support anchored sticky behavior.
2826
- if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) {
2827
- source = '(?: ' + source + ')';
2828
- strCopy = ' ' + strCopy;
2829
- charsAdded++;
2830
- }
2831
- // ^(? + rx + ) is needed, in combination with some str slicing, to
2832
- // simulate the 'y' flag.
2833
- reCopy = new RegExp('^(?:' + source + ')', flags);
2834
- }
2835
-
2836
- if (NPCG_INCLUDED) {
2837
- reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
2838
- }
2839
- if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
2840
-
2841
- match = nativeExec.call(sticky ? reCopy : re, strCopy);
2842
-
2843
- if (sticky) {
2844
- if (match) {
2845
- match.input = match.input.slice(charsAdded);
2846
- match[0] = match[0].slice(charsAdded);
2847
- match.index = re.lastIndex;
2848
- re.lastIndex += match[0].length;
2849
- } else re.lastIndex = 0;
2850
- } else if (UPDATES_LAST_INDEX_WRONG && match) {
2851
- re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
2852
- }
2853
- if (NPCG_INCLUDED && match && match.length > 1) {
2854
- // Fix browsers whose `exec` methods don't consistently return `undefined`
2855
- // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
2856
- nativeReplace.call(match[0], reCopy, function () {
2857
- for (i = 1; i < arguments.length - 2; i++) {
2858
- if (arguments[i] === undefined) match[i] = undefined;
2859
- }
2860
- });
2861
- }
2862
-
2863
- if (match && groups) {
2864
- match.groups = object = create(null);
2865
- for (i = 0; i < groups.length; i++) {
2866
- group = groups[i];
2867
- object[group[0]] = match[group[1]];
2868
- }
2869
- }
2870
-
2871
- return match;
2872
- };
2873
- }
2874
-
2875
- module.exports = patchedExec;
2876
-
2877
-
2878
- /***/ }),
2879
-
2880
- /***/ "./node_modules/core-js/internals/regexp-flags.js":
2881
- /*!********************************************************!*
2882
- !*** ./node_modules/core-js/internals/regexp-flags.js ***!
2883
- \********************************************************/
2884
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2885
-
2886
- "use strict";
2887
-
2888
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
2889
-
2890
- // `RegExp.prototype.flags` getter implementation
2891
- // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
2892
- module.exports = function () {
2893
- var that = anObject(this);
2894
- var result = '';
2895
- if (that.global) result += 'g';
2896
- if (that.ignoreCase) result += 'i';
2897
- if (that.multiline) result += 'm';
2898
- if (that.dotAll) result += 's';
2899
- if (that.unicode) result += 'u';
2900
- if (that.sticky) result += 'y';
2901
- return result;
2902
- };
2903
-
2904
-
2905
- /***/ }),
2906
-
2907
- /***/ "./node_modules/core-js/internals/regexp-sticky-helpers.js":
2908
- /*!*****************************************************************!*
2909
- !*** ./node_modules/core-js/internals/regexp-sticky-helpers.js ***!
2910
- \*****************************************************************/
2911
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
2912
-
2913
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
2914
-
2915
- // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,
2916
- var RE = function (s, f) {
2917
- return RegExp(s, f);
2918
- };
2919
-
2920
- exports.UNSUPPORTED_Y = fails(function () {
2921
- var re = RE('a', 'y');
2922
- re.lastIndex = 2;
2923
- return re.exec('abcd') != null;
2924
- });
2925
-
2926
- exports.BROKEN_CARET = fails(function () {
2927
- // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
2928
- var re = RE('^r', 'gy');
2929
- re.lastIndex = 2;
2930
- return re.exec('str') != null;
2931
- });
2932
-
2933
-
2934
- /***/ }),
2935
-
2936
- /***/ "./node_modules/core-js/internals/regexp-unsupported-dot-all.js":
2937
- /*!**********************************************************************!*
2938
- !*** ./node_modules/core-js/internals/regexp-unsupported-dot-all.js ***!
2939
- \**********************************************************************/
2940
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2941
-
2942
- var fails = __webpack_require__(/*! ./fails */ "./node_modules/core-js/internals/fails.js");
2943
-
2944
- module.exports = fails(function () {
2945
- // babel-minify transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
2946
- var re = RegExp('.', (typeof '').charAt(0));
2947
- return !(re.dotAll && re.exec('\n') && re.flags === 's');
2948
- });
2949
-
2950
-
2951
- /***/ }),
2952
-
2953
- /***/ "./node_modules/core-js/internals/regexp-unsupported-ncg.js":
2954
- /*!******************************************************************!*
2955
- !*** ./node_modules/core-js/internals/regexp-unsupported-ncg.js ***!
2956
- \******************************************************************/
2957
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2958
-
2959
- var fails = __webpack_require__(/*! ./fails */ "./node_modules/core-js/internals/fails.js");
2960
-
2961
- module.exports = fails(function () {
2962
- // babel-minify transpiles RegExp('.', 'g') -> /./g and it causes SyntaxError
2963
- var re = RegExp('(?<a>b)', (typeof '').charAt(5));
2964
- return re.exec('b').groups.a !== 'b' ||
2965
- 'b'.replace(re, '$<a>c') !== 'bc';
2966
- });
2967
-
2968
-
2969
- /***/ }),
2970
-
2971
- /***/ "./node_modules/core-js/internals/require-object-coercible.js":
2972
- /*!********************************************************************!*
2973
- !*** ./node_modules/core-js/internals/require-object-coercible.js ***!
2974
- \********************************************************************/
2975
- /***/ ((module) => {
2976
-
2977
- // `RequireObjectCoercible` abstract operation
2978
- // https://tc39.es/ecma262/#sec-requireobjectcoercible
2979
- module.exports = function (it) {
2980
- if (it == undefined) throw TypeError("Can't call method on " + it);
2981
- return it;
2982
- };
2983
-
2984
-
2985
- /***/ }),
2986
-
2987
- /***/ "./node_modules/core-js/internals/set-global.js":
2988
- /*!******************************************************!*
2989
- !*** ./node_modules/core-js/internals/set-global.js ***!
2990
- \******************************************************/
2991
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
2992
-
2993
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
2994
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
2995
-
2996
- module.exports = function (key, value) {
2997
- try {
2998
- createNonEnumerableProperty(global, key, value);
2999
- } catch (error) {
3000
- global[key] = value;
3001
- } return value;
3002
- };
3003
-
3004
-
3005
- /***/ }),
3006
-
3007
- /***/ "./node_modules/core-js/internals/set-to-string-tag.js":
3008
- /*!*************************************************************!*
3009
- !*** ./node_modules/core-js/internals/set-to-string-tag.js ***!
3010
- \*************************************************************/
3011
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3012
-
3013
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;
3014
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
3015
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
3016
-
3017
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3018
-
3019
- module.exports = function (it, TAG, STATIC) {
3020
- if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
3021
- defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
3022
- }
3023
- };
3024
-
3025
-
3026
- /***/ }),
3027
-
3028
- /***/ "./node_modules/core-js/internals/shared-key.js":
3029
- /*!******************************************************!*
3030
- !*** ./node_modules/core-js/internals/shared-key.js ***!
3031
- \******************************************************/
3032
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3033
-
3034
- var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");
3035
- var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js");
3036
-
3037
- var keys = shared('keys');
3038
-
3039
- module.exports = function (key) {
3040
- return keys[key] || (keys[key] = uid(key));
3041
- };
3042
-
3043
-
3044
- /***/ }),
3045
-
3046
- /***/ "./node_modules/core-js/internals/shared-store.js":
3047
- /*!********************************************************!*
3048
- !*** ./node_modules/core-js/internals/shared-store.js ***!
3049
- \********************************************************/
3050
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3051
-
3052
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
3053
- var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js");
3054
-
3055
- var SHARED = '__core-js_shared__';
3056
- var store = global[SHARED] || setGlobal(SHARED, {});
3057
-
3058
- module.exports = store;
3059
-
3060
-
3061
- /***/ }),
3062
-
3063
- /***/ "./node_modules/core-js/internals/shared.js":
3064
- /*!**************************************************!*
3065
- !*** ./node_modules/core-js/internals/shared.js ***!
3066
- \**************************************************/
3067
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3068
-
3069
- var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");
3070
- var store = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/core-js/internals/shared-store.js");
3071
-
3072
- (module.exports = function (key, value) {
3073
- return store[key] || (store[key] = value !== undefined ? value : {});
3074
- })('versions', []).push({
3075
- version: '3.15.2',
3076
- mode: IS_PURE ? 'pure' : 'global',
3077
- copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
3078
- });
3079
-
3080
-
3081
- /***/ }),
3082
-
3083
- /***/ "./node_modules/core-js/internals/species-constructor.js":
3084
- /*!***************************************************************!*
3085
- !*** ./node_modules/core-js/internals/species-constructor.js ***!
3086
- \***************************************************************/
3087
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3088
-
3089
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
3090
- var aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/core-js/internals/a-function.js");
3091
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
3092
-
3093
- var SPECIES = wellKnownSymbol('species');
3094
-
3095
- // `SpeciesConstructor` abstract operation
3096
- // https://tc39.es/ecma262/#sec-speciesconstructor
3097
- module.exports = function (O, defaultConstructor) {
3098
- var C = anObject(O).constructor;
3099
- var S;
3100
- return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);
3101
- };
3102
-
3103
-
3104
- /***/ }),
3105
-
3106
- /***/ "./node_modules/core-js/internals/string-multibyte.js":
3107
- /*!************************************************************!*
3108
- !*** ./node_modules/core-js/internals/string-multibyte.js ***!
3109
- \************************************************************/
3110
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3111
-
3112
- var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");
3113
- var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");
3114
-
3115
- // `String.prototype.{ codePointAt, at }` methods implementation
3116
- var createMethod = function (CONVERT_TO_STRING) {
3117
- return function ($this, pos) {
3118
- var S = String(requireObjectCoercible($this));
3119
- var position = toInteger(pos);
3120
- var size = S.length;
3121
- var first, second;
3122
- if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
3123
- first = S.charCodeAt(position);
3124
- return first < 0xD800 || first > 0xDBFF || position + 1 === size
3125
- || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
3126
- ? CONVERT_TO_STRING ? S.charAt(position) : first
3127
- : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
3128
- };
3129
- };
3130
-
3131
- module.exports = {
3132
- // `String.prototype.codePointAt` method
3133
- // https://tc39.es/ecma262/#sec-string.prototype.codepointat
3134
- codeAt: createMethod(false),
3135
- // `String.prototype.at` method
3136
- // https://github.com/mathiasbynens/String.prototype.at
3137
- charAt: createMethod(true)
3138
- };
3139
-
3140
-
3141
- /***/ }),
3142
-
3143
- /***/ "./node_modules/core-js/internals/string-trim.js":
3144
- /*!*******************************************************!*
3145
- !*** ./node_modules/core-js/internals/string-trim.js ***!
3146
- \*******************************************************/
3147
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3148
-
3149
- var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");
3150
- var whitespaces = __webpack_require__(/*! ../internals/whitespaces */ "./node_modules/core-js/internals/whitespaces.js");
3151
-
3152
- var whitespace = '[' + whitespaces + ']';
3153
- var ltrim = RegExp('^' + whitespace + whitespace + '*');
3154
- var rtrim = RegExp(whitespace + whitespace + '*$');
3155
-
3156
- // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
3157
- var createMethod = function (TYPE) {
3158
- return function ($this) {
3159
- var string = String(requireObjectCoercible($this));
3160
- if (TYPE & 1) string = string.replace(ltrim, '');
3161
- if (TYPE & 2) string = string.replace(rtrim, '');
3162
- return string;
3163
- };
3164
- };
3165
-
3166
- module.exports = {
3167
- // `String.prototype.{ trimLeft, trimStart }` methods
3168
- // https://tc39.es/ecma262/#sec-string.prototype.trimstart
3169
- start: createMethod(1),
3170
- // `String.prototype.{ trimRight, trimEnd }` methods
3171
- // https://tc39.es/ecma262/#sec-string.prototype.trimend
3172
- end: createMethod(2),
3173
- // `String.prototype.trim` method
3174
- // https://tc39.es/ecma262/#sec-string.prototype.trim
3175
- trim: createMethod(3)
3176
- };
3177
-
3178
-
3179
- /***/ }),
3180
-
3181
- /***/ "./node_modules/core-js/internals/to-absolute-index.js":
3182
- /*!*************************************************************!*
3183
- !*** ./node_modules/core-js/internals/to-absolute-index.js ***!
3184
- \*************************************************************/
3185
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3186
-
3187
- var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");
3188
-
3189
- var max = Math.max;
3190
- var min = Math.min;
3191
-
3192
- // Helper for a popular repeating case of the spec:
3193
- // Let integer be ? ToInteger(index).
3194
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
3195
- module.exports = function (index, length) {
3196
- var integer = toInteger(index);
3197
- return integer < 0 ? max(integer + length, 0) : min(integer, length);
3198
- };
3199
-
3200
-
3201
- /***/ }),
3202
-
3203
- /***/ "./node_modules/core-js/internals/to-indexed-object.js":
3204
- /*!*************************************************************!*
3205
- !*** ./node_modules/core-js/internals/to-indexed-object.js ***!
3206
- \*************************************************************/
3207
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3208
-
3209
- // toObject with fallback for non-array-like ES3 strings
3210
- var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js");
3211
- var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");
3212
-
3213
- module.exports = function (it) {
3214
- return IndexedObject(requireObjectCoercible(it));
3215
- };
3216
-
3217
-
3218
- /***/ }),
3219
-
3220
- /***/ "./node_modules/core-js/internals/to-integer.js":
3221
- /*!******************************************************!*
3222
- !*** ./node_modules/core-js/internals/to-integer.js ***!
3223
- \******************************************************/
3224
- /***/ ((module) => {
3225
-
3226
- var ceil = Math.ceil;
3227
- var floor = Math.floor;
3228
-
3229
- // `ToInteger` abstract operation
3230
- // https://tc39.es/ecma262/#sec-tointeger
3231
- module.exports = function (argument) {
3232
- return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
3233
- };
3234
-
3235
-
3236
- /***/ }),
3237
-
3238
- /***/ "./node_modules/core-js/internals/to-length.js":
3239
- /*!*****************************************************!*
3240
- !*** ./node_modules/core-js/internals/to-length.js ***!
3241
- \*****************************************************/
3242
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3243
-
3244
- var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");
3245
-
3246
- var min = Math.min;
3247
-
3248
- // `ToLength` abstract operation
3249
- // https://tc39.es/ecma262/#sec-tolength
3250
- module.exports = function (argument) {
3251
- return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
3252
- };
3253
-
3254
-
3255
- /***/ }),
3256
-
3257
- /***/ "./node_modules/core-js/internals/to-object.js":
3258
- /*!*****************************************************!*
3259
- !*** ./node_modules/core-js/internals/to-object.js ***!
3260
- \*****************************************************/
3261
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3262
-
3263
- var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");
3264
-
3265
- // `ToObject` abstract operation
3266
- // https://tc39.es/ecma262/#sec-toobject
3267
- module.exports = function (argument) {
3268
- return Object(requireObjectCoercible(argument));
3269
- };
3270
-
3271
-
3272
- /***/ }),
3273
-
3274
- /***/ "./node_modules/core-js/internals/to-primitive.js":
3275
- /*!********************************************************!*
3276
- !*** ./node_modules/core-js/internals/to-primitive.js ***!
3277
- \********************************************************/
3278
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3279
-
3280
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
3281
-
3282
- // `ToPrimitive` abstract operation
3283
- // https://tc39.es/ecma262/#sec-toprimitive
3284
- // instead of the ES6 spec version, we didn't implement @@toPrimitive case
3285
- // and the second argument - flag - preferred type is a string
3286
- module.exports = function (input, PREFERRED_STRING) {
3287
- if (!isObject(input)) return input;
3288
- var fn, val;
3289
- if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
3290
- if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
3291
- if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
3292
- throw TypeError("Can't convert object to primitive value");
3293
- };
3294
-
3295
-
3296
- /***/ }),
3297
-
3298
- /***/ "./node_modules/core-js/internals/to-string-tag-support.js":
3299
- /*!*****************************************************************!*
3300
- !*** ./node_modules/core-js/internals/to-string-tag-support.js ***!
3301
- \*****************************************************************/
3302
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3303
-
3304
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
3305
-
3306
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3307
- var test = {};
3308
-
3309
- test[TO_STRING_TAG] = 'z';
3310
-
3311
- module.exports = String(test) === '[object z]';
3312
-
3313
-
3314
- /***/ }),
3315
-
3316
- /***/ "./node_modules/core-js/internals/uid.js":
3317
- /*!***********************************************!*
3318
- !*** ./node_modules/core-js/internals/uid.js ***!
3319
- \***********************************************/
3320
- /***/ ((module) => {
3321
-
3322
- var id = 0;
3323
- var postfix = Math.random();
3324
-
3325
- module.exports = function (key) {
3326
- return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
3327
- };
3328
-
3329
-
3330
- /***/ }),
3331
-
3332
- /***/ "./node_modules/core-js/internals/use-symbol-as-uid.js":
3333
- /*!*************************************************************!*
3334
- !*** ./node_modules/core-js/internals/use-symbol-as-uid.js ***!
3335
- \*************************************************************/
3336
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3337
-
3338
- /* eslint-disable es/no-symbol -- required for testing */
3339
- var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/core-js/internals/native-symbol.js");
3340
-
3341
- module.exports = NATIVE_SYMBOL
3342
- && !Symbol.sham
3343
- && typeof Symbol.iterator == 'symbol';
3344
-
3345
-
3346
- /***/ }),
3347
-
3348
- /***/ "./node_modules/core-js/internals/well-known-symbol-wrapped.js":
3349
- /*!*********************************************************************!*
3350
- !*** ./node_modules/core-js/internals/well-known-symbol-wrapped.js ***!
3351
- \*********************************************************************/
3352
- /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
3353
-
3354
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
3355
-
3356
- exports.f = wellKnownSymbol;
3357
-
3358
-
3359
- /***/ }),
3360
-
3361
- /***/ "./node_modules/core-js/internals/well-known-symbol.js":
3362
- /*!*************************************************************!*
3363
- !*** ./node_modules/core-js/internals/well-known-symbol.js ***!
3364
- \*************************************************************/
3365
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3366
-
3367
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
3368
- var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");
3369
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
3370
- var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js");
3371
- var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/core-js/internals/native-symbol.js");
3372
- var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "./node_modules/core-js/internals/use-symbol-as-uid.js");
3373
-
3374
- var WellKnownSymbolsStore = shared('wks');
3375
- var Symbol = global.Symbol;
3376
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
3377
-
3378
- module.exports = function (name) {
3379
- if (!has(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
3380
- if (NATIVE_SYMBOL && has(Symbol, name)) {
3381
- WellKnownSymbolsStore[name] = Symbol[name];
3382
- } else {
3383
- WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
3384
- }
3385
- } return WellKnownSymbolsStore[name];
3386
- };
3387
-
3388
-
3389
- /***/ }),
3390
-
3391
- /***/ "./node_modules/core-js/internals/whitespaces.js":
3392
- /*!*******************************************************!*
3393
- !*** ./node_modules/core-js/internals/whitespaces.js ***!
3394
- \*******************************************************/
3395
- /***/ ((module) => {
3396
-
3397
- // a string of all valid unicode whitespaces
3398
- module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
3399
- '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
3400
-
3401
-
3402
- /***/ }),
3403
-
3404
- /***/ "./node_modules/core-js/modules/es.array.for-each.js":
3405
- /*!***********************************************************!*
3406
- !*** ./node_modules/core-js/modules/es.array.for-each.js ***!
3407
- \***********************************************************/
3408
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3409
-
3410
- "use strict";
3411
-
3412
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3413
- var forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/core-js/internals/array-for-each.js");
3414
-
3415
- // `Array.prototype.forEach` method
3416
- // https://tc39.es/ecma262/#sec-array.prototype.foreach
3417
- // eslint-disable-next-line es/no-array-prototype-foreach -- safe
3418
- $({ target: 'Array', proto: true, forced: [].forEach != forEach }, {
3419
- forEach: forEach
3420
- });
3421
-
3422
-
3423
- /***/ }),
3424
-
3425
- /***/ "./node_modules/core-js/modules/es.array.from.js":
3426
- /*!*******************************************************!*
3427
- !*** ./node_modules/core-js/modules/es.array.from.js ***!
3428
- \*******************************************************/
3429
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3430
-
3431
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3432
- var from = __webpack_require__(/*! ../internals/array-from */ "./node_modules/core-js/internals/array-from.js");
3433
- var checkCorrectnessOfIteration = __webpack_require__(/*! ../internals/check-correctness-of-iteration */ "./node_modules/core-js/internals/check-correctness-of-iteration.js");
3434
-
3435
- var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
3436
- // eslint-disable-next-line es/no-array-from -- required for testing
3437
- Array.from(iterable);
3438
- });
3439
-
3440
- // `Array.from` method
3441
- // https://tc39.es/ecma262/#sec-array.from
3442
- $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
3443
- from: from
3444
- });
3445
-
3446
-
3447
- /***/ }),
3448
-
3449
- /***/ "./node_modules/core-js/modules/es.array.includes.js":
3450
- /*!***********************************************************!*
3451
- !*** ./node_modules/core-js/modules/es.array.includes.js ***!
3452
- \***********************************************************/
3453
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3454
-
3455
- "use strict";
3456
-
3457
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3458
- var $includes = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/core-js/internals/array-includes.js").includes;
3459
- var addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ "./node_modules/core-js/internals/add-to-unscopables.js");
3460
-
3461
- // `Array.prototype.includes` method
3462
- // https://tc39.es/ecma262/#sec-array.prototype.includes
3463
- $({ target: 'Array', proto: true }, {
3464
- includes: function includes(el /* , fromIndex = 0 */) {
3465
- return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
3466
- }
3467
- });
3468
-
3469
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
3470
- addToUnscopables('includes');
3471
-
3472
-
3473
- /***/ }),
3474
-
3475
- /***/ "./node_modules/core-js/modules/es.array.is-array.js":
3476
- /*!***********************************************************!*
3477
- !*** ./node_modules/core-js/modules/es.array.is-array.js ***!
3478
- \***********************************************************/
3479
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3480
-
3481
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3482
- var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");
3483
-
3484
- // `Array.isArray` method
3485
- // https://tc39.es/ecma262/#sec-array.isarray
3486
- $({ target: 'Array', stat: true }, {
3487
- isArray: isArray
3488
- });
3489
-
3490
-
3491
- /***/ }),
3492
-
3493
- /***/ "./node_modules/core-js/modules/es.array.iterator.js":
3494
- /*!***********************************************************!*
3495
- !*** ./node_modules/core-js/modules/es.array.iterator.js ***!
3496
- \***********************************************************/
3497
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3498
-
3499
- "use strict";
3500
-
3501
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
3502
- var addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ "./node_modules/core-js/internals/add-to-unscopables.js");
3503
- var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");
3504
- var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js");
3505
- var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/core-js/internals/define-iterator.js");
3506
-
3507
- var ARRAY_ITERATOR = 'Array Iterator';
3508
- var setInternalState = InternalStateModule.set;
3509
- var getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);
3510
-
3511
- // `Array.prototype.entries` method
3512
- // https://tc39.es/ecma262/#sec-array.prototype.entries
3513
- // `Array.prototype.keys` method
3514
- // https://tc39.es/ecma262/#sec-array.prototype.keys
3515
- // `Array.prototype.values` method
3516
- // https://tc39.es/ecma262/#sec-array.prototype.values
3517
- // `Array.prototype[@@iterator]` method
3518
- // https://tc39.es/ecma262/#sec-array.prototype-@@iterator
3519
- // `CreateArrayIterator` internal method
3520
- // https://tc39.es/ecma262/#sec-createarrayiterator
3521
- module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
3522
- setInternalState(this, {
3523
- type: ARRAY_ITERATOR,
3524
- target: toIndexedObject(iterated), // target
3525
- index: 0, // next index
3526
- kind: kind // kind
3527
- });
3528
- // `%ArrayIteratorPrototype%.next` method
3529
- // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
3530
- }, function () {
3531
- var state = getInternalState(this);
3532
- var target = state.target;
3533
- var kind = state.kind;
3534
- var index = state.index++;
3535
- if (!target || index >= target.length) {
3536
- state.target = undefined;
3537
- return { value: undefined, done: true };
3538
- }
3539
- if (kind == 'keys') return { value: index, done: false };
3540
- if (kind == 'values') return { value: target[index], done: false };
3541
- return { value: [index, target[index]], done: false };
3542
- }, 'values');
3543
-
3544
- // argumentsList[@@iterator] is %ArrayProto_values%
3545
- // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
3546
- // https://tc39.es/ecma262/#sec-createmappedargumentsobject
3547
- Iterators.Arguments = Iterators.Array;
3548
-
3549
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
3550
- addToUnscopables('keys');
3551
- addToUnscopables('values');
3552
- addToUnscopables('entries');
3553
-
3554
-
3555
- /***/ }),
3556
-
3557
- /***/ "./node_modules/core-js/modules/es.array.join.js":
3558
- /*!*******************************************************!*
3559
- !*** ./node_modules/core-js/modules/es.array.join.js ***!
3560
- \*******************************************************/
3561
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3562
-
3563
- "use strict";
3564
-
3565
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3566
- var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js");
3567
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
3568
- var arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ "./node_modules/core-js/internals/array-method-is-strict.js");
3569
-
3570
- var nativeJoin = [].join;
3571
-
3572
- var ES3_STRINGS = IndexedObject != Object;
3573
- var STRICT_METHOD = arrayMethodIsStrict('join', ',');
3574
-
3575
- // `Array.prototype.join` method
3576
- // https://tc39.es/ecma262/#sec-array.prototype.join
3577
- $({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD }, {
3578
- join: function join(separator) {
3579
- return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);
3580
- }
3581
- });
3582
-
3583
-
3584
- /***/ }),
3585
-
3586
- /***/ "./node_modules/core-js/modules/es.array.map.js":
3587
- /*!******************************************************!*
3588
- !*** ./node_modules/core-js/modules/es.array.map.js ***!
3589
- \******************************************************/
3590
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3591
-
3592
- "use strict";
3593
-
3594
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3595
- var $map = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").map;
3596
- var arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");
3597
-
3598
- var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map');
3599
-
3600
- // `Array.prototype.map` method
3601
- // https://tc39.es/ecma262/#sec-array.prototype.map
3602
- // with adding support of @@species
3603
- $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
3604
- map: function map(callbackfn /* , thisArg */) {
3605
- return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
3606
- }
3607
- });
3608
-
3609
-
3610
- /***/ }),
3611
-
3612
- /***/ "./node_modules/core-js/modules/es.array.slice.js":
3613
- /*!********************************************************!*
3614
- !*** ./node_modules/core-js/modules/es.array.slice.js ***!
3615
- \********************************************************/
3616
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3617
-
3618
- "use strict";
3619
-
3620
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3621
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
3622
- var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");
3623
- var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/core-js/internals/to-absolute-index.js");
3624
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
3625
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
3626
- var createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js");
3627
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
3628
- var arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");
3629
-
3630
- var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
3631
-
3632
- var SPECIES = wellKnownSymbol('species');
3633
- var nativeSlice = [].slice;
3634
- var max = Math.max;
3635
-
3636
- // `Array.prototype.slice` method
3637
- // https://tc39.es/ecma262/#sec-array.prototype.slice
3638
- // fallback for not array-like ES3 strings and DOM objects
3639
- $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
3640
- slice: function slice(start, end) {
3641
- var O = toIndexedObject(this);
3642
- var length = toLength(O.length);
3643
- var k = toAbsoluteIndex(start, length);
3644
- var fin = toAbsoluteIndex(end === undefined ? length : end, length);
3645
- // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
3646
- var Constructor, result, n;
3647
- if (isArray(O)) {
3648
- Constructor = O.constructor;
3649
- // cross-realm fallback
3650
- if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {
3651
- Constructor = undefined;
3652
- } else if (isObject(Constructor)) {
3653
- Constructor = Constructor[SPECIES];
3654
- if (Constructor === null) Constructor = undefined;
3655
- }
3656
- if (Constructor === Array || Constructor === undefined) {
3657
- return nativeSlice.call(O, k, fin);
3658
- }
3659
- }
3660
- result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));
3661
- for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);
3662
- result.length = n;
3663
- return result;
3664
- }
3665
- });
3666
-
3667
-
3668
- /***/ }),
3669
-
3670
- /***/ "./node_modules/core-js/modules/es.date.to-string.js":
3671
- /*!***********************************************************!*
3672
- !*** ./node_modules/core-js/modules/es.date.to-string.js ***!
3673
- \***********************************************************/
3674
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3675
-
3676
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
3677
-
3678
- var DatePrototype = Date.prototype;
3679
- var INVALID_DATE = 'Invalid Date';
3680
- var TO_STRING = 'toString';
3681
- var nativeDateToString = DatePrototype[TO_STRING];
3682
- var getTime = DatePrototype.getTime;
3683
-
3684
- // `Date.prototype.toString` method
3685
- // https://tc39.es/ecma262/#sec-date.prototype.tostring
3686
- if (new Date(NaN) + '' != INVALID_DATE) {
3687
- redefine(DatePrototype, TO_STRING, function toString() {
3688
- var value = getTime.call(this);
3689
- // eslint-disable-next-line no-self-compare -- NaN check
3690
- return value === value ? nativeDateToString.call(this) : INVALID_DATE;
3691
- });
3692
- }
3693
-
3694
-
3695
- /***/ }),
3696
-
3697
- /***/ "./node_modules/core-js/modules/es.function.name.js":
3698
- /*!**********************************************************!*
3699
- !*** ./node_modules/core-js/modules/es.function.name.js ***!
3700
- \**********************************************************/
3701
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3702
-
3703
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
3704
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;
3705
-
3706
- var FunctionPrototype = Function.prototype;
3707
- var FunctionPrototypeToString = FunctionPrototype.toString;
3708
- var nameRE = /^\s*function ([^ (]*)/;
3709
- var NAME = 'name';
3710
-
3711
- // Function instances `.name` property
3712
- // https://tc39.es/ecma262/#sec-function-instances-name
3713
- if (DESCRIPTORS && !(NAME in FunctionPrototype)) {
3714
- defineProperty(FunctionPrototype, NAME, {
3715
- configurable: true,
3716
- get: function () {
3717
- try {
3718
- return FunctionPrototypeToString.call(this).match(nameRE)[1];
3719
- } catch (error) {
3720
- return '';
3721
- }
3722
- }
3723
- });
3724
- }
3725
-
3726
-
3727
- /***/ }),
3728
-
3729
- /***/ "./node_modules/core-js/modules/es.number.constructor.js":
3730
- /*!***************************************************************!*
3731
- !*** ./node_modules/core-js/modules/es.number.constructor.js ***!
3732
- \***************************************************************/
3733
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3734
-
3735
- "use strict";
3736
-
3737
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
3738
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
3739
- var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/core-js/internals/is-forced.js");
3740
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
3741
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
3742
- var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");
3743
- var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "./node_modules/core-js/internals/inherit-if-required.js");
3744
- var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");
3745
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
3746
- var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");
3747
- var getOwnPropertyNames = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js").f;
3748
- var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
3749
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;
3750
- var trim = __webpack_require__(/*! ../internals/string-trim */ "./node_modules/core-js/internals/string-trim.js").trim;
3751
-
3752
- var NUMBER = 'Number';
3753
- var NativeNumber = global[NUMBER];
3754
- var NumberPrototype = NativeNumber.prototype;
3755
-
3756
- // Opera ~12 has broken Object#toString
3757
- var BROKEN_CLASSOF = classof(create(NumberPrototype)) == NUMBER;
3758
-
3759
- // `ToNumber` abstract operation
3760
- // https://tc39.es/ecma262/#sec-tonumber
3761
- var toNumber = function (argument) {
3762
- var it = toPrimitive(argument, false);
3763
- var first, third, radix, maxCode, digits, length, index, code;
3764
- if (typeof it == 'string' && it.length > 2) {
3765
- it = trim(it);
3766
- first = it.charCodeAt(0);
3767
- if (first === 43 || first === 45) {
3768
- third = it.charCodeAt(2);
3769
- if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
3770
- } else if (first === 48) {
3771
- switch (it.charCodeAt(1)) {
3772
- case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i
3773
- case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i
3774
- default: return +it;
3775
- }
3776
- digits = it.slice(2);
3777
- length = digits.length;
3778
- for (index = 0; index < length; index++) {
3779
- code = digits.charCodeAt(index);
3780
- // parseInt parses a string to a first unavailable symbol
3781
- // but ToNumber should return NaN if a string contains unavailable symbols
3782
- if (code < 48 || code > maxCode) return NaN;
3783
- } return parseInt(digits, radix);
3784
- }
3785
- } return +it;
3786
- };
3787
-
3788
- // `Number` constructor
3789
- // https://tc39.es/ecma262/#sec-number-constructor
3790
- if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
3791
- var NumberWrapper = function Number(value) {
3792
- var it = arguments.length < 1 ? 0 : value;
3793
- var dummy = this;
3794
- return dummy instanceof NumberWrapper
3795
- // check on 1..constructor(foo) case
3796
- && (BROKEN_CLASSOF ? fails(function () { NumberPrototype.valueOf.call(dummy); }) : classof(dummy) != NUMBER)
3797
- ? inheritIfRequired(new NativeNumber(toNumber(it)), dummy, NumberWrapper) : toNumber(it);
3798
- };
3799
- for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : (
3800
- // ES3:
3801
- 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
3802
- // ES2015 (in case, if modules with ES2015 Number statics required before):
3803
- 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' +
3804
- 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger,' +
3805
- // ESNext
3806
- 'fromString,range'
3807
- ).split(','), j = 0, key; keys.length > j; j++) {
3808
- if (has(NativeNumber, key = keys[j]) && !has(NumberWrapper, key)) {
3809
- defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));
3810
- }
3811
- }
3812
- NumberWrapper.prototype = NumberPrototype;
3813
- NumberPrototype.constructor = NumberWrapper;
3814
- redefine(global, NUMBER, NumberWrapper);
3815
- }
3816
-
3817
-
3818
- /***/ }),
3819
-
3820
- /***/ "./node_modules/core-js/modules/es.object.define-property.js":
3821
- /*!*******************************************************************!*
3822
- !*** ./node_modules/core-js/modules/es.object.define-property.js ***!
3823
- \*******************************************************************/
3824
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3825
-
3826
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3827
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
3828
- var objectDefinePropertyModile = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
3829
-
3830
- // `Object.defineProperty` method
3831
- // https://tc39.es/ecma262/#sec-object.defineproperty
3832
- $({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, {
3833
- defineProperty: objectDefinePropertyModile.f
3834
- });
3835
-
3836
-
3837
- /***/ }),
3838
-
3839
- /***/ "./node_modules/core-js/modules/es.object.entries.js":
3840
- /*!***********************************************************!*
3841
- !*** ./node_modules/core-js/modules/es.object.entries.js ***!
3842
- \***********************************************************/
3843
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3844
-
3845
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3846
- var $entries = __webpack_require__(/*! ../internals/object-to-array */ "./node_modules/core-js/internals/object-to-array.js").entries;
3847
-
3848
- // `Object.entries` method
3849
- // https://tc39.es/ecma262/#sec-object.entries
3850
- $({ target: 'Object', stat: true }, {
3851
- entries: function entries(O) {
3852
- return $entries(O);
3853
- }
3854
- });
3855
-
3856
-
3857
- /***/ }),
3858
-
3859
- /***/ "./node_modules/core-js/modules/es.object.from-entries.js":
3860
- /*!****************************************************************!*
3861
- !*** ./node_modules/core-js/modules/es.object.from-entries.js ***!
3862
- \****************************************************************/
3863
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3864
-
3865
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3866
- var iterate = __webpack_require__(/*! ../internals/iterate */ "./node_modules/core-js/internals/iterate.js");
3867
- var createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js");
3868
-
3869
- // `Object.fromEntries` method
3870
- // https://github.com/tc39/proposal-object-from-entries
3871
- $({ target: 'Object', stat: true }, {
3872
- fromEntries: function fromEntries(iterable) {
3873
- var obj = {};
3874
- iterate(iterable, function (k, v) {
3875
- createProperty(obj, k, v);
3876
- }, { AS_ENTRIES: true });
3877
- return obj;
3878
- }
3879
- });
3880
-
3881
-
3882
- /***/ }),
3883
-
3884
- /***/ "./node_modules/core-js/modules/es.object.to-string.js":
3885
- /*!*************************************************************!*
3886
- !*** ./node_modules/core-js/modules/es.object.to-string.js ***!
3887
- \*************************************************************/
3888
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3889
-
3890
- var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/core-js/internals/to-string-tag-support.js");
3891
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
3892
- var toString = __webpack_require__(/*! ../internals/object-to-string */ "./node_modules/core-js/internals/object-to-string.js");
3893
-
3894
- // `Object.prototype.toString` method
3895
- // https://tc39.es/ecma262/#sec-object.prototype.tostring
3896
- if (!TO_STRING_TAG_SUPPORT) {
3897
- redefine(Object.prototype, 'toString', toString, { unsafe: true });
3898
- }
3899
-
3900
-
3901
- /***/ }),
3902
-
3903
- /***/ "./node_modules/core-js/modules/es.parse-float.js":
3904
- /*!********************************************************!*
3905
- !*** ./node_modules/core-js/modules/es.parse-float.js ***!
3906
- \********************************************************/
3907
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3908
-
3909
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3910
- var parseFloatImplementation = __webpack_require__(/*! ../internals/number-parse-float */ "./node_modules/core-js/internals/number-parse-float.js");
3911
-
3912
- // `parseFloat` method
3913
- // https://tc39.es/ecma262/#sec-parsefloat-string
3914
- $({ global: true, forced: parseFloat != parseFloatImplementation }, {
3915
- parseFloat: parseFloatImplementation
3916
- });
3917
-
3918
-
3919
- /***/ }),
3920
-
3921
- /***/ "./node_modules/core-js/modules/es.regexp.exec.js":
3922
- /*!********************************************************!*
3923
- !*** ./node_modules/core-js/modules/es.regexp.exec.js ***!
3924
- \********************************************************/
3925
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3926
-
3927
- "use strict";
3928
-
3929
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3930
- var exec = __webpack_require__(/*! ../internals/regexp-exec */ "./node_modules/core-js/internals/regexp-exec.js");
3931
-
3932
- // `RegExp.prototype.exec` method
3933
- // https://tc39.es/ecma262/#sec-regexp.prototype.exec
3934
- $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
3935
- exec: exec
3936
- });
3937
-
3938
-
3939
- /***/ }),
3940
-
3941
- /***/ "./node_modules/core-js/modules/es.regexp.to-string.js":
3942
- /*!*************************************************************!*
3943
- !*** ./node_modules/core-js/modules/es.regexp.to-string.js ***!
3944
- \*************************************************************/
3945
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3946
-
3947
- "use strict";
3948
-
3949
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
3950
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
3951
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
3952
- var flags = __webpack_require__(/*! ../internals/regexp-flags */ "./node_modules/core-js/internals/regexp-flags.js");
3953
-
3954
- var TO_STRING = 'toString';
3955
- var RegExpPrototype = RegExp.prototype;
3956
- var nativeToString = RegExpPrototype[TO_STRING];
3957
-
3958
- var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });
3959
- // FF44- RegExp#toString has a wrong name
3960
- var INCORRECT_NAME = nativeToString.name != TO_STRING;
3961
-
3962
- // `RegExp.prototype.toString` method
3963
- // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
3964
- if (NOT_GENERIC || INCORRECT_NAME) {
3965
- redefine(RegExp.prototype, TO_STRING, function toString() {
3966
- var R = anObject(this);
3967
- var p = String(R.source);
3968
- var rf = R.flags;
3969
- var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);
3970
- return '/' + p + '/' + f;
3971
- }, { unsafe: true });
3972
- }
3973
-
3974
-
3975
- /***/ }),
3976
-
3977
- /***/ "./node_modules/core-js/modules/es.string.ends-with.js":
3978
- /*!*************************************************************!*
3979
- !*** ./node_modules/core-js/modules/es.string.ends-with.js ***!
3980
- \*************************************************************/
3981
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
3982
-
3983
- "use strict";
3984
-
3985
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
3986
- var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
3987
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
3988
- var notARegExp = __webpack_require__(/*! ../internals/not-a-regexp */ "./node_modules/core-js/internals/not-a-regexp.js");
3989
- var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");
3990
- var correctIsRegExpLogic = __webpack_require__(/*! ../internals/correct-is-regexp-logic */ "./node_modules/core-js/internals/correct-is-regexp-logic.js");
3991
- var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");
3992
-
3993
- // eslint-disable-next-line es/no-string-prototype-endswith -- safe
3994
- var $endsWith = ''.endsWith;
3995
- var min = Math.min;
3996
-
3997
- var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('endsWith');
3998
- // https://github.com/zloirock/core-js/pull/702
3999
- var MDN_POLYFILL_BUG = !IS_PURE && !CORRECT_IS_REGEXP_LOGIC && !!function () {
4000
- var descriptor = getOwnPropertyDescriptor(String.prototype, 'endsWith');
4001
- return descriptor && !descriptor.writable;
4002
- }();
4003
-
4004
- // `String.prototype.endsWith` method
4005
- // https://tc39.es/ecma262/#sec-string.prototype.endswith
4006
- $({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
4007
- endsWith: function endsWith(searchString /* , endPosition = @length */) {
4008
- var that = String(requireObjectCoercible(this));
4009
- notARegExp(searchString);
4010
- var endPosition = arguments.length > 1 ? arguments[1] : undefined;
4011
- var len = toLength(that.length);
4012
- var end = endPosition === undefined ? len : min(toLength(endPosition), len);
4013
- var search = String(searchString);
4014
- return $endsWith
4015
- ? $endsWith.call(that, search, end)
4016
- : that.slice(end - search.length, end) === search;
4017
- }
4018
- });
4019
-
4020
-
4021
- /***/ }),
4022
-
4023
- /***/ "./node_modules/core-js/modules/es.string.iterator.js":
4024
- /*!************************************************************!*
4025
- !*** ./node_modules/core-js/modules/es.string.iterator.js ***!
4026
- \************************************************************/
4027
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4028
-
4029
- "use strict";
4030
-
4031
- var charAt = __webpack_require__(/*! ../internals/string-multibyte */ "./node_modules/core-js/internals/string-multibyte.js").charAt;
4032
- var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js");
4033
- var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/core-js/internals/define-iterator.js");
4034
-
4035
- var STRING_ITERATOR = 'String Iterator';
4036
- var setInternalState = InternalStateModule.set;
4037
- var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);
4038
-
4039
- // `String.prototype[@@iterator]` method
4040
- // https://tc39.es/ecma262/#sec-string.prototype-@@iterator
4041
- defineIterator(String, 'String', function (iterated) {
4042
- setInternalState(this, {
4043
- type: STRING_ITERATOR,
4044
- string: String(iterated),
4045
- index: 0
4046
- });
4047
- // `%StringIteratorPrototype%.next` method
4048
- // https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
4049
- }, function next() {
4050
- var state = getInternalState(this);
4051
- var string = state.string;
4052
- var index = state.index;
4053
- var point;
4054
- if (index >= string.length) return { value: undefined, done: true };
4055
- point = charAt(string, index);
4056
- state.index += point.length;
4057
- return { value: point, done: false };
4058
- });
4059
-
4060
-
4061
- /***/ }),
4062
-
4063
- /***/ "./node_modules/core-js/modules/es.string.split.js":
4064
- /*!*********************************************************!*
4065
- !*** ./node_modules/core-js/modules/es.string.split.js ***!
4066
- \*********************************************************/
4067
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4068
-
4069
- "use strict";
4070
-
4071
- var fixRegExpWellKnownSymbolLogic = __webpack_require__(/*! ../internals/fix-regexp-well-known-symbol-logic */ "./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js");
4072
- var isRegExp = __webpack_require__(/*! ../internals/is-regexp */ "./node_modules/core-js/internals/is-regexp.js");
4073
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
4074
- var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");
4075
- var speciesConstructor = __webpack_require__(/*! ../internals/species-constructor */ "./node_modules/core-js/internals/species-constructor.js");
4076
- var advanceStringIndex = __webpack_require__(/*! ../internals/advance-string-index */ "./node_modules/core-js/internals/advance-string-index.js");
4077
- var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");
4078
- var callRegExpExec = __webpack_require__(/*! ../internals/regexp-exec-abstract */ "./node_modules/core-js/internals/regexp-exec-abstract.js");
4079
- var regexpExec = __webpack_require__(/*! ../internals/regexp-exec */ "./node_modules/core-js/internals/regexp-exec.js");
4080
- var stickyHelpers = __webpack_require__(/*! ../internals/regexp-sticky-helpers */ "./node_modules/core-js/internals/regexp-sticky-helpers.js");
4081
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
4082
-
4083
- var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
4084
- var arrayPush = [].push;
4085
- var min = Math.min;
4086
- var MAX_UINT32 = 0xFFFFFFFF;
4087
-
4088
- // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
4089
- // Weex JS has frozen built-in prototypes, so use try / catch wrapper
4090
- var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {
4091
- // eslint-disable-next-line regexp/no-empty-group -- required for testing
4092
- var re = /(?:)/;
4093
- var originalExec = re.exec;
4094
- re.exec = function () { return originalExec.apply(this, arguments); };
4095
- var result = 'ab'.split(re);
4096
- return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
4097
- });
4098
-
4099
- // @@split logic
4100
- fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) {
4101
- var internalSplit;
4102
- if (
4103
- 'abbc'.split(/(b)*/)[1] == 'c' ||
4104
- // eslint-disable-next-line regexp/no-empty-group -- required for testing
4105
- 'test'.split(/(?:)/, -1).length != 4 ||
4106
- 'ab'.split(/(?:ab)*/).length != 2 ||
4107
- '.'.split(/(.?)(.?)/).length != 4 ||
4108
- // eslint-disable-next-line regexp/no-assertion-capturing-group, regexp/no-empty-group -- required for testing
4109
- '.'.split(/()()/).length > 1 ||
4110
- ''.split(/.?/).length
4111
- ) {
4112
- // based on es5-shim implementation, need to rework it
4113
- internalSplit = function (separator, limit) {
4114
- var string = String(requireObjectCoercible(this));
4115
- var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
4116
- if (lim === 0) return [];
4117
- if (separator === undefined) return [string];
4118
- // If `separator` is not a regex, use native split
4119
- if (!isRegExp(separator)) {
4120
- return nativeSplit.call(string, separator, lim);
4121
- }
4122
- var output = [];
4123
- var flags = (separator.ignoreCase ? 'i' : '') +
4124
- (separator.multiline ? 'm' : '') +
4125
- (separator.unicode ? 'u' : '') +
4126
- (separator.sticky ? 'y' : '');
4127
- var lastLastIndex = 0;
4128
- // Make `global` and avoid `lastIndex` issues by working with a copy
4129
- var separatorCopy = new RegExp(separator.source, flags + 'g');
4130
- var match, lastIndex, lastLength;
4131
- while (match = regexpExec.call(separatorCopy, string)) {
4132
- lastIndex = separatorCopy.lastIndex;
4133
- if (lastIndex > lastLastIndex) {
4134
- output.push(string.slice(lastLastIndex, match.index));
4135
- if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));
4136
- lastLength = match[0].length;
4137
- lastLastIndex = lastIndex;
4138
- if (output.length >= lim) break;
4139
- }
4140
- if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
4141
- }
4142
- if (lastLastIndex === string.length) {
4143
- if (lastLength || !separatorCopy.test('')) output.push('');
4144
- } else output.push(string.slice(lastLastIndex));
4145
- return output.length > lim ? output.slice(0, lim) : output;
4146
- };
4147
- // Chakra, V8
4148
- } else if ('0'.split(undefined, 0).length) {
4149
- internalSplit = function (separator, limit) {
4150
- return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);
4151
- };
4152
- } else internalSplit = nativeSplit;
4153
-
4154
- return [
4155
- // `String.prototype.split` method
4156
- // https://tc39.es/ecma262/#sec-string.prototype.split
4157
- function split(separator, limit) {
4158
- var O = requireObjectCoercible(this);
4159
- var splitter = separator == undefined ? undefined : separator[SPLIT];
4160
- return splitter !== undefined
4161
- ? splitter.call(separator, O, limit)
4162
- : internalSplit.call(String(O), separator, limit);
4163
- },
4164
- // `RegExp.prototype[@@split]` method
4165
- // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
4166
- //
4167
- // NOTE: This cannot be properly polyfilled in engines that don't support
4168
- // the 'y' flag.
4169
- function (string, limit) {
4170
- var res = maybeCallNative(internalSplit, this, string, limit, internalSplit !== nativeSplit);
4171
- if (res.done) return res.value;
4172
-
4173
- var rx = anObject(this);
4174
- var S = String(string);
4175
- var C = speciesConstructor(rx, RegExp);
4176
-
4177
- var unicodeMatching = rx.unicode;
4178
- var flags = (rx.ignoreCase ? 'i' : '') +
4179
- (rx.multiline ? 'm' : '') +
4180
- (rx.unicode ? 'u' : '') +
4181
- (UNSUPPORTED_Y ? 'g' : 'y');
4182
-
4183
- // ^(? + rx + ) is needed, in combination with some S slicing, to
4184
- // simulate the 'y' flag.
4185
- var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
4186
- var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
4187
- if (lim === 0) return [];
4188
- if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];
4189
- var p = 0;
4190
- var q = 0;
4191
- var A = [];
4192
- while (q < S.length) {
4193
- splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
4194
- var z = callRegExpExec(splitter, UNSUPPORTED_Y ? S.slice(q) : S);
4195
- var e;
4196
- if (
4197
- z === null ||
4198
- (e = min(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
4199
- ) {
4200
- q = advanceStringIndex(S, q, unicodeMatching);
4201
- } else {
4202
- A.push(S.slice(p, q));
4203
- if (A.length === lim) return A;
4204
- for (var i = 1; i <= z.length - 1; i++) {
4205
- A.push(z[i]);
4206
- if (A.length === lim) return A;
4207
- }
4208
- q = p = e;
4209
- }
4210
- }
4211
- A.push(S.slice(p));
4212
- return A;
4213
- }
4214
- ];
4215
- }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
4216
-
4217
-
4218
- /***/ }),
4219
-
4220
- /***/ "./node_modules/core-js/modules/es.symbol.description.js":
4221
- /*!***************************************************************!*
4222
- !*** ./node_modules/core-js/modules/es.symbol.description.js ***!
4223
- \***************************************************************/
4224
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4225
-
4226
- "use strict";
4227
- // `Symbol.prototype.description` getter
4228
- // https://tc39.es/ecma262/#sec-symbol.prototype.description
4229
-
4230
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
4231
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
4232
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
4233
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
4234
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
4235
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;
4236
- var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "./node_modules/core-js/internals/copy-constructor-properties.js");
4237
-
4238
- var NativeSymbol = global.Symbol;
4239
-
4240
- if (DESCRIPTORS && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) ||
4241
- // Safari 12 bug
4242
- NativeSymbol().description !== undefined
4243
- )) {
4244
- var EmptyStringDescriptionStore = {};
4245
- // wrap Symbol constructor for correct work with undefined description
4246
- var SymbolWrapper = function Symbol() {
4247
- var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);
4248
- var result = this instanceof SymbolWrapper
4249
- ? new NativeSymbol(description)
4250
- // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
4251
- : description === undefined ? NativeSymbol() : NativeSymbol(description);
4252
- if (description === '') EmptyStringDescriptionStore[result] = true;
4253
- return result;
4254
- };
4255
- copyConstructorProperties(SymbolWrapper, NativeSymbol);
4256
- var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;
4257
- symbolPrototype.constructor = SymbolWrapper;
4258
-
4259
- var symbolToString = symbolPrototype.toString;
4260
- var native = String(NativeSymbol('test')) == 'Symbol(test)';
4261
- var regexp = /^Symbol\((.*)\)[^)]+$/;
4262
- defineProperty(symbolPrototype, 'description', {
4263
- configurable: true,
4264
- get: function description() {
4265
- var symbol = isObject(this) ? this.valueOf() : this;
4266
- var string = symbolToString.call(symbol);
4267
- if (has(EmptyStringDescriptionStore, symbol)) return '';
4268
- var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');
4269
- return desc === '' ? undefined : desc;
4270
- }
4271
- });
4272
-
4273
- $({ global: true, forced: true }, {
4274
- Symbol: SymbolWrapper
4275
- });
4276
- }
4277
-
4278
-
4279
- /***/ }),
4280
-
4281
- /***/ "./node_modules/core-js/modules/es.symbol.iterator.js":
4282
- /*!************************************************************!*
4283
- !*** ./node_modules/core-js/modules/es.symbol.iterator.js ***!
4284
- \************************************************************/
4285
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4286
-
4287
- var defineWellKnownSymbol = __webpack_require__(/*! ../internals/define-well-known-symbol */ "./node_modules/core-js/internals/define-well-known-symbol.js");
4288
-
4289
- // `Symbol.iterator` well-known symbol
4290
- // https://tc39.es/ecma262/#sec-symbol.iterator
4291
- defineWellKnownSymbol('iterator');
4292
-
4293
-
4294
- /***/ }),
4295
-
4296
- /***/ "./node_modules/core-js/modules/es.symbol.js":
4297
- /*!***************************************************!*
4298
- !*** ./node_modules/core-js/modules/es.symbol.js ***!
4299
- \***************************************************/
4300
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4301
-
4302
- "use strict";
4303
-
4304
- var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");
4305
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
4306
- var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");
4307
- var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");
4308
- var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");
4309
- var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/core-js/internals/native-symbol.js");
4310
- var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "./node_modules/core-js/internals/use-symbol-as-uid.js");
4311
- var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");
4312
- var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");
4313
- var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");
4314
- var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");
4315
- var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");
4316
- var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");
4317
- var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");
4318
- var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");
4319
- var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");
4320
- var nativeObjectCreate = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");
4321
- var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js");
4322
- var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js");
4323
- var getOwnPropertyNamesExternal = __webpack_require__(/*! ../internals/object-get-own-property-names-external */ "./node_modules/core-js/internals/object-get-own-property-names-external.js");
4324
- var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/core-js/internals/object-get-own-property-symbols.js");
4325
- var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js");
4326
- var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");
4327
- var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js");
4328
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
4329
- var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");
4330
- var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");
4331
- var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");
4332
- var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");
4333
- var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js");
4334
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
4335
- var wrappedWellKnownSymbolModule = __webpack_require__(/*! ../internals/well-known-symbol-wrapped */ "./node_modules/core-js/internals/well-known-symbol-wrapped.js");
4336
- var defineWellKnownSymbol = __webpack_require__(/*! ../internals/define-well-known-symbol */ "./node_modules/core-js/internals/define-well-known-symbol.js");
4337
- var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js");
4338
- var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js");
4339
- var $forEach = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").forEach;
4340
-
4341
- var HIDDEN = sharedKey('hidden');
4342
- var SYMBOL = 'Symbol';
4343
- var PROTOTYPE = 'prototype';
4344
- var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
4345
- var setInternalState = InternalStateModule.set;
4346
- var getInternalState = InternalStateModule.getterFor(SYMBOL);
4347
- var ObjectPrototype = Object[PROTOTYPE];
4348
- var $Symbol = global.Symbol;
4349
- var $stringify = getBuiltIn('JSON', 'stringify');
4350
- var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
4351
- var nativeDefineProperty = definePropertyModule.f;
4352
- var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
4353
- var nativePropertyIsEnumerable = propertyIsEnumerableModule.f;
4354
- var AllSymbols = shared('symbols');
4355
- var ObjectPrototypeSymbols = shared('op-symbols');
4356
- var StringToSymbolRegistry = shared('string-to-symbol-registry');
4357
- var SymbolToStringRegistry = shared('symbol-to-string-registry');
4358
- var WellKnownSymbolsStore = shared('wks');
4359
- var QObject = global.QObject;
4360
- // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
4361
- var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
4362
-
4363
- // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687
4364
- var setSymbolDescriptor = DESCRIPTORS && fails(function () {
4365
- return nativeObjectCreate(nativeDefineProperty({}, 'a', {
4366
- get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; }
4367
- })).a != 7;
4368
- }) ? function (O, P, Attributes) {
4369
- var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P);
4370
- if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];
4371
- nativeDefineProperty(O, P, Attributes);
4372
- if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {
4373
- nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor);
4374
- }
4375
- } : nativeDefineProperty;
4376
-
4377
- var wrap = function (tag, description) {
4378
- var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]);
4379
- setInternalState(symbol, {
4380
- type: SYMBOL,
4381
- tag: tag,
4382
- description: description
4383
- });
4384
- if (!DESCRIPTORS) symbol.description = description;
4385
- return symbol;
4386
- };
4387
-
4388
- var isSymbol = USE_SYMBOL_AS_UID ? function (it) {
4389
- return typeof it == 'symbol';
4390
- } : function (it) {
4391
- return Object(it) instanceof $Symbol;
4392
- };
4393
-
4394
- var $defineProperty = function defineProperty(O, P, Attributes) {
4395
- if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
4396
- anObject(O);
4397
- var key = toPrimitive(P, true);
4398
- anObject(Attributes);
4399
- if (has(AllSymbols, key)) {
4400
- if (!Attributes.enumerable) {
4401
- if (!has(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));
4402
- O[HIDDEN][key] = true;
4403
- } else {
4404
- if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
4405
- Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
4406
- } return setSymbolDescriptor(O, key, Attributes);
4407
- } return nativeDefineProperty(O, key, Attributes);
4408
- };
4409
-
4410
- var $defineProperties = function defineProperties(O, Properties) {
4411
- anObject(O);
4412
- var properties = toIndexedObject(Properties);
4413
- var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
4414
- $forEach(keys, function (key) {
4415
- if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);
4416
- });
4417
- return O;
4418
- };
4419
-
4420
- var $create = function create(O, Properties) {
4421
- return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties);
4422
- };
4423
-
4424
- var $propertyIsEnumerable = function propertyIsEnumerable(V) {
4425
- var P = toPrimitive(V, true);
4426
- var enumerable = nativePropertyIsEnumerable.call(this, P);
4427
- if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;
4428
- return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;
4429
- };
4430
-
4431
- var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
4432
- var it = toIndexedObject(O);
4433
- var key = toPrimitive(P, true);
4434
- if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;
4435
- var descriptor = nativeGetOwnPropertyDescriptor(it, key);
4436
- if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {
4437
- descriptor.enumerable = true;
4438
- }
4439
- return descriptor;
4440
- };
4441
-
4442
- var $getOwnPropertyNames = function getOwnPropertyNames(O) {
4443
- var names = nativeGetOwnPropertyNames(toIndexedObject(O));
4444
- var result = [];
4445
- $forEach(names, function (key) {
4446
- if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);
4447
- });
4448
- return result;
4449
- };
4450
-
4451
- var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
4452
- var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;
4453
- var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
4454
- var result = [];
4455
- $forEach(names, function (key) {
4456
- if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {
4457
- result.push(AllSymbols[key]);
4458
- }
4459
- });
4460
- return result;
4461
- };
4462
-
4463
- // `Symbol` constructor
4464
- // https://tc39.es/ecma262/#sec-symbol-constructor
4465
- if (!NATIVE_SYMBOL) {
4466
- $Symbol = function Symbol() {
4467
- if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');
4468
- var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);
4469
- var tag = uid(description);
4470
- var setter = function (value) {
4471
- if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);
4472
- if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
4473
- setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
4474
- };
4475
- if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
4476
- return wrap(tag, description);
4477
- };
4478
-
4479
- redefine($Symbol[PROTOTYPE], 'toString', function toString() {
4480
- return getInternalState(this).tag;
4481
- });
4482
-
4483
- redefine($Symbol, 'withoutSetter', function (description) {
4484
- return wrap(uid(description), description);
4485
- });
4486
-
4487
- propertyIsEnumerableModule.f = $propertyIsEnumerable;
4488
- definePropertyModule.f = $defineProperty;
4489
- getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
4490
- getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
4491
- getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;
4492
-
4493
- wrappedWellKnownSymbolModule.f = function (name) {
4494
- return wrap(wellKnownSymbol(name), name);
4495
- };
4496
-
4497
- if (DESCRIPTORS) {
4498
- // https://github.com/tc39/proposal-Symbol-description
4499
- nativeDefineProperty($Symbol[PROTOTYPE], 'description', {
4500
- configurable: true,
4501
- get: function description() {
4502
- return getInternalState(this).description;
4503
- }
4504
- });
4505
- if (!IS_PURE) {
4506
- redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });
4507
- }
4508
- }
4509
- }
4510
-
4511
- $({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, {
4512
- Symbol: $Symbol
4513
- });
4514
-
4515
- $forEach(objectKeys(WellKnownSymbolsStore), function (name) {
4516
- defineWellKnownSymbol(name);
4517
- });
4518
-
4519
- $({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {
4520
- // `Symbol.for` method
4521
- // https://tc39.es/ecma262/#sec-symbol.for
4522
- 'for': function (key) {
4523
- var string = String(key);
4524
- if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
4525
- var symbol = $Symbol(string);
4526
- StringToSymbolRegistry[string] = symbol;
4527
- SymbolToStringRegistry[symbol] = string;
4528
- return symbol;
4529
- },
4530
- // `Symbol.keyFor` method
4531
- // https://tc39.es/ecma262/#sec-symbol.keyfor
4532
- keyFor: function keyFor(sym) {
4533
- if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
4534
- if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
4535
- },
4536
- useSetter: function () { USE_SETTER = true; },
4537
- useSimple: function () { USE_SETTER = false; }
4538
- });
4539
-
4540
- $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, {
4541
- // `Object.create` method
4542
- // https://tc39.es/ecma262/#sec-object.create
4543
- create: $create,
4544
- // `Object.defineProperty` method
4545
- // https://tc39.es/ecma262/#sec-object.defineproperty
4546
- defineProperty: $defineProperty,
4547
- // `Object.defineProperties` method
4548
- // https://tc39.es/ecma262/#sec-object.defineproperties
4549
- defineProperties: $defineProperties,
4550
- // `Object.getOwnPropertyDescriptor` method
4551
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors
4552
- getOwnPropertyDescriptor: $getOwnPropertyDescriptor
4553
- });
4554
-
4555
- $({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, {
4556
- // `Object.getOwnPropertyNames` method
4557
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
4558
- getOwnPropertyNames: $getOwnPropertyNames,
4559
- // `Object.getOwnPropertySymbols` method
4560
- // https://tc39.es/ecma262/#sec-object.getownpropertysymbols
4561
- getOwnPropertySymbols: $getOwnPropertySymbols
4562
- });
4563
-
4564
- // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
4565
- // https://bugs.chromium.org/p/v8/issues/detail?id=3443
4566
- $({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, {
4567
- getOwnPropertySymbols: function getOwnPropertySymbols(it) {
4568
- return getOwnPropertySymbolsModule.f(toObject(it));
4569
- }
4570
- });
4571
-
4572
- // `JSON.stringify` method behavior with symbols
4573
- // https://tc39.es/ecma262/#sec-json.stringify
4574
- if ($stringify) {
4575
- var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () {
4576
- var symbol = $Symbol();
4577
- // MS Edge converts symbol values to JSON as {}
4578
- return $stringify([symbol]) != '[null]'
4579
- // WebKit converts symbol values to JSON as null
4580
- || $stringify({ a: symbol }) != '{}'
4581
- // V8 throws on boxed symbols
4582
- || $stringify(Object(symbol)) != '{}';
4583
- });
4584
-
4585
- $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
4586
- // eslint-disable-next-line no-unused-vars -- required for `.length`
4587
- stringify: function stringify(it, replacer, space) {
4588
- var args = [it];
4589
- var index = 1;
4590
- var $replacer;
4591
- while (arguments.length > index) args.push(arguments[index++]);
4592
- $replacer = replacer;
4593
- if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
4594
- if (!isArray(replacer)) replacer = function (key, value) {
4595
- if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
4596
- if (!isSymbol(value)) return value;
4597
- };
4598
- args[1] = replacer;
4599
- return $stringify.apply(null, args);
4600
- }
4601
- });
4602
- }
4603
-
4604
- // `Symbol.prototype[@@toPrimitive]` method
4605
- // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
4606
- if (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) {
4607
- createNonEnumerableProperty($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);
4608
- }
4609
- // `Symbol.prototype[@@toStringTag]` property
4610
- // https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag
4611
- setToStringTag($Symbol, SYMBOL);
4612
-
4613
- hiddenKeys[HIDDEN] = true;
4614
-
4615
-
4616
- /***/ }),
4617
-
4618
- /***/ "./node_modules/core-js/modules/web.dom-collections.for-each.js":
4619
- /*!**********************************************************************!*
4620
- !*** ./node_modules/core-js/modules/web.dom-collections.for-each.js ***!
4621
- \**********************************************************************/
4622
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4623
-
4624
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
4625
- var DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/core-js/internals/dom-iterables.js");
4626
- var forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/core-js/internals/array-for-each.js");
4627
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
4628
-
4629
- for (var COLLECTION_NAME in DOMIterables) {
4630
- var Collection = global[COLLECTION_NAME];
4631
- var CollectionPrototype = Collection && Collection.prototype;
4632
- // some Chrome versions have non-configurable methods on DOMTokenList
4633
- if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {
4634
- createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);
4635
- } catch (error) {
4636
- CollectionPrototype.forEach = forEach;
4637
- }
4638
- }
4639
-
4640
-
4641
- /***/ }),
4642
-
4643
- /***/ "./node_modules/core-js/modules/web.dom-collections.iterator.js":
4644
- /*!**********************************************************************!*
4645
- !*** ./node_modules/core-js/modules/web.dom-collections.iterator.js ***!
4646
- \**********************************************************************/
4647
- /***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
4648
-
4649
- var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");
4650
- var DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/core-js/internals/dom-iterables.js");
4651
- var ArrayIteratorMethods = __webpack_require__(/*! ../modules/es.array.iterator */ "./node_modules/core-js/modules/es.array.iterator.js");
4652
- var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");
4653
- var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");
4654
-
4655
- var ITERATOR = wellKnownSymbol('iterator');
4656
- var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4657
- var ArrayValues = ArrayIteratorMethods.values;
4658
-
4659
- for (var COLLECTION_NAME in DOMIterables) {
4660
- var Collection = global[COLLECTION_NAME];
4661
- var CollectionPrototype = Collection && Collection.prototype;
4662
- if (CollectionPrototype) {
4663
- // some Chrome versions have non-configurable methods on DOMTokenList
4664
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
4665
- createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);
4666
- } catch (error) {
4667
- CollectionPrototype[ITERATOR] = ArrayValues;
4668
- }
4669
- if (!CollectionPrototype[TO_STRING_TAG]) {
4670
- createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);
4671
- }
4672
- if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
4673
- // some Chrome versions have non-configurable methods on DOMTokenList
4674
- if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
4675
- createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
4676
- } catch (error) {
4677
- CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
4678
- }
4679
- }
4680
- }
4681
- }
4682
-
4683
-
4684
- /***/ }),
4685
-
4686
- /***/ "kolmafia":
4687
- /*!***************************!*
4688
- !*** external "kolmafia" ***!
4689
- \***************************/
4690
- /***/ ((module) => {
4691
-
4692
- "use strict";
4693
- module.exports = require("kolmafia");;
4694
-
4695
- /***/ })
4696
-
4697
- /******/ });
4698
- /************************************************************************/
4699
- /******/ // The module cache
4700
- /******/ var __webpack_module_cache__ = {};
4701
- /******/
4702
- /******/ // The require function
4703
- /******/ function __webpack_require__(moduleId) {
4704
- /******/ // Check if module is in cache
4705
- /******/ if(__webpack_module_cache__[moduleId]) {
4706
- /******/ return __webpack_module_cache__[moduleId].exports;
4707
- /******/ }
4708
- /******/ // Create a new module (and put it into the cache)
4709
- /******/ var module = __webpack_module_cache__[moduleId] = {
4710
- /******/ // no module.id needed
4711
- /******/ // no module.loaded needed
4712
- /******/ exports: {}
4713
- /******/ };
4714
- /******/
4715
- /******/ // Execute the module function
4716
- /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
4717
- /******/
4718
- /******/ // Return the exports of the module
4719
- /******/ return module.exports;
4720
- /******/ }
4721
- /******/
4722
- /************************************************************************/
4723
- /******/ /* webpack/runtime/compat get default export */
4724
- /******/ (() => {
4725
- /******/ // getDefaultExport function for compatibility with non-harmony modules
4726
- /******/ __webpack_require__.n = (module) => {
4727
- /******/ var getter = module && module.__esModule ?
4728
- /******/ () => module['default'] :
4729
- /******/ () => module;
4730
- /******/ __webpack_require__.d(getter, { a: getter });
4731
- /******/ return getter;
4732
- /******/ };
4733
- /******/ })();
4734
- /******/
4735
- /******/ /* webpack/runtime/define property getters */
4736
- /******/ (() => {
4737
- /******/ // define getter functions for harmony exports
4738
- /******/ __webpack_require__.d = (exports, definition) => {
4739
- /******/ for(var key in definition) {
4740
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
4741
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
4742
- /******/ }
4743
- /******/ }
4744
- /******/ };
4745
- /******/ })();
4746
- /******/
4747
- /******/ /* webpack/runtime/hasOwnProperty shorthand */
4748
- /******/ (() => {
4749
- /******/ __webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop)
4750
- /******/ })();
4751
- /******/
4752
- /******/ /* webpack/runtime/make namespace object */
4753
- /******/ (() => {
4754
- /******/ // define __esModule on exports
4755
- /******/ __webpack_require__.r = (exports) => {
4756
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
4757
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4758
- /******/ }
4759
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
4760
- /******/ };
4761
- /******/ })();
4762
- /******/
4763
- /************************************************************************/
4764
- /******/ // module exports must be returned from runtime so entry inlining is disabled
4765
- /******/ // startup
4766
- /******/ // Load entry module and return exports
4767
- /******/ return __webpack_require__("./examples/props.ts");
4768
- /******/ })()
4769
-
4770
- ));