@soma-vertical-web/multi-lib 1.0.20 → 1.0.21

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.
@@ -0,0 +1,2255 @@
1
+ import { jsxs as vt, Fragment as jr, jsx as L } from "react/jsx-runtime";
2
+ import { Utils as Ur } from "@soma-vertical-web/core-components";
3
+ const Qe = (t, e = !0) => Intl.NumberFormat("pt-BR", {
4
+ style: "currency",
5
+ currency: "BRL",
6
+ minimumFractionDigits: e ? 2 : 0
7
+ }).format(t), Br = ({ valueInCents: t, hasFree: e, freeTaxMessage: r }) => t === 0 ? e ? r : Qe(0) : Qe(t / 100), Gr = (t, e) => {
8
+ const n = (t - e) * 100 / t;
9
+ return Math.floor(n);
10
+ }, Wt = (t, e) => {
11
+ const [r, n] = t.split(e);
12
+ return { name: r.trim(), size: n ? n.trim() : "" };
13
+ }, Hr = (t, e) => {
14
+ if (!t)
15
+ return {};
16
+ const [r, n] = t.split(e);
17
+ return { color: r == null ? void 0 : r.trim(), size: n == null ? void 0 : n.trim() };
18
+ }, Xr = (t, e = "tamanho") => {
19
+ if (t.additionalProperty) {
20
+ const [r] = t.additionalProperty;
21
+ return r != null && r.name ? r.name.toLocaleLowerCase() === e ? r.value : t.name : "";
22
+ }
23
+ return t.name;
24
+ }, Wr = (t, e) => t.replace(e, "").trim(), zr = (t) => t.replace(/\//g, ""), Vr = ({ items: t, NAME_SPLIT_SYMBOL: e }) => {
25
+ const r = {
26
+ price: 0,
27
+ listPrice: 0,
28
+ installments: {
29
+ count: 0,
30
+ value: 0
31
+ }
32
+ }, n = (i, l) => {
33
+ var s;
34
+ l && (l.sellerId = i.sellerId, l.sellerName = i.sellerName, l.available = !0, l.isSellerDefault = i.sellerDefault);
35
+ const {
36
+ Price: c,
37
+ ListPrice: f,
38
+ PaymentOptions: { installmentOptions: u }
39
+ } = i.commertialOffer;
40
+ r.price = c, r.listPrice = f;
41
+ const p = (s = u == null ? void 0 : u[0]) == null ? void 0 : s.installments;
42
+ if (p) {
43
+ const { count: d, value: y } = p[p.length - 1];
44
+ r.installments = {
45
+ count: d,
46
+ value: y / 100
47
+ };
48
+ }
49
+ };
50
+ let o = !0;
51
+ const a = t.reduce((i, l) => {
52
+ var u;
53
+ const c = {
54
+ name: l.name,
55
+ sku: l.itemId,
56
+ value: ((u = l.Tamanho) == null ? void 0 : u[0]) ?? Wt(l.nameComplete ?? l.name, e).size,
57
+ available: !1,
58
+ sellerId: "",
59
+ sellerName: "",
60
+ isSellerDefault: !1
61
+ }, f = l.sellers.filter((p) => (p.sellerDefault && p.commertialOffer.IsAvailable && (c.available = !0, n(p, c)), p.commertialOffer.IsAvailable));
62
+ return !c.isSellerDefault && f.length > 0 && (c.available = !0, n(f[0], {
63
+ ...c,
64
+ sellerId: f[0].sellerId,
65
+ sellerName: f[0].sellerName
66
+ })), c.available === !1 && (o = !1), i.push(c), i;
67
+ }, []);
68
+ return {
69
+ ...r,
70
+ sizes: a,
71
+ allSizesAvailable: o
72
+ };
73
+ }, qr = (t) => t ? !t.offers.offers.find(({ quantity: e = 0 }) => e > 0) : !1, Kr = (t, e) => {
74
+ const r = t.find(
75
+ (n) => n.availability.includes("InStock") && n.quantity && n.listPrice > 0 && n.seller.identifier === e
76
+ );
77
+ return r || t.find(
78
+ (n) => n.availability.includes("InStock") && n.quantity && n.listPrice > 0
79
+ );
80
+ }, Yr = ({ images: t, TEXTURE_IMAGE: e }) => t.find((r) => e.includes(r.imageLabel)) ?? t[0], Qr = (t, e) => {
81
+ const r = /\/ids\/(\d+)\//, n = t.match(r);
82
+ return n ? t.replace(
83
+ `/${n[1]}/`,
84
+ `/${n[1]}-${e.width}-${e.height}/`
85
+ ) : t;
86
+ }, Jr = (t, e) => {
87
+ const r = /\/ids\/(\d+)-(\d+)-(\d+)\//, n = t.match(r);
88
+ return n ? t.replace(
89
+ `/${n[1]}-${n[2]}-${n[3]}/`,
90
+ `/${n[1]}-${e.width}-${e.height}/`
91
+ ) : t;
92
+ }, Zr = ({
93
+ images: t,
94
+ label: e
95
+ }) => {
96
+ const r = t.filter(
97
+ (n) => n.keywords === e.first || n.keywords === e.second || n.alternateName === e.first || n.alternateName === e.second
98
+ );
99
+ return r.length === 0 ? t.slice(0, 2) : r;
100
+ }, en = (t) => {
101
+ const [e, r] = t.split("/").map(Number);
102
+ if (Number.isNaN(e) || Number.isNaN(r))
103
+ throw new Error("[ERROR ASPECT RATIO IMAGE]: Invalid aspect ratio format");
104
+ return r / e;
105
+ }, tn = (t, e, r) => {
106
+ e && (t ? (e.getAttribute("src") || (e.src = r ?? ""), e.play()) : e.pause());
107
+ }, zi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
108
+ __proto__: null,
109
+ disableSKU: qr,
110
+ formatPriceToCurrency: Qe,
111
+ freightParsePrice: Br,
112
+ getAspectRatio: en,
113
+ getColorAndSizeFromSkuName: Hr,
114
+ getDiscountPercent: Gr,
115
+ getFirstImages: Zr,
116
+ getProductNameWithoutSku: Wr,
117
+ getSKUName: Xr,
118
+ getSkuInfos: Vr,
119
+ getThumbImage: Yr,
120
+ getValidOffer: Kr,
121
+ removeSlashes: zr,
122
+ resizingImg: Qr,
123
+ setVideoPlay: tn,
124
+ splitNameAndSizeFromFullName: Wt,
125
+ updatedResizedImg: Jr
126
+ }, Symbol.toStringTag, { value: "Module" })), _t = "fuzzy", mt = "operator", rn = (t) => ({
127
+ isDepartment: t != null && t.length ? t[0].key === "category-1" : !1
128
+ }), Vi = (t, e) => {
129
+ const r = decodeURIComponent(e ?? "").slice(1).split("/");
130
+ return t.map((n) => {
131
+ if (n.key === "category-2" && n.__typename === "FacetBoolean") {
132
+ const o = n.values;
133
+ return {
134
+ ...n,
135
+ values: o.filter(
136
+ (a) => !r.find(
137
+ (i) => i.toLowerCase() === a.value || i.toLowerCase() === a.name.toLowerCase()
138
+ )
139
+ )
140
+ };
141
+ }
142
+ return n;
143
+ });
144
+ }, zt = (t, e) => e ? t === "category-1" : !1, nn = (t) => t.key === "operator" && (t.value === "and" || t.value === "or"), on = (t) => t.type === "TEXT", an = (t) => t.key === "fuzzy" && (t.value === "0" || t.value === "1" || t.value === "auto"), ln = (t) => {
145
+ const { key: e, name: r, values: n } = t;
146
+ return {
147
+ __typename: "FacetBoolean",
148
+ key: e,
149
+ label: r,
150
+ values: n.slice().sort((o, a) => o.name.localeCompare(a.name))
151
+ };
152
+ }, cn = ({ key: t, values: e }) => ({
153
+ __typename: "FacetRange",
154
+ key: t,
155
+ values: e
156
+ }), qi = (t, e, r) => {
157
+ if (!(t instanceof Object) || !("facets" in t))
158
+ return [];
159
+ const { facets: n = [] } = t, o = e != null && e.length ? e[0].key === "category-1" : !1;
160
+ return n.filter(
161
+ (i) => !r || !zt(i.key, o)
162
+ ).map(
163
+ (i) => on(i) ? ln(i) : cn(i)
164
+ );
165
+ }, Ki = (t, e) => {
166
+ const r = t.find(({ key: o }) => o === _t) ?? null, n = t.find(({ key: o }) => o === mt) ?? null;
167
+ r && an(r) && e.append(_t, r.value), n && nn(n) && e.append(mt, n.value);
168
+ }, un = (t) => t.map((e) => {
169
+ const [r, n] = e.split("/");
170
+ return { key: r, value: n };
171
+ }), Yi = (t, e) => {
172
+ const r = decodeURIComponent(e ?? "").slice(1).split("/"), n = t.filter(({ value: a }) => !r.includes(decodeURIComponent(a))).map((a) => ({
173
+ ...a,
174
+ value: decodeURIComponent(a.value)
175
+ })), { isDepartment: o } = rn(n);
176
+ return n == null ? void 0 : n.filter((a) => !zt(a.key, o));
177
+ }, Qi = ({ pathname: t, searchParams: e }, r) => {
178
+ const n = e.get("sort") ?? "", o = e.get("query") ?? null, a = parseInt(e.get("page") ?? "1", 10);
179
+ return {
180
+ sort: n,
181
+ facets: un(r),
182
+ term: o,
183
+ base: o ? "" : t,
184
+ page: a
185
+ };
186
+ }, Ji = (t) => {
187
+ const e = new URLSearchParams();
188
+ return Object.entries(t).forEach(([r, n]) => {
189
+ Array.isArray(n) ? n.forEach((o) => e.append(r, o)) : n !== void 0 && e.append(r, n);
190
+ }), e;
191
+ }, Zi = (t, e, r = 24, n = 1, o) => {
192
+ const a = `/search?query=${e ?? ""}&count=${r}&page=${n}${o ? `&sort=${o.replace("_", ":")}` : ""}`;
193
+ t.push(a);
194
+ };
195
+ var gt = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
196
+ function sn(t) {
197
+ return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
198
+ }
199
+ function fn(t) {
200
+ if (t.__esModule) return t;
201
+ var e = t.default;
202
+ if (typeof e == "function") {
203
+ var r = function n() {
204
+ return this instanceof n ? Reflect.construct(e, arguments, this.constructor) : e.apply(this, arguments);
205
+ };
206
+ r.prototype = e.prototype;
207
+ } else r = {};
208
+ return Object.defineProperty(r, "__esModule", { value: !0 }), Object.keys(t).forEach(function(n) {
209
+ var o = Object.getOwnPropertyDescriptor(t, n);
210
+ Object.defineProperty(r, n, o.get ? o : {
211
+ enumerable: !0,
212
+ get: function() {
213
+ return t[n];
214
+ }
215
+ });
216
+ }), r;
217
+ }
218
+ var pn = {};
219
+ (function(t) {
220
+ Object.defineProperty(t, "__esModule", {
221
+ value: !0
222
+ }), Object.defineProperty(t, "removeTrailingSlash", {
223
+ enumerable: !0,
224
+ get: function() {
225
+ return e;
226
+ }
227
+ });
228
+ function e(r) {
229
+ return r.replace(/\/$/, "") || "/";
230
+ }
231
+ })(pn);
232
+ var ot = {};
233
+ (function(t) {
234
+ Object.defineProperty(t, "__esModule", {
235
+ value: !0
236
+ }), Object.defineProperty(t, "parsePath", {
237
+ enumerable: !0,
238
+ get: function() {
239
+ return e;
240
+ }
241
+ });
242
+ function e(r) {
243
+ const n = r.indexOf("#"), o = r.indexOf("?"), a = o > -1 && (n < 0 || o < n);
244
+ return a || n > -1 ? {
245
+ pathname: r.substring(0, a ? o : n),
246
+ query: a ? r.substring(o, n > -1 ? n : void 0) : "",
247
+ hash: n > -1 ? r.slice(n) : ""
248
+ } : {
249
+ pathname: r,
250
+ query: "",
251
+ hash: ""
252
+ };
253
+ }
254
+ })(ot);
255
+ var Vt = {};
256
+ (function(t) {
257
+ Object.defineProperty(t, "__esModule", {
258
+ value: !0
259
+ }), Object.defineProperty(t, "pathHasPrefix", {
260
+ enumerable: !0,
261
+ get: function() {
262
+ return r;
263
+ }
264
+ });
265
+ const e = ot;
266
+ function r(n, o) {
267
+ if (typeof n != "string")
268
+ return !1;
269
+ const { pathname: a } = (0, e.parsePath)(n);
270
+ return a === o || a.startsWith(o + "/");
271
+ }
272
+ })(Vt);
273
+ var yn = {};
274
+ (function(t) {
275
+ Object.defineProperty(t, "__esModule", {
276
+ value: !0
277
+ });
278
+ function e(kr, yt) {
279
+ for (var dt in yt) Object.defineProperty(kr, dt, {
280
+ enumerable: !0,
281
+ get: yt[dt]
282
+ });
283
+ }
284
+ e(t, {
285
+ ACTION_SUFFIX: function() {
286
+ return c;
287
+ },
288
+ APP_DIR_ALIAS: function() {
289
+ return q;
290
+ },
291
+ CACHE_ONE_YEAR: function() {
292
+ return x;
293
+ },
294
+ DOT_NEXT_ALIAS: function() {
295
+ return $;
296
+ },
297
+ ESLINT_DEFAULT_DIRS: function() {
298
+ return $r;
299
+ },
300
+ GSP_NO_RETURNED_VALUE: function() {
301
+ return Ir;
302
+ },
303
+ GSSP_COMPONENT_MEMBER_ERROR: function() {
304
+ return Nr;
305
+ },
306
+ GSSP_NO_RETURNED_VALUE: function() {
307
+ return wr;
308
+ },
309
+ INSTRUMENTATION_HOOK_FILENAME: function() {
310
+ return F;
311
+ },
312
+ MIDDLEWARE_FILENAME: function() {
313
+ return I;
314
+ },
315
+ MIDDLEWARE_LOCATION_REGEXP: function() {
316
+ return G;
317
+ },
318
+ NEXT_BODY_SUFFIX: function() {
319
+ return p;
320
+ },
321
+ NEXT_CACHE_IMPLICIT_TAG_ID: function() {
322
+ return _;
323
+ },
324
+ NEXT_CACHE_REVALIDATED_TAGS_HEADER: function() {
325
+ return y;
326
+ },
327
+ NEXT_CACHE_REVALIDATE_TAG_TOKEN_HEADER: function() {
328
+ return h;
329
+ },
330
+ NEXT_CACHE_SOFT_TAGS_HEADER: function() {
331
+ return d;
332
+ },
333
+ NEXT_CACHE_SOFT_TAG_MAX_LENGTH: function() {
334
+ return P;
335
+ },
336
+ NEXT_CACHE_TAGS_HEADER: function() {
337
+ return s;
338
+ },
339
+ NEXT_CACHE_TAG_MAX_ITEMS: function() {
340
+ return A;
341
+ },
342
+ NEXT_CACHE_TAG_MAX_LENGTH: function() {
343
+ return O;
344
+ },
345
+ NEXT_DATA_SUFFIX: function() {
346
+ return f;
347
+ },
348
+ NEXT_INTERCEPTION_MARKER_PREFIX: function() {
349
+ return n;
350
+ },
351
+ NEXT_META_SUFFIX: function() {
352
+ return u;
353
+ },
354
+ NEXT_QUERY_PARAM_PREFIX: function() {
355
+ return r;
356
+ },
357
+ NON_STANDARD_NODE_ENV: function() {
358
+ return Cr;
359
+ },
360
+ PAGES_DIR_ALIAS: function() {
361
+ return V;
362
+ },
363
+ PRERENDER_REVALIDATE_HEADER: function() {
364
+ return o;
365
+ },
366
+ PRERENDER_REVALIDATE_ONLY_GENERATED_HEADER: function() {
367
+ return a;
368
+ },
369
+ PUBLIC_DIR_MIDDLEWARE_CONFLICT: function() {
370
+ return re;
371
+ },
372
+ ROOT_DIR_ALIAS: function() {
373
+ return w;
374
+ },
375
+ RSC_ACTION_CLIENT_WRAPPER_ALIAS: function() {
376
+ return H;
377
+ },
378
+ RSC_ACTION_ENCRYPTION_ALIAS: function() {
379
+ return R;
380
+ },
381
+ RSC_ACTION_PROXY_ALIAS: function() {
382
+ return T;
383
+ },
384
+ RSC_ACTION_VALIDATE_ALIAS: function() {
385
+ return b;
386
+ },
387
+ RSC_MOD_REF_PROXY_ALIAS: function() {
388
+ return k;
389
+ },
390
+ RSC_PREFETCH_SUFFIX: function() {
391
+ return i;
392
+ },
393
+ RSC_SUFFIX: function() {
394
+ return l;
395
+ },
396
+ SERVER_PROPS_EXPORT_ERROR: function() {
397
+ return xr;
398
+ },
399
+ SERVER_PROPS_GET_INIT_PROPS_CONFLICT: function() {
400
+ return ye;
401
+ },
402
+ SERVER_PROPS_SSG_CONFLICT: function() {
403
+ return ne;
404
+ },
405
+ SERVER_RUNTIME: function() {
406
+ return Lr;
407
+ },
408
+ SSG_FALLBACK_EXPORT_ERROR: function() {
409
+ return Dr;
410
+ },
411
+ SSG_GET_INITIAL_PROPS_CONFLICT: function() {
412
+ return Ce;
413
+ },
414
+ STATIC_STATUS_PAGE_GET_INITIAL_PROPS_ERROR: function() {
415
+ return Pr;
416
+ },
417
+ UNSTABLE_REVALIDATE_RENAME_ERROR: function() {
418
+ return Tr;
419
+ },
420
+ WEBPACK_LAYERS: function() {
421
+ return Mr;
422
+ },
423
+ WEBPACK_RESOURCE_QUERIES: function() {
424
+ return Fr;
425
+ }
426
+ });
427
+ const r = "nxtP", n = "nxtI", o = "x-prerender-revalidate", a = "x-prerender-revalidate-if-generated", i = ".prefetch.rsc", l = ".rsc", c = ".action", f = ".json", u = ".meta", p = ".body", s = "x-next-cache-tags", d = "x-next-cache-soft-tags", y = "x-next-revalidated-tags", h = "x-next-revalidate-tag-token", A = 128, O = 256, P = 1024, _ = "_N_T_", x = 31536e3, I = "middleware", G = `(?:src/)?${I}`, F = "instrumentation", V = "private-next-pages", $ = "private-dot-next", w = "private-next-root-dir", q = "private-next-app-dir", k = "private-next-rsc-mod-ref-proxy", b = "private-next-rsc-action-validate", T = "private-next-rsc-server-reference", R = "private-next-rsc-action-encryption", H = "private-next-rsc-action-client-wrapper", re = "You can not have a '_next' folder inside of your public folder. This conflicts with the internal '/_next' route. https://nextjs.org/docs/messages/public-next-folder-conflict", Ce = "You can not use getInitialProps with getStaticProps. To use SSG, please remove your getInitialProps", ye = "You can not use getInitialProps with getServerSideProps. Please remove getInitialProps.", ne = "You can not use getStaticProps or getStaticPaths with getServerSideProps. To use SSG, please remove getServerSideProps", Pr = "can not have getInitialProps/getServerSideProps, https://nextjs.org/docs/messages/404-get-initial-props", xr = "pages with `getServerSideProps` can not be exported. See more info here: https://nextjs.org/docs/messages/gssp-export", Ir = "Your `getStaticProps` function did not return an object. Did you forget to add a `return`?", wr = "Your `getServerSideProps` function did not return an object. Did you forget to add a `return`?", Tr = "The `unstable_revalidate` property is available for general use.\nPlease use `revalidate` instead.", Nr = "can not be attached to a page's component and must be exported from the page. See more info here: https://nextjs.org/docs/messages/gssp-component-member", Cr = 'You are using a non-standard "NODE_ENV" value in your environment. This creates inconsistencies in the project and is strongly advised against. Read more: https://nextjs.org/docs/messages/non-standard-node-env', Dr = "Pages with `fallback` enabled in `getStaticPaths` can not be exported. See more info here: https://nextjs.org/docs/messages/ssg-fallback-true-export", $r = [
428
+ "app",
429
+ "pages",
430
+ "components",
431
+ "lib",
432
+ "src"
433
+ ], Lr = {
434
+ edge: "edge",
435
+ experimentalEdge: "experimental-edge",
436
+ nodejs: "nodejs"
437
+ }, E = {
438
+ /**
439
+ * The layer for the shared code between the client and server bundles.
440
+ */
441
+ shared: "shared",
442
+ /**
443
+ * React Server Components layer (rsc).
444
+ */
445
+ reactServerComponents: "rsc",
446
+ /**
447
+ * Server Side Rendering layer for app (ssr).
448
+ */
449
+ serverSideRendering: "ssr",
450
+ /**
451
+ * The browser client bundle layer for actions.
452
+ */
453
+ actionBrowser: "action-browser",
454
+ /**
455
+ * The layer for the API routes.
456
+ */
457
+ api: "api",
458
+ /**
459
+ * The layer for the middleware code.
460
+ */
461
+ middleware: "middleware",
462
+ /**
463
+ * The layer for the instrumentation hooks.
464
+ */
465
+ instrument: "instrument",
466
+ /**
467
+ * The layer for assets on the edge.
468
+ */
469
+ edgeAsset: "edge-asset",
470
+ /**
471
+ * The browser client bundle layer for App directory.
472
+ */
473
+ appPagesBrowser: "app-pages-browser",
474
+ /**
475
+ * The server bundle layer for metadata routes.
476
+ */
477
+ appMetadataRoute: "app-metadata-route",
478
+ /**
479
+ * The layer for the server bundle for App Route handlers.
480
+ */
481
+ appRouteHandler: "app-route-handler"
482
+ }, Mr = {
483
+ ...E,
484
+ GROUP: {
485
+ serverOnly: [
486
+ E.reactServerComponents,
487
+ E.actionBrowser,
488
+ E.appMetadataRoute,
489
+ E.appRouteHandler,
490
+ E.instrument
491
+ ],
492
+ clientOnly: [
493
+ E.serverSideRendering,
494
+ E.appPagesBrowser
495
+ ],
496
+ nonClientServerTarget: [
497
+ // middleware and pages api
498
+ E.middleware,
499
+ E.api
500
+ ],
501
+ app: [
502
+ E.reactServerComponents,
503
+ E.actionBrowser,
504
+ E.appMetadataRoute,
505
+ E.appRouteHandler,
506
+ E.serverSideRendering,
507
+ E.appPagesBrowser,
508
+ E.shared,
509
+ E.instrument
510
+ ]
511
+ }
512
+ }, Fr = {
513
+ edgeSSREntry: "__next_edge_ssr_entry__",
514
+ metadata: "__next_metadata__",
515
+ metadataRoute: "__next_metadata_route__",
516
+ metadataImageMeta: "__next_metadata_image_meta__"
517
+ };
518
+ })(yn);
519
+ var dn = {}, qt = {};
520
+ (function(t) {
521
+ Object.defineProperty(t, "__esModule", {
522
+ value: !0
523
+ }), Object.defineProperty(t, "addPathPrefix", {
524
+ enumerable: !0,
525
+ get: function() {
526
+ return r;
527
+ }
528
+ });
529
+ const e = ot;
530
+ function r(n, o) {
531
+ if (!n.startsWith("/") || !o)
532
+ return n;
533
+ const { pathname: a, query: i, hash: l } = (0, e.parsePath)(n);
534
+ return "" + o + a + i + l;
535
+ }
536
+ })(qt);
537
+ (function(t) {
538
+ Object.defineProperty(t, "__esModule", {
539
+ value: !0
540
+ }), Object.defineProperty(t, "addLocale", {
541
+ enumerable: !0,
542
+ get: function() {
543
+ return n;
544
+ }
545
+ });
546
+ const e = qt, r = Vt;
547
+ function n(o, a, i, l) {
548
+ if (!a || a === i) return o;
549
+ const c = o.toLowerCase();
550
+ return !l && ((0, r.pathHasPrefix)(c, "/api") || (0, r.pathHasPrefix)(c, "/" + a.toLowerCase())) ? o : (0, e.addPathPrefix)(o, "/" + a);
551
+ }
552
+ })(dn);
553
+ var vn = {};
554
+ (function(t) {
555
+ Object.defineProperty(t, "__esModule", {
556
+ value: !0
557
+ }), Object.defineProperty(t, "normalizeLocalePath", {
558
+ enumerable: !0,
559
+ get: function() {
560
+ return e;
561
+ }
562
+ });
563
+ function e(r, n) {
564
+ let o;
565
+ const a = r.split("/");
566
+ return (n || []).some((i) => a[1] && a[1].toLowerCase() === i.toLowerCase() ? (o = i, a.splice(1, 1), r = a.join("/") || "/", !0) : !1), {
567
+ pathname: r,
568
+ detectedLocale: o
569
+ };
570
+ }
571
+ })(vn);
572
+ var _n = {};
573
+ (function(t) {
574
+ Object.defineProperty(t, "__esModule", {
575
+ value: !0
576
+ }), Object.defineProperty(t, "detectDomainLocale", {
577
+ enumerable: !0,
578
+ get: function() {
579
+ return e;
580
+ }
581
+ });
582
+ function e(r, n, o) {
583
+ if (r) {
584
+ o && (o = o.toLowerCase());
585
+ for (const l of r) {
586
+ var a, i;
587
+ const c = (a = l.domain) == null ? void 0 : a.split(":", 1)[0].toLowerCase();
588
+ if (n === c || o === l.defaultLocale.toLowerCase() || (i = l.locales) != null && i.some((f) => f.toLowerCase() === o))
589
+ return l;
590
+ }
591
+ }
592
+ }
593
+ })(_n);
594
+ const de = {
595
+ "responsive-mobile-flex": "_responsive-mobile-flex_1e0ai_1",
596
+ "responsive-desktop-flex": "_responsive-desktop-flex_1e0ai_15",
597
+ "responsive-mobile-block": "_responsive-mobile-block_1e0ai_30",
598
+ "responsive-desktop-block": "_responsive-desktop-block_1e0ai_41"
599
+ }, mn = "_header_9xxjk_57", gn = "_actions_9xxjk_131", hn = "_breadcrumb_9xxjk_142", En = "_credits_9xxjk_157", Sn = "_pdplinks_9xxjk_185", An = "_similars_9xxjk_212", bn = "_sizes_9xxjk_251", Rn = "_measurementTable_9xxjk_267", On = "_measurementHead_9xxjk_280", Pn = "_measurementRows_9xxjk_285", xn = "_measurementRowsTitle_9xxjk_302", In = "_measurementRowsText_9xxjk_314", wn = "_measurementImage_9xxjk_325", Tn = "_measurementImageContainer_9xxjk_328", Nn = "_measurementContent_9xxjk_337", Cn = "_measurementTitle_9xxjk_341", Dn = "_measurementClose_9xxjk_352", $n = "_productref_9xxjk_417", Ln = "_slideOut_9xxjk_1", Mn = "_slideIn_9xxjk_1", Fn = "_content_9xxjk_397", kn = "_pdp_9xxjk_185", jn = "_divider_9xxjk_575", el = {
600
+ "bottom-navigation": "_bottom-navigation_9xxjk_1",
601
+ "bottom-navigation__credits-modifier": "_bottom-navigation__credits-modifier_9xxjk_18",
602
+ "bottom-navigation__header": "_bottom-navigation__header_9xxjk_21",
603
+ "bottom-navigation__header-content": "_bottom-navigation__header-content_9xxjk_26",
604
+ "golden-tag-content": "_golden-tag-content_9xxjk_45",
605
+ "bottom-navigation__price-and-promo": "_bottom-navigation__price-and-promo_9xxjk_48",
606
+ header: mn,
607
+ "golden-tag": "_golden-tag_9xxjk_45",
608
+ "golden-tag-video": "_golden-tag-video_9xxjk_86",
609
+ "golden-tag-content-text": "_golden-tag-content-text_9xxjk_105",
610
+ actions: gn,
611
+ "add-to-cart": "_add-to-cart_9xxjk_138",
612
+ breadcrumb: hn,
613
+ "breadcrumb--active": "_breadcrumb--active_9xxjk_147",
614
+ credits: En,
615
+ "gallery-carousel-modifier": "_gallery-carousel-modifier_9xxjk_162",
616
+ pdplinks: Sn,
617
+ "links-wrapper": "_links-wrapper_9xxjk_195",
618
+ similars: An,
619
+ "similars-info": "_similars-info_9xxjk_224",
620
+ "toggle-style-modifier": "_toggle-style-modifier_9xxjk_233",
621
+ "accessibility-info": "_accessibility-info_9xxjk_237",
622
+ sizes: bn,
623
+ "price-wrapper": "_price-wrapper_9xxjk_263",
624
+ measurementTable: Rn,
625
+ measurementHead: On,
626
+ measurementRows: Pn,
627
+ measurementRowsTitle: xn,
628
+ measurementRowsText: In,
629
+ measurementImage: wn,
630
+ measurementImageContainer: Tn,
631
+ measurementContent: Nn,
632
+ measurementTitle: Cn,
633
+ measurementClose: Dn,
634
+ "tabs-root-modifier": "_tabs-root-modifier_9xxjk_358",
635
+ "tabs-list-modifier": "_tabs-list-modifier_9xxjk_376",
636
+ "tabs-item-modifier": "_tabs-item-modifier_9xxjk_393",
637
+ "content-wrapper": "_content-wrapper_9xxjk_397",
638
+ productref: $n,
639
+ "tabs-panel": "_tabs-panel_9xxjk_428",
640
+ "tabs-panel-exit": "_tabs-panel-exit_9xxjk_434",
641
+ slideOut: Ln,
642
+ "tabs-panel-enter": "_tabs-panel-enter_9xxjk_438",
643
+ slideIn: Mn,
644
+ content: Fn,
645
+ pdp: kn,
646
+ "pdp-main": "_pdp-main_9xxjk_496",
647
+ "pdp-main__gallery-wrapper": "_pdp-main__gallery-wrapper_9xxjk_501",
648
+ "pdp-main__info": "_pdp-main__info_9xxjk_518",
649
+ "pdp-main__info-main-content": "_pdp-main__info-main-content_9xxjk_533",
650
+ "pdp-main__info-subsection": "_pdp-main__info-subsection_9xxjk_533",
651
+ "subsection-product-info": "_subsection-product-info_9xxjk_544",
652
+ "subsection-similars": "_subsection-similars_9xxjk_547",
653
+ "subsection-sizes": "_subsection-sizes_9xxjk_550",
654
+ "subsection-actions": "_subsection-actions_9xxjk_553",
655
+ "pdp-main__info-secondary-content": "_pdp-main__info-secondary-content_9xxjk_557",
656
+ "sections-title": "_sections-title_9xxjk_563",
657
+ divider: jn,
658
+ "breadcrumbs-desktop": "_breadcrumbs-desktop_9xxjk_580",
659
+ "breadcrumbs-mobile": "_breadcrumbs-mobile_9xxjk_589"
660
+ }, tl = ({
661
+ children: t,
662
+ data: e,
663
+ SectionZone: r,
664
+ className: n
665
+ }) => {
666
+ var u, p;
667
+ const o = ((u = e == null ? void 0 : e.filter((s) => {
668
+ var d, y;
669
+ return ((y = (d = s.config) == null ? void 0 : d.responsive) == null ? void 0 : y.deviceType) === "mobile";
670
+ })[0]) == null ? void 0 : u.sections) || [], a = ((p = e == null ? void 0 : e.filter((s) => {
671
+ var d, y;
672
+ return ((y = (d = s.config) == null ? void 0 : d.responsive) == null ? void 0 : y.deviceType) === "desktop";
673
+ })[0]) == null ? void 0 : p.sections) || [], i = o.slice(0, 1), l = o.slice(1, o.length), c = a.slice(0, 1), f = a.slice(1, a.length);
674
+ return /* @__PURE__ */ vt(jr, { children: [
675
+ /* @__PURE__ */ vt("div", { className: n, children: [
676
+ /* @__PURE__ */ L("div", { className: de["responsive-mobile-flex"], children: /* @__PURE__ */ L(r, { data: i ?? [] }) }),
677
+ /* @__PURE__ */ L("div", { className: de["responsive-desktop-flex"], children: /* @__PURE__ */ L(r, { data: c ?? [] }) })
678
+ ] }),
679
+ t,
680
+ /* @__PURE__ */ L("div", { className: de["responsive-mobile-flex"], children: /* @__PURE__ */ L(r, { data: l ?? [] }) }),
681
+ /* @__PURE__ */ L("div", { className: de["responsive-desktop-flex"], children: /* @__PURE__ */ L(r, { data: f ?? [] }) }),
682
+ /* @__PURE__ */ L(Ur.Divider, {})
683
+ ] });
684
+ };
685
+ var te = TypeError;
686
+ const Un = {}, Bn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
687
+ __proto__: null,
688
+ default: Un
689
+ }, Symbol.toStringTag, { value: "Module" })), Gn = /* @__PURE__ */ fn(Bn);
690
+ var at = typeof Map == "function" && Map.prototype, De = Object.getOwnPropertyDescriptor && at ? Object.getOwnPropertyDescriptor(Map.prototype, "size") : null, Se = at && De && typeof De.get == "function" ? De.get : null, ht = at && Map.prototype.forEach, it = typeof Set == "function" && Set.prototype, $e = Object.getOwnPropertyDescriptor && it ? Object.getOwnPropertyDescriptor(Set.prototype, "size") : null, Ae = it && $e && typeof $e.get == "function" ? $e.get : null, Et = it && Set.prototype.forEach, Hn = typeof WeakMap == "function" && WeakMap.prototype, ae = Hn ? WeakMap.prototype.has : null, Xn = typeof WeakSet == "function" && WeakSet.prototype, ie = Xn ? WeakSet.prototype.has : null, Wn = typeof WeakRef == "function" && WeakRef.prototype, St = Wn ? WeakRef.prototype.deref : null, zn = Boolean.prototype.valueOf, Vn = Object.prototype.toString, qn = Function.prototype.toString, Kn = String.prototype.match, lt = String.prototype.slice, j = String.prototype.replace, Yn = String.prototype.toUpperCase, At = String.prototype.toLowerCase, Kt = RegExp.prototype.test, bt = Array.prototype.concat, D = Array.prototype.join, Qn = Array.prototype.slice, Rt = Math.floor, Je = typeof BigInt == "function" ? BigInt.prototype.valueOf : null, Le = Object.getOwnPropertySymbols, Ze = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? Symbol.prototype.toString : null, Z = typeof Symbol == "function" && typeof Symbol.iterator == "object", le = typeof Symbol == "function" && Symbol.toStringTag && (typeof Symbol.toStringTag === Z || !0) ? Symbol.toStringTag : null, Yt = Object.prototype.propertyIsEnumerable, Ot = (typeof Reflect == "function" ? Reflect.getPrototypeOf : Object.getPrototypeOf) || ([].__proto__ === Array.prototype ? function(t) {
691
+ return t.__proto__;
692
+ } : null);
693
+ function Pt(t, e) {
694
+ if (t === 1 / 0 || t === -1 / 0 || t !== t || t && t > -1e3 && t < 1e3 || Kt.call(/e/, e))
695
+ return e;
696
+ var r = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;
697
+ if (typeof t == "number") {
698
+ var n = t < 0 ? -Rt(-t) : Rt(t);
699
+ if (n !== t) {
700
+ var o = String(n), a = lt.call(e, o.length + 1);
701
+ return j.call(o, r, "$&_") + "." + j.call(j.call(a, /([0-9]{3})/g, "$&_"), /_$/, "");
702
+ }
703
+ }
704
+ return j.call(e, r, "$&_");
705
+ }
706
+ var et = Gn, xt = et.custom, It = Zt(xt) ? xt : null, Qt = {
707
+ __proto__: null,
708
+ double: '"',
709
+ single: "'"
710
+ }, Jn = {
711
+ __proto__: null,
712
+ double: /(["\\])/g,
713
+ single: /(['\\])/g
714
+ }, Pe = function t(e, r, n, o) {
715
+ var a = r || {};
716
+ if (M(a, "quoteStyle") && !M(Qt, a.quoteStyle))
717
+ throw new TypeError('option "quoteStyle" must be "single" or "double"');
718
+ if (M(a, "maxStringLength") && (typeof a.maxStringLength == "number" ? a.maxStringLength < 0 && a.maxStringLength !== 1 / 0 : a.maxStringLength !== null))
719
+ throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');
720
+ var i = M(a, "customInspect") ? a.customInspect : !0;
721
+ if (typeof i != "boolean" && i !== "symbol")
722
+ throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");
723
+ if (M(a, "indent") && a.indent !== null && a.indent !== " " && !(parseInt(a.indent, 10) === a.indent && a.indent > 0))
724
+ throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');
725
+ if (M(a, "numericSeparator") && typeof a.numericSeparator != "boolean")
726
+ throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');
727
+ var l = a.numericSeparator;
728
+ if (typeof e > "u")
729
+ return "undefined";
730
+ if (e === null)
731
+ return "null";
732
+ if (typeof e == "boolean")
733
+ return e ? "true" : "false";
734
+ if (typeof e == "string")
735
+ return tr(e, a);
736
+ if (typeof e == "number") {
737
+ if (e === 0)
738
+ return 1 / 0 / e > 0 ? "0" : "-0";
739
+ var c = String(e);
740
+ return l ? Pt(e, c) : c;
741
+ }
742
+ if (typeof e == "bigint") {
743
+ var f = String(e) + "n";
744
+ return l ? Pt(e, f) : f;
745
+ }
746
+ var u = typeof a.depth > "u" ? 5 : a.depth;
747
+ if (typeof n > "u" && (n = 0), n >= u && u > 0 && typeof e == "object")
748
+ return tt(e) ? "[Array]" : "[Object]";
749
+ var p = mo(a, n);
750
+ if (typeof o > "u")
751
+ o = [];
752
+ else if (er(o, e) >= 0)
753
+ return "[Circular]";
754
+ function s(b, T, R) {
755
+ if (T && (o = Qn.call(o), o.push(T)), R) {
756
+ var H = {
757
+ depth: a.depth
758
+ };
759
+ return M(a, "quoteStyle") && (H.quoteStyle = a.quoteStyle), t(b, H, n + 1, o);
760
+ }
761
+ return t(b, a, n + 1, o);
762
+ }
763
+ if (typeof e == "function" && !wt(e)) {
764
+ var d = lo(e), y = ve(e, s);
765
+ return "[Function" + (d ? ": " + d : " (anonymous)") + "]" + (y.length > 0 ? " { " + D.call(y, ", ") + " }" : "");
766
+ }
767
+ if (Zt(e)) {
768
+ var h = Z ? j.call(String(e), /^(Symbol\(.*\))_[^)]*$/, "$1") : Ze.call(e);
769
+ return typeof e == "object" && !Z ? oe(h) : h;
770
+ }
771
+ if (yo(e)) {
772
+ for (var A = "<" + At.call(String(e.nodeName)), O = e.attributes || [], P = 0; P < O.length; P++)
773
+ A += " " + O[P].name + "=" + Jt(Zn(O[P].value), "double", a);
774
+ return A += ">", e.childNodes && e.childNodes.length && (A += "..."), A += "</" + At.call(String(e.nodeName)) + ">", A;
775
+ }
776
+ if (tt(e)) {
777
+ if (e.length === 0)
778
+ return "[]";
779
+ var _ = ve(e, s);
780
+ return p && !_o(_) ? "[" + rt(_, p) + "]" : "[ " + D.call(_, ", ") + " ]";
781
+ }
782
+ if (to(e)) {
783
+ var x = ve(e, s);
784
+ return !("cause" in Error.prototype) && "cause" in e && !Yt.call(e, "cause") ? "{ [" + String(e) + "] " + D.call(bt.call("[cause]: " + s(e.cause), x), ", ") + " }" : x.length === 0 ? "[" + String(e) + "]" : "{ [" + String(e) + "] " + D.call(x, ", ") + " }";
785
+ }
786
+ if (typeof e == "object" && i) {
787
+ if (It && typeof e[It] == "function" && et)
788
+ return et(e, { depth: u - n });
789
+ if (i !== "symbol" && typeof e.inspect == "function")
790
+ return e.inspect();
791
+ }
792
+ if (co(e)) {
793
+ var I = [];
794
+ return ht && ht.call(e, function(b, T) {
795
+ I.push(s(T, e, !0) + " => " + s(b, e));
796
+ }), Tt("Map", Se.call(e), I, p);
797
+ }
798
+ if (fo(e)) {
799
+ var G = [];
800
+ return Et && Et.call(e, function(b) {
801
+ G.push(s(b, e));
802
+ }), Tt("Set", Ae.call(e), G, p);
803
+ }
804
+ if (uo(e))
805
+ return Me("WeakMap");
806
+ if (po(e))
807
+ return Me("WeakSet");
808
+ if (so(e))
809
+ return Me("WeakRef");
810
+ if (no(e))
811
+ return oe(s(Number(e)));
812
+ if (ao(e))
813
+ return oe(s(Je.call(e)));
814
+ if (oo(e))
815
+ return oe(zn.call(e));
816
+ if (ro(e))
817
+ return oe(s(String(e)));
818
+ if (typeof window < "u" && e === window)
819
+ return "{ [object Window] }";
820
+ if (typeof globalThis < "u" && e === globalThis || typeof gt < "u" && e === gt)
821
+ return "{ [object globalThis] }";
822
+ if (!eo(e) && !wt(e)) {
823
+ var F = ve(e, s), V = Ot ? Ot(e) === Object.prototype : e instanceof Object || e.constructor === Object, $ = e instanceof Object ? "" : "null prototype", w = !V && le && Object(e) === e && le in e ? lt.call(B(e), 8, -1) : $ ? "Object" : "", q = V || typeof e.constructor != "function" ? "" : e.constructor.name ? e.constructor.name + " " : "", k = q + (w || $ ? "[" + D.call(bt.call([], w || [], $ || []), ": ") + "] " : "");
824
+ return F.length === 0 ? k + "{}" : p ? k + "{" + rt(F, p) + "}" : k + "{ " + D.call(F, ", ") + " }";
825
+ }
826
+ return String(e);
827
+ };
828
+ function Jt(t, e, r) {
829
+ var n = r.quoteStyle || e, o = Qt[n];
830
+ return o + t + o;
831
+ }
832
+ function Zn(t) {
833
+ return j.call(String(t), /"/g, "&quot;");
834
+ }
835
+ function z(t) {
836
+ return !le || !(typeof t == "object" && (le in t || typeof t[le] < "u"));
837
+ }
838
+ function tt(t) {
839
+ return B(t) === "[object Array]" && z(t);
840
+ }
841
+ function eo(t) {
842
+ return B(t) === "[object Date]" && z(t);
843
+ }
844
+ function wt(t) {
845
+ return B(t) === "[object RegExp]" && z(t);
846
+ }
847
+ function to(t) {
848
+ return B(t) === "[object Error]" && z(t);
849
+ }
850
+ function ro(t) {
851
+ return B(t) === "[object String]" && z(t);
852
+ }
853
+ function no(t) {
854
+ return B(t) === "[object Number]" && z(t);
855
+ }
856
+ function oo(t) {
857
+ return B(t) === "[object Boolean]" && z(t);
858
+ }
859
+ function Zt(t) {
860
+ if (Z)
861
+ return t && typeof t == "object" && t instanceof Symbol;
862
+ if (typeof t == "symbol")
863
+ return !0;
864
+ if (!t || typeof t != "object" || !Ze)
865
+ return !1;
866
+ try {
867
+ return Ze.call(t), !0;
868
+ } catch {
869
+ }
870
+ return !1;
871
+ }
872
+ function ao(t) {
873
+ if (!t || typeof t != "object" || !Je)
874
+ return !1;
875
+ try {
876
+ return Je.call(t), !0;
877
+ } catch {
878
+ }
879
+ return !1;
880
+ }
881
+ var io = Object.prototype.hasOwnProperty || function(t) {
882
+ return t in this;
883
+ };
884
+ function M(t, e) {
885
+ return io.call(t, e);
886
+ }
887
+ function B(t) {
888
+ return Vn.call(t);
889
+ }
890
+ function lo(t) {
891
+ if (t.name)
892
+ return t.name;
893
+ var e = Kn.call(qn.call(t), /^function\s*([\w$]+)/);
894
+ return e ? e[1] : null;
895
+ }
896
+ function er(t, e) {
897
+ if (t.indexOf)
898
+ return t.indexOf(e);
899
+ for (var r = 0, n = t.length; r < n; r++)
900
+ if (t[r] === e)
901
+ return r;
902
+ return -1;
903
+ }
904
+ function co(t) {
905
+ if (!Se || !t || typeof t != "object")
906
+ return !1;
907
+ try {
908
+ Se.call(t);
909
+ try {
910
+ Ae.call(t);
911
+ } catch {
912
+ return !0;
913
+ }
914
+ return t instanceof Map;
915
+ } catch {
916
+ }
917
+ return !1;
918
+ }
919
+ function uo(t) {
920
+ if (!ae || !t || typeof t != "object")
921
+ return !1;
922
+ try {
923
+ ae.call(t, ae);
924
+ try {
925
+ ie.call(t, ie);
926
+ } catch {
927
+ return !0;
928
+ }
929
+ return t instanceof WeakMap;
930
+ } catch {
931
+ }
932
+ return !1;
933
+ }
934
+ function so(t) {
935
+ if (!St || !t || typeof t != "object")
936
+ return !1;
937
+ try {
938
+ return St.call(t), !0;
939
+ } catch {
940
+ }
941
+ return !1;
942
+ }
943
+ function fo(t) {
944
+ if (!Ae || !t || typeof t != "object")
945
+ return !1;
946
+ try {
947
+ Ae.call(t);
948
+ try {
949
+ Se.call(t);
950
+ } catch {
951
+ return !0;
952
+ }
953
+ return t instanceof Set;
954
+ } catch {
955
+ }
956
+ return !1;
957
+ }
958
+ function po(t) {
959
+ if (!ie || !t || typeof t != "object")
960
+ return !1;
961
+ try {
962
+ ie.call(t, ie);
963
+ try {
964
+ ae.call(t, ae);
965
+ } catch {
966
+ return !0;
967
+ }
968
+ return t instanceof WeakSet;
969
+ } catch {
970
+ }
971
+ return !1;
972
+ }
973
+ function yo(t) {
974
+ return !t || typeof t != "object" ? !1 : typeof HTMLElement < "u" && t instanceof HTMLElement ? !0 : typeof t.nodeName == "string" && typeof t.getAttribute == "function";
975
+ }
976
+ function tr(t, e) {
977
+ if (t.length > e.maxStringLength) {
978
+ var r = t.length - e.maxStringLength, n = "... " + r + " more character" + (r > 1 ? "s" : "");
979
+ return tr(lt.call(t, 0, e.maxStringLength), e) + n;
980
+ }
981
+ var o = Jn[e.quoteStyle || "single"];
982
+ o.lastIndex = 0;
983
+ var a = j.call(j.call(t, o, "\\$1"), /[\x00-\x1f]/g, vo);
984
+ return Jt(a, "single", e);
985
+ }
986
+ function vo(t) {
987
+ var e = t.charCodeAt(0), r = {
988
+ 8: "b",
989
+ 9: "t",
990
+ 10: "n",
991
+ 12: "f",
992
+ 13: "r"
993
+ }[e];
994
+ return r ? "\\" + r : "\\x" + (e < 16 ? "0" : "") + Yn.call(e.toString(16));
995
+ }
996
+ function oe(t) {
997
+ return "Object(" + t + ")";
998
+ }
999
+ function Me(t) {
1000
+ return t + " { ? }";
1001
+ }
1002
+ function Tt(t, e, r, n) {
1003
+ var o = n ? rt(r, n) : D.call(r, ", ");
1004
+ return t + " (" + e + ") {" + o + "}";
1005
+ }
1006
+ function _o(t) {
1007
+ for (var e = 0; e < t.length; e++)
1008
+ if (er(t[e], `
1009
+ `) >= 0)
1010
+ return !1;
1011
+ return !0;
1012
+ }
1013
+ function mo(t, e) {
1014
+ var r;
1015
+ if (t.indent === " ")
1016
+ r = " ";
1017
+ else if (typeof t.indent == "number" && t.indent > 0)
1018
+ r = D.call(Array(t.indent + 1), " ");
1019
+ else
1020
+ return null;
1021
+ return {
1022
+ base: r,
1023
+ prev: D.call(Array(e + 1), r)
1024
+ };
1025
+ }
1026
+ function rt(t, e) {
1027
+ if (t.length === 0)
1028
+ return "";
1029
+ var r = `
1030
+ ` + e.prev + e.base;
1031
+ return r + D.call(t, "," + r) + `
1032
+ ` + e.prev;
1033
+ }
1034
+ function ve(t, e) {
1035
+ var r = tt(t), n = [];
1036
+ if (r) {
1037
+ n.length = t.length;
1038
+ for (var o = 0; o < t.length; o++)
1039
+ n[o] = M(t, o) ? e(t[o], t) : "";
1040
+ }
1041
+ var a = typeof Le == "function" ? Le(t) : [], i;
1042
+ if (Z) {
1043
+ i = {};
1044
+ for (var l = 0; l < a.length; l++)
1045
+ i["$" + a[l]] = a[l];
1046
+ }
1047
+ for (var c in t)
1048
+ M(t, c) && (r && String(Number(c)) === c && c < t.length || Z && i["$" + c] instanceof Symbol || (Kt.call(/[^\w$]/, c) ? n.push(e(c, t) + ": " + e(t[c], t)) : n.push(c + ": " + e(t[c], t))));
1049
+ if (typeof Le == "function")
1050
+ for (var f = 0; f < a.length; f++)
1051
+ Yt.call(t, a[f]) && n.push("[" + e(a[f]) + "]: " + e(t[a[f]], t));
1052
+ return n;
1053
+ }
1054
+ var go = Pe, ho = te, xe = function(t, e, r) {
1055
+ for (var n = t, o; (o = n.next) != null; n = o)
1056
+ if (o.key === e)
1057
+ return n.next = o.next, r || (o.next = /** @type {NonNullable<typeof list.next>} */
1058
+ t.next, t.next = o), o;
1059
+ }, Eo = function(t, e) {
1060
+ if (t) {
1061
+ var r = xe(t, e);
1062
+ return r && r.value;
1063
+ }
1064
+ }, So = function(t, e, r) {
1065
+ var n = xe(t, e);
1066
+ n ? n.value = r : t.next = /** @type {import('./list.d.ts').ListNode<typeof value, typeof key>} */
1067
+ {
1068
+ // eslint-disable-line no-param-reassign, no-extra-parens
1069
+ key: e,
1070
+ next: t.next,
1071
+ value: r
1072
+ };
1073
+ }, Ao = function(t, e) {
1074
+ return t ? !!xe(t, e) : !1;
1075
+ }, bo = function(t, e) {
1076
+ if (t)
1077
+ return xe(t, e, !0);
1078
+ }, Ro = function() {
1079
+ var e, r = {
1080
+ assert: function(n) {
1081
+ if (!r.has(n))
1082
+ throw new ho("Side channel does not contain " + go(n));
1083
+ },
1084
+ delete: function(n) {
1085
+ var o = e && e.next, a = bo(e, n);
1086
+ return a && o && o === a && (e = void 0), !!a;
1087
+ },
1088
+ get: function(n) {
1089
+ return Eo(e, n);
1090
+ },
1091
+ has: function(n) {
1092
+ return Ao(e, n);
1093
+ },
1094
+ set: function(n, o) {
1095
+ e || (e = {
1096
+ next: void 0
1097
+ }), So(
1098
+ /** @type {NonNullable<typeof $o>} */
1099
+ e,
1100
+ n,
1101
+ o
1102
+ );
1103
+ }
1104
+ };
1105
+ return r;
1106
+ }, rr = Object, Oo = Error, Po = EvalError, xo = RangeError, Io = ReferenceError, wo = SyntaxError, To = URIError, No = Math.abs, Co = Math.floor, Do = Math.max, $o = Math.min, Lo = Math.pow, Mo = Math.round, Fo = Number.isNaN || function(e) {
1107
+ return e !== e;
1108
+ }, ko = Fo, jo = function(e) {
1109
+ return ko(e) || e === 0 ? e : e < 0 ? -1 : 1;
1110
+ }, Uo = Object.getOwnPropertyDescriptor, me = Uo;
1111
+ if (me)
1112
+ try {
1113
+ me([], "length");
1114
+ } catch {
1115
+ me = null;
1116
+ }
1117
+ var nr = me, ge = Object.defineProperty || !1;
1118
+ if (ge)
1119
+ try {
1120
+ ge({}, "a", { value: 1 });
1121
+ } catch {
1122
+ ge = !1;
1123
+ }
1124
+ var Bo = ge, Fe, Nt;
1125
+ function Go() {
1126
+ return Nt || (Nt = 1, Fe = function() {
1127
+ if (typeof Symbol != "function" || typeof Object.getOwnPropertySymbols != "function")
1128
+ return !1;
1129
+ if (typeof Symbol.iterator == "symbol")
1130
+ return !0;
1131
+ var e = {}, r = Symbol("test"), n = Object(r);
1132
+ if (typeof r == "string" || Object.prototype.toString.call(r) !== "[object Symbol]" || Object.prototype.toString.call(n) !== "[object Symbol]")
1133
+ return !1;
1134
+ var o = 42;
1135
+ e[r] = o;
1136
+ for (var a in e)
1137
+ return !1;
1138
+ if (typeof Object.keys == "function" && Object.keys(e).length !== 0 || typeof Object.getOwnPropertyNames == "function" && Object.getOwnPropertyNames(e).length !== 0)
1139
+ return !1;
1140
+ var i = Object.getOwnPropertySymbols(e);
1141
+ if (i.length !== 1 || i[0] !== r || !Object.prototype.propertyIsEnumerable.call(e, r))
1142
+ return !1;
1143
+ if (typeof Object.getOwnPropertyDescriptor == "function") {
1144
+ var l = (
1145
+ /** @type {PropertyDescriptor} */
1146
+ Object.getOwnPropertyDescriptor(e, r)
1147
+ );
1148
+ if (l.value !== o || l.enumerable !== !0)
1149
+ return !1;
1150
+ }
1151
+ return !0;
1152
+ }), Fe;
1153
+ }
1154
+ var ke, Ct;
1155
+ function Ho() {
1156
+ if (Ct) return ke;
1157
+ Ct = 1;
1158
+ var t = typeof Symbol < "u" && Symbol, e = Go();
1159
+ return ke = function() {
1160
+ return typeof t != "function" || typeof Symbol != "function" || typeof t("foo") != "symbol" || typeof Symbol("bar") != "symbol" ? !1 : e();
1161
+ }, ke;
1162
+ }
1163
+ var je, Dt;
1164
+ function or() {
1165
+ return Dt || (Dt = 1, je = typeof Reflect < "u" && Reflect.getPrototypeOf || null), je;
1166
+ }
1167
+ var Ue, $t;
1168
+ function ar() {
1169
+ if ($t) return Ue;
1170
+ $t = 1;
1171
+ var t = rr;
1172
+ return Ue = t.getPrototypeOf || null, Ue;
1173
+ }
1174
+ var Xo = "Function.prototype.bind called on incompatible ", Wo = Object.prototype.toString, zo = Math.max, Vo = "[object Function]", Lt = function(e, r) {
1175
+ for (var n = [], o = 0; o < e.length; o += 1)
1176
+ n[o] = e[o];
1177
+ for (var a = 0; a < r.length; a += 1)
1178
+ n[a + e.length] = r[a];
1179
+ return n;
1180
+ }, qo = function(e, r) {
1181
+ for (var n = [], o = r, a = 0; o < e.length; o += 1, a += 1)
1182
+ n[a] = e[o];
1183
+ return n;
1184
+ }, Ko = function(t, e) {
1185
+ for (var r = "", n = 0; n < t.length; n += 1)
1186
+ r += t[n], n + 1 < t.length && (r += e);
1187
+ return r;
1188
+ }, Yo = function(e) {
1189
+ var r = this;
1190
+ if (typeof r != "function" || Wo.apply(r) !== Vo)
1191
+ throw new TypeError(Xo + r);
1192
+ for (var n = qo(arguments, 1), o, a = function() {
1193
+ if (this instanceof o) {
1194
+ var u = r.apply(
1195
+ this,
1196
+ Lt(n, arguments)
1197
+ );
1198
+ return Object(u) === u ? u : this;
1199
+ }
1200
+ return r.apply(
1201
+ e,
1202
+ Lt(n, arguments)
1203
+ );
1204
+ }, i = zo(0, r.length - n.length), l = [], c = 0; c < i; c++)
1205
+ l[c] = "$" + c;
1206
+ if (o = Function("binder", "return function (" + Ko(l, ",") + "){ return binder.apply(this,arguments); }")(a), r.prototype) {
1207
+ var f = function() {
1208
+ };
1209
+ f.prototype = r.prototype, o.prototype = new f(), f.prototype = null;
1210
+ }
1211
+ return o;
1212
+ }, Qo = Yo, Ie = Function.prototype.bind || Qo, ct = Function.prototype.call, Be, Mt;
1213
+ function ir() {
1214
+ return Mt || (Mt = 1, Be = Function.prototype.apply), Be;
1215
+ }
1216
+ var Jo = typeof Reflect < "u" && Reflect && Reflect.apply, Zo = Ie, ea = ir(), ta = ct, ra = Jo, na = ra || Zo.call(ta, ea), oa = Ie, aa = te, ia = ct, la = na, lr = function(e) {
1217
+ if (e.length < 1 || typeof e[0] != "function")
1218
+ throw new aa("a function is required");
1219
+ return la(oa, ia, e);
1220
+ }, Ge, Ft;
1221
+ function ca() {
1222
+ if (Ft) return Ge;
1223
+ Ft = 1;
1224
+ var t = lr, e = nr, r;
1225
+ try {
1226
+ r = /** @type {{ __proto__?: typeof Array.prototype }} */
1227
+ [].__proto__ === Array.prototype;
1228
+ } catch (i) {
1229
+ if (!i || typeof i != "object" || !("code" in i) || i.code !== "ERR_PROTO_ACCESS")
1230
+ throw i;
1231
+ }
1232
+ var n = !!r && e && e(
1233
+ Object.prototype,
1234
+ /** @type {keyof typeof Object.prototype} */
1235
+ "__proto__"
1236
+ ), o = Object, a = o.getPrototypeOf;
1237
+ return Ge = n && typeof n.get == "function" ? t([n.get]) : typeof a == "function" ? (
1238
+ /** @type {import('./get')} */
1239
+ function(l) {
1240
+ return a(l == null ? l : o(l));
1241
+ }
1242
+ ) : !1, Ge;
1243
+ }
1244
+ var He, kt;
1245
+ function ua() {
1246
+ if (kt) return He;
1247
+ kt = 1;
1248
+ var t = or(), e = ar(), r = ca();
1249
+ return He = t ? function(o) {
1250
+ return t(o);
1251
+ } : e ? function(o) {
1252
+ if (!o || typeof o != "object" && typeof o != "function")
1253
+ throw new TypeError("getProto: not an object");
1254
+ return e(o);
1255
+ } : r ? function(o) {
1256
+ return r(o);
1257
+ } : null, He;
1258
+ }
1259
+ var Xe, jt;
1260
+ function sa() {
1261
+ if (jt) return Xe;
1262
+ jt = 1;
1263
+ var t = Function.prototype.call, e = Object.prototype.hasOwnProperty, r = Ie;
1264
+ return Xe = r.call(t, e), Xe;
1265
+ }
1266
+ var v, fa = rr, pa = Oo, ya = Po, da = xo, va = Io, ee = wo, J = te, _a = To, ma = No, ga = Co, ha = Do, Ea = $o, Sa = Lo, Aa = Mo, ba = jo, cr = Function, We = function(t) {
1267
+ try {
1268
+ return cr('"use strict"; return (' + t + ").constructor;")();
1269
+ } catch {
1270
+ }
1271
+ }, ue = nr, Ra = Bo, ze = function() {
1272
+ throw new J();
1273
+ }, Oa = ue ? function() {
1274
+ try {
1275
+ return arguments.callee, ze;
1276
+ } catch {
1277
+ try {
1278
+ return ue(arguments, "callee").get;
1279
+ } catch {
1280
+ return ze;
1281
+ }
1282
+ }
1283
+ }() : ze, K = Ho()(), S = ua(), Pa = ar(), xa = or(), ur = ir(), se = ct, Q = {}, Ia = typeof Uint8Array > "u" || !S ? v : S(Uint8Array), W = {
1284
+ __proto__: null,
1285
+ "%AggregateError%": typeof AggregateError > "u" ? v : AggregateError,
1286
+ "%Array%": Array,
1287
+ "%ArrayBuffer%": typeof ArrayBuffer > "u" ? v : ArrayBuffer,
1288
+ "%ArrayIteratorPrototype%": K && S ? S([][Symbol.iterator]()) : v,
1289
+ "%AsyncFromSyncIteratorPrototype%": v,
1290
+ "%AsyncFunction%": Q,
1291
+ "%AsyncGenerator%": Q,
1292
+ "%AsyncGeneratorFunction%": Q,
1293
+ "%AsyncIteratorPrototype%": Q,
1294
+ "%Atomics%": typeof Atomics > "u" ? v : Atomics,
1295
+ "%BigInt%": typeof BigInt > "u" ? v : BigInt,
1296
+ "%BigInt64Array%": typeof BigInt64Array > "u" ? v : BigInt64Array,
1297
+ "%BigUint64Array%": typeof BigUint64Array > "u" ? v : BigUint64Array,
1298
+ "%Boolean%": Boolean,
1299
+ "%DataView%": typeof DataView > "u" ? v : DataView,
1300
+ "%Date%": Date,
1301
+ "%decodeURI%": decodeURI,
1302
+ "%decodeURIComponent%": decodeURIComponent,
1303
+ "%encodeURI%": encodeURI,
1304
+ "%encodeURIComponent%": encodeURIComponent,
1305
+ "%Error%": pa,
1306
+ "%eval%": eval,
1307
+ // eslint-disable-line no-eval
1308
+ "%EvalError%": ya,
1309
+ "%Float16Array%": typeof Float16Array > "u" ? v : Float16Array,
1310
+ "%Float32Array%": typeof Float32Array > "u" ? v : Float32Array,
1311
+ "%Float64Array%": typeof Float64Array > "u" ? v : Float64Array,
1312
+ "%FinalizationRegistry%": typeof FinalizationRegistry > "u" ? v : FinalizationRegistry,
1313
+ "%Function%": cr,
1314
+ "%GeneratorFunction%": Q,
1315
+ "%Int8Array%": typeof Int8Array > "u" ? v : Int8Array,
1316
+ "%Int16Array%": typeof Int16Array > "u" ? v : Int16Array,
1317
+ "%Int32Array%": typeof Int32Array > "u" ? v : Int32Array,
1318
+ "%isFinite%": isFinite,
1319
+ "%isNaN%": isNaN,
1320
+ "%IteratorPrototype%": K && S ? S(S([][Symbol.iterator]())) : v,
1321
+ "%JSON%": typeof JSON == "object" ? JSON : v,
1322
+ "%Map%": typeof Map > "u" ? v : Map,
1323
+ "%MapIteratorPrototype%": typeof Map > "u" || !K || !S ? v : S((/* @__PURE__ */ new Map())[Symbol.iterator]()),
1324
+ "%Math%": Math,
1325
+ "%Number%": Number,
1326
+ "%Object%": fa,
1327
+ "%Object.getOwnPropertyDescriptor%": ue,
1328
+ "%parseFloat%": parseFloat,
1329
+ "%parseInt%": parseInt,
1330
+ "%Promise%": typeof Promise > "u" ? v : Promise,
1331
+ "%Proxy%": typeof Proxy > "u" ? v : Proxy,
1332
+ "%RangeError%": da,
1333
+ "%ReferenceError%": va,
1334
+ "%Reflect%": typeof Reflect > "u" ? v : Reflect,
1335
+ "%RegExp%": RegExp,
1336
+ "%Set%": typeof Set > "u" ? v : Set,
1337
+ "%SetIteratorPrototype%": typeof Set > "u" || !K || !S ? v : S((/* @__PURE__ */ new Set())[Symbol.iterator]()),
1338
+ "%SharedArrayBuffer%": typeof SharedArrayBuffer > "u" ? v : SharedArrayBuffer,
1339
+ "%String%": String,
1340
+ "%StringIteratorPrototype%": K && S ? S(""[Symbol.iterator]()) : v,
1341
+ "%Symbol%": K ? Symbol : v,
1342
+ "%SyntaxError%": ee,
1343
+ "%ThrowTypeError%": Oa,
1344
+ "%TypedArray%": Ia,
1345
+ "%TypeError%": J,
1346
+ "%Uint8Array%": typeof Uint8Array > "u" ? v : Uint8Array,
1347
+ "%Uint8ClampedArray%": typeof Uint8ClampedArray > "u" ? v : Uint8ClampedArray,
1348
+ "%Uint16Array%": typeof Uint16Array > "u" ? v : Uint16Array,
1349
+ "%Uint32Array%": typeof Uint32Array > "u" ? v : Uint32Array,
1350
+ "%URIError%": _a,
1351
+ "%WeakMap%": typeof WeakMap > "u" ? v : WeakMap,
1352
+ "%WeakRef%": typeof WeakRef > "u" ? v : WeakRef,
1353
+ "%WeakSet%": typeof WeakSet > "u" ? v : WeakSet,
1354
+ "%Function.prototype.call%": se,
1355
+ "%Function.prototype.apply%": ur,
1356
+ "%Object.defineProperty%": Ra,
1357
+ "%Object.getPrototypeOf%": Pa,
1358
+ "%Math.abs%": ma,
1359
+ "%Math.floor%": ga,
1360
+ "%Math.max%": ha,
1361
+ "%Math.min%": Ea,
1362
+ "%Math.pow%": Sa,
1363
+ "%Math.round%": Aa,
1364
+ "%Math.sign%": ba,
1365
+ "%Reflect.getPrototypeOf%": xa
1366
+ };
1367
+ if (S)
1368
+ try {
1369
+ null.error;
1370
+ } catch (t) {
1371
+ var wa = S(S(t));
1372
+ W["%Error.prototype%"] = wa;
1373
+ }
1374
+ var Ta = function t(e) {
1375
+ var r;
1376
+ if (e === "%AsyncFunction%")
1377
+ r = We("async function () {}");
1378
+ else if (e === "%GeneratorFunction%")
1379
+ r = We("function* () {}");
1380
+ else if (e === "%AsyncGeneratorFunction%")
1381
+ r = We("async function* () {}");
1382
+ else if (e === "%AsyncGenerator%") {
1383
+ var n = t("%AsyncGeneratorFunction%");
1384
+ n && (r = n.prototype);
1385
+ } else if (e === "%AsyncIteratorPrototype%") {
1386
+ var o = t("%AsyncGenerator%");
1387
+ o && S && (r = S(o.prototype));
1388
+ }
1389
+ return W[e] = r, r;
1390
+ }, Ut = {
1391
+ __proto__: null,
1392
+ "%ArrayBufferPrototype%": ["ArrayBuffer", "prototype"],
1393
+ "%ArrayPrototype%": ["Array", "prototype"],
1394
+ "%ArrayProto_entries%": ["Array", "prototype", "entries"],
1395
+ "%ArrayProto_forEach%": ["Array", "prototype", "forEach"],
1396
+ "%ArrayProto_keys%": ["Array", "prototype", "keys"],
1397
+ "%ArrayProto_values%": ["Array", "prototype", "values"],
1398
+ "%AsyncFunctionPrototype%": ["AsyncFunction", "prototype"],
1399
+ "%AsyncGenerator%": ["AsyncGeneratorFunction", "prototype"],
1400
+ "%AsyncGeneratorPrototype%": ["AsyncGeneratorFunction", "prototype", "prototype"],
1401
+ "%BooleanPrototype%": ["Boolean", "prototype"],
1402
+ "%DataViewPrototype%": ["DataView", "prototype"],
1403
+ "%DatePrototype%": ["Date", "prototype"],
1404
+ "%ErrorPrototype%": ["Error", "prototype"],
1405
+ "%EvalErrorPrototype%": ["EvalError", "prototype"],
1406
+ "%Float32ArrayPrototype%": ["Float32Array", "prototype"],
1407
+ "%Float64ArrayPrototype%": ["Float64Array", "prototype"],
1408
+ "%FunctionPrototype%": ["Function", "prototype"],
1409
+ "%Generator%": ["GeneratorFunction", "prototype"],
1410
+ "%GeneratorPrototype%": ["GeneratorFunction", "prototype", "prototype"],
1411
+ "%Int8ArrayPrototype%": ["Int8Array", "prototype"],
1412
+ "%Int16ArrayPrototype%": ["Int16Array", "prototype"],
1413
+ "%Int32ArrayPrototype%": ["Int32Array", "prototype"],
1414
+ "%JSONParse%": ["JSON", "parse"],
1415
+ "%JSONStringify%": ["JSON", "stringify"],
1416
+ "%MapPrototype%": ["Map", "prototype"],
1417
+ "%NumberPrototype%": ["Number", "prototype"],
1418
+ "%ObjectPrototype%": ["Object", "prototype"],
1419
+ "%ObjProto_toString%": ["Object", "prototype", "toString"],
1420
+ "%ObjProto_valueOf%": ["Object", "prototype", "valueOf"],
1421
+ "%PromisePrototype%": ["Promise", "prototype"],
1422
+ "%PromiseProto_then%": ["Promise", "prototype", "then"],
1423
+ "%Promise_all%": ["Promise", "all"],
1424
+ "%Promise_reject%": ["Promise", "reject"],
1425
+ "%Promise_resolve%": ["Promise", "resolve"],
1426
+ "%RangeErrorPrototype%": ["RangeError", "prototype"],
1427
+ "%ReferenceErrorPrototype%": ["ReferenceError", "prototype"],
1428
+ "%RegExpPrototype%": ["RegExp", "prototype"],
1429
+ "%SetPrototype%": ["Set", "prototype"],
1430
+ "%SharedArrayBufferPrototype%": ["SharedArrayBuffer", "prototype"],
1431
+ "%StringPrototype%": ["String", "prototype"],
1432
+ "%SymbolPrototype%": ["Symbol", "prototype"],
1433
+ "%SyntaxErrorPrototype%": ["SyntaxError", "prototype"],
1434
+ "%TypedArrayPrototype%": ["TypedArray", "prototype"],
1435
+ "%TypeErrorPrototype%": ["TypeError", "prototype"],
1436
+ "%Uint8ArrayPrototype%": ["Uint8Array", "prototype"],
1437
+ "%Uint8ClampedArrayPrototype%": ["Uint8ClampedArray", "prototype"],
1438
+ "%Uint16ArrayPrototype%": ["Uint16Array", "prototype"],
1439
+ "%Uint32ArrayPrototype%": ["Uint32Array", "prototype"],
1440
+ "%URIErrorPrototype%": ["URIError", "prototype"],
1441
+ "%WeakMapPrototype%": ["WeakMap", "prototype"],
1442
+ "%WeakSetPrototype%": ["WeakSet", "prototype"]
1443
+ }, fe = Ie, be = sa(), Na = fe.call(se, Array.prototype.concat), Ca = fe.call(ur, Array.prototype.splice), Bt = fe.call(se, String.prototype.replace), Re = fe.call(se, String.prototype.slice), Da = fe.call(se, RegExp.prototype.exec), $a = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g, La = /\\(\\)?/g, Ma = function(e) {
1444
+ var r = Re(e, 0, 1), n = Re(e, -1);
1445
+ if (r === "%" && n !== "%")
1446
+ throw new ee("invalid intrinsic syntax, expected closing `%`");
1447
+ if (n === "%" && r !== "%")
1448
+ throw new ee("invalid intrinsic syntax, expected opening `%`");
1449
+ var o = [];
1450
+ return Bt(e, $a, function(a, i, l, c) {
1451
+ o[o.length] = l ? Bt(c, La, "$1") : i || a;
1452
+ }), o;
1453
+ }, Fa = function(e, r) {
1454
+ var n = e, o;
1455
+ if (be(Ut, n) && (o = Ut[n], n = "%" + o[0] + "%"), be(W, n)) {
1456
+ var a = W[n];
1457
+ if (a === Q && (a = Ta(n)), typeof a > "u" && !r)
1458
+ throw new J("intrinsic " + e + " exists, but is not available. Please file an issue!");
1459
+ return {
1460
+ alias: o,
1461
+ name: n,
1462
+ value: a
1463
+ };
1464
+ }
1465
+ throw new ee("intrinsic " + e + " does not exist!");
1466
+ }, ut = function(e, r) {
1467
+ if (typeof e != "string" || e.length === 0)
1468
+ throw new J("intrinsic name must be a non-empty string");
1469
+ if (arguments.length > 1 && typeof r != "boolean")
1470
+ throw new J('"allowMissing" argument must be a boolean');
1471
+ if (Da(/^%?[^%]*%?$/, e) === null)
1472
+ throw new ee("`%` may not be present anywhere but at the beginning and end of the intrinsic name");
1473
+ var n = Ma(e), o = n.length > 0 ? n[0] : "", a = Fa("%" + o + "%", r), i = a.name, l = a.value, c = !1, f = a.alias;
1474
+ f && (o = f[0], Ca(n, Na([0, 1], f)));
1475
+ for (var u = 1, p = !0; u < n.length; u += 1) {
1476
+ var s = n[u], d = Re(s, 0, 1), y = Re(s, -1);
1477
+ if ((d === '"' || d === "'" || d === "`" || y === '"' || y === "'" || y === "`") && d !== y)
1478
+ throw new ee("property names with quotes must have matching quotes");
1479
+ if ((s === "constructor" || !p) && (c = !0), o += "." + s, i = "%" + o + "%", be(W, i))
1480
+ l = W[i];
1481
+ else if (l != null) {
1482
+ if (!(s in l)) {
1483
+ if (!r)
1484
+ throw new J("base intrinsic for " + e + " exists, but the property is not available.");
1485
+ return;
1486
+ }
1487
+ if (ue && u + 1 >= n.length) {
1488
+ var h = ue(l, s);
1489
+ p = !!h, p && "get" in h && !("originalValue" in h.get) ? l = h.get : l = l[s];
1490
+ } else
1491
+ p = be(l, s), l = l[s];
1492
+ p && !c && (W[i] = l);
1493
+ }
1494
+ }
1495
+ return l;
1496
+ }, sr = ut, fr = lr, ka = fr([sr("%String.prototype.indexOf%")]), pr = function(e, r) {
1497
+ var n = (
1498
+ /** @type {(this: unknown, ...args: unknown[]) => unknown} */
1499
+ sr(e, !!r)
1500
+ );
1501
+ return typeof n == "function" && ka(e, ".prototype.") > -1 ? fr(
1502
+ /** @type {const} */
1503
+ [n]
1504
+ ) : n;
1505
+ }, ja = ut, pe = pr, Ua = Pe, Ba = te, Gt = ja("%Map%", !0), Ga = pe("Map.prototype.get", !0), Ha = pe("Map.prototype.set", !0), Xa = pe("Map.prototype.has", !0), Wa = pe("Map.prototype.delete", !0), za = pe("Map.prototype.size", !0), yr = !!Gt && /** @type {Exclude<import('.'), false>} */
1506
+ function() {
1507
+ var e, r = {
1508
+ assert: function(n) {
1509
+ if (!r.has(n))
1510
+ throw new Ba("Side channel does not contain " + Ua(n));
1511
+ },
1512
+ delete: function(n) {
1513
+ if (e) {
1514
+ var o = Wa(e, n);
1515
+ return za(e) === 0 && (e = void 0), o;
1516
+ }
1517
+ return !1;
1518
+ },
1519
+ get: function(n) {
1520
+ if (e)
1521
+ return Ga(e, n);
1522
+ },
1523
+ has: function(n) {
1524
+ return e ? Xa(e, n) : !1;
1525
+ },
1526
+ set: function(n, o) {
1527
+ e || (e = new Gt()), Ha(e, n, o);
1528
+ }
1529
+ };
1530
+ return r;
1531
+ }, Va = ut, we = pr, qa = Pe, _e = yr, Ka = te, Y = Va("%WeakMap%", !0), Ya = we("WeakMap.prototype.get", !0), Qa = we("WeakMap.prototype.set", !0), Ja = we("WeakMap.prototype.has", !0), Za = we("WeakMap.prototype.delete", !0), ei = Y ? (
1532
+ /** @type {Exclude<import('.'), false>} */
1533
+ function() {
1534
+ var e, r, n = {
1535
+ assert: function(o) {
1536
+ if (!n.has(o))
1537
+ throw new Ka("Side channel does not contain " + qa(o));
1538
+ },
1539
+ delete: function(o) {
1540
+ if (Y && o && (typeof o == "object" || typeof o == "function")) {
1541
+ if (e)
1542
+ return Za(e, o);
1543
+ } else if (_e && r)
1544
+ return r.delete(o);
1545
+ return !1;
1546
+ },
1547
+ get: function(o) {
1548
+ return Y && o && (typeof o == "object" || typeof o == "function") && e ? Ya(e, o) : r && r.get(o);
1549
+ },
1550
+ has: function(o) {
1551
+ return Y && o && (typeof o == "object" || typeof o == "function") && e ? Ja(e, o) : !!r && r.has(o);
1552
+ },
1553
+ set: function(o, a) {
1554
+ Y && o && (typeof o == "object" || typeof o == "function") ? (e || (e = new Y()), Qa(e, o, a)) : _e && (r || (r = _e()), r.set(o, a));
1555
+ }
1556
+ };
1557
+ return n;
1558
+ }
1559
+ ) : _e, ti = te, ri = Pe, ni = Ro, oi = yr, ai = ei, ii = ai || oi || ni, dr = function() {
1560
+ var e, r = {
1561
+ assert: function(n) {
1562
+ if (!r.has(n))
1563
+ throw new ti("Side channel does not contain " + ri(n));
1564
+ },
1565
+ delete: function(n) {
1566
+ return !!e && e.delete(n);
1567
+ },
1568
+ get: function(n) {
1569
+ return e && e.get(n);
1570
+ },
1571
+ has: function(n) {
1572
+ return !!e && e.has(n);
1573
+ },
1574
+ set: function(n, o) {
1575
+ e || (e = ii()), e.set(n, o);
1576
+ }
1577
+ };
1578
+ return r;
1579
+ }, li = String.prototype.replace, ci = /%20/g, Ve = {
1580
+ RFC1738: "RFC1738",
1581
+ RFC3986: "RFC3986"
1582
+ }, st = {
1583
+ default: Ve.RFC3986,
1584
+ formatters: {
1585
+ RFC1738: function(t) {
1586
+ return li.call(t, ci, "+");
1587
+ },
1588
+ RFC3986: function(t) {
1589
+ return String(t);
1590
+ }
1591
+ },
1592
+ RFC1738: Ve.RFC1738,
1593
+ RFC3986: Ve.RFC3986
1594
+ }, ui = st, si = dr, qe = Object.prototype.hasOwnProperty, X = Array.isArray, Te = si(), vr = function(e, r) {
1595
+ return Te.set(e, r), e;
1596
+ }, Oe = function(e) {
1597
+ return Te.has(e);
1598
+ }, nt = function(e) {
1599
+ return Te.get(e);
1600
+ }, _r = function(e, r) {
1601
+ Te.set(e, r);
1602
+ }, N = function() {
1603
+ for (var t = [], e = 0; e < 256; ++e)
1604
+ t.push("%" + ((e < 16 ? "0" : "") + e.toString(16)).toUpperCase());
1605
+ return t;
1606
+ }(), fi = function(e) {
1607
+ for (; e.length > 1; ) {
1608
+ var r = e.pop(), n = r.obj[r.prop];
1609
+ if (X(n)) {
1610
+ for (var o = [], a = 0; a < n.length; ++a)
1611
+ typeof n[a] < "u" && o.push(n[a]);
1612
+ r.obj[r.prop] = o;
1613
+ }
1614
+ }
1615
+ }, ft = function(e, r) {
1616
+ for (var n = r && r.plainObjects ? { __proto__: null } : {}, o = 0; o < e.length; ++o)
1617
+ typeof e[o] < "u" && (n[o] = e[o]);
1618
+ return n;
1619
+ }, pi = function t(e, r, n) {
1620
+ if (!r)
1621
+ return e;
1622
+ if (typeof r != "object" && typeof r != "function") {
1623
+ if (X(e))
1624
+ e.push(r);
1625
+ else if (e && typeof e == "object")
1626
+ if (Oe(e)) {
1627
+ var o = nt(e) + 1;
1628
+ e[o] = r, _r(e, o);
1629
+ } else (n && (n.plainObjects || n.allowPrototypes) || !qe.call(Object.prototype, r)) && (e[r] = !0);
1630
+ else
1631
+ return [e, r];
1632
+ return e;
1633
+ }
1634
+ if (!e || typeof e != "object") {
1635
+ if (Oe(r)) {
1636
+ for (var a = Object.keys(r), i = n && n.plainObjects ? { __proto__: null, 0: e } : { 0: e }, l = 0; l < a.length; l++) {
1637
+ var c = parseInt(a[l], 10);
1638
+ i[c + 1] = r[a[l]];
1639
+ }
1640
+ return vr(i, nt(r) + 1);
1641
+ }
1642
+ return [e].concat(r);
1643
+ }
1644
+ var f = e;
1645
+ return X(e) && !X(r) && (f = ft(e, n)), X(e) && X(r) ? (r.forEach(function(u, p) {
1646
+ if (qe.call(e, p)) {
1647
+ var s = e[p];
1648
+ s && typeof s == "object" && u && typeof u == "object" ? e[p] = t(s, u, n) : e.push(u);
1649
+ } else
1650
+ e[p] = u;
1651
+ }), e) : Object.keys(r).reduce(function(u, p) {
1652
+ var s = r[p];
1653
+ return qe.call(u, p) ? u[p] = t(u[p], s, n) : u[p] = s, u;
1654
+ }, f);
1655
+ }, yi = function(e, r) {
1656
+ return Object.keys(r).reduce(function(n, o) {
1657
+ return n[o] = r[o], n;
1658
+ }, e);
1659
+ }, di = function(t, e, r) {
1660
+ var n = t.replace(/\+/g, " ");
1661
+ if (r === "iso-8859-1")
1662
+ return n.replace(/%[0-9a-f]{2}/gi, unescape);
1663
+ try {
1664
+ return decodeURIComponent(n);
1665
+ } catch {
1666
+ return n;
1667
+ }
1668
+ }, Ke = 1024, vi = function(e, r, n, o, a) {
1669
+ if (e.length === 0)
1670
+ return e;
1671
+ var i = e;
1672
+ if (typeof e == "symbol" ? i = Symbol.prototype.toString.call(e) : typeof e != "string" && (i = String(e)), n === "iso-8859-1")
1673
+ return escape(i).replace(/%u[0-9a-f]{4}/gi, function(d) {
1674
+ return "%26%23" + parseInt(d.slice(2), 16) + "%3B";
1675
+ });
1676
+ for (var l = "", c = 0; c < i.length; c += Ke) {
1677
+ for (var f = i.length >= Ke ? i.slice(c, c + Ke) : i, u = [], p = 0; p < f.length; ++p) {
1678
+ var s = f.charCodeAt(p);
1679
+ if (s === 45 || s === 46 || s === 95 || s === 126 || s >= 48 && s <= 57 || s >= 65 && s <= 90 || s >= 97 && s <= 122 || a === ui.RFC1738 && (s === 40 || s === 41)) {
1680
+ u[u.length] = f.charAt(p);
1681
+ continue;
1682
+ }
1683
+ if (s < 128) {
1684
+ u[u.length] = N[s];
1685
+ continue;
1686
+ }
1687
+ if (s < 2048) {
1688
+ u[u.length] = N[192 | s >> 6] + N[128 | s & 63];
1689
+ continue;
1690
+ }
1691
+ if (s < 55296 || s >= 57344) {
1692
+ u[u.length] = N[224 | s >> 12] + N[128 | s >> 6 & 63] + N[128 | s & 63];
1693
+ continue;
1694
+ }
1695
+ p += 1, s = 65536 + ((s & 1023) << 10 | f.charCodeAt(p) & 1023), u[u.length] = N[240 | s >> 18] + N[128 | s >> 12 & 63] + N[128 | s >> 6 & 63] + N[128 | s & 63];
1696
+ }
1697
+ l += u.join("");
1698
+ }
1699
+ return l;
1700
+ }, _i = function(e) {
1701
+ for (var r = [{ obj: { o: e }, prop: "o" }], n = [], o = 0; o < r.length; ++o)
1702
+ for (var a = r[o], i = a.obj[a.prop], l = Object.keys(i), c = 0; c < l.length; ++c) {
1703
+ var f = l[c], u = i[f];
1704
+ typeof u == "object" && u !== null && n.indexOf(u) === -1 && (r.push({ obj: i, prop: f }), n.push(u));
1705
+ }
1706
+ return fi(r), e;
1707
+ }, mi = function(e) {
1708
+ return Object.prototype.toString.call(e) === "[object RegExp]";
1709
+ }, gi = function(e) {
1710
+ return !e || typeof e != "object" ? !1 : !!(e.constructor && e.constructor.isBuffer && e.constructor.isBuffer(e));
1711
+ }, hi = function(e, r, n, o) {
1712
+ if (Oe(e)) {
1713
+ var a = nt(e) + 1;
1714
+ return e[a] = r, _r(e, a), e;
1715
+ }
1716
+ var i = [].concat(e, r);
1717
+ return i.length > n ? vr(ft(i, { plainObjects: o }), i.length - 1) : i;
1718
+ }, Ei = function(e, r) {
1719
+ if (X(e)) {
1720
+ for (var n = [], o = 0; o < e.length; o += 1)
1721
+ n.push(r(e[o]));
1722
+ return n;
1723
+ }
1724
+ return r(e);
1725
+ }, mr = {
1726
+ arrayToObject: ft,
1727
+ assign: yi,
1728
+ combine: hi,
1729
+ compact: _i,
1730
+ decode: di,
1731
+ encode: vi,
1732
+ isBuffer: gi,
1733
+ isOverflow: Oe,
1734
+ isRegExp: mi,
1735
+ maybeMap: Ei,
1736
+ merge: pi
1737
+ }, gr = dr, he = mr, ce = st, Si = Object.prototype.hasOwnProperty, hr = {
1738
+ brackets: function(e) {
1739
+ return e + "[]";
1740
+ },
1741
+ comma: "comma",
1742
+ indices: function(e, r) {
1743
+ return e + "[" + r + "]";
1744
+ },
1745
+ repeat: function(e) {
1746
+ return e;
1747
+ }
1748
+ }, C = Array.isArray, Ai = Array.prototype.push, Er = function(t, e) {
1749
+ Ai.apply(t, C(e) ? e : [e]);
1750
+ }, bi = Date.prototype.toISOString, Ht = ce.default, g = {
1751
+ addQueryPrefix: !1,
1752
+ allowDots: !1,
1753
+ allowEmptyArrays: !1,
1754
+ arrayFormat: "indices",
1755
+ charset: "utf-8",
1756
+ charsetSentinel: !1,
1757
+ commaRoundTrip: !1,
1758
+ delimiter: "&",
1759
+ encode: !0,
1760
+ encodeDotInKeys: !1,
1761
+ encoder: he.encode,
1762
+ encodeValuesOnly: !1,
1763
+ filter: void 0,
1764
+ format: Ht,
1765
+ formatter: ce.formatters[Ht],
1766
+ // deprecated
1767
+ indices: !1,
1768
+ serializeDate: function(e) {
1769
+ return bi.call(e);
1770
+ },
1771
+ skipNulls: !1,
1772
+ strictNullHandling: !1
1773
+ }, Ri = function(e) {
1774
+ return typeof e == "string" || typeof e == "number" || typeof e == "boolean" || typeof e == "symbol" || typeof e == "bigint";
1775
+ }, Ye = {}, Oi = function t(e, r, n, o, a, i, l, c, f, u, p, s, d, y, h, A, O, P) {
1776
+ for (var _ = e, x = P, I = 0, G = !1; (x = x.get(Ye)) !== void 0 && !G; ) {
1777
+ var F = x.get(e);
1778
+ if (I += 1, typeof F < "u") {
1779
+ if (F === I)
1780
+ throw new RangeError("Cyclic object value");
1781
+ G = !0;
1782
+ }
1783
+ typeof x.get(Ye) > "u" && (I = 0);
1784
+ }
1785
+ if (typeof u == "function" ? _ = u(r, _) : _ instanceof Date ? _ = d(_) : n === "comma" && C(_) && (_ = he.maybeMap(_, function(ne) {
1786
+ return ne instanceof Date ? d(ne) : ne;
1787
+ })), _ === null) {
1788
+ if (i)
1789
+ return f && !A ? f(r, g.encoder, O, "key", y) : r;
1790
+ _ = "";
1791
+ }
1792
+ if (Ri(_) || he.isBuffer(_)) {
1793
+ if (f) {
1794
+ var V = A ? r : f(r, g.encoder, O, "key", y);
1795
+ return [h(V) + "=" + h(f(_, g.encoder, O, "value", y))];
1796
+ }
1797
+ return [h(r) + "=" + h(String(_))];
1798
+ }
1799
+ var $ = [];
1800
+ if (typeof _ > "u")
1801
+ return $;
1802
+ var w;
1803
+ if (n === "comma" && C(_))
1804
+ A && f && (_ = he.maybeMap(_, f)), w = [{ value: _.length > 0 ? _.join(",") || null : void 0 }];
1805
+ else if (C(u))
1806
+ w = u;
1807
+ else {
1808
+ var q = Object.keys(_);
1809
+ w = p ? q.sort(p) : q;
1810
+ }
1811
+ var k = c ? String(r).replace(/\./g, "%2E") : String(r), b = o && C(_) && _.length === 1 ? k + "[]" : k;
1812
+ if (a && C(_) && _.length === 0)
1813
+ return b + "[]";
1814
+ for (var T = 0; T < w.length; ++T) {
1815
+ var R = w[T], H = typeof R == "object" && R && typeof R.value < "u" ? R.value : _[R];
1816
+ if (!(l && H === null)) {
1817
+ var re = s && c ? String(R).replace(/\./g, "%2E") : String(R), Ce = C(_) ? typeof n == "function" ? n(b, re) : b : b + (s ? "." + re : "[" + re + "]");
1818
+ P.set(e, I);
1819
+ var ye = gr();
1820
+ ye.set(Ye, P), Er($, t(
1821
+ H,
1822
+ Ce,
1823
+ n,
1824
+ o,
1825
+ a,
1826
+ i,
1827
+ l,
1828
+ c,
1829
+ n === "comma" && A && C(_) ? null : f,
1830
+ u,
1831
+ p,
1832
+ s,
1833
+ d,
1834
+ y,
1835
+ h,
1836
+ A,
1837
+ O,
1838
+ ye
1839
+ ));
1840
+ }
1841
+ }
1842
+ return $;
1843
+ }, Pi = function(e) {
1844
+ if (!e)
1845
+ return g;
1846
+ if (typeof e.allowEmptyArrays < "u" && typeof e.allowEmptyArrays != "boolean")
1847
+ throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");
1848
+ if (typeof e.encodeDotInKeys < "u" && typeof e.encodeDotInKeys != "boolean")
1849
+ throw new TypeError("`encodeDotInKeys` option can only be `true` or `false`, when provided");
1850
+ if (e.encoder !== null && typeof e.encoder < "u" && typeof e.encoder != "function")
1851
+ throw new TypeError("Encoder has to be a function.");
1852
+ var r = e.charset || g.charset;
1853
+ if (typeof e.charset < "u" && e.charset !== "utf-8" && e.charset !== "iso-8859-1")
1854
+ throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
1855
+ var n = ce.default;
1856
+ if (typeof e.format < "u") {
1857
+ if (!Si.call(ce.formatters, e.format))
1858
+ throw new TypeError("Unknown format option provided.");
1859
+ n = e.format;
1860
+ }
1861
+ var o = ce.formatters[n], a = g.filter;
1862
+ (typeof e.filter == "function" || C(e.filter)) && (a = e.filter);
1863
+ var i;
1864
+ if (e.arrayFormat in hr ? i = e.arrayFormat : "indices" in e ? i = e.indices ? "indices" : "repeat" : i = g.arrayFormat, "commaRoundTrip" in e && typeof e.commaRoundTrip != "boolean")
1865
+ throw new TypeError("`commaRoundTrip` must be a boolean, or absent");
1866
+ var l = typeof e.allowDots > "u" ? e.encodeDotInKeys === !0 ? !0 : g.allowDots : !!e.allowDots;
1867
+ return {
1868
+ addQueryPrefix: typeof e.addQueryPrefix == "boolean" ? e.addQueryPrefix : g.addQueryPrefix,
1869
+ allowDots: l,
1870
+ allowEmptyArrays: typeof e.allowEmptyArrays == "boolean" ? !!e.allowEmptyArrays : g.allowEmptyArrays,
1871
+ arrayFormat: i,
1872
+ charset: r,
1873
+ charsetSentinel: typeof e.charsetSentinel == "boolean" ? e.charsetSentinel : g.charsetSentinel,
1874
+ commaRoundTrip: !!e.commaRoundTrip,
1875
+ delimiter: typeof e.delimiter > "u" ? g.delimiter : e.delimiter,
1876
+ encode: typeof e.encode == "boolean" ? e.encode : g.encode,
1877
+ encodeDotInKeys: typeof e.encodeDotInKeys == "boolean" ? e.encodeDotInKeys : g.encodeDotInKeys,
1878
+ encoder: typeof e.encoder == "function" ? e.encoder : g.encoder,
1879
+ encodeValuesOnly: typeof e.encodeValuesOnly == "boolean" ? e.encodeValuesOnly : g.encodeValuesOnly,
1880
+ filter: a,
1881
+ format: n,
1882
+ formatter: o,
1883
+ serializeDate: typeof e.serializeDate == "function" ? e.serializeDate : g.serializeDate,
1884
+ skipNulls: typeof e.skipNulls == "boolean" ? e.skipNulls : g.skipNulls,
1885
+ sort: typeof e.sort == "function" ? e.sort : null,
1886
+ strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling : g.strictNullHandling
1887
+ };
1888
+ }, xi = function(t, e) {
1889
+ var r = t, n = Pi(e), o, a;
1890
+ typeof n.filter == "function" ? (a = n.filter, r = a("", r)) : C(n.filter) && (a = n.filter, o = a);
1891
+ var i = [];
1892
+ if (typeof r != "object" || r === null)
1893
+ return "";
1894
+ var l = hr[n.arrayFormat], c = l === "comma" && n.commaRoundTrip;
1895
+ o || (o = Object.keys(r)), n.sort && o.sort(n.sort);
1896
+ for (var f = gr(), u = 0; u < o.length; ++u) {
1897
+ var p = o[u], s = r[p];
1898
+ n.skipNulls && s === null || Er(i, Oi(
1899
+ s,
1900
+ p,
1901
+ l,
1902
+ c,
1903
+ n.allowEmptyArrays,
1904
+ n.strictNullHandling,
1905
+ n.skipNulls,
1906
+ n.encodeDotInKeys,
1907
+ n.encode ? n.encoder : null,
1908
+ n.filter,
1909
+ n.sort,
1910
+ n.allowDots,
1911
+ n.serializeDate,
1912
+ n.format,
1913
+ n.formatter,
1914
+ n.encodeValuesOnly,
1915
+ n.charset,
1916
+ f
1917
+ ));
1918
+ }
1919
+ var d = i.join(n.delimiter), y = n.addQueryPrefix === !0 ? "?" : "";
1920
+ return n.charsetSentinel && (n.charset === "iso-8859-1" ? y += "utf8=%26%2310003%3B&" : y += "utf8=%E2%9C%93&"), d.length > 0 ? y + d : "";
1921
+ }, U = mr, Ee = Object.prototype.hasOwnProperty, Xt = Array.isArray, m = {
1922
+ allowDots: !1,
1923
+ allowEmptyArrays: !1,
1924
+ allowPrototypes: !1,
1925
+ allowSparse: !1,
1926
+ arrayLimit: 20,
1927
+ charset: "utf-8",
1928
+ charsetSentinel: !1,
1929
+ comma: !1,
1930
+ decodeDotInKeys: !1,
1931
+ decoder: U.decode,
1932
+ delimiter: "&",
1933
+ depth: 5,
1934
+ duplicates: "combine",
1935
+ ignoreQueryPrefix: !1,
1936
+ interpretNumericEntities: !1,
1937
+ parameterLimit: 1e3,
1938
+ parseArrays: !0,
1939
+ plainObjects: !1,
1940
+ strictDepth: !1,
1941
+ strictNullHandling: !1,
1942
+ throwOnLimitExceeded: !1
1943
+ }, Ii = function(t) {
1944
+ return t.replace(/&#(\d+);/g, function(e, r) {
1945
+ return String.fromCharCode(parseInt(r, 10));
1946
+ });
1947
+ }, Sr = function(t, e, r) {
1948
+ if (t && typeof t == "string" && e.comma && t.indexOf(",") > -1)
1949
+ return t.split(",");
1950
+ if (e.throwOnLimitExceeded && r >= e.arrayLimit)
1951
+ throw new RangeError("Array limit exceeded. Only " + e.arrayLimit + " element" + (e.arrayLimit === 1 ? "" : "s") + " allowed in an array.");
1952
+ return t;
1953
+ }, wi = "utf8=%26%2310003%3B", Ti = "utf8=%E2%9C%93", Ni = function(e, r) {
1954
+ var n = { __proto__: null }, o = r.ignoreQueryPrefix ? e.replace(/^\?/, "") : e;
1955
+ o = o.replace(/%5B/gi, "[").replace(/%5D/gi, "]");
1956
+ var a = r.parameterLimit === 1 / 0 ? void 0 : r.parameterLimit, i = o.split(
1957
+ r.delimiter,
1958
+ r.throwOnLimitExceeded ? a + 1 : a
1959
+ );
1960
+ if (r.throwOnLimitExceeded && i.length > a)
1961
+ throw new RangeError("Parameter limit exceeded. Only " + a + " parameter" + (a === 1 ? "" : "s") + " allowed.");
1962
+ var l = -1, c, f = r.charset;
1963
+ if (r.charsetSentinel)
1964
+ for (c = 0; c < i.length; ++c)
1965
+ i[c].indexOf("utf8=") === 0 && (i[c] === Ti ? f = "utf-8" : i[c] === wi && (f = "iso-8859-1"), l = c, c = i.length);
1966
+ for (c = 0; c < i.length; ++c)
1967
+ if (c !== l) {
1968
+ var u = i[c], p = u.indexOf("]="), s = p === -1 ? u.indexOf("=") : p + 1, d, y;
1969
+ if (s === -1 ? (d = r.decoder(u, m.decoder, f, "key"), y = r.strictNullHandling ? null : "") : (d = r.decoder(u.slice(0, s), m.decoder, f, "key"), d !== null && (y = U.maybeMap(
1970
+ Sr(
1971
+ u.slice(s + 1),
1972
+ r,
1973
+ Xt(n[d]) ? n[d].length : 0
1974
+ ),
1975
+ function(A) {
1976
+ return r.decoder(A, m.decoder, f, "value");
1977
+ }
1978
+ ))), y && r.interpretNumericEntities && f === "iso-8859-1" && (y = Ii(String(y))), u.indexOf("[]=") > -1 && (y = Xt(y) ? [y] : y), d !== null) {
1979
+ var h = Ee.call(n, d);
1980
+ h && r.duplicates === "combine" ? n[d] = U.combine(
1981
+ n[d],
1982
+ y,
1983
+ r.arrayLimit,
1984
+ r.plainObjects
1985
+ ) : (!h || r.duplicates === "last") && (n[d] = y);
1986
+ }
1987
+ }
1988
+ return n;
1989
+ }, Ci = function(t, e, r, n) {
1990
+ var o = 0;
1991
+ if (t.length > 0 && t[t.length - 1] === "[]") {
1992
+ var a = t.slice(0, -1).join("");
1993
+ o = Array.isArray(e) && e[a] ? e[a].length : 0;
1994
+ }
1995
+ for (var i = n ? e : Sr(e, r, o), l = t.length - 1; l >= 0; --l) {
1996
+ var c, f = t[l];
1997
+ if (f === "[]" && r.parseArrays)
1998
+ U.isOverflow(i) ? c = i : c = r.allowEmptyArrays && (i === "" || r.strictNullHandling && i === null) ? [] : U.combine(
1999
+ [],
2000
+ i,
2001
+ r.arrayLimit,
2002
+ r.plainObjects
2003
+ );
2004
+ else {
2005
+ c = r.plainObjects ? { __proto__: null } : {};
2006
+ var u = f.charAt(0) === "[" && f.charAt(f.length - 1) === "]" ? f.slice(1, -1) : f, p = r.decodeDotInKeys ? u.replace(/%2E/g, ".") : u, s = parseInt(p, 10);
2007
+ !r.parseArrays && p === "" ? c = { 0: i } : !isNaN(s) && f !== p && String(s) === p && s >= 0 && r.parseArrays && s <= r.arrayLimit ? (c = [], c[s] = i) : p !== "__proto__" && (c[p] = i);
2008
+ }
2009
+ i = c;
2010
+ }
2011
+ return i;
2012
+ }, Di = function(e, r) {
2013
+ var n = r.allowDots ? e.replace(/\.([^.[]+)/g, "[$1]") : e;
2014
+ if (r.depth <= 0)
2015
+ return !r.plainObjects && Ee.call(Object.prototype, n) && !r.allowPrototypes ? void 0 : [n];
2016
+ var o = /(\[[^[\]]*])/, a = /(\[[^[\]]*])/g, i = o.exec(n), l = i ? n.slice(0, i.index) : n, c = [];
2017
+ if (l) {
2018
+ if (!r.plainObjects && Ee.call(Object.prototype, l) && !r.allowPrototypes)
2019
+ return;
2020
+ c.push(l);
2021
+ }
2022
+ for (var f = 0; (i = a.exec(n)) !== null && f < r.depth; ) {
2023
+ f += 1;
2024
+ var u = i[1].slice(1, -1);
2025
+ if (!r.plainObjects && Ee.call(Object.prototype, u) && !r.allowPrototypes)
2026
+ return;
2027
+ c.push(i[1]);
2028
+ }
2029
+ if (i) {
2030
+ if (r.strictDepth === !0)
2031
+ throw new RangeError("Input depth exceeded depth option of " + r.depth + " and strictDepth is true");
2032
+ c.push("[" + n.slice(i.index) + "]");
2033
+ }
2034
+ return c;
2035
+ }, $i = function(e, r, n, o) {
2036
+ if (e) {
2037
+ var a = Di(e, n);
2038
+ if (a)
2039
+ return Ci(a, r, n, o);
2040
+ }
2041
+ }, Li = function(e) {
2042
+ if (!e)
2043
+ return m;
2044
+ if (typeof e.allowEmptyArrays < "u" && typeof e.allowEmptyArrays != "boolean")
2045
+ throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");
2046
+ if (typeof e.decodeDotInKeys < "u" && typeof e.decodeDotInKeys != "boolean")
2047
+ throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");
2048
+ if (e.decoder !== null && typeof e.decoder < "u" && typeof e.decoder != "function")
2049
+ throw new TypeError("Decoder has to be a function.");
2050
+ if (typeof e.charset < "u" && e.charset !== "utf-8" && e.charset !== "iso-8859-1")
2051
+ throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");
2052
+ if (typeof e.throwOnLimitExceeded < "u" && typeof e.throwOnLimitExceeded != "boolean")
2053
+ throw new TypeError("`throwOnLimitExceeded` option must be a boolean");
2054
+ var r = typeof e.charset > "u" ? m.charset : e.charset, n = typeof e.duplicates > "u" ? m.duplicates : e.duplicates;
2055
+ if (n !== "combine" && n !== "first" && n !== "last")
2056
+ throw new TypeError("The duplicates option must be either combine, first, or last");
2057
+ var o = typeof e.allowDots > "u" ? e.decodeDotInKeys === !0 ? !0 : m.allowDots : !!e.allowDots;
2058
+ return {
2059
+ allowDots: o,
2060
+ allowEmptyArrays: typeof e.allowEmptyArrays == "boolean" ? !!e.allowEmptyArrays : m.allowEmptyArrays,
2061
+ allowPrototypes: typeof e.allowPrototypes == "boolean" ? e.allowPrototypes : m.allowPrototypes,
2062
+ allowSparse: typeof e.allowSparse == "boolean" ? e.allowSparse : m.allowSparse,
2063
+ arrayLimit: typeof e.arrayLimit == "number" ? e.arrayLimit : m.arrayLimit,
2064
+ charset: r,
2065
+ charsetSentinel: typeof e.charsetSentinel == "boolean" ? e.charsetSentinel : m.charsetSentinel,
2066
+ comma: typeof e.comma == "boolean" ? e.comma : m.comma,
2067
+ decodeDotInKeys: typeof e.decodeDotInKeys == "boolean" ? e.decodeDotInKeys : m.decodeDotInKeys,
2068
+ decoder: typeof e.decoder == "function" ? e.decoder : m.decoder,
2069
+ delimiter: typeof e.delimiter == "string" || U.isRegExp(e.delimiter) ? e.delimiter : m.delimiter,
2070
+ // eslint-disable-next-line no-implicit-coercion, no-extra-parens
2071
+ depth: typeof e.depth == "number" || e.depth === !1 ? +e.depth : m.depth,
2072
+ duplicates: n,
2073
+ ignoreQueryPrefix: e.ignoreQueryPrefix === !0,
2074
+ interpretNumericEntities: typeof e.interpretNumericEntities == "boolean" ? e.interpretNumericEntities : m.interpretNumericEntities,
2075
+ parameterLimit: typeof e.parameterLimit == "number" ? e.parameterLimit : m.parameterLimit,
2076
+ parseArrays: e.parseArrays !== !1,
2077
+ plainObjects: typeof e.plainObjects == "boolean" ? e.plainObjects : m.plainObjects,
2078
+ strictDepth: typeof e.strictDepth == "boolean" ? !!e.strictDepth : m.strictDepth,
2079
+ strictNullHandling: typeof e.strictNullHandling == "boolean" ? e.strictNullHandling : m.strictNullHandling,
2080
+ throwOnLimitExceeded: typeof e.throwOnLimitExceeded == "boolean" ? e.throwOnLimitExceeded : !1
2081
+ };
2082
+ }, Mi = function(t, e) {
2083
+ var r = Li(e);
2084
+ if (t === "" || t === null || typeof t > "u")
2085
+ return r.plainObjects ? { __proto__: null } : {};
2086
+ for (var n = typeof t == "string" ? Ni(t, r) : t, o = r.plainObjects ? { __proto__: null } : {}, a = Object.keys(n), i = 0; i < a.length; ++i) {
2087
+ var l = a[i], c = $i(l, n[l], r, typeof t == "string");
2088
+ o = U.merge(o, c, r);
2089
+ }
2090
+ return r.allowSparse === !0 ? o : U.compact(o);
2091
+ }, Fi = xi, ki = Mi, ji = st, Ui = {
2092
+ formats: ji,
2093
+ parse: ki,
2094
+ stringify: Fi
2095
+ };
2096
+ const Bi = /* @__PURE__ */ sn(Ui);
2097
+ async function Ne(t, e = {}, r) {
2098
+ const { cms: n = "cms" } = e;
2099
+ return fetch(`${t.href}?${Bi.stringify(e)}`, {
2100
+ method: "GET",
2101
+ cache: r ? "no-store" : "default",
2102
+ headers: {
2103
+ Accept: "application/json",
2104
+ "Content-Type": "application/json",
2105
+ "strapi-encode-source-maps": n === "strapi" && r ? "true" : "false"
2106
+ // strapi
2107
+ }
2108
+ });
2109
+ }
2110
+ function pt(t, e) {
2111
+ return !(e != null && e.cms) || (e == null ? void 0 : e.cms) === "vtex" ? `https://${e == null ? void 0 : e.storeId}.myvtex.com/_v/cms/api/${e == null ? void 0 : e.name}/${t}` : String(
2112
+ new URL(`api/${t}`, process.env.NEXT_PUBLIC_API_URL)
2113
+ );
2114
+ }
2115
+ function Ar(t) {
2116
+ return Array.isArray(t) && t.length > 0 ? t[0] : Array.isArray(t) ? null : t;
2117
+ }
2118
+ async function br(t, e = [], r = {}) {
2119
+ var n;
2120
+ if ((r == null ? void 0 : r.contentType) === t) {
2121
+ const o = (r == null ? void 0 : r.previewMode) === "true", a = (r == null ? void 0 : r.documentId) ?? "", i = a && ((n = String(a)) != null && n.length) ? `/${r.documentId}` : "", l = new URL(pt(`${t}${i}`, r)), c = await Ne(l, r, o);
2122
+ if (!c.ok)
2123
+ return console.error(`[Error fetching preview data]: ${t} - status: ${c.statusText}`), [];
2124
+ const f = await c.json(), u = e.findIndex((p) => p.documentId === f.id);
2125
+ return u !== -1 ? (e[u] = f, [...e]) : [f, ...e];
2126
+ }
2127
+ return e;
2128
+ }
2129
+ const rl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2130
+ __proto__: null,
2131
+ createUrl: pt,
2132
+ fetchCMS: Ne,
2133
+ mergePreviewDocument: br,
2134
+ spreadStrapiData: Ar
2135
+ }, Symbol.toStringTag, { value: "Module" }));
2136
+ async function Rr(t, e = {}, r) {
2137
+ const n = !!(e != null && e.previewMode), o = await Ne(t, e, n);
2138
+ if (!o.ok)
2139
+ return console.log(
2140
+ `Failed to fetch Strapi (url=${String(t)}, status=${o.status})`
2141
+ ), { status: 404, data: [], error: String(o.status) };
2142
+ const { data: a } = await o.json();
2143
+ return a ? {
2144
+ status: 200,
2145
+ data: r ? Ar(a) : a
2146
+ } : { status: 404, data: [], error: "No data found" };
2147
+ }
2148
+ async function Or(t, e, r = {}) {
2149
+ const n = (r == null ? void 0 : r.previewId) ?? "", o = (r == null ? void 0 : r.previewMode) === "true", a = { ...r, versionId: n }, i = [];
2150
+ let l = 1, c = 0, f = !0;
2151
+ try {
2152
+ do {
2153
+ const u = await Ne(e, { ...a, page: l }, o).then((p) => p.json()).catch((p) => (console.error("Error fetching VTEX CMS data:", p), console.error("Error URL:", e.toString()), null));
2154
+ l === 1 && (c = u.totalItems), Array.isArray(u == null ? void 0 : u.data) && i.push(...u.data), f = !!(u != null && u.hasNextPage), l++;
2155
+ } while (f && i.length < c);
2156
+ if (o && i.length > 0) {
2157
+ if (!t || !n)
2158
+ throw new Error(
2159
+ "contentType and previewId are required for preview mode in vtexCMSData"
2160
+ );
2161
+ const u = await br(
2162
+ t,
2163
+ i,
2164
+ a
2165
+ );
2166
+ return {
2167
+ status: u.length > 0 ? 200 : 404,
2168
+ data: u
2169
+ };
2170
+ }
2171
+ return {
2172
+ status: i.length ? 200 : 404,
2173
+ data: i
2174
+ };
2175
+ } catch (u) {
2176
+ return {
2177
+ status: 500,
2178
+ data: [],
2179
+ error: u instanceof Error ? u.message : String(u)
2180
+ };
2181
+ }
2182
+ }
2183
+ const nl = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2184
+ __proto__: null,
2185
+ strapiCMSData: Rr,
2186
+ vtexCMSData: Or
2187
+ }, Symbol.toStringTag, { value: "Module" }));
2188
+ async function Gi({
2189
+ contentType: t,
2190
+ documentId: e,
2191
+ versionId: r,
2192
+ storeId: n,
2193
+ CMS_PROJECT_NAME: o
2194
+ }) {
2195
+ const a = e && e.length ? `/${e}` : "", i = r && r.length ? `?versionId=${r}` : "";
2196
+ return fetch(
2197
+ `https://${n}.myvtex.com/_v/cms/api/${o}/${t}${a}${i}`,
2198
+ { cache: "no-cache" }
2199
+ );
2200
+ }
2201
+ async function Hi(t, e = {}, r) {
2202
+ const { cms: n = "vtex" } = e ?? {};
2203
+ try {
2204
+ const o = new URL(pt(t, e));
2205
+ return n !== "vtex" ? Rr(o, e, r) : Or(t, o, e);
2206
+ } catch (o) {
2207
+ return console.error(`[Fetch ContentType Error CMS ${n}]`, o), r ? { status: 400, data: null } : { status: 200, data: [] };
2208
+ }
2209
+ }
2210
+ const ol = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
2211
+ __proto__: null,
2212
+ fetchContentType: Hi,
2213
+ getCMSContentType: Gi
2214
+ }, Symbol.toStringTag, { value: "Module" }));
2215
+ export {
2216
+ el as A,
2217
+ Qr as B,
2218
+ Yi as C,
2219
+ Vi as D,
2220
+ Zi as E,
2221
+ Hi as F,
2222
+ Ki as G,
2223
+ qi as H,
2224
+ Ji as I,
2225
+ ol as J,
2226
+ rl as K,
2227
+ nl as L,
2228
+ tl as S,
2229
+ Vr as a,
2230
+ Yr as b,
2231
+ Xr as c,
2232
+ qr as d,
2233
+ zi as e,
2234
+ Qe as f,
2235
+ Hr as g,
2236
+ Br as h,
2237
+ Kr as i,
2238
+ ot as j,
2239
+ Vt as k,
2240
+ yn as l,
2241
+ dn as m,
2242
+ vn as n,
2243
+ _n as o,
2244
+ Qi as p,
2245
+ qt as q,
2246
+ pn as r,
2247
+ Wt as s,
2248
+ sn as t,
2249
+ Jr as u,
2250
+ Gr as v,
2251
+ Zr as w,
2252
+ tn as x,
2253
+ de as y,
2254
+ Wr as z
2255
+ };