jishushell 0.5.22 → 0.6.18

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 (3198) hide show
  1. package/apps/anythingllm-container.yaml +20 -177
  2. package/apps/browserless-chromium-container.yaml +17 -12
  3. package/apps/filebrowser-container.yaml +22 -9
  4. package/apps/hermes-container.yaml +23 -2
  5. package/apps/jishu-kb-container.yaml +152 -0
  6. package/apps/ollama-binary.yaml +32 -28
  7. package/apps/ollama-cpu-container.yaml +5 -0
  8. package/apps/ollama-with-hollama-binary.yaml +33 -28
  9. package/apps/openclaw-binary.yaml +34 -10
  10. package/apps/openclaw-container.yaml +33 -8
  11. package/apps/openclaw-with-ollama-container.yaml +8 -2
  12. package/apps/openclaw-with-searxng-container.yaml +18 -6
  13. package/apps/searxng-container.yaml +12 -7
  14. package/apps/weknora-container.yaml +29 -23
  15. package/dependencies/jishushell-panel-0.6.18.tgz +0 -0
  16. package/dist/cli/app.js +494 -192
  17. package/dist/cli/app.js.map +1 -1
  18. package/dist/cli/backup.js +112 -139
  19. package/dist/cli/backup.js.map +1 -1
  20. package/dist/cli/core.d.ts +30 -0
  21. package/dist/cli/core.js +1415 -0
  22. package/dist/cli/core.js.map +1 -0
  23. package/dist/cli/doctor.d.ts +1 -1
  24. package/dist/cli/doctor.js +50 -61
  25. package/dist/cli/doctor.js.map +1 -1
  26. package/dist/cli/job.js +62 -14
  27. package/dist/cli/job.js.map +1 -1
  28. package/dist/cli/llm.d.ts +1 -18
  29. package/dist/cli/llm.js +103 -83
  30. package/dist/cli/llm.js.map +1 -1
  31. package/dist/cli/managed-list.d.ts +1 -3
  32. package/dist/cli/managed-list.js +18 -16
  33. package/dist/cli/managed-list.js.map +1 -1
  34. package/dist/cli/migrate.d.ts +2 -0
  35. package/dist/cli/migrate.js +160 -0
  36. package/dist/cli/migrate.js.map +1 -0
  37. package/dist/cli.js +26 -2
  38. package/dist/cli.js.map +1 -1
  39. package/dist/config.d.ts +53 -44
  40. package/dist/config.js +216 -146
  41. package/dist/config.js.map +1 -1
  42. package/dist/constants.d.ts +0 -1
  43. package/dist/constants.js +0 -4
  44. package/dist/constants.js.map +1 -1
  45. package/dist/control.d.ts +7 -7
  46. package/dist/control.js +32 -24
  47. package/dist/control.js.map +1 -1
  48. package/dist/core.d.ts +5 -0
  49. package/dist/core.js +6 -0
  50. package/dist/core.js.map +1 -0
  51. package/dist/install.d.ts +3 -10
  52. package/dist/install.js +118 -43
  53. package/dist/install.js.map +1 -1
  54. package/dist/routes/apps.d.ts +1 -1
  55. package/dist/routes/apps.js +100 -234
  56. package/dist/routes/apps.js.map +1 -1
  57. package/dist/routes/auth.d.ts +1 -3
  58. package/dist/routes/auth.js +7 -14
  59. package/dist/routes/auth.js.map +1 -1
  60. package/dist/routes/backup.js +137 -334
  61. package/dist/routes/backup.js.map +1 -1
  62. package/dist/routes/external-mounts.d.ts +1 -1
  63. package/dist/routes/external-mounts.js +7 -7
  64. package/dist/routes/external-mounts.js.map +1 -1
  65. package/dist/routes/file-mounts.d.ts +4 -3
  66. package/dist/routes/file-mounts.js +51 -30
  67. package/dist/routes/file-mounts.js.map +1 -1
  68. package/dist/routes/files-organize.d.ts +2 -2
  69. package/dist/routes/files-organize.js +5 -5
  70. package/dist/routes/files-organize.js.map +1 -1
  71. package/dist/routes/files.d.ts +1 -1
  72. package/dist/routes/files.js +1 -1
  73. package/dist/routes/files.js.map +1 -1
  74. package/dist/routes/instances.d.ts +11 -4
  75. package/dist/routes/instances.js +482 -923
  76. package/dist/routes/instances.js.map +1 -1
  77. package/dist/routes/integration-apps.d.ts +14 -0
  78. package/dist/routes/integration-apps.js +81 -0
  79. package/dist/routes/integration-apps.js.map +1 -0
  80. package/dist/routes/integrations.d.ts +9 -0
  81. package/dist/routes/integrations.js +12 -0
  82. package/dist/routes/integrations.js.map +1 -0
  83. package/dist/routes/llm-proxy.d.ts +2 -0
  84. package/dist/routes/llm-proxy.js +294 -0
  85. package/dist/routes/llm-proxy.js.map +1 -0
  86. package/dist/routes/llm.d.ts +1 -1
  87. package/dist/routes/llm.js +25 -75
  88. package/dist/routes/llm.js.map +1 -1
  89. package/dist/routes/setup.js +93 -93
  90. package/dist/routes/setup.js.map +1 -1
  91. package/dist/routes/system.js +248 -54
  92. package/dist/routes/system.js.map +1 -1
  93. package/dist/routes/webdav.d.ts +1 -1
  94. package/dist/routes/webdav.js +2 -2
  95. package/dist/routes/webdav.js.map +1 -1
  96. package/dist/server.d.ts +2 -0
  97. package/dist/server.js +343 -312
  98. package/dist/server.js.map +1 -1
  99. package/dist/services/app-common/app-compiler.js +186 -0
  100. package/dist/services/app-common/app-compiler.js.map +1 -0
  101. package/dist/services/app-common/app-shared.d.ts +15 -0
  102. package/dist/services/app-common/app-shared.js +64 -0
  103. package/dist/services/app-common/app-shared.js.map +1 -0
  104. package/dist/services/app-common/capability-service.d.ts +45 -0
  105. package/dist/services/app-common/capability-service.js +331 -0
  106. package/dist/services/app-common/capability-service.js.map +1 -0
  107. package/dist/services/app-common/catalog-service.d.ts +59 -0
  108. package/dist/services/app-common/catalog-service.js +308 -0
  109. package/dist/services/app-common/catalog-service.js.map +1 -0
  110. package/dist/services/app-common/create-pipeline.d.ts +26 -0
  111. package/dist/services/app-common/create-pipeline.js +298 -0
  112. package/dist/services/app-common/create-pipeline.js.map +1 -0
  113. package/dist/services/app-common/delete-service.d.ts +5 -0
  114. package/dist/services/app-common/delete-service.js +104 -0
  115. package/dist/services/app-common/delete-service.js.map +1 -0
  116. package/dist/services/app-common/execution-owner.d.ts +23 -0
  117. package/dist/services/app-common/execution-owner.js +124 -0
  118. package/dist/services/app-common/execution-owner.js.map +1 -0
  119. package/dist/services/app-common/execution-service.d.ts +23 -0
  120. package/dist/services/app-common/execution-service.js +105 -0
  121. package/dist/services/app-common/execution-service.js.map +1 -0
  122. package/dist/services/app-common/id-normalizer.d.ts +31 -0
  123. package/dist/services/app-common/id-normalizer.js +83 -0
  124. package/dist/services/app-common/id-normalizer.js.map +1 -0
  125. package/dist/services/app-common/install-store.d.ts +34 -0
  126. package/dist/services/app-common/install-store.js +261 -0
  127. package/dist/services/app-common/install-store.js.map +1 -0
  128. package/dist/services/app-common/instance-store.d.ts +78 -0
  129. package/dist/services/app-common/instance-store.js +495 -0
  130. package/dist/services/app-common/instance-store.js.map +1 -0
  131. package/dist/services/app-common/integration-refs.d.ts +17 -0
  132. package/dist/services/app-common/integration-refs.js +47 -0
  133. package/dist/services/app-common/integration-refs.js.map +1 -0
  134. package/dist/services/app-common/lifecycle-pipeline.d.ts +62 -0
  135. package/dist/services/app-common/lifecycle-pipeline.js +317 -0
  136. package/dist/services/app-common/lifecycle-pipeline.js.map +1 -0
  137. package/dist/services/app-common/lifecycle-scripts.d.ts +38 -0
  138. package/dist/services/app-common/lifecycle-scripts.js +935 -0
  139. package/dist/services/app-common/lifecycle-scripts.js.map +1 -0
  140. package/dist/services/app-common/lifecycle-service.d.ts +68 -0
  141. package/dist/services/app-common/lifecycle-service.js +467 -0
  142. package/dist/services/app-common/lifecycle-service.js.map +1 -0
  143. package/dist/services/app-common/paths.d.ts +29 -0
  144. package/dist/services/app-common/paths.js +34 -0
  145. package/dist/services/app-common/paths.js.map +1 -0
  146. package/dist/services/app-common/platform-transform.d.ts +32 -0
  147. package/dist/services/app-common/platform-transform.js +65 -0
  148. package/dist/services/app-common/platform-transform.js.map +1 -0
  149. package/dist/services/app-common/provide-resolver.d.ts +29 -0
  150. package/dist/services/app-common/provide-resolver.js +129 -0
  151. package/dist/services/app-common/provide-resolver.js.map +1 -0
  152. package/dist/services/app-common/remote-spec.d.ts +14 -0
  153. package/dist/services/app-common/remote-spec.js +58 -0
  154. package/dist/services/app-common/remote-spec.js.map +1 -0
  155. package/dist/services/app-common/runtime-builder.d.ts +1 -0
  156. package/dist/services/app-common/runtime-builder.js +2 -0
  157. package/dist/services/app-common/runtime-builder.js.map +1 -0
  158. package/dist/services/app-common/runtime-facts.d.ts +19 -0
  159. package/dist/services/app-common/runtime-facts.js +126 -0
  160. package/dist/services/app-common/runtime-facts.js.map +1 -0
  161. package/dist/services/app-common/service.d.ts +9 -0
  162. package/dist/services/app-common/service.js +10 -0
  163. package/dist/services/app-common/service.js.map +1 -0
  164. package/dist/services/app-common/spec-materializer.d.ts +9 -0
  165. package/dist/services/app-common/spec-materializer.js +361 -0
  166. package/dist/services/app-common/spec-materializer.js.map +1 -0
  167. package/dist/services/app-common/status-refresh.d.ts +33 -0
  168. package/dist/services/app-common/status-refresh.js +759 -0
  169. package/dist/services/app-common/status-refresh.js.map +1 -0
  170. package/dist/services/app-common/task-service.d.ts +29 -0
  171. package/dist/services/app-common/task-service.js +93 -0
  172. package/dist/services/app-common/task-service.js.map +1 -0
  173. package/dist/services/app-common/terminal-session-manager.js +157 -0
  174. package/dist/services/app-common/terminal-session-manager.js.map +1 -0
  175. package/dist/services/app-modules/browserless/routes.d.ts +9 -0
  176. package/dist/services/app-modules/browserless/routes.js +517 -0
  177. package/dist/services/app-modules/browserless/routes.js.map +1 -0
  178. package/dist/services/app-modules/routes.d.ts +2 -0
  179. package/dist/services/app-modules/routes.js +5 -0
  180. package/dist/services/app-modules/routes.js.map +1 -0
  181. package/dist/services/backup/backup-admin.d.ts +95 -0
  182. package/dist/services/backup/backup-admin.js +246 -0
  183. package/dist/services/backup/backup-admin.js.map +1 -0
  184. package/dist/services/backup/backup-manager.d.ts +264 -0
  185. package/dist/services/backup/backup-manager.js +2318 -0
  186. package/dist/services/backup/backup-manager.js.map +1 -0
  187. package/dist/services/backup/backup-verify.js +240 -0
  188. package/dist/services/backup/backup-verify.js.map +1 -0
  189. package/dist/services/capabilities/browser-policy.d.ts +14 -0
  190. package/dist/services/capabilities/browser-policy.js +141 -0
  191. package/dist/services/capabilities/browser-policy.js.map +1 -0
  192. package/dist/services/capabilities/contract.d.ts +50 -0
  193. package/dist/services/capabilities/contract.js +129 -0
  194. package/dist/services/capabilities/contract.js.map +1 -0
  195. package/dist/services/capabilities/endpoint-validator.d.ts +42 -0
  196. package/dist/services/capabilities/endpoint-validator.js +114 -0
  197. package/dist/services/capabilities/endpoint-validator.js.map +1 -0
  198. package/dist/services/capabilities/health.d.ts +16 -0
  199. package/dist/services/capabilities/health.js +121 -0
  200. package/dist/services/capabilities/health.js.map +1 -0
  201. package/dist/services/capabilities/registry.d.ts +56 -0
  202. package/dist/services/capabilities/registry.js +222 -0
  203. package/dist/services/capabilities/registry.js.map +1 -0
  204. package/dist/services/capabilities/sync.d.ts +7 -0
  205. package/dist/services/capabilities/sync.js +223 -0
  206. package/dist/services/capabilities/sync.js.map +1 -0
  207. package/dist/services/capability-proxy/html-rewriters/browserless.d.ts +1 -0
  208. package/dist/services/capability-proxy/html-rewriters/browserless.js +83 -0
  209. package/dist/services/capability-proxy/html-rewriters/browserless.js.map +1 -0
  210. package/dist/services/capability-proxy/html-rewriters/index.d.ts +12 -0
  211. package/dist/services/capability-proxy/html-rewriters/index.js +25 -0
  212. package/dist/services/capability-proxy/html-rewriters/index.js.map +1 -0
  213. package/dist/services/capability-proxy/html-rewriters/jishukb.d.ts +1 -0
  214. package/dist/services/capability-proxy/html-rewriters/jishukb.js +161 -0
  215. package/dist/services/capability-proxy/html-rewriters/jishukb.js.map +1 -0
  216. package/dist/services/connections/admin.d.ts +80 -0
  217. package/dist/services/connections/admin.js +327 -0
  218. package/dist/services/connections/admin.js.map +1 -0
  219. package/dist/services/connections/apply.d.ts +110 -0
  220. package/dist/services/connections/apply.js +444 -0
  221. package/dist/services/connections/apply.js.map +1 -0
  222. package/dist/services/connections/resolver.d.ts +82 -0
  223. package/dist/services/connections/resolver.js +289 -0
  224. package/dist/services/connections/resolver.js.map +1 -0
  225. package/dist/services/connections/suggestions.d.ts +27 -0
  226. package/dist/services/connections/suggestions.js +124 -0
  227. package/dist/services/connections/suggestions.js.map +1 -0
  228. package/dist/services/connections/transactor.d.ts +39 -0
  229. package/dist/services/connections/transactor.js +307 -0
  230. package/dist/services/connections/transactor.js.map +1 -0
  231. package/dist/services/files/external-mounts.js +187 -0
  232. package/dist/services/files/external-mounts.js.map +1 -0
  233. package/dist/services/files/files-manager.d.ts +265 -0
  234. package/dist/services/files/files-manager.js +1189 -0
  235. package/dist/services/files/files-manager.js.map +1 -0
  236. package/dist/services/files/files-mounts.d.ts +42 -0
  237. package/dist/services/files/files-mounts.js +207 -0
  238. package/dist/services/files/files-mounts.js.map +1 -0
  239. package/dist/services/files/organize/applier.js +218 -0
  240. package/dist/services/files/organize/applier.js.map +1 -0
  241. package/dist/services/files/organize/rules.js +286 -0
  242. package/dist/services/files/organize/rules.js.map +1 -0
  243. package/dist/services/files/organize/scanner.js +366 -0
  244. package/dist/services/files/organize/scanner.js.map +1 -0
  245. package/dist/services/files/organize/store.js +82 -0
  246. package/dist/services/files/organize/store.js.map +1 -0
  247. package/dist/services/files/webdav/server.d.ts +47 -0
  248. package/dist/services/files/webdav/server.js +329 -0
  249. package/dist/services/files/webdav/server.js.map +1 -0
  250. package/dist/services/files/webdav/xml-builder.js.map +1 -0
  251. package/dist/services/instances/admin.d.ts +23 -0
  252. package/dist/services/instances/admin.js +218 -0
  253. package/dist/services/instances/admin.js.map +1 -0
  254. package/dist/services/instances/clone.d.ts +26 -0
  255. package/dist/services/instances/clone.js +78 -0
  256. package/dist/services/instances/clone.js.map +1 -0
  257. package/dist/services/instances/config-admin.d.ts +17 -0
  258. package/dist/services/instances/config-admin.js +181 -0
  259. package/dist/services/instances/config-admin.js.map +1 -0
  260. package/dist/services/instances/manager.d.ts +231 -0
  261. package/dist/services/instances/manager.js +1348 -0
  262. package/dist/services/instances/manager.js.map +1 -0
  263. package/dist/services/instances/passwords.js +173 -0
  264. package/dist/services/instances/passwords.js.map +1 -0
  265. package/dist/services/instances/types.d.ts +21 -0
  266. package/dist/services/instances/types.js +2 -0
  267. package/dist/services/instances/types.js.map +1 -0
  268. package/dist/services/integrations/anythingllm/integration.d.ts +25 -0
  269. package/dist/services/integrations/anythingllm/integration.js +251 -0
  270. package/dist/services/integrations/anythingllm/integration.js.map +1 -0
  271. package/dist/services/integrations/catalog.d.ts +3 -0
  272. package/dist/services/integrations/catalog.js +73 -0
  273. package/dist/services/integrations/catalog.js.map +1 -0
  274. package/dist/services/integrations/custom/integration.d.ts +28 -0
  275. package/dist/services/integrations/custom/integration.js +179 -0
  276. package/dist/services/integrations/custom/integration.js.map +1 -0
  277. package/dist/services/integrations/hermes/integration.d.ts +194 -0
  278. package/dist/services/integrations/hermes/integration.js +1669 -0
  279. package/dist/services/integrations/hermes/integration.js.map +1 -0
  280. package/dist/services/integrations/index.d.ts +40 -0
  281. package/dist/services/integrations/index.js +59 -0
  282. package/dist/services/integrations/index.js.map +1 -0
  283. package/dist/services/integrations/installable/catalog.d.ts +33 -0
  284. package/dist/services/integrations/installable/catalog.js +88 -0
  285. package/dist/services/integrations/installable/catalog.js.map +1 -0
  286. package/dist/services/integrations/installable/index.d.ts +35 -0
  287. package/dist/services/integrations/installable/index.js +170 -0
  288. package/dist/services/integrations/installable/index.js.map +1 -0
  289. package/dist/services/integrations/installable/installers/integration-probes.d.ts +50 -0
  290. package/dist/services/integrations/installable/installers/integration-probes.js +231 -0
  291. package/dist/services/integrations/installable/installers/integration-probes.js.map +1 -0
  292. package/dist/services/integrations/installable/installers/integration.d.ts +30 -0
  293. package/dist/services/integrations/installable/installers/integration.js +177 -0
  294. package/dist/services/integrations/installable/installers/integration.js.map +1 -0
  295. package/dist/services/integrations/installable/installers/registry-probe.js.map +1 -0
  296. package/dist/services/integrations/installable/installers/shell-script.d.ts +46 -0
  297. package/dist/services/integrations/installable/installers/shell-script.js +487 -0
  298. package/dist/services/integrations/installable/installers/shell-script.js.map +1 -0
  299. package/dist/services/integrations/installable/types.d.ts +130 -0
  300. package/dist/services/integrations/installable/types.js +19 -0
  301. package/dist/services/integrations/installable/types.js.map +1 -0
  302. package/dist/services/integrations/jishukb/integration.d.ts +22 -0
  303. package/dist/services/integrations/jishukb/integration.js +189 -0
  304. package/dist/services/integrations/jishukb/integration.js.map +1 -0
  305. package/dist/services/integrations/openclaw/anythingllm-shim.d.ts +46 -0
  306. package/dist/services/integrations/openclaw/anythingllm-shim.js +281 -0
  307. package/dist/services/integrations/openclaw/anythingllm-shim.js.map +1 -0
  308. package/dist/services/integrations/openclaw/drive-shim.d.ts +54 -0
  309. package/dist/services/integrations/openclaw/drive-shim.js +490 -0
  310. package/dist/services/integrations/openclaw/drive-shim.js.map +1 -0
  311. package/dist/services/integrations/openclaw/integration.d.ts +424 -0
  312. package/dist/services/integrations/openclaw/integration.js +4402 -0
  313. package/dist/services/integrations/openclaw/integration.js.map +1 -0
  314. package/dist/services/integrations/openclaw/jishukb-shim.d.ts +48 -0
  315. package/dist/services/integrations/openclaw/jishukb-shim.js +750 -0
  316. package/dist/services/integrations/openclaw/jishukb-shim.js.map +1 -0
  317. package/dist/services/integrations/openclaw/mcporter-lite.d.ts +24 -0
  318. package/dist/services/integrations/openclaw/mcporter-lite.js +276 -0
  319. package/dist/services/integrations/openclaw/mcporter-lite.js.map +1 -0
  320. package/dist/services/integrations/openclaw/mcporter.d.ts +46 -0
  321. package/dist/services/integrations/openclaw/mcporter.js +112 -0
  322. package/dist/services/integrations/openclaw/mcporter.js.map +1 -0
  323. package/dist/services/integrations/openclaw/routes.d.ts +21 -0
  324. package/dist/services/integrations/openclaw/routes.js +1191 -0
  325. package/dist/services/integrations/openclaw/routes.js.map +1 -0
  326. package/dist/services/integrations/registry.d.ts +17 -0
  327. package/dist/services/integrations/registry.js +36 -0
  328. package/dist/services/integrations/registry.js.map +1 -0
  329. package/dist/services/integrations/routes.d.ts +2 -0
  330. package/dist/services/integrations/routes.js +9 -0
  331. package/dist/services/integrations/routes.js.map +1 -0
  332. package/dist/services/integrations/types.d.ts +469 -0
  333. package/dist/services/integrations/types.js +2 -0
  334. package/dist/services/integrations/types.js.map +1 -0
  335. package/dist/services/legacy-migrator/classifier.d.ts +44 -0
  336. package/dist/services/legacy-migrator/classifier.js +309 -0
  337. package/dist/services/legacy-migrator/classifier.js.map +1 -0
  338. package/dist/services/legacy-migrator/executor.d.ts +42 -0
  339. package/dist/services/legacy-migrator/executor.js +637 -0
  340. package/dist/services/legacy-migrator/executor.js.map +1 -0
  341. package/dist/services/legacy-migrator/index.d.ts +31 -0
  342. package/dist/services/legacy-migrator/index.js +34 -0
  343. package/dist/services/legacy-migrator/index.js.map +1 -0
  344. package/dist/services/legacy-migrator/planner.d.ts +8 -0
  345. package/dist/services/legacy-migrator/planner.js +154 -0
  346. package/dist/services/legacy-migrator/planner.js.map +1 -0
  347. package/dist/services/legacy-migrator/provider-settings.d.ts +6 -0
  348. package/dist/services/legacy-migrator/provider-settings.js +72 -0
  349. package/dist/services/legacy-migrator/provider-settings.js.map +1 -0
  350. package/dist/services/legacy-migrator/report.d.ts +9 -0
  351. package/dist/services/legacy-migrator/report.js +99 -0
  352. package/dist/services/legacy-migrator/report.js.map +1 -0
  353. package/dist/services/legacy-migrator/scanner.d.ts +13 -0
  354. package/dist/services/legacy-migrator/scanner.js +157 -0
  355. package/dist/services/legacy-migrator/scanner.js.map +1 -0
  356. package/dist/services/legacy-migrator/types.d.ts +97 -0
  357. package/dist/services/legacy-migrator/types.js +23 -0
  358. package/dist/services/legacy-migrator/types.js.map +1 -0
  359. package/dist/services/llm-proxy/adapters.js +5 -4
  360. package/dist/services/llm-proxy/adapters.js.map +1 -1
  361. package/dist/services/llm-proxy/index.d.ts +8 -105
  362. package/dist/services/llm-proxy/index.js +12 -889
  363. package/dist/services/llm-proxy/index.js.map +1 -1
  364. package/dist/services/llm-proxy/instance-proxy.d.ts +61 -0
  365. package/dist/services/llm-proxy/instance-proxy.js +702 -0
  366. package/dist/services/llm-proxy/instance-proxy.js.map +1 -0
  367. package/dist/services/llm-proxy/probe.js +5 -14
  368. package/dist/services/llm-proxy/probe.js.map +1 -1
  369. package/dist/services/llm-proxy/providers.d.ts +21 -0
  370. package/dist/services/llm-proxy/providers.js +88 -0
  371. package/dist/services/llm-proxy/providers.js.map +1 -0
  372. package/dist/services/llm-proxy/proxy-runtime.d.ts +12 -0
  373. package/dist/services/llm-proxy/proxy-runtime.js +65 -0
  374. package/dist/services/llm-proxy/proxy-runtime.js.map +1 -0
  375. package/dist/services/llm-proxy/sse.d.ts +13 -3
  376. package/dist/services/llm-proxy/sse.js.map +1 -1
  377. package/dist/services/llm-proxy/ssrf.d.ts +11 -4
  378. package/dist/services/llm-proxy/ssrf.js +45 -7
  379. package/dist/services/llm-proxy/ssrf.js.map +1 -1
  380. package/dist/services/llm-proxy/validate-key.js +27 -51
  381. package/dist/services/llm-proxy/validate-key.js.map +1 -1
  382. package/dist/services/repair/runtime-repair.d.ts +22 -0
  383. package/dist/services/repair/runtime-repair.js +307 -0
  384. package/dist/services/repair/runtime-repair.js.map +1 -0
  385. package/dist/services/runtime/driver-registry.d.ts +21 -0
  386. package/dist/services/runtime/driver-registry.js +22 -0
  387. package/dist/services/runtime/driver-registry.js.map +1 -0
  388. package/dist/services/runtime/drivers/nomad.d.ts +260 -0
  389. package/dist/services/runtime/drivers/nomad.js +3092 -0
  390. package/dist/services/runtime/drivers/nomad.js.map +1 -0
  391. package/dist/services/runtime/errors.d.ts +3 -3
  392. package/dist/services/runtime/errors.js +3 -3
  393. package/dist/services/runtime/instance.d.ts +14 -16
  394. package/dist/services/runtime/instance.js +93 -110
  395. package/dist/services/runtime/instance.js.map +1 -1
  396. package/dist/services/runtime/job-id.d.ts +9 -0
  397. package/dist/services/runtime/job-id.js +15 -0
  398. package/dist/services/runtime/job-id.js.map +1 -0
  399. package/dist/services/runtime/mcp-shims/firewall.d.ts +2 -2
  400. package/dist/services/runtime/mcp-shims/firewall.js +2 -2
  401. package/dist/services/runtime/mcp-shims/searxng-shim.d.ts +3 -5
  402. package/dist/services/runtime/mcp-shims/searxng-shim.js +3 -5
  403. package/dist/services/runtime/mcp-shims/searxng-shim.js.map +1 -1
  404. package/dist/services/runtime/mcp-shims/write-mcp-entry.d.ts +20 -20
  405. package/dist/services/runtime/mcp-shims/write-mcp-entry.js +16 -16
  406. package/dist/services/runtime/mcp-shims/write-mcp-entry.js.map +1 -1
  407. package/dist/services/runtime/ownership-marker.d.ts +83 -0
  408. package/dist/services/runtime/ownership-marker.js +109 -0
  409. package/dist/services/runtime/ownership-marker.js.map +1 -0
  410. package/dist/services/runtime/types.d.ts +23 -511
  411. package/dist/services/runtime/types.js +0 -12
  412. package/dist/services/runtime/types.js.map +1 -1
  413. package/dist/services/runtime/workload-compiler.d.ts +17 -0
  414. package/dist/services/runtime/workload-compiler.js +525 -0
  415. package/dist/services/runtime/workload-compiler.js.map +1 -0
  416. package/dist/services/runtime/workload-types.d.ts +11 -0
  417. package/dist/services/runtime/workload-types.js +2 -0
  418. package/dist/services/runtime/workload-types.js.map +1 -0
  419. package/dist/services/setup/core-manager.d.ts +50 -0
  420. package/dist/services/setup/core-manager.js +456 -0
  421. package/dist/services/setup/core-manager.js.map +1 -0
  422. package/dist/services/setup/plugin-installer.js +136 -0
  423. package/dist/services/setup/plugin-installer.js.map +1 -0
  424. package/dist/services/setup/setup-manager.d.ts +158 -0
  425. package/dist/services/setup/setup-manager.js +2768 -0
  426. package/dist/services/setup/setup-manager.js.map +1 -0
  427. package/dist/services/system/cli-command.d.ts +5 -0
  428. package/dist/services/system/cli-command.js +18 -0
  429. package/dist/services/system/cli-command.js.map +1 -0
  430. package/dist/services/system/macos-launchd.d.ts +100 -0
  431. package/dist/services/system/macos-launchd.js +312 -0
  432. package/dist/services/system/macos-launchd.js.map +1 -0
  433. package/dist/services/system/repair-orchestrator.d.ts +71 -0
  434. package/dist/services/system/repair-orchestrator.js +412 -0
  435. package/dist/services/system/repair-orchestrator.js.map +1 -0
  436. package/dist/services/system/system-monitor.js +96 -0
  437. package/dist/services/system/system-monitor.js.map +1 -0
  438. package/dist/services/system/system-ollama-provider.d.ts +14 -0
  439. package/dist/services/system/system-ollama-provider.js +129 -0
  440. package/dist/services/system/system-ollama-provider.js.map +1 -0
  441. package/dist/services/system/system-reconciler.d.ts +59 -0
  442. package/dist/services/system/system-reconciler.js +710 -0
  443. package/dist/services/system/system-reconciler.js.map +1 -0
  444. package/dist/services/system/update-manager.d.ts +43 -0
  445. package/dist/services/system/update-manager.js +315 -0
  446. package/dist/services/system/update-manager.js.map +1 -0
  447. package/dist/services/system/upgrade-finalize.d.ts +80 -0
  448. package/dist/services/system/upgrade-finalize.js +507 -0
  449. package/dist/services/system/upgrade-finalize.js.map +1 -0
  450. package/dist/services/tasks/registry.d.ts +44 -0
  451. package/dist/services/tasks/registry.js +90 -0
  452. package/dist/services/tasks/registry.js.map +1 -0
  453. package/dist/services/telemetry/activation.d.ts +8 -4
  454. package/dist/services/telemetry/activation.js +12 -8
  455. package/dist/services/telemetry/activation.js.map +1 -1
  456. package/dist/services/telemetry/device-fingerprint.js +6 -1
  457. package/dist/services/telemetry/device-fingerprint.js.map +1 -1
  458. package/dist/services/telemetry/heartbeat.d.ts +8 -4
  459. package/dist/services/telemetry/heartbeat.js +12 -8
  460. package/dist/services/telemetry/heartbeat.js.map +1 -1
  461. package/dist/services/workspaces/builder.d.ts +29 -0
  462. package/dist/services/workspaces/builder.js +186 -0
  463. package/dist/services/workspaces/builder.js.map +1 -0
  464. package/dist/types.d.ts +361 -72
  465. package/dist/utils/docker-inspect.d.ts +19 -0
  466. package/dist/utils/docker-inspect.js +74 -0
  467. package/dist/utils/docker-inspect.js.map +1 -0
  468. package/dist/utils/instance-lock.d.ts +2 -2
  469. package/dist/utils/instance-lock.js +2 -2
  470. package/dist/utils/sudo-askpass.d.ts +23 -0
  471. package/dist/utils/sudo-askpass.js +83 -0
  472. package/dist/utils/sudo-askpass.js.map +1 -0
  473. package/install/jishu-install.sh +627 -109
  474. package/install/jishu-uninstall.sh +48 -12
  475. package/install/post-install.sh +316 -93
  476. package/install/post-uninstall.sh +99 -9
  477. package/node_modules/@fastify/accept-negotiator/LICENSE +22 -0
  478. package/node_modules/@fastify/accept-negotiator/README.md +52 -0
  479. package/node_modules/@fastify/accept-negotiator/index.js +170 -0
  480. package/node_modules/@fastify/accept-negotiator/package.json +77 -0
  481. package/node_modules/@fastify/accept-negotiator/types/index.d.ts +17 -0
  482. package/node_modules/@fastify/ajv-compiler/.gitattributes +2 -0
  483. package/node_modules/@fastify/ajv-compiler/.github/.stale.yml +21 -0
  484. package/node_modules/@fastify/ajv-compiler/.github/dependabot.yml +13 -0
  485. package/node_modules/@fastify/ajv-compiler/.github/tests_checker.yml +8 -0
  486. package/node_modules/@fastify/ajv-compiler/.github/workflows/ci.yml +33 -0
  487. package/node_modules/@fastify/ajv-compiler/LICENSE +23 -0
  488. package/node_modules/@fastify/ajv-compiler/README.md +237 -0
  489. package/node_modules/@fastify/ajv-compiler/benchmark/small-object.mjs +37 -0
  490. package/node_modules/@fastify/ajv-compiler/eslint.config.js +6 -0
  491. package/node_modules/@fastify/ajv-compiler/index.js +53 -0
  492. package/node_modules/@fastify/ajv-compiler/lib/default-ajv-options.js +14 -0
  493. package/node_modules/@fastify/ajv-compiler/lib/serializer-compiler.js +27 -0
  494. package/node_modules/@fastify/ajv-compiler/lib/validator-compiler.js +58 -0
  495. package/node_modules/@fastify/ajv-compiler/package.json +84 -0
  496. package/node_modules/@fastify/ajv-compiler/standalone.js +44 -0
  497. package/node_modules/@fastify/ajv-compiler/test/.gitkeep +0 -0
  498. package/node_modules/@fastify/ajv-compiler/test/duplicated-id-compile.test.js +55 -0
  499. package/node_modules/@fastify/ajv-compiler/test/index.test.js +307 -0
  500. package/node_modules/@fastify/ajv-compiler/test/plugins.test.js +246 -0
  501. package/node_modules/@fastify/ajv-compiler/test/serialization.test.js +279 -0
  502. package/node_modules/@fastify/ajv-compiler/test/standalone.test.js +203 -0
  503. package/node_modules/@fastify/ajv-compiler/types/index.d.ts +87 -0
  504. package/node_modules/@fastify/ajv-compiler/types/index.test-d.ts +302 -0
  505. package/node_modules/@fastify/error/.gitattributes +2 -0
  506. package/node_modules/@fastify/error/.github/dependabot.yml +13 -0
  507. package/node_modules/@fastify/error/.github/workflows/ci.yml +28 -0
  508. package/node_modules/@fastify/error/LICENSE +21 -0
  509. package/node_modules/@fastify/error/README.md +140 -0
  510. package/node_modules/@fastify/error/benchmarks/create.js +9 -0
  511. package/node_modules/@fastify/error/benchmarks/instantiate.js +18 -0
  512. package/node_modules/@fastify/error/benchmarks/no-stack.js +13 -0
  513. package/node_modules/@fastify/error/benchmarks/toString.js +11 -0
  514. package/node_modules/@fastify/error/eslint.config.js +6 -0
  515. package/node_modules/@fastify/error/index.js +100 -0
  516. package/node_modules/@fastify/error/package.json +75 -0
  517. package/node_modules/@fastify/error/test/index.test.js +232 -0
  518. package/node_modules/@fastify/error/test/instanceof.test.js +263 -0
  519. package/node_modules/@fastify/error/types/index.d.ts +49 -0
  520. package/node_modules/@fastify/error/types/index.test-d.ts +92 -0
  521. package/node_modules/@fastify/fast-json-stringify-compiler/.eslintrc +1 -0
  522. package/node_modules/@fastify/fast-json-stringify-compiler/.gitattributes +2 -0
  523. package/node_modules/@fastify/fast-json-stringify-compiler/.github/dependabot.yml +13 -0
  524. package/node_modules/@fastify/fast-json-stringify-compiler/.github/workflows/ci.yml +28 -0
  525. package/node_modules/@fastify/fast-json-stringify-compiler/LICENSE +21 -0
  526. package/node_modules/@fastify/fast-json-stringify-compiler/README.md +128 -0
  527. package/node_modules/@fastify/fast-json-stringify-compiler/eslint.config.js +6 -0
  528. package/node_modules/@fastify/fast-json-stringify-compiler/index.js +8 -0
  529. package/node_modules/@fastify/fast-json-stringify-compiler/package.json +71 -0
  530. package/node_modules/@fastify/fast-json-stringify-compiler/standalone.js +58 -0
  531. package/node_modules/@fastify/fast-json-stringify-compiler/test/duplicate-schema.test.js +26 -0
  532. package/node_modules/@fastify/fast-json-stringify-compiler/test/plugin.test.js +78 -0
  533. package/node_modules/@fastify/fast-json-stringify-compiler/test/standalone.test.js +230 -0
  534. package/node_modules/@fastify/fast-json-stringify-compiler/types/index.d.ts +41 -0
  535. package/node_modules/@fastify/fast-json-stringify-compiler/types/index.test-d.ts +142 -0
  536. package/node_modules/@fastify/forwarded/LICENSE +24 -0
  537. package/node_modules/@fastify/forwarded/README.md +43 -0
  538. package/node_modules/@fastify/forwarded/index.js +59 -0
  539. package/node_modules/@fastify/forwarded/package.json +74 -0
  540. package/node_modules/@fastify/forwarded/types/index.d.ts +14 -0
  541. package/node_modules/@fastify/merge-json-schemas/.gitattributes +2 -0
  542. package/node_modules/@fastify/merge-json-schemas/.github/dependabot.yml +13 -0
  543. package/node_modules/@fastify/merge-json-schemas/.github/workflows/ci.yml +23 -0
  544. package/node_modules/@fastify/merge-json-schemas/LICENSE +21 -0
  545. package/node_modules/@fastify/merge-json-schemas/README.md +119 -0
  546. package/node_modules/@fastify/merge-json-schemas/eslint.config.js +6 -0
  547. package/node_modules/@fastify/merge-json-schemas/index.js +357 -0
  548. package/node_modules/@fastify/merge-json-schemas/lib/errors.js +36 -0
  549. package/node_modules/@fastify/merge-json-schemas/lib/resolvers.js +127 -0
  550. package/node_modules/@fastify/merge-json-schemas/package.json +67 -0
  551. package/node_modules/@fastify/merge-json-schemas/test/additional-items.test.js +164 -0
  552. package/node_modules/@fastify/merge-json-schemas/test/additional-properties.test.js +129 -0
  553. package/node_modules/@fastify/merge-json-schemas/test/all-of.test.js +43 -0
  554. package/node_modules/@fastify/merge-json-schemas/test/any-of.test.js +81 -0
  555. package/node_modules/@fastify/merge-json-schemas/test/const.test.js +58 -0
  556. package/node_modules/@fastify/merge-json-schemas/test/contains.test.js +55 -0
  557. package/node_modules/@fastify/merge-json-schemas/test/custom-resolvers.test.js +50 -0
  558. package/node_modules/@fastify/merge-json-schemas/test/default-resolver.test.js +111 -0
  559. package/node_modules/@fastify/merge-json-schemas/test/default.test.js +50 -0
  560. package/node_modules/@fastify/merge-json-schemas/test/definitions.test.js +46 -0
  561. package/node_modules/@fastify/merge-json-schemas/test/defs.test.js +46 -0
  562. package/node_modules/@fastify/merge-json-schemas/test/dependencies.test.js +75 -0
  563. package/node_modules/@fastify/merge-json-schemas/test/dependent-required.test.js +75 -0
  564. package/node_modules/@fastify/merge-json-schemas/test/dependent-schemas.test.js +76 -0
  565. package/node_modules/@fastify/merge-json-schemas/test/enum.test.js +44 -0
  566. package/node_modules/@fastify/merge-json-schemas/test/exclusive-maximum.test.js +30 -0
  567. package/node_modules/@fastify/merge-json-schemas/test/exclusive-minimum.test.js +30 -0
  568. package/node_modules/@fastify/merge-json-schemas/test/format.test.js +36 -0
  569. package/node_modules/@fastify/merge-json-schemas/test/id.test.js +22 -0
  570. package/node_modules/@fastify/merge-json-schemas/test/if-then-else.test.js +550 -0
  571. package/node_modules/@fastify/merge-json-schemas/test/items.test.js +152 -0
  572. package/node_modules/@fastify/merge-json-schemas/test/max-items.test.js +30 -0
  573. package/node_modules/@fastify/merge-json-schemas/test/max-length.test.js +30 -0
  574. package/node_modules/@fastify/merge-json-schemas/test/max-properties.test.js +30 -0
  575. package/node_modules/@fastify/merge-json-schemas/test/maximum.test.js +30 -0
  576. package/node_modules/@fastify/merge-json-schemas/test/merge-schema.test.js +29 -0
  577. package/node_modules/@fastify/merge-json-schemas/test/min-items.test.js +30 -0
  578. package/node_modules/@fastify/merge-json-schemas/test/min-length.test.js +30 -0
  579. package/node_modules/@fastify/merge-json-schemas/test/min-properties.test.js +30 -0
  580. package/node_modules/@fastify/merge-json-schemas/test/minimum.test.js +30 -0
  581. package/node_modules/@fastify/merge-json-schemas/test/multiple-of.test.js +36 -0
  582. package/node_modules/@fastify/merge-json-schemas/test/not.test.js +29 -0
  583. package/node_modules/@fastify/merge-json-schemas/test/nullable.test.js +30 -0
  584. package/node_modules/@fastify/merge-json-schemas/test/one-of.test.js +144 -0
  585. package/node_modules/@fastify/merge-json-schemas/test/properties.test.js +312 -0
  586. package/node_modules/@fastify/merge-json-schemas/test/property-names.test.js +49 -0
  587. package/node_modules/@fastify/merge-json-schemas/test/required.test.js +30 -0
  588. package/node_modules/@fastify/merge-json-schemas/test/type.test.js +52 -0
  589. package/node_modules/@fastify/merge-json-schemas/test/unique-items.test.js +38 -0
  590. package/node_modules/@fastify/merge-json-schemas/test/utils.js +9 -0
  591. package/node_modules/@fastify/merge-json-schemas/types/index.d.ts +61 -0
  592. package/node_modules/@fastify/merge-json-schemas/types/index.test-d.ts +52 -0
  593. package/node_modules/@fastify/proxy-addr/.gitattributes +2 -0
  594. package/node_modules/@fastify/proxy-addr/.github/dependabot.yml +13 -0
  595. package/node_modules/@fastify/proxy-addr/.github/stale.yml +21 -0
  596. package/node_modules/@fastify/proxy-addr/.github/workflows/ci.yml +28 -0
  597. package/node_modules/@fastify/proxy-addr/LICENSE +24 -0
  598. package/node_modules/@fastify/proxy-addr/README.md +141 -0
  599. package/node_modules/@fastify/proxy-addr/benchmark/compiling.js +50 -0
  600. package/node_modules/@fastify/proxy-addr/benchmark/index.js +30 -0
  601. package/node_modules/@fastify/proxy-addr/benchmark/kind.js +57 -0
  602. package/node_modules/@fastify/proxy-addr/benchmark/matching.js +78 -0
  603. package/node_modules/@fastify/proxy-addr/eslint.config.js +6 -0
  604. package/node_modules/@fastify/proxy-addr/index.js +331 -0
  605. package/node_modules/@fastify/proxy-addr/package.json +73 -0
  606. package/node_modules/@fastify/proxy-addr/test/all.test.js +55 -0
  607. package/node_modules/@fastify/proxy-addr/test/base.test.js +365 -0
  608. package/node_modules/@fastify/proxy-addr/test/compile.test.js +58 -0
  609. package/node_modules/@fastify/proxy-addr/types/index.d.ts +18 -0
  610. package/node_modules/@fastify/proxy-addr/types/index.test-d.ts +27 -0
  611. package/node_modules/@fastify/send/.gitattributes +2 -0
  612. package/node_modules/@fastify/send/.github/dependabot.yml +13 -0
  613. package/node_modules/@fastify/send/.github/workflows/ci.yml +28 -0
  614. package/node_modules/@fastify/send/HISTORY.md +521 -0
  615. package/node_modules/@fastify/send/LICENSE +23 -0
  616. package/node_modules/@fastify/send/README.md +310 -0
  617. package/node_modules/@fastify/send/benchmarks/collapseLeadingSlashes.js +13 -0
  618. package/node_modules/@fastify/send/benchmarks/containsDotFile.js +15 -0
  619. package/node_modules/@fastify/send/benchmarks/isUtf8MimeType.js +23 -0
  620. package/node_modules/@fastify/send/benchmarks/normalizeList.js +14 -0
  621. package/node_modules/@fastify/send/benchmarks/parseBytesRange.js +15 -0
  622. package/node_modules/@fastify/send/eslint.config.js +6 -0
  623. package/node_modules/@fastify/send/examples/index.html +1 -0
  624. package/node_modules/@fastify/send/examples/simple.js +15 -0
  625. package/node_modules/@fastify/send/index.js +28 -0
  626. package/node_modules/@fastify/send/lib/collapseLeadingSlashes.js +25 -0
  627. package/node_modules/@fastify/send/lib/containsDotFile.js +23 -0
  628. package/node_modules/@fastify/send/lib/contentRange.js +18 -0
  629. package/node_modules/@fastify/send/lib/createHtmlDocument.js +29 -0
  630. package/node_modules/@fastify/send/lib/createHttpError.js +23 -0
  631. package/node_modules/@fastify/send/lib/isUtf8MimeType.js +12 -0
  632. package/node_modules/@fastify/send/lib/normalizeList.js +28 -0
  633. package/node_modules/@fastify/send/lib/parseBytesRange.js +133 -0
  634. package/node_modules/@fastify/send/lib/parseTokenList.js +46 -0
  635. package/node_modules/@fastify/send/lib/send.js +729 -0
  636. package/node_modules/@fastify/send/package.json +81 -0
  637. package/node_modules/@fastify/send/test/collapseLeadingSlashes.test.js +22 -0
  638. package/node_modules/@fastify/send/test/containsDotFile.test.js +18 -0
  639. package/node_modules/@fastify/send/test/fixtures/.hidden.txt +1 -0
  640. package/node_modules/@fastify/send/test/fixtures/.mine/.hidden.txt +1 -0
  641. package/node_modules/@fastify/send/test/fixtures/.mine/name.txt +1 -0
  642. package/node_modules/@fastify/send/test/fixtures/do..ts.txt +1 -0
  643. package/node_modules/@fastify/send/test/fixtures/empty.txt +0 -0
  644. package/node_modules/@fastify/send/test/fixtures/images/node-js.png +0 -0
  645. package/node_modules/@fastify/send/test/fixtures/name.d/name.txt +1 -0
  646. package/node_modules/@fastify/send/test/fixtures/name.dir/name.txt +1 -0
  647. package/node_modules/@fastify/send/test/fixtures/name.html +1 -0
  648. package/node_modules/@fastify/send/test/fixtures/name.txt +1 -0
  649. package/node_modules/@fastify/send/test/fixtures/no_ext +1 -0
  650. package/node_modules/@fastify/send/test/fixtures/nums.txt +1 -0
  651. package/node_modules/@fastify/send/test/fixtures/pets/.hidden.txt +1 -0
  652. package/node_modules/@fastify/send/test/fixtures/pets/index.html +3 -0
  653. package/node_modules/@fastify/send/test/fixtures/snow /342/230/203/index.html +0 -0
  654. package/node_modules/@fastify/send/test/fixtures/some thing.txt +1 -0
  655. package/node_modules/@fastify/send/test/fixtures/thing.html.html +1 -0
  656. package/node_modules/@fastify/send/test/fixtures/tobi.html +1 -0
  657. package/node_modules/@fastify/send/test/isUtf8MimeType.test.js +22 -0
  658. package/node_modules/@fastify/send/test/mime.test.js +56 -0
  659. package/node_modules/@fastify/send/test/normalizeList.test.js +28 -0
  660. package/node_modules/@fastify/send/test/parseBytesRange.test.js +103 -0
  661. package/node_modules/@fastify/send/test/send.1.test.js +646 -0
  662. package/node_modules/@fastify/send/test/send.2.test.js +977 -0
  663. package/node_modules/@fastify/send/test/send.3.test.js +133 -0
  664. package/node_modules/@fastify/send/test/utils.js +36 -0
  665. package/node_modules/@fastify/send/types/index.d.ts +167 -0
  666. package/node_modules/@fastify/send/types/index.test-d.ts +67 -0
  667. package/node_modules/@fastify/static/.gitattributes +5 -0
  668. package/node_modules/@fastify/static/.github/dependabot.yml +13 -0
  669. package/node_modules/@fastify/static/.github/workflows/ci.yml +33 -0
  670. package/node_modules/@fastify/static/.github/workflows/lock-threads.yml +19 -0
  671. package/node_modules/@fastify/static/LICENSE +21 -0
  672. package/node_modules/@fastify/static/README.md +538 -0
  673. package/node_modules/@fastify/static/eslint.config.js +7 -0
  674. package/node_modules/@fastify/static/example/public/.hidden/sample.json +1 -0
  675. package/node_modules/@fastify/static/example/public/images/sample.jpg +0 -0
  676. package/node_modules/@fastify/static/example/public/index.css +9 -0
  677. package/node_modules/@fastify/static/example/public/index.html +11 -0
  678. package/node_modules/@fastify/static/example/public/index.js +8 -0
  679. package/node_modules/@fastify/static/example/public2/test.css +4 -0
  680. package/node_modules/@fastify/static/example/public2/test.html +8 -0
  681. package/node_modules/@fastify/static/example/server-benchmark.js +39 -0
  682. package/node_modules/@fastify/static/example/server-compress.js +15 -0
  683. package/node_modules/@fastify/static/example/server-dir-list.js +38 -0
  684. package/node_modules/@fastify/static/example/server-hidden-file.js +15 -0
  685. package/node_modules/@fastify/static/example/server.js +13 -0
  686. package/node_modules/@fastify/static/index.js +726 -0
  687. package/node_modules/@fastify/static/lib/dirList.js +225 -0
  688. package/node_modules/@fastify/static/package.json +89 -0
  689. package/node_modules/@fastify/static/test/content-type/binary +0 -0
  690. package/node_modules/@fastify/static/test/content-type/binary.br +1 -0
  691. package/node_modules/@fastify/static/test/content-type/index.css +0 -0
  692. package/node_modules/@fastify/static/test/content-type/index.css.br +1 -0
  693. package/node_modules/@fastify/static/test/content-type/index.html +5 -0
  694. package/node_modules/@fastify/static/test/content-type/index.html.br +0 -0
  695. package/node_modules/@fastify/static/test/content-type/sample.jpg +0 -0
  696. package/node_modules/@fastify/static/test/content-type/test.txt +0 -0
  697. package/node_modules/@fastify/static/test/content-type/test.txt.br +1 -0
  698. package/node_modules/@fastify/static/test/content-type.test.js +144 -0
  699. package/node_modules/@fastify/static/test/dir-list.test.js +820 -0
  700. package/node_modules/@fastify/static/test/static/.example +1 -0
  701. package/node_modules/@fastify/static/test/static/100%.txt +1 -0
  702. package/node_modules/@fastify/static/test/static/a .md +1 -0
  703. package/node_modules/@fastify/static/test/static/deep/path/for/test/index.html +5 -0
  704. package/node_modules/@fastify/static/test/static/deep/path/for/test/purpose/foo.html +5 -0
  705. package/node_modules/@fastify/static/test/static/foo.html +3 -0
  706. package/node_modules/@fastify/static/test/static/foobar.html +3 -0
  707. package/node_modules/@fastify/static/test/static/index.css +0 -0
  708. package/node_modules/@fastify/static/test/static/index.html +5 -0
  709. package/node_modules/@fastify/static/test/static/shallow/sample.jpg +0 -0
  710. package/node_modules/@fastify/static/test/static-dotfiles/.aaa +0 -0
  711. package/node_modules/@fastify/static/test/static-dotfiles/dir/index.html +0 -0
  712. package/node_modules/@fastify/static/test/static-dotfiles/test.txt +0 -0
  713. package/node_modules/@fastify/static/test/static-encode/[...]/a .md +1 -0
  714. package/node_modules/@fastify/static/test/static-filtered/bar.private +1 -0
  715. package/node_modules/@fastify/static/test/static-filtered/deep/path/to/baz.html +3 -0
  716. package/node_modules/@fastify/static/test/static-filtered/deep/path/to/baz.private +1 -0
  717. package/node_modules/@fastify/static/test/static-filtered/index.html +3 -0
  718. package/node_modules/@fastify/static/test/static-hidden/.hidden/sample.json +1 -0
  719. package/node_modules/@fastify/static/test/static-pre-compressed/all-three.html +5 -0
  720. package/node_modules/@fastify/static/test/static-pre-compressed/all-three.html.br +0 -0
  721. package/node_modules/@fastify/static/test/static-pre-compressed/all-three.html.gz +0 -0
  722. package/node_modules/@fastify/static/test/static-pre-compressed/baz.json +3 -0
  723. package/node_modules/@fastify/static/test/static-pre-compressed/dir/index.html +5 -0
  724. package/node_modules/@fastify/static/test/static-pre-compressed/dir/index.html.br +0 -0
  725. package/node_modules/@fastify/static/test/static-pre-compressed/dir-gz/index.html +5 -0
  726. package/node_modules/@fastify/static/test/static-pre-compressed/dir-gz/index.html.gz +0 -0
  727. package/node_modules/@fastify/static/test/static-pre-compressed/empty/.gitkeep +0 -0
  728. package/node_modules/@fastify/static/test/static-pre-compressed/gzip-only.html +3 -0
  729. package/node_modules/@fastify/static/test/static-pre-compressed/gzip-only.html.gz +0 -0
  730. package/node_modules/@fastify/static/test/static-pre-compressed/index.html +5 -0
  731. package/node_modules/@fastify/static/test/static-pre-compressed/index.html.br +0 -0
  732. package/node_modules/@fastify/static/test/static-pre-compressed/sample.jpg +0 -0
  733. package/node_modules/@fastify/static/test/static-pre-compressed/sample.jpg.br +0 -0
  734. package/node_modules/@fastify/static/test/static-pre-compressed/uncompressed.html +3 -0
  735. package/node_modules/@fastify/static/test/static-symbolic-link/origin/subdir/subdir/index.html +3 -0
  736. package/node_modules/@fastify/static/test/static.test.js +4115 -0
  737. package/node_modules/@fastify/static/test/static2/bar.html +3 -0
  738. package/node_modules/@fastify/static/test/static2/index.html +3 -0
  739. package/node_modules/@fastify/static/types/index.d.ts +136 -0
  740. package/node_modules/@fastify/static/types/index.test-d.ts +240 -0
  741. package/node_modules/@lukeed/ms/dist/index.js +37 -0
  742. package/node_modules/@lukeed/ms/dist/index.min.js +1 -0
  743. package/node_modules/@lukeed/ms/dist/index.mjs +34 -0
  744. package/node_modules/@lukeed/ms/index.d.ts +2 -0
  745. package/node_modules/@lukeed/ms/license +9 -0
  746. package/node_modules/@lukeed/ms/package.json +48 -0
  747. package/node_modules/@lukeed/ms/readme.md +133 -0
  748. package/node_modules/@pinojs/redact/.github/dependabot.yml +13 -0
  749. package/node_modules/@pinojs/redact/.github/workflows/ci.yml +48 -0
  750. package/node_modules/@pinojs/redact/.github/workflows/publish-release.yml +43 -0
  751. package/node_modules/@pinojs/redact/LICENSE +21 -0
  752. package/node_modules/@pinojs/redact/README.md +350 -0
  753. package/node_modules/@pinojs/redact/benchmarks/basic.js +184 -0
  754. package/node_modules/@pinojs/redact/eslint.config.js +1 -0
  755. package/node_modules/@pinojs/redact/index.d.ts +52 -0
  756. package/node_modules/@pinojs/redact/index.js +529 -0
  757. package/node_modules/@pinojs/redact/index.test-d.ts +22 -0
  758. package/node_modules/@pinojs/redact/package.json +37 -0
  759. package/node_modules/@pinojs/redact/scripts/sync-version.mjs +20 -0
  760. package/node_modules/@pinojs/redact/test/actual-redact-comparison.test.js +211 -0
  761. package/node_modules/@pinojs/redact/test/index.test.js +824 -0
  762. package/node_modules/@pinojs/redact/test/integration.test.js +390 -0
  763. package/node_modules/@pinojs/redact/test/multiple-wildcards.test.js +227 -0
  764. package/node_modules/@pinojs/redact/test/prototype-pollution.test.js +223 -0
  765. package/node_modules/@pinojs/redact/test/selective-clone.test.js +115 -0
  766. package/node_modules/@pinojs/redact/tsconfig.json +19 -0
  767. package/node_modules/abstract-logging/Readme.md +47 -0
  768. package/node_modules/abstract-logging/index.js +18 -0
  769. package/node_modules/abstract-logging/package.json +25 -0
  770. package/node_modules/abstract-logging/test.js +17 -0
  771. package/node_modules/ajv/.runkit_example.js +23 -0
  772. package/node_modules/ajv/LICENSE +22 -0
  773. package/node_modules/ajv/README.md +207 -0
  774. package/node_modules/ajv/dist/2019.d.ts +19 -0
  775. package/node_modules/ajv/dist/2019.js +61 -0
  776. package/node_modules/ajv/dist/2019.js.map +1 -0
  777. package/node_modules/ajv/dist/2020.d.ts +19 -0
  778. package/node_modules/ajv/dist/2020.js +55 -0
  779. package/node_modules/ajv/dist/2020.js.map +1 -0
  780. package/node_modules/ajv/dist/ajv.d.ts +18 -0
  781. package/node_modules/ajv/dist/ajv.js +50 -0
  782. package/node_modules/ajv/dist/ajv.js.map +1 -0
  783. package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  784. package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  785. package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  786. package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  787. package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  788. package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  789. package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  790. package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  791. package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  792. package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  793. package/node_modules/ajv/dist/compile/errors.js +123 -0
  794. package/node_modules/ajv/dist/compile/errors.js.map +1 -0
  795. package/node_modules/ajv/dist/compile/index.d.ts +80 -0
  796. package/node_modules/ajv/dist/compile/index.js +242 -0
  797. package/node_modules/ajv/dist/compile/index.js.map +1 -0
  798. package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  799. package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  800. package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  801. package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  802. package/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
  803. package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  804. package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  805. package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  806. package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  807. package/node_modules/ajv/dist/compile/names.d.ts +20 -0
  808. package/node_modules/ajv/dist/compile/names.js +28 -0
  809. package/node_modules/ajv/dist/compile/names.js.map +1 -0
  810. package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  811. package/node_modules/ajv/dist/compile/ref_error.js +12 -0
  812. package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  813. package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  814. package/node_modules/ajv/dist/compile/resolve.js +155 -0
  815. package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  816. package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  817. package/node_modules/ajv/dist/compile/rules.js +26 -0
  818. package/node_modules/ajv/dist/compile/rules.js.map +1 -0
  819. package/node_modules/ajv/dist/compile/util.d.ts +40 -0
  820. package/node_modules/ajv/dist/compile/util.js +178 -0
  821. package/node_modules/ajv/dist/compile/util.js.map +1 -0
  822. package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  823. package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  824. package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  825. package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  826. package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  827. package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  828. package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  829. package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  830. package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  831. package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  832. package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  833. package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  834. package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  835. package/node_modules/ajv/dist/compile/validate/index.js +520 -0
  836. package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  837. package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  838. package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  839. package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  840. package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  841. package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  842. package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  843. package/node_modules/ajv/dist/core.d.ts +174 -0
  844. package/node_modules/ajv/dist/core.js +618 -0
  845. package/node_modules/ajv/dist/core.js.map +1 -0
  846. package/node_modules/ajv/dist/jtd.d.ts +47 -0
  847. package/node_modules/ajv/dist/jtd.js +72 -0
  848. package/node_modules/ajv/dist/jtd.js.map +1 -0
  849. package/node_modules/ajv/dist/refs/data.json +13 -0
  850. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  851. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  852. package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  853. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  854. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  855. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  856. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  857. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  858. package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  859. package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  860. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  861. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  862. package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  863. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  864. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  865. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  866. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  867. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  868. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  869. package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  870. package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  871. package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  872. package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  873. package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  874. package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  875. package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  876. package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  877. package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  878. package/node_modules/ajv/dist/runtime/equal.js +7 -0
  879. package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  880. package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  881. package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  882. package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  883. package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  884. package/node_modules/ajv/dist/runtime/quote.js +30 -0
  885. package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  886. package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  887. package/node_modules/ajv/dist/runtime/re2.js +6 -0
  888. package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  889. package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  890. package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  891. package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  892. package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  893. package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  894. package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  895. package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  896. package/node_modules/ajv/dist/runtime/uri.js +6 -0
  897. package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  898. package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  899. package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  900. package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  901. package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  902. package/node_modules/ajv/dist/standalone/index.js +90 -0
  903. package/node_modules/ajv/dist/standalone/index.js.map +1 -0
  904. package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  905. package/node_modules/ajv/dist/standalone/instance.js +35 -0
  906. package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  907. package/node_modules/ajv/dist/types/index.d.ts +183 -0
  908. package/node_modules/ajv/dist/types/index.js +3 -0
  909. package/node_modules/ajv/dist/types/index.js.map +1 -0
  910. package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  911. package/node_modules/ajv/dist/types/json-schema.js +3 -0
  912. package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  913. package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  914. package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  915. package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  916. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  917. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  918. package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  919. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  920. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  921. package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  922. package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  923. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  924. package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  925. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  926. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  927. package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  928. package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  929. package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  930. package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  931. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  932. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  933. package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  934. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  935. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  936. package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  937. package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  938. package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  939. package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  940. package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  941. package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  942. package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  943. package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  944. package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  945. package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  946. package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  947. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  948. package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  949. package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  950. package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  951. package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  952. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  953. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  954. package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  955. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  956. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  957. package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  958. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  959. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  960. package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  961. package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  962. package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  963. package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  964. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  965. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  966. package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  967. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  968. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  969. package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  970. package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  971. package/node_modules/ajv/dist/vocabularies/code.js +131 -0
  972. package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  973. package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  974. package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  975. package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  976. package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  977. package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  978. package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  979. package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  980. package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  981. package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  982. package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  983. package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  984. package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  985. package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  986. package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  987. package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  988. package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  989. package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  990. package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  991. package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  992. package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  993. package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  994. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  995. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  996. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  997. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  998. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  999. package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  1000. package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  1001. package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  1002. package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  1003. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  1004. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  1005. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  1006. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  1007. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  1008. package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  1009. package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  1010. package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  1011. package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  1012. package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  1013. package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  1014. package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  1015. package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  1016. package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  1017. package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  1018. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  1019. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  1020. package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  1021. package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  1022. package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  1023. package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  1024. package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  1025. package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  1026. package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  1027. package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  1028. package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  1029. package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  1030. package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  1031. package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  1032. package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  1033. package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  1034. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  1035. package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  1036. package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  1037. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  1038. package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  1039. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  1040. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  1041. package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  1042. package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  1043. package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  1044. package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  1045. package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  1046. package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  1047. package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  1048. package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  1049. package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  1050. package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  1051. package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  1052. package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  1053. package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  1054. package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  1055. package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  1056. package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  1057. package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  1058. package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  1059. package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  1060. package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  1061. package/node_modules/ajv/dist/vocabularies/next.js +8 -0
  1062. package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  1063. package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  1064. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  1065. package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  1066. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  1067. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  1068. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  1069. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  1070. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  1071. package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  1072. package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  1073. package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  1074. package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  1075. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  1076. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  1077. package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  1078. package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  1079. package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  1080. package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  1081. package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  1082. package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  1083. package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  1084. package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  1085. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  1086. package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  1087. package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  1088. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  1089. package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  1090. package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  1091. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  1092. package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  1093. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  1094. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  1095. package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  1096. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  1097. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  1098. package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  1099. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  1100. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  1101. package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  1102. package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  1103. package/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
  1104. package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  1105. package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  1106. package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  1107. package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  1108. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  1109. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  1110. package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  1111. package/node_modules/ajv/lib/2019.ts +81 -0
  1112. package/node_modules/ajv/lib/2020.ts +75 -0
  1113. package/node_modules/ajv/lib/ajv.ts +70 -0
  1114. package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  1115. package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  1116. package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  1117. package/node_modules/ajv/lib/compile/errors.ts +184 -0
  1118. package/node_modules/ajv/lib/compile/index.ts +324 -0
  1119. package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  1120. package/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
  1121. package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  1122. package/node_modules/ajv/lib/compile/names.ts +27 -0
  1123. package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  1124. package/node_modules/ajv/lib/compile/resolve.ts +149 -0
  1125. package/node_modules/ajv/lib/compile/rules.ts +50 -0
  1126. package/node_modules/ajv/lib/compile/util.ts +213 -0
  1127. package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  1128. package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  1129. package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  1130. package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  1131. package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  1132. package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  1133. package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  1134. package/node_modules/ajv/lib/core.ts +892 -0
  1135. package/node_modules/ajv/lib/jtd.ts +132 -0
  1136. package/node_modules/ajv/lib/refs/data.json +13 -0
  1137. package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  1138. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  1139. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  1140. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  1141. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  1142. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  1143. package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  1144. package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  1145. package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  1146. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  1147. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  1148. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  1149. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  1150. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  1151. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  1152. package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  1153. package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  1154. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  1155. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  1156. package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  1157. package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  1158. package/node_modules/ajv/lib/runtime/equal.ts +7 -0
  1159. package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  1160. package/node_modules/ajv/lib/runtime/quote.ts +31 -0
  1161. package/node_modules/ajv/lib/runtime/re2.ts +6 -0
  1162. package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  1163. package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  1164. package/node_modules/ajv/lib/runtime/uri.ts +6 -0
  1165. package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  1166. package/node_modules/ajv/lib/standalone/index.ts +100 -0
  1167. package/node_modules/ajv/lib/standalone/instance.ts +36 -0
  1168. package/node_modules/ajv/lib/types/index.ts +244 -0
  1169. package/node_modules/ajv/lib/types/json-schema.ts +187 -0
  1170. package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  1171. package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  1172. package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  1173. package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  1174. package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  1175. package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  1176. package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  1177. package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  1178. package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  1179. package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  1180. package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  1181. package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  1182. package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  1183. package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  1184. package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  1185. package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  1186. package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  1187. package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  1188. package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  1189. package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  1190. package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  1191. package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  1192. package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  1193. package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  1194. package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  1195. package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  1196. package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  1197. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  1198. package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  1199. package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  1200. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  1201. package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  1202. package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  1203. package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  1204. package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  1205. package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  1206. package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  1207. package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  1208. package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  1209. package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  1210. package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  1211. package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  1212. package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  1213. package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  1214. package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  1215. package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  1216. package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  1217. package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  1218. package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  1219. package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  1220. package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  1221. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  1222. package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  1223. package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  1224. package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  1225. package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  1226. package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  1227. package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  1228. package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  1229. package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  1230. package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  1231. package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  1232. package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  1233. package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
  1234. package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  1235. package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  1236. package/node_modules/ajv/package.json +127 -0
  1237. package/node_modules/ajv-formats/LICENSE +21 -0
  1238. package/node_modules/ajv-formats/README.md +125 -0
  1239. package/node_modules/ajv-formats/dist/formats.d.ts +9 -0
  1240. package/node_modules/ajv-formats/dist/formats.js +208 -0
  1241. package/node_modules/ajv-formats/dist/formats.js.map +1 -0
  1242. package/node_modules/ajv-formats/dist/index.d.ts +15 -0
  1243. package/node_modules/ajv-formats/dist/index.js +37 -0
  1244. package/node_modules/ajv-formats/dist/index.js.map +1 -0
  1245. package/node_modules/ajv-formats/dist/limit.d.ts +10 -0
  1246. package/node_modules/ajv-formats/dist/limit.js +69 -0
  1247. package/node_modules/ajv-formats/dist/limit.js.map +1 -0
  1248. package/node_modules/ajv-formats/package.json +74 -0
  1249. package/node_modules/ajv-formats/src/formats.ts +269 -0
  1250. package/node_modules/ajv-formats/src/index.ts +62 -0
  1251. package/node_modules/ajv-formats/src/limit.ts +99 -0
  1252. package/node_modules/atomic-sleep/.travis.yml +11 -0
  1253. package/node_modules/atomic-sleep/LICENSE +22 -0
  1254. package/node_modules/atomic-sleep/index.js +38 -0
  1255. package/node_modules/atomic-sleep/package.json +37 -0
  1256. package/node_modules/atomic-sleep/readme.md +58 -0
  1257. package/node_modules/atomic-sleep/test.js +47 -0
  1258. package/node_modules/avvio/.borp.yaml +2 -0
  1259. package/node_modules/avvio/.gitattributes +2 -0
  1260. package/node_modules/avvio/.github/dependabot.yml +13 -0
  1261. package/node_modules/avvio/.github/release-drafter.yml +4 -0
  1262. package/node_modules/avvio/.github/workflows/ci.yml +33 -0
  1263. package/node_modules/avvio/LICENSE +24 -0
  1264. package/node_modules/avvio/README.md +700 -0
  1265. package/node_modules/avvio/boot.js +621 -0
  1266. package/node_modules/avvio/eslint.config.js +6 -0
  1267. package/node_modules/avvio/examples/example.js +72 -0
  1268. package/node_modules/avvio/index.d.ts +95 -0
  1269. package/node_modules/avvio/lib/create-promise.js +45 -0
  1270. package/node_modules/avvio/lib/debug.js +19 -0
  1271. package/node_modules/avvio/lib/errors.js +38 -0
  1272. package/node_modules/avvio/lib/execute-with-thenable.js +36 -0
  1273. package/node_modules/avvio/lib/get-plugin-name.js +34 -0
  1274. package/node_modules/avvio/lib/is-bundled-or-typescript-plugin.js +23 -0
  1275. package/node_modules/avvio/lib/is-promise-like.js +17 -0
  1276. package/node_modules/avvio/lib/plugin.js +279 -0
  1277. package/node_modules/avvio/lib/symbols.js +26 -0
  1278. package/node_modules/avvio/lib/thenify.js +60 -0
  1279. package/node_modules/avvio/lib/time-tree.js +200 -0
  1280. package/node_modules/avvio/lib/validate-plugin.js +26 -0
  1281. package/node_modules/avvio/package.json +74 -0
  1282. package/node_modules/avvio/test/after-and-ready.test.js +903 -0
  1283. package/node_modules/avvio/test/after-pass-through.test.js +33 -0
  1284. package/node_modules/avvio/test/after-self-promise.test.js +20 -0
  1285. package/node_modules/avvio/test/after-throw.test.js +26 -0
  1286. package/node_modules/avvio/test/after-use-after.test.js +87 -0
  1287. package/node_modules/avvio/test/async-await.test.js +323 -0
  1288. package/node_modules/avvio/test/await-after.test.js +448 -0
  1289. package/node_modules/avvio/test/await-self.test.js +31 -0
  1290. package/node_modules/avvio/test/await-use.test.js +295 -0
  1291. package/node_modules/avvio/test/basic.test.js +459 -0
  1292. package/node_modules/avvio/test/callbacks.test.js +116 -0
  1293. package/node_modules/avvio/test/catch-override-exception.test.js +27 -0
  1294. package/node_modules/avvio/test/chainable.test.js +70 -0
  1295. package/node_modules/avvio/test/close.test.js +562 -0
  1296. package/node_modules/avvio/test/errors.test.js +26 -0
  1297. package/node_modules/avvio/test/esm.mjs +12 -0
  1298. package/node_modules/avvio/test/esm.test.js +8 -0
  1299. package/node_modules/avvio/test/events-listeners.test.js +23 -0
  1300. package/node_modules/avvio/test/expose.test.js +76 -0
  1301. package/node_modules/avvio/test/fixtures/dummy.txt +1 -0
  1302. package/node_modules/avvio/test/fixtures/esm.mjs +3 -0
  1303. package/node_modules/avvio/test/fixtures/plugin-no-next.js +5 -0
  1304. package/node_modules/avvio/test/gh-issues/bug-205.test.js +17 -0
  1305. package/node_modules/avvio/test/lib/create-promise.test.js +56 -0
  1306. package/node_modules/avvio/test/lib/execute-with-thenable.test.js +86 -0
  1307. package/node_modules/avvio/test/lib/get-plugin-name.test.js +67 -0
  1308. package/node_modules/avvio/test/lib/is-bundled-or-typescript-plugin.test.js +20 -0
  1309. package/node_modules/avvio/test/lib/is-promise-like.test.js +20 -0
  1310. package/node_modules/avvio/test/lib/thenify.test.js +140 -0
  1311. package/node_modules/avvio/test/lib/time-tree.test.js +391 -0
  1312. package/node_modules/avvio/test/lib/validate-plugin.test.js +19 -0
  1313. package/node_modules/avvio/test/load-plugin.test.js +132 -0
  1314. package/node_modules/avvio/test/no-done.test.js +19 -0
  1315. package/node_modules/avvio/test/on-ready-timeout-await.test.js +33 -0
  1316. package/node_modules/avvio/test/override.test.js +385 -0
  1317. package/node_modules/avvio/test/plugin-loaded-so-far.test.js +81 -0
  1318. package/node_modules/avvio/test/plugin-name.test.js +58 -0
  1319. package/node_modules/avvio/test/plugin-timeout-await.test.js +33 -0
  1320. package/node_modules/avvio/test/plugin-timeout.test.js +227 -0
  1321. package/node_modules/avvio/test/pretty-print.test.js +76 -0
  1322. package/node_modules/avvio/test/reentrant.test.js +126 -0
  1323. package/node_modules/avvio/test/symbol-async-dispose.test.js +28 -0
  1324. package/node_modules/avvio/test/to-json.test.js +130 -0
  1325. package/node_modules/avvio/test/twice-done.test.js +23 -0
  1326. package/node_modules/avvio/test/types/index.ts +412 -0
  1327. package/node_modules/avvio/test/types/tsconfig.json +9 -0
  1328. package/node_modules/balanced-match/LICENSE.md +23 -0
  1329. package/node_modules/balanced-match/README.md +57 -0
  1330. package/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  1331. package/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  1332. package/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  1333. package/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  1334. package/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  1335. package/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  1336. package/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  1337. package/node_modules/balanced-match/dist/esm/index.js +54 -0
  1338. package/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  1339. package/node_modules/balanced-match/dist/esm/package.json +3 -0
  1340. package/node_modules/balanced-match/package.json +68 -0
  1341. package/node_modules/brace-expansion/LICENSE +23 -0
  1342. package/node_modules/brace-expansion/README.md +94 -0
  1343. package/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  1344. package/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  1345. package/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  1346. package/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  1347. package/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  1348. package/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  1349. package/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  1350. package/node_modules/brace-expansion/dist/esm/index.js +197 -0
  1351. package/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  1352. package/node_modules/brace-expansion/dist/esm/package.json +3 -0
  1353. package/node_modules/brace-expansion/package.json +64 -0
  1354. package/node_modules/content-disposition/LICENSE +22 -0
  1355. package/node_modules/content-disposition/README.md +141 -0
  1356. package/node_modules/content-disposition/index.js +536 -0
  1357. package/node_modules/content-disposition/package.json +40 -0
  1358. package/node_modules/cookie/LICENSE +24 -0
  1359. package/node_modules/cookie/README.md +295 -0
  1360. package/node_modules/cookie/dist/index.d.ts +148 -0
  1361. package/node_modules/cookie/dist/index.js +350 -0
  1362. package/node_modules/cookie/dist/index.js.map +1 -0
  1363. package/node_modules/cookie/package.json +47 -0
  1364. package/node_modules/depd/History.md +103 -0
  1365. package/node_modules/depd/LICENSE +22 -0
  1366. package/node_modules/depd/Readme.md +280 -0
  1367. package/node_modules/depd/index.js +538 -0
  1368. package/node_modules/depd/lib/browser/index.js +77 -0
  1369. package/node_modules/depd/package.json +45 -0
  1370. package/node_modules/dequal/dist/index.js +86 -0
  1371. package/node_modules/dequal/dist/index.min.js +1 -0
  1372. package/node_modules/dequal/dist/index.mjs +84 -0
  1373. package/node_modules/dequal/index.d.ts +1 -0
  1374. package/node_modules/dequal/license +21 -0
  1375. package/node_modules/dequal/lite/index.d.ts +1 -0
  1376. package/node_modules/dequal/lite/index.js +31 -0
  1377. package/node_modules/dequal/lite/index.min.js +1 -0
  1378. package/node_modules/dequal/lite/index.mjs +29 -0
  1379. package/node_modules/dequal/package.json +57 -0
  1380. package/node_modules/dequal/readme.md +112 -0
  1381. package/node_modules/escape-html/LICENSE +24 -0
  1382. package/node_modules/escape-html/Readme.md +43 -0
  1383. package/node_modules/escape-html/index.js +78 -0
  1384. package/node_modules/escape-html/package.json +24 -0
  1385. package/node_modules/fast-decode-uri-component/.travis.yml +12 -0
  1386. package/node_modules/fast-decode-uri-component/LICENSE +23 -0
  1387. package/node_modules/fast-decode-uri-component/README.md +43 -0
  1388. package/node_modules/fast-decode-uri-component/bench.js +35 -0
  1389. package/node_modules/fast-decode-uri-component/index.js +115 -0
  1390. package/node_modules/fast-decode-uri-component/package.json +33 -0
  1391. package/node_modules/fast-decode-uri-component/test.js +32 -0
  1392. package/node_modules/fast-deep-equal/LICENSE +21 -0
  1393. package/node_modules/fast-deep-equal/README.md +96 -0
  1394. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  1395. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  1396. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  1397. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  1398. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  1399. package/node_modules/fast-deep-equal/index.js +46 -0
  1400. package/node_modules/fast-deep-equal/package.json +61 -0
  1401. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  1402. package/node_modules/fast-deep-equal/react.js +53 -0
  1403. package/node_modules/fast-json-stringify/.gitattributes +2 -0
  1404. package/node_modules/fast-json-stringify/.github/dependabot.yml +13 -0
  1405. package/node_modules/fast-json-stringify/.github/workflows/ci.yml +33 -0
  1406. package/node_modules/fast-json-stringify/.github/workflows/lock-threads.yml +19 -0
  1407. package/node_modules/fast-json-stringify/LICENSE +22 -0
  1408. package/node_modules/fast-json-stringify/README.md +742 -0
  1409. package/node_modules/fast-json-stringify/benchmark/bench-cmp-branch.js +116 -0
  1410. package/node_modules/fast-json-stringify/benchmark/bench-cmp-lib.js +339 -0
  1411. package/node_modules/fast-json-stringify/benchmark/bench-thread.js +33 -0
  1412. package/node_modules/fast-json-stringify/benchmark/bench.js +391 -0
  1413. package/node_modules/fast-json-stringify/build/build-schema-validator.js +26 -0
  1414. package/node_modules/fast-json-stringify/eslint.config.js +9 -0
  1415. package/node_modules/fast-json-stringify/examples/example.js +81 -0
  1416. package/node_modules/fast-json-stringify/examples/server.js +42 -0
  1417. package/node_modules/fast-json-stringify/index.js +1312 -0
  1418. package/node_modules/fast-json-stringify/lib/location.js +24 -0
  1419. package/node_modules/fast-json-stringify/lib/merge-schemas.js +9 -0
  1420. package/node_modules/fast-json-stringify/lib/schema-validator.js +1134 -0
  1421. package/node_modules/fast-json-stringify/lib/serializer.js +141 -0
  1422. package/node_modules/fast-json-stringify/lib/standalone.js +34 -0
  1423. package/node_modules/fast-json-stringify/lib/validator.js +96 -0
  1424. package/node_modules/fast-json-stringify/package.json +89 -0
  1425. package/node_modules/fast-json-stringify/test/additionalProperties.test.js +332 -0
  1426. package/node_modules/fast-json-stringify/test/allof.test.js +751 -0
  1427. package/node_modules/fast-json-stringify/test/any.test.js +231 -0
  1428. package/node_modules/fast-json-stringify/test/anyof.test.js +812 -0
  1429. package/node_modules/fast-json-stringify/test/array.test.js +688 -0
  1430. package/node_modules/fast-json-stringify/test/asNumber.test.js +13 -0
  1431. package/node_modules/fast-json-stringify/test/basic.test.js +400 -0
  1432. package/node_modules/fast-json-stringify/test/bigint.test.js +76 -0
  1433. package/node_modules/fast-json-stringify/test/clean-cache.test.js +47 -0
  1434. package/node_modules/fast-json-stringify/test/const.test.js +314 -0
  1435. package/node_modules/fast-json-stringify/test/date.test.js +639 -0
  1436. package/node_modules/fast-json-stringify/test/debug-mode.test.js +142 -0
  1437. package/node_modules/fast-json-stringify/test/defaults.test.js +376 -0
  1438. package/node_modules/fast-json-stringify/test/enum.test.js +37 -0
  1439. package/node_modules/fast-json-stringify/test/fix-604.test.js +25 -0
  1440. package/node_modules/fast-json-stringify/test/fixtures/.keep +0 -0
  1441. package/node_modules/fast-json-stringify/test/if-then-else.test.js +540 -0
  1442. package/node_modules/fast-json-stringify/test/inferType.test.js +92 -0
  1443. package/node_modules/fast-json-stringify/test/infinity.test.js +55 -0
  1444. package/node_modules/fast-json-stringify/test/integer.test.js +194 -0
  1445. package/node_modules/fast-json-stringify/test/invalidSchema.test.js +38 -0
  1446. package/node_modules/fast-json-stringify/test/issue-479.test.js +57 -0
  1447. package/node_modules/fast-json-stringify/test/issue-793.test.js +107 -0
  1448. package/node_modules/fast-json-stringify/test/issue-794.test.js +177 -0
  1449. package/node_modules/fast-json-stringify/test/issue-836.test.js +183 -0
  1450. package/node_modules/fast-json-stringify/test/json-add-comma.test.js +57 -0
  1451. package/node_modules/fast-json-stringify/test/json-schema-test-suite/README.md +10 -0
  1452. package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft4/required.json +54 -0
  1453. package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft4.test.js +12 -0
  1454. package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft6/required.json +70 -0
  1455. package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft6.test.js +12 -0
  1456. package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft7/required.json +70 -0
  1457. package/node_modules/fast-json-stringify/test/json-schema-test-suite/draft7.test.js +12 -0
  1458. package/node_modules/fast-json-stringify/test/json-schema-test-suite/util.js +31 -0
  1459. package/node_modules/fast-json-stringify/test/missing-values.test.js +88 -0
  1460. package/node_modules/fast-json-stringify/test/multi-type-serializer.test.js +19 -0
  1461. package/node_modules/fast-json-stringify/test/nestedObjects.test.js +63 -0
  1462. package/node_modules/fast-json-stringify/test/nullable.test.js +543 -0
  1463. package/node_modules/fast-json-stringify/test/oneof.test.js +510 -0
  1464. package/node_modules/fast-json-stringify/test/patternProperties.test.js +168 -0
  1465. package/node_modules/fast-json-stringify/test/recursion.test.js +245 -0
  1466. package/node_modules/fast-json-stringify/test/ref.json +12 -0
  1467. package/node_modules/fast-json-stringify/test/ref.test.js +2077 -0
  1468. package/node_modules/fast-json-stringify/test/regex.test.js +32 -0
  1469. package/node_modules/fast-json-stringify/test/required.test.js +204 -0
  1470. package/node_modules/fast-json-stringify/test/requiresAjv.test.js +50 -0
  1471. package/node_modules/fast-json-stringify/test/sanitize.test.js +141 -0
  1472. package/node_modules/fast-json-stringify/test/sanitize2.test.js +18 -0
  1473. package/node_modules/fast-json-stringify/test/sanitize3.test.js +17 -0
  1474. package/node_modules/fast-json-stringify/test/sanitize4.test.js +16 -0
  1475. package/node_modules/fast-json-stringify/test/sanitize5.test.js +16 -0
  1476. package/node_modules/fast-json-stringify/test/sanitize6.test.js +22 -0
  1477. package/node_modules/fast-json-stringify/test/sanitize7.test.js +68 -0
  1478. package/node_modules/fast-json-stringify/test/side-effect.test.js +196 -0
  1479. package/node_modules/fast-json-stringify/test/standalone-mode.test.js +219 -0
  1480. package/node_modules/fast-json-stringify/test/string.test.js +84 -0
  1481. package/node_modules/fast-json-stringify/test/surrogate.test.js +67 -0
  1482. package/node_modules/fast-json-stringify/test/toJSON.test.js +203 -0
  1483. package/node_modules/fast-json-stringify/test/typebox.test.js +36 -0
  1484. package/node_modules/fast-json-stringify/test/typesArray.test.js +550 -0
  1485. package/node_modules/fast-json-stringify/test/unknownFormats.test.js +27 -0
  1486. package/node_modules/fast-json-stringify/test/webpack.test.js +50 -0
  1487. package/node_modules/fast-json-stringify/types/index.d.ts +231 -0
  1488. package/node_modules/fast-json-stringify/types/index.tst.ts +259 -0
  1489. package/node_modules/fast-querystring/LICENSE +25 -0
  1490. package/node_modules/fast-querystring/README.md +114 -0
  1491. package/node_modules/fast-querystring/lib/index.d.ts +14 -0
  1492. package/node_modules/fast-querystring/lib/index.js +20 -0
  1493. package/node_modules/fast-querystring/lib/internals/querystring.js +96 -0
  1494. package/node_modules/fast-querystring/lib/parse.js +126 -0
  1495. package/node_modules/fast-querystring/lib/stringify.js +69 -0
  1496. package/node_modules/fast-querystring/package.json +56 -0
  1497. package/node_modules/fast-uri/.gitattributes +2 -0
  1498. package/node_modules/fast-uri/.github/dependabot.yml +13 -0
  1499. package/node_modules/fast-uri/.github/workflows/ci.yml +106 -0
  1500. package/node_modules/fast-uri/.github/workflows/lock-threads.yml +19 -0
  1501. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
  1502. package/node_modules/fast-uri/LICENSE +30 -0
  1503. package/node_modules/fast-uri/README.md +152 -0
  1504. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  1505. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  1506. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  1507. package/node_modules/fast-uri/benchmark/package.json +17 -0
  1508. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  1509. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  1510. package/node_modules/fast-uri/eslint.config.js +6 -0
  1511. package/node_modules/fast-uri/index.js +406 -0
  1512. package/node_modules/fast-uri/lib/schemes.js +267 -0
  1513. package/node_modules/fast-uri/lib/utils.js +443 -0
  1514. package/node_modules/fast-uri/package.json +68 -0
  1515. package/node_modules/fast-uri/test/ajv.test.js +43 -0
  1516. package/node_modules/fast-uri/test/equal.test.js +117 -0
  1517. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  1518. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  1519. package/node_modules/fast-uri/test/parse.test.js +323 -0
  1520. package/node_modules/fast-uri/test/resolve.test.js +87 -0
  1521. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  1522. package/node_modules/fast-uri/test/security-normalization.test.js +39 -0
  1523. package/node_modules/fast-uri/test/security.test.js +133 -0
  1524. package/node_modules/fast-uri/test/serialize.test.js +151 -0
  1525. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  1526. package/node_modules/fast-uri/test/uri-js.test.js +912 -0
  1527. package/node_modules/fast-uri/test/util.test.js +38 -0
  1528. package/node_modules/fast-uri/tsconfig.json +9 -0
  1529. package/node_modules/fast-uri/types/index.d.ts +60 -0
  1530. package/node_modules/fast-uri/types/index.test-d.ts +17 -0
  1531. package/node_modules/fastify/.borp.yaml +3 -0
  1532. package/node_modules/fastify/.markdownlint-cli2.yaml +22 -0
  1533. package/node_modules/fastify/.prettierignore +1 -0
  1534. package/node_modules/fastify/GOVERNANCE.md +4 -0
  1535. package/node_modules/fastify/LICENSE +21 -0
  1536. package/node_modules/fastify/PROJECT_CHARTER.md +126 -0
  1537. package/node_modules/fastify/README.md +423 -0
  1538. package/node_modules/fastify/SECURITY.md +220 -0
  1539. package/node_modules/fastify/SPONSORS.md +24 -0
  1540. package/node_modules/fastify/build/build-error-serializer.js +35 -0
  1541. package/node_modules/fastify/build/build-validation.js +169 -0
  1542. package/node_modules/fastify/build/sync-version.js +11 -0
  1543. package/node_modules/fastify/docs/Guides/Benchmarking.md +60 -0
  1544. package/node_modules/fastify/docs/Guides/Database.md +321 -0
  1545. package/node_modules/fastify/docs/Guides/Delay-Accepting-Requests.md +608 -0
  1546. package/node_modules/fastify/docs/Guides/Detecting-When-Clients-Abort.md +172 -0
  1547. package/node_modules/fastify/docs/Guides/Ecosystem.md +730 -0
  1548. package/node_modules/fastify/docs/Guides/Fluent-Schema.md +127 -0
  1549. package/node_modules/fastify/docs/Guides/Getting-Started.md +620 -0
  1550. package/node_modules/fastify/docs/Guides/Index.md +43 -0
  1551. package/node_modules/fastify/docs/Guides/Migration-Guide-V3.md +287 -0
  1552. package/node_modules/fastify/docs/Guides/Migration-Guide-V4.md +267 -0
  1553. package/node_modules/fastify/docs/Guides/Migration-Guide-V5.md +727 -0
  1554. package/node_modules/fastify/docs/Guides/Plugins-Guide.md +520 -0
  1555. package/node_modules/fastify/docs/Guides/Prototype-Poisoning.md +383 -0
  1556. package/node_modules/fastify/docs/Guides/Recommendations.md +378 -0
  1557. package/node_modules/fastify/docs/Guides/Serverless.md +604 -0
  1558. package/node_modules/fastify/docs/Guides/Style-Guide.md +246 -0
  1559. package/node_modules/fastify/docs/Guides/Testing.md +481 -0
  1560. package/node_modules/fastify/docs/Guides/Write-Plugin.md +103 -0
  1561. package/node_modules/fastify/docs/Guides/Write-Type-Provider.md +34 -0
  1562. package/node_modules/fastify/docs/Reference/ContentTypeParser.md +271 -0
  1563. package/node_modules/fastify/docs/Reference/Decorators.md +436 -0
  1564. package/node_modules/fastify/docs/Reference/Encapsulation.md +194 -0
  1565. package/node_modules/fastify/docs/Reference/Errors.md +377 -0
  1566. package/node_modules/fastify/docs/Reference/HTTP2.md +94 -0
  1567. package/node_modules/fastify/docs/Reference/Hooks.md +958 -0
  1568. package/node_modules/fastify/docs/Reference/Index.md +73 -0
  1569. package/node_modules/fastify/docs/Reference/LTS.md +86 -0
  1570. package/node_modules/fastify/docs/Reference/Lifecycle.md +99 -0
  1571. package/node_modules/fastify/docs/Reference/Logging.md +268 -0
  1572. package/node_modules/fastify/docs/Reference/Middleware.md +79 -0
  1573. package/node_modules/fastify/docs/Reference/Plugins.md +245 -0
  1574. package/node_modules/fastify/docs/Reference/Principles.md +73 -0
  1575. package/node_modules/fastify/docs/Reference/Reply.md +1001 -0
  1576. package/node_modules/fastify/docs/Reference/Request.md +295 -0
  1577. package/node_modules/fastify/docs/Reference/Routes.md +802 -0
  1578. package/node_modules/fastify/docs/Reference/Server.md +2389 -0
  1579. package/node_modules/fastify/docs/Reference/Type-Providers.md +256 -0
  1580. package/node_modules/fastify/docs/Reference/TypeScript.md +1729 -0
  1581. package/node_modules/fastify/docs/Reference/Validation-and-Serialization.md +1130 -0
  1582. package/node_modules/fastify/docs/Reference/Warnings.md +58 -0
  1583. package/node_modules/fastify/docs/index.md +24 -0
  1584. package/node_modules/fastify/docs/resources/encapsulation_context.drawio +1 -0
  1585. package/node_modules/fastify/docs/resources/encapsulation_context.svg +3 -0
  1586. package/node_modules/fastify/eslint.config.js +35 -0
  1587. package/node_modules/fastify/examples/asyncawait.js +38 -0
  1588. package/node_modules/fastify/examples/benchmark/body.json +3 -0
  1589. package/node_modules/fastify/examples/benchmark/hooks-benchmark-async-await.js +44 -0
  1590. package/node_modules/fastify/examples/benchmark/hooks-benchmark.js +52 -0
  1591. package/node_modules/fastify/examples/benchmark/parser.js +47 -0
  1592. package/node_modules/fastify/examples/benchmark/simple.js +30 -0
  1593. package/node_modules/fastify/examples/benchmark/webstream.js +27 -0
  1594. package/node_modules/fastify/examples/hooks.js +91 -0
  1595. package/node_modules/fastify/examples/http2.js +39 -0
  1596. package/node_modules/fastify/examples/https.js +38 -0
  1597. package/node_modules/fastify/examples/parser.js +53 -0
  1598. package/node_modules/fastify/examples/plugin.js +12 -0
  1599. package/node_modules/fastify/examples/route-prefix.js +38 -0
  1600. package/node_modules/fastify/examples/shared-schema.js +38 -0
  1601. package/node_modules/fastify/examples/simple-stream.js +20 -0
  1602. package/node_modules/fastify/examples/simple.js +32 -0
  1603. package/node_modules/fastify/examples/simple.mjs +27 -0
  1604. package/node_modules/fastify/examples/typescript-server.ts +79 -0
  1605. package/node_modules/fastify/examples/use-plugin.js +29 -0
  1606. package/node_modules/fastify/fastify.d.ts +253 -0
  1607. package/node_modules/fastify/fastify.js +985 -0
  1608. package/node_modules/fastify/integration/server.js +29 -0
  1609. package/node_modules/fastify/integration/test.sh +23 -0
  1610. package/node_modules/fastify/lib/config-validator.js +1266 -0
  1611. package/node_modules/fastify/lib/content-type-parser.js +413 -0
  1612. package/node_modules/fastify/lib/content-type.js +160 -0
  1613. package/node_modules/fastify/lib/context.js +98 -0
  1614. package/node_modules/fastify/lib/decorate.js +152 -0
  1615. package/node_modules/fastify/lib/error-handler.js +173 -0
  1616. package/node_modules/fastify/lib/error-serializer.js +134 -0
  1617. package/node_modules/fastify/lib/error-status.js +14 -0
  1618. package/node_modules/fastify/lib/errors.js +516 -0
  1619. package/node_modules/fastify/lib/four-oh-four.js +190 -0
  1620. package/node_modules/fastify/lib/handle-request.js +195 -0
  1621. package/node_modules/fastify/lib/head-route.js +45 -0
  1622. package/node_modules/fastify/lib/hooks.js +429 -0
  1623. package/node_modules/fastify/lib/initial-config-validation.js +37 -0
  1624. package/node_modules/fastify/lib/logger-factory.js +136 -0
  1625. package/node_modules/fastify/lib/logger-pino.js +68 -0
  1626. package/node_modules/fastify/lib/noop-set.js +10 -0
  1627. package/node_modules/fastify/lib/plugin-override.js +90 -0
  1628. package/node_modules/fastify/lib/plugin-utils.js +169 -0
  1629. package/node_modules/fastify/lib/promise.js +23 -0
  1630. package/node_modules/fastify/lib/reply.js +1030 -0
  1631. package/node_modules/fastify/lib/req-id-gen-factory.js +52 -0
  1632. package/node_modules/fastify/lib/request.js +387 -0
  1633. package/node_modules/fastify/lib/route.js +686 -0
  1634. package/node_modules/fastify/lib/schema-controller.js +164 -0
  1635. package/node_modules/fastify/lib/schemas.js +207 -0
  1636. package/node_modules/fastify/lib/server.js +441 -0
  1637. package/node_modules/fastify/lib/symbols.js +71 -0
  1638. package/node_modules/fastify/lib/validation.js +280 -0
  1639. package/node_modules/fastify/lib/warnings.js +57 -0
  1640. package/node_modules/fastify/lib/wrap-thenable.js +84 -0
  1641. package/node_modules/fastify/package.json +225 -0
  1642. package/node_modules/fastify/scripts/validate-ecosystem-links.js +179 -0
  1643. package/node_modules/fastify/test/404s.test.js +2035 -0
  1644. package/node_modules/fastify/test/500s.test.js +422 -0
  1645. package/node_modules/fastify/test/allow-unsafe-regex.test.js +92 -0
  1646. package/node_modules/fastify/test/als.test.js +65 -0
  1647. package/node_modules/fastify/test/async-await.test.js +705 -0
  1648. package/node_modules/fastify/test/async-dispose.test.js +20 -0
  1649. package/node_modules/fastify/test/async_hooks.test.js +52 -0
  1650. package/node_modules/fastify/test/body-limit.test.js +224 -0
  1651. package/node_modules/fastify/test/buffer.test.js +74 -0
  1652. package/node_modules/fastify/test/build/error-serializer.test.js +36 -0
  1653. package/node_modules/fastify/test/build/version.test.js +14 -0
  1654. package/node_modules/fastify/test/build-certificate.js +109 -0
  1655. package/node_modules/fastify/test/bundler/README.md +29 -0
  1656. package/node_modules/fastify/test/bundler/esbuild/bundler-test.js +32 -0
  1657. package/node_modules/fastify/test/bundler/esbuild/package.json +10 -0
  1658. package/node_modules/fastify/test/bundler/esbuild/src/fail-plugin-version.js +14 -0
  1659. package/node_modules/fastify/test/bundler/esbuild/src/index.js +9 -0
  1660. package/node_modules/fastify/test/bundler/webpack/bundler-test.js +32 -0
  1661. package/node_modules/fastify/test/bundler/webpack/package.json +11 -0
  1662. package/node_modules/fastify/test/bundler/webpack/src/fail-plugin-version.js +14 -0
  1663. package/node_modules/fastify/test/bundler/webpack/src/index.js +9 -0
  1664. package/node_modules/fastify/test/bundler/webpack/webpack.config.js +15 -0
  1665. package/node_modules/fastify/test/case-insensitive.test.js +102 -0
  1666. package/node_modules/fastify/test/chainable.test.js +40 -0
  1667. package/node_modules/fastify/test/child-logger-factory.test.js +128 -0
  1668. package/node_modules/fastify/test/client-timeout.test.js +38 -0
  1669. package/node_modules/fastify/test/close-pipelining.test.js +78 -0
  1670. package/node_modules/fastify/test/close.test.js +706 -0
  1671. package/node_modules/fastify/test/conditional-pino.test.js +47 -0
  1672. package/node_modules/fastify/test/connection-timeout.test.js +42 -0
  1673. package/node_modules/fastify/test/constrained-routes.test.js +1138 -0
  1674. package/node_modules/fastify/test/content-length.test.js +174 -0
  1675. package/node_modules/fastify/test/content-parser.test.js +739 -0
  1676. package/node_modules/fastify/test/content-type.test.js +181 -0
  1677. package/node_modules/fastify/test/context-config.test.js +164 -0
  1678. package/node_modules/fastify/test/custom-http-server.test.js +118 -0
  1679. package/node_modules/fastify/test/custom-parser-async.test.js +59 -0
  1680. package/node_modules/fastify/test/custom-parser.0.test.js +701 -0
  1681. package/node_modules/fastify/test/custom-parser.1.test.js +266 -0
  1682. package/node_modules/fastify/test/custom-parser.2.test.js +91 -0
  1683. package/node_modules/fastify/test/custom-parser.3.test.js +208 -0
  1684. package/node_modules/fastify/test/custom-parser.4.test.js +218 -0
  1685. package/node_modules/fastify/test/custom-parser.5.test.js +130 -0
  1686. package/node_modules/fastify/test/custom-querystring-parser.test.js +129 -0
  1687. package/node_modules/fastify/test/decorator.test.js +1330 -0
  1688. package/node_modules/fastify/test/delete.test.js +344 -0
  1689. package/node_modules/fastify/test/diagnostics-channel/404.test.js +49 -0
  1690. package/node_modules/fastify/test/diagnostics-channel/async-delay-request.test.js +65 -0
  1691. package/node_modules/fastify/test/diagnostics-channel/async-request.test.js +64 -0
  1692. package/node_modules/fastify/test/diagnostics-channel/error-before-handler.test.js +35 -0
  1693. package/node_modules/fastify/test/diagnostics-channel/error-request.test.js +53 -0
  1694. package/node_modules/fastify/test/diagnostics-channel/error-status.test.js +123 -0
  1695. package/node_modules/fastify/test/diagnostics-channel/init.test.js +50 -0
  1696. package/node_modules/fastify/test/diagnostics-channel/sync-delay-request.test.js +49 -0
  1697. package/node_modules/fastify/test/diagnostics-channel/sync-request-reply.test.js +51 -0
  1698. package/node_modules/fastify/test/diagnostics-channel/sync-request.test.js +54 -0
  1699. package/node_modules/fastify/test/encapsulated-child-logger-factory.test.js +69 -0
  1700. package/node_modules/fastify/test/encapsulated-error-handler.test.js +237 -0
  1701. package/node_modules/fastify/test/esm/errorCodes.test.mjs +10 -0
  1702. package/node_modules/fastify/test/esm/esm.test.mjs +13 -0
  1703. package/node_modules/fastify/test/esm/index.test.js +8 -0
  1704. package/node_modules/fastify/test/esm/named-exports.mjs +14 -0
  1705. package/node_modules/fastify/test/esm/other.mjs +8 -0
  1706. package/node_modules/fastify/test/esm/plugin.mjs +8 -0
  1707. package/node_modules/fastify/test/fastify-instance.test.js +300 -0
  1708. package/node_modules/fastify/test/find-route.test.js +152 -0
  1709. package/node_modules/fastify/test/fluent-schema.test.js +209 -0
  1710. package/node_modules/fastify/test/genReqId.test.js +426 -0
  1711. package/node_modules/fastify/test/handler-context.test.js +45 -0
  1712. package/node_modules/fastify/test/handler-timeout.test.js +367 -0
  1713. package/node_modules/fastify/test/has-route.test.js +88 -0
  1714. package/node_modules/fastify/test/header-overflow.test.js +55 -0
  1715. package/node_modules/fastify/test/helper.js +496 -0
  1716. package/node_modules/fastify/test/hooks-async.test.js +1099 -0
  1717. package/node_modules/fastify/test/hooks.on-listen.test.js +1162 -0
  1718. package/node_modules/fastify/test/hooks.on-ready.test.js +421 -0
  1719. package/node_modules/fastify/test/hooks.test.js +3578 -0
  1720. package/node_modules/fastify/test/http-methods/copy.test.js +35 -0
  1721. package/node_modules/fastify/test/http-methods/custom-http-methods.test.js +114 -0
  1722. package/node_modules/fastify/test/http-methods/get.test.js +412 -0
  1723. package/node_modules/fastify/test/http-methods/head.test.js +263 -0
  1724. package/node_modules/fastify/test/http-methods/lock.test.js +108 -0
  1725. package/node_modules/fastify/test/http-methods/mkcalendar.test.js +143 -0
  1726. package/node_modules/fastify/test/http-methods/mkcol.test.js +35 -0
  1727. package/node_modules/fastify/test/http-methods/move.test.js +42 -0
  1728. package/node_modules/fastify/test/http-methods/propfind.test.js +136 -0
  1729. package/node_modules/fastify/test/http-methods/proppatch.test.js +105 -0
  1730. package/node_modules/fastify/test/http-methods/report.test.js +142 -0
  1731. package/node_modules/fastify/test/http-methods/search.test.js +233 -0
  1732. package/node_modules/fastify/test/http-methods/trace.test.js +21 -0
  1733. package/node_modules/fastify/test/http-methods/unlock.test.js +38 -0
  1734. package/node_modules/fastify/test/http2/closing.test.js +270 -0
  1735. package/node_modules/fastify/test/http2/constraint.test.js +109 -0
  1736. package/node_modules/fastify/test/http2/head.test.js +34 -0
  1737. package/node_modules/fastify/test/http2/plain.test.js +68 -0
  1738. package/node_modules/fastify/test/http2/secure-with-fallback.test.js +113 -0
  1739. package/node_modules/fastify/test/http2/secure.test.js +67 -0
  1740. package/node_modules/fastify/test/http2/unknown-http-method.test.js +34 -0
  1741. package/node_modules/fastify/test/https/custom-https-server.test.js +58 -0
  1742. package/node_modules/fastify/test/https/https.test.js +136 -0
  1743. package/node_modules/fastify/test/imports.test.js +17 -0
  1744. package/node_modules/fastify/test/inject.test.js +502 -0
  1745. package/node_modules/fastify/test/input-validation.js +335 -0
  1746. package/node_modules/fastify/test/internals/all.test.js +38 -0
  1747. package/node_modules/fastify/test/internals/content-type-parser.test.js +111 -0
  1748. package/node_modules/fastify/test/internals/context.test.js +31 -0
  1749. package/node_modules/fastify/test/internals/decorator.test.js +156 -0
  1750. package/node_modules/fastify/test/internals/errors.test.js +982 -0
  1751. package/node_modules/fastify/test/internals/handle-request.test.js +270 -0
  1752. package/node_modules/fastify/test/internals/hook-runner.test.js +449 -0
  1753. package/node_modules/fastify/test/internals/hooks.test.js +96 -0
  1754. package/node_modules/fastify/test/internals/initial-config.test.js +383 -0
  1755. package/node_modules/fastify/test/internals/logger.test.js +163 -0
  1756. package/node_modules/fastify/test/internals/plugin.test.js +170 -0
  1757. package/node_modules/fastify/test/internals/promise.test.js +63 -0
  1758. package/node_modules/fastify/test/internals/reply-serialize.test.js +714 -0
  1759. package/node_modules/fastify/test/internals/reply.test.js +1920 -0
  1760. package/node_modules/fastify/test/internals/req-id-gen-factory.test.js +133 -0
  1761. package/node_modules/fastify/test/internals/request-validate.test.js +1402 -0
  1762. package/node_modules/fastify/test/internals/request.test.js +506 -0
  1763. package/node_modules/fastify/test/internals/schema-controller-perf.test.js +40 -0
  1764. package/node_modules/fastify/test/internals/server.test.js +91 -0
  1765. package/node_modules/fastify/test/internals/validation.test.js +352 -0
  1766. package/node_modules/fastify/test/issue-4959.test.js +118 -0
  1767. package/node_modules/fastify/test/keep-alive-timeout.test.js +42 -0
  1768. package/node_modules/fastify/test/listen.1.test.js +154 -0
  1769. package/node_modules/fastify/test/listen.2.test.js +113 -0
  1770. package/node_modules/fastify/test/listen.3.test.js +83 -0
  1771. package/node_modules/fastify/test/listen.4.test.js +168 -0
  1772. package/node_modules/fastify/test/listen.5.test.js +122 -0
  1773. package/node_modules/fastify/test/logger/instantiation.test.js +341 -0
  1774. package/node_modules/fastify/test/logger/logger-test-utils.js +47 -0
  1775. package/node_modules/fastify/test/logger/logging.test.js +460 -0
  1776. package/node_modules/fastify/test/logger/options.test.js +579 -0
  1777. package/node_modules/fastify/test/logger/request.test.js +292 -0
  1778. package/node_modules/fastify/test/logger/response.test.js +183 -0
  1779. package/node_modules/fastify/test/logger/tap-parallel-not-ok +0 -0
  1780. package/node_modules/fastify/test/max-requests-per-socket.test.js +113 -0
  1781. package/node_modules/fastify/test/middleware.test.js +37 -0
  1782. package/node_modules/fastify/test/noop-set.test.js +19 -0
  1783. package/node_modules/fastify/test/nullable-validation.test.js +187 -0
  1784. package/node_modules/fastify/test/options.error-handler.test.js +5 -0
  1785. package/node_modules/fastify/test/options.test.js +5 -0
  1786. package/node_modules/fastify/test/output-validation.test.js +140 -0
  1787. package/node_modules/fastify/test/patch.error-handler.test.js +5 -0
  1788. package/node_modules/fastify/test/patch.test.js +5 -0
  1789. package/node_modules/fastify/test/plugin.1.test.js +230 -0
  1790. package/node_modules/fastify/test/plugin.2.test.js +314 -0
  1791. package/node_modules/fastify/test/plugin.3.test.js +287 -0
  1792. package/node_modules/fastify/test/plugin.4.test.js +504 -0
  1793. package/node_modules/fastify/test/plugin.helper.js +8 -0
  1794. package/node_modules/fastify/test/plugin.name.display.js +10 -0
  1795. package/node_modules/fastify/test/post-empty-body.test.js +38 -0
  1796. package/node_modules/fastify/test/pretty-print.test.js +366 -0
  1797. package/node_modules/fastify/test/promises.test.js +125 -0
  1798. package/node_modules/fastify/test/proto-poisoning.test.js +145 -0
  1799. package/node_modules/fastify/test/put.error-handler.test.js +5 -0
  1800. package/node_modules/fastify/test/put.test.js +5 -0
  1801. package/node_modules/fastify/test/register.test.js +184 -0
  1802. package/node_modules/fastify/test/reply-code.test.js +148 -0
  1803. package/node_modules/fastify/test/reply-early-hints.test.js +100 -0
  1804. package/node_modules/fastify/test/reply-error.test.js +815 -0
  1805. package/node_modules/fastify/test/reply-trailers.test.js +445 -0
  1806. package/node_modules/fastify/test/reply-web-stream-locked.test.js +37 -0
  1807. package/node_modules/fastify/test/request-error.test.js +624 -0
  1808. package/node_modules/fastify/test/request-header-host.test.js +339 -0
  1809. package/node_modules/fastify/test/request-id.test.js +118 -0
  1810. package/node_modules/fastify/test/request-port.test.js +72 -0
  1811. package/node_modules/fastify/test/request-timeout.test.js +53 -0
  1812. package/node_modules/fastify/test/route-hooks.test.js +635 -0
  1813. package/node_modules/fastify/test/route-prefix.test.js +904 -0
  1814. package/node_modules/fastify/test/route-shorthand.test.js +48 -0
  1815. package/node_modules/fastify/test/route.1.test.js +259 -0
  1816. package/node_modules/fastify/test/route.2.test.js +100 -0
  1817. package/node_modules/fastify/test/route.3.test.js +213 -0
  1818. package/node_modules/fastify/test/route.4.test.js +127 -0
  1819. package/node_modules/fastify/test/route.5.test.js +211 -0
  1820. package/node_modules/fastify/test/route.6.test.js +306 -0
  1821. package/node_modules/fastify/test/route.7.test.js +406 -0
  1822. package/node_modules/fastify/test/route.8.test.js +225 -0
  1823. package/node_modules/fastify/test/router-options.test.js +1108 -0
  1824. package/node_modules/fastify/test/same-shape.test.js +124 -0
  1825. package/node_modules/fastify/test/schema-examples.test.js +661 -0
  1826. package/node_modules/fastify/test/schema-feature.test.js +2198 -0
  1827. package/node_modules/fastify/test/schema-serialization.test.js +1171 -0
  1828. package/node_modules/fastify/test/schema-special-usage.test.js +1348 -0
  1829. package/node_modules/fastify/test/schema-validation.test.js +1593 -0
  1830. package/node_modules/fastify/test/scripts/validate-ecosystem-links.test.js +339 -0
  1831. package/node_modules/fastify/test/serialize-response.test.js +186 -0
  1832. package/node_modules/fastify/test/server.test.js +347 -0
  1833. package/node_modules/fastify/test/set-error-handler.test.js +69 -0
  1834. package/node_modules/fastify/test/skip-reply-send.test.js +317 -0
  1835. package/node_modules/fastify/test/stream-serializers.test.js +40 -0
  1836. package/node_modules/fastify/test/stream.1.test.js +94 -0
  1837. package/node_modules/fastify/test/stream.2.test.js +129 -0
  1838. package/node_modules/fastify/test/stream.3.test.js +198 -0
  1839. package/node_modules/fastify/test/stream.4.test.js +176 -0
  1840. package/node_modules/fastify/test/stream.5.test.js +188 -0
  1841. package/node_modules/fastify/test/sync-routes.test.js +32 -0
  1842. package/node_modules/fastify/test/throw.test.js +359 -0
  1843. package/node_modules/fastify/test/toolkit.js +63 -0
  1844. package/node_modules/fastify/test/trust-proxy.test.js +274 -0
  1845. package/node_modules/fastify/test/type-provider.test.js +22 -0
  1846. package/node_modules/fastify/test/types/content-type-parser.test-d.ts +72 -0
  1847. package/node_modules/fastify/test/types/decorate-request-reply.test-d.ts +18 -0
  1848. package/node_modules/fastify/test/types/dummy-plugin.ts +9 -0
  1849. package/node_modules/fastify/test/types/errors.test-d.ts +90 -0
  1850. package/node_modules/fastify/test/types/fastify.test-d.ts +352 -0
  1851. package/node_modules/fastify/test/types/hooks.test-d.ts +550 -0
  1852. package/node_modules/fastify/test/types/import.ts +2 -0
  1853. package/node_modules/fastify/test/types/instance.test-d.ts +588 -0
  1854. package/node_modules/fastify/test/types/logger.test-d.ts +277 -0
  1855. package/node_modules/fastify/test/types/plugin.test-d.ts +97 -0
  1856. package/node_modules/fastify/test/types/register.test-d.ts +237 -0
  1857. package/node_modules/fastify/test/types/reply.test-d.ts +254 -0
  1858. package/node_modules/fastify/test/types/request.test-d.ts +188 -0
  1859. package/node_modules/fastify/test/types/route.test-d.ts +553 -0
  1860. package/node_modules/fastify/test/types/schema.test-d.ts +135 -0
  1861. package/node_modules/fastify/test/types/serverFactory.test-d.ts +37 -0
  1862. package/node_modules/fastify/test/types/type-provider.test-d.ts +1213 -0
  1863. package/node_modules/fastify/test/types/using.test-d.ts +17 -0
  1864. package/node_modules/fastify/test/upgrade.test.js +52 -0
  1865. package/node_modules/fastify/test/url-rewriting.test.js +122 -0
  1866. package/node_modules/fastify/test/use-semicolon-delimiter.test.js +168 -0
  1867. package/node_modules/fastify/test/validation-error-handling.test.js +900 -0
  1868. package/node_modules/fastify/test/versioned-routes.test.js +603 -0
  1869. package/node_modules/fastify/test/web-api.test.js +616 -0
  1870. package/node_modules/fastify/test/wrap-thenable.test.js +30 -0
  1871. package/node_modules/fastify/types/content-type-parser.d.ts +75 -0
  1872. package/node_modules/fastify/types/context.d.ts +22 -0
  1873. package/node_modules/fastify/types/errors.d.ts +92 -0
  1874. package/node_modules/fastify/types/hooks.d.ts +875 -0
  1875. package/node_modules/fastify/types/instance.d.ts +609 -0
  1876. package/node_modules/fastify/types/logger.d.ts +107 -0
  1877. package/node_modules/fastify/types/plugin.d.ts +44 -0
  1878. package/node_modules/fastify/types/register.d.ts +42 -0
  1879. package/node_modules/fastify/types/reply.d.ts +81 -0
  1880. package/node_modules/fastify/types/request.d.ts +95 -0
  1881. package/node_modules/fastify/types/route.d.ts +199 -0
  1882. package/node_modules/fastify/types/schema.d.ts +61 -0
  1883. package/node_modules/fastify/types/server-factory.d.ts +19 -0
  1884. package/node_modules/fastify/types/type-provider.d.ts +130 -0
  1885. package/node_modules/fastify/types/utils.d.ts +98 -0
  1886. package/node_modules/fastify-plugin/.gitattributes +2 -0
  1887. package/node_modules/fastify-plugin/.github/dependabot.yml +13 -0
  1888. package/node_modules/fastify-plugin/.github/stale.yml +21 -0
  1889. package/node_modules/fastify-plugin/.github/workflows/ci.yml +28 -0
  1890. package/node_modules/fastify-plugin/LICENSE +23 -0
  1891. package/node_modules/fastify-plugin/README.md +188 -0
  1892. package/node_modules/fastify-plugin/eslint.config.js +6 -0
  1893. package/node_modules/fastify-plugin/lib/getPluginName.js +25 -0
  1894. package/node_modules/fastify-plugin/lib/toCamelCase.js +10 -0
  1895. package/node_modules/fastify-plugin/package.json +70 -0
  1896. package/node_modules/fastify-plugin/plugin.js +67 -0
  1897. package/node_modules/fastify-plugin/test/bundlers.test.js +110 -0
  1898. package/node_modules/fastify-plugin/test/checkVersion.test.js +67 -0
  1899. package/node_modules/fastify-plugin/test/composite.test.js +14 -0
  1900. package/node_modules/fastify-plugin/test/esm/esm.mjs +11 -0
  1901. package/node_modules/fastify-plugin/test/esm/index.test.js +11 -0
  1902. package/node_modules/fastify-plugin/test/extractPluginName.test.js +49 -0
  1903. package/node_modules/fastify-plugin/test/mu1tip1e.composite.test.js +15 -0
  1904. package/node_modules/fastify-plugin/test/test.js +396 -0
  1905. package/node_modules/fastify-plugin/test/toCamelCase.test.js +24 -0
  1906. package/node_modules/fastify-plugin/types/example-async.test-d.ts +19 -0
  1907. package/node_modules/fastify-plugin/types/example-callback.test-d.ts +19 -0
  1908. package/node_modules/fastify-plugin/types/plugin.d.ts +61 -0
  1909. package/node_modules/fastify-plugin/types/plugin.test-d.ts +166 -0
  1910. package/node_modules/fastq/LICENSE +13 -0
  1911. package/node_modules/fastq/README.md +310 -0
  1912. package/node_modules/fastq/SECURITY.md +15 -0
  1913. package/node_modules/fastq/bench.js +66 -0
  1914. package/node_modules/fastq/eslint.config.js +11 -0
  1915. package/node_modules/fastq/example.js +14 -0
  1916. package/node_modules/fastq/example.mjs +9 -0
  1917. package/node_modules/fastq/index.d.ts +59 -0
  1918. package/node_modules/fastq/package.json +49 -0
  1919. package/node_modules/fastq/queue.js +346 -0
  1920. package/node_modules/fastq/test/example.ts +83 -0
  1921. package/node_modules/fastq/test/promise.js +325 -0
  1922. package/node_modules/fastq/test/test.js +733 -0
  1923. package/node_modules/fastq/test/tsconfig.json +11 -0
  1924. package/node_modules/find-my-way/.github/dependabot.yml +34 -0
  1925. package/node_modules/find-my-way/.github/workflows/node.js.yml +68 -0
  1926. package/node_modules/find-my-way/LICENSE +21 -0
  1927. package/node_modules/find-my-way/README.md +885 -0
  1928. package/node_modules/find-my-way/benchmark/bench-thread.js +35 -0
  1929. package/node_modules/find-my-way/benchmark/bench.js +156 -0
  1930. package/node_modules/find-my-way/benchmark/compare-branches.js +113 -0
  1931. package/node_modules/find-my-way/benchmark/uri-decoding.js +55 -0
  1932. package/node_modules/find-my-way/example.js +29 -0
  1933. package/node_modules/find-my-way/index.d.ts +247 -0
  1934. package/node_modules/find-my-way/index.js +872 -0
  1935. package/node_modules/find-my-way/lib/constrainer.js +172 -0
  1936. package/node_modules/find-my-way/lib/handler-storage.js +175 -0
  1937. package/node_modules/find-my-way/lib/http-methods.js +13 -0
  1938. package/node_modules/find-my-way/lib/node.js +228 -0
  1939. package/node_modules/find-my-way/lib/null-object.js +8 -0
  1940. package/node_modules/find-my-way/lib/pretty-print.js +168 -0
  1941. package/node_modules/find-my-way/lib/strategies/accept-host.js +36 -0
  1942. package/node_modules/find-my-way/lib/strategies/accept-version.js +64 -0
  1943. package/node_modules/find-my-way/lib/strategies/http-method.js +15 -0
  1944. package/node_modules/find-my-way/lib/url-sanitizer.js +105 -0
  1945. package/node_modules/find-my-way/package.json +57 -0
  1946. package/node_modules/find-my-way/test/case-insensitive.test.js +230 -0
  1947. package/node_modules/find-my-way/test/constraint.custom-versioning.test.js +130 -0
  1948. package/node_modules/find-my-way/test/constraint.custom.async.test.js +111 -0
  1949. package/node_modules/find-my-way/test/constraint.custom.test.js +273 -0
  1950. package/node_modules/find-my-way/test/constraint.default-versioning.test.js +289 -0
  1951. package/node_modules/find-my-way/test/constraint.host.test.js +104 -0
  1952. package/node_modules/find-my-way/test/constraints.test.js +108 -0
  1953. package/node_modules/find-my-way/test/custom-querystring-parser.test.js +46 -0
  1954. package/node_modules/find-my-way/test/errors.test.js +484 -0
  1955. package/node_modules/find-my-way/test/fastify-issue-3129.test.js +34 -0
  1956. package/node_modules/find-my-way/test/fastify-issue-3957.test.js +23 -0
  1957. package/node_modules/find-my-way/test/find-route.test.js +275 -0
  1958. package/node_modules/find-my-way/test/find.test.js +16 -0
  1959. package/node_modules/find-my-way/test/for-in-loop.test.js +22 -0
  1960. package/node_modules/find-my-way/test/full-url.test.js +30 -0
  1961. package/node_modules/find-my-way/test/has-route.test.js +218 -0
  1962. package/node_modules/find-my-way/test/host-storage.test.js +27 -0
  1963. package/node_modules/find-my-way/test/http2/constraint.host.test.js +44 -0
  1964. package/node_modules/find-my-way/test/issue-101.test.js +31 -0
  1965. package/node_modules/find-my-way/test/issue-104.test.js +206 -0
  1966. package/node_modules/find-my-way/test/issue-110.test.js +31 -0
  1967. package/node_modules/find-my-way/test/issue-132.test.js +80 -0
  1968. package/node_modules/find-my-way/test/issue-145.test.js +24 -0
  1969. package/node_modules/find-my-way/test/issue-149.test.js +21 -0
  1970. package/node_modules/find-my-way/test/issue-151.test.js +54 -0
  1971. package/node_modules/find-my-way/test/issue-154.test.js +21 -0
  1972. package/node_modules/find-my-way/test/issue-161.test.js +88 -0
  1973. package/node_modules/find-my-way/test/issue-17.test.js +397 -0
  1974. package/node_modules/find-my-way/test/issue-175.test.js +80 -0
  1975. package/node_modules/find-my-way/test/issue-182.test.js +18 -0
  1976. package/node_modules/find-my-way/test/issue-190.test.js +44 -0
  1977. package/node_modules/find-my-way/test/issue-20.test.js +79 -0
  1978. package/node_modules/find-my-way/test/issue-206.test.js +121 -0
  1979. package/node_modules/find-my-way/test/issue-221.test.js +50 -0
  1980. package/node_modules/find-my-way/test/issue-234.test.js +94 -0
  1981. package/node_modules/find-my-way/test/issue-238.test.js +119 -0
  1982. package/node_modules/find-my-way/test/issue-240.test.js +30 -0
  1983. package/node_modules/find-my-way/test/issue-241.test.js +32 -0
  1984. package/node_modules/find-my-way/test/issue-247.test.js +51 -0
  1985. package/node_modules/find-my-way/test/issue-254.test.js +31 -0
  1986. package/node_modules/find-my-way/test/issue-28.test.js +618 -0
  1987. package/node_modules/find-my-way/test/issue-280.test.js +14 -0
  1988. package/node_modules/find-my-way/test/issue-285.test.js +37 -0
  1989. package/node_modules/find-my-way/test/issue-330.test.js +231 -0
  1990. package/node_modules/find-my-way/test/issue-44.test.js +149 -0
  1991. package/node_modules/find-my-way/test/issue-46.test.js +75 -0
  1992. package/node_modules/find-my-way/test/issue-49.test.js +108 -0
  1993. package/node_modules/find-my-way/test/issue-59.test.js +131 -0
  1994. package/node_modules/find-my-way/test/issue-62.test.js +28 -0
  1995. package/node_modules/find-my-way/test/issue-63.test.js +23 -0
  1996. package/node_modules/find-my-way/test/issue-67.test.js +50 -0
  1997. package/node_modules/find-my-way/test/issue-93.test.js +19 -0
  1998. package/node_modules/find-my-way/test/lookup-async.test.js +29 -0
  1999. package/node_modules/find-my-way/test/lookup.test.js +58 -0
  2000. package/node_modules/find-my-way/test/matching-order.test.js +17 -0
  2001. package/node_modules/find-my-way/test/max-param-length.test.js +44 -0
  2002. package/node_modules/find-my-way/test/methods.test.js +830 -0
  2003. package/node_modules/find-my-way/test/null-object.test.js +36 -0
  2004. package/node_modules/find-my-way/test/on-bad-url.test.js +72 -0
  2005. package/node_modules/find-my-way/test/optional-params.test.js +216 -0
  2006. package/node_modules/find-my-way/test/params-collisions.test.js +126 -0
  2007. package/node_modules/find-my-way/test/path-params-match.test.js +53 -0
  2008. package/node_modules/find-my-way/test/path-utils.test.js +68 -0
  2009. package/node_modules/find-my-way/test/pretty-print-tree.test.js +596 -0
  2010. package/node_modules/find-my-way/test/pretty-print.test.js +680 -0
  2011. package/node_modules/find-my-way/test/querystring.test.js +54 -0
  2012. package/node_modules/find-my-way/test/regex.test.js +269 -0
  2013. package/node_modules/find-my-way/test/repro-issue-414.test.js +57 -0
  2014. package/node_modules/find-my-way/test/routes-registered.test.js +45 -0
  2015. package/node_modules/find-my-way/test/server.test.js +368 -0
  2016. package/node_modules/find-my-way/test/shorthands.test.js +44 -0
  2017. package/node_modules/find-my-way/test/store.test.js +49 -0
  2018. package/node_modules/find-my-way/test/types/router.test-d.ts +188 -0
  2019. package/node_modules/find-my-way/test/url-sanitizer.test.js +43 -0
  2020. package/node_modules/glob/LICENSE.md +63 -0
  2021. package/node_modules/glob/README.md +1203 -0
  2022. package/node_modules/glob/dist/commonjs/glob.d.ts +396 -0
  2023. package/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
  2024. package/node_modules/glob/dist/commonjs/glob.js +248 -0
  2025. package/node_modules/glob/dist/commonjs/glob.js.map +1 -0
  2026. package/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
  2027. package/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
  2028. package/node_modules/glob/dist/commonjs/has-magic.js +27 -0
  2029. package/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
  2030. package/node_modules/glob/dist/commonjs/ignore.d.ts +24 -0
  2031. package/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
  2032. package/node_modules/glob/dist/commonjs/ignore.js +119 -0
  2033. package/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
  2034. package/node_modules/glob/dist/commonjs/index.d.ts +97 -0
  2035. package/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
  2036. package/node_modules/glob/dist/commonjs/index.js +68 -0
  2037. package/node_modules/glob/dist/commonjs/index.js.map +1 -0
  2038. package/node_modules/glob/dist/commonjs/index.min.js +4 -0
  2039. package/node_modules/glob/dist/commonjs/index.min.js.map +7 -0
  2040. package/node_modules/glob/dist/commonjs/package.json +3 -0
  2041. package/node_modules/glob/dist/commonjs/pattern.d.ts +79 -0
  2042. package/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
  2043. package/node_modules/glob/dist/commonjs/pattern.js +223 -0
  2044. package/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
  2045. package/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
  2046. package/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
  2047. package/node_modules/glob/dist/commonjs/processor.js +301 -0
  2048. package/node_modules/glob/dist/commonjs/processor.js.map +1 -0
  2049. package/node_modules/glob/dist/commonjs/walker.d.ts +97 -0
  2050. package/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
  2051. package/node_modules/glob/dist/commonjs/walker.js +387 -0
  2052. package/node_modules/glob/dist/commonjs/walker.js.map +1 -0
  2053. package/node_modules/glob/dist/esm/glob.d.ts +396 -0
  2054. package/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
  2055. package/node_modules/glob/dist/esm/glob.js +244 -0
  2056. package/node_modules/glob/dist/esm/glob.js.map +1 -0
  2057. package/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
  2058. package/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
  2059. package/node_modules/glob/dist/esm/has-magic.js +23 -0
  2060. package/node_modules/glob/dist/esm/has-magic.js.map +1 -0
  2061. package/node_modules/glob/dist/esm/ignore.d.ts +24 -0
  2062. package/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
  2063. package/node_modules/glob/dist/esm/ignore.js +115 -0
  2064. package/node_modules/glob/dist/esm/ignore.js.map +1 -0
  2065. package/node_modules/glob/dist/esm/index.d.ts +97 -0
  2066. package/node_modules/glob/dist/esm/index.d.ts.map +1 -0
  2067. package/node_modules/glob/dist/esm/index.js +55 -0
  2068. package/node_modules/glob/dist/esm/index.js.map +1 -0
  2069. package/node_modules/glob/dist/esm/index.min.js +4 -0
  2070. package/node_modules/glob/dist/esm/index.min.js.map +7 -0
  2071. package/node_modules/glob/dist/esm/package.json +3 -0
  2072. package/node_modules/glob/dist/esm/pattern.d.ts +79 -0
  2073. package/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
  2074. package/node_modules/glob/dist/esm/pattern.js +219 -0
  2075. package/node_modules/glob/dist/esm/pattern.js.map +1 -0
  2076. package/node_modules/glob/dist/esm/processor.d.ts +59 -0
  2077. package/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
  2078. package/node_modules/glob/dist/esm/processor.js +294 -0
  2079. package/node_modules/glob/dist/esm/processor.js.map +1 -0
  2080. package/node_modules/glob/dist/esm/walker.d.ts +97 -0
  2081. package/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
  2082. package/node_modules/glob/dist/esm/walker.js +381 -0
  2083. package/node_modules/glob/dist/esm/walker.js.map +1 -0
  2084. package/node_modules/glob/package.json +98 -0
  2085. package/node_modules/http-errors/HISTORY.md +186 -0
  2086. package/node_modules/http-errors/LICENSE +23 -0
  2087. package/node_modules/http-errors/README.md +169 -0
  2088. package/node_modules/http-errors/index.js +290 -0
  2089. package/node_modules/http-errors/package.json +54 -0
  2090. package/node_modules/inherits/LICENSE +16 -0
  2091. package/node_modules/inherits/README.md +42 -0
  2092. package/node_modules/inherits/inherits.js +9 -0
  2093. package/node_modules/inherits/inherits_browser.js +27 -0
  2094. package/node_modules/inherits/package.json +29 -0
  2095. package/node_modules/ipaddr.js/LICENSE +19 -0
  2096. package/node_modules/ipaddr.js/README.md +229 -0
  2097. package/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  2098. package/node_modules/ipaddr.js/lib/ipaddr.js +1082 -0
  2099. package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +72 -0
  2100. package/node_modules/ipaddr.js/package.json +36 -0
  2101. package/node_modules/jishushell-panel/LICENSE +6 -0
  2102. package/node_modules/jishushell-panel/README.md +47 -0
  2103. package/node_modules/jishushell-panel/output/dist/server.d.ts +13 -0
  2104. package/node_modules/jishushell-panel/output/dist/server.js +466 -0
  2105. package/node_modules/jishushell-panel/output/dist/server.js.map +1 -0
  2106. package/node_modules/jishushell-panel/output/public/assets/ApiKeyField-NKcbHjNz.js +1 -0
  2107. package/node_modules/jishushell-panel/output/public/assets/Dashboard-Da1fL38t.js +1 -0
  2108. package/node_modules/jishushell-panel/output/public/assets/HermesChatPanel-DZvmYsoh.js +1 -0
  2109. package/node_modules/jishushell-panel/output/public/assets/HermesConfigForm-BLUWlKwm.js +4 -0
  2110. package/node_modules/jishushell-panel/output/public/assets/InitPassword-BAKsshzk.js +1 -0
  2111. package/node_modules/jishushell-panel/output/public/assets/InstanceDetail-Dgyc_TX5.js +14 -0
  2112. package/node_modules/jishushell-panel/output/public/assets/Login-DHeOmwI8.js +1 -0
  2113. package/node_modules/jishushell-panel/output/public/assets/NewInstance-CIy0cYtp.js +1 -0
  2114. package/node_modules/jishushell-panel/output/public/assets/ProviderRecommendations-H0ByEYF0.js +1 -0
  2115. package/node_modules/jishushell-panel/output/public/assets/Settings-DAT-UMfP.js +1 -0
  2116. package/node_modules/jishushell-panel/output/public/assets/Setup-g3uckFYR.js +1 -0
  2117. package/node_modules/jishushell-panel/output/public/assets/WeixinLoginPanel-D-T6BxkQ.js +1 -0
  2118. package/node_modules/jishushell-panel/output/public/assets/api-C70Gt678.js +4 -0
  2119. package/node_modules/jishushell-panel/output/public/assets/index-DnnqTf7s.css +1 -0
  2120. package/node_modules/jishushell-panel/output/public/assets/index-ERt6_ngA.js +23 -0
  2121. package/node_modules/jishushell-panel/output/public/assets/registry-DF93EzIb.js +2 -0
  2122. package/node_modules/jishushell-panel/output/public/assets/rolldown-runtime-QTnfLwEv.js +1 -0
  2123. package/node_modules/jishushell-panel/output/public/assets/setup-task-q21GnI0E.js +1 -0
  2124. package/node_modules/jishushell-panel/output/public/assets/usePolling-DeoThIQn.js +1 -0
  2125. package/node_modules/jishushell-panel/output/public/assets/vendor-i18n-CS8DFbkQ.js +1 -0
  2126. package/node_modules/jishushell-panel/output/public/assets/vendor-react-Cc84NArf.js +8 -0
  2127. package/node_modules/jishushell-panel/output/public/index.html +22 -0
  2128. package/node_modules/jishushell-panel/package.json +33 -0
  2129. package/node_modules/json-schema-ref-resolver/.gitattributes +2 -0
  2130. package/node_modules/json-schema-ref-resolver/.github/dependabot.yml +13 -0
  2131. package/node_modules/json-schema-ref-resolver/.github/workflows/ci.yml +25 -0
  2132. package/node_modules/json-schema-ref-resolver/LICENSE +21 -0
  2133. package/node_modules/json-schema-ref-resolver/README.md +406 -0
  2134. package/node_modules/json-schema-ref-resolver/eslint.config.js +6 -0
  2135. package/node_modules/json-schema-ref-resolver/index.js +284 -0
  2136. package/node_modules/json-schema-ref-resolver/package.json +76 -0
  2137. package/node_modules/json-schema-ref-resolver/test/anchor.test.js +56 -0
  2138. package/node_modules/json-schema-ref-resolver/test/collisions.test.js +199 -0
  2139. package/node_modules/json-schema-ref-resolver/test/deref-schema.test.js +287 -0
  2140. package/node_modules/json-schema-ref-resolver/test/get-deref-schema.test.js +363 -0
  2141. package/node_modules/json-schema-ref-resolver/test/get-schema-dependencies.test.js +158 -0
  2142. package/node_modules/json-schema-ref-resolver/test/get-schema-refs.test.js +87 -0
  2143. package/node_modules/json-schema-ref-resolver/test/get-schema.test.js +222 -0
  2144. package/node_modules/json-schema-ref-resolver/test/has-schema.test.js +28 -0
  2145. package/node_modules/json-schema-ref-resolver/types/index.d.ts +67 -0
  2146. package/node_modules/json-schema-ref-resolver/types/index.test-d.ts +23 -0
  2147. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  2148. package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
  2149. package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
  2150. package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
  2151. package/node_modules/json-schema-traverse/LICENSE +21 -0
  2152. package/node_modules/json-schema-traverse/README.md +95 -0
  2153. package/node_modules/json-schema-traverse/index.d.ts +40 -0
  2154. package/node_modules/json-schema-traverse/index.js +93 -0
  2155. package/node_modules/json-schema-traverse/package.json +43 -0
  2156. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  2157. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  2158. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  2159. package/node_modules/light-my-request/.gitattributes +2 -0
  2160. package/node_modules/light-my-request/.github/dependabot.yml +13 -0
  2161. package/node_modules/light-my-request/.github/stale.yml +21 -0
  2162. package/node_modules/light-my-request/.github/workflows/benchmark.yml +30 -0
  2163. package/node_modules/light-my-request/.github/workflows/ci.yml +23 -0
  2164. package/node_modules/light-my-request/LICENSE +32 -0
  2165. package/node_modules/light-my-request/README.md +261 -0
  2166. package/node_modules/light-my-request/benchmark/benchmark.js +164 -0
  2167. package/node_modules/light-my-request/build/build-validation.js +100 -0
  2168. package/node_modules/light-my-request/eslint.config.js +9 -0
  2169. package/node_modules/light-my-request/index.js +194 -0
  2170. package/node_modules/light-my-request/lib/config-validator.js +919 -0
  2171. package/node_modules/light-my-request/lib/form-data.js +79 -0
  2172. package/node_modules/light-my-request/lib/parse-url.js +47 -0
  2173. package/node_modules/light-my-request/lib/request.js +290 -0
  2174. package/node_modules/light-my-request/lib/response.js +240 -0
  2175. package/node_modules/light-my-request/node_modules/process-warning/.gitattributes +2 -0
  2176. package/node_modules/light-my-request/node_modules/process-warning/.github/dependabot.yml +13 -0
  2177. package/node_modules/light-my-request/node_modules/process-warning/.github/workflows/ci.yml +24 -0
  2178. package/node_modules/light-my-request/node_modules/process-warning/.taprc +2 -0
  2179. package/node_modules/light-my-request/node_modules/process-warning/LICENSE +21 -0
  2180. package/node_modules/light-my-request/node_modules/process-warning/README.md +118 -0
  2181. package/node_modules/light-my-request/node_modules/process-warning/benchmarks/warn.js +25 -0
  2182. package/node_modules/light-my-request/node_modules/process-warning/eslint.config.js +6 -0
  2183. package/node_modules/light-my-request/node_modules/process-warning/examples/example.js +11 -0
  2184. package/node_modules/light-my-request/node_modules/process-warning/index.js +124 -0
  2185. package/node_modules/light-my-request/node_modules/process-warning/package.json +73 -0
  2186. package/node_modules/light-my-request/node_modules/process-warning/test/emit-interpolated-string.test.js +29 -0
  2187. package/node_modules/light-my-request/node_modules/process-warning/test/emit-once-only.test.js +28 -0
  2188. package/node_modules/light-my-request/node_modules/process-warning/test/emit-reset.test.js +36 -0
  2189. package/node_modules/light-my-request/node_modules/process-warning/test/emit-set.test.js +30 -0
  2190. package/node_modules/light-my-request/node_modules/process-warning/test/emit-unlimited.test.js +37 -0
  2191. package/node_modules/light-my-request/node_modules/process-warning/test/index.test.js +99 -0
  2192. package/node_modules/light-my-request/node_modules/process-warning/test/issue-88.test.js +33 -0
  2193. package/node_modules/light-my-request/node_modules/process-warning/test/jest.test.js +22 -0
  2194. package/node_modules/light-my-request/node_modules/process-warning/test/no-warnings.test.js +80 -0
  2195. package/node_modules/light-my-request/node_modules/process-warning/types/index.d.ts +37 -0
  2196. package/node_modules/light-my-request/node_modules/process-warning/types/index.test-d.ts +36 -0
  2197. package/node_modules/light-my-request/package.json +85 -0
  2198. package/node_modules/light-my-request/test/async-await.test.js +55 -0
  2199. package/node_modules/light-my-request/test/index.test.js +2316 -0
  2200. package/node_modules/light-my-request/test/request.test.js +16 -0
  2201. package/node_modules/light-my-request/test/response.test.js +19 -0
  2202. package/node_modules/light-my-request/test/stream.test.js +359 -0
  2203. package/node_modules/light-my-request/types/index.d.ts +128 -0
  2204. package/node_modules/light-my-request/types/index.test-d.ts +149 -0
  2205. package/node_modules/mime/CHANGELOG.md +312 -0
  2206. package/node_modules/mime/LICENSE +21 -0
  2207. package/node_modules/mime/Mime.js +97 -0
  2208. package/node_modules/mime/README.md +178 -0
  2209. package/node_modules/mime/cli.js +46 -0
  2210. package/node_modules/mime/index.js +4 -0
  2211. package/node_modules/mime/lite.js +4 -0
  2212. package/node_modules/mime/package.json +52 -0
  2213. package/node_modules/mime/types/other.js +1 -0
  2214. package/node_modules/mime/types/standard.js +1 -0
  2215. package/node_modules/minimatch/LICENSE.md +55 -0
  2216. package/node_modules/minimatch/README.md +528 -0
  2217. package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  2218. package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  2219. package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  2220. package/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  2221. package/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  2222. package/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  2223. package/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  2224. package/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  2225. package/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  2226. package/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  2227. package/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  2228. package/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  2229. package/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  2230. package/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  2231. package/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  2232. package/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  2233. package/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  2234. package/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  2235. package/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  2236. package/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  2237. package/node_modules/minimatch/dist/commonjs/package.json +3 -0
  2238. package/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  2239. package/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  2240. package/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  2241. package/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  2242. package/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  2243. package/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  2244. package/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  2245. package/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  2246. package/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  2247. package/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  2248. package/node_modules/minimatch/dist/esm/ast.js +841 -0
  2249. package/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  2250. package/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  2251. package/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  2252. package/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  2253. package/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  2254. package/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  2255. package/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  2256. package/node_modules/minimatch/dist/esm/escape.js +26 -0
  2257. package/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  2258. package/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  2259. package/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  2260. package/node_modules/minimatch/dist/esm/index.js +1114 -0
  2261. package/node_modules/minimatch/dist/esm/index.js.map +1 -0
  2262. package/node_modules/minimatch/dist/esm/package.json +3 -0
  2263. package/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  2264. package/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  2265. package/node_modules/minimatch/dist/esm/unescape.js +34 -0
  2266. package/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  2267. package/node_modules/minimatch/package.json +73 -0
  2268. package/node_modules/minipass/LICENSE.md +55 -0
  2269. package/node_modules/minipass/README.md +825 -0
  2270. package/node_modules/minipass/dist/commonjs/index.d.ts +545 -0
  2271. package/node_modules/minipass/dist/commonjs/index.d.ts.map +1 -0
  2272. package/node_modules/minipass/dist/commonjs/index.js +1038 -0
  2273. package/node_modules/minipass/dist/commonjs/index.js.map +1 -0
  2274. package/node_modules/minipass/dist/commonjs/package.json +3 -0
  2275. package/node_modules/minipass/dist/esm/index.d.ts +545 -0
  2276. package/node_modules/minipass/dist/esm/index.d.ts.map +1 -0
  2277. package/node_modules/minipass/dist/esm/index.js +1020 -0
  2278. package/node_modules/minipass/dist/esm/index.js.map +1 -0
  2279. package/node_modules/minipass/dist/esm/package.json +3 -0
  2280. package/node_modules/minipass/package.json +77 -0
  2281. package/node_modules/on-exit-leak-free/.github/dependabot.yml +12 -0
  2282. package/node_modules/on-exit-leak-free/.github/workflows/ci.yml +46 -0
  2283. package/node_modules/on-exit-leak-free/LICENSE +21 -0
  2284. package/node_modules/on-exit-leak-free/README.md +54 -0
  2285. package/node_modules/on-exit-leak-free/index.js +108 -0
  2286. package/node_modules/on-exit-leak-free/package.json +37 -0
  2287. package/node_modules/on-exit-leak-free/test/base.test.js +30 -0
  2288. package/node_modules/on-exit-leak-free/test/event-emitter-leak.test.js +23 -0
  2289. package/node_modules/on-exit-leak-free/test/fixtures/beforeExit.js +33 -0
  2290. package/node_modules/on-exit-leak-free/test/fixtures/close.js +21 -0
  2291. package/node_modules/on-exit-leak-free/test/fixtures/gc-not-close.js +24 -0
  2292. package/node_modules/on-exit-leak-free/test/fixtures/unregister.js +24 -0
  2293. package/node_modules/path-scurry/LICENSE.md +55 -0
  2294. package/node_modules/path-scurry/README.md +636 -0
  2295. package/node_modules/path-scurry/dist/commonjs/index.d.ts +1115 -0
  2296. package/node_modules/path-scurry/dist/commonjs/index.d.ts.map +1 -0
  2297. package/node_modules/path-scurry/dist/commonjs/index.js +2018 -0
  2298. package/node_modules/path-scurry/dist/commonjs/index.js.map +1 -0
  2299. package/node_modules/path-scurry/dist/commonjs/package.json +3 -0
  2300. package/node_modules/path-scurry/dist/esm/index.d.ts +1115 -0
  2301. package/node_modules/path-scurry/dist/esm/index.d.ts.map +1 -0
  2302. package/node_modules/path-scurry/dist/esm/index.js +1983 -0
  2303. package/node_modules/path-scurry/dist/esm/index.js.map +1 -0
  2304. package/node_modules/path-scurry/dist/esm/package.json +3 -0
  2305. package/node_modules/path-scurry/node_modules/lru-cache/LICENSE.md +55 -0
  2306. package/node_modules/path-scurry/node_modules/lru-cache/README.md +469 -0
  2307. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel-browser.d.ts.map +1 -0
  2308. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel-browser.js.map +1 -0
  2309. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.d.ts +5 -0
  2310. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/diagnostics-channel.js +7 -0
  2311. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.d.ts +1400 -0
  2312. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.d.ts.map +1 -0
  2313. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.js +1726 -0
  2314. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.js.map +1 -0
  2315. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.min.js +2 -0
  2316. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/index.min.js.map +7 -0
  2317. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/perf.d.ts +12 -0
  2318. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/perf.d.ts.map +1 -0
  2319. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/perf.js +10 -0
  2320. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/browser/perf.js.map +1 -0
  2321. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.cjs.map +1 -0
  2322. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/diagnostics-channel-cjs.d.cts.map +1 -0
  2323. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/diagnostics-channel.d.ts +5 -0
  2324. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +7 -0
  2325. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts +1400 -0
  2326. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
  2327. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js +1726 -0
  2328. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
  2329. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
  2330. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
  2331. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel-node.d.ts.map +1 -0
  2332. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel-node.js.map +1 -0
  2333. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.d.ts +5 -0
  2334. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/diagnostics-channel.js +9 -0
  2335. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.d.ts +1400 -0
  2336. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.d.ts.map +1 -0
  2337. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.js +1726 -0
  2338. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.js.map +1 -0
  2339. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.min.js +2 -0
  2340. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/index.min.js.map +7 -0
  2341. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/perf.d.ts +12 -0
  2342. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/perf.d.ts.map +1 -0
  2343. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/perf.js +10 -0
  2344. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/node/perf.js.map +1 -0
  2345. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/package.json +3 -0
  2346. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/perf.d.ts +12 -0
  2347. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/perf.d.ts.map +1 -0
  2348. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/perf.js +10 -0
  2349. package/node_modules/path-scurry/node_modules/lru-cache/dist/commonjs/perf.js.map +1 -0
  2350. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.d.ts.map +1 -0
  2351. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/diagnostics-channel-browser.js.map +1 -0
  2352. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.d.ts +5 -0
  2353. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +4 -0
  2354. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.d.ts +1400 -0
  2355. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.d.ts.map +1 -0
  2356. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.js +1722 -0
  2357. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.js.map +1 -0
  2358. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.min.js +2 -0
  2359. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/index.min.js.map +7 -0
  2360. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/perf.d.ts +12 -0
  2361. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/perf.d.ts.map +1 -0
  2362. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/perf.js +7 -0
  2363. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/browser/perf.js.map +1 -0
  2364. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.d.mts.map +1 -0
  2365. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/diagnostics-channel-esm.mjs.map +1 -0
  2366. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/diagnostics-channel.d.ts +5 -0
  2367. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/diagnostics-channel.js +19 -0
  2368. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts +1400 -0
  2369. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
  2370. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js +1722 -0
  2371. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.js.map +1 -0
  2372. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js +2 -0
  2373. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
  2374. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.d.ts.map +1 -0
  2375. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/diagnostics-channel-node.js.map +1 -0
  2376. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/diagnostics-channel.d.ts +5 -0
  2377. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +6 -0
  2378. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.d.ts +1400 -0
  2379. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.d.ts.map +1 -0
  2380. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.js +1722 -0
  2381. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.js.map +1 -0
  2382. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.min.js +2 -0
  2383. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/index.min.js.map +7 -0
  2384. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/perf.d.ts +12 -0
  2385. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/perf.d.ts.map +1 -0
  2386. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/perf.js +7 -0
  2387. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/node/perf.js.map +1 -0
  2388. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/package.json +3 -0
  2389. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/perf.d.ts +12 -0
  2390. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/perf.d.ts.map +1 -0
  2391. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/perf.js +7 -0
  2392. package/node_modules/path-scurry/node_modules/lru-cache/dist/esm/perf.js.map +1 -0
  2393. package/node_modules/path-scurry/node_modules/lru-cache/package.json +154 -0
  2394. package/node_modules/path-scurry/package.json +72 -0
  2395. package/node_modules/pino/.nojekyll +0 -0
  2396. package/node_modules/pino/.prettierignore +1 -0
  2397. package/node_modules/pino/CNAME +1 -0
  2398. package/node_modules/pino/CONTRIBUTING.md +30 -0
  2399. package/node_modules/pino/LICENSE +21 -0
  2400. package/node_modules/pino/README.md +177 -0
  2401. package/node_modules/pino/SECURITY.md +87 -0
  2402. package/node_modules/pino/benchmarks/basic.bench.js +95 -0
  2403. package/node_modules/pino/benchmarks/child-child.bench.js +52 -0
  2404. package/node_modules/pino/benchmarks/child-creation.bench.js +73 -0
  2405. package/node_modules/pino/benchmarks/child.bench.js +62 -0
  2406. package/node_modules/pino/benchmarks/deep-object.bench.js +88 -0
  2407. package/node_modules/pino/benchmarks/formatters.bench.js +50 -0
  2408. package/node_modules/pino/benchmarks/internal/custom-levels.js +67 -0
  2409. package/node_modules/pino/benchmarks/internal/just-pino-heavy.bench.js +76 -0
  2410. package/node_modules/pino/benchmarks/internal/just-pino.bench.js +182 -0
  2411. package/node_modules/pino/benchmarks/internal/parent-vs-child.bench.js +75 -0
  2412. package/node_modules/pino/benchmarks/internal/redact.bench.js +86 -0
  2413. package/node_modules/pino/benchmarks/long-string.bench.js +81 -0
  2414. package/node_modules/pino/benchmarks/multi-arg.bench.js +193 -0
  2415. package/node_modules/pino/benchmarks/multistream.js +98 -0
  2416. package/node_modules/pino/benchmarks/object.bench.js +82 -0
  2417. package/node_modules/pino/benchmarks/utils/generate-benchmark-doc.js +36 -0
  2418. package/node_modules/pino/benchmarks/utils/runbench.js +138 -0
  2419. package/node_modules/pino/benchmarks/utils/wrap-log-level.js +55 -0
  2420. package/node_modules/pino/bin.js +6 -0
  2421. package/node_modules/pino/browser.js +547 -0
  2422. package/node_modules/pino/build/sync-version.js +25 -0
  2423. package/node_modules/pino/docs/api.md +1593 -0
  2424. package/node_modules/pino/docs/asynchronous.md +40 -0
  2425. package/node_modules/pino/docs/benchmarks.md +55 -0
  2426. package/node_modules/pino/docs/browser.md +278 -0
  2427. package/node_modules/pino/docs/bundling.md +40 -0
  2428. package/node_modules/pino/docs/child-loggers.md +95 -0
  2429. package/node_modules/pino/docs/diagnostics.md +16 -0
  2430. package/node_modules/pino/docs/ecosystem.md +86 -0
  2431. package/node_modules/pino/docs/help.md +345 -0
  2432. package/node_modules/pino/docs/lts.md +64 -0
  2433. package/node_modules/pino/docs/pretty.md +35 -0
  2434. package/node_modules/pino/docs/redaction.md +135 -0
  2435. package/node_modules/pino/docs/transports.md +1376 -0
  2436. package/node_modules/pino/docs/web.md +309 -0
  2437. package/node_modules/pino/eslint.config.js +28 -0
  2438. package/node_modules/pino/examples/basic.js +43 -0
  2439. package/node_modules/pino/examples/transport.js +68 -0
  2440. package/node_modules/pino/favicon.ico +0 -0
  2441. package/node_modules/pino/file.js +12 -0
  2442. package/node_modules/pino/inc-version.sh +42 -0
  2443. package/node_modules/pino/index.html +55 -0
  2444. package/node_modules/pino/lib/caller.js +30 -0
  2445. package/node_modules/pino/lib/constants.js +28 -0
  2446. package/node_modules/pino/lib/deprecations.js +8 -0
  2447. package/node_modules/pino/lib/levels.js +241 -0
  2448. package/node_modules/pino/lib/meta.js +3 -0
  2449. package/node_modules/pino/lib/multistream.js +203 -0
  2450. package/node_modules/pino/lib/proto.js +256 -0
  2451. package/node_modules/pino/lib/redaction.js +114 -0
  2452. package/node_modules/pino/lib/symbols.js +74 -0
  2453. package/node_modules/pino/lib/time.js +39 -0
  2454. package/node_modules/pino/lib/tools.js +427 -0
  2455. package/node_modules/pino/lib/transport-stream.js +56 -0
  2456. package/node_modules/pino/lib/transport.js +289 -0
  2457. package/node_modules/pino/lib/worker.js +194 -0
  2458. package/node_modules/pino/package.json +120 -0
  2459. package/node_modules/pino/pino.d.ts +908 -0
  2460. package/node_modules/pino/pino.js +234 -0
  2461. package/node_modules/pino/test/basic.test.js +886 -0
  2462. package/node_modules/pino/test/broken-pipe.test.js +59 -0
  2463. package/node_modules/pino/test/browser-child.test.js +132 -0
  2464. package/node_modules/pino/test/browser-disabled.test.js +87 -0
  2465. package/node_modules/pino/test/browser-early-console-freeze.test.js +12 -0
  2466. package/node_modules/pino/test/browser-is-level-enabled.test.js +101 -0
  2467. package/node_modules/pino/test/browser-levels.test.js +241 -0
  2468. package/node_modules/pino/test/browser-serializers.test.js +352 -0
  2469. package/node_modules/pino/test/browser-timestamp.test.js +88 -0
  2470. package/node_modules/pino/test/browser-transmit.test.js +417 -0
  2471. package/node_modules/pino/test/browser.test.js +698 -0
  2472. package/node_modules/pino/test/complex-objects.test.js +36 -0
  2473. package/node_modules/pino/test/crlf.test.js +34 -0
  2474. package/node_modules/pino/test/custom-levels.test.js +267 -0
  2475. package/node_modules/pino/test/diagnostics.test.js +107 -0
  2476. package/node_modules/pino/test/error-key.test.js +37 -0
  2477. package/node_modules/pino/test/error.test.js +403 -0
  2478. package/node_modules/pino/test/escaping.test.js +93 -0
  2479. package/node_modules/pino/test/esm/esm.mjs +14 -0
  2480. package/node_modules/pino/test/esm/index.test.js +21 -0
  2481. package/node_modules/pino/test/esm/named-exports.mjs +29 -0
  2482. package/node_modules/pino/test/exit.test.js +79 -0
  2483. package/node_modules/pino/test/fixtures/broken-pipe/basic.js +9 -0
  2484. package/node_modules/pino/test/fixtures/broken-pipe/destination.js +10 -0
  2485. package/node_modules/pino/test/fixtures/broken-pipe/syncfalse.js +12 -0
  2486. package/node_modules/pino/test/fixtures/console-transport.js +13 -0
  2487. package/node_modules/pino/test/fixtures/crashing-transport.js +13 -0
  2488. package/node_modules/pino/test/fixtures/default-exit.js +8 -0
  2489. package/node_modules/pino/test/fixtures/destination-exit.js +8 -0
  2490. package/node_modules/pino/test/fixtures/eval/index.js +13 -0
  2491. package/node_modules/pino/test/fixtures/eval/node_modules/14-files.js +3 -0
  2492. package/node_modules/pino/test/fixtures/eval/node_modules/2-files.js +3 -0
  2493. package/node_modules/pino/test/fixtures/eval/node_modules/file1.js +5 -0
  2494. package/node_modules/pino/test/fixtures/eval/node_modules/file10.js +5 -0
  2495. package/node_modules/pino/test/fixtures/eval/node_modules/file11.js +5 -0
  2496. package/node_modules/pino/test/fixtures/eval/node_modules/file12.js +5 -0
  2497. package/node_modules/pino/test/fixtures/eval/node_modules/file13.js +5 -0
  2498. package/node_modules/pino/test/fixtures/eval/node_modules/file14.js +11 -0
  2499. package/node_modules/pino/test/fixtures/eval/node_modules/file2.js +5 -0
  2500. package/node_modules/pino/test/fixtures/eval/node_modules/file3.js +5 -0
  2501. package/node_modules/pino/test/fixtures/eval/node_modules/file4.js +5 -0
  2502. package/node_modules/pino/test/fixtures/eval/node_modules/file5.js +5 -0
  2503. package/node_modules/pino/test/fixtures/eval/node_modules/file6.js +5 -0
  2504. package/node_modules/pino/test/fixtures/eval/node_modules/file7.js +5 -0
  2505. package/node_modules/pino/test/fixtures/eval/node_modules/file8.js +5 -0
  2506. package/node_modules/pino/test/fixtures/eval/node_modules/file9.js +5 -0
  2507. package/node_modules/pino/test/fixtures/noop-transport.js +10 -0
  2508. package/node_modules/pino/test/fixtures/pretty/null-prototype.js +8 -0
  2509. package/node_modules/pino/test/fixtures/stdout-hack-protection.js +11 -0
  2510. package/node_modules/pino/test/fixtures/syncfalse-child.js +6 -0
  2511. package/node_modules/pino/test/fixtures/syncfalse-exit.js +9 -0
  2512. package/node_modules/pino/test/fixtures/syncfalse-flush-exit.js +10 -0
  2513. package/node_modules/pino/test/fixtures/syncfalse.js +6 -0
  2514. package/node_modules/pino/test/fixtures/syntax-error-esm.mjs +2 -0
  2515. package/node_modules/pino/test/fixtures/to-file-transport-with-transform.js +20 -0
  2516. package/node_modules/pino/test/fixtures/to-file-transport.js +13 -0
  2517. package/node_modules/pino/test/fixtures/to-file-transport.mjs +8 -0
  2518. package/node_modules/pino/test/fixtures/transport/index.js +12 -0
  2519. package/node_modules/pino/test/fixtures/transport/package.json +5 -0
  2520. package/node_modules/pino/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
  2521. package/node_modules/pino/test/fixtures/transport-exit-immediately.js +11 -0
  2522. package/node_modules/pino/test/fixtures/transport-exit-on-ready.js +12 -0
  2523. package/node_modules/pino/test/fixtures/transport-invalid-node-options.js +26 -0
  2524. package/node_modules/pino/test/fixtures/transport-main.js +9 -0
  2525. package/node_modules/pino/test/fixtures/transport-many-lines.js +29 -0
  2526. package/node_modules/pino/test/fixtures/transport-preload-main.mjs +13 -0
  2527. package/node_modules/pino/test/fixtures/transport-preload.mjs +13 -0
  2528. package/node_modules/pino/test/fixtures/transport-string-stdout.js +9 -0
  2529. package/node_modules/pino/test/fixtures/transport-transform.js +21 -0
  2530. package/node_modules/pino/test/fixtures/transport-uses-pino-config.js +33 -0
  2531. package/node_modules/pino/test/fixtures/transport-with-on-exit.js +12 -0
  2532. package/node_modules/pino/test/fixtures/transport-worker-data.js +19 -0
  2533. package/node_modules/pino/test/fixtures/transport-worker-name.js +24 -0
  2534. package/node_modules/pino/test/fixtures/transport-worker.js +15 -0
  2535. package/node_modules/pino/test/fixtures/transport-wrong-export-type.js +3 -0
  2536. package/node_modules/pino/test/fixtures/ts/to-file-transport-native.mts +15 -0
  2537. package/node_modules/pino/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
  2538. package/node_modules/pino/test/fixtures/ts/to-file-transport.ts +11 -0
  2539. package/node_modules/pino/test/fixtures/ts/transpile.cjs +36 -0
  2540. package/node_modules/pino/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
  2541. package/node_modules/pino/test/fixtures/ts/transport-exit-immediately.ts +10 -0
  2542. package/node_modules/pino/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
  2543. package/node_modules/pino/test/fixtures/ts/transport-main.ts +8 -0
  2544. package/node_modules/pino/test/fixtures/ts/transport-string-stdout.ts +8 -0
  2545. package/node_modules/pino/test/fixtures/ts/transport-worker.ts +14 -0
  2546. package/node_modules/pino/test/formatters.test.js +364 -0
  2547. package/node_modules/pino/test/helper.d.ts +4 -0
  2548. package/node_modules/pino/test/helper.js +155 -0
  2549. package/node_modules/pino/test/hooks.test.js +114 -0
  2550. package/node_modules/pino/test/http.test.js +214 -0
  2551. package/node_modules/pino/test/internals/version.test.js +17 -0
  2552. package/node_modules/pino/test/is-level-enabled.test.js +179 -0
  2553. package/node_modules/pino/test/jest/basic.spec.js +10 -0
  2554. package/node_modules/pino/test/levels.test.js +810 -0
  2555. package/node_modules/pino/test/metadata.test.js +120 -0
  2556. package/node_modules/pino/test/mixin-merge-strategy.test.js +57 -0
  2557. package/node_modules/pino/test/mixin.test.js +241 -0
  2558. package/node_modules/pino/test/multistream.test.js +729 -0
  2559. package/node_modules/pino/test/redact.test.js +893 -0
  2560. package/node_modules/pino/test/serializers.test.js +257 -0
  2561. package/node_modules/pino/test/stdout-protection.test.js +41 -0
  2562. package/node_modules/pino/test/syncfalse.test.js +186 -0
  2563. package/node_modules/pino/test/timestamp-nano.test.js +37 -0
  2564. package/node_modules/pino/test/timestamp.test.js +124 -0
  2565. package/node_modules/pino/test/transport/big.test.js +42 -0
  2566. package/node_modules/pino/test/transport/bundlers-support.test.js +99 -0
  2567. package/node_modules/pino/test/transport/caller.test.js +24 -0
  2568. package/node_modules/pino/test/transport/core.test.js +733 -0
  2569. package/node_modules/pino/test/transport/core.transpiled.test.ts +114 -0
  2570. package/node_modules/pino/test/transport/crash.test.js +36 -0
  2571. package/node_modules/pino/test/transport/module-link.test.js +241 -0
  2572. package/node_modules/pino/test/transport/native-type-stripping.test.mjs +151 -0
  2573. package/node_modules/pino/test/transport/node-options.test.js +116 -0
  2574. package/node_modules/pino/test/transport/pipeline.test.js +137 -0
  2575. package/node_modules/pino/test/transport/preload.test.js +54 -0
  2576. package/node_modules/pino/test/transport/repl.test.js +15 -0
  2577. package/node_modules/pino/test/transport/sync-false.test.js +67 -0
  2578. package/node_modules/pino/test/transport/sync-true.test.js +57 -0
  2579. package/node_modules/pino/test/transport/targets.test.js +48 -0
  2580. package/node_modules/pino/test/transport/uses-pino-config.test.js +166 -0
  2581. package/node_modules/pino/test/transport-stream.test.js +40 -0
  2582. package/node_modules/pino/test/types/pino-import.test-d.cts +30 -0
  2583. package/node_modules/pino/test/types/pino-multistream.test-d.ts +28 -0
  2584. package/node_modules/pino/test/types/pino-top-export.test-d.ts +34 -0
  2585. package/node_modules/pino/test/types/pino-transport.test-d.ts +156 -0
  2586. package/node_modules/pino/test/types/pino-type-only.test-d.ts +75 -0
  2587. package/node_modules/pino/test/types/pino.test-d.ts +683 -0
  2588. package/node_modules/pino/test/types/pino.ts +91 -0
  2589. package/node_modules/pino/tsconfig.json +14 -0
  2590. package/node_modules/pino-abstract-transport/.github/dependabot.yml +13 -0
  2591. package/node_modules/pino-abstract-transport/.github/workflows/ci.yml +80 -0
  2592. package/node_modules/pino-abstract-transport/.husky/pre-commit +4 -0
  2593. package/node_modules/pino-abstract-transport/LICENSE +21 -0
  2594. package/node_modules/pino-abstract-transport/README.md +171 -0
  2595. package/node_modules/pino-abstract-transport/index.d.ts +122 -0
  2596. package/node_modules/pino-abstract-transport/index.js +128 -0
  2597. package/node_modules/pino-abstract-transport/package.json +41 -0
  2598. package/node_modules/pino-abstract-transport/test/base.test.js +473 -0
  2599. package/node_modules/pino-abstract-transport/test/fixtures/transport-async-iteration.js +22 -0
  2600. package/node_modules/pino-abstract-transport/test/fixtures/transport-on-data.js +22 -0
  2601. package/node_modules/pino-abstract-transport/test/fixtures/transport-transform.js +24 -0
  2602. package/node_modules/pino-abstract-transport/test/fixtures/worker-pipeline.js +15 -0
  2603. package/node_modules/pino-abstract-transport/test/match.js +24 -0
  2604. package/node_modules/pino-abstract-transport/test/types/index.test-d.ts +31 -0
  2605. package/node_modules/pino-abstract-transport/test/worker.test.js +372 -0
  2606. package/node_modules/pino-std-serializers/.editorconfig +13 -0
  2607. package/node_modules/pino-std-serializers/.github/dependabot.yml +13 -0
  2608. package/node_modules/pino-std-serializers/.github/workflows/ci.yml +81 -0
  2609. package/node_modules/pino-std-serializers/LICENSE +7 -0
  2610. package/node_modules/pino-std-serializers/Readme.md +182 -0
  2611. package/node_modules/pino-std-serializers/eslint.config.js +7 -0
  2612. package/node_modules/pino-std-serializers/index.d.ts +145 -0
  2613. package/node_modules/pino-std-serializers/index.js +36 -0
  2614. package/node_modules/pino-std-serializers/lib/err-helpers.js +118 -0
  2615. package/node_modules/pino-std-serializers/lib/err-proto.js +48 -0
  2616. package/node_modules/pino-std-serializers/lib/err-with-cause.js +48 -0
  2617. package/node_modules/pino-std-serializers/lib/err.js +45 -0
  2618. package/node_modules/pino-std-serializers/lib/req.js +100 -0
  2619. package/node_modules/pino-std-serializers/lib/res.js +47 -0
  2620. package/node_modules/pino-std-serializers/package.json +42 -0
  2621. package/node_modules/pino-std-serializers/test/err-with-cause.test.js +187 -0
  2622. package/node_modules/pino-std-serializers/test/err.test.js +200 -0
  2623. package/node_modules/pino-std-serializers/test/req.test.js +477 -0
  2624. package/node_modules/pino-std-serializers/test/res.test.js +120 -0
  2625. package/node_modules/pino-std-serializers/test/types/index.test-d.ts +71 -0
  2626. package/node_modules/pino-std-serializers/tsconfig.json +13 -0
  2627. package/node_modules/process-warning/.gitattributes +2 -0
  2628. package/node_modules/process-warning/.github/dependabot.yml +13 -0
  2629. package/node_modules/process-warning/.github/workflows/ci.yml +22 -0
  2630. package/node_modules/process-warning/LICENSE +21 -0
  2631. package/node_modules/process-warning/README.md +118 -0
  2632. package/node_modules/process-warning/benchmarks/warn.js +25 -0
  2633. package/node_modules/process-warning/eslint.config.js +6 -0
  2634. package/node_modules/process-warning/examples/example.js +11 -0
  2635. package/node_modules/process-warning/index.js +124 -0
  2636. package/node_modules/process-warning/package.json +73 -0
  2637. package/node_modules/process-warning/test/emit-interpolated-string.test.js +34 -0
  2638. package/node_modules/process-warning/test/emit-once-only.test.js +33 -0
  2639. package/node_modules/process-warning/test/emit-reset.test.js +40 -0
  2640. package/node_modules/process-warning/test/emit-set.test.js +35 -0
  2641. package/node_modules/process-warning/test/emit-unlimited.test.js +42 -0
  2642. package/node_modules/process-warning/test/index.test.js +99 -0
  2643. package/node_modules/process-warning/test/issue-88.test.js +38 -0
  2644. package/node_modules/process-warning/test/jest.test.js +24 -0
  2645. package/node_modules/process-warning/test/no-warnings.test.js +80 -0
  2646. package/node_modules/process-warning/test/promise.js +10 -0
  2647. package/node_modules/process-warning/types/index.d.ts +37 -0
  2648. package/node_modules/process-warning/types/index.test-d.ts +36 -0
  2649. package/node_modules/quick-format-unescaped/.github/workflows/ci.yml +21 -0
  2650. package/node_modules/quick-format-unescaped/LICENSE +21 -0
  2651. package/node_modules/quick-format-unescaped/benchmark.js +24 -0
  2652. package/node_modules/quick-format-unescaped/index.js +109 -0
  2653. package/node_modules/quick-format-unescaped/package.json +29 -0
  2654. package/node_modules/quick-format-unescaped/readme.md +66 -0
  2655. package/node_modules/quick-format-unescaped/test/index.js +136 -0
  2656. package/node_modules/real-require/LICENSE.md +21 -0
  2657. package/node_modules/real-require/README.md +51 -0
  2658. package/node_modules/real-require/package.json +49 -0
  2659. package/node_modules/real-require/src/index.js +14 -0
  2660. package/node_modules/require-from-string/index.js +34 -0
  2661. package/node_modules/require-from-string/license +21 -0
  2662. package/node_modules/require-from-string/package.json +28 -0
  2663. package/node_modules/require-from-string/readme.md +56 -0
  2664. package/node_modules/ret/LICENSE +21 -0
  2665. package/node_modules/ret/README.md +539 -0
  2666. package/node_modules/ret/dist/index.d.ts +7 -0
  2667. package/node_modules/ret/dist/index.js +26 -0
  2668. package/node_modules/ret/dist/index.js.map +1 -0
  2669. package/node_modules/ret/dist/reconstruct.d.ts +2 -0
  2670. package/node_modules/ret/dist/reconstruct.js +77 -0
  2671. package/node_modules/ret/dist/reconstruct.js.map +1 -0
  2672. package/node_modules/ret/dist/sets-lookup.d.ts +5 -0
  2673. package/node_modules/ret/dist/sets-lookup.js +51 -0
  2674. package/node_modules/ret/dist/sets-lookup.js.map +1 -0
  2675. package/node_modules/ret/dist/sets.d.ts +9 -0
  2676. package/node_modules/ret/dist/sets.js +43 -0
  2677. package/node_modules/ret/dist/sets.js.map +1 -0
  2678. package/node_modules/ret/dist/tokenizer.d.ts +8 -0
  2679. package/node_modules/ret/dist/tokenizer.js +361 -0
  2680. package/node_modules/ret/dist/tokenizer.js.map +1 -0
  2681. package/node_modules/ret/dist/types/index.d.ts +3 -0
  2682. package/node_modules/ret/dist/types/index.js +16 -0
  2683. package/node_modules/ret/dist/types/index.js.map +1 -0
  2684. package/node_modules/ret/dist/types/set-lookup.d.ts +8 -0
  2685. package/node_modules/ret/dist/types/set-lookup.js +3 -0
  2686. package/node_modules/ret/dist/types/set-lookup.js.map +1 -0
  2687. package/node_modules/ret/dist/types/tokens.d.ts +41 -0
  2688. package/node_modules/ret/dist/types/tokens.js +3 -0
  2689. package/node_modules/ret/dist/types/tokens.js.map +1 -0
  2690. package/node_modules/ret/dist/types/types.d.ts +10 -0
  2691. package/node_modules/ret/dist/types/types.js +15 -0
  2692. package/node_modules/ret/dist/types/types.js.map +1 -0
  2693. package/node_modules/ret/dist/util.d.ts +18 -0
  2694. package/node_modules/ret/dist/util.js +82 -0
  2695. package/node_modules/ret/dist/util.js.map +1 -0
  2696. package/node_modules/ret/dist/write-set-tokens.d.ts +14 -0
  2697. package/node_modules/ret/dist/write-set-tokens.js +108 -0
  2698. package/node_modules/ret/dist/write-set-tokens.js.map +1 -0
  2699. package/node_modules/ret/package.json +42 -0
  2700. package/node_modules/reusify/.github/dependabot.yml +7 -0
  2701. package/node_modules/reusify/.github/workflows/ci.yml +96 -0
  2702. package/node_modules/reusify/LICENSE +22 -0
  2703. package/node_modules/reusify/README.md +139 -0
  2704. package/node_modules/reusify/SECURITY.md +15 -0
  2705. package/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
  2706. package/node_modules/reusify/benchmarks/fib.js +13 -0
  2707. package/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
  2708. package/node_modules/reusify/eslint.config.js +14 -0
  2709. package/node_modules/reusify/package.json +50 -0
  2710. package/node_modules/reusify/reusify.d.ts +14 -0
  2711. package/node_modules/reusify/reusify.js +33 -0
  2712. package/node_modules/reusify/test.js +66 -0
  2713. package/node_modules/reusify/tsconfig.json +11 -0
  2714. package/node_modules/rfdc/.github/workflows/ci.yml +21 -0
  2715. package/node_modules/rfdc/LICENSE +15 -0
  2716. package/node_modules/rfdc/default.js +3 -0
  2717. package/node_modules/rfdc/index.d.ts +13 -0
  2718. package/node_modules/rfdc/index.js +198 -0
  2719. package/node_modules/rfdc/index.test-d.ts +13 -0
  2720. package/node_modules/rfdc/package.json +73 -0
  2721. package/node_modules/rfdc/readme.md +181 -0
  2722. package/node_modules/rfdc/test/index.js +306 -0
  2723. package/node_modules/safe-regex2/.gitattributes +2 -0
  2724. package/node_modules/safe-regex2/.github/dependabot.yml +13 -0
  2725. package/node_modules/safe-regex2/.github/workflows/ci.yml +33 -0
  2726. package/node_modules/safe-regex2/.github/workflows/lock-threads.yml +19 -0
  2727. package/node_modules/safe-regex2/LICENSE +21 -0
  2728. package/node_modules/safe-regex2/README.md +68 -0
  2729. package/node_modules/safe-regex2/bin/safe-regex2.js +58 -0
  2730. package/node_modules/safe-regex2/eslint.config.js +6 -0
  2731. package/node_modules/safe-regex2/example/safe.js +5 -0
  2732. package/node_modules/safe-regex2/index.js +76 -0
  2733. package/node_modules/safe-regex2/package.json +78 -0
  2734. package/node_modules/safe-regex2/test/regex.test.js +58 -0
  2735. package/node_modules/safe-regex2/types/index.d.ts +9 -0
  2736. package/node_modules/safe-regex2/types/index.test-d.ts +12 -0
  2737. package/node_modules/safe-stable-stringify/LICENSE +21 -0
  2738. package/node_modules/safe-stable-stringify/esm/package.json +4 -0
  2739. package/node_modules/safe-stable-stringify/esm/wrapper.d.ts +4 -0
  2740. package/node_modules/safe-stable-stringify/esm/wrapper.js +6 -0
  2741. package/node_modules/safe-stable-stringify/index.d.ts +22 -0
  2742. package/node_modules/safe-stable-stringify/index.js +625 -0
  2743. package/node_modules/safe-stable-stringify/package.json +65 -0
  2744. package/node_modules/safe-stable-stringify/readme.md +179 -0
  2745. package/node_modules/secure-json-parse/.airtap.yml +7 -0
  2746. package/node_modules/secure-json-parse/.gitattributes +2 -0
  2747. package/node_modules/secure-json-parse/.github/dependabot.yml +13 -0
  2748. package/node_modules/secure-json-parse/.github/stale.yml +21 -0
  2749. package/node_modules/secure-json-parse/.github/workflows/ci.yml +149 -0
  2750. package/node_modules/secure-json-parse/LICENSE +19 -0
  2751. package/node_modules/secure-json-parse/README.md +132 -0
  2752. package/node_modules/secure-json-parse/benchmarks/ignore.js +35 -0
  2753. package/node_modules/secure-json-parse/benchmarks/no__proto__.js +40 -0
  2754. package/node_modules/secure-json-parse/benchmarks/package.json +15 -0
  2755. package/node_modules/secure-json-parse/benchmarks/remove.js +39 -0
  2756. package/node_modules/secure-json-parse/benchmarks/throw.js +49 -0
  2757. package/node_modules/secure-json-parse/benchmarks/valid.js +49 -0
  2758. package/node_modules/secure-json-parse/eslint.config.js +6 -0
  2759. package/node_modules/secure-json-parse/index.js +161 -0
  2760. package/node_modules/secure-json-parse/package.json +74 -0
  2761. package/node_modules/secure-json-parse/test/index.test.js +649 -0
  2762. package/node_modules/secure-json-parse/types/index.d.ts +60 -0
  2763. package/node_modules/secure-json-parse/types/index.test-d.ts +43 -0
  2764. package/node_modules/semver/LICENSE +15 -0
  2765. package/node_modules/semver/README.md +680 -0
  2766. package/node_modules/semver/bin/semver.js +195 -0
  2767. package/node_modules/semver/classes/comparator.js +143 -0
  2768. package/node_modules/semver/classes/index.js +7 -0
  2769. package/node_modules/semver/classes/range.js +573 -0
  2770. package/node_modules/semver/classes/semver.js +350 -0
  2771. package/node_modules/semver/functions/clean.js +8 -0
  2772. package/node_modules/semver/functions/cmp.js +54 -0
  2773. package/node_modules/semver/functions/coerce.js +62 -0
  2774. package/node_modules/semver/functions/compare-build.js +9 -0
  2775. package/node_modules/semver/functions/compare-loose.js +5 -0
  2776. package/node_modules/semver/functions/compare.js +7 -0
  2777. package/node_modules/semver/functions/diff.js +60 -0
  2778. package/node_modules/semver/functions/eq.js +5 -0
  2779. package/node_modules/semver/functions/gt.js +5 -0
  2780. package/node_modules/semver/functions/gte.js +5 -0
  2781. package/node_modules/semver/functions/inc.js +21 -0
  2782. package/node_modules/semver/functions/lt.js +5 -0
  2783. package/node_modules/semver/functions/lte.js +5 -0
  2784. package/node_modules/semver/functions/major.js +5 -0
  2785. package/node_modules/semver/functions/minor.js +5 -0
  2786. package/node_modules/semver/functions/neq.js +5 -0
  2787. package/node_modules/semver/functions/parse.js +18 -0
  2788. package/node_modules/semver/functions/patch.js +5 -0
  2789. package/node_modules/semver/functions/prerelease.js +8 -0
  2790. package/node_modules/semver/functions/rcompare.js +5 -0
  2791. package/node_modules/semver/functions/rsort.js +5 -0
  2792. package/node_modules/semver/functions/satisfies.js +12 -0
  2793. package/node_modules/semver/functions/sort.js +5 -0
  2794. package/node_modules/semver/functions/truncate.js +48 -0
  2795. package/node_modules/semver/functions/valid.js +8 -0
  2796. package/node_modules/semver/index.js +93 -0
  2797. package/node_modules/semver/internal/constants.js +37 -0
  2798. package/node_modules/semver/internal/debug.js +11 -0
  2799. package/node_modules/semver/internal/identifiers.js +29 -0
  2800. package/node_modules/semver/internal/lrucache.js +42 -0
  2801. package/node_modules/semver/internal/parse-options.js +17 -0
  2802. package/node_modules/semver/internal/re.js +223 -0
  2803. package/node_modules/semver/package.json +78 -0
  2804. package/node_modules/semver/preload.js +4 -0
  2805. package/node_modules/semver/range.bnf +17 -0
  2806. package/node_modules/semver/ranges/gtr.js +6 -0
  2807. package/node_modules/semver/ranges/intersects.js +9 -0
  2808. package/node_modules/semver/ranges/ltr.js +6 -0
  2809. package/node_modules/semver/ranges/max-satisfying.js +27 -0
  2810. package/node_modules/semver/ranges/min-satisfying.js +26 -0
  2811. package/node_modules/semver/ranges/min-version.js +63 -0
  2812. package/node_modules/semver/ranges/outside.js +82 -0
  2813. package/node_modules/semver/ranges/simplify.js +49 -0
  2814. package/node_modules/semver/ranges/subset.js +249 -0
  2815. package/node_modules/semver/ranges/to-comparators.js +10 -0
  2816. package/node_modules/semver/ranges/valid.js +13 -0
  2817. package/node_modules/set-cookie-parser/LICENSE +21 -0
  2818. package/node_modules/set-cookie-parser/README.md +202 -0
  2819. package/node_modules/set-cookie-parser/lib/set-cookie.js +242 -0
  2820. package/node_modules/set-cookie-parser/package.json +45 -0
  2821. package/node_modules/setprototypeof/LICENSE +13 -0
  2822. package/node_modules/setprototypeof/README.md +31 -0
  2823. package/node_modules/setprototypeof/index.d.ts +2 -0
  2824. package/node_modules/setprototypeof/index.js +17 -0
  2825. package/node_modules/setprototypeof/package.json +38 -0
  2826. package/node_modules/setprototypeof/test/index.js +24 -0
  2827. package/node_modules/sonic-boom/.eslintignore +2 -0
  2828. package/node_modules/sonic-boom/.taprc +3 -0
  2829. package/node_modules/sonic-boom/LICENSE +21 -0
  2830. package/node_modules/sonic-boom/README.md +153 -0
  2831. package/node_modules/sonic-boom/bench.js +98 -0
  2832. package/node_modules/sonic-boom/check.js +18 -0
  2833. package/node_modules/sonic-boom/example.js +8 -0
  2834. package/node_modules/sonic-boom/fixtures/firehose.js +22 -0
  2835. package/node_modules/sonic-boom/index.js +733 -0
  2836. package/node_modules/sonic-boom/package.json +52 -0
  2837. package/node_modules/sonic-boom/test/destroy.test.js +49 -0
  2838. package/node_modules/sonic-boom/test/end.test.js +98 -0
  2839. package/node_modules/sonic-boom/test/flush-sync.test.js +140 -0
  2840. package/node_modules/sonic-boom/test/flush.test.js +419 -0
  2841. package/node_modules/sonic-boom/test/fsync.test.js +63 -0
  2842. package/node_modules/sonic-boom/test/helper.js +42 -0
  2843. package/node_modules/sonic-boom/test/minlength.test.js +35 -0
  2844. package/node_modules/sonic-boom/test/mode.test.js +116 -0
  2845. package/node_modules/sonic-boom/test/periodicflush.test.js +61 -0
  2846. package/node_modules/sonic-boom/test/reopen.test.js +239 -0
  2847. package/node_modules/sonic-boom/test/retry.test.js +414 -0
  2848. package/node_modules/sonic-boom/test/sync.test.js +261 -0
  2849. package/node_modules/sonic-boom/test/write.test.js +515 -0
  2850. package/node_modules/sonic-boom/types/index.d.ts +63 -0
  2851. package/node_modules/sonic-boom/types/tests/test.ts +4 -0
  2852. package/node_modules/split2/LICENSE +13 -0
  2853. package/node_modules/split2/README.md +85 -0
  2854. package/node_modules/split2/bench.js +27 -0
  2855. package/node_modules/split2/index.js +141 -0
  2856. package/node_modules/split2/package.json +39 -0
  2857. package/node_modules/split2/test.js +409 -0
  2858. package/node_modules/statuses/HISTORY.md +87 -0
  2859. package/node_modules/statuses/LICENSE +23 -0
  2860. package/node_modules/statuses/README.md +139 -0
  2861. package/node_modules/statuses/codes.json +65 -0
  2862. package/node_modules/statuses/index.js +146 -0
  2863. package/node_modules/statuses/package.json +49 -0
  2864. package/node_modules/thread-stream/.claude/settings.local.json +15 -0
  2865. package/node_modules/thread-stream/.github/dependabot.yml +13 -0
  2866. package/node_modules/thread-stream/.github/workflows/ci.yml +74 -0
  2867. package/node_modules/thread-stream/LICENSE +21 -0
  2868. package/node_modules/thread-stream/README.md +138 -0
  2869. package/node_modules/thread-stream/bench.js +85 -0
  2870. package/node_modules/thread-stream/eslint.config.js +10 -0
  2871. package/node_modules/thread-stream/index.d.ts +99 -0
  2872. package/node_modules/thread-stream/index.js +645 -0
  2873. package/node_modules/thread-stream/lib/indexes.js +11 -0
  2874. package/node_modules/thread-stream/lib/wait.js +77 -0
  2875. package/node_modules/thread-stream/lib/worker.js +298 -0
  2876. package/node_modules/thread-stream/node_modules/real-require/LICENSE.md +21 -0
  2877. package/node_modules/thread-stream/node_modules/real-require/README.md +51 -0
  2878. package/node_modules/thread-stream/node_modules/real-require/package.json +38 -0
  2879. package/node_modules/thread-stream/node_modules/real-require/src/index.js +14 -0
  2880. package/node_modules/thread-stream/package.json +50 -0
  2881. package/node_modules/thread-stream/test/base.test.js +259 -0
  2882. package/node_modules/thread-stream/test/bench.test.js +38 -0
  2883. package/node_modules/thread-stream/test/bundlers.test.js +59 -0
  2884. package/node_modules/thread-stream/test/close-on-gc.js +37 -0
  2885. package/node_modules/thread-stream/test/commonjs-fallback.test.js +75 -0
  2886. package/node_modules/thread-stream/test/context.test.js +21 -0
  2887. package/node_modules/thread-stream/test/create-and-exit.js +16 -0
  2888. package/node_modules/thread-stream/test/custom-worker.js +9 -0
  2889. package/node_modules/thread-stream/test/dir with spaces/test-package.zip +0 -0
  2890. package/node_modules/thread-stream/test/emit-event.js +22 -0
  2891. package/node_modules/thread-stream/test/end.test.js +56 -0
  2892. package/node_modules/thread-stream/test/error.js +14 -0
  2893. package/node_modules/thread-stream/test/esm.test.mjs +46 -0
  2894. package/node_modules/thread-stream/test/event.test.js +24 -0
  2895. package/node_modules/thread-stream/test/exit.js +14 -0
  2896. package/node_modules/thread-stream/test/flush-worker.js +68 -0
  2897. package/node_modules/thread-stream/test/flush.test.js +112 -0
  2898. package/node_modules/thread-stream/test/get-context.js +22 -0
  2899. package/node_modules/thread-stream/test/helper.d.ts +1 -0
  2900. package/node_modules/thread-stream/test/helper.js +26 -0
  2901. package/node_modules/thread-stream/test/indexes.test.js +11 -0
  2902. package/node_modules/thread-stream/test/message-without-code.js +19 -0
  2903. package/node_modules/thread-stream/test/multibyte-chars.test.mjs +75 -0
  2904. package/node_modules/thread-stream/test/multibyte-overrun.test.mjs +33 -0
  2905. package/node_modules/thread-stream/test/on-message.js +18 -0
  2906. package/node_modules/thread-stream/test/pkg/index.js +37 -0
  2907. package/node_modules/thread-stream/test/pkg/pkg.config.json +14 -0
  2908. package/node_modules/thread-stream/test/pkg/pkg.test.js +45 -0
  2909. package/node_modules/thread-stream/test/port.js +16 -0
  2910. package/node_modules/thread-stream/test/post-message.test.js +23 -0
  2911. package/node_modules/thread-stream/test/report-thread-name.js +16 -0
  2912. package/node_modules/thread-stream/test/string-limit-2.test.js +35 -0
  2913. package/node_modules/thread-stream/test/string-limit.test.js +37 -0
  2914. package/node_modules/thread-stream/test/syntax-error.mjs +2 -0
  2915. package/node_modules/thread-stream/test/thread-management.test.js +150 -0
  2916. package/node_modules/thread-stream/test/to-file-on-destroy.js +23 -0
  2917. package/node_modules/thread-stream/test/to-file-on-final.js +24 -0
  2918. package/node_modules/thread-stream/test/to-file.js +12 -0
  2919. package/node_modules/thread-stream/test/to-file.mjs +8 -0
  2920. package/node_modules/thread-stream/test/to-next.js +9 -0
  2921. package/node_modules/thread-stream/test/transpiled.test.js +29 -0
  2922. package/node_modules/thread-stream/test/ts/to-file.ts +10 -0
  2923. package/node_modules/thread-stream/test/ts/transpile.sh +19 -0
  2924. package/node_modules/thread-stream/test/ts-commonjs-default-export.zip +0 -0
  2925. package/node_modules/thread-stream/test/ts-native.test.mjs +35 -0
  2926. package/node_modules/thread-stream/test/ts-node-fallback.test.js +35 -0
  2927. package/node_modules/thread-stream/test/uncaughtException.js +21 -0
  2928. package/node_modules/thread-stream/test/unhandledRejection.js +21 -0
  2929. package/node_modules/thread-stream/test/watch-mode.test.js +30 -0
  2930. package/node_modules/thread-stream/test/worker-name.test.js +43 -0
  2931. package/node_modules/thread-stream/test/yarnrc.yml +7 -0
  2932. package/node_modules/thread-stream/tsconfig.json +8 -0
  2933. package/node_modules/toad-cache/LICENSE +21 -0
  2934. package/node_modules/toad-cache/README.md +265 -0
  2935. package/node_modules/toad-cache/dist/toad-cache.cjs +878 -0
  2936. package/node_modules/toad-cache/dist/toad-cache.mjs +852 -0
  2937. package/node_modules/toad-cache/package.json +84 -0
  2938. package/node_modules/toad-cache/toad-cache.d.cts +138 -0
  2939. package/node_modules/toad-cache/toad-cache.d.ts +128 -0
  2940. package/node_modules/toidentifier/HISTORY.md +9 -0
  2941. package/node_modules/toidentifier/LICENSE +21 -0
  2942. package/node_modules/toidentifier/README.md +61 -0
  2943. package/node_modules/toidentifier/index.js +32 -0
  2944. package/node_modules/toidentifier/package.json +38 -0
  2945. package/package.json +43 -20
  2946. package/scripts/build-local.sh +10 -11
  2947. package/scripts/check-app-path-boundaries.mjs +121 -0
  2948. package/scripts/check-app-spec.mjs +127 -25
  2949. package/scripts/check-colima-launchd.mjs +26 -22
  2950. package/scripts/check-integration-isolation.ts +541 -0
  2951. package/scripts/check-new-file-tests.mjs +16 -47
  2952. package/scripts/check-open-core-boundaries.mjs +334 -0
  2953. package/scripts/check-test-layering.sh +86 -0
  2954. package/scripts/fixtures/instances/hermes-sample/instance.json +3 -2
  2955. package/scripts/fixtures/instances/legacy-openclaw-sample/instance.json +1 -1
  2956. package/scripts/local-web-upgrade-test.README +147 -0
  2957. package/scripts/local-web-upgrade-test.example.env +54 -0
  2958. package/scripts/local-web-upgrade-test.sh +894 -0
  2959. package/scripts/pack-gui-and-send-pi.sh +41 -0
  2960. package/scripts/pack-with-gui.mjs +391 -0
  2961. package/scripts/perf/instances.js +1 -1
  2962. package/scripts/prune-open-core-dist.mjs +91 -0
  2963. package/scripts/run.sh +24 -25
  2964. package/scripts/setup-pi.sh +2 -2
  2965. package/scripts/smoke/hermes-bootstrap.sh +7 -7
  2966. package/scripts/smoke-backend.mjs +33 -1
  2967. package/templates/hermes-entrypoint.sh +19 -29
  2968. package/apps/openwebui-container.yaml +0 -97
  2969. package/apps/playwright-container.yaml +0 -126
  2970. package/dist/cli/panel.d.ts +0 -27
  2971. package/dist/cli/panel.js +0 -805
  2972. package/dist/cli/panel.js.map +0 -1
  2973. package/dist/crypto-shim.d.ts +0 -1
  2974. package/dist/crypto-shim.js +0 -2
  2975. package/dist/crypto-shim.js.map +0 -1
  2976. package/dist/routes/agent-apps.d.ts +0 -15
  2977. package/dist/routes/agent-apps.js +0 -78
  2978. package/dist/routes/agent-apps.js.map +0 -1
  2979. package/dist/routes/internal.d.ts +0 -2
  2980. package/dist/routes/internal.js +0 -59
  2981. package/dist/routes/internal.js.map +0 -1
  2982. package/dist/routes/runtime.d.ts +0 -15
  2983. package/dist/routes/runtime.js +0 -69
  2984. package/dist/routes/runtime.js.map +0 -1
  2985. package/dist/services/agent-apps/catalog.d.ts +0 -33
  2986. package/dist/services/agent-apps/catalog.js +0 -88
  2987. package/dist/services/agent-apps/catalog.js.map +0 -1
  2988. package/dist/services/agent-apps/index.d.ts +0 -36
  2989. package/dist/services/agent-apps/index.js +0 -171
  2990. package/dist/services/agent-apps/index.js.map +0 -1
  2991. package/dist/services/agent-apps/installers/adapter-probes.d.ts +0 -49
  2992. package/dist/services/agent-apps/installers/adapter-probes.js +0 -223
  2993. package/dist/services/agent-apps/installers/adapter-probes.js.map +0 -1
  2994. package/dist/services/agent-apps/installers/adapter.d.ts +0 -30
  2995. package/dist/services/agent-apps/installers/adapter.js +0 -171
  2996. package/dist/services/agent-apps/installers/adapter.js.map +0 -1
  2997. package/dist/services/agent-apps/installers/registry-probe.js.map +0 -1
  2998. package/dist/services/agent-apps/installers/shell-script.d.ts +0 -47
  2999. package/dist/services/agent-apps/installers/shell-script.js +0 -488
  3000. package/dist/services/agent-apps/installers/shell-script.js.map +0 -1
  3001. package/dist/services/agent-apps/types.d.ts +0 -128
  3002. package/dist/services/agent-apps/types.js +0 -17
  3003. package/dist/services/agent-apps/types.js.map +0 -1
  3004. package/dist/services/app/app-compiler.js +0 -172
  3005. package/dist/services/app/app-compiler.js.map +0 -1
  3006. package/dist/services/app/app-manager.d.ts +0 -174
  3007. package/dist/services/app/app-manager.js +0 -2741
  3008. package/dist/services/app/app-manager.js.map +0 -1
  3009. package/dist/services/app/custom-manager.d.ts +0 -27
  3010. package/dist/services/app/custom-manager.js +0 -285
  3011. package/dist/services/app/custom-manager.js.map +0 -1
  3012. package/dist/services/app/hermes-agent-manager.d.ts +0 -20
  3013. package/dist/services/app/hermes-agent-manager.js +0 -292
  3014. package/dist/services/app/hermes-agent-manager.js.map +0 -1
  3015. package/dist/services/app/id-normalizer.d.ts +0 -27
  3016. package/dist/services/app/id-normalizer.js +0 -77
  3017. package/dist/services/app/id-normalizer.js.map +0 -1
  3018. package/dist/services/app/ollama-manager.d.ts +0 -18
  3019. package/dist/services/app/ollama-manager.js +0 -207
  3020. package/dist/services/app/ollama-manager.js.map +0 -1
  3021. package/dist/services/app/openclaw-manager.d.ts +0 -63
  3022. package/dist/services/app/openclaw-manager.js +0 -1210
  3023. package/dist/services/app/openclaw-manager.js.map +0 -1
  3024. package/dist/services/app/paths.d.ts +0 -47
  3025. package/dist/services/app/paths.js +0 -68
  3026. package/dist/services/app/paths.js.map +0 -1
  3027. package/dist/services/app/platform-transform.d.ts +0 -32
  3028. package/dist/services/app/platform-transform.js +0 -65
  3029. package/dist/services/app/platform-transform.js.map +0 -1
  3030. package/dist/services/app/provide-resolver.d.ts +0 -29
  3031. package/dist/services/app/provide-resolver.js +0 -112
  3032. package/dist/services/app/provide-resolver.js.map +0 -1
  3033. package/dist/services/app/registry.d.ts +0 -17
  3034. package/dist/services/app/registry.js +0 -31
  3035. package/dist/services/app/registry.js.map +0 -1
  3036. package/dist/services/app/remote-spec.d.ts +0 -14
  3037. package/dist/services/app/remote-spec.js +0 -58
  3038. package/dist/services/app/remote-spec.js.map +0 -1
  3039. package/dist/services/app/terminal-session-manager.js +0 -157
  3040. package/dist/services/app/terminal-session-manager.js.map +0 -1
  3041. package/dist/services/app/types.d.ts +0 -72
  3042. package/dist/services/app/types.js +0 -16
  3043. package/dist/services/app/types.js.map +0 -1
  3044. package/dist/services/app-passwords.js +0 -173
  3045. package/dist/services/app-passwords.js.map +0 -1
  3046. package/dist/services/backup-manager.d.ts +0 -264
  3047. package/dist/services/backup-manager.js +0 -2264
  3048. package/dist/services/backup-manager.js.map +0 -1
  3049. package/dist/services/backup-verify.js +0 -240
  3050. package/dist/services/backup-verify.js.map +0 -1
  3051. package/dist/services/capability-endpoint-validator.d.ts +0 -41
  3052. package/dist/services/capability-endpoint-validator.js +0 -123
  3053. package/dist/services/capability-endpoint-validator.js.map +0 -1
  3054. package/dist/services/capability-health.d.ts +0 -16
  3055. package/dist/services/capability-health.js +0 -121
  3056. package/dist/services/capability-health.js.map +0 -1
  3057. package/dist/services/capability-registry.d.ts +0 -106
  3058. package/dist/services/capability-registry.js +0 -313
  3059. package/dist/services/capability-registry.js.map +0 -1
  3060. package/dist/services/connection-apply.d.ts +0 -91
  3061. package/dist/services/connection-apply.js +0 -475
  3062. package/dist/services/connection-apply.js.map +0 -1
  3063. package/dist/services/connection-resolver.d.ts +0 -65
  3064. package/dist/services/connection-resolver.js +0 -281
  3065. package/dist/services/connection-resolver.js.map +0 -1
  3066. package/dist/services/connection-transactor.d.ts +0 -39
  3067. package/dist/services/connection-transactor.js +0 -351
  3068. package/dist/services/connection-transactor.js.map +0 -1
  3069. package/dist/services/external-mounts.js +0 -187
  3070. package/dist/services/external-mounts.js.map +0 -1
  3071. package/dist/services/files-manager.d.ts +0 -252
  3072. package/dist/services/files-manager.js +0 -1075
  3073. package/dist/services/files-manager.js.map +0 -1
  3074. package/dist/services/files-mounts.d.ts +0 -42
  3075. package/dist/services/files-mounts.js +0 -207
  3076. package/dist/services/files-mounts.js.map +0 -1
  3077. package/dist/services/instance-manager.d.ts +0 -191
  3078. package/dist/services/instance-manager.js +0 -1296
  3079. package/dist/services/instance-manager.js.map +0 -1
  3080. package/dist/services/macos-launchd.d.ts +0 -89
  3081. package/dist/services/macos-launchd.js +0 -273
  3082. package/dist/services/macos-launchd.js.map +0 -1
  3083. package/dist/services/nomad-manager.d.ts +0 -290
  3084. package/dist/services/nomad-manager.js +0 -3953
  3085. package/dist/services/nomad-manager.js.map +0 -1
  3086. package/dist/services/organize/applier.js +0 -218
  3087. package/dist/services/organize/applier.js.map +0 -1
  3088. package/dist/services/organize/rules.js +0 -286
  3089. package/dist/services/organize/rules.js.map +0 -1
  3090. package/dist/services/organize/scanner.js +0 -366
  3091. package/dist/services/organize/scanner.js.map +0 -1
  3092. package/dist/services/organize/store.js +0 -82
  3093. package/dist/services/organize/store.js.map +0 -1
  3094. package/dist/services/panel-manager.d.ts +0 -50
  3095. package/dist/services/panel-manager.js +0 -472
  3096. package/dist/services/panel-manager.js.map +0 -1
  3097. package/dist/services/plugin-installer.js +0 -128
  3098. package/dist/services/plugin-installer.js.map +0 -1
  3099. package/dist/services/process-manager.d.ts +0 -25
  3100. package/dist/services/process-manager.js +0 -568
  3101. package/dist/services/process-manager.js.map +0 -1
  3102. package/dist/services/runtime/adapters/custom.d.ts +0 -20
  3103. package/dist/services/runtime/adapters/custom.js +0 -146
  3104. package/dist/services/runtime/adapters/custom.js.map +0 -1
  3105. package/dist/services/runtime/adapters/hermes.d.ts +0 -204
  3106. package/dist/services/runtime/adapters/hermes.js +0 -1631
  3107. package/dist/services/runtime/adapters/hermes.js.map +0 -1
  3108. package/dist/services/runtime/adapters/openclaw-mcporter.d.ts +0 -45
  3109. package/dist/services/runtime/adapters/openclaw-mcporter.js +0 -108
  3110. package/dist/services/runtime/adapters/openclaw-mcporter.js.map +0 -1
  3111. package/dist/services/runtime/adapters/openclaw-routes.d.ts +0 -23
  3112. package/dist/services/runtime/adapters/openclaw-routes.js +0 -1014
  3113. package/dist/services/runtime/adapters/openclaw-routes.js.map +0 -1
  3114. package/dist/services/runtime/adapters/openclaw.d.ts +0 -393
  3115. package/dist/services/runtime/adapters/openclaw.js +0 -3853
  3116. package/dist/services/runtime/adapters/openclaw.js.map +0 -1
  3117. package/dist/services/runtime/index.d.ts +0 -34
  3118. package/dist/services/runtime/index.js +0 -51
  3119. package/dist/services/runtime/index.js.map +0 -1
  3120. package/dist/services/runtime/mcp-shims/anythingllm-shim.d.ts +0 -46
  3121. package/dist/services/runtime/mcp-shims/anythingllm-shim.js +0 -281
  3122. package/dist/services/runtime/mcp-shims/anythingllm-shim.js.map +0 -1
  3123. package/dist/services/runtime/mcp-shims/drive-shim.d.ts +0 -54
  3124. package/dist/services/runtime/mcp-shims/drive-shim.js +0 -489
  3125. package/dist/services/runtime/mcp-shims/drive-shim.js.map +0 -1
  3126. package/dist/services/runtime/migrations.d.ts +0 -23
  3127. package/dist/services/runtime/migrations.js +0 -125
  3128. package/dist/services/runtime/migrations.js.map +0 -1
  3129. package/dist/services/runtime/registry.d.ts +0 -13
  3130. package/dist/services/runtime/registry.js +0 -32
  3131. package/dist/services/runtime/registry.js.map +0 -1
  3132. package/dist/services/setup-manager.d.ts +0 -136
  3133. package/dist/services/setup-manager.js +0 -2149
  3134. package/dist/services/setup-manager.js.map +0 -1
  3135. package/dist/services/suggestions.d.ts +0 -27
  3136. package/dist/services/suggestions.js +0 -133
  3137. package/dist/services/suggestions.js.map +0 -1
  3138. package/dist/services/system-monitor.js +0 -79
  3139. package/dist/services/system-monitor.js.map +0 -1
  3140. package/dist/services/task-registry.d.ts +0 -44
  3141. package/dist/services/task-registry.js +0 -76
  3142. package/dist/services/task-registry.js.map +0 -1
  3143. package/dist/services/types-shim.d.ts +0 -16
  3144. package/dist/services/types-shim.js +0 -2
  3145. package/dist/services/types-shim.js.map +0 -1
  3146. package/dist/services/update-manager.d.ts +0 -47
  3147. package/dist/services/update-manager.js +0 -323
  3148. package/dist/services/update-manager.js.map +0 -1
  3149. package/dist/services/webdav/server.d.ts +0 -24
  3150. package/dist/services/webdav/server.js +0 -420
  3151. package/dist/services/webdav/server.js.map +0 -1
  3152. package/dist/services/webdav/xml-builder.js.map +0 -1
  3153. package/dist/services/workspace-builder.d.ts +0 -29
  3154. package/dist/services/workspace-builder.js +0 -188
  3155. package/dist/services/workspace-builder.js.map +0 -1
  3156. package/public/assets/ApiKeyField-CvyAOcJS.js +0 -1
  3157. package/public/assets/Dashboard-AuJESBlJ.js +0 -1
  3158. package/public/assets/HermesChatPanel-CByPREwb.js +0 -1
  3159. package/public/assets/HermesConfigForm-DRda8FKX.js +0 -4
  3160. package/public/assets/InitPassword-ka4wNpM5.js +0 -1
  3161. package/public/assets/InstanceDetail-Cg1nS8HX.js +0 -92
  3162. package/public/assets/Login-aPajuQzf.js +0 -1
  3163. package/public/assets/NewInstance-Dd1ebNIx.js +0 -1
  3164. package/public/assets/ProviderRecommendations-DFmADQ7V.js +0 -1
  3165. package/public/assets/Settings-BYQnbLYL.js +0 -1
  3166. package/public/assets/Setup-D05lwDOV.js +0 -1
  3167. package/public/assets/WeixinLoginPanel-D89kdhP4.js +0 -9
  3168. package/public/assets/index-HSXCsceK.css +0 -1
  3169. package/public/assets/index-bnBu0nlQ.js +0 -19
  3170. package/public/assets/registry-C_qeFTkZ.js +0 -2
  3171. package/public/assets/usePolling-Bn93fe7M.js +0 -1
  3172. package/public/assets/vendor-i18n-flxcMVeP.js +0 -9
  3173. package/public/assets/vendor-react-ZC5T_huj.js +0 -59
  3174. package/public/index.html +0 -20
  3175. package/scripts/build-image.sh +0 -55
  3176. package/scripts/check-adapter-isolation.ts +0 -293
  3177. package/scripts/check-i18n.mjs +0 -154
  3178. /package/dist/services/{app → app-common}/app-compiler.d.ts +0 -0
  3179. /package/dist/services/{app → app-common}/terminal-session-manager.d.ts +0 -0
  3180. /package/dist/services/{backup-verify.d.ts → backup/backup-verify.d.ts} +0 -0
  3181. /package/dist/services/{external-mounts.d.ts → files/external-mounts.d.ts} +0 -0
  3182. /package/dist/services/{organize → files/organize}/applier.d.ts +0 -0
  3183. /package/dist/services/{organize → files/organize}/rules.d.ts +0 -0
  3184. /package/dist/services/{organize → files/organize}/scanner.d.ts +0 -0
  3185. /package/dist/services/{organize → files/organize}/store.d.ts +0 -0
  3186. /package/dist/services/{webdav → files/webdav}/xml-builder.d.ts +0 -0
  3187. /package/dist/services/{webdav → files/webdav}/xml-builder.js +0 -0
  3188. /package/dist/services/{app-passwords.d.ts → instances/passwords.d.ts} +0 -0
  3189. /package/dist/services/{agent-apps → integrations/installable}/installers/registry-probe.d.ts +0 -0
  3190. /package/dist/services/{agent-apps → integrations/installable}/installers/registry-probe.js +0 -0
  3191. /package/dist/services/{plugin-installer.d.ts → setup/plugin-installer.d.ts} +0 -0
  3192. /package/dist/services/{system-monitor.d.ts → system/system-monitor.d.ts} +0 -0
  3193. /package/{public → node_modules/jishushell-panel/output/public}/assets/logo-black-theme-DywLAtFy.png +0 -0
  3194. /package/{public → node_modules/jishushell-panel/output/public}/assets/logo-white-theme-DXffFAWw.png +0 -0
  3195. /package/{public → node_modules/jishushell-panel/output/public}/favicon.png +0 -0
  3196. /package/{public → node_modules/jishushell-panel/output/public}/logos/hermes.png +0 -0
  3197. /package/{public → node_modules/jishushell-panel/output/public}/logos/ollama.png +0 -0
  3198. /package/{public → node_modules/jishushell-panel/output/public}/logos/openclaw.svg +0 -0
@@ -1,59 +0,0 @@
1
- function Uc(e,t){for(var n=0;n<t.length;n++){const r=t[n];if(typeof r!="string"&&!Array.isArray(r)){for(const l in r)if(l!=="default"&&!(l in e)){const u=Object.getOwnPropertyDescriptor(r,l);u&&Object.defineProperty(e,l,u.get?u:{enumerable:!0,get:()=>r[l]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}function jc(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var ya={exports:{}},T={};/**
2
- * @license React
3
- * react.production.min.js
4
- *
5
- * Copyright (c) Facebook, Inc. and its affiliates.
6
- *
7
- * This source code is licensed under the MIT license found in the
8
- * LICENSE file in the root directory of this source tree.
9
- */var rr=Symbol.for("react.element"),$c=Symbol.for("react.portal"),Bc=Symbol.for("react.fragment"),Ac=Symbol.for("react.strict_mode"),Vc=Symbol.for("react.profiler"),Wc=Symbol.for("react.provider"),Hc=Symbol.for("react.context"),Qc=Symbol.for("react.forward_ref"),Kc=Symbol.for("react.suspense"),Yc=Symbol.for("react.memo"),Xc=Symbol.for("react.lazy"),bi=Symbol.iterator;function Gc(e){return e===null||typeof e!="object"?null:(e=bi&&e[bi]||e["@@iterator"],typeof e=="function"?e:null)}var ga={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},wa=Object.assign,Sa={};function sn(e,t,n){this.props=e,this.context=t,this.refs=Sa,this.updater=n||ga}sn.prototype.isReactComponent={};sn.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};sn.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function ka(){}ka.prototype=sn.prototype;function qu(e,t,n){this.props=e,this.context=t,this.refs=Sa,this.updater=n||ga}var bu=qu.prototype=new ka;bu.constructor=qu;wa(bu,sn.prototype);bu.isPureReactComponent=!0;var eo=Array.isArray,Ea=Object.prototype.hasOwnProperty,ei={current:null},Ca={key:!0,ref:!0,__self:!0,__source:!0};function xa(e,t,n){var r,l={},u=null,i=null;if(t!=null)for(r in t.ref!==void 0&&(i=t.ref),t.key!==void 0&&(u=""+t.key),t)Ea.call(t,r)&&!Ca.hasOwnProperty(r)&&(l[r]=t[r]);var o=arguments.length-2;if(o===1)l.children=n;else if(1<o){for(var a=Array(o),s=0;s<o;s++)a[s]=arguments[s+2];l.children=a}if(e&&e.defaultProps)for(r in o=e.defaultProps,o)l[r]===void 0&&(l[r]=o[r]);return{$$typeof:rr,type:e,key:u,ref:i,props:l,_owner:ei.current}}function Zc(e,t){return{$$typeof:rr,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}function ti(e){return typeof e=="object"&&e!==null&&e.$$typeof===rr}function Jc(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(n){return t[n]})}var to=/\/+/g;function Ll(e,t){return typeof e=="object"&&e!==null&&e.key!=null?Jc(""+e.key):t.toString(36)}function Nr(e,t,n,r,l){var u=typeof e;(u==="undefined"||u==="boolean")&&(e=null);var i=!1;if(e===null)i=!0;else switch(u){case"string":case"number":i=!0;break;case"object":switch(e.$$typeof){case rr:case $c:i=!0}}if(i)return i=e,l=l(i),e=r===""?"."+Ll(i,0):r,eo(l)?(n="",e!=null&&(n=e.replace(to,"$&/")+"/"),Nr(l,t,n,"",function(s){return s})):l!=null&&(ti(l)&&(l=Zc(l,n+(!l.key||i&&i.key===l.key?"":(""+l.key).replace(to,"$&/")+"/")+e)),t.push(l)),1;if(i=0,r=r===""?".":r+":",eo(e))for(var o=0;o<e.length;o++){u=e[o];var a=r+Ll(u,o);i+=Nr(u,t,n,a,l)}else if(a=Gc(e),typeof a=="function")for(e=a.call(e),o=0;!(u=e.next()).done;)u=u.value,a=r+Ll(u,o++),i+=Nr(u,t,n,a,l);else if(u==="object")throw t=String(e),Error("Objects are not valid as a React child (found: "+(t==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return i}function cr(e,t,n){if(e==null)return e;var r=[],l=0;return Nr(e,r,"","",function(u){return t.call(n,u,l++)}),r}function qc(e){if(e._status===-1){var t=e._result;t=t(),t.then(function(n){(e._status===0||e._status===-1)&&(e._status=1,e._result=n)},function(n){(e._status===0||e._status===-1)&&(e._status=2,e._result=n)}),e._status===-1&&(e._status=0,e._result=t)}if(e._status===1)return e._result.default;throw e._result}var ae={current:null},zr={transition:null},bc={ReactCurrentDispatcher:ae,ReactCurrentBatchConfig:zr,ReactCurrentOwner:ei};function Pa(){throw Error("act(...) is not supported in production builds of React.")}T.Children={map:cr,forEach:function(e,t,n){cr(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return cr(e,function(){t++}),t},toArray:function(e){return cr(e,function(t){return t})||[]},only:function(e){if(!ti(e))throw Error("React.Children.only expected to receive a single React element child.");return e}};T.Component=sn;T.Fragment=Bc;T.Profiler=Vc;T.PureComponent=qu;T.StrictMode=Ac;T.Suspense=Kc;T.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=bc;T.act=Pa;T.cloneElement=function(e,t,n){if(e==null)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var r=wa({},e.props),l=e.key,u=e.ref,i=e._owner;if(t!=null){if(t.ref!==void 0&&(u=t.ref,i=ei.current),t.key!==void 0&&(l=""+t.key),e.type&&e.type.defaultProps)var o=e.type.defaultProps;for(a in t)Ea.call(t,a)&&!Ca.hasOwnProperty(a)&&(r[a]=t[a]===void 0&&o!==void 0?o[a]:t[a])}var a=arguments.length-2;if(a===1)r.children=n;else if(1<a){o=Array(a);for(var s=0;s<a;s++)o[s]=arguments[s+2];r.children=o}return{$$typeof:rr,type:e.type,key:l,ref:u,props:r,_owner:i}};T.createContext=function(e){return e={$$typeof:Hc,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},e.Provider={$$typeof:Wc,_context:e},e.Consumer=e};T.createElement=xa;T.createFactory=function(e){var t=xa.bind(null,e);return t.type=e,t};T.createRef=function(){return{current:null}};T.forwardRef=function(e){return{$$typeof:Qc,render:e}};T.isValidElement=ti;T.lazy=function(e){return{$$typeof:Xc,_payload:{_status:-1,_result:e},_init:qc}};T.memo=function(e,t){return{$$typeof:Yc,type:e,compare:t===void 0?null:t}};T.startTransition=function(e){var t=zr.transition;zr.transition={};try{e()}finally{zr.transition=t}};T.unstable_act=Pa;T.useCallback=function(e,t){return ae.current.useCallback(e,t)};T.useContext=function(e){return ae.current.useContext(e)};T.useDebugValue=function(){};T.useDeferredValue=function(e){return ae.current.useDeferredValue(e)};T.useEffect=function(e,t){return ae.current.useEffect(e,t)};T.useId=function(){return ae.current.useId()};T.useImperativeHandle=function(e,t,n){return ae.current.useImperativeHandle(e,t,n)};T.useInsertionEffect=function(e,t){return ae.current.useInsertionEffect(e,t)};T.useLayoutEffect=function(e,t){return ae.current.useLayoutEffect(e,t)};T.useMemo=function(e,t){return ae.current.useMemo(e,t)};T.useReducer=function(e,t,n){return ae.current.useReducer(e,t,n)};T.useRef=function(e){return ae.current.useRef(e)};T.useState=function(e){return ae.current.useState(e)};T.useSyncExternalStore=function(e,t,n){return ae.current.useSyncExternalStore(e,t,n)};T.useTransition=function(){return ae.current.useTransition()};T.version="18.3.1";ya.exports=T;var E=ya.exports;const ef=jc(E),tf=Uc({__proto__:null,default:ef},[E]);var _a={exports:{}},we={},Na={exports:{}},za={};/**
10
- * @license React
11
- * scheduler.production.min.js
12
- *
13
- * Copyright (c) Facebook, Inc. and its affiliates.
14
- *
15
- * This source code is licensed under the MIT license found in the
16
- * LICENSE file in the root directory of this source tree.
17
- */(function(e){function t(P,L){var R=P.length;P.push(L);e:for(;0<R;){var H=R-1>>>1,Z=P[H];if(0<l(Z,L))P[H]=L,P[R]=Z,R=H;else break e}}function n(P){return P.length===0?null:P[0]}function r(P){if(P.length===0)return null;var L=P[0],R=P.pop();if(R!==L){P[0]=R;e:for(var H=0,Z=P.length,ar=Z>>>1;H<ar;){var St=2*(H+1)-1,zl=P[St],kt=St+1,sr=P[kt];if(0>l(zl,R))kt<Z&&0>l(sr,zl)?(P[H]=sr,P[kt]=R,H=kt):(P[H]=zl,P[St]=R,H=St);else if(kt<Z&&0>l(sr,R))P[H]=sr,P[kt]=R,H=kt;else break e}}return L}function l(P,L){var R=P.sortIndex-L.sortIndex;return R!==0?R:P.id-L.id}if(typeof performance=="object"&&typeof performance.now=="function"){var u=performance;e.unstable_now=function(){return u.now()}}else{var i=Date,o=i.now();e.unstable_now=function(){return i.now()-o}}var a=[],s=[],h=1,p=null,m=3,y=!1,g=!1,w=!1,C=typeof setTimeout=="function"?setTimeout:null,f=typeof clearTimeout=="function"?clearTimeout:null,c=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function d(P){for(var L=n(s);L!==null;){if(L.callback===null)r(s);else if(L.startTime<=P)r(s),L.sortIndex=L.expirationTime,t(a,L);else break;L=n(s)}}function v(P){if(w=!1,d(P),!g)if(n(a)!==null)g=!0,_l(k);else{var L=n(s);L!==null&&Nl(v,L.startTime-P)}}function k(P,L){g=!1,w&&(w=!1,f(z),z=-1),y=!0;var R=m;try{for(d(L),p=n(a);p!==null&&(!(p.expirationTime>L)||P&&!Ne());){var H=p.callback;if(typeof H=="function"){p.callback=null,m=p.priorityLevel;var Z=H(p.expirationTime<=L);L=e.unstable_now(),typeof Z=="function"?p.callback=Z:p===n(a)&&r(a),d(L)}else r(a);p=n(a)}if(p!==null)var ar=!0;else{var St=n(s);St!==null&&Nl(v,St.startTime-L),ar=!1}return ar}finally{p=null,m=R,y=!1}}var _=!1,N=null,z=-1,W=5,O=-1;function Ne(){return!(e.unstable_now()-O<W)}function mn(){if(N!==null){var P=e.unstable_now();O=P;var L=!0;try{L=N(!0,P)}finally{L?vn():(_=!1,N=null)}}else _=!1}var vn;if(typeof c=="function")vn=function(){c(mn)};else if(typeof MessageChannel<"u"){var qi=new MessageChannel,Dc=qi.port2;qi.port1.onmessage=mn,vn=function(){Dc.postMessage(null)}}else vn=function(){C(mn,0)};function _l(P){N=P,_||(_=!0,vn())}function Nl(P,L){z=C(function(){P(e.unstable_now())},L)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(P){P.callback=null},e.unstable_continueExecution=function(){g||y||(g=!0,_l(k))},e.unstable_forceFrameRate=function(P){0>P||125<P?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):W=0<P?Math.floor(1e3/P):5},e.unstable_getCurrentPriorityLevel=function(){return m},e.unstable_getFirstCallbackNode=function(){return n(a)},e.unstable_next=function(P){switch(m){case 1:case 2:case 3:var L=3;break;default:L=m}var R=m;m=L;try{return P()}finally{m=R}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(P,L){switch(P){case 1:case 2:case 3:case 4:case 5:break;default:P=3}var R=m;m=P;try{return L()}finally{m=R}},e.unstable_scheduleCallback=function(P,L,R){var H=e.unstable_now();switch(typeof R=="object"&&R!==null?(R=R.delay,R=typeof R=="number"&&0<R?H+R:H):R=H,P){case 1:var Z=-1;break;case 2:Z=250;break;case 5:Z=1073741823;break;case 4:Z=1e4;break;default:Z=5e3}return Z=R+Z,P={id:h++,callback:L,priorityLevel:P,startTime:R,expirationTime:Z,sortIndex:-1},R>H?(P.sortIndex=R,t(s,P),n(a)===null&&P===n(s)&&(w?(f(z),z=-1):w=!0,Nl(v,R-H))):(P.sortIndex=Z,t(a,P),g||y||(g=!0,_l(k))),P},e.unstable_shouldYield=Ne,e.unstable_wrapCallback=function(P){var L=m;return function(){var R=m;m=L;try{return P.apply(this,arguments)}finally{m=R}}}})(za);Na.exports=za;var nf=Na.exports;/**
18
- * @license React
19
- * react-dom.production.min.js
20
- *
21
- * Copyright (c) Facebook, Inc. and its affiliates.
22
- *
23
- * This source code is licensed under the MIT license found in the
24
- * LICENSE file in the root directory of this source tree.
25
- */var rf=E,ge=nf;function S(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var La=new Set,jn={};function It(e,t){tn(e,t),tn(e+"Capture",t)}function tn(e,t){for(jn[e]=t,e=0;e<t.length;e++)La.add(t[e])}var Qe=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),nu=Object.prototype.hasOwnProperty,lf=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,no={},ro={};function uf(e){return nu.call(ro,e)?!0:nu.call(no,e)?!1:lf.test(e)?ro[e]=!0:(no[e]=!0,!1)}function of(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function af(e,t,n,r){if(t===null||typeof t>"u"||of(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function se(e,t,n,r,l,u,i){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=u,this.removeEmptyString=i}var te={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){te[e]=new se(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];te[t]=new se(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){te[e]=new se(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){te[e]=new se(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){te[e]=new se(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){te[e]=new se(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){te[e]=new se(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){te[e]=new se(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){te[e]=new se(e,5,!1,e.toLowerCase(),null,!1,!1)});var ni=/[\-:]([a-z])/g;function ri(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(ni,ri);te[t]=new se(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(ni,ri);te[t]=new se(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(ni,ri);te[t]=new se(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){te[e]=new se(e,1,!1,e.toLowerCase(),null,!1,!1)});te.xlinkHref=new se("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){te[e]=new se(e,1,!1,e.toLowerCase(),null,!0,!0)});function li(e,t,n,r){var l=te.hasOwnProperty(t)?te[t]:null;(l!==null?l.type!==0:r||!(2<t.length)||t[0]!=="o"&&t[0]!=="O"||t[1]!=="n"&&t[1]!=="N")&&(af(t,n,l,r)&&(n=null),r||l===null?uf(t)&&(n===null?e.removeAttribute(t):e.setAttribute(t,""+n)):l.mustUseProperty?e[l.propertyName]=n===null?l.type===3?!1:"":n:(t=l.attributeName,r=l.attributeNamespace,n===null?e.removeAttribute(t):(l=l.type,n=l===3||l===4&&n===!0?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}var Ge=rf.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,fr=Symbol.for("react.element"),Ut=Symbol.for("react.portal"),jt=Symbol.for("react.fragment"),ui=Symbol.for("react.strict_mode"),ru=Symbol.for("react.profiler"),Ra=Symbol.for("react.provider"),Ta=Symbol.for("react.context"),ii=Symbol.for("react.forward_ref"),lu=Symbol.for("react.suspense"),uu=Symbol.for("react.suspense_list"),oi=Symbol.for("react.memo"),qe=Symbol.for("react.lazy"),Oa=Symbol.for("react.offscreen"),lo=Symbol.iterator;function yn(e){return e===null||typeof e!="object"?null:(e=lo&&e[lo]||e["@@iterator"],typeof e=="function"?e:null)}var A=Object.assign,Rl;function Pn(e){if(Rl===void 0)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);Rl=t&&t[1]||""}return`
26
- `+Rl+e}var Tl=!1;function Ol(e,t){if(!e||Tl)return"";Tl=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(t,[])}catch(s){var r=s}Reflect.construct(e,[],t)}else{try{t.call()}catch(s){r=s}e.call(t.prototype)}else{try{throw Error()}catch(s){r=s}e()}}catch(s){if(s&&r&&typeof s.stack=="string"){for(var l=s.stack.split(`
27
- `),u=r.stack.split(`
28
- `),i=l.length-1,o=u.length-1;1<=i&&0<=o&&l[i]!==u[o];)o--;for(;1<=i&&0<=o;i--,o--)if(l[i]!==u[o]){if(i!==1||o!==1)do if(i--,o--,0>o||l[i]!==u[o]){var a=`
29
- `+l[i].replace(" at new "," at ");return e.displayName&&a.includes("<anonymous>")&&(a=a.replace("<anonymous>",e.displayName)),a}while(1<=i&&0<=o);break}}}finally{Tl=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Pn(e):""}function sf(e){switch(e.tag){case 5:return Pn(e.type);case 16:return Pn("Lazy");case 13:return Pn("Suspense");case 19:return Pn("SuspenseList");case 0:case 2:case 15:return e=Ol(e.type,!1),e;case 11:return e=Ol(e.type.render,!1),e;case 1:return e=Ol(e.type,!0),e;default:return""}}function iu(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case jt:return"Fragment";case Ut:return"Portal";case ru:return"Profiler";case ui:return"StrictMode";case lu:return"Suspense";case uu:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case Ta:return(e.displayName||"Context")+".Consumer";case Ra:return(e._context.displayName||"Context")+".Provider";case ii:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case oi:return t=e.displayName||null,t!==null?t:iu(e.type)||"Memo";case qe:t=e._payload,e=e._init;try{return iu(e(t))}catch{}}return null}function cf(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return iu(t);case 8:return t===ui?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function ht(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Ma(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function ff(e){var t=Ma(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var l=n.get,u=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return l.call(this)},set:function(i){r=""+i,u.call(this,i)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(i){r=""+i},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function dr(e){e._valueTracker||(e._valueTracker=ff(e))}function Ia(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Ma(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function $r(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function ou(e,t){var n=t.checked;return A({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function uo(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=ht(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function Fa(e,t){t=t.checked,t!=null&&li(e,"checked",t,!1)}function au(e,t){Fa(e,t);var n=ht(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?su(e,t.type,n):t.hasOwnProperty("defaultValue")&&su(e,t.type,ht(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function io(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function su(e,t,n){(t!=="number"||$r(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var _n=Array.isArray;function Gt(e,t,n,r){if(e=e.options,t){t={};for(var l=0;l<n.length;l++)t["$"+n[l]]=!0;for(n=0;n<e.length;n++)l=t.hasOwnProperty("$"+e[n].value),e[n].selected!==l&&(e[n].selected=l),l&&r&&(e[n].defaultSelected=!0)}else{for(n=""+ht(n),t=null,l=0;l<e.length;l++){if(e[l].value===n){e[l].selected=!0,r&&(e[l].defaultSelected=!0);return}t!==null||e[l].disabled||(t=e[l])}t!==null&&(t.selected=!0)}}function cu(e,t){if(t.dangerouslySetInnerHTML!=null)throw Error(S(91));return A({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function oo(e,t){var n=t.value;if(n==null){if(n=t.children,t=t.defaultValue,n!=null){if(t!=null)throw Error(S(92));if(_n(n)){if(1<n.length)throw Error(S(93));n=n[0]}t=n}t==null&&(t=""),n=t}e._wrapperState={initialValue:ht(n)}}function Da(e,t){var n=ht(t.value),r=ht(t.defaultValue);n!=null&&(n=""+n,n!==e.value&&(e.value=n),t.defaultValue==null&&e.defaultValue!==n&&(e.defaultValue=n)),r!=null&&(e.defaultValue=""+r)}function ao(e){var t=e.textContent;t===e._wrapperState.initialValue&&t!==""&&t!==null&&(e.value=t)}function Ua(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function fu(e,t){return e==null||e==="http://www.w3.org/1999/xhtml"?Ua(t):e==="http://www.w3.org/2000/svg"&&t==="foreignObject"?"http://www.w3.org/1999/xhtml":e}var pr,ja=function(e){return typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(t,n,r,l){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,l)})}:e}(function(e,t){if(e.namespaceURI!=="http://www.w3.org/2000/svg"||"innerHTML"in e)e.innerHTML=t;else{for(pr=pr||document.createElement("div"),pr.innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=pr.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function $n(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Ln={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},df=["Webkit","ms","Moz","O"];Object.keys(Ln).forEach(function(e){df.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Ln[t]=Ln[e]})});function $a(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||Ln.hasOwnProperty(e)&&Ln[e]?(""+t).trim():t+"px"}function Ba(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,l=$a(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,l):e[n]=l}}var pf=A({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function du(e,t){if(t){if(pf[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(S(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(S(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(S(61))}if(t.style!=null&&typeof t.style!="object")throw Error(S(62))}}function pu(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var hu=null;function ai(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var mu=null,Zt=null,Jt=null;function so(e){if(e=ir(e)){if(typeof mu!="function")throw Error(S(280));var t=e.stateNode;t&&(t=hl(t),mu(e.stateNode,e.type,t))}}function Aa(e){Zt?Jt?Jt.push(e):Jt=[e]:Zt=e}function Va(){if(Zt){var e=Zt,t=Jt;if(Jt=Zt=null,so(e),t)for(e=0;e<t.length;e++)so(t[e])}}function Wa(e,t){return e(t)}function Ha(){}var Ml=!1;function Qa(e,t,n){if(Ml)return e(t,n);Ml=!0;try{return Wa(e,t,n)}finally{Ml=!1,(Zt!==null||Jt!==null)&&(Ha(),Va())}}function Bn(e,t){var n=e.stateNode;if(n===null)return null;var r=hl(n);if(r===null)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(e=e.type,r=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!r;break e;default:e=!1}if(e)return null;if(n&&typeof n!="function")throw Error(S(231,t,typeof n));return n}var vu=!1;if(Qe)try{var gn={};Object.defineProperty(gn,"passive",{get:function(){vu=!0}}),window.addEventListener("test",gn,gn),window.removeEventListener("test",gn,gn)}catch{vu=!1}function hf(e,t,n,r,l,u,i,o,a){var s=Array.prototype.slice.call(arguments,3);try{t.apply(n,s)}catch(h){this.onError(h)}}var Rn=!1,Br=null,Ar=!1,yu=null,mf={onError:function(e){Rn=!0,Br=e}};function vf(e,t,n,r,l,u,i,o,a){Rn=!1,Br=null,hf.apply(mf,arguments)}function yf(e,t,n,r,l,u,i,o,a){if(vf.apply(this,arguments),Rn){if(Rn){var s=Br;Rn=!1,Br=null}else throw Error(S(198));Ar||(Ar=!0,yu=s)}}function Ft(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,t.flags&4098&&(n=t.return),e=t.return;while(e)}return t.tag===3?n:null}function Ka(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function co(e){if(Ft(e)!==e)throw Error(S(188))}function gf(e){var t=e.alternate;if(!t){if(t=Ft(e),t===null)throw Error(S(188));return t!==e?null:e}for(var n=e,r=t;;){var l=n.return;if(l===null)break;var u=l.alternate;if(u===null){if(r=l.return,r!==null){n=r;continue}break}if(l.child===u.child){for(u=l.child;u;){if(u===n)return co(l),e;if(u===r)return co(l),t;u=u.sibling}throw Error(S(188))}if(n.return!==r.return)n=l,r=u;else{for(var i=!1,o=l.child;o;){if(o===n){i=!0,n=l,r=u;break}if(o===r){i=!0,r=l,n=u;break}o=o.sibling}if(!i){for(o=u.child;o;){if(o===n){i=!0,n=u,r=l;break}if(o===r){i=!0,r=u,n=l;break}o=o.sibling}if(!i)throw Error(S(189))}}if(n.alternate!==r)throw Error(S(190))}if(n.tag!==3)throw Error(S(188));return n.stateNode.current===n?e:t}function Ya(e){return e=gf(e),e!==null?Xa(e):null}function Xa(e){if(e.tag===5||e.tag===6)return e;for(e=e.child;e!==null;){var t=Xa(e);if(t!==null)return t;e=e.sibling}return null}var Ga=ge.unstable_scheduleCallback,fo=ge.unstable_cancelCallback,wf=ge.unstable_shouldYield,Sf=ge.unstable_requestPaint,Q=ge.unstable_now,kf=ge.unstable_getCurrentPriorityLevel,si=ge.unstable_ImmediatePriority,Za=ge.unstable_UserBlockingPriority,Vr=ge.unstable_NormalPriority,Ef=ge.unstable_LowPriority,Ja=ge.unstable_IdlePriority,cl=null,je=null;function Cf(e){if(je&&typeof je.onCommitFiberRoot=="function")try{je.onCommitFiberRoot(cl,e,void 0,(e.current.flags&128)===128)}catch{}}var Oe=Math.clz32?Math.clz32:_f,xf=Math.log,Pf=Math.LN2;function _f(e){return e>>>=0,e===0?32:31-(xf(e)/Pf|0)|0}var hr=64,mr=4194304;function Nn(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Wr(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,l=e.suspendedLanes,u=e.pingedLanes,i=n&268435455;if(i!==0){var o=i&~l;o!==0?r=Nn(o):(u&=i,u!==0&&(r=Nn(u)))}else i=n&~l,i!==0?r=Nn(i):u!==0&&(r=Nn(u));if(r===0)return 0;if(t!==0&&t!==r&&!(t&l)&&(l=r&-r,u=t&-t,l>=u||l===16&&(u&4194240)!==0))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0<t;)n=31-Oe(t),l=1<<n,r|=e[n],t&=~l;return r}function Nf(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function zf(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,l=e.expirationTimes,u=e.pendingLanes;0<u;){var i=31-Oe(u),o=1<<i,a=l[i];a===-1?(!(o&n)||o&r)&&(l[i]=Nf(o,t)):a<=t&&(e.expiredLanes|=o),u&=~o}}function gu(e){return e=e.pendingLanes&-1073741825,e!==0?e:e&1073741824?1073741824:0}function qa(){var e=hr;return hr<<=1,!(hr&4194240)&&(hr=64),e}function Il(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function lr(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-Oe(t),e[t]=n}function Lf(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0<n;){var l=31-Oe(n),u=1<<l;t[l]=0,r[l]=-1,e[l]=-1,n&=~u}}function ci(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-Oe(n),l=1<<r;l&t|e[r]&t&&(e[r]|=t),n&=~l}}var I=0;function ba(e){return e&=-e,1<e?4<e?e&268435455?16:536870912:4:1}var es,fi,ts,ns,rs,wu=!1,vr=[],ut=null,it=null,ot=null,An=new Map,Vn=new Map,et=[],Rf="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function po(e,t){switch(e){case"focusin":case"focusout":ut=null;break;case"dragenter":case"dragleave":it=null;break;case"mouseover":case"mouseout":ot=null;break;case"pointerover":case"pointerout":An.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Vn.delete(t.pointerId)}}function wn(e,t,n,r,l,u){return e===null||e.nativeEvent!==u?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:u,targetContainers:[l]},t!==null&&(t=ir(t),t!==null&&fi(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,l!==null&&t.indexOf(l)===-1&&t.push(l),e)}function Tf(e,t,n,r,l){switch(t){case"focusin":return ut=wn(ut,e,t,n,r,l),!0;case"dragenter":return it=wn(it,e,t,n,r,l),!0;case"mouseover":return ot=wn(ot,e,t,n,r,l),!0;case"pointerover":var u=l.pointerId;return An.set(u,wn(An.get(u)||null,e,t,n,r,l)),!0;case"gotpointercapture":return u=l.pointerId,Vn.set(u,wn(Vn.get(u)||null,e,t,n,r,l)),!0}return!1}function ls(e){var t=xt(e.target);if(t!==null){var n=Ft(t);if(n!==null){if(t=n.tag,t===13){if(t=Ka(n),t!==null){e.blockedOn=t,rs(e.priority,function(){ts(n)});return}}else if(t===3&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=n.tag===3?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Lr(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=Su(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(n===null){n=e.nativeEvent;var r=new n.constructor(n.type,n);hu=r,n.target.dispatchEvent(r),hu=null}else return t=ir(n),t!==null&&fi(t),e.blockedOn=n,!1;t.shift()}return!0}function ho(e,t,n){Lr(e)&&n.delete(t)}function Of(){wu=!1,ut!==null&&Lr(ut)&&(ut=null),it!==null&&Lr(it)&&(it=null),ot!==null&&Lr(ot)&&(ot=null),An.forEach(ho),Vn.forEach(ho)}function Sn(e,t){e.blockedOn===t&&(e.blockedOn=null,wu||(wu=!0,ge.unstable_scheduleCallback(ge.unstable_NormalPriority,Of)))}function Wn(e){function t(l){return Sn(l,e)}if(0<vr.length){Sn(vr[0],e);for(var n=1;n<vr.length;n++){var r=vr[n];r.blockedOn===e&&(r.blockedOn=null)}}for(ut!==null&&Sn(ut,e),it!==null&&Sn(it,e),ot!==null&&Sn(ot,e),An.forEach(t),Vn.forEach(t),n=0;n<et.length;n++)r=et[n],r.blockedOn===e&&(r.blockedOn=null);for(;0<et.length&&(n=et[0],n.blockedOn===null);)ls(n),n.blockedOn===null&&et.shift()}var qt=Ge.ReactCurrentBatchConfig,Hr=!0;function Mf(e,t,n,r){var l=I,u=qt.transition;qt.transition=null;try{I=1,di(e,t,n,r)}finally{I=l,qt.transition=u}}function If(e,t,n,r){var l=I,u=qt.transition;qt.transition=null;try{I=4,di(e,t,n,r)}finally{I=l,qt.transition=u}}function di(e,t,n,r){if(Hr){var l=Su(e,t,n,r);if(l===null)Hl(e,t,r,Qr,n),po(e,r);else if(Tf(l,e,t,n,r))r.stopPropagation();else if(po(e,r),t&4&&-1<Rf.indexOf(e)){for(;l!==null;){var u=ir(l);if(u!==null&&es(u),u=Su(e,t,n,r),u===null&&Hl(e,t,r,Qr,n),u===l)break;l=u}l!==null&&r.stopPropagation()}else Hl(e,t,r,null,n)}}var Qr=null;function Su(e,t,n,r){if(Qr=null,e=ai(r),e=xt(e),e!==null)if(t=Ft(e),t===null)e=null;else if(n=t.tag,n===13){if(e=Ka(t),e!==null)return e;e=null}else if(n===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return Qr=e,null}function us(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(kf()){case si:return 1;case Za:return 4;case Vr:case Ef:return 16;case Ja:return 536870912;default:return 16}default:return 16}}var nt=null,pi=null,Rr=null;function is(){if(Rr)return Rr;var e,t=pi,n=t.length,r,l="value"in nt?nt.value:nt.textContent,u=l.length;for(e=0;e<n&&t[e]===l[e];e++);var i=n-e;for(r=1;r<=i&&t[n-r]===l[u-r];r++);return Rr=l.slice(e,1<r?1-r:void 0)}function Tr(e){var t=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&t===13&&(e=13)):e=t,e===10&&(e=13),32<=e||e===13?e:0}function yr(){return!0}function mo(){return!1}function Se(e){function t(n,r,l,u,i){this._reactName=n,this._targetInst=l,this.type=r,this.nativeEvent=u,this.target=i,this.currentTarget=null;for(var o in e)e.hasOwnProperty(o)&&(n=e[o],this[o]=n?n(u):u[o]);return this.isDefaultPrevented=(u.defaultPrevented!=null?u.defaultPrevented:u.returnValue===!1)?yr:mo,this.isPropagationStopped=mo,this}return A(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var n=this.nativeEvent;n&&(n.preventDefault?n.preventDefault():typeof n.returnValue!="unknown"&&(n.returnValue=!1),this.isDefaultPrevented=yr)},stopPropagation:function(){var n=this.nativeEvent;n&&(n.stopPropagation?n.stopPropagation():typeof n.cancelBubble!="unknown"&&(n.cancelBubble=!0),this.isPropagationStopped=yr)},persist:function(){},isPersistent:yr}),t}var cn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},hi=Se(cn),ur=A({},cn,{view:0,detail:0}),Ff=Se(ur),Fl,Dl,kn,fl=A({},ur,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:mi,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==kn&&(kn&&e.type==="mousemove"?(Fl=e.screenX-kn.screenX,Dl=e.screenY-kn.screenY):Dl=Fl=0,kn=e),Fl)},movementY:function(e){return"movementY"in e?e.movementY:Dl}}),vo=Se(fl),Df=A({},fl,{dataTransfer:0}),Uf=Se(Df),jf=A({},ur,{relatedTarget:0}),Ul=Se(jf),$f=A({},cn,{animationName:0,elapsedTime:0,pseudoElement:0}),Bf=Se($f),Af=A({},cn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Vf=Se(Af),Wf=A({},cn,{data:0}),yo=Se(Wf),Hf={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Qf={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Kf={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Yf(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=Kf[e])?!!t[e]:!1}function mi(){return Yf}var Xf=A({},ur,{key:function(e){if(e.key){var t=Hf[e.key]||e.key;if(t!=="Unidentified")return t}return e.type==="keypress"?(e=Tr(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?Qf[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:mi,charCode:function(e){return e.type==="keypress"?Tr(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Tr(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),Gf=Se(Xf),Zf=A({},fl,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),go=Se(Zf),Jf=A({},ur,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:mi}),qf=Se(Jf),bf=A({},cn,{propertyName:0,elapsedTime:0,pseudoElement:0}),ed=Se(bf),td=A({},fl,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),nd=Se(td),rd=[9,13,27,32],vi=Qe&&"CompositionEvent"in window,Tn=null;Qe&&"documentMode"in document&&(Tn=document.documentMode);var ld=Qe&&"TextEvent"in window&&!Tn,os=Qe&&(!vi||Tn&&8<Tn&&11>=Tn),wo=" ",So=!1;function as(e,t){switch(e){case"keyup":return rd.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function ss(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var $t=!1;function ud(e,t){switch(e){case"compositionend":return ss(t);case"keypress":return t.which!==32?null:(So=!0,wo);case"textInput":return e=t.data,e===wo&&So?null:e;default:return null}}function id(e,t){if($t)return e==="compositionend"||!vi&&as(e,t)?(e=is(),Rr=pi=nt=null,$t=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return os&&t.locale!=="ko"?null:t.data;default:return null}}var od={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function ko(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t==="input"?!!od[e.type]:t==="textarea"}function cs(e,t,n,r){Aa(r),t=Kr(t,"onChange"),0<t.length&&(n=new hi("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var On=null,Hn=null;function ad(e){ks(e,0)}function dl(e){var t=Vt(e);if(Ia(t))return e}function sd(e,t){if(e==="change")return t}var fs=!1;if(Qe){var jl;if(Qe){var $l="oninput"in document;if(!$l){var Eo=document.createElement("div");Eo.setAttribute("oninput","return;"),$l=typeof Eo.oninput=="function"}jl=$l}else jl=!1;fs=jl&&(!document.documentMode||9<document.documentMode)}function Co(){On&&(On.detachEvent("onpropertychange",ds),Hn=On=null)}function ds(e){if(e.propertyName==="value"&&dl(Hn)){var t=[];cs(t,Hn,e,ai(e)),Qa(ad,t)}}function cd(e,t,n){e==="focusin"?(Co(),On=t,Hn=n,On.attachEvent("onpropertychange",ds)):e==="focusout"&&Co()}function fd(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return dl(Hn)}function dd(e,t){if(e==="click")return dl(t)}function pd(e,t){if(e==="input"||e==="change")return dl(t)}function hd(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var Ie=typeof Object.is=="function"?Object.is:hd;function Qn(e,t){if(Ie(e,t))return!0;if(typeof e!="object"||e===null||typeof t!="object"||t===null)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var l=n[r];if(!nu.call(t,l)||!Ie(e[l],t[l]))return!1}return!0}function xo(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Po(e,t){var n=xo(e);e=0;for(var r;n;){if(n.nodeType===3){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=xo(n)}}function ps(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?ps(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function hs(){for(var e=window,t=$r();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=$r(e.document)}return t}function yi(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function md(e){var t=hs(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&ps(n.ownerDocument.documentElement,n)){if(r!==null&&yi(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var l=n.textContent.length,u=Math.min(r.start,l);r=r.end===void 0?u:Math.min(r.end,l),!e.extend&&u>r&&(l=r,r=u,u=l),l=Po(n,u);var i=Po(n,r);l&&i&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==i.node||e.focusOffset!==i.offset)&&(t=t.createRange(),t.setStart(l.node,l.offset),e.removeAllRanges(),u>r?(e.addRange(t),e.extend(i.node,i.offset)):(t.setEnd(i.node,i.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n<t.length;n++)e=t[n],e.element.scrollLeft=e.left,e.element.scrollTop=e.top}}var vd=Qe&&"documentMode"in document&&11>=document.documentMode,Bt=null,ku=null,Mn=null,Eu=!1;function _o(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Eu||Bt==null||Bt!==$r(r)||(r=Bt,"selectionStart"in r&&yi(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Mn&&Qn(Mn,r)||(Mn=r,r=Kr(ku,"onSelect"),0<r.length&&(t=new hi("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=Bt)))}function gr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var At={animationend:gr("Animation","AnimationEnd"),animationiteration:gr("Animation","AnimationIteration"),animationstart:gr("Animation","AnimationStart"),transitionend:gr("Transition","TransitionEnd")},Bl={},ms={};Qe&&(ms=document.createElement("div").style,"AnimationEvent"in window||(delete At.animationend.animation,delete At.animationiteration.animation,delete At.animationstart.animation),"TransitionEvent"in window||delete At.transitionend.transition);function pl(e){if(Bl[e])return Bl[e];if(!At[e])return e;var t=At[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in ms)return Bl[e]=t[n];return e}var vs=pl("animationend"),ys=pl("animationiteration"),gs=pl("animationstart"),ws=pl("transitionend"),Ss=new Map,No="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function vt(e,t){Ss.set(e,t),It(t,[e])}for(var Al=0;Al<No.length;Al++){var Vl=No[Al],yd=Vl.toLowerCase(),gd=Vl[0].toUpperCase()+Vl.slice(1);vt(yd,"on"+gd)}vt(vs,"onAnimationEnd");vt(ys,"onAnimationIteration");vt(gs,"onAnimationStart");vt("dblclick","onDoubleClick");vt("focusin","onFocus");vt("focusout","onBlur");vt(ws,"onTransitionEnd");tn("onMouseEnter",["mouseout","mouseover"]);tn("onMouseLeave",["mouseout","mouseover"]);tn("onPointerEnter",["pointerout","pointerover"]);tn("onPointerLeave",["pointerout","pointerover"]);It("onChange","change click focusin focusout input keydown keyup selectionchange".split(" "));It("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" "));It("onBeforeInput",["compositionend","keypress","textInput","paste"]);It("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" "));It("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" "));It("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var zn="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),wd=new Set("cancel close invalid load scroll toggle".split(" ").concat(zn));function zo(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,yf(r,t,void 0,e),e.currentTarget=null}function ks(e,t){t=(t&4)!==0;for(var n=0;n<e.length;n++){var r=e[n],l=r.event;r=r.listeners;e:{var u=void 0;if(t)for(var i=r.length-1;0<=i;i--){var o=r[i],a=o.instance,s=o.currentTarget;if(o=o.listener,a!==u&&l.isPropagationStopped())break e;zo(l,o,s),u=a}else for(i=0;i<r.length;i++){if(o=r[i],a=o.instance,s=o.currentTarget,o=o.listener,a!==u&&l.isPropagationStopped())break e;zo(l,o,s),u=a}}}if(Ar)throw e=yu,Ar=!1,yu=null,e}function D(e,t){var n=t[Nu];n===void 0&&(n=t[Nu]=new Set);var r=e+"__bubble";n.has(r)||(Es(t,e,2,!1),n.add(r))}function Wl(e,t,n){var r=0;t&&(r|=4),Es(n,e,r,t)}var wr="_reactListening"+Math.random().toString(36).slice(2);function Kn(e){if(!e[wr]){e[wr]=!0,La.forEach(function(n){n!=="selectionchange"&&(wd.has(n)||Wl(n,!1,e),Wl(n,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[wr]||(t[wr]=!0,Wl("selectionchange",!1,t))}}function Es(e,t,n,r){switch(us(t)){case 1:var l=Mf;break;case 4:l=If;break;default:l=di}n=l.bind(null,t,n,e),l=void 0,!vu||t!=="touchstart"&&t!=="touchmove"&&t!=="wheel"||(l=!0),r?l!==void 0?e.addEventListener(t,n,{capture:!0,passive:l}):e.addEventListener(t,n,!0):l!==void 0?e.addEventListener(t,n,{passive:l}):e.addEventListener(t,n,!1)}function Hl(e,t,n,r,l){var u=r;if(!(t&1)&&!(t&2)&&r!==null)e:for(;;){if(r===null)return;var i=r.tag;if(i===3||i===4){var o=r.stateNode.containerInfo;if(o===l||o.nodeType===8&&o.parentNode===l)break;if(i===4)for(i=r.return;i!==null;){var a=i.tag;if((a===3||a===4)&&(a=i.stateNode.containerInfo,a===l||a.nodeType===8&&a.parentNode===l))return;i=i.return}for(;o!==null;){if(i=xt(o),i===null)return;if(a=i.tag,a===5||a===6){r=u=i;continue e}o=o.parentNode}}r=r.return}Qa(function(){var s=u,h=ai(n),p=[];e:{var m=Ss.get(e);if(m!==void 0){var y=hi,g=e;switch(e){case"keypress":if(Tr(n)===0)break e;case"keydown":case"keyup":y=Gf;break;case"focusin":g="focus",y=Ul;break;case"focusout":g="blur",y=Ul;break;case"beforeblur":case"afterblur":y=Ul;break;case"click":if(n.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":y=vo;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":y=Uf;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":y=qf;break;case vs:case ys:case gs:y=Bf;break;case ws:y=ed;break;case"scroll":y=Ff;break;case"wheel":y=nd;break;case"copy":case"cut":case"paste":y=Vf;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":y=go}var w=(t&4)!==0,C=!w&&e==="scroll",f=w?m!==null?m+"Capture":null:m;w=[];for(var c=s,d;c!==null;){d=c;var v=d.stateNode;if(d.tag===5&&v!==null&&(d=v,f!==null&&(v=Bn(c,f),v!=null&&w.push(Yn(c,v,d)))),C)break;c=c.return}0<w.length&&(m=new y(m,g,null,n,h),p.push({event:m,listeners:w}))}}if(!(t&7)){e:{if(m=e==="mouseover"||e==="pointerover",y=e==="mouseout"||e==="pointerout",m&&n!==hu&&(g=n.relatedTarget||n.fromElement)&&(xt(g)||g[Ke]))break e;if((y||m)&&(m=h.window===h?h:(m=h.ownerDocument)?m.defaultView||m.parentWindow:window,y?(g=n.relatedTarget||n.toElement,y=s,g=g?xt(g):null,g!==null&&(C=Ft(g),g!==C||g.tag!==5&&g.tag!==6)&&(g=null)):(y=null,g=s),y!==g)){if(w=vo,v="onMouseLeave",f="onMouseEnter",c="mouse",(e==="pointerout"||e==="pointerover")&&(w=go,v="onPointerLeave",f="onPointerEnter",c="pointer"),C=y==null?m:Vt(y),d=g==null?m:Vt(g),m=new w(v,c+"leave",y,n,h),m.target=C,m.relatedTarget=d,v=null,xt(h)===s&&(w=new w(f,c+"enter",g,n,h),w.target=d,w.relatedTarget=C,v=w),C=v,y&&g)t:{for(w=y,f=g,c=0,d=w;d;d=Dt(d))c++;for(d=0,v=f;v;v=Dt(v))d++;for(;0<c-d;)w=Dt(w),c--;for(;0<d-c;)f=Dt(f),d--;for(;c--;){if(w===f||f!==null&&w===f.alternate)break t;w=Dt(w),f=Dt(f)}w=null}else w=null;y!==null&&Lo(p,m,y,w,!1),g!==null&&C!==null&&Lo(p,C,g,w,!0)}}e:{if(m=s?Vt(s):window,y=m.nodeName&&m.nodeName.toLowerCase(),y==="select"||y==="input"&&m.type==="file")var k=sd;else if(ko(m))if(fs)k=pd;else{k=fd;var _=cd}else(y=m.nodeName)&&y.toLowerCase()==="input"&&(m.type==="checkbox"||m.type==="radio")&&(k=dd);if(k&&(k=k(e,s))){cs(p,k,n,h);break e}_&&_(e,m,s),e==="focusout"&&(_=m._wrapperState)&&_.controlled&&m.type==="number"&&su(m,"number",m.value)}switch(_=s?Vt(s):window,e){case"focusin":(ko(_)||_.contentEditable==="true")&&(Bt=_,ku=s,Mn=null);break;case"focusout":Mn=ku=Bt=null;break;case"mousedown":Eu=!0;break;case"contextmenu":case"mouseup":case"dragend":Eu=!1,_o(p,n,h);break;case"selectionchange":if(vd)break;case"keydown":case"keyup":_o(p,n,h)}var N;if(vi)e:{switch(e){case"compositionstart":var z="onCompositionStart";break e;case"compositionend":z="onCompositionEnd";break e;case"compositionupdate":z="onCompositionUpdate";break e}z=void 0}else $t?as(e,n)&&(z="onCompositionEnd"):e==="keydown"&&n.keyCode===229&&(z="onCompositionStart");z&&(os&&n.locale!=="ko"&&($t||z!=="onCompositionStart"?z==="onCompositionEnd"&&$t&&(N=is()):(nt=h,pi="value"in nt?nt.value:nt.textContent,$t=!0)),_=Kr(s,z),0<_.length&&(z=new yo(z,e,null,n,h),p.push({event:z,listeners:_}),N?z.data=N:(N=ss(n),N!==null&&(z.data=N)))),(N=ld?ud(e,n):id(e,n))&&(s=Kr(s,"onBeforeInput"),0<s.length&&(h=new yo("onBeforeInput","beforeinput",null,n,h),p.push({event:h,listeners:s}),h.data=N))}ks(p,t)})}function Yn(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Kr(e,t){for(var n=t+"Capture",r=[];e!==null;){var l=e,u=l.stateNode;l.tag===5&&u!==null&&(l=u,u=Bn(e,n),u!=null&&r.unshift(Yn(e,u,l)),u=Bn(e,t),u!=null&&r.push(Yn(e,u,l))),e=e.return}return r}function Dt(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5);return e||null}function Lo(e,t,n,r,l){for(var u=t._reactName,i=[];n!==null&&n!==r;){var o=n,a=o.alternate,s=o.stateNode;if(a!==null&&a===r)break;o.tag===5&&s!==null&&(o=s,l?(a=Bn(n,u),a!=null&&i.unshift(Yn(n,a,o))):l||(a=Bn(n,u),a!=null&&i.push(Yn(n,a,o)))),n=n.return}i.length!==0&&e.push({event:t,listeners:i})}var Sd=/\r\n?/g,kd=/\u0000|\uFFFD/g;function Ro(e){return(typeof e=="string"?e:""+e).replace(Sd,`
30
- `).replace(kd,"")}function Sr(e,t,n){if(t=Ro(t),Ro(e)!==t&&n)throw Error(S(425))}function Yr(){}var Cu=null,xu=null;function Pu(e,t){return e==="textarea"||e==="noscript"||typeof t.children=="string"||typeof t.children=="number"||typeof t.dangerouslySetInnerHTML=="object"&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var _u=typeof setTimeout=="function"?setTimeout:void 0,Ed=typeof clearTimeout=="function"?clearTimeout:void 0,To=typeof Promise=="function"?Promise:void 0,Cd=typeof queueMicrotask=="function"?queueMicrotask:typeof To<"u"?function(e){return To.resolve(null).then(e).catch(xd)}:_u;function xd(e){setTimeout(function(){throw e})}function Ql(e,t){var n=t,r=0;do{var l=n.nextSibling;if(e.removeChild(n),l&&l.nodeType===8)if(n=l.data,n==="/$"){if(r===0){e.removeChild(l),Wn(t);return}r--}else n!=="$"&&n!=="$?"&&n!=="$!"||r++;n=l}while(n);Wn(t)}function at(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===1||t===3)break;if(t===8){if(t=e.data,t==="$"||t==="$!"||t==="$?")break;if(t==="/$")return null}}return e}function Oo(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n==="$"||n==="$!"||n==="$?"){if(t===0)return e;t--}else n==="/$"&&t++}e=e.previousSibling}return null}var fn=Math.random().toString(36).slice(2),Ue="__reactFiber$"+fn,Xn="__reactProps$"+fn,Ke="__reactContainer$"+fn,Nu="__reactEvents$"+fn,Pd="__reactListeners$"+fn,_d="__reactHandles$"+fn;function xt(e){var t=e[Ue];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Ke]||n[Ue]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=Oo(e);e!==null;){if(n=e[Ue])return n;e=Oo(e)}return t}e=n,n=e.parentNode}return null}function ir(e){return e=e[Ue]||e[Ke],!e||e.tag!==5&&e.tag!==6&&e.tag!==13&&e.tag!==3?null:e}function Vt(e){if(e.tag===5||e.tag===6)return e.stateNode;throw Error(S(33))}function hl(e){return e[Xn]||null}var zu=[],Wt=-1;function yt(e){return{current:e}}function U(e){0>Wt||(e.current=zu[Wt],zu[Wt]=null,Wt--)}function F(e,t){Wt++,zu[Wt]=e.current,e.current=t}var mt={},ue=yt(mt),de=yt(!1),Lt=mt;function nn(e,t){var n=e.type.contextTypes;if(!n)return mt;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var l={},u;for(u in n)l[u]=t[u];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=l),l}function pe(e){return e=e.childContextTypes,e!=null}function Xr(){U(de),U(ue)}function Mo(e,t,n){if(ue.current!==mt)throw Error(S(168));F(ue,t),F(de,n)}function Cs(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var l in r)if(!(l in t))throw Error(S(108,cf(e)||"Unknown",l));return A({},n,r)}function Gr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||mt,Lt=ue.current,F(ue,e),F(de,de.current),!0}function Io(e,t,n){var r=e.stateNode;if(!r)throw Error(S(169));n?(e=Cs(e,t,Lt),r.__reactInternalMemoizedMergedChildContext=e,U(de),U(ue),F(ue,e)):U(de),F(de,n)}var Ae=null,ml=!1,Kl=!1;function xs(e){Ae===null?Ae=[e]:Ae.push(e)}function Nd(e){ml=!0,xs(e)}function gt(){if(!Kl&&Ae!==null){Kl=!0;var e=0,t=I;try{var n=Ae;for(I=1;e<n.length;e++){var r=n[e];do r=r(!0);while(r!==null)}Ae=null,ml=!1}catch(l){throw Ae!==null&&(Ae=Ae.slice(e+1)),Ga(si,gt),l}finally{I=t,Kl=!1}}return null}var Ht=[],Qt=0,Zr=null,Jr=0,ke=[],Ee=0,Rt=null,Ve=1,We="";function Et(e,t){Ht[Qt++]=Jr,Ht[Qt++]=Zr,Zr=e,Jr=t}function Ps(e,t,n){ke[Ee++]=Ve,ke[Ee++]=We,ke[Ee++]=Rt,Rt=e;var r=Ve;e=We;var l=32-Oe(r)-1;r&=~(1<<l),n+=1;var u=32-Oe(t)+l;if(30<u){var i=l-l%5;u=(r&(1<<i)-1).toString(32),r>>=i,l-=i,Ve=1<<32-Oe(t)+l|n<<l|r,We=u+e}else Ve=1<<u|n<<l|r,We=e}function gi(e){e.return!==null&&(Et(e,1),Ps(e,1,0))}function wi(e){for(;e===Zr;)Zr=Ht[--Qt],Ht[Qt]=null,Jr=Ht[--Qt],Ht[Qt]=null;for(;e===Rt;)Rt=ke[--Ee],ke[Ee]=null,We=ke[--Ee],ke[Ee]=null,Ve=ke[--Ee],ke[Ee]=null}var ye=null,ve=null,j=!1,Te=null;function _s(e,t){var n=Ce(5,null,null,0);n.elementType="DELETED",n.stateNode=t,n.return=e,t=e.deletions,t===null?(e.deletions=[n],e.flags|=16):t.push(n)}function Fo(e,t){switch(e.tag){case 5:var n=e.type;return t=t.nodeType!==1||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t,t!==null?(e.stateNode=t,ye=e,ve=at(t.firstChild),!0):!1;case 6:return t=e.pendingProps===""||t.nodeType!==3?null:t,t!==null?(e.stateNode=t,ye=e,ve=null,!0):!1;case 13:return t=t.nodeType!==8?null:t,t!==null?(n=Rt!==null?{id:Ve,overflow:We}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},n=Ce(18,null,null,0),n.stateNode=t,n.return=e,e.child=n,ye=e,ve=null,!0):!1;default:return!1}}function Lu(e){return(e.mode&1)!==0&&(e.flags&128)===0}function Ru(e){if(j){var t=ve;if(t){var n=t;if(!Fo(e,t)){if(Lu(e))throw Error(S(418));t=at(n.nextSibling);var r=ye;t&&Fo(e,t)?_s(r,n):(e.flags=e.flags&-4097|2,j=!1,ye=e)}}else{if(Lu(e))throw Error(S(418));e.flags=e.flags&-4097|2,j=!1,ye=e}}}function Do(e){for(e=e.return;e!==null&&e.tag!==5&&e.tag!==3&&e.tag!==13;)e=e.return;ye=e}function kr(e){if(e!==ye)return!1;if(!j)return Do(e),j=!0,!1;var t;if((t=e.tag!==3)&&!(t=e.tag!==5)&&(t=e.type,t=t!=="head"&&t!=="body"&&!Pu(e.type,e.memoizedProps)),t&&(t=ve)){if(Lu(e))throw Ns(),Error(S(418));for(;t;)_s(e,t),t=at(t.nextSibling)}if(Do(e),e.tag===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(S(317));e:{for(e=e.nextSibling,t=0;e;){if(e.nodeType===8){var n=e.data;if(n==="/$"){if(t===0){ve=at(e.nextSibling);break e}t--}else n!=="$"&&n!=="$!"&&n!=="$?"||t++}e=e.nextSibling}ve=null}}else ve=ye?at(e.stateNode.nextSibling):null;return!0}function Ns(){for(var e=ve;e;)e=at(e.nextSibling)}function rn(){ve=ye=null,j=!1}function Si(e){Te===null?Te=[e]:Te.push(e)}var zd=Ge.ReactCurrentBatchConfig;function En(e,t,n){if(e=n.ref,e!==null&&typeof e!="function"&&typeof e!="object"){if(n._owner){if(n=n._owner,n){if(n.tag!==1)throw Error(S(309));var r=n.stateNode}if(!r)throw Error(S(147,e));var l=r,u=""+e;return t!==null&&t.ref!==null&&typeof t.ref=="function"&&t.ref._stringRef===u?t.ref:(t=function(i){var o=l.refs;i===null?delete o[u]:o[u]=i},t._stringRef=u,t)}if(typeof e!="string")throw Error(S(284));if(!n._owner)throw Error(S(290,e))}return e}function Er(e,t){throw e=Object.prototype.toString.call(t),Error(S(31,e==="[object Object]"?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function Uo(e){var t=e._init;return t(e._payload)}function zs(e){function t(f,c){if(e){var d=f.deletions;d===null?(f.deletions=[c],f.flags|=16):d.push(c)}}function n(f,c){if(!e)return null;for(;c!==null;)t(f,c),c=c.sibling;return null}function r(f,c){for(f=new Map;c!==null;)c.key!==null?f.set(c.key,c):f.set(c.index,c),c=c.sibling;return f}function l(f,c){return f=dt(f,c),f.index=0,f.sibling=null,f}function u(f,c,d){return f.index=d,e?(d=f.alternate,d!==null?(d=d.index,d<c?(f.flags|=2,c):d):(f.flags|=2,c)):(f.flags|=1048576,c)}function i(f){return e&&f.alternate===null&&(f.flags|=2),f}function o(f,c,d,v){return c===null||c.tag!==6?(c=bl(d,f.mode,v),c.return=f,c):(c=l(c,d),c.return=f,c)}function a(f,c,d,v){var k=d.type;return k===jt?h(f,c,d.props.children,v,d.key):c!==null&&(c.elementType===k||typeof k=="object"&&k!==null&&k.$$typeof===qe&&Uo(k)===c.type)?(v=l(c,d.props),v.ref=En(f,c,d),v.return=f,v):(v=jr(d.type,d.key,d.props,null,f.mode,v),v.ref=En(f,c,d),v.return=f,v)}function s(f,c,d,v){return c===null||c.tag!==4||c.stateNode.containerInfo!==d.containerInfo||c.stateNode.implementation!==d.implementation?(c=eu(d,f.mode,v),c.return=f,c):(c=l(c,d.children||[]),c.return=f,c)}function h(f,c,d,v,k){return c===null||c.tag!==7?(c=zt(d,f.mode,v,k),c.return=f,c):(c=l(c,d),c.return=f,c)}function p(f,c,d){if(typeof c=="string"&&c!==""||typeof c=="number")return c=bl(""+c,f.mode,d),c.return=f,c;if(typeof c=="object"&&c!==null){switch(c.$$typeof){case fr:return d=jr(c.type,c.key,c.props,null,f.mode,d),d.ref=En(f,null,c),d.return=f,d;case Ut:return c=eu(c,f.mode,d),c.return=f,c;case qe:var v=c._init;return p(f,v(c._payload),d)}if(_n(c)||yn(c))return c=zt(c,f.mode,d,null),c.return=f,c;Er(f,c)}return null}function m(f,c,d,v){var k=c!==null?c.key:null;if(typeof d=="string"&&d!==""||typeof d=="number")return k!==null?null:o(f,c,""+d,v);if(typeof d=="object"&&d!==null){switch(d.$$typeof){case fr:return d.key===k?a(f,c,d,v):null;case Ut:return d.key===k?s(f,c,d,v):null;case qe:return k=d._init,m(f,c,k(d._payload),v)}if(_n(d)||yn(d))return k!==null?null:h(f,c,d,v,null);Er(f,d)}return null}function y(f,c,d,v,k){if(typeof v=="string"&&v!==""||typeof v=="number")return f=f.get(d)||null,o(c,f,""+v,k);if(typeof v=="object"&&v!==null){switch(v.$$typeof){case fr:return f=f.get(v.key===null?d:v.key)||null,a(c,f,v,k);case Ut:return f=f.get(v.key===null?d:v.key)||null,s(c,f,v,k);case qe:var _=v._init;return y(f,c,d,_(v._payload),k)}if(_n(v)||yn(v))return f=f.get(d)||null,h(c,f,v,k,null);Er(c,v)}return null}function g(f,c,d,v){for(var k=null,_=null,N=c,z=c=0,W=null;N!==null&&z<d.length;z++){N.index>z?(W=N,N=null):W=N.sibling;var O=m(f,N,d[z],v);if(O===null){N===null&&(N=W);break}e&&N&&O.alternate===null&&t(f,N),c=u(O,c,z),_===null?k=O:_.sibling=O,_=O,N=W}if(z===d.length)return n(f,N),j&&Et(f,z),k;if(N===null){for(;z<d.length;z++)N=p(f,d[z],v),N!==null&&(c=u(N,c,z),_===null?k=N:_.sibling=N,_=N);return j&&Et(f,z),k}for(N=r(f,N);z<d.length;z++)W=y(N,f,z,d[z],v),W!==null&&(e&&W.alternate!==null&&N.delete(W.key===null?z:W.key),c=u(W,c,z),_===null?k=W:_.sibling=W,_=W);return e&&N.forEach(function(Ne){return t(f,Ne)}),j&&Et(f,z),k}function w(f,c,d,v){var k=yn(d);if(typeof k!="function")throw Error(S(150));if(d=k.call(d),d==null)throw Error(S(151));for(var _=k=null,N=c,z=c=0,W=null,O=d.next();N!==null&&!O.done;z++,O=d.next()){N.index>z?(W=N,N=null):W=N.sibling;var Ne=m(f,N,O.value,v);if(Ne===null){N===null&&(N=W);break}e&&N&&Ne.alternate===null&&t(f,N),c=u(Ne,c,z),_===null?k=Ne:_.sibling=Ne,_=Ne,N=W}if(O.done)return n(f,N),j&&Et(f,z),k;if(N===null){for(;!O.done;z++,O=d.next())O=p(f,O.value,v),O!==null&&(c=u(O,c,z),_===null?k=O:_.sibling=O,_=O);return j&&Et(f,z),k}for(N=r(f,N);!O.done;z++,O=d.next())O=y(N,f,z,O.value,v),O!==null&&(e&&O.alternate!==null&&N.delete(O.key===null?z:O.key),c=u(O,c,z),_===null?k=O:_.sibling=O,_=O);return e&&N.forEach(function(mn){return t(f,mn)}),j&&Et(f,z),k}function C(f,c,d,v){if(typeof d=="object"&&d!==null&&d.type===jt&&d.key===null&&(d=d.props.children),typeof d=="object"&&d!==null){switch(d.$$typeof){case fr:e:{for(var k=d.key,_=c;_!==null;){if(_.key===k){if(k=d.type,k===jt){if(_.tag===7){n(f,_.sibling),c=l(_,d.props.children),c.return=f,f=c;break e}}else if(_.elementType===k||typeof k=="object"&&k!==null&&k.$$typeof===qe&&Uo(k)===_.type){n(f,_.sibling),c=l(_,d.props),c.ref=En(f,_,d),c.return=f,f=c;break e}n(f,_);break}else t(f,_);_=_.sibling}d.type===jt?(c=zt(d.props.children,f.mode,v,d.key),c.return=f,f=c):(v=jr(d.type,d.key,d.props,null,f.mode,v),v.ref=En(f,c,d),v.return=f,f=v)}return i(f);case Ut:e:{for(_=d.key;c!==null;){if(c.key===_)if(c.tag===4&&c.stateNode.containerInfo===d.containerInfo&&c.stateNode.implementation===d.implementation){n(f,c.sibling),c=l(c,d.children||[]),c.return=f,f=c;break e}else{n(f,c);break}else t(f,c);c=c.sibling}c=eu(d,f.mode,v),c.return=f,f=c}return i(f);case qe:return _=d._init,C(f,c,_(d._payload),v)}if(_n(d))return g(f,c,d,v);if(yn(d))return w(f,c,d,v);Er(f,d)}return typeof d=="string"&&d!==""||typeof d=="number"?(d=""+d,c!==null&&c.tag===6?(n(f,c.sibling),c=l(c,d),c.return=f,f=c):(n(f,c),c=bl(d,f.mode,v),c.return=f,f=c),i(f)):n(f,c)}return C}var ln=zs(!0),Ls=zs(!1),qr=yt(null),br=null,Kt=null,ki=null;function Ei(){ki=Kt=br=null}function Ci(e){var t=qr.current;U(qr),e._currentValue=t}function Tu(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,r!==null&&(r.childLanes|=t)):r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function bt(e,t){br=e,ki=Kt=null,e=e.dependencies,e!==null&&e.firstContext!==null&&(e.lanes&t&&(fe=!0),e.firstContext=null)}function Pe(e){var t=e._currentValue;if(ki!==e)if(e={context:e,memoizedValue:t,next:null},Kt===null){if(br===null)throw Error(S(308));Kt=e,br.dependencies={lanes:0,firstContext:e}}else Kt=Kt.next=e;return t}var Pt=null;function xi(e){Pt===null?Pt=[e]:Pt.push(e)}function Rs(e,t,n,r){var l=t.interleaved;return l===null?(n.next=n,xi(t)):(n.next=l.next,l.next=n),t.interleaved=n,Ye(e,r)}function Ye(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var be=!1;function Pi(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Ts(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function He(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function st(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,M&2){var l=r.pending;return l===null?t.next=t:(t.next=l.next,l.next=t),r.pending=t,Ye(e,n)}return l=r.interleaved,l===null?(t.next=t,xi(r)):(t.next=l.next,l.next=t),r.interleaved=t,Ye(e,n)}function Or(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194240)!==0)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,ci(e,n)}}function jo(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var l=null,u=null;if(n=n.firstBaseUpdate,n!==null){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};u===null?l=u=i:u=u.next=i,n=n.next}while(n!==null);u===null?l=u=t:u=u.next=t}else l=u=t;n={baseState:r.baseState,firstBaseUpdate:l,lastBaseUpdate:u,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function el(e,t,n,r){var l=e.updateQueue;be=!1;var u=l.firstBaseUpdate,i=l.lastBaseUpdate,o=l.shared.pending;if(o!==null){l.shared.pending=null;var a=o,s=a.next;a.next=null,i===null?u=s:i.next=s,i=a;var h=e.alternate;h!==null&&(h=h.updateQueue,o=h.lastBaseUpdate,o!==i&&(o===null?h.firstBaseUpdate=s:o.next=s,h.lastBaseUpdate=a))}if(u!==null){var p=l.baseState;i=0,h=s=a=null,o=u;do{var m=o.lane,y=o.eventTime;if((r&m)===m){h!==null&&(h=h.next={eventTime:y,lane:0,tag:o.tag,payload:o.payload,callback:o.callback,next:null});e:{var g=e,w=o;switch(m=t,y=n,w.tag){case 1:if(g=w.payload,typeof g=="function"){p=g.call(y,p,m);break e}p=g;break e;case 3:g.flags=g.flags&-65537|128;case 0:if(g=w.payload,m=typeof g=="function"?g.call(y,p,m):g,m==null)break e;p=A({},p,m);break e;case 2:be=!0}}o.callback!==null&&o.lane!==0&&(e.flags|=64,m=l.effects,m===null?l.effects=[o]:m.push(o))}else y={eventTime:y,lane:m,tag:o.tag,payload:o.payload,callback:o.callback,next:null},h===null?(s=h=y,a=p):h=h.next=y,i|=m;if(o=o.next,o===null){if(o=l.shared.pending,o===null)break;m=o,o=m.next,m.next=null,l.lastBaseUpdate=m,l.shared.pending=null}}while(!0);if(h===null&&(a=p),l.baseState=a,l.firstBaseUpdate=s,l.lastBaseUpdate=h,t=l.shared.interleaved,t!==null){l=t;do i|=l.lane,l=l.next;while(l!==t)}else u===null&&(l.shared.lanes=0);Ot|=i,e.lanes=i,e.memoizedState=p}}function $o(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;t<e.length;t++){var r=e[t],l=r.callback;if(l!==null){if(r.callback=null,r=n,typeof l!="function")throw Error(S(191,l));l.call(r)}}}var or={},$e=yt(or),Gn=yt(or),Zn=yt(or);function _t(e){if(e===or)throw Error(S(174));return e}function _i(e,t){switch(F(Zn,t),F(Gn,e),F($e,or),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:fu(null,"");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=fu(t,e)}U($e),F($e,t)}function un(){U($e),U(Gn),U(Zn)}function Os(e){_t(Zn.current);var t=_t($e.current),n=fu(t,e.type);t!==n&&(F(Gn,e),F($e,n))}function Ni(e){Gn.current===e&&(U($e),U(Gn))}var $=yt(0);function tl(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data==="$?"||n.data==="$!"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if(t.flags&128)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Yl=[];function zi(){for(var e=0;e<Yl.length;e++)Yl[e]._workInProgressVersionPrimary=null;Yl.length=0}var Mr=Ge.ReactCurrentDispatcher,Xl=Ge.ReactCurrentBatchConfig,Tt=0,B=null,X=null,J=null,nl=!1,In=!1,Jn=0,Ld=0;function ne(){throw Error(S(321))}function Li(e,t){if(t===null)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!Ie(e[n],t[n]))return!1;return!0}function Ri(e,t,n,r,l,u){if(Tt=u,B=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Mr.current=e===null||e.memoizedState===null?Md:Id,e=n(r,l),In){u=0;do{if(In=!1,Jn=0,25<=u)throw Error(S(301));u+=1,J=X=null,t.updateQueue=null,Mr.current=Fd,e=n(r,l)}while(In)}if(Mr.current=rl,t=X!==null&&X.next!==null,Tt=0,J=X=B=null,nl=!1,t)throw Error(S(300));return e}function Ti(){var e=Jn!==0;return Jn=0,e}function De(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return J===null?B.memoizedState=J=e:J=J.next=e,J}function _e(){if(X===null){var e=B.alternate;e=e!==null?e.memoizedState:null}else e=X.next;var t=J===null?B.memoizedState:J.next;if(t!==null)J=t,X=e;else{if(e===null)throw Error(S(310));X=e,e={memoizedState:X.memoizedState,baseState:X.baseState,baseQueue:X.baseQueue,queue:X.queue,next:null},J===null?B.memoizedState=J=e:J=J.next=e}return J}function qn(e,t){return typeof t=="function"?t(e):t}function Gl(e){var t=_e(),n=t.queue;if(n===null)throw Error(S(311));n.lastRenderedReducer=e;var r=X,l=r.baseQueue,u=n.pending;if(u!==null){if(l!==null){var i=l.next;l.next=u.next,u.next=i}r.baseQueue=l=u,n.pending=null}if(l!==null){u=l.next,r=r.baseState;var o=i=null,a=null,s=u;do{var h=s.lane;if((Tt&h)===h)a!==null&&(a=a.next={lane:0,action:s.action,hasEagerState:s.hasEagerState,eagerState:s.eagerState,next:null}),r=s.hasEagerState?s.eagerState:e(r,s.action);else{var p={lane:h,action:s.action,hasEagerState:s.hasEagerState,eagerState:s.eagerState,next:null};a===null?(o=a=p,i=r):a=a.next=p,B.lanes|=h,Ot|=h}s=s.next}while(s!==null&&s!==u);a===null?i=r:a.next=o,Ie(r,t.memoizedState)||(fe=!0),t.memoizedState=r,t.baseState=i,t.baseQueue=a,n.lastRenderedState=r}if(e=n.interleaved,e!==null){l=e;do u=l.lane,B.lanes|=u,Ot|=u,l=l.next;while(l!==e)}else l===null&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function Zl(e){var t=_e(),n=t.queue;if(n===null)throw Error(S(311));n.lastRenderedReducer=e;var r=n.dispatch,l=n.pending,u=t.memoizedState;if(l!==null){n.pending=null;var i=l=l.next;do u=e(u,i.action),i=i.next;while(i!==l);Ie(u,t.memoizedState)||(fe=!0),t.memoizedState=u,t.baseQueue===null&&(t.baseState=u),n.lastRenderedState=u}return[u,r]}function Ms(){}function Is(e,t){var n=B,r=_e(),l=t(),u=!Ie(r.memoizedState,l);if(u&&(r.memoizedState=l,fe=!0),r=r.queue,Oi(Us.bind(null,n,r,e),[e]),r.getSnapshot!==t||u||J!==null&&J.memoizedState.tag&1){if(n.flags|=2048,bn(9,Ds.bind(null,n,r,l,t),void 0,null),q===null)throw Error(S(349));Tt&30||Fs(n,t,l)}return l}function Fs(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=B.updateQueue,t===null?(t={lastEffect:null,stores:null},B.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function Ds(e,t,n,r){t.value=n,t.getSnapshot=r,js(t)&&$s(e)}function Us(e,t,n){return n(function(){js(t)&&$s(e)})}function js(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!Ie(e,n)}catch{return!0}}function $s(e){var t=Ye(e,1);t!==null&&Me(t,e,1,-1)}function Bo(e){var t=De();return typeof e=="function"&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:qn,lastRenderedState:e},t.queue=e,e=e.dispatch=Od.bind(null,B,e),[t.memoizedState,e]}function bn(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},t=B.updateQueue,t===null?(t={lastEffect:null,stores:null},B.updateQueue=t,t.lastEffect=e.next=e):(n=t.lastEffect,n===null?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e)),e}function Bs(){return _e().memoizedState}function Ir(e,t,n,r){var l=De();B.flags|=e,l.memoizedState=bn(1|t,n,void 0,r===void 0?null:r)}function vl(e,t,n,r){var l=_e();r=r===void 0?null:r;var u=void 0;if(X!==null){var i=X.memoizedState;if(u=i.destroy,r!==null&&Li(r,i.deps)){l.memoizedState=bn(t,n,u,r);return}}B.flags|=e,l.memoizedState=bn(1|t,n,u,r)}function Ao(e,t){return Ir(8390656,8,e,t)}function Oi(e,t){return vl(2048,8,e,t)}function As(e,t){return vl(4,2,e,t)}function Vs(e,t){return vl(4,4,e,t)}function Ws(e,t){if(typeof t=="function")return e=e(),t(e),function(){t(null)};if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function Hs(e,t,n){return n=n!=null?n.concat([e]):null,vl(4,4,Ws.bind(null,t,e),n)}function Mi(){}function Qs(e,t){var n=_e();t=t===void 0?null:t;var r=n.memoizedState;return r!==null&&t!==null&&Li(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Ks(e,t){var n=_e();t=t===void 0?null:t;var r=n.memoizedState;return r!==null&&t!==null&&Li(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Ys(e,t,n){return Tt&21?(Ie(n,t)||(n=qa(),B.lanes|=n,Ot|=n,e.baseState=!0),t):(e.baseState&&(e.baseState=!1,fe=!0),e.memoizedState=n)}function Rd(e,t){var n=I;I=n!==0&&4>n?n:4,e(!0);var r=Xl.transition;Xl.transition={};try{e(!1),t()}finally{I=n,Xl.transition=r}}function Xs(){return _e().memoizedState}function Td(e,t,n){var r=ft(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Gs(e))Zs(t,n);else if(n=Rs(e,t,n,r),n!==null){var l=oe();Me(n,e,r,l),Js(n,t,r)}}function Od(e,t,n){var r=ft(e),l={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Gs(e))Zs(t,l);else{var u=e.alternate;if(e.lanes===0&&(u===null||u.lanes===0)&&(u=t.lastRenderedReducer,u!==null))try{var i=t.lastRenderedState,o=u(i,n);if(l.hasEagerState=!0,l.eagerState=o,Ie(o,i)){var a=t.interleaved;a===null?(l.next=l,xi(t)):(l.next=a.next,a.next=l),t.interleaved=l;return}}catch{}finally{}n=Rs(e,t,l,r),n!==null&&(l=oe(),Me(n,e,r,l),Js(n,t,r))}}function Gs(e){var t=e.alternate;return e===B||t!==null&&t===B}function Zs(e,t){In=nl=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Js(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,ci(e,n)}}var rl={readContext:Pe,useCallback:ne,useContext:ne,useEffect:ne,useImperativeHandle:ne,useInsertionEffect:ne,useLayoutEffect:ne,useMemo:ne,useReducer:ne,useRef:ne,useState:ne,useDebugValue:ne,useDeferredValue:ne,useTransition:ne,useMutableSource:ne,useSyncExternalStore:ne,useId:ne,unstable_isNewReconciler:!1},Md={readContext:Pe,useCallback:function(e,t){return De().memoizedState=[e,t===void 0?null:t],e},useContext:Pe,useEffect:Ao,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Ir(4194308,4,Ws.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Ir(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ir(4,2,e,t)},useMemo:function(e,t){var n=De();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=De();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=Td.bind(null,B,e),[r.memoizedState,e]},useRef:function(e){var t=De();return e={current:e},t.memoizedState=e},useState:Bo,useDebugValue:Mi,useDeferredValue:function(e){return De().memoizedState=e},useTransition:function(){var e=Bo(!1),t=e[0];return e=Rd.bind(null,e[1]),De().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=B,l=De();if(j){if(n===void 0)throw Error(S(407));n=n()}else{if(n=t(),q===null)throw Error(S(349));Tt&30||Fs(r,t,n)}l.memoizedState=n;var u={value:n,getSnapshot:t};return l.queue=u,Ao(Us.bind(null,r,u,e),[e]),r.flags|=2048,bn(9,Ds.bind(null,r,u,n,t),void 0,null),n},useId:function(){var e=De(),t=q.identifierPrefix;if(j){var n=We,r=Ve;n=(r&~(1<<32-Oe(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Jn++,0<n&&(t+="H"+n.toString(32)),t+=":"}else n=Ld++,t=":"+t+"r"+n.toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},Id={readContext:Pe,useCallback:Qs,useContext:Pe,useEffect:Oi,useImperativeHandle:Hs,useInsertionEffect:As,useLayoutEffect:Vs,useMemo:Ks,useReducer:Gl,useRef:Bs,useState:function(){return Gl(qn)},useDebugValue:Mi,useDeferredValue:function(e){var t=_e();return Ys(t,X.memoizedState,e)},useTransition:function(){var e=Gl(qn)[0],t=_e().memoizedState;return[e,t]},useMutableSource:Ms,useSyncExternalStore:Is,useId:Xs,unstable_isNewReconciler:!1},Fd={readContext:Pe,useCallback:Qs,useContext:Pe,useEffect:Oi,useImperativeHandle:Hs,useInsertionEffect:As,useLayoutEffect:Vs,useMemo:Ks,useReducer:Zl,useRef:Bs,useState:function(){return Zl(qn)},useDebugValue:Mi,useDeferredValue:function(e){var t=_e();return X===null?t.memoizedState=e:Ys(t,X.memoizedState,e)},useTransition:function(){var e=Zl(qn)[0],t=_e().memoizedState;return[e,t]},useMutableSource:Ms,useSyncExternalStore:Is,useId:Xs,unstable_isNewReconciler:!1};function Le(e,t){if(e&&e.defaultProps){t=A({},t),e=e.defaultProps;for(var n in e)t[n]===void 0&&(t[n]=e[n]);return t}return t}function Ou(e,t,n,r){t=e.memoizedState,n=n(r,t),n=n==null?t:A({},t,n),e.memoizedState=n,e.lanes===0&&(e.updateQueue.baseState=n)}var yl={isMounted:function(e){return(e=e._reactInternals)?Ft(e)===e:!1},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=oe(),l=ft(e),u=He(r,l);u.payload=t,n!=null&&(u.callback=n),t=st(e,u,l),t!==null&&(Me(t,e,l,r),Or(t,e,l))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=oe(),l=ft(e),u=He(r,l);u.tag=1,u.payload=t,n!=null&&(u.callback=n),t=st(e,u,l),t!==null&&(Me(t,e,l,r),Or(t,e,l))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=oe(),r=ft(e),l=He(n,r);l.tag=2,t!=null&&(l.callback=t),t=st(e,l,r),t!==null&&(Me(t,e,r,n),Or(t,e,r))}};function Vo(e,t,n,r,l,u,i){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(r,u,i):t.prototype&&t.prototype.isPureReactComponent?!Qn(n,r)||!Qn(l,u):!0}function qs(e,t,n){var r=!1,l=mt,u=t.contextType;return typeof u=="object"&&u!==null?u=Pe(u):(l=pe(t)?Lt:ue.current,r=t.contextTypes,u=(r=r!=null)?nn(e,l):mt),t=new t(n,u),e.memoizedState=t.state!==null&&t.state!==void 0?t.state:null,t.updater=yl,e.stateNode=t,t._reactInternals=e,r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=l,e.__reactInternalMemoizedMaskedChildContext=u),t}function Wo(e,t,n,r){e=t.state,typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps(n,r),typeof t.UNSAFE_componentWillReceiveProps=="function"&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&yl.enqueueReplaceState(t,t.state,null)}function Mu(e,t,n,r){var l=e.stateNode;l.props=n,l.state=e.memoizedState,l.refs={},Pi(e);var u=t.contextType;typeof u=="object"&&u!==null?l.context=Pe(u):(u=pe(t)?Lt:ue.current,l.context=nn(e,u)),l.state=e.memoizedState,u=t.getDerivedStateFromProps,typeof u=="function"&&(Ou(e,t,u,n),l.state=e.memoizedState),typeof t.getDerivedStateFromProps=="function"||typeof l.getSnapshotBeforeUpdate=="function"||typeof l.UNSAFE_componentWillMount!="function"&&typeof l.componentWillMount!="function"||(t=l.state,typeof l.componentWillMount=="function"&&l.componentWillMount(),typeof l.UNSAFE_componentWillMount=="function"&&l.UNSAFE_componentWillMount(),t!==l.state&&yl.enqueueReplaceState(l,l.state,null),el(e,n,l,r),l.state=e.memoizedState),typeof l.componentDidMount=="function"&&(e.flags|=4194308)}function on(e,t){try{var n="",r=t;do n+=sf(r),r=r.return;while(r);var l=n}catch(u){l=`
31
- Error generating stack: `+u.message+`
32
- `+u.stack}return{value:e,source:t,stack:l,digest:null}}function Jl(e,t,n){return{value:e,source:null,stack:n??null,digest:t??null}}function Iu(e,t){try{console.error(t.value)}catch(n){setTimeout(function(){throw n})}}var Dd=typeof WeakMap=="function"?WeakMap:Map;function bs(e,t,n){n=He(-1,n),n.tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){ul||(ul=!0,Hu=r),Iu(e,t)},n}function ec(e,t,n){n=He(-1,n),n.tag=3;var r=e.type.getDerivedStateFromError;if(typeof r=="function"){var l=t.value;n.payload=function(){return r(l)},n.callback=function(){Iu(e,t)}}var u=e.stateNode;return u!==null&&typeof u.componentDidCatch=="function"&&(n.callback=function(){Iu(e,t),typeof r!="function"&&(ct===null?ct=new Set([this]):ct.add(this));var i=t.stack;this.componentDidCatch(t.value,{componentStack:i!==null?i:""})}),n}function Ho(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Dd;var l=new Set;r.set(t,l)}else l=r.get(t),l===void 0&&(l=new Set,r.set(t,l));l.has(n)||(l.add(n),e=Zd.bind(null,e,t,n),t.then(e,e))}function Qo(e){do{var t;if((t=e.tag===13)&&(t=e.memoizedState,t=t!==null?t.dehydrated!==null:!0),t)return e;e=e.return}while(e!==null);return null}function Ko(e,t,n,r,l){return e.mode&1?(e.flags|=65536,e.lanes=l,e):(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,n.tag===1&&(n.alternate===null?n.tag=17:(t=He(-1,1),t.tag=2,st(n,t,1))),n.lanes|=1),e)}var Ud=Ge.ReactCurrentOwner,fe=!1;function ie(e,t,n,r){t.child=e===null?Ls(t,null,n,r):ln(t,e.child,n,r)}function Yo(e,t,n,r,l){n=n.render;var u=t.ref;return bt(t,l),r=Ri(e,t,n,r,u,l),n=Ti(),e!==null&&!fe?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~l,Xe(e,t,l)):(j&&n&&gi(t),t.flags|=1,ie(e,t,r,l),t.child)}function Xo(e,t,n,r,l){if(e===null){var u=n.type;return typeof u=="function"&&!Ai(u)&&u.defaultProps===void 0&&n.compare===null&&n.defaultProps===void 0?(t.tag=15,t.type=u,tc(e,t,u,r,l)):(e=jr(n.type,null,r,t,t.mode,l),e.ref=t.ref,e.return=t,t.child=e)}if(u=e.child,!(e.lanes&l)){var i=u.memoizedProps;if(n=n.compare,n=n!==null?n:Qn,n(i,r)&&e.ref===t.ref)return Xe(e,t,l)}return t.flags|=1,e=dt(u,r),e.ref=t.ref,e.return=t,t.child=e}function tc(e,t,n,r,l){if(e!==null){var u=e.memoizedProps;if(Qn(u,r)&&e.ref===t.ref)if(fe=!1,t.pendingProps=r=u,(e.lanes&l)!==0)e.flags&131072&&(fe=!0);else return t.lanes=e.lanes,Xe(e,t,l)}return Fu(e,t,n,r,l)}function nc(e,t,n){var r=t.pendingProps,l=r.children,u=e!==null?e.memoizedState:null;if(r.mode==="hidden")if(!(t.mode&1))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},F(Xt,me),me|=n;else{if(!(n&1073741824))return e=u!==null?u.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,F(Xt,me),me|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=u!==null?u.baseLanes:n,F(Xt,me),me|=r}else u!==null?(r=u.baseLanes|n,t.memoizedState=null):r=n,F(Xt,me),me|=r;return ie(e,t,l,n),t.child}function rc(e,t){var n=t.ref;(e===null&&n!==null||e!==null&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Fu(e,t,n,r,l){var u=pe(n)?Lt:ue.current;return u=nn(t,u),bt(t,l),n=Ri(e,t,n,r,u,l),r=Ti(),e!==null&&!fe?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~l,Xe(e,t,l)):(j&&r&&gi(t),t.flags|=1,ie(e,t,n,l),t.child)}function Go(e,t,n,r,l){if(pe(n)){var u=!0;Gr(t)}else u=!1;if(bt(t,l),t.stateNode===null)Fr(e,t),qs(t,n,r),Mu(t,n,r,l),r=!0;else if(e===null){var i=t.stateNode,o=t.memoizedProps;i.props=o;var a=i.context,s=n.contextType;typeof s=="object"&&s!==null?s=Pe(s):(s=pe(n)?Lt:ue.current,s=nn(t,s));var h=n.getDerivedStateFromProps,p=typeof h=="function"||typeof i.getSnapshotBeforeUpdate=="function";p||typeof i.UNSAFE_componentWillReceiveProps!="function"&&typeof i.componentWillReceiveProps!="function"||(o!==r||a!==s)&&Wo(t,i,r,s),be=!1;var m=t.memoizedState;i.state=m,el(t,r,i,l),a=t.memoizedState,o!==r||m!==a||de.current||be?(typeof h=="function"&&(Ou(t,n,h,r),a=t.memoizedState),(o=be||Vo(t,n,o,r,m,a,s))?(p||typeof i.UNSAFE_componentWillMount!="function"&&typeof i.componentWillMount!="function"||(typeof i.componentWillMount=="function"&&i.componentWillMount(),typeof i.UNSAFE_componentWillMount=="function"&&i.UNSAFE_componentWillMount()),typeof i.componentDidMount=="function"&&(t.flags|=4194308)):(typeof i.componentDidMount=="function"&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=a),i.props=r,i.state=a,i.context=s,r=o):(typeof i.componentDidMount=="function"&&(t.flags|=4194308),r=!1)}else{i=t.stateNode,Ts(e,t),o=t.memoizedProps,s=t.type===t.elementType?o:Le(t.type,o),i.props=s,p=t.pendingProps,m=i.context,a=n.contextType,typeof a=="object"&&a!==null?a=Pe(a):(a=pe(n)?Lt:ue.current,a=nn(t,a));var y=n.getDerivedStateFromProps;(h=typeof y=="function"||typeof i.getSnapshotBeforeUpdate=="function")||typeof i.UNSAFE_componentWillReceiveProps!="function"&&typeof i.componentWillReceiveProps!="function"||(o!==p||m!==a)&&Wo(t,i,r,a),be=!1,m=t.memoizedState,i.state=m,el(t,r,i,l);var g=t.memoizedState;o!==p||m!==g||de.current||be?(typeof y=="function"&&(Ou(t,n,y,r),g=t.memoizedState),(s=be||Vo(t,n,s,r,m,g,a)||!1)?(h||typeof i.UNSAFE_componentWillUpdate!="function"&&typeof i.componentWillUpdate!="function"||(typeof i.componentWillUpdate=="function"&&i.componentWillUpdate(r,g,a),typeof i.UNSAFE_componentWillUpdate=="function"&&i.UNSAFE_componentWillUpdate(r,g,a)),typeof i.componentDidUpdate=="function"&&(t.flags|=4),typeof i.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof i.componentDidUpdate!="function"||o===e.memoizedProps&&m===e.memoizedState||(t.flags|=4),typeof i.getSnapshotBeforeUpdate!="function"||o===e.memoizedProps&&m===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=g),i.props=r,i.state=g,i.context=a,r=s):(typeof i.componentDidUpdate!="function"||o===e.memoizedProps&&m===e.memoizedState||(t.flags|=4),typeof i.getSnapshotBeforeUpdate!="function"||o===e.memoizedProps&&m===e.memoizedState||(t.flags|=1024),r=!1)}return Du(e,t,n,r,u,l)}function Du(e,t,n,r,l,u){rc(e,t);var i=(t.flags&128)!==0;if(!r&&!i)return l&&Io(t,n,!1),Xe(e,t,u);r=t.stateNode,Ud.current=t;var o=i&&typeof n.getDerivedStateFromError!="function"?null:r.render();return t.flags|=1,e!==null&&i?(t.child=ln(t,e.child,null,u),t.child=ln(t,null,o,u)):ie(e,t,o,u),t.memoizedState=r.state,l&&Io(t,n,!0),t.child}function lc(e){var t=e.stateNode;t.pendingContext?Mo(e,t.pendingContext,t.pendingContext!==t.context):t.context&&Mo(e,t.context,!1),_i(e,t.containerInfo)}function Zo(e,t,n,r,l){return rn(),Si(l),t.flags|=256,ie(e,t,n,r),t.child}var Uu={dehydrated:null,treeContext:null,retryLane:0};function ju(e){return{baseLanes:e,cachePool:null,transitions:null}}function uc(e,t,n){var r=t.pendingProps,l=$.current,u=!1,i=(t.flags&128)!==0,o;if((o=i)||(o=e!==null&&e.memoizedState===null?!1:(l&2)!==0),o?(u=!0,t.flags&=-129):(e===null||e.memoizedState!==null)&&(l|=1),F($,l&1),e===null)return Ru(t),e=t.memoizedState,e!==null&&(e=e.dehydrated,e!==null)?(t.mode&1?e.data==="$!"?t.lanes=8:t.lanes=1073741824:t.lanes=1,null):(i=r.children,e=r.fallback,u?(r=t.mode,u=t.child,i={mode:"hidden",children:i},!(r&1)&&u!==null?(u.childLanes=0,u.pendingProps=i):u=Sl(i,r,0,null),e=zt(e,r,n,null),u.return=t,e.return=t,u.sibling=e,t.child=u,t.child.memoizedState=ju(n),t.memoizedState=Uu,e):Ii(t,i));if(l=e.memoizedState,l!==null&&(o=l.dehydrated,o!==null))return jd(e,t,i,r,o,l,n);if(u){u=r.fallback,i=t.mode,l=e.child,o=l.sibling;var a={mode:"hidden",children:r.children};return!(i&1)&&t.child!==l?(r=t.child,r.childLanes=0,r.pendingProps=a,t.deletions=null):(r=dt(l,a),r.subtreeFlags=l.subtreeFlags&14680064),o!==null?u=dt(o,u):(u=zt(u,i,n,null),u.flags|=2),u.return=t,r.return=t,r.sibling=u,t.child=r,r=u,u=t.child,i=e.child.memoizedState,i=i===null?ju(n):{baseLanes:i.baseLanes|n,cachePool:null,transitions:i.transitions},u.memoizedState=i,u.childLanes=e.childLanes&~n,t.memoizedState=Uu,r}return u=e.child,e=u.sibling,r=dt(u,{mode:"visible",children:r.children}),!(t.mode&1)&&(r.lanes=n),r.return=t,r.sibling=null,e!==null&&(n=t.deletions,n===null?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=r,t.memoizedState=null,r}function Ii(e,t){return t=Sl({mode:"visible",children:t},e.mode,0,null),t.return=e,e.child=t}function Cr(e,t,n,r){return r!==null&&Si(r),ln(t,e.child,null,n),e=Ii(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function jd(e,t,n,r,l,u,i){if(n)return t.flags&256?(t.flags&=-257,r=Jl(Error(S(422))),Cr(e,t,i,r)):t.memoizedState!==null?(t.child=e.child,t.flags|=128,null):(u=r.fallback,l=t.mode,r=Sl({mode:"visible",children:r.children},l,0,null),u=zt(u,l,i,null),u.flags|=2,r.return=t,u.return=t,r.sibling=u,t.child=r,t.mode&1&&ln(t,e.child,null,i),t.child.memoizedState=ju(i),t.memoizedState=Uu,u);if(!(t.mode&1))return Cr(e,t,i,null);if(l.data==="$!"){if(r=l.nextSibling&&l.nextSibling.dataset,r)var o=r.dgst;return r=o,u=Error(S(419)),r=Jl(u,r,void 0),Cr(e,t,i,r)}if(o=(i&e.childLanes)!==0,fe||o){if(r=q,r!==null){switch(i&-i){case 4:l=2;break;case 16:l=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:l=32;break;case 536870912:l=268435456;break;default:l=0}l=l&(r.suspendedLanes|i)?0:l,l!==0&&l!==u.retryLane&&(u.retryLane=l,Ye(e,l),Me(r,e,l,-1))}return Bi(),r=Jl(Error(S(421))),Cr(e,t,i,r)}return l.data==="$?"?(t.flags|=128,t.child=e.child,t=Jd.bind(null,e),l._reactRetry=t,null):(e=u.treeContext,ve=at(l.nextSibling),ye=t,j=!0,Te=null,e!==null&&(ke[Ee++]=Ve,ke[Ee++]=We,ke[Ee++]=Rt,Ve=e.id,We=e.overflow,Rt=t),t=Ii(t,r.children),t.flags|=4096,t)}function Jo(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),Tu(e.return,t,n)}function ql(e,t,n,r,l){var u=e.memoizedState;u===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:l}:(u.isBackwards=t,u.rendering=null,u.renderingStartTime=0,u.last=r,u.tail=n,u.tailMode=l)}function ic(e,t,n){var r=t.pendingProps,l=r.revealOrder,u=r.tail;if(ie(e,t,r.children,n),r=$.current,r&2)r=r&1|2,t.flags|=128;else{if(e!==null&&e.flags&128)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Jo(e,n,t);else if(e.tag===19)Jo(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;e.sibling===null;){if(e.return===null||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(F($,r),!(t.mode&1))t.memoizedState=null;else switch(l){case"forwards":for(n=t.child,l=null;n!==null;)e=n.alternate,e!==null&&tl(e)===null&&(l=n),n=n.sibling;n=l,n===null?(l=t.child,t.child=null):(l=n.sibling,n.sibling=null),ql(t,!1,l,n,u);break;case"backwards":for(n=null,l=t.child,t.child=null;l!==null;){if(e=l.alternate,e!==null&&tl(e)===null){t.child=l;break}e=l.sibling,l.sibling=n,n=l,l=e}ql(t,!0,n,null,u);break;case"together":ql(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Fr(e,t){!(t.mode&1)&&e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2)}function Xe(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),Ot|=t.lanes,!(n&t.childLanes))return null;if(e!==null&&t.child!==e.child)throw Error(S(153));if(t.child!==null){for(e=t.child,n=dt(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=dt(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function $d(e,t,n){switch(t.tag){case 3:lc(t),rn();break;case 5:Os(t);break;case 1:pe(t.type)&&Gr(t);break;case 4:_i(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,l=t.memoizedProps.value;F(qr,r._currentValue),r._currentValue=l;break;case 13:if(r=t.memoizedState,r!==null)return r.dehydrated!==null?(F($,$.current&1),t.flags|=128,null):n&t.child.childLanes?uc(e,t,n):(F($,$.current&1),e=Xe(e,t,n),e!==null?e.sibling:null);F($,$.current&1);break;case 19:if(r=(n&t.childLanes)!==0,e.flags&128){if(r)return ic(e,t,n);t.flags|=128}if(l=t.memoizedState,l!==null&&(l.rendering=null,l.tail=null,l.lastEffect=null),F($,$.current),r)break;return null;case 22:case 23:return t.lanes=0,nc(e,t,n)}return Xe(e,t,n)}var oc,$u,ac,sc;oc=function(e,t){for(var n=t.child;n!==null;){if(n.tag===5||n.tag===6)e.appendChild(n.stateNode);else if(n.tag!==4&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===t)break;for(;n.sibling===null;){if(n.return===null||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}};$u=function(){};ac=function(e,t,n,r){var l=e.memoizedProps;if(l!==r){e=t.stateNode,_t($e.current);var u=null;switch(n){case"input":l=ou(e,l),r=ou(e,r),u=[];break;case"select":l=A({},l,{value:void 0}),r=A({},r,{value:void 0}),u=[];break;case"textarea":l=cu(e,l),r=cu(e,r),u=[];break;default:typeof l.onClick!="function"&&typeof r.onClick=="function"&&(e.onclick=Yr)}du(n,r);var i;n=null;for(s in l)if(!r.hasOwnProperty(s)&&l.hasOwnProperty(s)&&l[s]!=null)if(s==="style"){var o=l[s];for(i in o)o.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else s!=="dangerouslySetInnerHTML"&&s!=="children"&&s!=="suppressContentEditableWarning"&&s!=="suppressHydrationWarning"&&s!=="autoFocus"&&(jn.hasOwnProperty(s)?u||(u=[]):(u=u||[]).push(s,null));for(s in r){var a=r[s];if(o=l!=null?l[s]:void 0,r.hasOwnProperty(s)&&a!==o&&(a!=null||o!=null))if(s==="style")if(o){for(i in o)!o.hasOwnProperty(i)||a&&a.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in a)a.hasOwnProperty(i)&&o[i]!==a[i]&&(n||(n={}),n[i]=a[i])}else n||(u||(u=[]),u.push(s,n)),n=a;else s==="dangerouslySetInnerHTML"?(a=a?a.__html:void 0,o=o?o.__html:void 0,a!=null&&o!==a&&(u=u||[]).push(s,a)):s==="children"?typeof a!="string"&&typeof a!="number"||(u=u||[]).push(s,""+a):s!=="suppressContentEditableWarning"&&s!=="suppressHydrationWarning"&&(jn.hasOwnProperty(s)?(a!=null&&s==="onScroll"&&D("scroll",e),u||o===a||(u=[])):(u=u||[]).push(s,a))}n&&(u=u||[]).push("style",n);var s=u;(t.updateQueue=s)&&(t.flags|=4)}};sc=function(e,t,n,r){n!==r&&(t.flags|=4)};function Cn(e,t){if(!j)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function re(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var l=e.child;l!==null;)n|=l.lanes|l.childLanes,r|=l.subtreeFlags&14680064,r|=l.flags&14680064,l.return=e,l=l.sibling;else for(l=e.child;l!==null;)n|=l.lanes|l.childLanes,r|=l.subtreeFlags,r|=l.flags,l.return=e,l=l.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function Bd(e,t,n){var r=t.pendingProps;switch(wi(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return re(t),null;case 1:return pe(t.type)&&Xr(),re(t),null;case 3:return r=t.stateNode,un(),U(de),U(ue),zi(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(e===null||e.child===null)&&(kr(t)?t.flags|=4:e===null||e.memoizedState.isDehydrated&&!(t.flags&256)||(t.flags|=1024,Te!==null&&(Yu(Te),Te=null))),$u(e,t),re(t),null;case 5:Ni(t);var l=_t(Zn.current);if(n=t.type,e!==null&&t.stateNode!=null)ac(e,t,n,r,l),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(t.stateNode===null)throw Error(S(166));return re(t),null}if(e=_t($e.current),kr(t)){r=t.stateNode,n=t.type;var u=t.memoizedProps;switch(r[Ue]=t,r[Xn]=u,e=(t.mode&1)!==0,n){case"dialog":D("cancel",r),D("close",r);break;case"iframe":case"object":case"embed":D("load",r);break;case"video":case"audio":for(l=0;l<zn.length;l++)D(zn[l],r);break;case"source":D("error",r);break;case"img":case"image":case"link":D("error",r),D("load",r);break;case"details":D("toggle",r);break;case"input":uo(r,u),D("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!u.multiple},D("invalid",r);break;case"textarea":oo(r,u),D("invalid",r)}du(n,u),l=null;for(var i in u)if(u.hasOwnProperty(i)){var o=u[i];i==="children"?typeof o=="string"?r.textContent!==o&&(u.suppressHydrationWarning!==!0&&Sr(r.textContent,o,e),l=["children",o]):typeof o=="number"&&r.textContent!==""+o&&(u.suppressHydrationWarning!==!0&&Sr(r.textContent,o,e),l=["children",""+o]):jn.hasOwnProperty(i)&&o!=null&&i==="onScroll"&&D("scroll",r)}switch(n){case"input":dr(r),io(r,u,!0);break;case"textarea":dr(r),ao(r);break;case"select":case"option":break;default:typeof u.onClick=="function"&&(r.onclick=Yr)}r=l,t.updateQueue=r,r!==null&&(t.flags|=4)}else{i=l.nodeType===9?l:l.ownerDocument,e==="http://www.w3.org/1999/xhtml"&&(e=Ua(n)),e==="http://www.w3.org/1999/xhtml"?n==="script"?(e=i.createElement("div"),e.innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=i.createElement(n,{is:r.is}):(e=i.createElement(n),n==="select"&&(i=e,r.multiple?i.multiple=!0:r.size&&(i.size=r.size))):e=i.createElementNS(e,n),e[Ue]=t,e[Xn]=r,oc(e,t,!1,!1),t.stateNode=e;e:{switch(i=pu(n,r),n){case"dialog":D("cancel",e),D("close",e),l=r;break;case"iframe":case"object":case"embed":D("load",e),l=r;break;case"video":case"audio":for(l=0;l<zn.length;l++)D(zn[l],e);l=r;break;case"source":D("error",e),l=r;break;case"img":case"image":case"link":D("error",e),D("load",e),l=r;break;case"details":D("toggle",e),l=r;break;case"input":uo(e,r),l=ou(e,r),D("invalid",e);break;case"option":l=r;break;case"select":e._wrapperState={wasMultiple:!!r.multiple},l=A({},r,{value:void 0}),D("invalid",e);break;case"textarea":oo(e,r),l=cu(e,r),D("invalid",e);break;default:l=r}du(n,l),o=l;for(u in o)if(o.hasOwnProperty(u)){var a=o[u];u==="style"?Ba(e,a):u==="dangerouslySetInnerHTML"?(a=a?a.__html:void 0,a!=null&&ja(e,a)):u==="children"?typeof a=="string"?(n!=="textarea"||a!=="")&&$n(e,a):typeof a=="number"&&$n(e,""+a):u!=="suppressContentEditableWarning"&&u!=="suppressHydrationWarning"&&u!=="autoFocus"&&(jn.hasOwnProperty(u)?a!=null&&u==="onScroll"&&D("scroll",e):a!=null&&li(e,u,a,i))}switch(n){case"input":dr(e),io(e,r,!1);break;case"textarea":dr(e),ao(e);break;case"option":r.value!=null&&e.setAttribute("value",""+ht(r.value));break;case"select":e.multiple=!!r.multiple,u=r.value,u!=null?Gt(e,!!r.multiple,u,!1):r.defaultValue!=null&&Gt(e,!!r.multiple,r.defaultValue,!0);break;default:typeof l.onClick=="function"&&(e.onclick=Yr)}switch(n){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break e;case"img":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}t.ref!==null&&(t.flags|=512,t.flags|=2097152)}return re(t),null;case 6:if(e&&t.stateNode!=null)sc(e,t,e.memoizedProps,r);else{if(typeof r!="string"&&t.stateNode===null)throw Error(S(166));if(n=_t(Zn.current),_t($e.current),kr(t)){if(r=t.stateNode,n=t.memoizedProps,r[Ue]=t,(u=r.nodeValue!==n)&&(e=ye,e!==null))switch(e.tag){case 3:Sr(r.nodeValue,n,(e.mode&1)!==0);break;case 5:e.memoizedProps.suppressHydrationWarning!==!0&&Sr(r.nodeValue,n,(e.mode&1)!==0)}u&&(t.flags|=4)}else r=(n.nodeType===9?n:n.ownerDocument).createTextNode(r),r[Ue]=t,t.stateNode=r}return re(t),null;case 13:if(U($),r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(j&&ve!==null&&t.mode&1&&!(t.flags&128))Ns(),rn(),t.flags|=98560,u=!1;else if(u=kr(t),r!==null&&r.dehydrated!==null){if(e===null){if(!u)throw Error(S(318));if(u=t.memoizedState,u=u!==null?u.dehydrated:null,!u)throw Error(S(317));u[Ue]=t}else rn(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;re(t),u=!1}else Te!==null&&(Yu(Te),Te=null),u=!0;if(!u)return t.flags&65536?t:null}return t.flags&128?(t.lanes=n,t):(r=r!==null,r!==(e!==null&&e.memoizedState!==null)&&r&&(t.child.flags|=8192,t.mode&1&&(e===null||$.current&1?G===0&&(G=3):Bi())),t.updateQueue!==null&&(t.flags|=4),re(t),null);case 4:return un(),$u(e,t),e===null&&Kn(t.stateNode.containerInfo),re(t),null;case 10:return Ci(t.type._context),re(t),null;case 17:return pe(t.type)&&Xr(),re(t),null;case 19:if(U($),u=t.memoizedState,u===null)return re(t),null;if(r=(t.flags&128)!==0,i=u.rendering,i===null)if(r)Cn(u,!1);else{if(G!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(i=tl(e),i!==null){for(t.flags|=128,Cn(u,!1),r=i.updateQueue,r!==null&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;n!==null;)u=n,e=r,u.flags&=14680066,i=u.alternate,i===null?(u.childLanes=0,u.lanes=e,u.child=null,u.subtreeFlags=0,u.memoizedProps=null,u.memoizedState=null,u.updateQueue=null,u.dependencies=null,u.stateNode=null):(u.childLanes=i.childLanes,u.lanes=i.lanes,u.child=i.child,u.subtreeFlags=0,u.deletions=null,u.memoizedProps=i.memoizedProps,u.memoizedState=i.memoizedState,u.updateQueue=i.updateQueue,u.type=i.type,e=i.dependencies,u.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return F($,$.current&1|2),t.child}e=e.sibling}u.tail!==null&&Q()>an&&(t.flags|=128,r=!0,Cn(u,!1),t.lanes=4194304)}else{if(!r)if(e=tl(i),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),Cn(u,!0),u.tail===null&&u.tailMode==="hidden"&&!i.alternate&&!j)return re(t),null}else 2*Q()-u.renderingStartTime>an&&n!==1073741824&&(t.flags|=128,r=!0,Cn(u,!1),t.lanes=4194304);u.isBackwards?(i.sibling=t.child,t.child=i):(n=u.last,n!==null?n.sibling=i:t.child=i,u.last=i)}return u.tail!==null?(t=u.tail,u.rendering=t,u.tail=t.sibling,u.renderingStartTime=Q(),t.sibling=null,n=$.current,F($,r?n&1|2:n&1),t):(re(t),null);case 22:case 23:return $i(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&t.mode&1?me&1073741824&&(re(t),t.subtreeFlags&6&&(t.flags|=8192)):re(t),null;case 24:return null;case 25:return null}throw Error(S(156,t.tag))}function Ad(e,t){switch(wi(t),t.tag){case 1:return pe(t.type)&&Xr(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return un(),U(de),U(ue),zi(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return Ni(t),null;case 13:if(U($),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(S(340));rn()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return U($),null;case 4:return un(),null;case 10:return Ci(t.type._context),null;case 22:case 23:return $i(),null;case 24:return null;default:return null}}var xr=!1,le=!1,Vd=typeof WeakSet=="function"?WeakSet:Set,x=null;function Yt(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){V(e,t,r)}else n.current=null}function Bu(e,t,n){try{n()}catch(r){V(e,t,r)}}var qo=!1;function Wd(e,t){if(Cu=Hr,e=hs(),yi(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var l=r.anchorOffset,u=r.focusNode;r=r.focusOffset;try{n.nodeType,u.nodeType}catch{n=null;break e}var i=0,o=-1,a=-1,s=0,h=0,p=e,m=null;t:for(;;){for(var y;p!==n||l!==0&&p.nodeType!==3||(o=i+l),p!==u||r!==0&&p.nodeType!==3||(a=i+r),p.nodeType===3&&(i+=p.nodeValue.length),(y=p.firstChild)!==null;)m=p,p=y;for(;;){if(p===e)break t;if(m===n&&++s===l&&(o=i),m===u&&++h===r&&(a=i),(y=p.nextSibling)!==null)break;p=m,m=p.parentNode}p=y}n=o===-1||a===-1?null:{start:o,end:a}}else n=null}n=n||{start:0,end:0}}else n=null;for(xu={focusedElem:e,selectionRange:n},Hr=!1,x=t;x!==null;)if(t=x,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,x=e;else for(;x!==null;){t=x;try{var g=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(g!==null){var w=g.memoizedProps,C=g.memoizedState,f=t.stateNode,c=f.getSnapshotBeforeUpdate(t.elementType===t.type?w:Le(t.type,w),C);f.__reactInternalSnapshotBeforeUpdate=c}break;case 3:var d=t.stateNode.containerInfo;d.nodeType===1?d.textContent="":d.nodeType===9&&d.documentElement&&d.removeChild(d.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(S(163))}}catch(v){V(t,t.return,v)}if(e=t.sibling,e!==null){e.return=t.return,x=e;break}x=t.return}return g=qo,qo=!1,g}function Fn(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var u=l.destroy;l.destroy=void 0,u!==void 0&&Bu(t,n,u)}l=l.next}while(l!==r)}}function gl(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Au(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function cc(e){var t=e.alternate;t!==null&&(e.alternate=null,cc(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[Ue],delete t[Xn],delete t[Nu],delete t[Pd],delete t[_d])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function fc(e){return e.tag===5||e.tag===3||e.tag===4}function bo(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||fc(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Vu(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Yr));else if(r!==4&&(e=e.child,e!==null))for(Vu(e,t,n),e=e.sibling;e!==null;)Vu(e,t,n),e=e.sibling}function Wu(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Wu(e,t,n),e=e.sibling;e!==null;)Wu(e,t,n),e=e.sibling}var b=null,Re=!1;function Je(e,t,n){for(n=n.child;n!==null;)dc(e,t,n),n=n.sibling}function dc(e,t,n){if(je&&typeof je.onCommitFiberUnmount=="function")try{je.onCommitFiberUnmount(cl,n)}catch{}switch(n.tag){case 5:le||Yt(n,t);case 6:var r=b,l=Re;b=null,Je(e,t,n),b=r,Re=l,b!==null&&(Re?(e=b,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):b.removeChild(n.stateNode));break;case 18:b!==null&&(Re?(e=b,n=n.stateNode,e.nodeType===8?Ql(e.parentNode,n):e.nodeType===1&&Ql(e,n),Wn(e)):Ql(b,n.stateNode));break;case 4:r=b,l=Re,b=n.stateNode.containerInfo,Re=!0,Je(e,t,n),b=r,Re=l;break;case 0:case 11:case 14:case 15:if(!le&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var u=l,i=u.destroy;u=u.tag,i!==void 0&&(u&2||u&4)&&Bu(n,t,i),l=l.next}while(l!==r)}Je(e,t,n);break;case 1:if(!le&&(Yt(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(o){V(n,t,o)}Je(e,t,n);break;case 21:Je(e,t,n);break;case 22:n.mode&1?(le=(r=le)||n.memoizedState!==null,Je(e,t,n),le=r):Je(e,t,n);break;default:Je(e,t,n)}}function ea(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new Vd),t.forEach(function(r){var l=qd.bind(null,e,r);n.has(r)||(n.add(r),r.then(l,l))})}}function ze(e,t){var n=t.deletions;if(n!==null)for(var r=0;r<n.length;r++){var l=n[r];try{var u=e,i=t,o=i;e:for(;o!==null;){switch(o.tag){case 5:b=o.stateNode,Re=!1;break e;case 3:b=o.stateNode.containerInfo,Re=!0;break e;case 4:b=o.stateNode.containerInfo,Re=!0;break e}o=o.return}if(b===null)throw Error(S(160));dc(u,i,l),b=null,Re=!1;var a=l.alternate;a!==null&&(a.return=null),l.return=null}catch(s){V(l,t,s)}}if(t.subtreeFlags&12854)for(t=t.child;t!==null;)pc(t,e),t=t.sibling}function pc(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(ze(t,e),Fe(e),r&4){try{Fn(3,e,e.return),gl(3,e)}catch(w){V(e,e.return,w)}try{Fn(5,e,e.return)}catch(w){V(e,e.return,w)}}break;case 1:ze(t,e),Fe(e),r&512&&n!==null&&Yt(n,n.return);break;case 5:if(ze(t,e),Fe(e),r&512&&n!==null&&Yt(n,n.return),e.flags&32){var l=e.stateNode;try{$n(l,"")}catch(w){V(e,e.return,w)}}if(r&4&&(l=e.stateNode,l!=null)){var u=e.memoizedProps,i=n!==null?n.memoizedProps:u,o=e.type,a=e.updateQueue;if(e.updateQueue=null,a!==null)try{o==="input"&&u.type==="radio"&&u.name!=null&&Fa(l,u),pu(o,i);var s=pu(o,u);for(i=0;i<a.length;i+=2){var h=a[i],p=a[i+1];h==="style"?Ba(l,p):h==="dangerouslySetInnerHTML"?ja(l,p):h==="children"?$n(l,p):li(l,h,p,s)}switch(o){case"input":au(l,u);break;case"textarea":Da(l,u);break;case"select":var m=l._wrapperState.wasMultiple;l._wrapperState.wasMultiple=!!u.multiple;var y=u.value;y!=null?Gt(l,!!u.multiple,y,!1):m!==!!u.multiple&&(u.defaultValue!=null?Gt(l,!!u.multiple,u.defaultValue,!0):Gt(l,!!u.multiple,u.multiple?[]:"",!1))}l[Xn]=u}catch(w){V(e,e.return,w)}}break;case 6:if(ze(t,e),Fe(e),r&4){if(e.stateNode===null)throw Error(S(162));l=e.stateNode,u=e.memoizedProps;try{l.nodeValue=u}catch(w){V(e,e.return,w)}}break;case 3:if(ze(t,e),Fe(e),r&4&&n!==null&&n.memoizedState.isDehydrated)try{Wn(t.containerInfo)}catch(w){V(e,e.return,w)}break;case 4:ze(t,e),Fe(e);break;case 13:ze(t,e),Fe(e),l=e.child,l.flags&8192&&(u=l.memoizedState!==null,l.stateNode.isHidden=u,!u||l.alternate!==null&&l.alternate.memoizedState!==null||(Ui=Q())),r&4&&ea(e);break;case 22:if(h=n!==null&&n.memoizedState!==null,e.mode&1?(le=(s=le)||h,ze(t,e),le=s):ze(t,e),Fe(e),r&8192){if(s=e.memoizedState!==null,(e.stateNode.isHidden=s)&&!h&&e.mode&1)for(x=e,h=e.child;h!==null;){for(p=x=h;x!==null;){switch(m=x,y=m.child,m.tag){case 0:case 11:case 14:case 15:Fn(4,m,m.return);break;case 1:Yt(m,m.return);var g=m.stateNode;if(typeof g.componentWillUnmount=="function"){r=m,n=m.return;try{t=r,g.props=t.memoizedProps,g.state=t.memoizedState,g.componentWillUnmount()}catch(w){V(r,n,w)}}break;case 5:Yt(m,m.return);break;case 22:if(m.memoizedState!==null){na(p);continue}}y!==null?(y.return=m,x=y):na(p)}h=h.sibling}e:for(h=null,p=e;;){if(p.tag===5){if(h===null){h=p;try{l=p.stateNode,s?(u=l.style,typeof u.setProperty=="function"?u.setProperty("display","none","important"):u.display="none"):(o=p.stateNode,a=p.memoizedProps.style,i=a!=null&&a.hasOwnProperty("display")?a.display:null,o.style.display=$a("display",i))}catch(w){V(e,e.return,w)}}}else if(p.tag===6){if(h===null)try{p.stateNode.nodeValue=s?"":p.memoizedProps}catch(w){V(e,e.return,w)}}else if((p.tag!==22&&p.tag!==23||p.memoizedState===null||p===e)&&p.child!==null){p.child.return=p,p=p.child;continue}if(p===e)break e;for(;p.sibling===null;){if(p.return===null||p.return===e)break e;h===p&&(h=null),p=p.return}h===p&&(h=null),p.sibling.return=p.return,p=p.sibling}}break;case 19:ze(t,e),Fe(e),r&4&&ea(e);break;case 21:break;default:ze(t,e),Fe(e)}}function Fe(e){var t=e.flags;if(t&2){try{e:{for(var n=e.return;n!==null;){if(fc(n)){var r=n;break e}n=n.return}throw Error(S(160))}switch(r.tag){case 5:var l=r.stateNode;r.flags&32&&($n(l,""),r.flags&=-33);var u=bo(e);Wu(e,u,l);break;case 3:case 4:var i=r.stateNode.containerInfo,o=bo(e);Vu(e,o,i);break;default:throw Error(S(161))}}catch(a){V(e,e.return,a)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function Hd(e,t,n){x=e,hc(e)}function hc(e,t,n){for(var r=(e.mode&1)!==0;x!==null;){var l=x,u=l.child;if(l.tag===22&&r){var i=l.memoizedState!==null||xr;if(!i){var o=l.alternate,a=o!==null&&o.memoizedState!==null||le;o=xr;var s=le;if(xr=i,(le=a)&&!s)for(x=l;x!==null;)i=x,a=i.child,i.tag===22&&i.memoizedState!==null?ra(l):a!==null?(a.return=i,x=a):ra(l);for(;u!==null;)x=u,hc(u),u=u.sibling;x=l,xr=o,le=s}ta(e)}else l.subtreeFlags&8772&&u!==null?(u.return=l,x=u):ta(e)}}function ta(e){for(;x!==null;){var t=x;if(t.flags&8772){var n=t.alternate;try{if(t.flags&8772)switch(t.tag){case 0:case 11:case 15:le||gl(5,t);break;case 1:var r=t.stateNode;if(t.flags&4&&!le)if(n===null)r.componentDidMount();else{var l=t.elementType===t.type?n.memoizedProps:Le(t.type,n.memoizedProps);r.componentDidUpdate(l,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var u=t.updateQueue;u!==null&&$o(t,u,r);break;case 3:var i=t.updateQueue;if(i!==null){if(n=null,t.child!==null)switch(t.child.tag){case 5:n=t.child.stateNode;break;case 1:n=t.child.stateNode}$o(t,i,n)}break;case 5:var o=t.stateNode;if(n===null&&t.flags&4){n=o;var a=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":a.autoFocus&&n.focus();break;case"img":a.src&&(n.src=a.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(t.memoizedState===null){var s=t.alternate;if(s!==null){var h=s.memoizedState;if(h!==null){var p=h.dehydrated;p!==null&&Wn(p)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(S(163))}le||t.flags&512&&Au(t)}catch(m){V(t,t.return,m)}}if(t===e){x=null;break}if(n=t.sibling,n!==null){n.return=t.return,x=n;break}x=t.return}}function na(e){for(;x!==null;){var t=x;if(t===e){x=null;break}var n=t.sibling;if(n!==null){n.return=t.return,x=n;break}x=t.return}}function ra(e){for(;x!==null;){var t=x;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{gl(4,t)}catch(a){V(t,n,a)}break;case 1:var r=t.stateNode;if(typeof r.componentDidMount=="function"){var l=t.return;try{r.componentDidMount()}catch(a){V(t,l,a)}}var u=t.return;try{Au(t)}catch(a){V(t,u,a)}break;case 5:var i=t.return;try{Au(t)}catch(a){V(t,i,a)}}}catch(a){V(t,t.return,a)}if(t===e){x=null;break}var o=t.sibling;if(o!==null){o.return=t.return,x=o;break}x=t.return}}var Qd=Math.ceil,ll=Ge.ReactCurrentDispatcher,Fi=Ge.ReactCurrentOwner,xe=Ge.ReactCurrentBatchConfig,M=0,q=null,Y=null,ee=0,me=0,Xt=yt(0),G=0,er=null,Ot=0,wl=0,Di=0,Dn=null,ce=null,Ui=0,an=1/0,Be=null,ul=!1,Hu=null,ct=null,Pr=!1,rt=null,il=0,Un=0,Qu=null,Dr=-1,Ur=0;function oe(){return M&6?Q():Dr!==-1?Dr:Dr=Q()}function ft(e){return e.mode&1?M&2&&ee!==0?ee&-ee:zd.transition!==null?(Ur===0&&(Ur=qa()),Ur):(e=I,e!==0||(e=window.event,e=e===void 0?16:us(e.type)),e):1}function Me(e,t,n,r){if(50<Un)throw Un=0,Qu=null,Error(S(185));lr(e,n,r),(!(M&2)||e!==q)&&(e===q&&(!(M&2)&&(wl|=n),G===4&&tt(e,ee)),he(e,r),n===1&&M===0&&!(t.mode&1)&&(an=Q()+500,ml&&gt()))}function he(e,t){var n=e.callbackNode;zf(e,t);var r=Wr(e,e===q?ee:0);if(r===0)n!==null&&fo(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(n!=null&&fo(n),t===1)e.tag===0?Nd(la.bind(null,e)):xs(la.bind(null,e)),Cd(function(){!(M&6)&&gt()}),n=null;else{switch(ba(r)){case 1:n=si;break;case 4:n=Za;break;case 16:n=Vr;break;case 536870912:n=Ja;break;default:n=Vr}n=Ec(n,mc.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function mc(e,t){if(Dr=-1,Ur=0,M&6)throw Error(S(327));var n=e.callbackNode;if(en()&&e.callbackNode!==n)return null;var r=Wr(e,e===q?ee:0);if(r===0)return null;if(r&30||r&e.expiredLanes||t)t=ol(e,r);else{t=r;var l=M;M|=2;var u=yc();(q!==e||ee!==t)&&(Be=null,an=Q()+500,Nt(e,t));do try{Xd();break}catch(o){vc(e,o)}while(!0);Ei(),ll.current=u,M=l,Y!==null?t=0:(q=null,ee=0,t=G)}if(t!==0){if(t===2&&(l=gu(e),l!==0&&(r=l,t=Ku(e,l))),t===1)throw n=er,Nt(e,0),tt(e,r),he(e,Q()),n;if(t===6)tt(e,r);else{if(l=e.current.alternate,!(r&30)&&!Kd(l)&&(t=ol(e,r),t===2&&(u=gu(e),u!==0&&(r=u,t=Ku(e,u))),t===1))throw n=er,Nt(e,0),tt(e,r),he(e,Q()),n;switch(e.finishedWork=l,e.finishedLanes=r,t){case 0:case 1:throw Error(S(345));case 2:Ct(e,ce,Be);break;case 3:if(tt(e,r),(r&130023424)===r&&(t=Ui+500-Q(),10<t)){if(Wr(e,0)!==0)break;if(l=e.suspendedLanes,(l&r)!==r){oe(),e.pingedLanes|=e.suspendedLanes&l;break}e.timeoutHandle=_u(Ct.bind(null,e,ce,Be),t);break}Ct(e,ce,Be);break;case 4:if(tt(e,r),(r&4194240)===r)break;for(t=e.eventTimes,l=-1;0<r;){var i=31-Oe(r);u=1<<i,i=t[i],i>l&&(l=i),r&=~u}if(r=l,r=Q()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*Qd(r/1960))-r,10<r){e.timeoutHandle=_u(Ct.bind(null,e,ce,Be),r);break}Ct(e,ce,Be);break;case 5:Ct(e,ce,Be);break;default:throw Error(S(329))}}}return he(e,Q()),e.callbackNode===n?mc.bind(null,e):null}function Ku(e,t){var n=Dn;return e.current.memoizedState.isDehydrated&&(Nt(e,t).flags|=256),e=ol(e,t),e!==2&&(t=ce,ce=n,t!==null&&Yu(t)),e}function Yu(e){ce===null?ce=e:ce.push.apply(ce,e)}function Kd(e){for(var t=e;;){if(t.flags&16384){var n=t.updateQueue;if(n!==null&&(n=n.stores,n!==null))for(var r=0;r<n.length;r++){var l=n[r],u=l.getSnapshot;l=l.value;try{if(!Ie(u(),l))return!1}catch{return!1}}}if(n=t.child,t.subtreeFlags&16384&&n!==null)n.return=t,t=n;else{if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function tt(e,t){for(t&=~Di,t&=~wl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Oe(t),r=1<<n;e[n]=-1,t&=~r}}function la(e){if(M&6)throw Error(S(327));en();var t=Wr(e,0);if(!(t&1))return he(e,Q()),null;var n=ol(e,t);if(e.tag!==0&&n===2){var r=gu(e);r!==0&&(t=r,n=Ku(e,r))}if(n===1)throw n=er,Nt(e,0),tt(e,t),he(e,Q()),n;if(n===6)throw Error(S(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ct(e,ce,Be),he(e,Q()),null}function ji(e,t){var n=M;M|=1;try{return e(t)}finally{M=n,M===0&&(an=Q()+500,ml&&gt())}}function Mt(e){rt!==null&&rt.tag===0&&!(M&6)&&en();var t=M;M|=1;var n=xe.transition,r=I;try{if(xe.transition=null,I=1,e)return e()}finally{I=r,xe.transition=n,M=t,!(M&6)&&gt()}}function $i(){me=Xt.current,U(Xt)}function Nt(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(n!==-1&&(e.timeoutHandle=-1,Ed(n)),Y!==null)for(n=Y.return;n!==null;){var r=n;switch(wi(r),r.tag){case 1:r=r.type.childContextTypes,r!=null&&Xr();break;case 3:un(),U(de),U(ue),zi();break;case 5:Ni(r);break;case 4:un();break;case 13:U($);break;case 19:U($);break;case 10:Ci(r.type._context);break;case 22:case 23:$i()}n=n.return}if(q=e,Y=e=dt(e.current,null),ee=me=t,G=0,er=null,Di=wl=Ot=0,ce=Dn=null,Pt!==null){for(t=0;t<Pt.length;t++)if(n=Pt[t],r=n.interleaved,r!==null){n.interleaved=null;var l=r.next,u=n.pending;if(u!==null){var i=u.next;u.next=l,r.next=i}n.pending=r}Pt=null}return e}function vc(e,t){do{var n=Y;try{if(Ei(),Mr.current=rl,nl){for(var r=B.memoizedState;r!==null;){var l=r.queue;l!==null&&(l.pending=null),r=r.next}nl=!1}if(Tt=0,J=X=B=null,In=!1,Jn=0,Fi.current=null,n===null||n.return===null){G=1,er=t,Y=null;break}e:{var u=e,i=n.return,o=n,a=t;if(t=ee,o.flags|=32768,a!==null&&typeof a=="object"&&typeof a.then=="function"){var s=a,h=o,p=h.tag;if(!(h.mode&1)&&(p===0||p===11||p===15)){var m=h.alternate;m?(h.updateQueue=m.updateQueue,h.memoizedState=m.memoizedState,h.lanes=m.lanes):(h.updateQueue=null,h.memoizedState=null)}var y=Qo(i);if(y!==null){y.flags&=-257,Ko(y,i,o,u,t),y.mode&1&&Ho(u,s,t),t=y,a=s;var g=t.updateQueue;if(g===null){var w=new Set;w.add(a),t.updateQueue=w}else g.add(a);break e}else{if(!(t&1)){Ho(u,s,t),Bi();break e}a=Error(S(426))}}else if(j&&o.mode&1){var C=Qo(i);if(C!==null){!(C.flags&65536)&&(C.flags|=256),Ko(C,i,o,u,t),Si(on(a,o));break e}}u=a=on(a,o),G!==4&&(G=2),Dn===null?Dn=[u]:Dn.push(u),u=i;do{switch(u.tag){case 3:u.flags|=65536,t&=-t,u.lanes|=t;var f=bs(u,a,t);jo(u,f);break e;case 1:o=a;var c=u.type,d=u.stateNode;if(!(u.flags&128)&&(typeof c.getDerivedStateFromError=="function"||d!==null&&typeof d.componentDidCatch=="function"&&(ct===null||!ct.has(d)))){u.flags|=65536,t&=-t,u.lanes|=t;var v=ec(u,o,t);jo(u,v);break e}}u=u.return}while(u!==null)}wc(n)}catch(k){t=k,Y===n&&n!==null&&(Y=n=n.return);continue}break}while(!0)}function yc(){var e=ll.current;return ll.current=rl,e===null?rl:e}function Bi(){(G===0||G===3||G===2)&&(G=4),q===null||!(Ot&268435455)&&!(wl&268435455)||tt(q,ee)}function ol(e,t){var n=M;M|=2;var r=yc();(q!==e||ee!==t)&&(Be=null,Nt(e,t));do try{Yd();break}catch(l){vc(e,l)}while(!0);if(Ei(),M=n,ll.current=r,Y!==null)throw Error(S(261));return q=null,ee=0,G}function Yd(){for(;Y!==null;)gc(Y)}function Xd(){for(;Y!==null&&!wf();)gc(Y)}function gc(e){var t=kc(e.alternate,e,me);e.memoizedProps=e.pendingProps,t===null?wc(e):Y=t,Fi.current=null}function wc(e){var t=e;do{var n=t.alternate;if(e=t.return,t.flags&32768){if(n=Ad(n,t),n!==null){n.flags&=32767,Y=n;return}if(e!==null)e.flags|=32768,e.subtreeFlags=0,e.deletions=null;else{G=6,Y=null;return}}else if(n=Bd(n,t,me),n!==null){Y=n;return}if(t=t.sibling,t!==null){Y=t;return}Y=t=e}while(t!==null);G===0&&(G=5)}function Ct(e,t,n){var r=I,l=xe.transition;try{xe.transition=null,I=1,Gd(e,t,n,r)}finally{xe.transition=l,I=r}return null}function Gd(e,t,n,r){do en();while(rt!==null);if(M&6)throw Error(S(327));n=e.finishedWork;var l=e.finishedLanes;if(n===null)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(S(177));e.callbackNode=null,e.callbackPriority=0;var u=n.lanes|n.childLanes;if(Lf(e,u),e===q&&(Y=q=null,ee=0),!(n.subtreeFlags&2064)&&!(n.flags&2064)||Pr||(Pr=!0,Ec(Vr,function(){return en(),null})),u=(n.flags&15990)!==0,n.subtreeFlags&15990||u){u=xe.transition,xe.transition=null;var i=I;I=1;var o=M;M|=4,Fi.current=null,Wd(e,n),pc(n,e),md(xu),Hr=!!Cu,xu=Cu=null,e.current=n,Hd(n),Sf(),M=o,I=i,xe.transition=u}else e.current=n;if(Pr&&(Pr=!1,rt=e,il=l),u=e.pendingLanes,u===0&&(ct=null),Cf(n.stateNode),he(e,Q()),t!==null)for(r=e.onRecoverableError,n=0;n<t.length;n++)l=t[n],r(l.value,{componentStack:l.stack,digest:l.digest});if(ul)throw ul=!1,e=Hu,Hu=null,e;return il&1&&e.tag!==0&&en(),u=e.pendingLanes,u&1?e===Qu?Un++:(Un=0,Qu=e):Un=0,gt(),null}function en(){if(rt!==null){var e=ba(il),t=xe.transition,n=I;try{if(xe.transition=null,I=16>e?16:e,rt===null)var r=!1;else{if(e=rt,rt=null,il=0,M&6)throw Error(S(331));var l=M;for(M|=4,x=e.current;x!==null;){var u=x,i=u.child;if(x.flags&16){var o=u.deletions;if(o!==null){for(var a=0;a<o.length;a++){var s=o[a];for(x=s;x!==null;){var h=x;switch(h.tag){case 0:case 11:case 15:Fn(8,h,u)}var p=h.child;if(p!==null)p.return=h,x=p;else for(;x!==null;){h=x;var m=h.sibling,y=h.return;if(cc(h),h===s){x=null;break}if(m!==null){m.return=y,x=m;break}x=y}}}var g=u.alternate;if(g!==null){var w=g.child;if(w!==null){g.child=null;do{var C=w.sibling;w.sibling=null,w=C}while(w!==null)}}x=u}}if(u.subtreeFlags&2064&&i!==null)i.return=u,x=i;else e:for(;x!==null;){if(u=x,u.flags&2048)switch(u.tag){case 0:case 11:case 15:Fn(9,u,u.return)}var f=u.sibling;if(f!==null){f.return=u.return,x=f;break e}x=u.return}}var c=e.current;for(x=c;x!==null;){i=x;var d=i.child;if(i.subtreeFlags&2064&&d!==null)d.return=i,x=d;else e:for(i=c;x!==null;){if(o=x,o.flags&2048)try{switch(o.tag){case 0:case 11:case 15:gl(9,o)}}catch(k){V(o,o.return,k)}if(o===i){x=null;break e}var v=o.sibling;if(v!==null){v.return=o.return,x=v;break e}x=o.return}}if(M=l,gt(),je&&typeof je.onPostCommitFiberRoot=="function")try{je.onPostCommitFiberRoot(cl,e)}catch{}r=!0}return r}finally{I=n,xe.transition=t}}return!1}function ua(e,t,n){t=on(n,t),t=bs(e,t,1),e=st(e,t,1),t=oe(),e!==null&&(lr(e,1,t),he(e,t))}function V(e,t,n){if(e.tag===3)ua(e,e,n);else for(;t!==null;){if(t.tag===3){ua(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError=="function"||typeof r.componentDidCatch=="function"&&(ct===null||!ct.has(r))){e=on(n,e),e=ec(t,e,1),t=st(t,e,1),e=oe(),t!==null&&(lr(t,1,e),he(t,e));break}}t=t.return}}function Zd(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),t=oe(),e.pingedLanes|=e.suspendedLanes&n,q===e&&(ee&n)===n&&(G===4||G===3&&(ee&130023424)===ee&&500>Q()-Ui?Nt(e,0):Di|=n),he(e,t)}function Sc(e,t){t===0&&(e.mode&1?(t=mr,mr<<=1,!(mr&130023424)&&(mr=4194304)):t=1);var n=oe();e=Ye(e,t),e!==null&&(lr(e,t,n),he(e,n))}function Jd(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Sc(e,n)}function qd(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(n=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(S(314))}r!==null&&r.delete(t),Sc(e,n)}var kc;kc=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||de.current)fe=!0;else{if(!(e.lanes&n)&&!(t.flags&128))return fe=!1,$d(e,t,n);fe=!!(e.flags&131072)}else fe=!1,j&&t.flags&1048576&&Ps(t,Jr,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Fr(e,t),e=t.pendingProps;var l=nn(t,ue.current);bt(t,n),l=Ri(null,t,r,e,l,n);var u=Ti();return t.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,pe(r)?(u=!0,Gr(t)):u=!1,t.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,Pi(t),l.updater=yl,t.stateNode=l,l._reactInternals=t,Mu(t,r,e,n),t=Du(null,t,r,!0,u,n)):(t.tag=0,j&&u&&gi(t),ie(null,t,l,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Fr(e,t),e=t.pendingProps,l=r._init,r=l(r._payload),t.type=r,l=t.tag=ep(r),e=Le(r,e),l){case 0:t=Fu(null,t,r,e,n);break e;case 1:t=Go(null,t,r,e,n);break e;case 11:t=Yo(null,t,r,e,n);break e;case 14:t=Xo(null,t,r,Le(r.type,e),n);break e}throw Error(S(306,r,""))}return t;case 0:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Le(r,l),Fu(e,t,r,l,n);case 1:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Le(r,l),Go(e,t,r,l,n);case 3:e:{if(lc(t),e===null)throw Error(S(387));r=t.pendingProps,u=t.memoizedState,l=u.element,Ts(e,t),el(t,r,null,n);var i=t.memoizedState;if(r=i.element,u.isDehydrated)if(u={element:r,isDehydrated:!1,cache:i.cache,pendingSuspenseBoundaries:i.pendingSuspenseBoundaries,transitions:i.transitions},t.updateQueue.baseState=u,t.memoizedState=u,t.flags&256){l=on(Error(S(423)),t),t=Zo(e,t,r,n,l);break e}else if(r!==l){l=on(Error(S(424)),t),t=Zo(e,t,r,n,l);break e}else for(ve=at(t.stateNode.containerInfo.firstChild),ye=t,j=!0,Te=null,n=Ls(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(rn(),r===l){t=Xe(e,t,n);break e}ie(e,t,r,n)}t=t.child}return t;case 5:return Os(t),e===null&&Ru(t),r=t.type,l=t.pendingProps,u=e!==null?e.memoizedProps:null,i=l.children,Pu(r,l)?i=null:u!==null&&Pu(r,u)&&(t.flags|=32),rc(e,t),ie(e,t,i,n),t.child;case 6:return e===null&&Ru(t),null;case 13:return uc(e,t,n);case 4:return _i(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=ln(t,null,r,n):ie(e,t,r,n),t.child;case 11:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Le(r,l),Yo(e,t,r,l,n);case 7:return ie(e,t,t.pendingProps,n),t.child;case 8:return ie(e,t,t.pendingProps.children,n),t.child;case 12:return ie(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,l=t.pendingProps,u=t.memoizedProps,i=l.value,F(qr,r._currentValue),r._currentValue=i,u!==null)if(Ie(u.value,i)){if(u.children===l.children&&!de.current){t=Xe(e,t,n);break e}}else for(u=t.child,u!==null&&(u.return=t);u!==null;){var o=u.dependencies;if(o!==null){i=u.child;for(var a=o.firstContext;a!==null;){if(a.context===r){if(u.tag===1){a=He(-1,n&-n),a.tag=2;var s=u.updateQueue;if(s!==null){s=s.shared;var h=s.pending;h===null?a.next=a:(a.next=h.next,h.next=a),s.pending=a}}u.lanes|=n,a=u.alternate,a!==null&&(a.lanes|=n),Tu(u.return,n,t),o.lanes|=n;break}a=a.next}}else if(u.tag===10)i=u.type===t.type?null:u.child;else if(u.tag===18){if(i=u.return,i===null)throw Error(S(341));i.lanes|=n,o=i.alternate,o!==null&&(o.lanes|=n),Tu(i,n,t),i=u.sibling}else i=u.child;if(i!==null)i.return=u;else for(i=u;i!==null;){if(i===t){i=null;break}if(u=i.sibling,u!==null){u.return=i.return,i=u;break}i=i.return}u=i}ie(e,t,l.children,n),t=t.child}return t;case 9:return l=t.type,r=t.pendingProps.children,bt(t,n),l=Pe(l),r=r(l),t.flags|=1,ie(e,t,r,n),t.child;case 14:return r=t.type,l=Le(r,t.pendingProps),l=Le(r.type,l),Xo(e,t,r,l,n);case 15:return tc(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Le(r,l),Fr(e,t),t.tag=1,pe(r)?(e=!0,Gr(t)):e=!1,bt(t,n),qs(t,r,l),Mu(t,r,l,n),Du(null,t,r,!0,e,n);case 19:return ic(e,t,n);case 22:return nc(e,t,n)}throw Error(S(156,t.tag))};function Ec(e,t){return Ga(e,t)}function bd(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Ce(e,t,n,r){return new bd(e,t,n,r)}function Ai(e){return e=e.prototype,!(!e||!e.isReactComponent)}function ep(e){if(typeof e=="function")return Ai(e)?1:0;if(e!=null){if(e=e.$$typeof,e===ii)return 11;if(e===oi)return 14}return 2}function dt(e,t){var n=e.alternate;return n===null?(n=Ce(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function jr(e,t,n,r,l,u){var i=2;if(r=e,typeof e=="function")Ai(e)&&(i=1);else if(typeof e=="string")i=5;else e:switch(e){case jt:return zt(n.children,l,u,t);case ui:i=8,l|=8;break;case ru:return e=Ce(12,n,t,l|2),e.elementType=ru,e.lanes=u,e;case lu:return e=Ce(13,n,t,l),e.elementType=lu,e.lanes=u,e;case uu:return e=Ce(19,n,t,l),e.elementType=uu,e.lanes=u,e;case Oa:return Sl(n,l,u,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case Ra:i=10;break e;case Ta:i=9;break e;case ii:i=11;break e;case oi:i=14;break e;case qe:i=16,r=null;break e}throw Error(S(130,e==null?e:typeof e,""))}return t=Ce(i,n,t,l),t.elementType=e,t.type=r,t.lanes=u,t}function zt(e,t,n,r){return e=Ce(7,e,r,t),e.lanes=n,e}function Sl(e,t,n,r){return e=Ce(22,e,r,t),e.elementType=Oa,e.lanes=n,e.stateNode={isHidden:!1},e}function bl(e,t,n){return e=Ce(6,e,null,t),e.lanes=n,e}function eu(e,t,n){return t=Ce(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function tp(e,t,n,r,l){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Il(0),this.expirationTimes=Il(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Il(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function Vi(e,t,n,r,l,u,i,o,a){return e=new tp(e,t,n,o,a),t===1?(t=1,u===!0&&(t|=8)):t=0,u=Ce(3,null,null,t),e.current=u,u.stateNode=e,u.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},Pi(u),e}function np(e,t,n){var r=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:Ut,key:r==null?null:""+r,children:e,containerInfo:t,implementation:n}}function Cc(e){if(!e)return mt;e=e._reactInternals;e:{if(Ft(e)!==e||e.tag!==1)throw Error(S(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(pe(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(t!==null);throw Error(S(171))}if(e.tag===1){var n=e.type;if(pe(n))return Cs(e,n,t)}return t}function xc(e,t,n,r,l,u,i,o,a){return e=Vi(n,r,!0,e,l,u,i,o,a),e.context=Cc(null),n=e.current,r=oe(),l=ft(n),u=He(r,l),u.callback=t??null,st(n,u,l),e.current.lanes=l,lr(e,l,r),he(e,r),e}function kl(e,t,n,r){var l=t.current,u=oe(),i=ft(l);return n=Cc(n),t.context===null?t.context=n:t.pendingContext=n,t=He(u,i),t.payload={element:e},r=r===void 0?null:r,r!==null&&(t.callback=r),e=st(l,t,i),e!==null&&(Me(e,l,i,u),Or(e,l,i)),i}function al(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return e.child.stateNode;default:return e.child.stateNode}}function ia(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function Wi(e,t){ia(e,t),(e=e.alternate)&&ia(e,t)}function rp(){return null}var Pc=typeof reportError=="function"?reportError:function(e){console.error(e)};function Hi(e){this._internalRoot=e}El.prototype.render=Hi.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(S(409));kl(e,t,null,null)};El.prototype.unmount=Hi.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;Mt(function(){kl(null,e,null,null)}),t[Ke]=null}};function El(e){this._internalRoot=e}El.prototype.unstable_scheduleHydration=function(e){if(e){var t=ns();e={blockedOn:null,target:e,priority:t};for(var n=0;n<et.length&&t!==0&&t<et[n].priority;n++);et.splice(n,0,e),n===0&&ls(e)}};function Qi(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function Cl(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11&&(e.nodeType!==8||e.nodeValue!==" react-mount-point-unstable "))}function oa(){}function lp(e,t,n,r,l){if(l){if(typeof r=="function"){var u=r;r=function(){var s=al(i);u.call(s)}}var i=xc(t,r,e,0,null,!1,!1,"",oa);return e._reactRootContainer=i,e[Ke]=i.current,Kn(e.nodeType===8?e.parentNode:e),Mt(),i}for(;l=e.lastChild;)e.removeChild(l);if(typeof r=="function"){var o=r;r=function(){var s=al(a);o.call(s)}}var a=Vi(e,0,!1,null,null,!1,!1,"",oa);return e._reactRootContainer=a,e[Ke]=a.current,Kn(e.nodeType===8?e.parentNode:e),Mt(function(){kl(t,a,n,r)}),a}function xl(e,t,n,r,l){var u=n._reactRootContainer;if(u){var i=u;if(typeof l=="function"){var o=l;l=function(){var a=al(i);o.call(a)}}kl(t,i,e,l)}else i=lp(n,t,e,l,r);return al(i)}es=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=Nn(t.pendingLanes);n!==0&&(ci(t,n|1),he(t,Q()),!(M&6)&&(an=Q()+500,gt()))}break;case 13:Mt(function(){var r=Ye(e,1);if(r!==null){var l=oe();Me(r,e,1,l)}}),Wi(e,1)}};fi=function(e){if(e.tag===13){var t=Ye(e,134217728);if(t!==null){var n=oe();Me(t,e,134217728,n)}Wi(e,134217728)}};ts=function(e){if(e.tag===13){var t=ft(e),n=Ye(e,t);if(n!==null){var r=oe();Me(n,e,t,r)}Wi(e,t)}};ns=function(){return I};rs=function(e,t){var n=I;try{return I=e,t()}finally{I=n}};mu=function(e,t,n){switch(t){case"input":if(au(e,n),t=n.name,n.type==="radio"&&t!=null){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var l=hl(r);if(!l)throw Error(S(90));Ia(r),au(r,l)}}}break;case"textarea":Da(e,n);break;case"select":t=n.value,t!=null&&Gt(e,!!n.multiple,t,!1)}};Wa=ji;Ha=Mt;var up={usingClientEntryPoint:!1,Events:[ir,Vt,hl,Aa,Va,ji]},xn={findFiberByHostInstance:xt,bundleType:0,version:"18.3.1",rendererPackageName:"react-dom"},ip={bundleType:xn.bundleType,version:xn.version,rendererPackageName:xn.rendererPackageName,rendererConfig:xn.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:Ge.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return e=Ya(e),e===null?null:e.stateNode},findFiberByHostInstance:xn.findFiberByHostInstance||rp,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.3.1-next-f1338f8080-20240426"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var _r=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!_r.isDisabled&&_r.supportsFiber)try{cl=_r.inject(ip),je=_r}catch{}}we.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=up;we.createPortal=function(e,t){var n=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!Qi(t))throw Error(S(200));return np(e,t,null,n)};we.createRoot=function(e,t){if(!Qi(e))throw Error(S(299));var n=!1,r="",l=Pc;return t!=null&&(t.unstable_strictMode===!0&&(n=!0),t.identifierPrefix!==void 0&&(r=t.identifierPrefix),t.onRecoverableError!==void 0&&(l=t.onRecoverableError)),t=Vi(e,1,!1,null,null,n,!1,r,l),e[Ke]=t.current,Kn(e.nodeType===8?e.parentNode:e),new Hi(t)};we.findDOMNode=function(e){if(e==null)return null;if(e.nodeType===1)return e;var t=e._reactInternals;if(t===void 0)throw typeof e.render=="function"?Error(S(188)):(e=Object.keys(e).join(","),Error(S(268,e)));return e=Ya(t),e=e===null?null:e.stateNode,e};we.flushSync=function(e){return Mt(e)};we.hydrate=function(e,t,n){if(!Cl(t))throw Error(S(200));return xl(null,e,t,!0,n)};we.hydrateRoot=function(e,t,n){if(!Qi(e))throw Error(S(405));var r=n!=null&&n.hydratedSources||null,l=!1,u="",i=Pc;if(n!=null&&(n.unstable_strictMode===!0&&(l=!0),n.identifierPrefix!==void 0&&(u=n.identifierPrefix),n.onRecoverableError!==void 0&&(i=n.onRecoverableError)),t=xc(t,null,e,1,n??null,l,!1,u,i),e[Ke]=t.current,Kn(e),r)for(e=0;e<r.length;e++)n=r[e],l=n._getVersion,l=l(n._source),t.mutableSourceEagerHydrationData==null?t.mutableSourceEagerHydrationData=[n,l]:t.mutableSourceEagerHydrationData.push(n,l);return new El(t)};we.render=function(e,t,n){if(!Cl(t))throw Error(S(200));return xl(null,e,t,!1,n)};we.unmountComponentAtNode=function(e){if(!Cl(e))throw Error(S(40));return e._reactRootContainer?(Mt(function(){xl(null,null,e,!1,function(){e._reactRootContainer=null,e[Ke]=null})}),!0):!1};we.unstable_batchedUpdates=ji;we.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!Cl(n))throw Error(S(200));if(e==null||e._reactInternals===void 0)throw Error(S(38));return xl(e,t,n,!1,r)};we.version="18.3.1-next-f1338f8080-20240426";function _c(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(_c)}catch(e){console.error(e)}}_c(),_a.exports=we;var sh=_a.exports;/**
33
- * @remix-run/router v1.23.2
34
- *
35
- * Copyright (c) Remix Software Inc.
36
- *
37
- * This source code is licensed under the MIT license found in the
38
- * LICENSE.md file in the root directory of this source tree.
39
- *
40
- * @license MIT
41
- */function tr(){return tr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},tr.apply(this,arguments)}var lt;(function(e){e.Pop="POP",e.Push="PUSH",e.Replace="REPLACE"})(lt||(lt={}));const aa="popstate";function op(e){e===void 0&&(e={});function t(r,l){let{pathname:u,search:i,hash:o}=r.location;return Xu("",{pathname:u,search:i,hash:o},l.state&&l.state.usr||null,l.state&&l.state.key||"default")}function n(r,l){return typeof l=="string"?l:sl(l)}return sp(t,n,null,e)}function K(e,t){if(e===!1||e===null||typeof e>"u")throw new Error(t)}function Ki(e,t){if(!e){typeof console<"u"&&console.warn(t);try{throw new Error(t)}catch{}}}function ap(){return Math.random().toString(36).substr(2,8)}function sa(e,t){return{usr:e.state,key:e.key,idx:t}}function Xu(e,t,n,r){return n===void 0&&(n=null),tr({pathname:typeof e=="string"?e:e.pathname,search:"",hash:""},typeof t=="string"?dn(t):t,{state:n,key:t&&t.key||r||ap()})}function sl(e){let{pathname:t="/",search:n="",hash:r=""}=e;return n&&n!=="?"&&(t+=n.charAt(0)==="?"?n:"?"+n),r&&r!=="#"&&(t+=r.charAt(0)==="#"?r:"#"+r),t}function dn(e){let t={};if(e){let n=e.indexOf("#");n>=0&&(t.hash=e.substr(n),e=e.substr(0,n));let r=e.indexOf("?");r>=0&&(t.search=e.substr(r),e=e.substr(0,r)),e&&(t.pathname=e)}return t}function sp(e,t,n,r){r===void 0&&(r={});let{window:l=document.defaultView,v5Compat:u=!1}=r,i=l.history,o=lt.Pop,a=null,s=h();s==null&&(s=0,i.replaceState(tr({},i.state,{idx:s}),""));function h(){return(i.state||{idx:null}).idx}function p(){o=lt.Pop;let C=h(),f=C==null?null:C-s;s=C,a&&a({action:o,location:w.location,delta:f})}function m(C,f){o=lt.Push;let c=Xu(w.location,C,f);s=h()+1;let d=sa(c,s),v=w.createHref(c);try{i.pushState(d,"",v)}catch(k){if(k instanceof DOMException&&k.name==="DataCloneError")throw k;l.location.assign(v)}u&&a&&a({action:o,location:w.location,delta:1})}function y(C,f){o=lt.Replace;let c=Xu(w.location,C,f);s=h();let d=sa(c,s),v=w.createHref(c);i.replaceState(d,"",v),u&&a&&a({action:o,location:w.location,delta:0})}function g(C){let f=l.location.origin!=="null"?l.location.origin:l.location.href,c=typeof C=="string"?C:sl(C);return c=c.replace(/ $/,"%20"),K(f,"No window.location.(origin|href) available to create URL for href: "+c),new URL(c,f)}let w={get action(){return o},get location(){return e(l,i)},listen(C){if(a)throw new Error("A history only accepts one active listener");return l.addEventListener(aa,p),a=C,()=>{l.removeEventListener(aa,p),a=null}},createHref(C){return t(l,C)},createURL:g,encodeLocation(C){let f=g(C);return{pathname:f.pathname,search:f.search,hash:f.hash}},push:m,replace:y,go(C){return i.go(C)}};return w}var ca;(function(e){e.data="data",e.deferred="deferred",e.redirect="redirect",e.error="error"})(ca||(ca={}));function cp(e,t,n){return n===void 0&&(n="/"),fp(e,t,n)}function fp(e,t,n,r){let l=typeof t=="string"?dn(t):t,u=Yi(l.pathname||"/",n);if(u==null)return null;let i=Nc(e);dp(i);let o=null;for(let a=0;o==null&&a<i.length;++a){let s=xp(u);o=kp(i[a],s)}return o}function Nc(e,t,n,r){t===void 0&&(t=[]),n===void 0&&(n=[]),r===void 0&&(r="");let l=(u,i,o)=>{let a={relativePath:o===void 0?u.path||"":o,caseSensitive:u.caseSensitive===!0,childrenIndex:i,route:u};a.relativePath.startsWith("/")&&(K(a.relativePath.startsWith(r),'Absolute route path "'+a.relativePath+'" nested under path '+('"'+r+'" is not valid. An absolute child route path ')+"must start with the combined path of all its parent routes."),a.relativePath=a.relativePath.slice(r.length));let s=pt([r,a.relativePath]),h=n.concat(a);u.children&&u.children.length>0&&(K(u.index!==!0,"Index routes must not have child routes. Please remove "+('all child routes from route path "'+s+'".')),Nc(u.children,t,h,s)),!(u.path==null&&!u.index)&&t.push({path:s,score:wp(s,u.index),routesMeta:h})};return e.forEach((u,i)=>{var o;if(u.path===""||!((o=u.path)!=null&&o.includes("?")))l(u,i);else for(let a of zc(u.path))l(u,i,a)}),t}function zc(e){let t=e.split("/");if(t.length===0)return[];let[n,...r]=t,l=n.endsWith("?"),u=n.replace(/\?$/,"");if(r.length===0)return l?[u,""]:[u];let i=zc(r.join("/")),o=[];return o.push(...i.map(a=>a===""?u:[u,a].join("/"))),l&&o.push(...i),o.map(a=>e.startsWith("/")&&a===""?"/":a)}function dp(e){e.sort((t,n)=>t.score!==n.score?n.score-t.score:Sp(t.routesMeta.map(r=>r.childrenIndex),n.routesMeta.map(r=>r.childrenIndex)))}const pp=/^:[\w-]+$/,hp=3,mp=2,vp=1,yp=10,gp=-2,fa=e=>e==="*";function wp(e,t){let n=e.split("/"),r=n.length;return n.some(fa)&&(r+=gp),t&&(r+=mp),n.filter(l=>!fa(l)).reduce((l,u)=>l+(pp.test(u)?hp:u===""?vp:yp),r)}function Sp(e,t){return e.length===t.length&&e.slice(0,-1).every((r,l)=>r===t[l])?e[e.length-1]-t[t.length-1]:0}function kp(e,t,n){let{routesMeta:r}=e,l={},u="/",i=[];for(let o=0;o<r.length;++o){let a=r[o],s=o===r.length-1,h=u==="/"?t:t.slice(u.length)||"/",p=Ep({path:a.relativePath,caseSensitive:a.caseSensitive,end:s},h),m=a.route;if(!p)return null;Object.assign(l,p.params),i.push({params:l,pathname:pt([u,p.pathname]),pathnameBase:Lp(pt([u,p.pathnameBase])),route:m}),p.pathnameBase!=="/"&&(u=pt([u,p.pathnameBase]))}return i}function Ep(e,t){typeof e=="string"&&(e={path:e,caseSensitive:!1,end:!0});let[n,r]=Cp(e.path,e.caseSensitive,e.end),l=t.match(n);if(!l)return null;let u=l[0],i=u.replace(/(.)\/+$/,"$1"),o=l.slice(1);return{params:r.reduce((s,h,p)=>{let{paramName:m,isOptional:y}=h;if(m==="*"){let w=o[p]||"";i=u.slice(0,u.length-w.length).replace(/(.)\/+$/,"$1")}const g=o[p];return y&&!g?s[m]=void 0:s[m]=(g||"").replace(/%2F/g,"/"),s},{}),pathname:u,pathnameBase:i,pattern:e}}function Cp(e,t,n){t===void 0&&(t=!1),n===void 0&&(n=!0),Ki(e==="*"||!e.endsWith("*")||e.endsWith("/*"),'Route path "'+e+'" will be treated as if it were '+('"'+e.replace(/\*$/,"/*")+'" because the `*` character must ')+"always follow a `/` in the pattern. To get rid of this warning, "+('please change the route path to "'+e.replace(/\*$/,"/*")+'".'));let r=[],l="^"+e.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(i,o,a)=>(r.push({paramName:o,isOptional:a!=null}),a?"/?([^\\/]+)?":"/([^\\/]+)"));return e.endsWith("*")?(r.push({paramName:"*"}),l+=e==="*"||e==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):n?l+="\\/*$":e!==""&&e!=="/"&&(l+="(?:(?=\\/|$))"),[new RegExp(l,t?void 0:"i"),r]}function xp(e){try{return e.split("/").map(t=>decodeURIComponent(t).replace(/\//g,"%2F")).join("/")}catch(t){return Ki(!1,'The URL path "'+e+'" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent '+("encoding ("+t+").")),e}}function Yi(e,t){if(t==="/")return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let n=t.endsWith("/")?t.length-1:t.length,r=e.charAt(n);return r&&r!=="/"?null:e.slice(n)||"/"}const Pp=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,_p=e=>Pp.test(e);function Np(e,t){t===void 0&&(t="/");let{pathname:n,search:r="",hash:l=""}=typeof e=="string"?dn(e):e,u;if(n)if(_p(n))u=n;else{if(n.includes("//")){let i=n;n=n.replace(/\/\/+/g,"/"),Ki(!1,"Pathnames cannot have embedded double slashes - normalizing "+(i+" -> "+n))}n.startsWith("/")?u=da(n.substring(1),"/"):u=da(n,t)}else u=t;return{pathname:u,search:Rp(r),hash:Tp(l)}}function da(e,t){let n=t.replace(/\/+$/,"").split("/");return e.split("/").forEach(l=>{l===".."?n.length>1&&n.pop():l!=="."&&n.push(l)}),n.length>1?n.join("/"):"/"}function tu(e,t,n,r){return"Cannot include a '"+e+"' character in a manually specified "+("`to."+t+"` field ["+JSON.stringify(r)+"]. Please separate it out to the ")+("`to."+n+"` field. Alternatively you may provide the full path as ")+'a string in <Link to="..."> and the router will parse it for you.'}function zp(e){return e.filter((t,n)=>n===0||t.route.path&&t.route.path.length>0)}function Xi(e,t){let n=zp(e);return t?n.map((r,l)=>l===n.length-1?r.pathname:r.pathnameBase):n.map(r=>r.pathnameBase)}function Gi(e,t,n,r){r===void 0&&(r=!1);let l;typeof e=="string"?l=dn(e):(l=tr({},e),K(!l.pathname||!l.pathname.includes("?"),tu("?","pathname","search",l)),K(!l.pathname||!l.pathname.includes("#"),tu("#","pathname","hash",l)),K(!l.search||!l.search.includes("#"),tu("#","search","hash",l)));let u=e===""||l.pathname==="",i=u?"/":l.pathname,o;if(i==null)o=n;else{let p=t.length-1;if(!r&&i.startsWith("..")){let m=i.split("/");for(;m[0]==="..";)m.shift(),p-=1;l.pathname=m.join("/")}o=p>=0?t[p]:"/"}let a=Np(l,o),s=i&&i!=="/"&&i.endsWith("/"),h=(u||i===".")&&n.endsWith("/");return!a.pathname.endsWith("/")&&(s||h)&&(a.pathname+="/"),a}const pt=e=>e.join("/").replace(/\/\/+/g,"/"),Lp=e=>e.replace(/\/+$/,"").replace(/^\/*/,"/"),Rp=e=>!e||e==="?"?"":e.startsWith("?")?e:"?"+e,Tp=e=>!e||e==="#"?"":e.startsWith("#")?e:"#"+e;function Op(e){return e!=null&&typeof e.status=="number"&&typeof e.statusText=="string"&&typeof e.internal=="boolean"&&"data"in e}const Lc=["post","put","patch","delete"];new Set(Lc);const Mp=["get",...Lc];new Set(Mp);/**
42
- * React Router v6.30.3
43
- *
44
- * Copyright (c) Remix Software Inc.
45
- *
46
- * This source code is licensed under the MIT license found in the
47
- * LICENSE.md file in the root directory of this source tree.
48
- *
49
- * @license MIT
50
- */function nr(){return nr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},nr.apply(this,arguments)}const Zi=E.createContext(null),Ip=E.createContext(null),wt=E.createContext(null),Pl=E.createContext(null),Ze=E.createContext({outlet:null,matches:[],isDataRoute:!1}),Rc=E.createContext(null);function Fp(e,t){let{relative:n}=t===void 0?{}:t;pn()||K(!1);let{basename:r,navigator:l}=E.useContext(wt),{hash:u,pathname:i,search:o}=Oc(e,{relative:n}),a=i;return r!=="/"&&(a=i==="/"?r:pt([r,i])),l.createHref({pathname:a,search:o,hash:u})}function pn(){return E.useContext(Pl)!=null}function hn(){return pn()||K(!1),E.useContext(Pl).location}function Tc(e){E.useContext(wt).static||E.useLayoutEffect(e)}function Ji(){let{isDataRoute:e}=E.useContext(Ze);return e?Xp():Dp()}function Dp(){pn()||K(!1);let e=E.useContext(Zi),{basename:t,future:n,navigator:r}=E.useContext(wt),{matches:l}=E.useContext(Ze),{pathname:u}=hn(),i=JSON.stringify(Xi(l,n.v7_relativeSplatPath)),o=E.useRef(!1);return Tc(()=>{o.current=!0}),E.useCallback(function(s,h){if(h===void 0&&(h={}),!o.current)return;if(typeof s=="number"){r.go(s);return}let p=Gi(s,JSON.parse(i),u,h.relative==="path");e==null&&t!=="/"&&(p.pathname=p.pathname==="/"?t:pt([t,p.pathname])),(h.replace?r.replace:r.push)(p,h.state,h)},[t,r,i,u,e])}function ch(){let{matches:e}=E.useContext(Ze),t=e[e.length-1];return t?t.params:{}}function Oc(e,t){let{relative:n}=t===void 0?{}:t,{future:r}=E.useContext(wt),{matches:l}=E.useContext(Ze),{pathname:u}=hn(),i=JSON.stringify(Xi(l,r.v7_relativeSplatPath));return E.useMemo(()=>Gi(e,JSON.parse(i),u,n==="path"),[e,i,u,n])}function Up(e,t){return jp(e,t)}function jp(e,t,n,r){pn()||K(!1);let{navigator:l}=E.useContext(wt),{matches:u}=E.useContext(Ze),i=u[u.length-1],o=i?i.params:{};i&&i.pathname;let a=i?i.pathnameBase:"/";i&&i.route;let s=hn(),h;if(t){var p;let C=typeof t=="string"?dn(t):t;a==="/"||(p=C.pathname)!=null&&p.startsWith(a)||K(!1),h=C}else h=s;let m=h.pathname||"/",y=m;if(a!=="/"){let C=a.replace(/^\//,"").split("/");y="/"+m.replace(/^\//,"").split("/").slice(C.length).join("/")}let g=cp(e,{pathname:y}),w=Wp(g&&g.map(C=>Object.assign({},C,{params:Object.assign({},o,C.params),pathname:pt([a,l.encodeLocation?l.encodeLocation(C.pathname).pathname:C.pathname]),pathnameBase:C.pathnameBase==="/"?a:pt([a,l.encodeLocation?l.encodeLocation(C.pathnameBase).pathname:C.pathnameBase])})),u,n,r);return t&&w?E.createElement(Pl.Provider,{value:{location:nr({pathname:"/",search:"",hash:"",state:null,key:"default"},h),navigationType:lt.Pop}},w):w}function $p(){let e=Yp(),t=Op(e)?e.status+" "+e.statusText:e instanceof Error?e.message:JSON.stringify(e),n=e instanceof Error?e.stack:null,l={padding:"0.5rem",backgroundColor:"rgba(200,200,200, 0.5)"};return E.createElement(E.Fragment,null,E.createElement("h2",null,"Unexpected Application Error!"),E.createElement("h3",{style:{fontStyle:"italic"}},t),n?E.createElement("pre",{style:l},n):null,null)}const Bp=E.createElement($p,null);class Ap extends E.Component{constructor(t){super(t),this.state={location:t.location,revalidation:t.revalidation,error:t.error}}static getDerivedStateFromError(t){return{error:t}}static getDerivedStateFromProps(t,n){return n.location!==t.location||n.revalidation!=="idle"&&t.revalidation==="idle"?{error:t.error,location:t.location,revalidation:t.revalidation}:{error:t.error!==void 0?t.error:n.error,location:n.location,revalidation:t.revalidation||n.revalidation}}componentDidCatch(t,n){console.error("React Router caught the following error during render",t,n)}render(){return this.state.error!==void 0?E.createElement(Ze.Provider,{value:this.props.routeContext},E.createElement(Rc.Provider,{value:this.state.error,children:this.props.component})):this.props.children}}function Vp(e){let{routeContext:t,match:n,children:r}=e,l=E.useContext(Zi);return l&&l.static&&l.staticContext&&(n.route.errorElement||n.route.ErrorBoundary)&&(l.staticContext._deepestRenderedBoundaryId=n.route.id),E.createElement(Ze.Provider,{value:t},r)}function Wp(e,t,n,r){var l;if(t===void 0&&(t=[]),n===void 0&&(n=null),r===void 0&&(r=null),e==null){var u;if(!n)return null;if(n.errors)e=n.matches;else if((u=r)!=null&&u.v7_partialHydration&&t.length===0&&!n.initialized&&n.matches.length>0)e=n.matches;else return null}let i=e,o=(l=n)==null?void 0:l.errors;if(o!=null){let h=i.findIndex(p=>p.route.id&&(o==null?void 0:o[p.route.id])!==void 0);h>=0||K(!1),i=i.slice(0,Math.min(i.length,h+1))}let a=!1,s=-1;if(n&&r&&r.v7_partialHydration)for(let h=0;h<i.length;h++){let p=i[h];if((p.route.HydrateFallback||p.route.hydrateFallbackElement)&&(s=h),p.route.id){let{loaderData:m,errors:y}=n,g=p.route.loader&&m[p.route.id]===void 0&&(!y||y[p.route.id]===void 0);if(p.route.lazy||g){a=!0,s>=0?i=i.slice(0,s+1):i=[i[0]];break}}}return i.reduceRight((h,p,m)=>{let y,g=!1,w=null,C=null;n&&(y=o&&p.route.id?o[p.route.id]:void 0,w=p.route.errorElement||Bp,a&&(s<0&&m===0?(Gp("route-fallback"),g=!0,C=null):s===m&&(g=!0,C=p.route.hydrateFallbackElement||null)));let f=t.concat(i.slice(0,m+1)),c=()=>{let d;return y?d=w:g?d=C:p.route.Component?d=E.createElement(p.route.Component,null):p.route.element?d=p.route.element:d=h,E.createElement(Vp,{match:p,routeContext:{outlet:h,matches:f,isDataRoute:n!=null},children:d})};return n&&(p.route.ErrorBoundary||p.route.errorElement||m===0)?E.createElement(Ap,{location:n.location,revalidation:n.revalidation,component:w,error:y,children:c(),routeContext:{outlet:null,matches:f,isDataRoute:!0}}):c()},null)}var Mc=function(e){return e.UseBlocker="useBlocker",e.UseRevalidator="useRevalidator",e.UseNavigateStable="useNavigate",e}(Mc||{}),Ic=function(e){return e.UseBlocker="useBlocker",e.UseLoaderData="useLoaderData",e.UseActionData="useActionData",e.UseRouteError="useRouteError",e.UseNavigation="useNavigation",e.UseRouteLoaderData="useRouteLoaderData",e.UseMatches="useMatches",e.UseRevalidator="useRevalidator",e.UseNavigateStable="useNavigate",e.UseRouteId="useRouteId",e}(Ic||{});function Hp(e){let t=E.useContext(Zi);return t||K(!1),t}function Qp(e){let t=E.useContext(Ip);return t||K(!1),t}function Kp(e){let t=E.useContext(Ze);return t||K(!1),t}function Fc(e){let t=Kp(),n=t.matches[t.matches.length-1];return n.route.id||K(!1),n.route.id}function Yp(){var e;let t=E.useContext(Rc),n=Qp(),r=Fc();return t!==void 0?t:(e=n.errors)==null?void 0:e[r]}function Xp(){let{router:e}=Hp(Mc.UseNavigateStable),t=Fc(Ic.UseNavigateStable),n=E.useRef(!1);return Tc(()=>{n.current=!0}),E.useCallback(function(l,u){u===void 0&&(u={}),n.current&&(typeof l=="number"?e.navigate(l):e.navigate(l,nr({fromRouteId:t},u)))},[e,t])}const pa={};function Gp(e,t,n){pa[e]||(pa[e]=!0)}function Zp(e,t){e==null||e.v7_startTransition,e==null||e.v7_relativeSplatPath}function fh(e){let{to:t,replace:n,state:r,relative:l}=e;pn()||K(!1);let{future:u,static:i}=E.useContext(wt),{matches:o}=E.useContext(Ze),{pathname:a}=hn(),s=Ji(),h=Gi(t,Xi(o,u.v7_relativeSplatPath),a,l==="path"),p=JSON.stringify(h);return E.useEffect(()=>s(JSON.parse(p),{replace:n,state:r,relative:l}),[s,p,l,n,r]),null}function Jp(e){K(!1)}function qp(e){let{basename:t="/",children:n=null,location:r,navigationType:l=lt.Pop,navigator:u,static:i=!1,future:o}=e;pn()&&K(!1);let a=t.replace(/^\/*/,"/"),s=E.useMemo(()=>({basename:a,navigator:u,static:i,future:nr({v7_relativeSplatPath:!1},o)}),[a,o,u,i]);typeof r=="string"&&(r=dn(r));let{pathname:h="/",search:p="",hash:m="",state:y=null,key:g="default"}=r,w=E.useMemo(()=>{let C=Yi(h,a);return C==null?null:{location:{pathname:C,search:p,hash:m,state:y,key:g},navigationType:l}},[a,h,p,m,y,g,l]);return w==null?null:E.createElement(wt.Provider,{value:s},E.createElement(Pl.Provider,{children:n,value:w}))}function dh(e){let{children:t,location:n}=e;return Up(Gu(t),n)}new Promise(()=>{});function Gu(e,t){t===void 0&&(t=[]);let n=[];return E.Children.forEach(e,(r,l)=>{if(!E.isValidElement(r))return;let u=[...t,l];if(r.type===E.Fragment){n.push.apply(n,Gu(r.props.children,u));return}r.type!==Jp&&K(!1),!r.props.index||!r.props.children||K(!1);let i={id:r.props.id||u.join("-"),caseSensitive:r.props.caseSensitive,element:r.props.element,Component:r.props.Component,index:r.props.index,path:r.props.path,loader:r.props.loader,action:r.props.action,errorElement:r.props.errorElement,ErrorBoundary:r.props.ErrorBoundary,hasErrorBoundary:r.props.ErrorBoundary!=null||r.props.errorElement!=null,shouldRevalidate:r.props.shouldRevalidate,handle:r.props.handle,lazy:r.props.lazy};r.props.children&&(i.children=Gu(r.props.children,u)),n.push(i)}),n}/**
51
- * React Router DOM v6.30.3
52
- *
53
- * Copyright (c) Remix Software Inc.
54
- *
55
- * This source code is licensed under the MIT license found in the
56
- * LICENSE.md file in the root directory of this source tree.
57
- *
58
- * @license MIT
59
- */function Zu(){return Zu=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Zu.apply(this,arguments)}function bp(e,t){if(e==null)return{};var n={},r=Object.keys(e),l,u;for(u=0;u<r.length;u++)l=r[u],!(t.indexOf(l)>=0)&&(n[l]=e[l]);return n}function eh(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function th(e,t){return e.button===0&&(!t||t==="_self")&&!eh(e)}function Ju(e){return e===void 0&&(e=""),new URLSearchParams(typeof e=="string"||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map(l=>[n,l]):[[n,r]])},[]))}function nh(e,t){let n=Ju(e);return t&&t.forEach((r,l)=>{n.has(l)||t.getAll(l).forEach(u=>{n.append(l,u)})}),n}const rh=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","viewTransition"],lh="6";try{window.__reactRouterVersion=lh}catch{}const uh="startTransition",ha=tf[uh];function ph(e){let{basename:t,children:n,future:r,window:l}=e,u=E.useRef();u.current==null&&(u.current=op({window:l,v5Compat:!0}));let i=u.current,[o,a]=E.useState({action:i.action,location:i.location}),{v7_startTransition:s}=r||{},h=E.useCallback(p=>{s&&ha?ha(()=>a(p)):a(p)},[a,s]);return E.useLayoutEffect(()=>i.listen(h),[i,h]),E.useEffect(()=>Zp(r),[r]),E.createElement(qp,{basename:t,children:n,location:o.location,navigationType:o.action,navigator:i,future:r})}const ih=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",oh=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,hh=E.forwardRef(function(t,n){let{onClick:r,relative:l,reloadDocument:u,replace:i,state:o,target:a,to:s,preventScrollReset:h,viewTransition:p}=t,m=bp(t,rh),{basename:y}=E.useContext(wt),g,w=!1;if(typeof s=="string"&&oh.test(s)&&(g=s,ih))try{let d=new URL(window.location.href),v=s.startsWith("//")?new URL(d.protocol+s):new URL(s),k=Yi(v.pathname,y);v.origin===d.origin&&k!=null?s=k+v.search+v.hash:w=!0}catch{}let C=Fp(s,{relative:l}),f=ah(s,{replace:i,state:o,target:a,preventScrollReset:h,relative:l,viewTransition:p});function c(d){r&&r(d),d.defaultPrevented||f(d)}return E.createElement("a",Zu({},m,{href:g||C,onClick:w||u?r:c,ref:n,target:a}))});var ma;(function(e){e.UseScrollRestoration="useScrollRestoration",e.UseSubmit="useSubmit",e.UseSubmitFetcher="useSubmitFetcher",e.UseFetcher="useFetcher",e.useViewTransitionState="useViewTransitionState"})(ma||(ma={}));var va;(function(e){e.UseFetcher="useFetcher",e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration"})(va||(va={}));function ah(e,t){let{target:n,replace:r,state:l,preventScrollReset:u,relative:i,viewTransition:o}=t===void 0?{}:t,a=Ji(),s=hn(),h=Oc(e,{relative:i});return E.useCallback(p=>{if(th(p,n)){p.preventDefault();let m=r!==void 0?r:sl(s)===sl(h);a(e,{replace:m,state:l,preventScrollReset:u,relative:i,viewTransition:o})}},[s,a,h,r,l,n,e,u,i,o])}function mh(e){let t=E.useRef(Ju(e)),n=E.useRef(!1),r=hn(),l=E.useMemo(()=>nh(r.search,n.current?null:t.current),[r.search]),u=Ji(),i=E.useCallback((o,a)=>{const s=Ju(typeof o=="function"?o(l):o);n.current=!0,u("?"+s,a)},[u,l]);return[l,i]}export{ph as B,hh as L,fh as N,ef as R,Jp as a,dh as b,E as c,Ji as d,ch as e,mh as f,jc as g,sh as r,hn as u};
package/public/index.html DELETED
@@ -1,20 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="zh-CN">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <!-- Without an explicit favicon, requests to /favicon.ico hit the SPA
7
- fallback (returns index.html), and Chrome then picks the largest
8
- already-loaded image as the tab icon — typically /logos/hermes.png
9
- from the instance cards, making the panel look like Hermes. -->
10
- <link rel="icon" type="image/png" href="/favicon.png" />
11
- <title>JishuShell</title>
12
- <script type="module" crossorigin src="/assets/index-bnBu0nlQ.js"></script>
13
- <link rel="modulepreload" crossorigin href="/assets/vendor-react-ZC5T_huj.js">
14
- <link rel="modulepreload" crossorigin href="/assets/vendor-i18n-flxcMVeP.js">
15
- <link rel="stylesheet" crossorigin href="/assets/index-HSXCsceK.css">
16
- </head>
17
- <body class="bg-white min-h-screen">
18
- <div id="root"></div>
19
- </body>
20
- </html>
@@ -1,55 +0,0 @@
1
- #!/bin/bash
2
- set -e
3
-
4
- SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
5
- PROJECT_ROOT="$(dirname "$SCRIPT_DIR")"
6
- # Slim base image — OpenClaw binary is bind-mounted at runtime, not baked in.
7
- # Rebuild only when Node.js version or system packages change.
8
- IMAGE_NAME="${OPENCLAW_IMAGE:-jishushell-base}"
9
- IMAGE_TAG="${OPENCLAW_TAG:-v1}"
10
-
11
- # ── Resolve base image with mirror fallback ──────────────────────
12
- BASE_TAG="node:22-slim"
13
- MIRRORS=(
14
- "node:22-slim"
15
- "hub-mirror.c.163.com/library/node:22-slim"
16
- "mirrors.tencent.com/library/node:22-slim"
17
- "registry.cn-hangzhou.aliyuncs.com/library/node:22-slim"
18
- )
19
-
20
- if docker image inspect "$BASE_TAG" &>/dev/null; then
21
- echo "Base image found locally: $BASE_TAG"
22
- BASE_IMAGE="$BASE_TAG"
23
- else
24
- BASE_IMAGE=""
25
- for mirror in "${MIRRORS[@]}"; do
26
- echo "Pulling base image: $mirror ..."
27
- if docker pull "$mirror"; then
28
- if [ "$mirror" != "$BASE_TAG" ]; then
29
- docker tag "$mirror" "$BASE_TAG"
30
- fi
31
- BASE_IMAGE="$BASE_TAG"
32
- echo "Base image ready: $BASE_TAG"
33
- break
34
- fi
35
- echo " → failed, trying next mirror..."
36
- done
37
- if [ -z "$BASE_IMAGE" ]; then
38
- echo "Error: Failed to pull $BASE_TAG from all mirrors:"
39
- printf ' - %s\n' "${MIRRORS[@]}"
40
- exit 1
41
- fi
42
- fi
43
-
44
- # Create a temporary build context
45
- BUILD_DIR=$(mktemp -d)
46
- trap "rm -rf $BUILD_DIR" EXIT
47
-
48
- cp "$PROJECT_ROOT/Dockerfile.openclaw" "$BUILD_DIR/Dockerfile"
49
-
50
- echo "Building ${IMAGE_NAME}:${IMAGE_TAG} (slim base — OpenClaw is bind-mounted at runtime)..."
51
- docker build --network=host --build-arg BASE_IMAGE="$BASE_IMAGE" -t "${IMAGE_NAME}:${IMAGE_TAG}" "$BUILD_DIR"
52
-
53
- echo ""
54
- echo "Done! Image: ${IMAGE_NAME}:${IMAGE_TAG}"
55
- docker images "${IMAGE_NAME}:${IMAGE_TAG}"