import { i as index_server_exports } from './index-server-C6vKN1Ke.js'; import './internal-BncRdZO5.js'; import { v as escape_html, C as getContext, _ as noop } from './dev-B3xIfLjQ.js'; var is_legacy = noop.toString().includes("$$") || /function \w+\(\) \{\}/.test(noop.toString()); var placeholder_url = "a:"; if (is_legacy) { new URL(placeholder_url); } //#endregion //#region node_modules/.pnpm/@sveltejs+kit@2.61.1_@sveltejs+vite-plugin-svelte@7.1.2_svelte@5.55.9_@typescript-eslin_1eb4acd89e2a6645581271b871efb1f8/node_modules/@sveltejs/kit/src/runtime/client/client.js /** @import { CacheEntry } from './remote-functions/cache.svelte.js' */ /** @import { Query } from './remote-functions/query/instance.svelte.js' */ /** @import { LiveQuery } from './remote-functions/query-live/instance.svelte.js' */ var { onMount, tick } = index_server_exports; //#endregion //#region node_modules/.pnpm/@sveltejs+kit@2.61.1_@sveltejs+vite-plugin-svelte@7.1.2_svelte@5.55.9_@typescript-eslin_1eb4acd89e2a6645581271b871efb1f8/node_modules/@sveltejs/kit/src/runtime/app/state/server.js function context() { return getContext("__request__"); } //#endregion //#region node_modules/.pnpm/@sveltejs+kit@2.61.1_@sveltejs+vite-plugin-svelte@7.1.2_svelte@5.55.9_@typescript-eslin_1eb4acd89e2a6645581271b871efb1f8/node_modules/@sveltejs/kit/src/runtime/app/state/index.js /** * A read-only reactive object with information about the current page, serving several use cases: * - retrieving the combined `data` of all pages/layouts anywhere in your component tree (also see [loading data](https://svelte.dev/docs/kit/load)) * - retrieving the current value of the `form` prop anywhere in your component tree (also see [form actions](https://svelte.dev/docs/kit/form-actions)) * - retrieving the page state that was set through `goto`, `pushState` or `replaceState` (also see [goto](https://svelte.dev/docs/kit/$app-navigation#goto) and [shallow routing](https://svelte.dev/docs/kit/shallow-routing)) * - retrieving metadata such as the URL you're on, the current route and its parameters, and whether or not there was an error * * ```svelte * *