@shriyanss/js-recon 1.0.0 → 1.1.0-beta.1

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 (198) hide show
  1. package/.api_gateway_config.json +1 -0
  2. package/.github/workflows/npm-publish.yml +35 -0
  3. package/.github/workflows/prettier.yaml +44 -0
  4. package/.prettierignore +2 -0
  5. package/.prettierrc +4 -0
  6. package/.resp_cache.json +1 -0
  7. package/.vscode/launch.json +27 -0
  8. package/CHANGELOG.md +40 -0
  9. package/README.md +35 -140
  10. package/build/api_gateway/checkFeasibility.js +32 -0
  11. package/build/api_gateway/checkFeasibility.js.map +1 -0
  12. package/build/api_gateway/checkFireWallBlocking.js +24 -0
  13. package/build/api_gateway/checkFireWallBlocking.js.map +1 -0
  14. package/build/api_gateway/genReq.js +202 -0
  15. package/build/api_gateway/genReq.js.map +1 -0
  16. package/build/api_gateway/index.js +277 -0
  17. package/build/api_gateway/index.js.map +1 -0
  18. package/build/endpoints/gen_report/gen_json.js +22 -0
  19. package/build/endpoints/gen_report/gen_json.js.map +1 -0
  20. package/build/endpoints/gen_report/gen_markdown.js +66 -0
  21. package/build/endpoints/gen_report/gen_markdown.js.map +1 -0
  22. package/build/endpoints/gen_report/utility/iterate_n_store.js +46 -0
  23. package/build/endpoints/gen_report/utility/iterate_n_store.js.map +1 -0
  24. package/build/endpoints/index.js +89 -0
  25. package/build/endpoints/index.js.map +1 -0
  26. package/build/endpoints/next_js/client_jsFilesHref.js +91 -0
  27. package/build/endpoints/next_js/client_jsFilesHref.js.map +1 -0
  28. package/build/endpoints/next_js/client_jsonParse.js +75 -0
  29. package/build/endpoints/next_js/client_jsonParse.js.map +1 -0
  30. package/build/endpoints/next_js/client_subsequentRequests.js +199 -0
  31. package/build/endpoints/next_js/client_subsequentRequests.js.map +1 -0
  32. package/build/endpoints/next_js/getWebpacks.js +45 -0
  33. package/build/endpoints/next_js/getWebpacks.js.map +1 -0
  34. package/build/globalConfig.js +11 -0
  35. package/build/globalConfig.js.map +1 -0
  36. package/build/index.js +166 -0
  37. package/build/index.js.map +1 -0
  38. package/build/lazyLoad/downloadFilesUtil.js +128 -0
  39. package/build/lazyLoad/downloadFilesUtil.js.map +1 -0
  40. package/build/lazyLoad/downloadLoadedJsUtil.js +51 -0
  41. package/build/lazyLoad/downloadLoadedJsUtil.js.map +1 -0
  42. package/build/lazyLoad/globals.js +25 -0
  43. package/build/lazyLoad/globals.js.map +1 -0
  44. package/build/lazyLoad/index.js +171 -0
  45. package/build/lazyLoad/index.js.map +1 -0
  46. package/build/lazyLoad/next_js/next_GetJSScript.js +94 -0
  47. package/build/lazyLoad/next_js/next_GetJSScript.js.map +1 -0
  48. package/build/lazyLoad/next_js/next_GetLazyResources.js +202 -0
  49. package/build/lazyLoad/next_js/next_GetLazyResources.js.map +1 -0
  50. package/build/lazyLoad/next_js/next_SubsequentRequests.js +120 -0
  51. package/build/lazyLoad/next_js/next_SubsequentRequests.js.map +1 -0
  52. package/build/lazyLoad/nuxt_js/nuxt_astParse.js +188 -0
  53. package/build/lazyLoad/nuxt_js/nuxt_astParse.js.map +1 -0
  54. package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +75 -0
  55. package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js.map +1 -0
  56. package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +94 -0
  57. package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js.map +1 -0
  58. package/build/lazyLoad/svelte/svelte_getFromPageSource.js +68 -0
  59. package/build/lazyLoad/svelte/svelte_getFromPageSource.js.map +1 -0
  60. package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js +95 -0
  61. package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js.map +1 -0
  62. package/build/map/index.js +58 -0
  63. package/build/map/index.js.map +1 -0
  64. package/build/map/next_js/getFetchInstances.js +105 -0
  65. package/build/map/next_js/getFetchInstances.js.map +1 -0
  66. package/build/map/next_js/getWebpackConnections.js +224 -0
  67. package/build/map/next_js/getWebpackConnections.js.map +1 -0
  68. package/build/map/next_js/interactive.js +32 -0
  69. package/build/map/next_js/interactive.js.map +1 -0
  70. package/build/map/next_js/interactive_helpers/commandHandler.js +190 -0
  71. package/build/map/next_js/interactive_helpers/commandHandler.js.map +1 -0
  72. package/build/map/next_js/interactive_helpers/commandHelpers.js +91 -0
  73. package/build/map/next_js/interactive_helpers/commandHelpers.js.map +1 -0
  74. package/build/map/next_js/interactive_helpers/helpMenu.js +11 -0
  75. package/build/map/next_js/interactive_helpers/helpMenu.js.map +1 -0
  76. package/build/map/next_js/interactive_helpers/keybindings.js +80 -0
  77. package/build/map/next_js/interactive_helpers/keybindings.js.map +1 -0
  78. package/build/map/next_js/interactive_helpers/printer.js +17 -0
  79. package/build/map/next_js/interactive_helpers/printer.js.map +1 -0
  80. package/build/map/next_js/interactive_helpers/ui.js +81 -0
  81. package/build/map/next_js/interactive_helpers/ui.js.map +1 -0
  82. package/build/map/next_js/resolveFetch.js +201 -0
  83. package/build/map/next_js/resolveFetch.js.map +1 -0
  84. package/build/run/index.js +62 -0
  85. package/build/run/index.js.map +1 -0
  86. package/build/strings/index.js +235 -0
  87. package/build/strings/index.js.map +1 -0
  88. package/build/strings/openapi.js +55 -0
  89. package/build/strings/openapi.js.map +1 -0
  90. package/build/strings/permutate.js +55 -0
  91. package/build/strings/permutate.js.map +1 -0
  92. package/build/strings/secrets.js +89 -0
  93. package/build/strings/secrets.js.map +1 -0
  94. package/build/techDetect/index.js +224 -0
  95. package/build/techDetect/index.js.map +1 -0
  96. package/build/utility/ai.js +69 -0
  97. package/build/utility/ai.js.map +1 -0
  98. package/build/utility/globals.js +84 -0
  99. package/build/utility/globals.js.map +1 -0
  100. package/build/utility/interfaces.js +2 -0
  101. package/build/utility/interfaces.js.map +1 -0
  102. package/build/utility/makeReq.js +265 -0
  103. package/build/utility/makeReq.js.map +1 -0
  104. package/build/utility/resolvePath.js +44 -0
  105. package/build/utility/resolvePath.js.map +1 -0
  106. package/{utility → build/utility}/runSandboxed.js +10 -13
  107. package/build/utility/runSandboxed.js.map +1 -0
  108. package/{utility → build/utility}/urlUtils.js +9 -11
  109. package/build/utility/urlUtils.js.map +1 -0
  110. package/docs/README.md +20 -0
  111. package/docs/api-gateway.md +68 -0
  112. package/docs/endpoints.md +49 -0
  113. package/docs/example-scenario.md +258 -0
  114. package/docs/interactive-mode.md +76 -0
  115. package/docs/lazyload.md +56 -0
  116. package/docs/map.md +53 -0
  117. package/docs/run.md +54 -0
  118. package/docs/strings.md +75 -0
  119. package/endpoints.json +77 -0
  120. package/extracted_urls-openapi.json +225 -0
  121. package/extracted_urls-swagger.json +225 -0
  122. package/extracted_urls.json +47 -0
  123. package/extracted_urls.txt +296 -0
  124. package/mapped.json +3413 -0
  125. package/output/ss0x00.com/_next/data/k7xKVnxmboK4SktY2dZWt/index.json +971 -0
  126. package/output/ss0x00.com/_next/static/chunks/12.7e6d2ac6e1808fc2.js +247 -0
  127. package/output/ss0x00.com/_next/static/chunks/128.160aa801ef0445bc.js +1074 -0
  128. package/output/ss0x00.com/_next/static/chunks/132.55df84f7707fc278.js +102 -0
  129. package/output/ss0x00.com/_next/static/chunks/142.77038c55d9ec10ba.js +96 -0
  130. package/output/ss0x00.com/_next/static/chunks/215.321479e91d330bfa.js +228 -0
  131. package/output/ss0x00.com/_next/static/chunks/229.097c396d86b4a882.js +458 -0
  132. package/output/ss0x00.com/_next/static/chunks/257.5fd052aa4ef06ef9.js +1327 -0
  133. package/output/ss0x00.com/_next/static/chunks/268.72cb3779f66db70b.js +10520 -0
  134. package/output/ss0x00.com/_next/static/chunks/320.57d528b0e9bf86f0.js +186 -0
  135. package/output/ss0x00.com/_next/static/chunks/325.302a44b604c35f17.js +88 -0
  136. package/output/ss0x00.com/_next/static/chunks/328.e4a0307a4fddf318.js +248 -0
  137. package/output/ss0x00.com/_next/static/chunks/432.3621f17504ef18f2.js +443 -0
  138. package/output/ss0x00.com/_next/static/chunks/44.e90dd963003a3d43.js +1094 -0
  139. package/output/ss0x00.com/_next/static/chunks/442.8c054f100f9e5e50.js +1082 -0
  140. package/output/ss0x00.com/_next/static/chunks/460.f8db9a5142598e2c.js +466 -0
  141. package/output/ss0x00.com/_next/static/chunks/487.05ca55420459c002.js +78 -0
  142. package/output/ss0x00.com/_next/static/chunks/567.1909a6b0a920114b.js +1374 -0
  143. package/output/ss0x00.com/_next/static/chunks/586.802fc9214d87fb29.js +752 -0
  144. package/output/ss0x00.com/_next/static/chunks/620.a2a3a6b94d30a4c8.js +1037 -0
  145. package/output/ss0x00.com/_next/static/chunks/642.6b3e487c9604cbb8.js +1628 -0
  146. package/output/ss0x00.com/_next/static/chunks/673.e5d77887e5c6a68c.js +1045 -0
  147. package/output/ss0x00.com/_next/static/chunks/684.8b8e52baca70524b.js +96 -0
  148. package/output/ss0x00.com/_next/static/chunks/686.79480519e5ccfb77.js +296 -0
  149. package/output/ss0x00.com/_next/static/chunks/756.7a3878a2e6765be7.js +504 -0
  150. package/output/ss0x00.com/_next/static/chunks/761.7bea7516c5d22b2a.js +1485 -0
  151. package/output/ss0x00.com/_next/static/chunks/794.e079ef369b41a3c5.js +1350 -0
  152. package/output/ss0x00.com/_next/static/chunks/826.31ba213e1d023c68.js +1031 -0
  153. package/output/ss0x00.com/_next/static/chunks/847.d8397a73efc81848.js +1068 -0
  154. package/output/ss0x00.com/_next/static/chunks/848.5feaeee1e2624aea.js +132 -0
  155. package/output/ss0x00.com/_next/static/chunks/850.ecc7c3c3d787ee03.js +1472 -0
  156. package/output/ss0x00.com/_next/static/chunks/853.50b9eb60b7d0e83c.js +1472 -0
  157. package/output/ss0x00.com/_next/static/chunks/856.7a7bb6c3c7bfc2ba.js +1320 -0
  158. package/output/ss0x00.com/_next/static/chunks/859.df4bd45c03a65f53.js +1306 -0
  159. package/output/ss0x00.com/_next/static/chunks/867.e8633955a147c978.js +541 -0
  160. package/output/ss0x00.com/_next/static/chunks/921.c3123f20a4c8d53c.js +96 -0
  161. package/output/ss0x00.com/_next/static/chunks/932.25cb421c466c99cb.js +999 -0
  162. package/output/ss0x00.com/_next/static/chunks/framework-64ad27b21261a9ce.js +9189 -0
  163. package/output/ss0x00.com/_next/static/chunks/main-710ab85aa9a8f10d.js +6583 -0
  164. package/output/ss0x00.com/_next/static/chunks/pages/5D-af5a23529ce3c337.js +486 -0
  165. package/output/ss0x00.com/_next/static/chunks/pages/_app-c449865c8af1faa0.js +39 -0
  166. package/output/ss0x00.com/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +6383 -0
  167. package/output/ss0x00.com/_next/static/chunks/webpack-efff35ee26971294.js +271 -0
  168. package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_buildManifest.js +8 -0
  169. package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_ssgManifest.js +3 -0
  170. package/output/ss0x00.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js +82 -0
  171. package/package.json +50 -38
  172. package/strings.json +7407 -0
  173. package/api_gateway/checkFeasibility.js +0 -25
  174. package/api_gateway/checkFireWallBlocking.js +0 -17
  175. package/api_gateway/genReq.js +0 -214
  176. package/api_gateway/index.js +0 -325
  177. package/endpoints/index.js +0 -7
  178. package/globalConfig.js +0 -12
  179. package/index.js +0 -69
  180. package/lazyLoad/downloadFilesUtil.js +0 -122
  181. package/lazyLoad/downloadLoadedJsUtil.js +0 -54
  182. package/lazyLoad/globals.js +0 -15
  183. package/lazyLoad/index.js +0 -167
  184. package/lazyLoad/next_js/next_GetJSScript.js +0 -99
  185. package/lazyLoad/next_js/next_GetLazyResources.js +0 -201
  186. package/lazyLoad/next_js/next_SubsequentRequests.js +0 -138
  187. package/lazyLoad/nuxt_js/nuxt_astParse.js +0 -194
  188. package/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +0 -77
  189. package/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +0 -99
  190. package/research/firewall_bypass.md +0 -38
  191. package/research/next_js.md +0 -116
  192. package/research/nuxt_js.md +0 -125
  193. package/research/vue_js.md +0 -9
  194. package/strings/index.js +0 -145
  195. package/techDetect/index.js +0 -156
  196. package/utility/globals.js +0 -6
  197. package/utility/makeReq.js +0 -179
  198. package/utility/resolvePath.js +0 -43
@@ -0,0 +1,443 @@
1
+ // JS Source: https://ss0x00.com/_next/static/chunks/432.3621f17504ef18f2.js
2
+ (self.webpackChunk_N_E = self.webpackChunk_N_E || []).push([
3
+ [432],
4
+ {
5
+ 6691: function (e, t) {
6
+ "use strict";
7
+ var n, r, o, u;
8
+ (Object.defineProperty(t, "__esModule", { value: !0 }),
9
+ (function (e, t) {
10
+ for (var n in t)
11
+ Object.defineProperty(e, n, { enumerable: !0, get: t[n] });
12
+ })(t, {
13
+ ACTION_FAST_REFRESH: function () {
14
+ return s;
15
+ },
16
+ ACTION_NAVIGATE: function () {
17
+ return f;
18
+ },
19
+ ACTION_PREFETCH: function () {
20
+ return c;
21
+ },
22
+ ACTION_REFRESH: function () {
23
+ return l;
24
+ },
25
+ ACTION_RESTORE: function () {
26
+ return i;
27
+ },
28
+ ACTION_SERVER_ACTION: function () {
29
+ return d;
30
+ },
31
+ ACTION_SERVER_PATCH: function () {
32
+ return a;
33
+ },
34
+ PrefetchCacheEntryStatus: function () {
35
+ return r;
36
+ },
37
+ PrefetchKind: function () {
38
+ return n;
39
+ },
40
+ isThenable: function () {
41
+ return p;
42
+ },
43
+ }));
44
+ let l = "refresh",
45
+ f = "navigate",
46
+ i = "restore",
47
+ a = "server-patch",
48
+ c = "prefetch",
49
+ s = "fast-refresh",
50
+ d = "server-action";
51
+ function p(e) {
52
+ return (
53
+ e &&
54
+ ("object" == typeof e || "function" == typeof e) &&
55
+ "function" == typeof e.then
56
+ );
57
+ }
58
+ (((o = n || (n = {})).AUTO = "auto"),
59
+ (o.FULL = "full"),
60
+ (o.TEMPORARY = "temporary"),
61
+ ((u = r || (r = {})).fresh = "fresh"),
62
+ (u.reusable = "reusable"),
63
+ (u.expired = "expired"),
64
+ (u.stale = "stale"),
65
+ ("function" == typeof t.default ||
66
+ ("object" == typeof t.default && null !== t.default)) &&
67
+ void 0 === t.default.__esModule &&
68
+ (Object.defineProperty(t.default, "__esModule", { value: !0 }),
69
+ Object.assign(t.default, t),
70
+ (e.exports = t.default)));
71
+ },
72
+ 4318: function (e, t, n) {
73
+ "use strict";
74
+ function r(e, t, n, r) {
75
+ return !1;
76
+ }
77
+ (Object.defineProperty(t, "__esModule", { value: !0 }),
78
+ Object.defineProperty(t, "getDomainLocale", {
79
+ enumerable: !0,
80
+ get: function () {
81
+ return r;
82
+ },
83
+ }),
84
+ n(8364),
85
+ ("function" == typeof t.default ||
86
+ ("object" == typeof t.default && null !== t.default)) &&
87
+ void 0 === t.default.__esModule &&
88
+ (Object.defineProperty(t.default, "__esModule", { value: !0 }),
89
+ Object.assign(t.default, t),
90
+ (e.exports = t.default)));
91
+ },
92
+ 9577: function (e, t, n) {
93
+ "use strict";
94
+ (Object.defineProperty(t, "__esModule", { value: !0 }),
95
+ Object.defineProperty(t, "default", {
96
+ enumerable: !0,
97
+ get: function () {
98
+ return O;
99
+ },
100
+ }));
101
+ let r = n(8754),
102
+ o = n(5893),
103
+ u = r._(n(7294)),
104
+ l = n(1401),
105
+ f = n(2045),
106
+ i = n(7420),
107
+ a = n(7201),
108
+ c = n(1443),
109
+ s = n(9953),
110
+ d = n(5320),
111
+ p = n(2905),
112
+ y = n(4318),
113
+ b = n(953),
114
+ h = n(6691),
115
+ v = new Set();
116
+ function _(e, t, n, r, o, u) {
117
+ if (u || (0, f.isLocalURL)(t)) {
118
+ if (!r.bypassPrefetchedCheck) {
119
+ let o =
120
+ t +
121
+ "%" +
122
+ n +
123
+ "%" +
124
+ (void 0 !== r.locale
125
+ ? r.locale
126
+ : "locale" in e
127
+ ? e.locale
128
+ : void 0);
129
+ if (v.has(o)) return;
130
+ v.add(o);
131
+ }
132
+ (async () => (u ? e.prefetch(t, o) : e.prefetch(t, n, r)))().catch(
133
+ (e) => {},
134
+ );
135
+ }
136
+ }
137
+ function g(e) {
138
+ return "string" == typeof e ? e : (0, i.formatUrl)(e);
139
+ }
140
+ let O = u.default.forwardRef(function (e, t) {
141
+ let n, r;
142
+ let {
143
+ href: i,
144
+ as: v,
145
+ children: O,
146
+ prefetch: C = null,
147
+ passHref: j,
148
+ replace: E,
149
+ shallow: P,
150
+ scroll: T,
151
+ locale: M,
152
+ onClick: R,
153
+ onMouseEnter: m,
154
+ onTouchStart: A,
155
+ legacyBehavior: S = !1,
156
+ ...k
157
+ } = e;
158
+ ((n = O),
159
+ S &&
160
+ ("string" == typeof n || "number" == typeof n) &&
161
+ (n = (0, o.jsx)("a", { children: n })));
162
+ let x = u.default.useContext(s.RouterContext),
163
+ I = u.default.useContext(d.AppRouterContext),
164
+ L = null != x ? x : I,
165
+ N = !x,
166
+ w = !1 !== C,
167
+ U = null === C ? h.PrefetchKind.AUTO : h.PrefetchKind.FULL,
168
+ { href: K, as: F } = u.default.useMemo(() => {
169
+ if (!x) {
170
+ let e = g(i);
171
+ return { href: e, as: v ? g(v) : e };
172
+ }
173
+ let [e, t] = (0, l.resolveHref)(x, i, !0);
174
+ return { href: e, as: v ? (0, l.resolveHref)(x, v) : t || e };
175
+ }, [x, i, v]),
176
+ H = u.default.useRef(K),
177
+ D = u.default.useRef(F);
178
+ S && (r = u.default.Children.only(n));
179
+ let V = S ? r && "object" == typeof r && r.ref : t,
180
+ [q, z, B] = (0, p.useIntersection)({ rootMargin: "200px" }),
181
+ G = u.default.useCallback(
182
+ (e) => {
183
+ ((D.current !== F || H.current !== K) &&
184
+ (B(), (D.current = F), (H.current = K)),
185
+ q(e),
186
+ V &&
187
+ ("function" == typeof V
188
+ ? V(e)
189
+ : "object" == typeof V && (V.current = e)));
190
+ },
191
+ [F, V, K, B, q],
192
+ );
193
+ u.default.useEffect(() => {
194
+ L && z && w && _(L, K, F, { locale: M }, { kind: U }, N);
195
+ }, [F, K, z, M, w, null == x ? void 0 : x.locale, L, N, U]);
196
+ let Y = {
197
+ ref: G,
198
+ onClick(e) {
199
+ (S || "function" != typeof R || R(e),
200
+ S &&
201
+ r.props &&
202
+ "function" == typeof r.props.onClick &&
203
+ r.props.onClick(e),
204
+ L &&
205
+ !e.defaultPrevented &&
206
+ (function (e, t, n, r, o, l, i, a, c) {
207
+ let { nodeName: s } = e.currentTarget;
208
+ if (
209
+ "A" === s.toUpperCase() &&
210
+ ((function (e) {
211
+ let t = e.currentTarget.getAttribute("target");
212
+ return (
213
+ (t && "_self" !== t) ||
214
+ e.metaKey ||
215
+ e.ctrlKey ||
216
+ e.shiftKey ||
217
+ e.altKey ||
218
+ (e.nativeEvent && 2 === e.nativeEvent.which)
219
+ );
220
+ })(e) ||
221
+ (!c && !(0, f.isLocalURL)(n)))
222
+ )
223
+ return;
224
+ e.preventDefault();
225
+ let d = () => {
226
+ let e = null == i || i;
227
+ "beforePopState" in t
228
+ ? t[o ? "replace" : "push"](n, r, {
229
+ shallow: l,
230
+ locale: a,
231
+ scroll: e,
232
+ })
233
+ : t[o ? "replace" : "push"](r || n, { scroll: e });
234
+ };
235
+ c ? u.default.startTransition(d) : d();
236
+ })(e, L, K, F, E, P, T, M, N));
237
+ },
238
+ onMouseEnter(e) {
239
+ (S || "function" != typeof m || m(e),
240
+ S &&
241
+ r.props &&
242
+ "function" == typeof r.props.onMouseEnter &&
243
+ r.props.onMouseEnter(e),
244
+ L &&
245
+ (w || !N) &&
246
+ _(
247
+ L,
248
+ K,
249
+ F,
250
+ { locale: M, priority: !0, bypassPrefetchedCheck: !0 },
251
+ { kind: U },
252
+ N,
253
+ ));
254
+ },
255
+ onTouchStart: function (e) {
256
+ (S || "function" != typeof A || A(e),
257
+ S &&
258
+ r.props &&
259
+ "function" == typeof r.props.onTouchStart &&
260
+ r.props.onTouchStart(e),
261
+ L &&
262
+ (w || !N) &&
263
+ _(
264
+ L,
265
+ K,
266
+ F,
267
+ { locale: M, priority: !0, bypassPrefetchedCheck: !0 },
268
+ { kind: U },
269
+ N,
270
+ ));
271
+ },
272
+ };
273
+ if ((0, a.isAbsoluteUrl)(F)) Y.href = F;
274
+ else if (!S || j || ("a" === r.type && !("href" in r.props))) {
275
+ let e = void 0 !== M ? M : null == x ? void 0 : x.locale,
276
+ t =
277
+ (null == x ? void 0 : x.isLocaleDomain) &&
278
+ (0, y.getDomainLocale)(
279
+ F,
280
+ e,
281
+ null == x ? void 0 : x.locales,
282
+ null == x ? void 0 : x.domainLocales,
283
+ );
284
+ Y.href =
285
+ t ||
286
+ (0, b.addBasePath)(
287
+ (0, c.addLocale)(F, e, null == x ? void 0 : x.defaultLocale),
288
+ );
289
+ }
290
+ return S
291
+ ? u.default.cloneElement(r, Y)
292
+ : (0, o.jsx)("a", { ...k, ...Y, children: n });
293
+ });
294
+ ("function" == typeof t.default ||
295
+ ("object" == typeof t.default && null !== t.default)) &&
296
+ void 0 === t.default.__esModule &&
297
+ (Object.defineProperty(t.default, "__esModule", { value: !0 }),
298
+ Object.assign(t.default, t),
299
+ (e.exports = t.default));
300
+ },
301
+ 2905: function (e, t, n) {
302
+ "use strict";
303
+ (Object.defineProperty(t, "__esModule", { value: !0 }),
304
+ Object.defineProperty(t, "useIntersection", {
305
+ enumerable: !0,
306
+ get: function () {
307
+ return i;
308
+ },
309
+ }));
310
+ let r = n(7294),
311
+ o = n(3815),
312
+ u = "function" == typeof IntersectionObserver,
313
+ l = new Map(),
314
+ f = [];
315
+ function i(e) {
316
+ let { rootRef: t, rootMargin: n, disabled: i } = e,
317
+ a = i || !u,
318
+ [c, s] = (0, r.useState)(!1),
319
+ d = (0, r.useRef)(null),
320
+ p = (0, r.useCallback)((e) => {
321
+ d.current = e;
322
+ }, []);
323
+ return (
324
+ (0, r.useEffect)(() => {
325
+ if (u) {
326
+ if (a || c) return;
327
+ let e = d.current;
328
+ if (e && e.tagName)
329
+ return (function (e, t, n) {
330
+ let {
331
+ id: r,
332
+ observer: o,
333
+ elements: u,
334
+ } = (function (e) {
335
+ let t;
336
+ let n = {
337
+ root: e.root || null,
338
+ margin: e.rootMargin || "",
339
+ },
340
+ r = f.find(
341
+ (e) => e.root === n.root && e.margin === n.margin,
342
+ );
343
+ if (r && (t = l.get(r))) return t;
344
+ let o = new Map();
345
+ return (
346
+ (t = {
347
+ id: n,
348
+ observer: new IntersectionObserver((e) => {
349
+ e.forEach((e) => {
350
+ let t = o.get(e.target),
351
+ n = e.isIntersecting || e.intersectionRatio > 0;
352
+ t && n && t(n);
353
+ });
354
+ }, e),
355
+ elements: o,
356
+ }),
357
+ f.push(n),
358
+ l.set(n, t),
359
+ t
360
+ );
361
+ })(n);
362
+ return (
363
+ u.set(e, t),
364
+ o.observe(e),
365
+ function () {
366
+ if ((u.delete(e), o.unobserve(e), 0 === u.size)) {
367
+ (o.disconnect(), l.delete(r));
368
+ let e = f.findIndex(
369
+ (e) => e.root === r.root && e.margin === r.margin,
370
+ );
371
+ e > -1 && f.splice(e, 1);
372
+ }
373
+ }
374
+ );
375
+ })(e, (e) => e && s(e), {
376
+ root: null == t ? void 0 : t.current,
377
+ rootMargin: n,
378
+ });
379
+ } else if (!c) {
380
+ let e = (0, o.requestIdleCallback)(() => s(!0));
381
+ return () => (0, o.cancelIdleCallback)(e);
382
+ }
383
+ }, [a, n, t, c, d.current]),
384
+ [
385
+ p,
386
+ c,
387
+ (0, r.useCallback)(() => {
388
+ s(!1);
389
+ }, []),
390
+ ]
391
+ );
392
+ }
393
+ ("function" == typeof t.default ||
394
+ ("object" == typeof t.default && null !== t.default)) &&
395
+ void 0 === t.default.__esModule &&
396
+ (Object.defineProperty(t.default, "__esModule", { value: !0 }),
397
+ Object.assign(t.default, t),
398
+ (e.exports = t.default));
399
+ },
400
+ 1664: function (e, t, n) {
401
+ e.exports = n(9577);
402
+ },
403
+ 3967: function (e, t) {
404
+ var n;
405
+ !(function () {
406
+ "use strict";
407
+ var r = {}.hasOwnProperty;
408
+ function o() {
409
+ for (var e = "", t = 0; t < arguments.length; t++) {
410
+ var n = arguments[t];
411
+ n &&
412
+ (e = u(
413
+ e,
414
+ (function (e) {
415
+ if ("string" == typeof e || "number" == typeof e) return e;
416
+ if ("object" != typeof e) return "";
417
+ if (Array.isArray(e)) return o.apply(null, e);
418
+ if (
419
+ e.toString !== Object.prototype.toString &&
420
+ !e.toString.toString().includes("[native code]")
421
+ )
422
+ return e.toString();
423
+ var t = "";
424
+ for (var n in e) r.call(e, n) && e[n] && (t = u(t, n));
425
+ return t;
426
+ })(n),
427
+ ));
428
+ }
429
+ return e;
430
+ }
431
+ function u(e, t) {
432
+ return t ? (e ? e + " " + t : e + t) : e;
433
+ }
434
+ e.exports
435
+ ? ((o.default = o), (e.exports = o))
436
+ : void 0 !==
437
+ (n = function () {
438
+ return o;
439
+ }.apply(t, [])) && (e.exports = n);
440
+ })();
441
+ },
442
+ },
443
+ ]);